From 0b6402fbaddd233ce6399c92a7ebf40c6bb13699 Mon Sep 17 00:00:00 2001 From: Kasey Date: Mon, 30 Sep 2024 11:37:11 -0400 Subject: [PATCH 1/2] chore: upgrade iroh to v0.26.0 --- Cargo.toml | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/Cargo.toml b/Cargo.toml index 74ef5c5..72bb9e2 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "iroh-net-ffi" -version = "0.25.0" +version = "0.26.0" edition = "2021" license = "MIT OR Apache-2.0" @@ -32,3 +32,6 @@ url = "2.5.0" [features] # generate headers headers = ["safer-ffi/headers"] + +[patch.crates-io] +iroh-net = { git = "https://github.com/n0-computer/iroh", branch = "main" } From a1114f7d948946089a202f5679ebec993f4270bc Mon Sep 17 00:00:00 2001 From: Kasey Date: Mon, 30 Sep 2024 15:24:38 -0400 Subject: [PATCH 2/2] upgrade to iroh v0.26.0 --- Cargo.toml | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index 72bb9e2..a83e81c 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -19,7 +19,7 @@ required-features = ["headers"] # Do not build unless generating headers. [dependencies] anyhow = "1.0.79" bytes = "1.5.0" -iroh-net = { version = "0.25", features = ["discovery-local-network"] } +iroh-net = { version = "0.26", features = ["discovery-local-network"] } once_cell = "1.19.0" quinn = { version = "0.11.3", package = "iroh-quinn" } safer-ffi = { version = "0.1.5" } @@ -32,6 +32,3 @@ url = "2.5.0" [features] # generate headers headers = ["safer-ffi/headers"] - -[patch.crates-io] -iroh-net = { git = "https://github.com/n0-computer/iroh", branch = "main" }