Skip to content
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
20 changes: 10 additions & 10 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-stream/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "aead-stream"
version = "0.6.0-rc.0"
version = "0.6.0-rc.1"
description = "Generic implementation of the STREAM online authenticated encryption construction"
authors = ["RustCrypto Developers"]
edition = "2024"
Expand Down
2 changes: 1 addition & 1 deletion aes-gcm-siv/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "aes-gcm-siv"
version = "0.12.0-rc.0"
version = "0.12.0-rc.1"
description = """
Pure Rust implementation of the AES-GCM-SIV Misuse-Resistant Authenticated
Encryption Cipher (RFC 8452) with optional architecture-specific
Expand Down
2 changes: 1 addition & 1 deletion aes-gcm/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "aes-gcm"
version = "0.11.0-rc.0"
version = "0.11.0-rc.1"
description = """
Pure Rust implementation of the AES-GCM (Galois/Counter Mode)
Authenticated Encryption with Associated Data (AEAD) Cipher
Expand Down
2 changes: 1 addition & 1 deletion aes-siv/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "aes-siv"
version = "0.8.0-rc.0"
version = "0.8.0-rc.1"
description = """
Pure Rust implementation of the AES-SIV Misuse-Resistant Authenticated
Encryption Cipher (RFC 5297) with optional architecture-specific
Expand Down
2 changes: 1 addition & 1 deletion chacha20poly1305/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "chacha20poly1305"
version = "0.11.0-rc.0"
version = "0.11.0-rc.1"
description = """
Pure Rust implementation of the ChaCha20Poly1305 Authenticated Encryption
with Additional Data Cipher (RFC 8439) with optional architecture-specific
Expand Down
2 changes: 1 addition & 1 deletion ocb3/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ cipher = "0.5.0-rc.1"
ctr = "0.10.0-rc.1"
dbl = "0.5"
subtle = { version = "2", default-features = false }
aead-stream = { version = "0.6.0-rc.0", optional = true, default-features = false }
aead-stream = { version = "0.6.0-rc.1", optional = true, default-features = false }
zeroize = { version = "1", optional = true, default-features = false }

[dev-dependencies]
Expand Down
6 changes: 3 additions & 3 deletions xaes-256-gcm/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "xaes-256-gcm"
version = "0.0.1-pre.0"
version = "0.1.0-rc.1"
description = """
Pure Rust implementation of the XAES-256-GCM extended-nonce Authenticated
Encryption with Associated Data (AEAD).
Expand All @@ -18,9 +18,9 @@ rust-version = "1.85"
[dependencies]
aead = { version = "0.6.0-rc.1", default-features = false }
aes = "0.9.0-rc.1"
aes-gcm = { version = "0.11.0-rc.0", default-features = false, features = ["aes"] }
aes-gcm = { version = "0.11.0-rc.1", default-features = false, features = ["aes"] }
cipher = "0.5.0-rc.1"
aead-stream = { version = "0.6.0-rc.0", optional = true, default-features = false }
aead-stream = { version = "0.6.0-rc.1", optional = true, default-features = false }

[dev-dependencies]
aead = { version = "0.6.0-rc.1", features = ["dev"], default-features = false }
Expand Down