-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
82 lines (70 loc) · 2.48 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
[package]
name = "arithmetization_benchmarks"
version = "0.1.0"
edition = "2021"
[[bin]]
name = "fractal-orchestrator"
path = "src/sample_r1cs_benchmarks.rs"
bench = false
doc = false
debug = 1
[[bin]]
name = "stark-orchestrator"
path = "src/sample_air_benchmarks.rs"
bench = false
doc = false
debug = 1
[features]
default = ["flame_it"]
flame_it = ["flame", "flamer", "fractal_utils/flame_it", "fractal_indexer/flame_it", "fractal_prover/flame_it", "fractal_verifier/flame_it"]
[dependencies]
criterion = { version = "0.4", features = [ "html_reports" ] }
displaydoc = "0.1.7"
flame = { version = "0.2", optional = true }
flamer = { version = "0.3", optional = true }
fractal_examples = { git = "https://github.com/Jasleen1/winter_fractal", branch = "linear_combination" }
fractal_utils = { git = "https://github.com/Jasleen1/winter_fractal", branch = "linear_combination" }
fractal_proofs = { git = "https://github.com/Jasleen1/winter_fractal", branch = "linear_combination" }
fractal_indexer = { git = "https://github.com/Jasleen1/winter_fractal", branch = "linear_combination" }
fractal_prover = { git = "https://github.com/Jasleen1/winter_fractal", branch = "linear_combination" }
fractal_verifier = { git = "https://github.com/Jasleen1/winter_fractal", branch = "linear_combination" }
winter-models = { git = "https://github.com/Jasleen1/winter_fractal", branch = "linear_combination" }
reports = { git = "https://github.com/Jasleen1/winter_fractal", branch = "linear_combination" }
lazy_static = "1.4.0"
log = { version = "0.4", default-features = false }
#models = { version = "0.1.0", path = "../winter_fractal/models", package = "winter-models", default-features = false }
nohash-hasher = { version = "0.2" }
regex = "1"
serde = { version = "1.0.117", features = ["derive"] }
sscanf = "0.1.4"
structopt = { version = "0.3", default-features = false }
thiserror = "1.0.22"
winter-crypto = "0.4.0"
winter-fri = "0.4.0"
winter-math = "0.4.0"
winter-utils = "0.4.0"
winter-rand-utils = "0.4.0"
winter-air = "0.4.0"
winterfell = "0.4.0"
examples = {git = "https://github.com/Jasleen1/winterfell", branch = "pointer_chasing"}
[[bench]]
name = "r1cs_benchmark"
harness = false
[[bench]]
name = "air_benchmark"
harness = false
[[bench]]
name = "fft_single_benchmark"
harness = false
[[bench]]
name = "fft_micro_benchmark"
harness = false
[[bench]]
name = "merkle_tree_benchmark"
harness = false
[[bench]]
name = "merkle_proof_benchmark"
harness = false
[[bench]]
name = "program_by_proof_system_benchmark"
harness = false