-
Notifications
You must be signed in to change notification settings - Fork 35
/
Cargo.toml
40 lines (36 loc) · 1.07 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
[package]
name = "zkp"
version = "0.7.0"
authors = ["Henry de Valence <[email protected]>"]
edition = "2018"
license = "CC0-1.0"
readme = "README.md"
repository = "https://github.com/hdevalence/zkp"
documentation = "https://docs.rs/zkp"
categories = ["cryptography"]
keywords = ["cryptography", "ristretto", "zero-knowledge", "NIZK", "compiler"]
description = "A toolkit for auto-generated implementations of Schnorr proofs"
exclude = [
".gitignore"
]
[package.metadata.docs.rs]
features = ["nightly"]
[dependencies]
merlin = "2"
rand = "0.7"
serde = "1"
serde_derive = "1"
thiserror = "1"
# Disable default features to deselect a backend, then select one below
curve25519-dalek = { version = "2", default-features = false, features = ["serde", "std"] }
[dev-dependencies]
bincode = "1"
sha2 = "0.8"
[features]
nightly = ["curve25519-dalek/nightly"]
debug-transcript = ["merlin/debug-transcript"]
bench = []
default = ["u64_backend"]
u32_backend = ["curve25519-dalek/u32_backend"]
u64_backend = ["curve25519-dalek/u64_backend"]
simd_backend = ["curve25519-dalek/simd_backend"]