use same SHA-1 crate with new name

This commit is contained in:
Lireer 2022-01-27 12:18:24 +01:00
parent 2e06844429
commit cfc74a558a

View file

@ -19,7 +19,7 @@ crc32fast = "1.1.1"
flate2 = { version = "1.0.0", default-features = false, optional = true }
hmac = {version = "0.12.0", optional = true}
pbkdf2 = {version = "0.10.0", optional = true }
sha-1 = {version = "0.10.0", optional = true }
sha1 = {version = "0.10.0", optional = true }
time = { version = "0.3", features = ["formatting", "macros" ], optional = true }
zstd = { version = "0.10", optional = true }
@ -29,7 +29,7 @@ getrandom = "0.2"
walkdir = "2"
[features]
aes-crypto = [ "aes", "constant_time_eq", "hmac", "pbkdf2", "sha-1" ]
aes-crypto = [ "aes", "constant_time_eq", "hmac", "pbkdf2", "sha1" ]
deflate = ["flate2/rust_backend"]
deflate-miniz = ["flate2/default"]
deflate-zlib = ["flate2/zlib"]