diff --git a/Cargo.lock b/Cargo.lock index 42bcad0..c59d2c5 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -773,12 +773,13 @@ dependencies = [ [[package]] name = "tempfile" -version = "3.13.0" +version = "3.15.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "f0f2c9fc62d0beef6951ccffd757e241266a2c833136efbe35af6cd2567dca5b" +checksum = "9a8a559c81686f576e8cd0290cd2a24a2a9ad80c98b3478856500fcbd7acd704" dependencies = [ "cfg-if", "fastrand", + "getrandom", "once_cell", "rustix", "windows-sys 0.59.0", diff --git a/Cargo.toml b/Cargo.toml index fe71594..d294a3e 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -20,7 +20,7 @@ thiserror = "2.0.3" anyhow = "1.0.93" toml = "0.8.19" toml_edit = "0.22.22" -tempfile = "3.13.0" +tempfile = "3.15.0" regex = "1.11.1" tracing-subscriber = { version = "0.3.18", features = ["env-filter"] } tracing = "0.1.40"