Skip to content

Commit

Permalink
Upgrade aead to use crypto-common v0.2.0-pre
Browse files Browse the repository at this point in the history
  • Loading branch information
newpavlov committed Nov 11, 2023
1 parent b046e41 commit 8dcd467
Show file tree
Hide file tree
Showing 3 changed files with 120 additions and 7 deletions.
119 changes: 116 additions & 3 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 Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
[workspace]
resolver = "2"
members = [
"aead",
"cipher",
"crypto-common",
"digest",
Expand All @@ -10,7 +11,6 @@ members = [
]
# re-add when all crates are MSRV 1.60+
exclude = [
"aead",
"crypto",
"signature",
"signature/async",
Expand Down
6 changes: 3 additions & 3 deletions aead/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "aead"
version = "0.5.2"
version = "0.6.0-pre"
description = """
Traits for Authenticated Encryption with Associated Data (AEAD) algorithms,
such as AES-GCM as ChaCha20Poly1305, which provide a high-level API
Expand All @@ -13,10 +13,10 @@ documentation = "https://docs.rs/aead"
repository = "https://github.com/RustCrypto/traits"
keywords = ["crypto", "encryption"]
categories = ["cryptography", "no-std"]
rust-version = "1.56"
rust-version = "1.60"

[dependencies]
crypto-common = "0.1.4"
crypto-common = "0.2.0-pre"
generic-array = { version = "0.14", default-features = false }

# optional dependencies
Expand Down

0 comments on commit 8dcd467

Please sign in to comment.