Sven A. Schmidt on Nostr: How do you import and use a #Swift macro declared in another package? There is no ...
How do you import and use a #Swift macro declared in another package? There is no `.macro()` product to import and I can't import the macro target.
E.g., how would I use https://github.com/FullQueueDeveloper/UniquelyTypedID ?
```
.target(name: "test", dependencies: [
.product(name: "UniquelyTypedID", package: "UniquelyTypedID")
]),
```
is insufficient ("Unknown attribute 'UniquelyTypedId’”) and I can't use `UniquelyTypedIDMacros` instead of `UniquelyTypedID`
Must be missing sth obvious 🤔
E.g., how would I use https://github.com/FullQueueDeveloper/UniquelyTypedID ?
```
.target(name: "test", dependencies: [
.product(name: "UniquelyTypedID", package: "UniquelyTypedID")
]),
```
is insufficient ("Unknown attribute 'UniquelyTypedId’”) and I can't use `UniquelyTypedIDMacros` instead of `UniquelyTypedID`
Must be missing sth obvious 🤔