diff --git a/Cargo.lock b/Cargo.lock index 368ebcc2..c03de110 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -91,9 +91,9 @@ checksum = "2fd1289c04a9ea8cb22300a459a72a385d7c73d3259e2ed7dcb2af674838cfa9" [[package]] name = "cipher" -version = "0.5.0-rc.8" +version = "0.5.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "9002c8edb9b1e21938663da3489c9c4403bba2393997fb2ecbd401386c0e71dc" +checksum = "64727038c8c5e2bb503a15b9f5b9df50a1da9a33e83e1f93067d914f2c6604a5" dependencies = [ "blobby", "block-buffer", @@ -119,9 +119,9 @@ dependencies = [ [[package]] name = "crypto-common" -version = "0.2.0-rc.15" +version = "0.2.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "6f8441110cea75afde0b89a8d796e2bc67b23432f5a9566cb15d9d365d91a2b0" +checksum = "211f05e03c7d03754740fd9e585de910a095d6b99f8bcfffdef8319fa02a8331" dependencies = [ "hybrid-array", ] @@ -150,9 +150,9 @@ checksum = "bcaaec4551594c969335c98c903c1397853d4198408ea609190f420500f6be71" [[package]] name = "hybrid-array" -version = "0.4.0" +version = "0.4.7" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "6fe39a812f039072707ce38020acbab2f769087952eddd9e2b890f37654b2349" +checksum = "e1b229d73f5803b562cc26e4da0396c8610a4ee209f4fac8fa4f8d709166dc45" dependencies = [ "typenum", "zeroize", diff --git a/aes/Cargo.toml b/aes/Cargo.toml index a51c4040..b0d31fc3 100644 --- a/aes/Cargo.toml +++ b/aes/Cargo.toml @@ -13,7 +13,7 @@ keywords = ["crypto", "aes", "rijndael", "block-cipher"] categories = ["cryptography", "no-std"] [dependencies] -cipher = "0.5.0-rc.8" +cipher = "0.5" cpubits = "0.1.0-rc.3" zeroize = { version = "1.5.6", optional = true, default-features = false, features = ["aarch64"] } @@ -21,7 +21,7 @@ zeroize = { version = "1.5.6", optional = true, default-features = false, featur cpufeatures = "0.2.12" [dev-dependencies] -cipher = { version = "0.5.0-rc.8", features = ["dev"] } +cipher = { version = "0.5", features = ["dev"] } hex-literal = "1" [features] diff --git a/aria/Cargo.toml b/aria/Cargo.toml index 41c473b5..7351794c 100644 --- a/aria/Cargo.toml +++ b/aria/Cargo.toml @@ -13,10 +13,10 @@ keywords = ["crypto", "aria", "block-cipher"] categories = ["cryptography", "no-std"] [dependencies] -cipher = "0.5.0-rc.8" +cipher = "0.5" [dev-dependencies] -cipher = { version = "0.5.0-rc.8", features = ["dev"] } +cipher = { version = "0.5", features = ["dev"] } hex-literal = "1" [features] diff --git a/belt-block/Cargo.toml b/belt-block/Cargo.toml index 922ca753..41a4e7f9 100644 --- a/belt-block/Cargo.toml +++ b/belt-block/Cargo.toml @@ -12,10 +12,10 @@ repository = "https://github.com/RustCrypto/block-ciphers" keywords = ["crypto", "belt-block", "belt", "stb"] [dependencies] -cipher = { version = "0.5.0-rc.8", optional = true } +cipher = { version = "0.5", optional = true } [dev-dependencies] -cipher = { version = "0.5.0-rc.8", features = ["dev"] } +cipher = { version = "0.5", features = ["dev"] } hex-literal = "1" [features] diff --git a/blowfish/Cargo.toml b/blowfish/Cargo.toml index 7f67960e..1883204b 100644 --- a/blowfish/Cargo.toml +++ b/blowfish/Cargo.toml @@ -13,11 +13,11 @@ keywords = ["crypto", "blowfish", "block-cipher"] categories = ["cryptography", "no-std"] [dependencies] -cipher = "0.5.0-rc.8" +cipher = "0.5" byteorder = { version = "1.1", default-features = false } [dev-dependencies] -cipher = { version = "0.5.0-rc.8", features = ["dev"] } +cipher = { version = "0.5", features = ["dev"] } [features] bcrypt = [] diff --git a/camellia/Cargo.toml b/camellia/Cargo.toml index 8f8ff536..9f4ecfbf 100644 --- a/camellia/Cargo.toml +++ b/camellia/Cargo.toml @@ -14,10 +14,10 @@ categories = ["cryptography", "no-std"] [dependencies] byteorder = { version = "1.1", default-features = false } -cipher = "0.5.0-rc.8" +cipher = "0.5" [dev-dependencies] -cipher = { version = "0.5.0-rc.8", features = ["dev"] } +cipher = { version = "0.5", features = ["dev"] } [features] zeroize = ["cipher/zeroize"] diff --git a/cast5/Cargo.toml b/cast5/Cargo.toml index 01c5667a..7835ffef 100644 --- a/cast5/Cargo.toml +++ b/cast5/Cargo.toml @@ -13,10 +13,10 @@ keywords = ["crypto", "cast5", "block-cipher"] categories = ["cryptography", "no-std"] [dependencies] -cipher = "0.5.0-rc.8" +cipher = "0.5" [dev-dependencies] -cipher = { version = "0.5.0-rc.8", features = ["dev"] } +cipher = { version = "0.5", features = ["dev"] } hex-literal = "1" [features] diff --git a/cast6/Cargo.toml b/cast6/Cargo.toml index 25971d90..89b8cc09 100644 --- a/cast6/Cargo.toml +++ b/cast6/Cargo.toml @@ -13,10 +13,10 @@ keywords = ["crypto", "cast6", "block-cipher"] categories = ["cryptography", "no-std"] [dependencies] -cipher = "0.5.0-rc.8" +cipher = "0.5" [dev-dependencies] -cipher = { version = "0.5.0-rc.8", features = ["dev"] } +cipher = { version = "0.5", features = ["dev"] } hex-literal = "1" [features] diff --git a/des/Cargo.toml b/des/Cargo.toml index 2cbb40cb..d0f69335 100644 --- a/des/Cargo.toml +++ b/des/Cargo.toml @@ -13,10 +13,10 @@ keywords = ["crypto", "des", "tdes", "block-cipher"] categories = ["cryptography", "no-std"] [dependencies] -cipher = "0.5.0-rc.8" +cipher = "0.5" [dev-dependencies] -cipher = { version = "0.5.0-rc.8", features = ["dev"] } +cipher = { version = "0.5", features = ["dev"] } hex-literal = "1" [features] diff --git a/gift/Cargo.toml b/gift/Cargo.toml index 69e61401..9d92d15a 100644 --- a/gift/Cargo.toml +++ b/gift/Cargo.toml @@ -13,10 +13,10 @@ keywords = ["crypto", "gift", "block-cipher"] categories = ["cryptography", "no-std"] [dependencies] -cipher = "0.5.0-rc.8" +cipher = "0.5" [dev-dependencies] -cipher = { version = "0.5.0-rc.8", features = ["dev"] } +cipher = { version = "0.5", features = ["dev"] } hex-literal = "1" [features] diff --git a/idea/Cargo.toml b/idea/Cargo.toml index 64476cf8..7f74f1c6 100644 --- a/idea/Cargo.toml +++ b/idea/Cargo.toml @@ -13,10 +13,10 @@ keywords = ["crypto", "idea", "block-cipher"] categories = ["cryptography", "no-std"] [dependencies] -cipher = "0.5.0-rc.8" +cipher = "0.5" [dev-dependencies] -cipher = { version = "0.5.0-rc.8", features = ["dev"] } +cipher = { version = "0.5", features = ["dev"] } [features] zeroize = ["cipher/zeroize"] diff --git a/kuznyechik/Cargo.toml b/kuznyechik/Cargo.toml index b9d5884b..f865fc07 100644 --- a/kuznyechik/Cargo.toml +++ b/kuznyechik/Cargo.toml @@ -13,11 +13,11 @@ keywords = ["crypto", "kuznyechik", "gost", "block-cipher"] categories = ["cryptography", "no-std"] [dependencies] -cipher = "0.5.0-rc.8" +cipher = "0.5" cfg-if = "1" [dev-dependencies] -cipher = { version = "0.5.0-rc.8", features = ["dev"] } +cipher = { version = "0.5", features = ["dev"] } hex-literal = "1" [features] diff --git a/magma/Cargo.toml b/magma/Cargo.toml index b796c0c9..96bd663a 100644 --- a/magma/Cargo.toml +++ b/magma/Cargo.toml @@ -13,10 +13,10 @@ keywords = ["crypto", "magma", "gost", "block-cipher"] categories = ["cryptography", "no-std"] [dependencies] -cipher = "0.5.0-rc.8" +cipher = "0.5" [dev-dependencies] -cipher = { version = "0.5.0-rc.8", features = ["dev"] } +cipher = { version = "0.5", features = ["dev"] } hex-literal = "1" [features] diff --git a/rc2/Cargo.toml b/rc2/Cargo.toml index 4c717c37..870389b0 100644 --- a/rc2/Cargo.toml +++ b/rc2/Cargo.toml @@ -13,10 +13,10 @@ keywords = ["crypto", "rc2", "block-cipher"] categories = ["cryptography", "no-std"] [dependencies] -cipher = "0.5.0-rc.8" +cipher = "0.5" [dev-dependencies] -cipher = { version = "0.5.0-rc.8", features = ["dev"] } +cipher = { version = "0.5", features = ["dev"] } [features] zeroize = ["cipher/zeroize"] diff --git a/rc5/Cargo.toml b/rc5/Cargo.toml index 14dad1fc..467ab71b 100644 --- a/rc5/Cargo.toml +++ b/rc5/Cargo.toml @@ -12,10 +12,10 @@ keywords = ["crypto", "rc5", "block-cipher"] categories = ["cryptography"] [dependencies] -cipher = "0.5.0-rc.8" +cipher = "0.5" [dev-dependencies] -cipher = { version = "0.5.0-rc.8", features = ["dev"] } +cipher = { version = "0.5", features = ["dev"] } hex-literal = "1" [features] diff --git a/rc6/Cargo.toml b/rc6/Cargo.toml index e291fc09..c9e8e7bd 100644 --- a/rc6/Cargo.toml +++ b/rc6/Cargo.toml @@ -12,10 +12,10 @@ keywords = ["crypto", "rc6", "block-cipher"] categories = ["cryptography"] [dependencies] -cipher = { version = "0.5.0-rc.8", features = ["zeroize"] } +cipher = { version = "0.5", features = ["zeroize"] } [dev-dependencies] -cipher = { version = "0.5.0-rc.8", features = ["dev"] } +cipher = { version = "0.5", features = ["dev"] } [features] zeroize = [] diff --git a/serpent/Cargo.toml b/serpent/Cargo.toml index 5624a3c4..56175a77 100644 --- a/serpent/Cargo.toml +++ b/serpent/Cargo.toml @@ -13,10 +13,10 @@ keywords = ["crypto", "serpent", "block-cipher"] categories = ["cryptography", "no-std"] [dependencies] -cipher = "0.5.0-rc.8" +cipher = "0.5" [dev-dependencies] -cipher = { version = "0.5.0-rc.8", features = ["dev"] } +cipher = { version = "0.5", features = ["dev"] } [features] zeroize = ["cipher/zeroize"] diff --git a/sm4/Cargo.toml b/sm4/Cargo.toml index c2269f89..ea07e7ac 100644 --- a/sm4/Cargo.toml +++ b/sm4/Cargo.toml @@ -13,10 +13,10 @@ keywords = ["crypto", "sm4", "block-cipher"] categories = ["cryptography", "no-std"] [dependencies] -cipher = "0.5.0-rc.8" +cipher = "0.5" [dev-dependencies] -cipher = { version = "0.5.0-rc.8", features = ["dev"] } +cipher = { version = "0.5", features = ["dev"] } hex-literal = "1" [features] diff --git a/speck/Cargo.toml b/speck/Cargo.toml index 22a934c3..400678b8 100644 --- a/speck/Cargo.toml +++ b/speck/Cargo.toml @@ -13,10 +13,10 @@ keywords = ["crypto", "speck", "block-cipher"] categories = ["cryptography", "no-std"] [dependencies] -cipher = "0.5.0-rc.8" +cipher = "0.5" [dev-dependencies] -cipher = { version = "0.5.0-rc.8", features = ["dev"] } +cipher = { version = "0.5", features = ["dev"] } hex-literal = "1" [features] diff --git a/threefish/Cargo.toml b/threefish/Cargo.toml index 29220691..8e881646 100644 --- a/threefish/Cargo.toml +++ b/threefish/Cargo.toml @@ -13,11 +13,11 @@ keywords = ["crypto", "threefish", "block-cipher"] categories = ["cryptography", "no-std"] [dependencies] -cipher = { version = "0.5.0-rc.8", optional = true } +cipher = { version = "0.5", optional = true } zeroize = { version = "1.6", optional = true, default-features = false } [dev-dependencies] -cipher = { version = "0.5.0-rc.8", features = ["dev"] } +cipher = { version = "0.5", features = ["dev"] } hex-literal = "1" [features] diff --git a/twofish/Cargo.toml b/twofish/Cargo.toml index 6c04c6ba..2f3f607c 100644 --- a/twofish/Cargo.toml +++ b/twofish/Cargo.toml @@ -13,10 +13,10 @@ keywords = ["crypto", "twofish", "block-cipher"] categories = ["cryptography", "no-std"] [dependencies] -cipher = "0.5.0-rc.8" +cipher = "0.5" [dev-dependencies] -cipher = { version = "0.5.0-rc.8", features = ["dev"] } +cipher = { version = "0.5", features = ["dev"] } hex-literal = "1" [features] diff --git a/xtea/Cargo.toml b/xtea/Cargo.toml index b1da76f2..1215fcbb 100644 --- a/xtea/Cargo.toml +++ b/xtea/Cargo.toml @@ -13,10 +13,10 @@ keywords = ["crypto", "xtea", "block-cipher"] categories = ["cryptography", "no-std"] [dependencies] -cipher = "0.5.0-rc.8" +cipher = "0.5" [dev-dependencies] -cipher = { version = "0.5.0-rc.8", features = ["dev"] } +cipher = { version = "0.5", features = ["dev"] } [features] zeroize = ["cipher/zeroize"]