Skip to content

Commit 75b706a

Browse files
authored
Remove git dependency on hmac (#578)
1 parent 70e379e commit 75b706a

File tree

4 files changed

+6
-7
lines changed

4 files changed

+6
-7
lines changed

Cargo.lock

+3-2
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

-2
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,4 @@ opt-level = 2
1919
[patch.crates-io]
2020
password-hash = { git = "https://github.com/RustCrypto/traits.git" }
2121

22-
hmac = { git = "https://github.com/RustCrypto/MACs.git" }
23-
2422
crypto-bigint = { git = "https://github.com/RustCrypto/crypto-bigint.git" }

pbkdf2/Cargo.toml

+2-2
Original file line numberDiff line numberDiff line change
@@ -19,12 +19,12 @@ digest = { version = "=0.11.0-pre.10", features = ["mac"] }
1919
# optional dependencies
2020
rayon = { version = "1.7", optional = true }
2121
password-hash = { version = "0.6.0-rc.0", default-features = false, optional = true, features = ["rand_core"] }
22-
hmac = { version = "=0.13.0-pre.4", default-features = false, optional = true }
22+
hmac = { version = "=0.13.0-pre.5", default-features = false, optional = true }
2323
sha1 = { version = "=0.11.0-pre.5", default-features = false, optional = true }
2424
sha2 = { version = "=0.11.0-pre.5", default-features = false, optional = true }
2525

2626
[dev-dependencies]
27-
hmac = "=0.13.0-pre.4"
27+
hmac = "=0.13.0-pre.5"
2828
hex-literal = "1"
2929
sha1 = "=0.11.0-pre.5"
3030
sha2 = "=0.11.0-pre.5"

yescrypt/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ rust-version = "1.85"
1515

1616
[dependencies]
1717
libc = "0.2"
18-
hmac = { version = "0.13.0-pre.4", default-features = false }
18+
hmac = { version = "0.13.0-pre.5", default-features = false }
1919
pbkdf2 = { version = "=0.13.0-pre.1", path = "../pbkdf2" }
2020
salsa20 = { version = "=0.11.0-pre.2", default-features = false }
2121
sha2 = { version = "=0.11.0-pre.5", default-features = false }

0 commit comments

Comments
 (0)