Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update to JWTKit 5 #14

Open
wants to merge 15 commits into
base: main
Choose a base branch
from
13 changes: 7 additions & 6 deletions Package.swift
Original file line number Diff line number Diff line change
@@ -1,24 +1,24 @@
// swift-tools-version: 5.8
// swift-tools-version: 5.9
// Copyright (c) 2023 Apple Inc. Licensed under MIT License.

import PackageDescription


let package = Package(
name: "AppStoreServerLibrary",
platforms: [
.macOS(.v11), // And other server environments
.macOS(.v13), // And other server environments
],
products: [
.library(
name: "AppStoreServerLibrary",
targets: ["AppStoreServerLibrary"]),
targets: ["AppStoreServerLibrary"]
),
],
dependencies: [
.package(url: "https://github.com/apple/swift-certificates.git", from: "1.0.0"),
.package(url: "https://github.com/apple/swift-asn1.git", from: "1.1.0"),
.package(url: "https://github.com/apple/swift-crypto.git", "1.0.0" ..< "4.0.0"),
.package(url: "https://github.com/vapor/jwt-kit.git", from: "4.0.0"),
.package(url: "https://github.com/vapor/jwt-kit.git", from: "5.0.0-beta.1"),
.package(url: "https://github.com/apple/swift-docc-plugin", from: "1.0.0"),
.package(url: "https://github.com/apple/swift-nio", from: "2.0.0"),
.package(url: "https://github.com/swift-server/async-http-client.git", from: "1.9.0"),
Expand All @@ -34,7 +34,8 @@ let package = Package(
.product(name: "AsyncHTTPClient", package: "async-http-client"),
.product(name: "NIOFoundationCompat", package: "swift-nio"),
.product(name: "NIOHTTP1", package: "swift-nio"),
]),
]
),
.testTarget(
name: "AppStoreServerLibraryTests",
dependencies: ["AppStoreServerLibrary"],
Expand Down
Loading