diff --git a/Cargo.lock b/Cargo.lock index bbb8569..020a069 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -69,6 +69,12 @@ dependencies = [ "libc", ] +[[package]] +name = "once_cell" +version = "1.19.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "3fdb12b2476b595f9358c5161aa467c2438859caa136dec86c26fdd2efe17b92" + [[package]] name = "rustix" version = "0.38.31" @@ -84,12 +90,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 78df256..9f63b2e 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -19,7 +19,7 @@ libc = "0.2.87" nix = { version = "0.28.0", features = ["fs"] } [dev-dependencies] -tempfile = "3.10.1" +tempfile = "3.11.0" [[test]] name = "client"