Skip to content

Commit

Permalink
hkdf: bump hmac dependency to v0.13.0-pre.1 (#93)
Browse files Browse the repository at this point in the history
Also cuts an `hkdf` v0.13.0-pre.1 release
  • Loading branch information
tarcieri authored Jan 10, 2024
1 parent c4498ba commit 5b9c2bd
Show file tree
Hide file tree
Showing 3 changed files with 20 additions and 20 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 concat-kdf/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -13,11 +13,11 @@ categories = ["cryptography", "no-std"]
rust-version = "1.71"

[dependencies]
digest = "=0.11.0-pre.3"
digest = "=0.11.0-pre.4"

[dev-dependencies]
hex-literal = "0.4"
sha2 = { version = "=0.11.0-pre.0", default-features = false }
sha2 = { version = "=0.11.0-pre.1", default-features = false }

[features]
std = []
Expand Down
8 changes: 4 additions & 4 deletions hkdf/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "hkdf"
version = "0.13.0-pre.0"
version = "0.13.0-pre.1"
authors = ["RustCrypto Developers"]
license = "MIT OR Apache-2.0"
homepage = "https://github.com/RustCrypto/KDFs/"
Expand All @@ -13,13 +13,13 @@ edition = "2021"
rust-version = "1.71"

[dependencies]
hmac = "=0.13.0-pre.0"
hmac = "=0.13.0-pre.1"

[dev-dependencies]
blobby = "0.3"
hex-literal = "0.4"
sha1 = { version = "=0.11.0-pre.0", default-features = false }
sha2 = { version = "=0.11.0-pre.0", default-features = false }
sha1 = { version = "=0.11.0-pre.1", default-features = false }
sha2 = { version = "=0.11.0-pre.1", default-features = false }

[features]
std = ["hmac/std"]
Expand Down

0 comments on commit 5b9c2bd

Please sign in to comment.