From cfc74a558a9a378eb5b78b23e3bd30848d5efa6a Mon Sep 17 00:00:00 2001 From: Lireer Date: Thu, 27 Jan 2022 12:18:24 +0100 Subject: [PATCH] use same SHA-1 crate with new name --- Cargo.toml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index 95c4e7a9..2ed72e48 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -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"]