From: Jason Ish Date: Mon, 28 Nov 2022 14:56:08 +0000 (-0600) Subject: rust: sha-1 is now sha1 X-Git-Tag: suricata-7.0.0-rc1~335 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=refs%2Fpull%2F8216%2Fhead;p=thirdparty%2Fsuricata.git rust: sha-1 is now sha1 This is the same crate, but renamed to be more consistent with the RustCrypto project naming. Some recent discussion is available here: https://github.com/RustCrypto/hashes/issues/438 --- diff --git a/rust/Cargo.toml.in b/rust/Cargo.toml.in index 67c8bf2339..0077a01ed5 100644 --- a/rust/Cargo.toml.in +++ b/rust/Cargo.toml.in @@ -50,7 +50,7 @@ x509-parser = "~0.14.0" libc = "~0.2.82" sha2 = "~0.10.2" digest = "~0.10.3" -sha-1 = "~0.10.0" +sha1 = "~0.10.5" md-5 = "~0.10.1" regex = "~1.5.5" lazy_static = "~1.4.0"