diff --git a/Cargo.lock b/Cargo.lock index 78ec1f00..0b4b72d8 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -811,7 +811,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "39cab71617ae0d63f51a36d69f866391735b51691dbda63cf6f96d042b63efeb" dependencies = [ "libc", - "windows-sys 0.59.0", + "windows-sys 0.61.2", ] [[package]] @@ -1563,7 +1563,7 @@ dependencies = [ "hickory-resolver", "http", "ipnet", - "iroh-base", + "iroh-base 0.97.0", "iroh-metrics", "iroh-relay", "n0-error", @@ -1619,6 +1619,18 @@ dependencies = [ "zeroize_derive", ] +[[package]] +name = "iroh-base" +version = "0.98.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "738865784637830fb14204ebd3047922db83bc1816a59027af29579b9c27bd99" +dependencies = [ + "derive_more", + "n0-error", + "serde", + "url", +] + [[package]] name = "iroh-metrics" version = "0.38.3" @@ -1664,7 +1676,7 @@ dependencies = [ "http-body-util", "hyper", "hyper-util", - "iroh-base", + "iroh-base 0.97.0", "iroh-metrics", "lru", "n0-error", @@ -1730,7 +1742,7 @@ dependencies = [ "getrandom 0.3.4", "indexmap", "iroh", - "iroh-base", + "iroh-base 0.98.0", "itertools 0.14.0", "lean-ffi", "mimalloc", @@ -2207,7 +2219,7 @@ version = "0.50.3" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "7957b9740744892f114936ab4a57b3f487491bbeafaf8083688b16841a4240e5" dependencies = [ - "windows-sys 0.59.0", + "windows-sys 0.61.2", ] [[package]] @@ -3211,7 +3223,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "5b55fb86dfd3a2f5f76ea78310a88f96c4ea21a3031f8d212443d56123fd0521" dependencies = [ "libc", - "windows-sys 0.59.0", + "windows-sys 0.61.2", ] [[package]] @@ -3390,7 +3402,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "3a766e1110788c36f4fa1c2b71b387a7815aa65f88ce0229841826633d93723e" dependencies = [ "libc", - "windows-sys 0.60.2", + "windows-sys 0.61.2", ] [[package]] diff --git a/Cargo.toml b/Cargo.toml index 3efdfe00..5a535509 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -24,7 +24,7 @@ sha2 = "0.10" bytes = { version = "1.10.1", optional = true } tokio = { version = "1.44.1", optional = true } iroh = { version = "0.97", optional = true } -iroh-base = { version = "0.97", optional = true } +iroh-base = { version = "0.98", optional = true } n0-error = { version = "0.1", optional = true } getrandom = { version = "0.3", optional = true } tracing = { version = "0.1", optional = true }