We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
aes
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
Several crates in this repo use the aes crate as a dev-dependency.
The aes crate lists ctr in its (hard) dependencies section now.
ctr
dependencies
This means that upgrading the cipher crate right now involves at least a temporary breakage. Here are some example PRs where this has happened:
cipher
#224 #225 #226 #227
There are at least two different ways this could be addressed, I think:
dev-dependency
The text was updated successfully, but these errors were encountered:
I think a better approach would be to move all block mode crates to the block ciphers repository, as attempted in the RustCrypto/block-ciphers#233.
Sorry, something went wrong.
Successfully merging a pull request may close this issue.
Several crates in this repo use the
aes
crate as a dev-dependency.The
aes
crate listsctr
in its (hard)dependencies
section now.This means that upgrading the
cipher
crate right now involves at least a temporary breakage. Here are some example PRs where this has happened:#224 #225 #226 #227
There are at least two different ways this could be addressed, I think:
aes
crate into thectr
crate, since it's notctr
-specificdev-dependency
The text was updated successfully, but these errors were encountered: