-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
48 lines (37 loc) · 2 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
[package]
name = "bitcoin-fold"
version = "0.1.0"
edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
nexus-nova = { git = "https://github.com/hamidra/nexus-zkvm.git", default-features=false, features=["spartan"], version = "0.1.0" }
ark-spartan = { git = "https://github.com/hamidra/nexus-zkvm.git", package="ark-spartan" }
ark-crypto-primitives = "0.4.0"
ark-ff= "0.4.2"
ark-r1cs-std = "0.4.0"
ark-relations = "0.4.0"
tracing-subscriber = "0.3.18"
tracing = "0.1.40"
ark-vesta = { git = "https://github.com/arkworks-rs/algebra.git", version = "0.4.0" }
ark-pallas = { git = "https://github.com/arkworks-rs/algebra.git", version = "0.4.0" }
ark-grumpkin = { git = "https://github.com/arkworks-rs/algebra.git", version = "0.4.0" }
ark-bn254 = { git = "https://github.com/arkworks-rs/algebra.git", version = "0.4.0" }
ark-bls12-381 = { git = "https://github.com/arkworks-rs/algebra.git", version = "0.4.0" }
ark-ec = { version = "0.4.0", default-features = false }
ark-std = "0.4.0"
ark-serialize = { version = "0.4.0", features = ["derive"] }
num-bigint = "0.4.4"
serde = {version="1.0.197", features=["derive"]}
serde_json = "1.0.115"
hex = {version="0.4.3", features=["serde"]}
thiserror = "1.0.58"
[patch.crates-io]
ark-crypto-primitives = { git = "https://github.com/arkworks-rs/crypto-primitives", rev = "d27a5c8" }
ark-r1cs-std = { git = "https://github.com/arkworks-rs/r1cs-std/", rev = "2ca3bd7" }
ark-ff = { git = "https://github.com/arkworks-rs/algebra/", rev = "2a80c54" }
ark-ec = { git = "https://github.com/arkworks-rs/algebra/", rev = "2a80c54" }
ark-serialize = { git = "https://github.com/arkworks-rs/algebra/", rev = "2a80c54" }
ark-poly = { git = "https://github.com/arkworks-rs/algebra/", rev = "2a80c54" }
ark-poly-commit = { git = "https://github.com/arkworks-rs/poly-commit/", rev = "12f5529" }
# note bls is using a different commit from the other curves
ark-bls12-381 = { git = "https://github.com/arkworks-rs/curves/", rev = "3fded1f" }