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

aead v0.5.0-pre.2 #1046

Merged
merged 1 commit into from Jul 2, 2022
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.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
4 changes: 2 additions & 2 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
@@ -1,6 +1,6 @@
[package]
name = "aead"
version = "0.5.0-pre.1" # Also update html_root_url in lib.rs when bumping this
version = "0.5.0-pre.2" # Also update html_root_url in lib.rs when bumping this
description = """
Traits for Authenticated Encryption with Associated Data (AEAD) algorithms,
such as AES-GCM as ChaCha20Poly1305, which provide a high-level API
Expand Down
2 changes: 1 addition & 1 deletion crypto/Cargo.toml
Expand Up @@ -15,7 +15,7 @@ edition = "2021"
rust-version = "1.57"

[dependencies]
aead = { version = "=0.5.0-pre.1", optional = true, path = "../aead" }
aead = { version = "=0.5.0-pre.2", optional = true, path = "../aead" }
cipher = { version = "0.4", optional = true }
digest = { version = "0.10", optional = true }
elliptic-curve = { version = "0.12", optional = true, path = "../elliptic-curve" }
Expand Down