redjubjub/Cargo.toml

33 lines
791 B
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"
2019-12-02 14:12:06 -08:00
version = "0.1.0"
authors = ["Henry de Valence <hdevalence@hdevalence.ca>"]
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"
2019-12-09 13:20:56 -08:00
categories = ["cryptography", "zcash"]
keywords = ["cryptography", "crypto", "jubjub", "redjubjub", "zcash", "zebra"]
2019-12-09 13:54:10 -08:00
description = "A mostly-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-03 15:39:55 -08:00
rand_core = "0.5"
2019-12-02 21:36:47 -08:00
thiserror = "1.0"
2019-12-02 21:19:07 -08:00
blake2b_simd = "0.5"
2019-12-04 12:00:26 -08:00
jubjub = "0.3"
serde = { version = "1", optional = true, features = ["derive"] }
2019-12-02 21:32:38 -08:00
[dev-dependencies]
2019-12-04 17:36:01 -08:00
rand = "0.7"
2019-12-04 14:16:49 -08:00
rand_chacha = "0.2"
proptest = "0.9"
lazy_static = "1.4"
bincode = "1"
2019-12-02 21:32:38 -08:00
[features]
nightly = []
default = ["serde"]