From fda8e781c9e95d53647740a3a4c50c0a06e981d4 Mon Sep 17 00:00:00 2001 From: Ruediger Klaehn Date: Sat, 23 Mar 2024 11:35:31 +0200 Subject: [PATCH] chore(iroh-bytes): update bao-tree dependency to fix a bug with validation when the last chunk group is a leaf for the tree. --- Cargo.lock | 4 ++-- iroh-base/Cargo.toml | 2 +- iroh-bytes/Cargo.toml | 2 +- iroh-cli/Cargo.toml | 2 +- iroh/Cargo.toml | 2 +- 5 files changed, 6 insertions(+), 6 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index e75683c0de..b1fdb4ffe4 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -320,9 +320,9 @@ dependencies = [ [[package]] name = "bao-tree" -version = "0.11.0" +version = "0.11.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "b6ce734d9351fb4177b0cab2f954d32fea2a1090fcce4afe26c33a18d18bd1b0" +checksum = "bdae307defb220bd2698a42495e226ff89e3173f024abfc2182129603e74b5c7" dependencies = [ "bytes", "futures", diff --git a/iroh-base/Cargo.toml b/iroh-base/Cargo.toml index e832e57f6f..54a598fbe8 100644 --- a/iroh-base/Cargo.toml +++ b/iroh-base/Cargo.toml @@ -16,7 +16,7 @@ workspace = true [dependencies] anyhow = { version = "1" } -bao-tree = { version = "0.11", features = ["tokio_fsm", "validate"], default-features = false, optional = true } +bao-tree = { version = "0.11.1", features = ["tokio_fsm", "validate"], default-features = false, optional = true } data-encoding = { version = "2.3.3", optional = true } hex = "0.4.3" multibase = { version = "0.9.1", optional = true } diff --git a/iroh-bytes/Cargo.toml b/iroh-bytes/Cargo.toml index 3af8093cc7..f045ab9741 100644 --- a/iroh-bytes/Cargo.toml +++ b/iroh-bytes/Cargo.toml @@ -17,7 +17,7 @@ workspace = true [dependencies] anyhow = { version = "1" } -bao-tree = { version = "0.11", features = ["tokio_fsm"], default-features = false } +bao-tree = { version = "0.11.1", features = ["tokio_fsm"], default-features = false } bytes = { version = "1.4", features = ["serde"] } chrono = "0.4.31" data-encoding = "2.3.3" diff --git a/iroh-cli/Cargo.toml b/iroh-cli/Cargo.toml index bc79c4aca3..88a056e74a 100644 --- a/iroh-cli/Cargo.toml +++ b/iroh-cli/Cargo.toml @@ -19,7 +19,7 @@ doc = false [dependencies] anyhow = "1.0.81" -bao-tree = { version = "0.11" } +bao-tree = { version = "0.11.1" } bytes = "1.5.0" clap = { version = "4", features = ["derive"] } colored = { version = "2.0.4" } diff --git a/iroh/Cargo.toml b/iroh/Cargo.toml index 8f7d51c588..9e9c228c84 100644 --- a/iroh/Cargo.toml +++ b/iroh/Cargo.toml @@ -17,7 +17,7 @@ workspace = true [dependencies] anyhow = { version = "1" } -bao-tree = { version = "0.11", features = ["tokio_fsm"], default-features = false } +bao-tree = { version = "0.11.1", features = ["tokio_fsm"], default-features = false } bytes = "1" data-encoding = "2.4.0" derive_more = { version = "1.0.0-beta.1", features = ["debug", "display", "from", "try_into", "from_str"] }