Skip to content

Commit

Permalink
Fix Package.swift
Browse files Browse the repository at this point in the history
  • Loading branch information
dannys42 committed Sep 30, 2022
1 parent 732d719 commit a2e84aa
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions Package.swift
Original file line number Diff line number Diff line change
Expand Up @@ -31,19 +31,19 @@ let package = Package(
)
],
dependencies: [
.package(url: "https://github.com/Kitura/BlueRSA.git", from: "1.0.200"),
.package(url: "https://github.com/Kitura/BlueCryptor.git", from: "2.0.1"),
.package(url: "https://github.com/Kitura/BlueECC.git", from: "1.2.200"),
.package(name: "CryptorRSA", url: "https://github.com/Kitura/BlueRSA.git", from: "1.0.200"),
.package(name: "Cryptor", url: "https://github.com/Kitura/BlueCryptor.git", from: "2.0.1"),
.package(name: "CryptorECC", url: "https://github.com/Kitura/BlueECC.git", from: "1.2.200"),
.package(url: "https://github.com/Kitura/LoggerAPI.git", from: "2.0.0"),
.package(url: "https://github.com/Kitura/KituraContracts.git", from: "2.0.1")
],
targets: [
.target(name: "SwiftJWT", dependencies: [
"LoggerAPI",
"KituraContracts",
.product(name: "CryptorRSA", package: "BlueRSA"),
.product(name: "Cryptor", package: "BlueCryptor"),
.product(name: "CryptorECC", package: "BlueECC"),
"CryptorRSA",
"Cryptor",
"CryptorECC",
]),
.testTarget(name: "SwiftJWTTests", dependencies: ["SwiftJWT"])
]
Expand Down

0 comments on commit a2e84aa

Please sign in to comment.