diff --git a/Cargo.lock b/Cargo.lock index 83629dbbb..7620fb153 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -158,7 +158,7 @@ dependencies = [ [[package]] name = "crypto-common" -version = "0.2.0-rc.8" +version = "0.2.0-rc.9" dependencies = [ "getrandom", "hybrid-array", @@ -200,7 +200,7 @@ dependencies = [ [[package]] name = "elliptic-curve" -version = "0.14.0-rc.18" +version = "0.14.0-rc.19" dependencies = [ "base16ct", "crypto-bigint", diff --git a/aead/Cargo.toml b/aead/Cargo.toml index 524cb15a8..1885a8678 100644 --- a/aead/Cargo.toml +++ b/aead/Cargo.toml @@ -16,7 +16,7 @@ such as AES-GCM as ChaCha20Poly1305, which provide a high-level API """ [dependencies] -crypto-common = { version = "0.2.0-rc.8", path = "../crypto-common" } +crypto-common = { version = "0.2.0-rc.9", path = "../crypto-common" } inout = "0.2.2" # optional dependencies diff --git a/cipher/Cargo.toml b/cipher/Cargo.toml index d043b50bf..8350d7f69 100644 --- a/cipher/Cargo.toml +++ b/cipher/Cargo.toml @@ -13,7 +13,7 @@ categories = ["cryptography", "no-std"] description = "Traits for describing block ciphers and stream ciphers" [dependencies] -crypto-common = { version = "0.2.0-rc.8", path = "../crypto-common" } +crypto-common = { version = "0.2.0-rc.9", path = "../crypto-common" } inout = "0.2.2" # optional dependencies diff --git a/crypto-common/Cargo.toml b/crypto-common/Cargo.toml index efff645d7..53c9db77a 100644 --- a/crypto-common/Cargo.toml +++ b/crypto-common/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "crypto-common" -version = "0.2.0-rc.8" +version = "0.2.0-rc.9" authors = ["RustCrypto Developers"] edition = "2024" rust-version = "1.85" diff --git a/digest/Cargo.toml b/digest/Cargo.toml index 89ffbfc15..dbb4c2f35 100644 --- a/digest/Cargo.toml +++ b/digest/Cargo.toml @@ -13,7 +13,7 @@ categories = ["cryptography", "no-std"] description = "Traits for cryptographic hash functions and message authentication codes" [dependencies] -crypto-common = { version = "0.2.0-rc.8", path = "../crypto-common" } +crypto-common = { version = "0.2.0-rc.9", path = "../crypto-common" } # optional dependencies block-buffer = { version = "0.11", optional = true } diff --git a/universal-hash/Cargo.toml b/universal-hash/Cargo.toml index 84f893e45..efa0aff81 100644 --- a/universal-hash/Cargo.toml +++ b/universal-hash/Cargo.toml @@ -13,7 +13,7 @@ categories = ["cryptography", "no-std"] description = "Traits which describe the functionality of universal hash functions (UHFs)" [dependencies] -crypto-common = { version = "0.2.0-rc.8", path = "../crypto-common" } +crypto-common = { version = "0.2.0-rc.9", path = "../crypto-common" } subtle = { version = "2.4", default-features = false } [package.metadata.docs.rs]