This repository has been archived by the owner on Nov 9, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 6
/
Cargo.toml
51 lines (48 loc) · 1.47 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
43
44
45
46
47
48
49
50
51
[package]
name = "dusk-blindbid"
version = "0.10.0-rc.2"
authors = ["CPerezz <carlos@dusk.network>", "Victor Lopez <victor@dusk.network>"]
edition = "2018"
license = "MPL-2.0"
readme = "README.md"
repository = "https://github.com/dusk-network/dusk-blindbid"
categories =["algorithms", "cryptography", "science"]
keywords = ["blindbid", "plonk", "lottery", "zero-knowledge", "crypto"]
description = "BlindBid protocol implementation with PLONK ZKProofs backend"
exclude = [
".gitignore",
"Cargo.lock",
".github/",
"README.md",
"CONTRIBUTING.md",
]
[dependencies]
dusk-pki = { version = "0.8.0-rc", default-features = false }
dusk-poseidon = { version = "0.22.0-rc", default-features = false }
dusk-bls12_381 = { version = "0.8", default-features = false }
dusk-jubjub = { version = "0.10", default-features = false }
num-bigint = { version = "0.3", optional = true }
num-traits = { version = "0.2", optional = true }
rand_core = { version = "0.6", default-features = false }
canonical = { version = "0.6", optional = true }
canonical_derive = { version = "0.6", optional = true }
dusk-bytes = "0.1"
phoenix-core = { version = "0.14.0-rc", default-features = false }
[dev-dependencies]
rand = "0.8"
[features]
default = ["canon", "std"]
std = [
"dusk-jubjub/std",
"dusk-bls12_381/std",
"dusk-poseidon/default",
"num-bigint",
"num-traits",
]
canon = [
"canonical",
"canonical_derive",
"dusk-poseidon/canon",
"dusk-pki/canon",
"phoenix-core/canon"
]