Skip to content

Commit 68286c6

Browse files
authored
Require swift-protobuf 1.31.1 and above (#41)
**Motivation** `swift-protobuf` introduced the ability to disable the binary targets using `PROTOBUF_NO_PROTOC` env variable. This came in with: https://github.com/apple/swift-protobuf/releases/tag/1.31.1. This feature is useful to be able to rely on but we need to adopt .1 patch for it. This change is related to: #36 **Changes** * Bump `swift-protobuf` dependency version requirement from `1.31.0` to `1.31.1`.
1 parent a3958f4 commit 68286c6

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Package.swift

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ let package = Package(
2828
.package(url: "https://github.com/apple/swift-log.git", from: "1.6.1"),
2929
.package(url: "https://github.com/apple/swift-nio.git", from: "2.80.0"),
3030
.package(url: "https://github.com/apple/swift-nio-extras.git", from: "1.24.1"),
31-
.package(url: "https://github.com/apple/swift-protobuf.git", from: "1.31.0"),
31+
.package(url: "https://github.com/apple/swift-protobuf.git", from: "1.31.1"),
3232
.package(url: "https://github.com/swift-server/async-http-client.git", from: "1.25.2"),
3333
],
3434
targets: [

0 commit comments

Comments
 (0)