Skip to content

Commit 263e66b

Browse files
committed
Use Apple's "fake" zlib package instead of Zewo's real zlib code.
1 parent 2f93962 commit 263e66b

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

Package.swift

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -23,15 +23,15 @@ let package = Package(
2323
.library(name: "SwiftGRPC", targets: ["SwiftGRPC"]),
2424
],
2525
dependencies: [
26-
.package(url: "https://github.com/Zewo/zlib.git", from: "0.4.0"),
26+
.package(url: "https://github.com/apple/swift-nio-zlib-support.git", from: "1.0.0"),
2727
.package(url: "https://github.com/apple/swift-protobuf.git", from: "1.0.2"),
2828
.package(url: "https://github.com/kylef/Commander.git", from: "0.8.0")
2929
],
3030
targets: [
3131
.target(name: "SwiftGRPC",
3232
dependencies: ["CgRPC", "SwiftProtobuf"]),
3333
.target(name: "CgRPC",
34-
dependencies: ["BoringSSL", "zlib"]),
34+
dependencies: ["BoringSSL"]),
3535
.target(name: "RootsEncoder"),
3636
.target(name: "protoc-gen-swiftgrpc",
3737
dependencies: [

0 commit comments

Comments
 (0)