[package]
edition = "2021"
rust-version = "1.65"
name = "reddsa"
version = "0.5.2"
authors = [
"Henry de Valence <hdevalence@hdevalence.ca>",
"Deirdre Connolly <durumcrustulum@gmail.com>",
"Chelsea Komlo <me@chelseakomlo.com>",
"Jack Grigg <jack@electriccoin.co>",
"Conrado Gouvea <conradoplg@gmail.com>",
]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "A standalone implementation of the RedDSA signature scheme."
readme = "README.md"
keywords = [
"cryptography",
"crypto",
"zcash",
]
categories = [
"cryptography",
"no-std",
]
license = "MIT OR Apache-2.0"
repository = "https://github.com/ZcashFoundation/reddsa"
[package.metadata.docs.rs]
features = ["nightly"]
[features]
alloc = ["hex"]
default = ["std"]
frost = [
"frost-rerandomized",
"alloc",
]
nightly = []
serde = [
"dep:serde",
"frost-rerandomized?/serde",
]
std = [
"blake2b_simd/std",
"thiserror",
"zeroize",
"alloc",
"serde",
]
[lib]
name = "reddsa"
path = "src/lib.rs"
[[test]]
name = "batch"
path = "tests/batch.rs"
[[test]]
name = "bincode"
path = "tests/bincode.rs"
[[test]]
name = "frost_redjubjub"
path = "tests/frost_redjubjub.rs"
[[test]]
name = "frost_redpallas"
path = "tests/frost_redpallas.rs"
[[test]]
name = "librustzcash_vectors"
path = "tests/librustzcash_vectors.rs"
[[test]]
name = "proptests"
path = "tests/proptests.rs"
[[test]]
name = "smallorder"
path = "tests/smallorder.rs"
[[bench]]
name = "bench"
path = "benches/bench.rs"
harness = false
[[bench]]
name = "frost"
path = "benches/frost.rs"
harness = false
[dependencies.blake2b_simd]
version = "1"
default-features = false
[dependencies.byteorder]
version = "1.5"
default-features = false
[dependencies.frost-rerandomized]
version = "3.0.0"
features = ["serialization"]
optional = true
default-features = false
[dependencies.group]
version = "0.13"
default-features = false
[dependencies.hex]
version = "0.4"
features = ["alloc"]
optional = true
default-features = false
[dependencies.jubjub]
version = "0.10"
default-features = false
[dependencies.pasta_curves]
version = "0.5"
default-features = false
[dependencies.rand_core]
version = "0.6"
default-features = false
[dependencies.serde]
version = "1"
features = ["derive"]
optional = true
[dependencies.thiserror]
version = "2.0"
optional = true
[dependencies.zeroize]
version = "1"
features = ["zeroize_derive"]
optional = true
[dev-dependencies.bincode]
version = "1"
[dev-dependencies.criterion]
version = "0.6"
[dev-dependencies.frost-rerandomized]
version = "3.0.0"
features = ["test-impl"]
[dev-dependencies.hex]
version = "0.4.3"
[dev-dependencies.lazy_static]
version = "1.5"
[dev-dependencies.num-bigint]
version = "0.4.6"
[dev-dependencies.num-traits]
version = "0.2.19"
[dev-dependencies.pasta_curves]
version = "0.5"
features = ["alloc"]
default-features = false
[dev-dependencies.proptest]
version = "1.6"
[dev-dependencies.proptest-derive]
version = "0.5"
[dev-dependencies.rand]
version = "0.8"
[dev-dependencies.rand_chacha]
version = "0.3"
[dev-dependencies.serde_json]
version = "1.0"