diff --git a/Cargo.lock b/Cargo.lock index d47ff21..d3e55bb 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -96,6 +96,12 @@ version = "0.4.13" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "01cda141df6706de531b6c46c3a33ecca755538219bd484262fa09410c13539c" +[[package]] +name = "once_cell" +version = "1.19.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "3fdb12b2476b595f9358c5161aa467c2438859caa136dec86c26fdd2efe17b92" + [[package]] name = "proc-macro2" version = "1.0.78" @@ -223,12 +229,13 @@ dependencies = [ [[package]] name = "tempfile" -version = "3.10.1" +version = "3.11.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "85b77fafb263dd9d05cbeac119526425676db3784113aa9295c88498cbf8bff1" +checksum = "b8fcd239983515c23a32fb82099f97d0b11b8c72f654ed659363a95c3dad7a53" dependencies = [ "cfg-if", "fastrand", + "once_cell", "rustix", "windows-sys", ] diff --git a/Cargo.toml b/Cargo.toml index 43d64bd..f635684 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -18,5 +18,5 @@ gumdrop = { version = "0.8.1" } serde = { version = "1.0.201", features = ["derive"] } serde_json = "1.0.117" serde_yaml = "0.9.34" -tempfile = "3.10.0" +tempfile = "3.11.0" walkdir = "2.5.0"