-
Notifications
You must be signed in to change notification settings - Fork 197
Expand file tree
/
Copy pathCargo.toml
More file actions
65 lines (60 loc) · 1.86 KB
/
Copy pathCargo.toml
File metadata and controls
65 lines (60 loc) · 1.86 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
60
61
62
63
64
65
[package]
name = "xmss"
version = "0.1.0-pre.1"
authors = ["Michael Lodder <redmike7@gmail.com>"]
description = """
Pure Rust implementation of XMSS (eXtended Merkle Signature Scheme)
as described in RFC 8391 and SP 800-208
"""
license = "Apache-2.0 OR MIT"
edition = "2024"
homepage = "https://github.com/RustCrypto/signature/tree/master/xmss"
repository = "https://github.com/RustCrypto/signatures"
readme = "README.md"
categories = ["cryptography"]
keywords = ["xmss", "signature", "crypto", "cryptography", "rfc8391"]
rust-version = "1.85"
[features]
default = []
serde = ["dep:serdect"]
pkcs8 = ["dep:pkcs8", "dep:spki", "dep:der", "dep:const-oid"]
[dependencies]
const-oid = { version = "0.10", optional = true }
der = { version = "0.8", optional = true, default-features = false, features = ["alloc"] }
digest = "0.11"
hybrid-array = { version = "0.4", features = ["zeroize"] }
pkcs8 = { version = "0.11", optional = true, default-features = false, features = ["alloc"] }
rand = "0.10"
sha2 = "0.11"
shake = "0.1"
serdect = { version = "0.4", features = ["alloc"], optional = true }
signature = "3"
spki = { version = "0.8", optional = true, default-features = false, features = ["alloc"] }
subtle = "2.6"
thiserror = "2"
zeroize = "1"
[dev-dependencies]
postcard = { version = "1", features = ["alloc"] }
serde_json = "1"
[lints.rust]
missing_docs = "deny"
missing_debug_implementations = "deny"
trivial_casts = "deny"
trivial_numeric_casts = "deny"
unsafe_code = "deny"
unstable_features = "deny"
unused_import_braces = "deny"
unused_parens = "deny"
unused_lifetimes = "deny"
unused_qualifications = "deny"
unused_extern_crates = "deny"
[lints.clippy]
unwrap_used = "deny"
cast_precision_loss = "warn"
cast_possible_truncation = "warn"
cast_possible_wrap = "warn"
cast_sign_loss = "warn"
checked_conversions = "warn"
mod_module_files = "warn"
panic = "warn"
panic_in_result_fn = "warn"