Skip to content

Commit 977f0f1

Browse files
authored
Use swift-protobuf at 1.31.0 or newer (#36)
**Motivation** The generated `.pb` files make use of `NameMap(bytecode:)` which got introduced by: apple/swift-protobuf@0f043ac#diff-ef685f44737aba259b8981adb12c31148e7a04cb88d048baefb4ac6440489e75R361, and therefore available in swift-protobuf 1.31.0 or newer. **Changes** * bump `swift-protobuf` dependency to 1.31.0+
1 parent b2655ed commit 977f0f1

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
@@ -26,7 +26,7 @@ let package = Package(
2626
.package(url: "https://github.com/apple/swift-log.git", from: "1.6.1"),
2727
.package(url: "https://github.com/apple/swift-nio.git", from: "2.80.0"),
2828
.package(url: "https://github.com/apple/swift-nio-extras.git", from: "1.24.1"),
29-
.package(url: "https://github.com/apple/swift-protobuf.git", from: "1.28.2"),
29+
.package(url: "https://github.com/apple/swift-protobuf.git", from: "1.31.0"),
3030
.package(url: "https://github.com/swift-server/async-http-client.git", from: "1.25.2"),
3131
],
3232
targets: [

0 commit comments

Comments
 (0)