[package]
edition = "2024"
name = "hotmint-crypto"
version = "0.3.0"
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Cryptographic primitives for Hotmint: Ed25519, Blake3, aggregate signatures"
readme = "README.md"
keywords = [
"consensus",
"tendermint",
"hotstuff",
"hotstuff2",
"bft",
]
license = "GPL-3.0-only"
repository = "https://github.com/rust-util-collections/hotmint"
resolver = "2"
[lib]
name = "hotmint_crypto"
path = "src/lib.rs"
[[bench]]
name = "crypto_bench"
path = "benches/crypto_bench.rs"
harness = false
[dependencies.blake3]
version = "1"
[dependencies.ed25519-dalek]
version = "2.2"
features = [
"serde",
"rand_core",
]
[dependencies.hotmint-types]
version = "0.3.0"
[dependencies.rand]
version = "0.8"
[dependencies.ruc]
version = "9.3"
[dependencies.serde]
version = "1"
features = ["derive"]
[dev-dependencies.criterion]
version = "0.5"
features = ["html_reports"]