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"
|
2019-12-09 11:07:05 -08:00
|
|
|
serde = { version = "1", optional = true, features = ["derive"] }
|
2019-12-02 21:32:38 -08:00
|
|
|
|
2019-12-03 22:33:27 -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"
|
2019-12-04 14:49:22 -08:00
|
|
|
lazy_static = "1.4"
|
2019-12-09 11:07:05 -08:00
|
|
|
bincode = "1"
|
2019-12-03 22:33:27 -08:00
|
|
|
|
2019-12-02 21:32:38 -08:00
|
|
|
[features]
|
|
|
|
nightly = []
|
2019-12-09 11:07:05 -08:00
|
|
|
default = ["serde"]
|