ed25519-zebra/Cargo.toml

45 lines
805 B
TOML

[package]
name = "ed25519-zebra"
# Before publishing:
# - update CHANGELOG.md
# - update html_root_url
version = "0.2.3"
authors = ["Henry de Valence <hdevalence@hdevalence.ca>"]
license = "MIT OR Apache-2.0"
edition = "2018"
repository = "https://github.com/ZcashFoundation/ed25519-zebra"
description = "Zcash-flavored Ed25519 for use in Zebra."
[package.metadata.docs.rs]
features = ["nightly", "batch"]
[dependencies]
hex = "0.4"
sha2 = "0.8"
rand_core = "0.5"
thiserror = "1"
curve25519-dalek = "2"
serde = { version = "1", optional = true, features = ["derive"] }
[dev-dependencies]
rand = "0.7"
bincode = "1"
criterion = "0.3"
[features]
nightly = []
default = ["serde"]
[[test]]
name = "rfc8032"
[[test]]
name = "unit_tests"
[[test]]
name = "batch"
[[bench]]
name = "bench"
harness = false