diff --git a/Cargo.lock b/Cargo.lock index 0ead059..12dd368 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -3945,12 +3945,13 @@ checksum = "4873307b7c257eddcb50c9bedf158eb669578359fb28428bef438fec8e6ba7c2" [[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 0.52.0", ] diff --git a/usbsas-analyzer-server/Cargo.toml b/usbsas-analyzer-server/Cargo.toml index 3800cf9..20638c6 100644 --- a/usbsas-analyzer-server/Cargo.toml +++ b/usbsas-analyzer-server/Cargo.toml @@ -15,7 +15,7 @@ log = "0.4" serde = { version = "1.0", features = ["derive"] } serde_json = "1.0" tar = "0.4" -tempfile = "3.10" +tempfile = "3.11" uuid = { version = "1.10", features = ["v4"] } [features] diff --git a/usbsas-tools/Cargo.toml b/usbsas-tools/Cargo.toml index ba85352..55aa7b1 100644 --- a/usbsas-tools/Cargo.toml +++ b/usbsas-tools/Cargo.toml @@ -14,7 +14,7 @@ indicatif = { version = "0.17", optional = true } libc = { version = "0.2", optional = true } log = "0.4" nix = { version = "0.29", optional = true, features = ["user"] } -tempfile = { version = "3.10", optional = true } +tempfile = { version = "3.11", optional = true } serde_json = { version = "1.0", optional = true} thiserror = "1.0" time = { version = "0.3", optional = true }