redjubjub/Cargo.toml

45 lines
1.1 KiB
TOML
Raw Normal View History

2019-12-02 14:12:06 -08:00
[package]
2019-12-09 13:54:10 -08:00
name = "redjubjub"
2019-12-09 13:20:56 -08:00
edition = "2018"
2020-01-17 10:23:57 -08:00
# When releasing to crates.io:
# - Update html_root_url
# - Update CHANGELOG.md
# - Create git tag.
2020-07-15 12:42:14 -07:00
version = "0.2.2"
authors = ["Henry de Valence <hdevalence@hdevalence.ca>", "Deirdre Connolly <durumcrustulum@gmail.com>", "Chelsea Komlo <me@chelseakomlo.com>"]
2019-12-09 13:20:56 -08:00
readme = "README.md"
license = "MIT OR Apache-2.0"
2019-12-09 13:54:10 -08:00
repository = "https://github.com/ZcashFoundation/redjubjub"
2020-07-09 11:54:58 -07:00
categories = ["cryptography"]
2019-12-09 13:58:42 -08:00
keywords = ["cryptography", "crypto", "jubjub", "redjubjub", "zcash"]
2020-07-09 11:50:53 -07:00
description = "A standalone implementation of the RedJubjub signature scheme."
2019-12-09 13:20:56 -08:00
[package.metadata.docs.rs]
features = ["nightly"]
2019-12-02 14:12:06 -08:00
[dependencies]
2019-12-02 21:19:07 -08:00
blake2b_simd = "0.5"
byteorder = "1.3"
digest = "0.9"
2019-12-04 12:00:26 -08:00
jubjub = "0.3"
rand_core = "0.5"
serde = { version = "1", optional = true, features = ["derive"] }
thiserror = "1.0"
zeroize = { version = "1", default-features = false, features = ["zeroize_derive"] }
2019-12-02 21:32:38 -08:00
[dev-dependencies]
bincode = "1"
criterion = "0.3"
lazy_static = "1.4"
proptest = "0.10"
2019-12-04 17:36:01 -08:00
rand = "0.7"
2019-12-04 14:16:49 -08:00
rand_chacha = "0.2"
2019-12-02 21:32:38 -08:00
[features]
nightly = []
default = ["serde"]
[[bench]]
name = "bench"
harness = false