@@ -4,7 +4,7 @@ description = """
44Pure Rust implementation of SLH-DSA (aka SPHINCS+) as described in the
55FIPS-205 standard
66"""
7- version = " 0.2.0-rc.0 "
7+ version = " 0.2.0-rc.1 "
88edition = " 2024"
99rust-version = " 1.85"
1010license = " Apache-2.0 OR MIT"
@@ -16,36 +16,36 @@ keywords = ["crypto", "signature"]
1616exclude = [" 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"
1922hybrid-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 }
2324rand_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"
2625sha2 = { 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
3032zeroize = { 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"
4035aes = " 0.9.0-rc.2"
36+ criterion = " 0.7"
4137cipher = " 0.5.0-rc.2"
4238ctr = " 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"
4442paste = " 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"
4546rand = " 0.10.0-rc.1"
4647serde_json = " 1.0.124"
4748serde = { version = " 1.0.207" , features = [" derive" ] }
48- pkcs8 = { version = " 0.11.0-rc.8" , features = [" pem" ] }
4949
5050[lib ]
5151bench = false
0 commit comments