From 3249f84ae9b7d41473ddac20bfb15ed604cb579a Mon Sep 17 00:00:00 2001 From: Arthur Chan Date: Mon, 21 Oct 2024 17:56:10 +0000 Subject: [PATCH] Remove unused dependencies Signed-off-by: Arthur Chan --- fuzz/Cargo.toml | 7 +------ 1 file changed, 1 insertion(+), 6 deletions(-) diff --git a/fuzz/Cargo.toml b/fuzz/Cargo.toml index 511a56c2..8c5e6622 100644 --- a/fuzz/Cargo.toml +++ b/fuzz/Cargo.toml @@ -9,9 +9,7 @@ cargo-fuzz = true [dependencies] libfuzzer-sys = "0.4" -pbkdf2 = { version = "=0.13.0-pre.1", path = "../pbkdf2" } -salsa20 = { version = "=0.11.0-pre.2", default-features = false } -sha2 = { version = "=0.11.0-pre.4", default-features = false } +scrypt = { path = "../scrypt" } password-hash = { version = "0.6.0-rc.0", default-features = false, features = ["rand_core"], optional = true } hex = "0.4" base64 = "0.22.1" @@ -21,9 +19,6 @@ default = ["simple", "std"] simple = ["password-hash"] std = ["password-hash/std"] -[dependencies.scrypt] -path = "../scrypt" - [[bin]] name = "scrypt_fuzzer" path = "fuzz_targets/scrypt_fuzzer.rs"