diff --git a/Cargo.lock b/Cargo.lock index ce00aab..a26aa15 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1582,8 +1582,9 @@ checksum = "187674a687eed5fe42285b40c6291f9a01517d415fad1c3cbc6a9f778af7fcd4" [[package]] name = "iroh-base" -version = "0.25.0" -source = "git+https://github.com/n0-computer/iroh?branch=main#5d92f49891c0c9ce52d5f64ed990655f85392b2b" +version = "0.26.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "973c0b3c7851fa2e8e6cf4cb81c9f4cab1373848828fafa43dfe25b123a89ff2" dependencies = [ "aead", "anyhow", @@ -1622,8 +1623,9 @@ dependencies = [ [[package]] name = "iroh-metrics" -version = "0.25.0" -source = "git+https://github.com/n0-computer/iroh?branch=main#5d92f49891c0c9ce52d5f64ed990655f85392b2b" +version = "0.26.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "02edfa7ca1aa89b0b9793d94671e32b79c97d61e9022f082c5eb2b95b64e90c0" dependencies = [ "anyhow", "erased_set", @@ -1642,8 +1644,9 @@ dependencies = [ [[package]] name = "iroh-net" -version = "0.25.0" -source = "git+https://github.com/n0-computer/iroh?branch=main#5d92f49891c0c9ce52d5f64ed990655f85392b2b" +version = "0.26.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "329553be056a92eec7802e1c087eed951eec6e60f0f0740491ef16a295be4ca2" dependencies = [ "anyhow", "backoff", diff --git a/Cargo.toml b/Cargo.toml index e5a1b07..9a87d02 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -14,7 +14,7 @@ description = "A cli tool to pipe data over the network, with NAT hole punching" anyhow = "1.0.75" clap = { version = "4.4.10", features = ["derive"] } hex = "0.4.3" -iroh-net = "0.25" +iroh-net = "0.26" quinn = { version = "0.11.3", package = "iroh-quinn" } tokio = { version = "1.34.0", features = ["full"] } tokio-util = "0.7.10" @@ -25,6 +25,3 @@ tracing-subscriber = { version = "0.3.18", features = ["env-filter"] } duct = "0.13.6" nix = { version = "0.29", features = ["signal", "process"] } rand = "0.8.5" - -[patch.crates-io] -iroh-net = { git = "https://github.com/n0-computer/iroh", branch = "main" }