# THIS FILE IS AUTOMATICALLY GENERATED BY CARGO # # When uploading crates to the registry Cargo will automatically # "normalize" Cargo.toml files for maximal compatibility # with all versions of Cargo and also rewrite `path` dependencies # to registry (e.g., crates.io) dependencies. # # If you are reading this file be aware that the original Cargo.toml # will likely look very different (and much more reasonable). # See Cargo.toml.orig for the original contents. [package] edition = "2018" rust-version = "1.63" name = "hbs-lms" version = "0.2.0-alpha.1" authors = ["Fraunhofer AISEC"] build = "build.rs" autobins = false autoexamples = false autotests = false autobenches = false description = """ Pure Rust implementation of the Leighton Micali Signature scheme with support for key generation, signature generation and verification. """ readme = "README.md" keywords = [ "crypto", "post-quantum", "signature", "lms", ] categories = [ "cryptography", "no-std", ] license = "Apache-2.0" repository = "https://github.com/Fraunhofer-AISEC/hbs-lms-rust" [lib] name = "hbs_lms" path = "src/lib.rs" [[example]] name = "lms-demo" path = "examples/lms-demo.rs" [[test]] name = "reference_implementation" path = "tests/reference_implementation.rs" [[test]] name = "rfc_testcase1" path = "tests/rfc_testcase1.rs" [[test]] name = "rfc_testcase2" path = "tests/rfc_testcase2.rs" [[bench]] name = "mod" path = "benches/mod.rs" [dependencies.crossbeam] version = "0.8" optional = true [dependencies.digest] version = "0.10.2" default-features = false [dependencies.rand] version = "0.8.3" optional = true [dependencies.sha2] version = "0.10.0" default-features = false [dependencies.sha3] version = "0.10.0" default-features = false [dependencies.signature] version = "1.4.0" default-features = false [dependencies.subtle] version = "2.4.1" default-features = false [dependencies.tinyvec] version = "1.5.1" features = ["rustc_1_55"] [dependencies.zeroize] version = "1.5.1" features = ["zeroize_derive"] default-features = false [dev-dependencies.clap] version = "3.0.0" [dev-dependencies.hex] version = "0.4.3" [dev-dependencies.rand] version = "0.8.3" [dev-dependencies.tempfile] version = "3.2.0" [features] default = [] fast_verify = [ "std", "rand", "crossbeam", ] std = [] verbose = []