-
Notifications
You must be signed in to change notification settings - Fork 9
/
Cargo.toml
40 lines (35 loc) · 1.27 KB
/
Cargo.toml
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
[package]
name = "hbs-lms"
version = "0.2.0-alpha.1"
rust-version = "1.63"
authors = ["Fraunhofer AISEC"]
description = """
Pure Rust implementation of the Leighton Micali Signature scheme with support for key generation, signature generation and verification.
"""
edition = "2018"
repository = "https://github.com/Fraunhofer-AISEC/hbs-lms-rust"
license = "Apache-2.0"
readme = "README.md"
keywords = ["crypto", "post-quantum", "signature", "lms"]
categories = ["cryptography", "no-std"]
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
tinyvec = { version = "1.5.1", features = ["rustc_1_55"] }
subtle = { version = "2.4.1", default-features = false }
zeroize = { version = "1.5.1", default-features = false, features = ["zeroize_derive"] }
signature = { version = "1.4.0", default-features = false }
digest = { version = "0.10.2", default-features = false }
sha2 = { version = "0.10.0", default-features = false }
sha3 = { version = "0.10.0", default-features = false }
crossbeam = {version = "0.8", optional = true }
rand = { version = "0.8.3", optional = true }
[dev-dependencies]
clap = "3.0.0"
tempfile = "3.2.0"
hex = "0.4.3"
rand = "0.8.3"
[features]
default = []
std = []
fast_verify = ["std", "rand", "crossbeam"]
verbose = []