Adding support for zlib in linux

This commit is contained in:
Kristaps Grinbergs 2019-04-22 12:42:31 +03:00
parent 9c03ef715d
commit 1d81b781e9
No known key found for this signature in database
GPG Key ID: 73998BFE96A5C072
2 changed files with 12 additions and 2 deletions

View File

@ -1,7 +1,15 @@
{
"object": {
"pins": [
{
"package": "swift-nio-zlib-support",
"repositoryURL": "https://github.com/apple/swift-nio-zlib-support.git",
"state": {
"branch": null,
"revision": "37760e9a52030bb9011972c5213c3350fa9d41fd",
"version": "1.0.0"
}
}
]
},
"version": 1

View File

@ -27,7 +27,9 @@ let package = Package(
products: [
.library(name: "Starscream", targets: ["Starscream"])
],
dependencies: [],
dependencies: [
.package(url: "https://github.com/apple/swift-nio-zlib-support.git", from: "1.0.0")
],
targets: [
.target(name: "Starscream")
]