Skip to content

Commit 7704426

Browse files
authored
Merge pull request #26 from RustCrypto/scrypt/upgrade-to-pre-crates
scrypt: upgrade to -pre crates
2 parents 21f6f3c + a2e3bfe commit 7704426

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

pbkdf2/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "pbkdf2"
3-
version = "0.3.0"
3+
version = "0.4.0-pre"
44
authors = ["RustCrypto Developers"]
55
license = "MIT OR Apache-2.0"
66
description = "Generic implementation of PBKDF2"

scrypt/Cargo.toml

+3-3
Original file line numberDiff line numberDiff line change
@@ -11,9 +11,9 @@ categories = ["cryptography"]
1111
edition = "2018"
1212

1313
[dependencies]
14-
sha2 = { version = "0.8", default-features = false }
15-
pbkdf2 = { version = "0.3", default-features = false }
16-
hmac = "0.7"
14+
sha2 = { version = "= 0.9.0-pre", default-features = false }
15+
pbkdf2 = { version = "= 0.4.0-pre", default-features = false, path = "../pbkdf2" }
16+
hmac = "= 0.8.0-pre"
1717
byte-tools = "0.3"
1818
byteorder = { version = "1", default-features = false }
1919

0 commit comments

Comments
 (0)