Skip to content

Commit

Permalink
Update Package to work with package names
Browse files Browse the repository at this point in the history
  • Loading branch information
adam-fowler committed Apr 1, 2020
1 parent 626331d commit 43ae231
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions Package.swift
Original file line number Diff line number Diff line change
Expand Up @@ -12,18 +12,18 @@ let package = Package(
dependencies: [
.package(url: "https://github.com/apple/swift-crypto.git", .upToNextMajor(from: "1.0.0")),
.package(url: "https://github.com/swift-server/async-http-client.git", .upToNextMajor(from: "1.0.0")),
.package(url: "https://github.com/swift-aws/aws-sdk-swift.git", .upToNextMajor(from: "4.0.0")),
.package(name: "AWSSDKSwift", url: "https://github.com/swift-aws/aws-sdk-swift.git", .upToNextMajor(from: "4.0.0")),
.package(url: "https://github.com/vapor/jwt-kit.git", .upToNextMajor(from: "4.0.0-rc")),
// for SRP
.package(url: "https://github.com/adam-fowler/big-num.git", .upToNextMajor(from: "1.1.0")),
.package(url: "https://github.com/adam-fowler/big-num.git", .upToNextMajor(from: "1.1.1")),
],
targets: [
.target(name: "AWSCognitoAuthenticationKit",
dependencies: [
.product(name: "AsyncHTTPClient", package: "async-http-client"),
.product(name: "BigNum", package: "big-num"),
.product(name: "CognitoIdentity", package: "aws-sdk-swift"),
.product(name: "CognitoIdentityProvider", package: "aws-sdk-swift"),
.product(name: "CognitoIdentity", package: "AWSSDKSwift"),
.product(name: "CognitoIdentityProvider", package: "AWSSDKSwift"),
.product(name: "JWTKit", package: "jwt-kit"),
.product(name: "Crypto", package: "swift-crypto")
]
Expand Down

0 comments on commit 43ae231

Please sign in to comment.