diff --git a/Cargo.lock b/Cargo.lock index b90f270..0cb636d 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -80,9 +80,9 @@ dependencies = [ [[package]] name = "anyhow" -version = "1.0.91" +version = "1.0.92" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "c042108f3ed77fd83760a5fd79b53be043192bb3b9dba91d8c574c0ada7850c8" +checksum = "74f37166d7d48a0284b99dd824694c26119c700b53bf0d1540cdb147dbdaaf13" [[package]] name = "ar" @@ -1100,9 +1100,9 @@ dependencies = [ [[package]] name = "which" -version = "6.0.3" +version = "7.0.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "b4ee928febd44d98f2f459a4a79bd4d928591333a494a10a868418ac1b39cf1f" +checksum = "c9cad3279ade7346b96e38731a641d7343dd6a53d55083dd54eadfa5a1b38c6b" dependencies = [ "either", "home", diff --git a/linker-diff/Cargo.toml b/linker-diff/Cargo.toml index 408e1d5..db1ddd0 100644 --- a/linker-diff/Cargo.toml +++ b/linker-diff/Cargo.toml @@ -20,7 +20,7 @@ iced-x86 = { version = "1.21.0", default-features = false, features = [ "gas", ] } symbolic-demangle = "12.12.0" -anyhow = "1.0.91" +anyhow = "1.0.92" clap = { version = "4.5.20", features = ["derive"] } rayon = "1.10.0" bytemuck = { version = "1.19.0", features = ["derive"] } diff --git a/linker-layout/Cargo.toml b/linker-layout/Cargo.toml index e8e98f8..bc91198 100644 --- a/linker-layout/Cargo.toml +++ b/linker-layout/Cargo.toml @@ -4,6 +4,6 @@ version = "0.1.0" edition = "2021" [dependencies] -anyhow = "1.0.91" +anyhow = "1.0.92" postcard = { version = "1.0.10", features = ["use-std"] } serde = { version = "1.0.214", features = ["derive"] } diff --git a/linker-trace/Cargo.toml b/linker-trace/Cargo.toml index 3126084..855514c 100644 --- a/linker-trace/Cargo.toml +++ b/linker-trace/Cargo.toml @@ -4,6 +4,6 @@ version = "0.1.0" edition = "2021" [dependencies] -anyhow = "1.0.91" +anyhow = "1.0.92" postcard = { version = "1.0.10", features = ["use-std"] } serde = { version = "1.0.214", features = ["derive"] } diff --git a/wild/Cargo.toml b/wild/Cargo.toml index 9ad8dff..2ea86a3 100644 --- a/wild/Cargo.toml +++ b/wild/Cargo.toml @@ -7,7 +7,7 @@ edition = "2021" wild_lib = { version = "0.2.0", path = "../wild_lib" } [dev-dependencies] -anyhow = "1.0.91" +anyhow = "1.0.92" wait-timeout = "0.2.0" itertools = "0.13.0" object = { version = "0.36.5", default-features = false, features = [ @@ -17,5 +17,5 @@ object = { version = "0.36.5", default-features = false, features = [ "unaligned", ] } linker-diff = { path = "../linker-diff" } -which = "6.0.3" +which = "7.0.0" rstest = "0.23.0" diff --git a/wild_lib/Cargo.toml b/wild_lib/Cargo.toml index 94b4ecb..578b9e2 100644 --- a/wild_lib/Cargo.toml +++ b/wild_lib/Cargo.toml @@ -5,7 +5,7 @@ edition = "2021" [dependencies] ahash = { version = "0.8.11", default-features = false, features = ["std"] } -anyhow = "1.0.91" +anyhow = "1.0.92" bitflags = "2.6.0" bytemuck = { version = "1.19.0", features = ["derive"] } crossbeam-queue = "0.3.11"