diff --git a/Cargo.lock b/Cargo.lock index 57f95a9..52bc191 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1714,8 +1714,7 @@ checksum = "469fb0b9cefa57e3ef31275ee7cacb78f2fdca44e4765491884a2b119d4eb130" [[package]] name = "iroh" version = "0.90.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "9436f319c2d24bca1b28a2fab4477c8d2ac795ab2d3aeda142d207b38ec068f4" +source = "git+https://github.com/n0-computer/iroh.git?branch=main#9c023bf4d7d1c3c10a9cc3b10df7e1a22c6ab7a4" dependencies = [ "aead", "backon", @@ -1733,7 +1732,7 @@ dependencies = [ "http 1.2.0", "igd-next", "instant", - "iroh-base", + "iroh-base 0.90.0 (git+https://github.com/n0-computer/iroh.git?branch=main)", "iroh-metrics", "iroh-quinn", "iroh-quinn-proto", @@ -1791,11 +1790,27 @@ dependencies = [ "url", ] +[[package]] +name = "iroh-base" +version = "0.90.0" +source = "git+https://github.com/n0-computer/iroh.git?branch=main#9c023bf4d7d1c3c10a9cc3b10df7e1a22c6ab7a4" +dependencies = [ + "curve25519-dalek", + "data-encoding", + "derive_more 1.0.0", + "ed25519-dalek", + "n0-snafu", + "nested_enum_utils", + "rand_core 0.6.4", + "serde", + "snafu", + "url", +] + [[package]] name = "iroh-blobs" version = "0.90.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "e5b6e39e8a3e9dded2eb0083fe5decf8a17000f22ba9b0b500ae1f476ce877b4" +source = "git+https://github.com/n0-computer/iroh-blobs.git?branch=main#c38c0a149c5f71bafe7b4479528d1265edc1a981" dependencies = [ "anyhow", "arrayvec", @@ -1810,7 +1825,7 @@ dependencies = [ "hashlink", "hex", "iroh", - "iroh-base", + "iroh-base 0.90.0 (registry+https://github.com/rust-lang/crates.io-index)", "iroh-io", "iroh-metrics", "iroh-quinn", @@ -1930,8 +1945,7 @@ dependencies = [ [[package]] name = "iroh-relay" version = "0.90.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "c3f3cdbdaebc92835452e4e1d0d4b36118206b0950089b7bc3654f13e843475b" +source = "git+https://github.com/n0-computer/iroh.git?branch=main#9c023bf4d7d1c3c10a9cc3b10df7e1a22c6ab7a4" dependencies = [ "bytes", "cfg_aliases", @@ -1943,7 +1957,7 @@ dependencies = [ "http-body-util", "hyper", "hyper-util", - "iroh-base", + "iroh-base 0.90.0 (git+https://github.com/n0-computer/iroh.git?branch=main)", "iroh-metrics", "iroh-quinn", "iroh-quinn-proto", diff --git a/Cargo.toml b/Cargo.toml index 268ea45..e5ea2c0 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -48,3 +48,7 @@ tempfile = "3.8.1" [features] clipboard = ["dep:base64"] default = ["clipboard"] + +[patch.crates-io] +iroh = { git = "https://github.com/n0-computer/iroh.git", branch = "main" } +iroh-blobs = { git = "https://github.com/n0-computer/iroh-blobs.git", branch = "main" }