mirror of
https://github.com/RustCrypto/signatures
synced 2026-06-21 13:45:42 +00:00
088a4fe7a4
Release PR: RustCrypto/traits#2400
28 lines
854 B
TOML
28 lines
854 B
TOML
[package]
|
|
name = "lms-signature"
|
|
description = "Pure Rust implementation of Leighton-Micali Hash-Based Signatures (RFC 8554)"
|
|
version = "0.1.0-rc.2"
|
|
edition = "2024"
|
|
license = "Apache-2.0 OR MIT"
|
|
homepage = "https://github.com/RustCrypto/signatures/tree/master/lms"
|
|
repository = "https://github.com/RustCrypto/signatures"
|
|
readme = "README.md"
|
|
rust-version = "1.85"
|
|
categories = ["cryptography"]
|
|
keywords = ["crypto", "signature"]
|
|
|
|
[dependencies]
|
|
digest = "0.11"
|
|
hybrid-array = { version = "0.4", features = ["extra-sizes", "zeroize"] }
|
|
getrandom = { version = "0.4", features = ["sys_rng"] }
|
|
sha2 = "0.11"
|
|
static_assertions = "1.1"
|
|
rand_core = "0.10"
|
|
signature = { version = "3", features = ["alloc", "digest", "rand_core"] }
|
|
typenum = { version = "1.20", features = ["const-generics"] }
|
|
zeroize = "1.8"
|
|
|
|
[dev-dependencies]
|
|
hex = "0.4"
|
|
hex-literal = "1"
|