Compare commits
2 Commits
2.0.0-alph
...
main
Author | SHA1 | Date | |
---|---|---|---|
|
daf8e39813 | ||
|
7764f5dd34 |
@ -1,4 +1,4 @@
|
||||
// swift-tools-version: 5.5
|
||||
// swift-tools-version: 5.6
|
||||
|
||||
import PackageDescription
|
||||
|
||||
@ -6,7 +6,7 @@ let package = Package(
|
||||
name: "PushMessageDefinitions",
|
||||
platforms: [
|
||||
.macOS(.v12),
|
||||
.iOS(.v13)
|
||||
.iOS(.v15)
|
||||
],
|
||||
products: [
|
||||
.library(
|
||||
@ -14,11 +14,15 @@ let package = Package(
|
||||
targets: ["PushMessageDefinitions"]),
|
||||
],
|
||||
dependencies: [
|
||||
.package(url: "https://github.com/christophhagen/APNSwift.git", branch: "main"),
|
||||
.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"),
|
||||
],
|
||||
targets: [
|
||||
.target(
|
||||
name: "PushMessageDefinitions",
|
||||
dependencies: [.product(name: "APNSwift", package: "APNSwift")])
|
||||
dependencies: [
|
||||
.product(name: "APNSwift", package: "APNSwift"),
|
||||
.product(name: "BinaryCodable", package: "BinaryCodable"),
|
||||
])
|
||||
]
|
||||
)
|
||||
|
Loading…
Reference in New Issue
Block a user