From 5b6fd0727fd7f40f3e3605fe6bc1c30b372a2dab Mon Sep 17 00:00:00 2001 From: Nikhil Benesch Date: Sun, 28 Aug 2022 21:55:57 -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 b9f4f200..9a631fe9 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -33,7 +33,7 @@ http = "0.2" httparse = "1.3.4" log = "0.4.8" rand = "0.8.0" -sha-1 = "0.10" +sha1 = "0.10" thiserror = "1.0.23" url = "2.1.0" utf-8 = "0.7.5"