-
Notifications
You must be signed in to change notification settings - Fork 19
/
Cargo.toml
34 lines (30 loc) · 1.36 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
[package]
name = "zk-citadel"
version = "0.14.0"
repository = "https://github.com/dusk-network/citadel/core"
description = "Implementation of Citadel, a SSI system integrated in Dusk Network."
categories = ["cryptography", "authentication", "mathematics", "science"]
keywords = ["cryptography", "self-sovereign", "identity", "zk-snarks", "zero-knowledge"]
edition = "2021"
license = "MPL-2.0"
[dependencies]
dusk-bytes = "0.1"
dusk-poseidon = { version = "0.40", features = ["zk"] }
poseidon-merkle = { version = "0.7", features = ["rkyv-impl", "zk", "size_32"] }
dusk-plonk = { version = "0.20", default-features = false, features = ["rkyv-impl", "alloc"] }
dusk-bls12_381 = { version = "0.13", default-features = false, features = ["rkyv-impl", "alloc"] }
dusk-jubjub = { version = "0.14", default-features = false, features = ["rkyv-impl", "alloc"] }
ff = { version = "0.13", default-features = false }
jubjub-schnorr = { version = "0.5", features = ["zk", "rkyv-impl", "alloc"] }
phoenix-core = { version = "0.32", features = ["rkyv-impl", "alloc"] }
rand_core = { version = "0.6", default-features=false, features = ["getrandom"] }
rkyv = { version = "0.7", default-features = false }
bytecheck = { version = "0.6", default-features = false }
[dev-dependencies]
criterion = "0.5"
[[bench]]
name = "license_circuit"
harness = false
[features]
rkyv-impl = []
default=["rkyv-impl"]