Skip to content

Commit

Permalink
crates/shim-protos/Cargo: relex version requirement for protobuf
Browse files Browse the repository at this point in the history
Signed-off-by: jiaxiao zhou <duibao55328@gmail.com>
  • Loading branch information
Mossaka authored and mxpv committed Oct 4, 2024
1 parent 202c756 commit 15f51b0
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion crates/shim-protos/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,9 @@ required-features = ["async"]

[dependencies]
async-trait = { workspace = true, optional = true }
protobuf = "=3.5"
# protobuf 3.5 introduces a breaking change: https://github.com/containerd/rust-extensions/issues/295
# pinning to <3.5.0 until we can update the generated code
protobuf = ">= 3.0, <3.5.0"
ttrpc = "0.8.2"

[build-dependencies]
Expand Down

0 comments on commit 15f51b0

Please sign in to comment.