From eecd5e6e7b94c1feb7cb1d4e193476a5df4df761 Mon Sep 17 00:00:00 2001 From: Emmanuel Gil Peyrot Date: Mon, 6 Jan 2020 02:07:40 +0000 Subject: [PATCH] Make a release of both sha1-asm and sha2-asm This only adds AArch64 support, everything else should be identical, so we can make a patch release instead of a minor one. https://github.com/RustCrypto/hashes/pull/97 depends on that release. --- sha1/Cargo.toml | 2 +- sha2/Cargo.toml | 4 +--- 2 files changed, 2 insertions(+), 4 deletions(-) diff --git a/sha1/Cargo.toml b/sha1/Cargo.toml index 1b4eb40..73e5331 100644 --- a/sha1/Cargo.toml +++ b/sha1/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "sha1-asm" -version = "0.4.3" +version = "0.4.4" authors = ["RustCrypto Developers"] license = "MIT" description = "Assembly implementation of SHA-1 compression function" diff --git a/sha2/Cargo.toml b/sha2/Cargo.toml index 81a7855..5ef98eb 100644 --- a/sha2/Cargo.toml +++ b/sha2/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "sha2-asm" -version = "0.5.2" +version = "0.5.3" authors = ["RustCrypto Developers"] license = "MIT" description = "Assembly implementation of SHA-2 compression functions" @@ -9,8 +9,6 @@ repository = "https://github.com/RustCrypto/asm-hashes" keywords = ["crypto", "sha2", "asm"] categories = ["cryptography", "no-std"] -[dependencies] - [build-dependencies] cc = "1.0"