From 07fba1548b1efb980de8e4394240cd1ec9920c83 Mon Sep 17 00:00:00 2001 From: Nikhil Benesch Date: Sun, 28 Aug 2022 21:56:38 -0400 Subject: [PATCH] Switch from `sha-1` to `sha1` The RustCrypto project recently got control of the crate name `sha1`. This commit switches over to the new name; the old `sha-1` name is now deprecated. Details: https://github.com/RustCrypto/hashes/pull/350 --- Cargo.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Cargo.toml b/Cargo.toml index f0d8065e..a93c662c 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -23,7 +23,7 @@ base64 = "0.13" bitflags = "1.0" bytes = "1" mime = "0.3.14" -sha-1 = "0.10" +sha1 = "0.10" httpdate = "1" [features]