Skip to content

Commit c577715

Browse files
authored
bump cipher dependency to 0.5.0-pre.4 (#413)
1 parent f3718e7 commit c577715

File tree

20 files changed

+44
-46
lines changed

20 files changed

+44
-46
lines changed

Cargo.lock

Lines changed: 7 additions & 6 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -23,6 +23,3 @@ members = [
2323

2424
[profile.dev]
2525
opt-level = 2
26-
27-
[patch.crates-io.cipher]
28-
git = "https://github.com/RustCrypto/traits.git"

aes/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,14 +14,14 @@ categories = ["cryptography", "no-std"]
1414

1515
[dependencies]
1616
cfg-if = "1"
17-
cipher = "=0.5.0-pre.2"
17+
cipher = "=0.5.0-pre.4"
1818
zeroize = { version = "1.5.6", optional = true, default_features = false, features = ["aarch64"] }
1919

2020
[target.'cfg(any(target_arch = "aarch64", target_arch = "x86_64", target_arch = "x86"))'.dependencies]
2121
cpufeatures = "0.2"
2222

2323
[dev-dependencies]
24-
cipher = { version = "=0.5.0-pre.2", features = ["dev"] }
24+
cipher = { version = "=0.5.0-pre.4", features = ["dev"] }
2525
hex-literal = "0.3"
2626

2727
[features]

aria/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,10 +13,10 @@ keywords = ["crypto", "aria", "block-cipher"]
1313
categories = ["cryptography", "no-std"]
1414

1515
[dependencies]
16-
cipher = "=0.5.0-pre.2"
16+
cipher = "=0.5.0-pre.4"
1717

1818
[dev-dependencies]
19-
cipher = { version = "=0.5.0-pre.2", features = ["dev"] }
19+
cipher = { version = "=0.5.0-pre.4", features = ["dev"] }
2020
hex-literal = "0.4"
2121

2222
[features]

belt-block/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,10 +12,10 @@ repository = "https://github.com/RustCrypto/block-ciphers"
1212
keywords = ["crypto", "belt-block", "belt", "stb"]
1313

1414
[dependencies]
15-
cipher = { version = "=0.5.0-pre.2", optional = true }
15+
cipher = { version = "=0.5.0-pre.4", optional = true }
1616

1717
[dev-dependencies]
18-
cipher = { version = "=0.5.0-pre.2", features = ["dev"] }
18+
cipher = { version = "=0.5.0-pre.4", features = ["dev"] }
1919
hex-literal = "0.4"
2020

2121
[features]

blowfish/Cargo.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -5,19 +5,19 @@ description = "Blowfish block cipher"
55
authors = ["RustCrypto Developers"]
66
license = "MIT OR Apache-2.0"
77
edition = "2021"
8-
rust-version = "1.56"
8+
rust-version = "1.65"
99
readme = "README.md"
1010
documentation = "https://docs.rs/blowfish"
1111
repository = "https://github.com/RustCrypto/block-ciphers"
1212
keywords = ["crypto", "blowfish", "block-cipher"]
1313
categories = ["cryptography", "no-std"]
1414

1515
[dependencies]
16-
cipher = "=0.5.0-pre.2"
16+
cipher = "=0.5.0-pre.4"
1717
byteorder = { version = "1.1", default-features = false }
1818

1919
[dev-dependencies]
20-
cipher = { version = "=0.5.0-pre.2", features = ["dev"] }
20+
cipher = { version = "=0.5.0-pre.4", features = ["dev"] }
2121

2222
[features]
2323
bcrypt = []

camellia/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,10 +14,10 @@ categories = ["cryptography", "no-std"]
1414

1515
[dependencies]
1616
byteorder = { version = "1.1", default-features = false }
17-
cipher = "=0.5.0-pre.2"
17+
cipher = "=0.5.0-pre.4"
1818

1919
[dev-dependencies]
20-
cipher = { version = "=0.5.0-pre.2", features = ["dev"] }
20+
cipher = { version = "=0.5.0-pre.4", features = ["dev"] }
2121

2222
[features]
2323
zeroize = ["cipher/zeroize"]

cast5/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,10 +13,10 @@ keywords = ["crypto", "cast5", "block-cipher"]
1313
categories = ["cryptography", "no-std"]
1414

1515
[dependencies]
16-
cipher = "=0.5.0-pre.2"
16+
cipher = "=0.5.0-pre.4"
1717

1818
[dev-dependencies]
19-
cipher = { version = "=0.5.0-pre.2", features = ["dev"] }
19+
cipher = { version = "=0.5.0-pre.4", features = ["dev"] }
2020
hex-literal = "0.4"
2121

2222
[features]

cast6/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,10 +13,10 @@ keywords = ["crypto", "cast6", "block-cipher"]
1313
categories = ["cryptography", "no-std"]
1414

1515
[dependencies]
16-
cipher = "=0.5.0-pre.2"
16+
cipher = "=0.5.0-pre.4"
1717

1818
[dev-dependencies]
19-
cipher = { version = "=0.5.0-pre.2", features = ["dev"] }
19+
cipher = { version = "=0.5.0-pre.4", features = ["dev"] }
2020
hex-literal = "0.4"
2121

2222
[features]

des/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,10 +13,10 @@ keywords = ["crypto", "des", "tdes", "block-cipher"]
1313
categories = ["cryptography", "no-std"]
1414

1515
[dependencies]
16-
cipher = "=0.5.0-pre.2"
16+
cipher = "=0.5.0-pre.4"
1717

1818
[dev-dependencies]
19-
cipher = { version = "=0.5.0-pre.2", features = ["dev"] }
19+
cipher = { version = "=0.5.0-pre.4", features = ["dev"] }
2020

2121
[features]
2222
zeroize = ["cipher/zeroize"]

0 commit comments

Comments
 (0)