-
Notifications
You must be signed in to change notification settings - Fork 34
Expand file tree
/
Copy pathCargo.toml
More file actions
45 lines (38 loc) · 947 Bytes
/
Cargo.toml
File metadata and controls
45 lines (38 loc) · 947 Bytes
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 = "binius-examples"
version.workspace = true
edition.workspace = true
authors.workspace = true
[lints]
workspace = true
[dependencies]
anyhow.workspace = true
binius-core = { path = "../core" }
binius-frontend = { path = "../frontend" }
binius-verifier = { path = "../verifier" }
binius-prover = { path = "../prover", default-features = false }
binius-utils = { path = "../utils", features = ["platform-diagnostics"] }
clap.workspace = true
tracing.workspace = true
tracing-profile.workspace = true
ethsign = "0.9.0"
tiny-keccak = "2.0.2"
rand.workspace = true
base64.workspace = true
jwt-simple.workspace = true
sha2.workspace = true
[dev-dependencies]
criterion.workspace = true
[[bench]]
name = "keccak"
harness = false
[[bench]]
name = "ethsign"
harness = false
[features]
default = ["rayon"]
perfetto = ["tracing-profile/perfetto"]
rayon = ["binius-prover/rayon"]
[[example]]
name = "prover"
path = "examples/prover.rs"