Skip to content

Commit

Permalink
Extend swift-crypto allowed version range (#257)
Browse files Browse the repository at this point in the history
As per https://github.com/apple/swift-crypto/releases/tag/3.0.0 the version 3.0 should be allowed in the range for swift-crypto. Not allowing this version makes using stripe-kit incompatible with jwt-kit 5 beta.

Co-authored-by: Andrew Edwards <andrewangeta@gmail.com>
  • Loading branch information
Frizlab and Andrewangeta authored Jun 12, 2024
1 parent c7f7c2d commit da45ee9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Package.swift
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ let package = Package(
],
dependencies: [
.package(url: "https://github.com/swift-server/async-http-client.git", from: "1.1.0"),
.package(url: "https://github.com/apple/swift-crypto.git", "1.0.0" ..< "3.0.0"),
.package(url: "https://github.com/apple/swift-crypto.git", "1.0.0" ..< "4.0.0"),
],
targets: [
.target(name: "StripeKit", dependencies: [
Expand Down

0 comments on commit da45ee9

Please sign in to comment.