···11// swift-tools-version: 6.2
22-// The swift-tools-version declares the minimum version of Swift required to build this package.
3243import PackageDescription
5465let package = Package(
76 name: "EffemKit",
77+ platforms: [
88+ .iOS(.v26),
99+ .watchOS(.v26),
1010+ .tvOS(.v26),
1111+ .macOS(.v26),
1212+ .macCatalyst(.v26),
1313+ ],
814 products: [
99- // Products define the executables and libraries a package produces, making them visible to other packages.
1015 .library(
1116 name: "EffemKit",
1217 targets: ["EffemKit"]
1318 ),
1419 ],
2020+ dependencies: [
2121+ .package(path: "../CoreATProtocol"),
2222+// .package(url: "https://tangled.org/@sparrowtek.com/CoreATProtocol", branch: "main"),
2323+ ],
1524 targets: [
1616- // Targets are the basic building blocks of a package, defining a module or a test suite.
1717- // Targets can depend on other targets in this package and products from dependencies.
1825 .target(
1919- name: "EffemKit"
2626+ name: "EffemKit",
2727+ dependencies: [
2828+ "CoreATProtocol",
2929+ ],
2030 ),
2131 .testTarget(
2232 name: "EffemKitTests",