diff --git a/Cargo.lock b/Cargo.lock index 19d1d9aa29..b6ec04d9af 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -2354,7 +2354,6 @@ dependencies = [ "reqwest", "rstest", "serde_json", - "tempdir", "tempfile", "tokio", ] @@ -4641,19 +4640,6 @@ version = "0.7.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "dc33ff2d4973d518d823d61aa239014831e521c75da58e3df4840d3f47749d09" -[[package]] -name = "rand" -version = "0.4.6" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "552840b97013b1a26992c11eac34bdd778e464601a4c2054b5f0bff7c6761293" -dependencies = [ - "fuchsia-cprng", - "libc", - "rand_core 0.3.1", - "rdrand", - "winapi", -] - [[package]] name = "rand" version = "0.6.5" @@ -5869,16 +5855,6 @@ version = "1.0.1" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "55937e1799185b12863d447f42597ed69d9928686b8d88a1df17376a097d8369" -[[package]] -name = "tempdir" -version = "0.3.7" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "15f2b5fb00ccdf689e0149d1b1b3c03fead81c2b37735d812fa8bddbbf41b6d8" -dependencies = [ - "rand 0.4.6", - "remove_dir_all", -] - [[package]] name = "tempfile" version = "3.3.0" diff --git a/fuel-tests/Cargo.toml b/fuel-tests/Cargo.toml index f00e3cdde0..55251ad451 100644 --- a/fuel-tests/Cargo.toml +++ b/fuel-tests/Cargo.toml @@ -38,7 +38,6 @@ rand = "0.8" reqwest = "0.11" rstest = { version = "0.13" } serde_json = "1.0" -tempdir = "0.3.7" tempfile = "3.3" tokio = { version = "1.8", features = ["macros", "rt-multi-thread"] }