diff --git a/Cargo.lock b/Cargo.lock index a9fac1098..1305ffca5 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -4057,6 +4057,7 @@ dependencies = [ "sha1 0.11.0", "sha2 0.11.0", "suppaftp", + "tempfile", "time", "tokio", "tokio-stream", diff --git a/crates/e2e_test/Cargo.toml b/crates/e2e_test/Cargo.toml index ac68cc646..70d1bbeb9 100644 --- a/crates/e2e_test/Cargo.toml +++ b/crates/e2e_test/Cargo.toml @@ -144,3 +144,6 @@ russh = { workspace = true, features = ["serde"] } russh-sftp = { workspace = true } zip.workspace = true clap = { workspace = true, features = ["derive", "env"] } + +[dev-dependencies] +tempfile.workspace = true