Skip to content

Commit 01ec7a9

Browse files
committed
Merge #651: Bump anyhow dep version to 1.0.103 to fix RUSTSEC-2026-0190
2381d72 Bump anyhow dep version to 1.0.103 (Jamil Lambert, PhD) Pull request description: There is a RUSTSEC-2026-0186: Unchecked pointer offset advisory for anyhow versions < 1.0.103. Bump the anyhow dependency to 1.0.103. Update the lockfiles. Closes #649 ACKs for top commit: satsfy: tACK 2381d72 luisschwab: ACK 2381d72 tcharding: ACK 2381d72 Tree-SHA512: 7f0e0b6f0238e58bf1b049ae4673e342c72b56599ce07bf151b4f8c2d12999d91e23607733b0e1b83415144f17d0f7240783f6295557bfbd54f0632e67f6d341
2 parents e16c1a1 + 2381d72 commit 01ec7a9

5 files changed

Lines changed: 8 additions & 8 deletions

File tree

Cargo-minimal.lock

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -28,9 +28,9 @@ dependencies = [
2828

2929
[[package]]
3030
name = "anyhow"
31-
version = "1.0.95"
31+
version = "1.0.103"
3232
source = "registry+https://github.com/rust-lang/crates.io-index"
33-
checksum = "34ac096ce696dc2fcabef30516bb13c0a68a11d30131d3df6f04711467681b04"
33+
checksum = "2a4385e2e34eb35d6b3efe798b9eb88096925d87726c0798709bf56d9ed84af3"
3434

3535
[[package]]
3636
name = "arrayvec"

Cargo-recent.lock

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -28,9 +28,9 @@ dependencies = [
2828

2929
[[package]]
3030
name = "anyhow"
31-
version = "1.0.95"
31+
version = "1.0.103"
3232
source = "registry+https://github.com/rust-lang/crates.io-index"
33-
checksum = "34ac096ce696dc2fcabef30516bb13c0a68a11d30131d3df6f04711467681b04"
33+
checksum = "2a4385e2e34eb35d6b3efe798b9eb88096925d87726c0798709bf56d9ed84af3"
3434

3535
[[package]]
3636
name = "arrayvec"

bitcoind/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ rust-version = "1.75.0"
1313
exclude = ["tests", "contrib"]
1414

1515
[dependencies]
16-
anyhow = { version = "1.0.66", default-features = false, features = ["std"] }
16+
anyhow = { version = "1.0.103", default-features = false, features = ["std"] }
1717
corepc-client = { version = "0.16.0", path = "../client", features = ["client-sync"] }
1818
log = { version = "0.4", default-features = false }
1919
serde_json = { version = "1.0.117", default-features = false }
@@ -24,7 +24,7 @@ which = { version = "3.1.1", default-features = false }
2424
env_logger = { version = "0.9.3", default-features = false }
2525

2626
[build-dependencies]
27-
anyhow = { version = "1.0.66", optional = true }
27+
anyhow = { version = "1.0.103", optional = true }
2828
bitcoin_hashes = { version = ">= 0.13, <= 0.14", optional = true }
2929
flate2 = { version = "1.0", optional = true }
3030
bitreq = { version = "0.3.5", path = "../bitreq", features = ["https"], optional = true }

electrsd/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ nix = { version = "0.25.0" }
2424
env_logger = { version = "0.10" }
2525

2626
[build-dependencies]
27-
anyhow = { version = "1.0.66", default-features = false, features = ["std"], optional = true }
27+
anyhow = { version = "1.0.103", default-features = false, features = ["std"], optional = true }
2828
bitcoin_hashes = { version = "0.14", optional = true }
2929
zip = { version = "0.6", default-features = false, optional = true, features = [
3030
"bzip2",

verify/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ version = "0.1.0"
44
edition = "2021"
55

66
[dependencies]
7-
anyhow = "1.0.93"
7+
anyhow = "1.0.103"
88
clap = { version = "4.5.23", features = ["cargo"] }
99
regex = "1"
1010
syn = { version = "2.0", default-features = false, features = ["full", "parsing"] }

0 commit comments

Comments
 (0)