Compare commits

..

No commits in common. "main" and "2.0.0-alpha.1" have entirely different histories.

View File

@ -1,4 +1,4 @@
// swift-tools-version: 5.6
// swift-tools-version: 5.5
import PackageDescription
@ -6,7 +6,7 @@ let package = Package(
name: "PushMessageDefinitions",
platforms: [
.macOS(.v12),
.iOS(.v15)
.iOS(.v13)
],
products: [
.library(
@ -14,15 +14,11 @@ let package = Package(
targets: ["PushMessageDefinitions"]),
],
dependencies: [
.package(url: "https://github.com/swift-server-community/APNSwift.git", from: "5.0.0-alpha.4"),
.package(url: "https://github.com/christophhagen/BinaryCodable.git", from: "1.0.0"),
.package(url: "https://github.com/christophhagen/APNSwift.git", branch: "main"),
],
targets: [
.target(
name: "PushMessageDefinitions",
dependencies: [
.product(name: "APNSwift", package: "APNSwift"),
.product(name: "BinaryCodable", package: "BinaryCodable"),
])
dependencies: [.product(name: "APNSwift", package: "APNSwift")])
]
)