-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
31 lines (23 loc) · 1013 Bytes
/
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
[package]
name = "arkworks_learn"
version = "0.1.0"
authors = ["star <[email protected]>"]
edition = "2018"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
# ripp dependencies copied from https://github.com/arkworks-rs/ripp/blob/master/benches/Cargo.toml
ark-ff = { version = "0.2", features = [ "parallel" ] }
ark-poly = { version = "0.2", features = [ "parallel" ] }
ark-std = { version = "0.2", features = [ "parallel" ] }
ark-groth16 = { version = "0.2", features = [ "parallel", "r1cs" ] }
ark-crypto-primitives = { version = "0.2", features = [ "parallel", "r1cs" ] }
ark-bls12-381 = { version = "0.2", features = [ "curve" ] }
ark-ed-on-bls12-381 = "0.2"
ark-relations = "0.2"
ark-r1cs-std = "0.2"
blake2 = "0.9"
csv = "1.1.3"
# configure the path for ripp library
ark-inner-products = { path = "./ripp/inner_products" }
ark-ip-proofs = { path = "./ripp/ip_proofs" }
ark-dh-commitments = { path = "./ripp/dh_commitments" }