Skip to content

Commit

Permalink
Bump crypto-mac crate dependency to v0.11 (#73)
Browse files Browse the repository at this point in the history
Release notes: RustCrypto/traits#622
  • Loading branch information
tarcieri authored Apr 28, 2021
1 parent a126081 commit 4e07d94
Show file tree
Hide file tree
Showing 5 changed files with 22 additions and 22 deletions.
28 changes: 14 additions & 14 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 cmac/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -12,12 +12,12 @@ readme = "README.md"
edition = "2018"

[dependencies]
crypto-mac = { version = "0.11.0-pre", features = ["cipher"] }
crypto-mac = { version = "0.11", features = ["cipher"] }
dbl = "0.3"

[dev-dependencies]
aes = { version = "=0.7.0-pre", features = ["force-soft"] } # Uses `force-soft` for MSRV 1.41
crypto-mac = { version = "0.11.0-pre", features = ["dev"] }
crypto-mac = { version = "0.11", features = ["dev"] }
hex-literal = "0.2"
kuznyechik = "0.7.0-pre"
magma = "0.7.0-pre"
Expand Down
4 changes: 2 additions & 2 deletions daa/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -11,11 +11,11 @@ readme = "README.md"
edition = "2018"

[dependencies]
crypto-mac = { version = "0.11.0-pre", features = ["cipher"] }
crypto-mac = { version = "0.11", features = ["cipher"] }
des = "0.7.0-pre"

[dev-dependencies]
crypto-mac = { version = "0.11.0-pre", features = ["dev"] }
crypto-mac = { version = "0.11", features = ["dev"] }

[features]
std = ["crypto-mac/std"]
4 changes: 2 additions & 2 deletions hmac/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -12,11 +12,11 @@ readme = "README.md"
edition = "2018"

[dependencies]
crypto-mac = "0.11.0-pre"
crypto-mac = "0.11"
digest = "0.9"

[dev-dependencies]
crypto-mac = { version = "0.11.0-pre", features = ["dev"] }
crypto-mac = { version = "0.11", features = ["dev"] }
md-5 = { version = "0.9", default-features = false }
sha2 = { version = "0.9", default-features = false }
streebog = { version = "0.9", default-features = false }
Expand Down
4 changes: 2 additions & 2 deletions pmac/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -12,12 +12,12 @@ readme = "README.md"
edition = "2018"

[dependencies]
crypto-mac = { version = "0.11.0-pre", features = ["cipher"] }
crypto-mac = { version = "0.11", features = ["cipher"] }
dbl = "0.3"

[dev-dependencies]
aes = { version = "=0.7.0-pre", features = ["force-soft"] } # Uses `force-soft` for MSRV 1.41
crypto-mac = { version = "0.11.0-pre", features = ["dev"] }
crypto-mac = { version = "0.11", features = ["dev"] }

[features]
std = ["crypto-mac/std"]

0 comments on commit 4e07d94

Please sign in to comment.