Skip to content

Commit 989aa2d

Browse files
authored
update to tonic 0.6 and prost 0.9 (#84)
This branch updates the Rust bindings to use v0.6 of `tonic` and v0.9 of `prost`. Updating the proxy API crate is necessary in order to update the proxy's dependencies on these crates. This change also bumps the crate version to 0.3.0
1 parent 2a1b25f commit 989aa2d

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

Cargo.toml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "linkerd2-proxy-api"
3-
version = "0.2.0"
3+
version = "0.3.0"
44
authors = ["Linkerd Developers <cncf-linkerd-dev@lists.cncf.io>"]
55
license = "Apache-2.0"
66
edition = "2021"
@@ -33,11 +33,11 @@ tap = ["h2", "http_types", "net", "prost-types"]
3333
h2 = { version = "0.3", optional = true }
3434
http = { version = "0.2", optional = true }
3535
ipnet = { version = "2", optional = true }
36-
prost = "0.8"
37-
prost-types = { version = "0.8", optional = true }
36+
prost = "0.9"
37+
prost-types = { version = "0.9", optional = true }
3838
quickcheck = { version = "1", default-features = false, optional = true }
3939
thiserror = { version = "1", optional = true }
40-
tonic = { version = "0.5", default-features = false, features = ["prost", "codegen"] }
40+
tonic = { version = "0.6", default-features = false, features = ["prost", "codegen"] }
4141

4242
[build-dependencies]
43-
tonic-build = { version = "0.5", default-features = false, features = ["prost"] }
43+
tonic-build = { version = "0.6", default-features = false, features = ["prost"] }

0 commit comments

Comments
 (0)