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

cipher: bump inout to v0.2.0-rc.1 #1679

Merged
merged 1 commit into from
Sep 30, 2024
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
12 changes: 6 additions & 6 deletions 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 cipher/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -14,15 +14,15 @@ categories = ["cryptography", "no-std"]

[dependencies]
crypto-common = "0.2.0-rc.1"
inout = "0.2.0-rc.0"

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Actually this is a incompatible change. I just noticed that 0.2.0-rc.0 can be "cargo update" to 0.2.0-rc.3 which introduce RustCrypto/AEADs#650

Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

It literally says it’s a breaking change in the commit message. These are prereleases and they frequently contain breaking changes. If you want to avoid breaking changes, use stable releases.

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Reasonable. Downgrade to aes-gcm=0.10.3 works.

inout = "0.2.0-rc.1"

# optional dependencies
blobby = { version = "0.3", optional = true }
zeroize = { version = "1.8", optional = true, default-features = false }

[features]
alloc = []
std = ["alloc", "crypto-common/std", "inout/std"]
std = ["alloc", "crypto-common/std"]
block-padding = ["inout/block-padding"]
# Enable random key and IV generation methods
rand_core = ["crypto-common/rand_core"]
Expand Down
Loading