Skip to content

Commit 97afaf1

Browse files
committed
Use published versions of iroh and friends
1 parent 152b5e7 commit 97afaf1

File tree

3 files changed

+29
-24
lines changed

3 files changed

+29
-24
lines changed

Cargo.lock

Lines changed: 19 additions & 14 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -37,13 +37,13 @@ chrono = "0.4.39"
3737
nested_enum_utils = "0.2.1"
3838
ref-cast = "1.0.24"
3939
arrayvec = "0.7.6"
40-
iroh = "0.35"
40+
iroh = "0.90"
4141
self_cell = "1.1.0"
4242
genawaiter = { version = "0.99.1", features = ["futures03"] }
43-
iroh-base = "0.35"
43+
iroh-base = "0.90"
4444
reflink-copy = "0.1.24"
45-
irpc = { version = "0.4.0", features = ["rpc", "quinn_endpoint_setup", "message_spans", "stream", "derive"], default-features = false }
46-
iroh-metrics = { version = "0.34.0" }
45+
irpc = { version = "0.5.0", features = ["rpc", "quinn_endpoint_setup", "message_spans", "stream", "derive"], default-features = false }
46+
iroh-metrics = { version = "0.35" }
4747
hashlink = "0.10.0"
4848
futures-buffered = "0.2.11"
4949

@@ -66,8 +66,8 @@ hide-proto-docs = []
6666
metrics = []
6767
default = ["hide-proto-docs"]
6868

69-
[patch.crates-io]
70-
iroh = { git = "https://github.com/n0-computer/iroh.git", branch = "ramfox/ticket-error" }
71-
iroh-base = { git = "https://github.com/n0-computer/iroh.git", branch = "ramfox/ticket-error" }
72-
irpc = { git = "https://github.com/n0-computer/irpc.git", branch = "iroh-quinn-latest" }
73-
irpc-derive = { git = "https://github.com/n0-computer/irpc.git", branch = "iroh-quinn-latest" }
69+
# [patch.crates-io]
70+
# iroh = { git = "https://github.com/n0-computer/iroh.git", branch = "ramfox/ticket-error" }
71+
# iroh-base = { git = "https://github.com/n0-computer/iroh.git", branch = "ramfox/ticket-error" }
72+
# irpc = { git = "https://github.com/n0-computer/irpc.git", branch = "iroh-quinn-latest" }
73+
# irpc-derive = { git = "https://github.com/n0-computer/irpc.git", branch = "iroh-quinn-latest" }

examples/random_store.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -94,7 +94,7 @@ pub fn get_or_generate_secret_key() -> Result<SecretKey> {
9494
// Generate a new random key
9595
let secret_key = SecretKey::generate(&mut rand::thread_rng());
9696
println!("Generated new random secret key");
97-
println!("To reuse this key, set the IROH_SECRET={secret_key}");
97+
println!("To reuse this key, set the IROH_SECRET={secret_key:?}");
9898
Ok(secret_key)
9999
}
100100
}

0 commit comments

Comments
 (0)