Skip to content

Commit

Permalink
cleanup
Browse files Browse the repository at this point in the history
  • Loading branch information
baloo committed Oct 29, 2023
1 parent 83e5d57 commit 013eec6
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions kbkdf/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -13,14 +13,15 @@ readme = "README.md"
rust-version = "1.65"

[dependencies]
digest = "0.10"
hmac = "0.12.1"
digest = { version = "0.10", default-features = false, features = ["mac"] }

# divrem can be dropped with MSRV >= 1.73
divrem = "1.0.0"

[dev-dependencies]
hex-literal = "0.2.2"
sha2 = "0.10"
hmac = { version = "0.12.1", default-features = false }
sha2 = { version = "0.10", default-features = false }

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

0 comments on commit 013eec6

Please sign in to comment.