-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
103 lines (84 loc) · 2.11 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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
[package]
name = "maru_volume_stark"
description = "STARK to prove LP 3Pool Curve transactions volume"
version = "0.2.0"
authors = ["Denis Kanonik <[email protected]>", "Stanislav Karashchuk <[email protected]>"]
readme = "README.md"
repository = "https://github.com/proxima-one/volume-stark"
keywords = ["STARK", "Ethereum", "Curve"]
categories = ["cryptography"]
edition = "2021"
[dependencies]
regex="1.9.0"
anyhow = "1.0.40"
env_logger = "0.10.0"
eth_trie_utils = "0.6.0"
ethereum-types = "0.14.0"
hex = { version = "0.4.3"}
#hex-literal = "0.4.1"
itertools = "0.11.0"
keccak-hash = "0.10.0"
log = "0.4.14"
plonky2_maybe_rayon = "0.1.1"
num = "0.4.0"
num-bigint = "0.4.3"
once_cell = "1.13.0"
pest = "2.1.3"
pest_derive = "2.1.0"
plonky2 = { version = "0.1.4", default-features = false, features = ["timing"] }
plonky2_util = { version = "0.1.1" }
rand = "0.8.5"
rand_chacha = "0.3.1"
rlp = "0.5.1"
rlp-derive = "0.1.0"
serde = { version = "1.0.144", features = ["derive"] }
static_assertions = "1.1.0"
hashbrown = { version = "0.14.0" }
tiny-keccak = "2.0.2"
serde_json = "1.0"
hyper = { version = "1.0.0-rc.4", features = ["full"] }
tokio = { version = "1", features = ["full"] }
http-body-util = "0.1.0-rc.3"
hyper-util = { git = "https://github.com/hyperium/hyper-util.git" }
bytes = "1"
base64 = "0.21.4"
url = "2.2"
futures-util = "0.3.28"
[target.'cfg(not(target_env = "msvc"))'.dependencies]
jemallocator = "0.5.0"
[dev-dependencies]
criterion = "0.5.1"
hex = "0.4.3"
ripemd = "0.1.3"
sha2 = "0.10.6"
[features]
default = ["parallel"]
#asmtools = ["hex"]
parallel = ["plonky2/parallel", "plonky2_maybe_rayon/parallel"]
[[bin]]
name = "assemble"
required-features = ["asmtools"]
[build]
rustflags = ["-C", "link-arg=-fuse-ld=lld"]
[profile.release]
lto = "off"
[[bin]]
name = "generate_recursive_circuit"
[[bin]]
name = "prove_anchor_recursive"
[[bin]]
name = "prove_link_recursive"
[[bin]]
name = "prove_agg_recursive"
[[bin]]
name = "verify_recursive"
[[bin]]
name = "verify_agg"
[[bin]]
name = "final_proof_wrapper"
[[bin]]
name = "prove_recursive"
[[bin]]
name = "run_proof_server"
[[bin]]
name = "test_run_proof_server"