diff --git a/md5/Cargo.toml b/md5/Cargo.toml index 82564c1..58ea2ca 100644 --- a/md5/Cargo.toml +++ b/md5/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "md5-asm" -version = "0.2.1" +version = "0.3.0" authors = ["The RustCrypto Devs"] license = "MIT" description = "Assembly implementation of MD5 compression function" @@ -10,7 +10,7 @@ keywords = ["crypto", "md5", "asm"] categories = ["cryptography", "no-std"] [dependencies] -generic-array = "0.7" +generic-array = "0.8" [build-dependencies] gcc = "0.3" diff --git a/sha1/Cargo.toml b/sha1/Cargo.toml index c55db12..eca5bce 100644 --- a/sha1/Cargo.toml +++ b/sha1/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "sha1-asm" -version = "0.2.1" +version = "0.3.0" authors = ["The RustCrypto Devs"] license = "MIT" description = "Assembly implementation of SHA-1 compression function" @@ -10,7 +10,7 @@ keywords = ["crypto", "sha1", "asm"] categories = ["cryptography", "no-std"] [dependencies] -generic-array = "0.7" +generic-array = "0.8" [build-dependencies] gcc = "0.3" diff --git a/sha2/Cargo.toml b/sha2/Cargo.toml index beb100e..dbf2632 100644 --- a/sha2/Cargo.toml +++ b/sha2/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "sha2-asm" -version = "0.2.1" +version = "0.3.0" authors = ["The RustCrypto Devs"] license = "MIT" description = "Assembly implementation of SHA-2 compression functions" @@ -10,7 +10,7 @@ keywords = ["crypto", "sha2", "asm"] categories = ["cryptography", "no-std"] [dependencies] -generic-array = "0.7" +generic-array = "0.8" [build-dependencies] gcc = "0.3" diff --git a/whirlpool/Cargo.toml b/whirlpool/Cargo.toml index 8bd1e2a..18bcf64 100644 --- a/whirlpool/Cargo.toml +++ b/whirlpool/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "whirlpool-asm" -version = "0.2.2" +version = "0.3.0" authors = ["The RustCrypto Devs"] license = "MIT" description = "Assembly implementation of Whirlpool compression function" @@ -10,7 +10,7 @@ keywords = ["crypto", "whirlpool", "asm"] categories = ["cryptography", "no-std"] [dependencies] -generic-array = "0.7" +generic-array = "0.8" [build-dependencies] gcc = "0.3"