We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 234d745 commit dc4708bCopy full SHA for dc4708b
Package.swift
@@ -40,6 +40,8 @@ let package = Package(
40
.target(name: "APNSCore"),
41
.target(name: "APNS"),
42
.target(name: "APNSTestServer"),
43
+ .product(name: "Crypto", package: "swift-crypto"),
44
+ .product(name: "NIOPosix", package: "swift-nio"),
45
]
46
),
47
.target(
@@ -51,9 +53,14 @@ let package = Package(
51
53
52
54
name: "APNS",
55
dependencies: [
- .product(name: "Crypto", package: "swift-crypto"),
- .product(name: "AsyncHTTPClient", package: "async-http-client"),
56
57
+ .product(name: "AsyncHTTPClient", package: "async-http-client"),
58
59
+ .product(name: "NIOFoundationCompat", package: "swift-nio"),
60
+ .product(name: "NIOHTTP1", package: "swift-nio"),
61
62
+ .product(name: "NIOTLS", package: "swift-nio"),
63
+ .product(name: "NIOSSL", package: "swift-nio-ssl"),
64
65
66
Package@swift-5.10.swift
0 commit comments