this repo has no description
1// swift-tools-version: 6.2
2
3import PackageDescription
4
5let package = Package(
6 name: "EffemKit",
7 platforms: [
8 .iOS(.v26),
9 .watchOS(.v26),
10 .tvOS(.v26),
11 .macOS(.v26),
12 .macCatalyst(.v26),
13 ],
14 products: [
15 .library(
16 name: "EffemKit",
17 targets: ["EffemKit"]
18 ),
19 ],
20 dependencies: [
21// .package(path: "../../CoreATProtocol"),
22 .package(url: "https://tangled.org/@sparrowtek.com/CoreATProtocol", branch: "main"),
23 ],
24 targets: [
25 .target(
26 name: "EffemKit",
27 dependencies: [
28 "CoreATProtocol",
29 ],
30 ),
31 .testTarget(
32 name: "EffemKitTests",
33 dependencies: ["EffemKit"]
34 ),
35 ]
36)