forked from ZcashFoundation/redjubjub
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
42 lines (37 loc) · 1.33 KB
/
Cargo.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
[package]
name = "nam-redjubjub"
edition = "2021"
# When releasing to crates.io:
# - Update CHANGELOG.md
# - Create git tag.
version = "0.7.1-nam.0"
authors = ["Henry de Valence <[email protected]>", "Deirdre Connolly <[email protected]>", "Chelsea Komlo <[email protected]>", "Daira Emma Hopwood <[email protected]>"]
readme = "README.md"
license = "MIT OR Apache-2.0"
repository = "https://github.com/anoma/redjubjub"
categories = ["cryptography"]
keywords = ["cryptography", "crypto", "jubjub", "redjubjub", "zcash"]
description = "(Namada fork) A standalone implementation of the RedJubjub signature scheme."
[package.metadata.docs.rs]
features = ["nightly"]
[dependencies]
reddsa = { package = "nam-reddsa", version = "0.5.2-nam.0", default-features = false, features = ["alloc"] }
rand_core = { version = "0.6", default-features = false }
serde = { version = "1", optional = true, default-features = false, features = ["derive"] }
thiserror = { version = "1.0", optional = true }
zeroize = { version = "1", default-features = false, features = ["zeroize_derive"] }
[dev-dependencies]
bincode = "1"
criterion = "0.5"
lazy_static = "1.4"
proptest = "1.0"
rand = "0.8"
rand_chacha = "0.3"
serde_json = "1.0"
[features]
nightly = []
default = ["serde", "std"]
std = ["dep:thiserror", "reddsa/std"]
[[bench]]
name = "bench"
harness = false