diff --git a/Cargo.lock b/Cargo.lock index 9e858a9c43..713ff5b3cf 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -4075,8 +4075,9 @@ dependencies = [ [[package]] name = "quic-rpc" -version = "0.9.0" -source = "git+https://github.com/n0-computer/quic-rpc.git?branch=main#105937087d2abf7dfa77b8b684f5f07932d05f9a" +version = "0.10.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "3131faef53f1eae5d2f394b2ce6f130326245863f3f29b639dcc3f5616c88316" dependencies = [ "bincode", "blake3", diff --git a/Cargo.toml b/Cargo.toml index 97ef5ec24c..a6099c70fa 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -32,6 +32,3 @@ missing_debug_implementations = "warn" [workspace.lints.clippy] unused-async = "warn" - -[patch.crates-io] -quic-rpc = { git = "https://github.com/n0-computer/quic-rpc.git", branch = "main" } diff --git a/iroh-cli/Cargo.toml b/iroh-cli/Cargo.toml index 91ab81394e..edc784511a 100644 --- a/iroh-cli/Cargo.toml +++ b/iroh-cli/Cargo.toml @@ -45,7 +45,7 @@ parking_lot = "0.12.1" pkarr = { version = "1.1.5", default-features = false } portable-atomic = "1" postcard = "1.0.8" -quic-rpc = { version = "0.9.0", features = ["flume-transport", "quinn-transport"] } +quic-rpc = { version = "0.10.0", features = ["flume-transport", "quinn-transport"] } rand = "0.8.5" ratatui = "0.26.2" reqwest = { version = "0.12.4", default-features = false, features = ["json", "rustls-tls"] } diff --git a/iroh/Cargo.toml b/iroh/Cargo.toml index 2474368cf6..c289cbe63c 100644 --- a/iroh/Cargo.toml +++ b/iroh/Cargo.toml @@ -37,7 +37,7 @@ iroh-docs = { version = "0.16.0", path = "../iroh-docs" } iroh-gossip = { version = "0.16.0", path = "../iroh-gossip" } parking_lot = "0.12.1" postcard = { version = "1", default-features = false, features = ["alloc", "use-std", "experimental-derive"] } -quic-rpc = { version = "0.9.0", default-features = false, features = ["flume-transport", "quinn-transport"] } +quic-rpc = { version = "0.10.0", default-features = false, features = ["flume-transport", "quinn-transport"] } quinn = { package = "iroh-quinn", version = "0.10" } rand = "0.8" serde = { version = "1", features = ["derive"] }