Skip to content

Commit cf87b35

Browse files
committed
chore(deps): Update tonic to 0.14
1 parent 2a02cc5 commit cf87b35

16 files changed

+469
-184
lines changed

Cargo.lock

Lines changed: 281 additions & 48 deletions
Large diffs are not rendered by default.

Cargo.toml

Lines changed: 6 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -52,17 +52,12 @@ all-features = true
5252
h2 = { version = "0.4", optional = true }
5353
http = { version = "1.2", optional = true }
5454
ipnet = { version = "2", optional = true }
55-
prost = "0.13"
56-
prost-types = { version = "0.13", optional = true }
55+
prost = "0.14"
56+
prost-types = { version = "0.14", optional = true }
5757
quickcheck = { version = "1", default-features = false, optional = true }
5858
thiserror = { version = "2", optional = true }
59+
tonic = { version = "0.14", default-features = false, features = ["channel"] }
60+
tonic-prost = "0.14"
5961

60-
[dependencies.tonic]
61-
version = "0.13"
62-
default-features = false
63-
features = ["prost"]
64-
65-
[dev-dependencies.tonic-build]
66-
version = "0.13"
67-
default-features = false
68-
features = ["prost"]
62+
[dev-dependencies]
63+
tonic-prost-build = "0.14"

deny.toml

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,10 @@ highlight = "all"
3737
skip = [
3838
{ name = "syn" },
3939
]
40-
skip-tree = []
40+
skip-tree = [
41+
# socket v0.6 is still propagating through the ecosystem
42+
{ name = "socket2", version = "0.5" },
43+
]
4144

4245
[sources]
4346
unknown-registry = "deny"

examples/gen.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ fn main() -> Result<(), Box<dyn std::error::Error>> {
1717

1818
// Generate rust bindings.
1919
let out_dir = PathBuf::from("src").join("gen");
20-
if let Err(e) = tonic_build::configure()
20+
if let Err(e) = tonic_prost_build::configure()
2121
.build_client(true)
2222
.build_server(true)
2323
.out_dir(out_dir)

src/gen/io.linkerd.proxy.destination.rs

Lines changed: 36 additions & 25 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

src/gen/io.linkerd.proxy.grpc_route.rs

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)