this repo has no description
at oauth 37 lines 907 B view raw
1// swift-tools-version: 6.2 2 3import PackageDescription 4 5let package = Package( 6 name: "CoreATProtocol", 7 platforms: [ 8 .iOS(.v26), 9 .watchOS(.v26), 10 .tvOS(.v26), 11 .macOS(.v26), 12 .macCatalyst(.v26), 13 ], 14 products: [ 15 .library( 16 name: "CoreATProtocol", 17 targets: ["CoreATProtocol"] 18 ), 19 ], 20 dependencies: [ 21 .package(url: "https://github.com/ChimeHQ/OAuthenticator", branch: "main"), 22 .package(url: "https://github.com/vapor/jwt-kit.git", from: "5.0.0"), 23 ], 24 targets: [ 25 .target( 26 name: "CoreATProtocol", 27 dependencies: [ 28 "OAuthenticator", 29 .product(name: "JWTKit", package: "jwt-kit"), 30 ], 31 ), 32 .testTarget( 33 name: "CoreATProtocolTests", 34 dependencies: ["CoreATProtocol"] 35 ), 36 ] 37)