Skip to content

Commit 7738cf0

Browse files
authored
slh-dsa v0.2.0-rc.1 (#1106)
1 parent 072a708 commit 7738cf0

File tree

2 files changed

+23
-92
lines changed

2 files changed

+23
-92
lines changed

Cargo.lock

Lines changed: 5 additions & 74 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

slh-dsa/Cargo.toml

Lines changed: 18 additions & 18 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ description = """
44
Pure Rust implementation of SLH-DSA (aka SPHINCS+) as described in the
55
FIPS-205 standard
66
"""
7-
version = "0.2.0-rc.0"
7+
version = "0.2.0-rc.1"
88
edition = "2024"
99
rust-version = "1.85"
1010
license = "Apache-2.0 OR MIT"
@@ -16,36 +16,36 @@ keywords = ["crypto", "signature"]
1616
exclude = ["tests"]
1717

1818
[dependencies]
19+
const-oid = { version = "0.10", features = ["db"] }
20+
digest = "0.11.0-rc.4"
21+
hmac = "0.13.0-rc.3"
1922
hybrid-array = { version = "0.4", features = ["extra-sizes"] }
20-
typenum = { version = "1.17", features = ["const-generics"] }
21-
sha3 = { version = "0.11.0-rc.3", default-features = false }
22-
zerocopy = { version = "0.8", features = ["derive"] }
23+
pkcs8 = { version = "0.11.0-rc.8", default-features = false }
2324
rand_core = { version = "0.10.0-rc-2" }
24-
signature = { version = "3.0.0-rc.5", features = ["rand_core"] }
25-
hmac = "0.13.0-rc.3"
2625
sha2 = { version = "0.11.0-rc.3", default-features = false }
27-
digest = "0.11.0-rc.4"
28-
pkcs8 = { version = "0.11.0-rc.8", default-features = false }
29-
const-oid = { version = "0.10", features = ["db"] }
26+
sha3 = { version = "0.11.0-rc.3", default-features = false }
27+
signature = { version = "3.0.0-rc.5", features = ["rand_core"] }
28+
typenum = { version = "1.17", features = ["const-generics"] }
29+
zerocopy = { version = "0.8", features = ["derive"] }
30+
31+
# optional dependencies
3032
zeroize = { version = "1.8.1", optional = true, default-features = false }
3133

3234
[dev-dependencies]
33-
hex-literal = "1"
34-
hex = { version = "0.4.1", features = ["serde"] }
35-
num-bigint = "0.4.4"
36-
quickcheck = "1"
37-
quickcheck_macros = "1"
38-
proptest = "1.4.0"
39-
criterion = "0.7"
4035
aes = "0.9.0-rc.2"
36+
criterion = "0.7"
4137
cipher = "0.5.0-rc.2"
4238
ctr = "0.10.0-rc.2"
43-
rand_core = "0.10.0-rc-2"
39+
hex = { version = "0.4.1", features = ["serde"] }
40+
hex-literal = "1"
41+
num-bigint = "0.4.4"
4442
paste = "1.0.15"
43+
pkcs8 = { version = "0.11.0-rc.8", features = ["pem"] }
44+
proptest = "1.4.0"
45+
rand_core = "0.10.0-rc-2"
4546
rand = "0.10.0-rc.1"
4647
serde_json = "1.0.124"
4748
serde = { version = "1.0.207", features = ["derive"] }
48-
pkcs8 = { version = "0.11.0-rc.8", features = ["pem"] }
4949

5050
[lib]
5151
bench = false

0 commit comments

Comments
 (0)