forked from RustCrypto/signatures
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
59 lines (53 loc) · 1.63 KB
/
Cargo.toml
File metadata and controls
59 lines (53 loc) · 1.63 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
[package]
name = "slh-dsa"
description = """
Pure Rust implementation of SLH-DSA (aka SPHINCS+) as described in the
FIPS-205 standard
"""
version = "0.2.0-rc.4"
edition = "2024"
rust-version = "1.85"
license = "Apache-2.0 OR MIT"
homepage = "https://github.com/RustCrypto/signatures/tree/master/slh-dsa"
repository = "https://github.com/RustCrypto/signatures"
readme = "README.md"
categories = ["cryptography"]
keywords = ["crypto", "signature"]
exclude = ["tests"]
[dependencies]
const-oid = { version = "0.10", features = ["db"] }
digest = "0.11.0-rc.11"
hmac = "0.13.0-rc.5"
hybrid-array = { version = "0.4", features = ["extra-sizes"] }
pkcs8 = { version = "0.11.0-rc.10", default-features = false }
rand_core = "0.10"
sha2 = { version = "0.11.0-rc.5", default-features = false }
sha3 = { version = "0.11.0-rc.7", default-features = false }
signature = { version = "3.0.0-rc.10", features = ["rand_core"] }
typenum = { version = "1.17", features = ["const-generics"] }
zerocopy = { version = "0.8", features = ["derive"] }
# optional dependencies
zeroize = { version = "1.8.1", optional = true, default-features = false }
[dev-dependencies]
aes = "0.9.0-rc.2"
criterion = "0.7"
cipher = "0.5"
ctr = "0.10.0-rc.3"
hex = { version = "0.4.1", features = ["serde"] }
hex-literal = "1"
num-bigint = "0.4.4"
paste = "1.0.15"
pkcs8 = { version = "0.11.0-rc.10", features = ["pem"] }
proptest = "1.10.0"
rand = "0.10"
serde_json = "1.0.124"
serde = { version = "1.0.207", features = ["derive"] }
[lib]
bench = false
[[bench]]
name = "sign_verify"
harness = false
[features]
alloc = []
default = ["alloc", "pkcs8/alloc"]
zeroize = ["dep:zeroize", "hybrid-array/zeroize"]