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 v0.3.0-pre.2 #438

Merged
merged 1 commit into from Dec 30, 2020
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
2 changes: 1 addition & 1 deletion 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 cipher/Cargo.toml
@@ -1,7 +1,7 @@
[package]
name = "cipher"
description = "Traits for describing block ciphers and stream ciphers"
version = "0.3.0-pre"
version = "0.3.0-pre.2"
authors = ["RustCrypto Developers"]
license = "MIT OR Apache-2.0"
readme = "README.md"
Expand Down
2 changes: 1 addition & 1 deletion crypto-mac/Cargo.toml
Expand Up @@ -13,7 +13,7 @@ categories = ["cryptography", "no-std"]

[dependencies]
generic-array = "0.14"
cipher = { version = "=0.3.0-pre", optional = true, path = "../cipher" }
cipher = { version = "=0.3.0-pre.2", optional = true, path = "../cipher" }
subtle = { version = "2", default-features = false }
blobby = { version = "0.3", optional = true }

Expand Down
2 changes: 1 addition & 1 deletion crypto/Cargo.toml
Expand Up @@ -13,7 +13,7 @@ edition = "2018"

[dependencies]
aead = { version = "0.3", optional = true, path = "../aead" }
cipher = { version = "=0.3.0-pre", optional = true, path = "../cipher" }
cipher = { version = "=0.3.0-pre.2", optional = true, path = "../cipher" }
digest = { version = "0.9", optional = true, path = "../digest" }
elliptic-curve = { version = "0.8", optional = true, path = "../elliptic-curve" }
mac = { version = "=0.11.0-pre", package = "crypto-mac", optional = true, path = "../crypto-mac" }
Expand Down