diff --git a/cfb-mode/Cargo.toml b/cfb-mode/Cargo.toml index 3944d235..193dd221 100644 --- a/cfb-mode/Cargo.toml +++ b/cfb-mode/Cargo.toml @@ -12,9 +12,9 @@ readme = "README.md" edition = "2018" [dependencies] -cipher = "0.3.0-pre.4" +cipher = "0.3.0-pre.5" [dev-dependencies] aes = { version = "=0.7.0-pre", features = ["force-soft"] } # Uses `force-soft` for MSRV 1.41 -cipher = { version = "0.3.0-pre.4", features = ["dev"] } +cipher = { version = "0.3.0-pre.5", features = ["dev"] } hex-literal = "0.2" diff --git a/cfb8/Cargo.toml b/cfb8/Cargo.toml index 95fb191a..760de438 100644 --- a/cfb8/Cargo.toml +++ b/cfb8/Cargo.toml @@ -12,9 +12,9 @@ readme = "README.md" edition = "2018" [dependencies] -cipher = "=0.3.0-pre.4" +cipher = "=0.3.0-pre.5" [dev-dependencies] aes = { version = "=0.7.0-pre", features = ["force-soft"] } # Uses `force-soft` for MSRV 1.41 -cipher = { version = "=0.3.0-pre.4", features = ["dev"] } +cipher = { version = "=0.3.0-pre.5", features = ["dev"] } hex-literal = "0.2" diff --git a/chacha20/Cargo.toml b/chacha20/Cargo.toml index 3e7af778..a71ae82e 100644 --- a/chacha20/Cargo.toml +++ b/chacha20/Cargo.toml @@ -18,7 +18,7 @@ edition = "2018" [dependencies] cfg-if = "1" -cipher = { version = "=0.3.0-pre.4", optional = true } +cipher = { version = "=0.3.0-pre.5", optional = true } rand_core = { version = "0.6", optional = true, default-features = false } zeroize = { version = "1", optional = true, default-features = false } @@ -26,7 +26,7 @@ zeroize = { version = "1", optional = true, default-features = false } cpuid-bool = "0.2" [dev-dependencies] -cipher = { version = "=0.3.0-pre.4", features = ["dev"] } +cipher = { version = "=0.3.0-pre.5", features = ["dev"] } hex-literal = "0.2" [features] diff --git a/ctr/Cargo.toml b/ctr/Cargo.toml index 55a5f00a..26afacc7 100644 --- a/ctr/Cargo.toml +++ b/ctr/Cargo.toml @@ -12,9 +12,9 @@ readme = "README.md" edition = "2018" [dependencies] -cipher = "=0.3.0-pre.4" +cipher = "=0.3.0-pre.5" [dev-dependencies] aes = { version = "=0.7.0-pre", features = ["force-soft"] } # Uses `force-soft` for MSRV 1.41 -cipher = { version = "=0.3.0-pre.4", features = ["dev"] } +cipher = { version = "=0.3.0-pre.5", features = ["dev"] } hex-literal = "0.2" diff --git a/hc-256/Cargo.toml b/hc-256/Cargo.toml index be4494e6..8a4c26c8 100644 --- a/hc-256/Cargo.toml +++ b/hc-256/Cargo.toml @@ -11,5 +11,5 @@ readme = "README.md" edition = "2018" [dependencies] -cipher = "=0.3.0-pre.4" +cipher = "=0.3.0-pre.5" zeroize = { version = "1", optional = true, default-features = false } diff --git a/ofb/Cargo.toml b/ofb/Cargo.toml index 8e66cf6e..6c4f54a4 100644 --- a/ofb/Cargo.toml +++ b/ofb/Cargo.toml @@ -12,9 +12,9 @@ readme = "README.md" edition = "2018" [dependencies] -cipher = "=0.3.0-pre.4" +cipher = "=0.3.0-pre.5" [dev-dependencies] aes = { version = "=0.7.0-pre", features = ["force-soft"] } # Uses `force-soft` for MSRV 1.41 -cipher = { version = "=0.3.0-pre.4", features = ["dev"] } +cipher = { version = "=0.3.0-pre.5", features = ["dev"] } hex-literal = "0.2" diff --git a/rabbit/Cargo.toml b/rabbit/Cargo.toml index d3589355..4f898bf7 100644 --- a/rabbit/Cargo.toml +++ b/rabbit/Cargo.toml @@ -1,7 +1,7 @@ [package] name = "rabbit" description = "An implementation of the Rabbit Stream Cipher Algorithm" -version = "0.3.0-pre.4" +version = "0.3.0-pre.5" authors = ["AIkorsky "] license = "MIT OR Apache-2.0" repository = "https://github.com/RustCrypto/stream-ciphers" @@ -11,7 +11,7 @@ readme = "README.md" edition = "2018" [dependencies] -cipher = "=0.3.0-pre.4" +cipher = "=0.3.0-pre.5" zeroize = { version = "1", optional = true, default-features = false, features = ["zeroize_derive"] } [features] diff --git a/salsa20/Cargo.toml b/salsa20/Cargo.toml index c498e950..e404804b 100644 --- a/salsa20/Cargo.toml +++ b/salsa20/Cargo.toml @@ -11,11 +11,11 @@ readme = "README.md" edition = "2018" [dependencies] -cipher = "=0.3.0-pre.4" +cipher = "=0.3.0-pre.5" zeroize = { version = "1", optional = true, default-features = false } [dev-dependencies] -cipher = { version = "=0.3.0-pre.4", features = ["dev"] } +cipher = { version = "=0.3.0-pre.5", features = ["dev"] } [features] default = ["xsalsa20"]