Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Bump hybrid-array to v0.2.0-pre.8 #1438

Merged
merged 1 commit into from
Dec 31, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
38 changes: 19 additions & 19 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion aead/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ categories = ["cryptography", "no-std"]
rust-version = "1.65"

[dependencies]
crypto-common = "=0.2.0-pre.2"
crypto-common = "=0.2.0-pre.3"

# optional dependencies
arrayvec = { version = "0.7", optional = true, default-features = false }
Expand Down
4 changes: 2 additions & 2 deletions cipher/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -13,8 +13,8 @@ keywords = ["crypto", "block-cipher", "stream-cipher", "trait"]
categories = ["cryptography", "no-std"]

[dependencies]
crypto-common = "=0.2.0-pre.2"
inout = "=0.2.0-pre.2"
crypto-common = "=0.2.0-pre.3"
inout = "=0.2.0-pre.3"

# optional dependencies
blobby = { version = "0.3", optional = true }
Expand Down
64 changes: 64 additions & 0 deletions crypto-common/Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions crypto-common/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[package]
name = "crypto-common"
description = "Common cryptographic traits"
version = "0.2.0-pre.2"
version = "0.2.0-pre.3"
authors = ["RustCrypto Developers"]
license = "MIT OR Apache-2.0"
readme = "README.md"
Expand All @@ -13,7 +13,7 @@ keywords = ["crypto", "traits"]
categories = ["cryptography", "no-std"]

[dependencies]
hybrid-array = "=0.2.0-pre.7"
hybrid-array = "=0.2.0-pre.8"

# optional dependencies
rand_core = { version = "0.6.4", optional = true }
Expand Down
4 changes: 2 additions & 2 deletions digest/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -13,10 +13,10 @@ keywords = ["digest", "crypto", "hash"]
categories = ["cryptography", "no-std"]

[dependencies]
crypto-common = "=0.2.0-pre.2"
crypto-common = "=0.2.0-pre.3"

# optional dependencies
block-buffer = { version = "=0.11.0-pre.2", optional = true }
block-buffer = { version = "=0.11.0-pre.3", optional = true }
subtle = { version = "2.4", default-features = false, optional = true }
blobby = { version = "0.3", optional = true }
const-oid = { version = "0.9", optional = true }
Expand Down
2 changes: 1 addition & 1 deletion universal-hash/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ keywords = ["crypto", "mac"]
categories = ["cryptography", "no-std"]

[dependencies]
crypto-common = "=0.2.0-pre.2"
crypto-common = "=0.2.0-pre.3"
subtle = { version = "2.4", default-features = false }

[features]
Expand Down
Loading