diff --git a/Cargo.lock b/Cargo.lock index 74372b13..0716aa0e 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -685,8 +685,9 @@ dependencies = [ [[package]] name = "h2" -version = "0.3.7" -source = "git+https://github.com/stackabletech/h2.git?branch=feature/grpc-uds#b7554e1b8730af5fbb7fc1841d92f9247c4e477c" +version = "0.3.18" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "17f8a914c2987b688368b5138aa05321db91f4090cf26118185672ad588bce21" dependencies = [ "bytes", "fnv", @@ -697,7 +698,7 @@ dependencies = [ "indexmap", "slab", "tokio", - "tokio-util 0.6.10", + "tokio-util", "tracing", ] @@ -1030,7 +1031,7 @@ dependencies = [ "serde_yaml 0.8.26", "thiserror", "tokio", - "tokio-util 0.7.4", + "tokio-util", "tower", "tower-http", "tracing", @@ -1087,7 +1088,7 @@ dependencies = [ "smallvec", "thiserror", "tokio", - "tokio-util 0.7.4", + "tokio-util", "tracing", ] @@ -2196,20 +2197,6 @@ dependencies = [ "tokio", ] -[[package]] -name = "tokio-util" -version = "0.6.10" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "36943ee01a6d67977dd3f84a5a1d2efeb4ada3a1ae771cadfaa535d9d9fc6507" -dependencies = [ - "bytes", - "futures-core", - "futures-sink", - "log", - "pin-project-lite", - "tokio", -] - [[package]] name = "tokio-util" version = "0.7.4" @@ -2258,7 +2245,7 @@ dependencies = [ "prost-derive", "tokio", "tokio-stream", - "tokio-util 0.7.4", + "tokio-util", "tower", "tower-layer", "tower-service", @@ -2308,7 +2295,7 @@ dependencies = [ "rand", "slab", "tokio", - "tokio-util 0.7.4", + "tokio-util", "tower-layer", "tower-service", "tracing", @@ -2773,3 +2760,8 @@ name = "zeroize" version = "1.5.7" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "c394b5bd0c6f669e7275d9c20aa90ae064cb22e75a1cad54e1b34088034b149f" + +[[patch.unused]] +name = "h2" +version = "0.3.7" +source = "git+https://github.com/stackabletech/h2.git?branch=feature/grpc-uds#b7554e1b8730af5fbb7fc1841d92f9247c4e477c" diff --git a/rust/operator-binary/Cargo.toml b/rust/operator-binary/Cargo.toml index 8d94a808..58e7b07c 100644 --- a/rust/operator-binary/Cargo.toml +++ b/rust/operator-binary/Cargo.toml @@ -10,7 +10,7 @@ publish = false [dependencies] # Need to keep this in sync with our patched h2 build -h2 = "=0.3.7" +h2 = "=0.3.18" clap = { version = "4.1", features = ["derive"] } futures = "0.3.21"