# 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 = "2021" name = "ldwm" version = "0.3.0" authors = ["Alexander Rao "] description = "An LDWM signature parsing and verifying library" documentation = "https://docs.rs/ldwm/latest/ldwm/" readme = "README.md" keywords = ["ldwm"] categories = ["cryptography"] license = "Unlicense" repository = "https://github.com/alexhrao/ldwm" [profile.release] opt-level = "z" lto = "fat" codegen-units = 1 [lib] name = "ldwm" path = "src/lib.rs" [dependencies.rand] version = "0.8.5" optional = true [dependencies.rayon] version = "1.8.1" optional = true [dependencies.sha2] version = "0.10.8" default-features = false [dev-dependencies.hex] version = "0.4.3" [features] default = [ "verify", "sign", "rayon", ] rayon = ["dep:rayon"] sign = ["std"] std = ["dep:rand"] verify = [] [lints.clippy] [lints.rust] missing_docs = "warn"