-
-
Notifications
You must be signed in to change notification settings - Fork 70
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Switch to using JWTKit v5 * Add Sendable conformance * [skip ci] Delete projectboard.yml * Adapt to new errors * Fix failing test * Update package for new JWTKit API * Update to use JWTKit 5 beta * Bump Vapor dependency * Fix stupid mistake * Update CODEOWNERS * Update README * Remove codecov from README --------- Co-authored-by: Gwynne Raskind <gwynne@vapor.codes>
- Loading branch information
Showing
12 changed files
with
309 additions
and
422 deletions.
There are no files selected for viewing
Validating CODEOWNERS rules …
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1,8 @@ | ||
* @0xTim @gwynne | ||
* @ptoffy | ||
/.github/CONTRIBUTING.md @ptoffy @0xTim @gwynne | ||
/.github/workflows/*.yml @ptoffy @0xTim @gwynne | ||
/.github/workflows/test.yml @ptoffy @gwynne | ||
/.spi.yml @ptoffy @0xTim @gwynne | ||
/.gitignore @ptoffy @0xTim @gwynne | ||
/LICENSE @ptoffy @0xTim @gwynne | ||
/README.md @ptoffy @0xTim @gwynne |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,29 +1,37 @@ | ||
// swift-tools-version:5.4 | ||
// swift-tools-version:5.9 | ||
import PackageDescription | ||
|
||
let package = Package( | ||
name: "jwt", | ||
platforms: [ | ||
.macOS(.v10_15), | ||
.iOS(.v13), | ||
.tvOS(.v13), | ||
.watchOS(.v6) | ||
.macOS(.v13), | ||
.iOS(.v16), | ||
.tvOS(.v16), | ||
.watchOS(.v9), | ||
], | ||
products: [ | ||
.library(name: "JWT", targets: ["JWT"]), | ||
], | ||
dependencies: [ | ||
.package(url: "https://github.com/vapor/jwt-kit.git", from: "4.0.0"), | ||
.package(url: "https://github.com/vapor/vapor.git", from: "4.50.0"), | ||
.package(url: "https://github.com/vapor/jwt-kit.git", from: "5.0.0-beta.1"), | ||
.package(url: "https://github.com/vapor/vapor.git", from: "4.92.0"), | ||
], | ||
targets: [ | ||
.target(name: "JWT", dependencies: [ | ||
.product(name: "JWTKit", package: "jwt-kit"), | ||
.product(name: "Vapor", package: "vapor"), | ||
]), | ||
.testTarget(name: "JWTTests", dependencies: [ | ||
.target(name: "JWT"), | ||
.product(name: "XCTVapor", package: "vapor"), | ||
]), | ||
.target( | ||
name: "JWT", | ||
dependencies: [ | ||
.product(name: "JWTKit", package: "jwt-kit"), | ||
.product(name: "Vapor", package: "vapor"), | ||
], | ||
swiftSettings: [.enableExperimentalFeature("StrictConcurrency")] | ||
), | ||
.testTarget( | ||
name: "JWTTests", | ||
dependencies: [ | ||
.target(name: "JWT"), | ||
.product(name: "XCTVapor", package: "vapor"), | ||
], | ||
swiftSettings: [.enableExperimentalFeature("StrictConcurrency")] | ||
), | ||
] | ||
) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.