-
Notifications
You must be signed in to change notification settings - Fork 1
/
Cargo.toml
45 lines (40 loc) · 1.26 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
# cargo-features = ["per-package-target"]
[workspace]
members = [
"crates/grapevine_cli",
"crates/grapevine_circuits",
"crates/grapevine_server",
"crates/grapevine_common",
# "crates/grapevine_wasm"
]
default-members = ["crates/grapevine_cli"]
resolver = "2"
[workspace.package]
version = "0.1.0"
edition = "2021"
license = "MIT or Apache-2.0"
[workspace.dependencies]
grapevine_circuits = { path = "crates/grapevine_circuits" }
grapevine_common = { path = "crates/grapevine_common" }
mongodb = "2.8.0"
babyjubjub-rs = { version = "0.0.11", features = ["aarch64"] }
ff = { version = "0.13", features = ["derive"] }
ff_ce = { version = "0.11", features = ["derive"] }
hex = "0.4.3"
nova-scotia = { git = "https://github.com/Mach-34/Nova-Scotia/" } # fork adds support for continue_recursive_circuit
nova-snark = "0.23.0"
num-bigint = "0.4.4"
poseidon-rs = "0.0.8"
rand = "0.8.5"
serde = "1.0.190"
serde_json = "1.0.107"
tokio = { version = "1.33.0", features = ["full"] }
uuid = { version = "1.6.1", features = ["v4", "serde"] }
jsonwebtoken = "9.2.0"
bincode = "1.3.3"
bson = "2.9.0"
reqwest = { version = "0.11.23", features = ["json"] }
sha3 = "0.10.8"
lazy_static = "1.4.0"
dotenv = "0.15.0"
wasm-bindgen = { version = "0.2.91", features = ["serde-serialize"]}