diff options
Diffstat (limited to 'tvix/eval')
-rw-r--r-- | tvix/eval/Cargo.toml | 2 | ||||
-rw-r--r-- | tvix/eval/tests/nix_oracle.rs | 3 |
2 files changed, 2 insertions, 3 deletions
diff --git a/tvix/eval/Cargo.toml b/tvix/eval/Cargo.toml index cd5af7709c71..2098d470619a 100644 --- a/tvix/eval/Cargo.toml +++ b/tvix/eval/Cargo.toml @@ -35,7 +35,7 @@ xml-rs = "0.8.4" criterion = "0.4" pretty_assertions = "1.2.1" itertools = "0.10.3" -tempdir = "0.3.7" +tempfile = "3.3.0" [dev-dependencies.test-generator] # This fork of test-generator adds support for cargo workspaces, see diff --git a/tvix/eval/tests/nix_oracle.rs b/tvix/eval/tests/nix_oracle.rs index e8bd004f1d14..b777d289e03b 100644 --- a/tvix/eval/tests/nix_oracle.rs +++ b/tvix/eval/tests/nix_oracle.rs @@ -3,7 +3,6 @@ use std::{env, path::PathBuf, process::Command}; use pretty_assertions::assert_eq; -use tempdir::TempDir; fn nix_binary_path() -> PathBuf { env::var("NIX_INSTANTIATE_BINARY_PATH") @@ -18,7 +17,7 @@ enum Strictness { } fn nix_eval(expr: &str, strictness: Strictness) -> String { - let store_dir = TempDir::new("store-dir").unwrap(); + let store_dir = tempfile::tempdir().unwrap(); let mut args = match strictness { Strictness::Lazy => vec![], |