diff --git a/Cargo.lock b/Cargo.lock index 2c3d87dd87..5f06a67f88 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -5675,9 +5675,9 @@ dependencies = [ [[package]] name = "tempfile" -version = "3.24.0" +version = "3.25.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "655da9c7eb6305c55742045d5a8d2037996d61d8de95806335c7c86ce0f82e9c" +checksum = "0136791f7c95b1f6dd99f9cc786b91bb81c3800b639b3478e561ddb7be95e5f1" dependencies = [ "fastrand", "getrandom 0.3.2", diff --git a/crypto/Cargo.toml b/crypto/Cargo.toml index bdd01c7df6..dd85faf4c9 100644 --- a/crypto/Cargo.toml +++ b/crypto/Cargo.toml @@ -92,7 +92,7 @@ serde-wasm-bindgen = "0.6" [dev-dependencies] itertools.workspace = true uuid = { workspace = true, features = ["v4", "v5", "js"] } -tempfile = "3.24" +tempfile = "3.25" wasm-bindgen = "0.2" wasm-bindgen-futures = "0.4" js-sys = "0.3" diff --git a/interop/Cargo.toml b/interop/Cargo.toml index 7b24354615..a09a3e2466 100644 --- a/interop/Cargo.toml +++ b/interop/Cargo.toml @@ -31,7 +31,7 @@ const_format.workspace = true rand.workspace = true bitflags.workspace = true uuid = { workspace = true, features = ["v4"] } -tempfile = { version = "3.24" } +tempfile = { version = "3.25" } spinoff = { version = "0.8", features = [ "aesthetic", ], default-features = false } diff --git a/keystore/Cargo.toml b/keystore/Cargo.toml index 7b3447f5cf..737b25d1bb 100644 --- a/keystore/Cargo.toml +++ b/keystore/Cargo.toml @@ -96,7 +96,7 @@ proteus-wasm = { workspace = true } [target.'cfg(not(target_family = "wasm"))'.dev-dependencies] smol-macros.workspace = true macro_rules_attribute.workspace = true -tempfile = "3.24.0" +tempfile = "3.25.0" smol.workspace = true [target.'cfg(not(target_family = "wasm"))'.dev-dependencies.criterion]