diff --git a/Cargo.lock b/Cargo.lock index 264b31fb..15a08210 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1652,8 +1652,9 @@ dependencies = [ [[package]] name = "iroh" -version = "0.90.0" -source = "git+https://github.com/n0-computer/iroh.git?branch=main#f3e430718a3316dffe191498fd3d0adddb92f2b4" +version = "0.91.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "ef05c956df0788a649d65c33fdbbb8fc4442d7716af3d67a1bd6d00a9ee56ead" dependencies = [ "aead", "backon", @@ -1713,8 +1714,9 @@ dependencies = [ [[package]] name = "iroh-base" -version = "0.90.0" -source = "git+https://github.com/n0-computer/iroh.git?branch=main#f3e430718a3316dffe191498fd3d0adddb92f2b4" +version = "0.91.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "f68b5c5e190d8965699b2fd583f301a7e6094a0b89bb4d6c5baa94761fd1b7a3" dependencies = [ "curve25519-dalek", "data-encoding", @@ -1874,8 +1876,9 @@ dependencies = [ [[package]] name = "iroh-relay" -version = "0.90.0" -source = "git+https://github.com/n0-computer/iroh.git?branch=main#f3e430718a3316dffe191498fd3d0adddb92f2b4" +version = "0.91.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "49596b5079817d0904fe4985307f532a4e23a33eb494bd680baaf2743f0c456b" dependencies = [ "blake3", "bytes", @@ -1935,8 +1938,9 @@ dependencies = [ [[package]] name = "irpc" -version = "0.5.0" -source = "git+https://github.com/n0-computer/irpc.git?branch=main#fc66b123706f6c59c31159c2434e74f4f50a2533" +version = "0.7.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "a9f8f1d0987ea9da3d74698f921d0a817a214c83b2635a33ed4bc3efa4de1acd" dependencies = [ "anyhow", "futures-buffered", @@ -1957,8 +1961,9 @@ dependencies = [ [[package]] name = "irpc-derive" -version = "0.4.0" -source = "git+https://github.com/n0-computer/irpc.git?branch=main#fc66b123706f6c59c31159c2434e74f4f50a2533" +version = "0.5.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "3e0b26b834d401a046dd9d47bc236517c746eddbb5d25ff3e1a6075bfa4eebdb" dependencies = [ "proc-macro2", "quote", diff --git a/Cargo.toml b/Cargo.toml index 18c5f74e..88924fc1 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -37,12 +37,12 @@ chrono = "0.4.39" nested_enum_utils = "0.2.1" ref-cast = "1.0.24" arrayvec = "0.7.6" -iroh = "0.90" +iroh = "0.91" self_cell = "1.1.0" genawaiter = { version = "0.99.1", features = ["futures03"] } -iroh-base = "0.90" +iroh-base = "0.91" reflink-copy = "0.1.24" -irpc = { version = "0.5.0", features = ["rpc", "quinn_endpoint_setup", "spans", "stream", "derive"], default-features = false } +irpc = { version = "0.7.0", features = ["rpc", "quinn_endpoint_setup", "spans", "stream", "derive"], default-features = false } iroh-metrics = { version = "0.35" } [dev-dependencies] @@ -58,14 +58,9 @@ testresult = "0.4.1" tracing-subscriber = { version = "0.3.19", features = ["fmt"] } tracing-test = "0.2.5" walkdir = "2.5.0" -iroh = { version = "0.90", features = ["discovery-local-network"]} +iroh = { version = "0.91", features = ["discovery-local-network"]} [features] hide-proto-docs = [] metrics = [] default = ["hide-proto-docs"] - -[patch.crates-io] -iroh = { git = "https://github.com/n0-computer/iroh.git", branch = "main" } -iroh-base = { git = "https://github.com/n0-computer/iroh.git", branch = "main" } -irpc = { git = "https://github.com/n0-computer/irpc.git", branch = "main" } diff --git a/deny.toml b/deny.toml index 7162a07c..bb2a4118 100644 --- a/deny.toml +++ b/deny.toml @@ -39,9 +39,3 @@ name = "ring" [[licenses.clarify.license-files]] hash = 3171872035 path = "LICENSE" - -[sources] -allow-git = [ - "https://github.com/n0-computer/irpc.git", - "https://github.com/n0-computer/iroh.git", -]