this repo has no description

setup package.swift file

+15 -5
+15 -5
Package.swift
··· 1 1 // swift-tools-version: 6.2 2 - // The swift-tools-version declares the minimum version of Swift required to build this package. 3 2 4 3 import PackageDescription 5 4 6 5 let package = Package( 7 6 name: "EffemKit", 7 + platforms: [ 8 + .iOS(.v26), 9 + .watchOS(.v26), 10 + .tvOS(.v26), 11 + .macOS(.v26), 12 + .macCatalyst(.v26), 13 + ], 8 14 products: [ 9 - // Products define the executables and libraries a package produces, making them visible to other packages. 10 15 .library( 11 16 name: "EffemKit", 12 17 targets: ["EffemKit"] 13 18 ), 14 19 ], 20 + dependencies: [ 21 + .package(path: "../CoreATProtocol"), 22 + // .package(url: "https://tangled.org/@sparrowtek.com/CoreATProtocol", branch: "main"), 23 + ], 15 24 targets: [ 16 - // Targets are the basic building blocks of a package, defining a module or a test suite. 17 - // Targets can depend on other targets in this package and products from dependencies. 18 25 .target( 19 - name: "EffemKit" 26 + name: "EffemKit", 27 + dependencies: [ 28 + "CoreATProtocol", 29 + ], 20 30 ), 21 31 .testTarget( 22 32 name: "EffemKitTests",