forked from openvm-org/openvm
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
57 lines (51 loc) · 1.81 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
# Forked from sp1-recursion-compiler under MIT license.
[package]
name = "openvm-native-compiler"
version.workspace = true
authors.workspace = true
edition.workspace = true
homepage.workspace = true
repository.workspace = true
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
zkhash = { workspace = true }
openvm-stark-backend = { workspace = true }
openvm-native-compiler-derive = { workspace = true }
openvm-instructions = { workspace = true }
openvm-instructions-derive = { workspace = true }
openvm-circuit-primitives = { workspace = true }
openvm-stark-sdk = { workspace = true }
openvm-circuit = { workspace = true }
openvm-rv32im-transpiler = { workspace = true }
# disable jemalloc to be compatible with stark-backend
snark-verifier-sdk = { workspace = true, optional = true }
tracing.workspace = true
itertools.workspace = true
serde.workspace = true
serde_json.workspace = true
backtrace = { workspace = true, features = ["serde"] }
strum_macros = "0.26.4"
num-bigint-dig.workspace = true
num-bigint.workspace = true
num-integer.workspace = true
num-traits.workspace = true
metrics = { workspace = true, optional = true }
cfg-if = { workspace = true }
strum = { workspace = true }
[dev-dependencies]
p3-symmetric = { workspace = true }
p3-dft = { workspace = true }
p3-merkle-tree = { workspace = true }
openvm-circuit = { workspace = true, features = ["test-utils"] }
openvm-native-circuit = { workspace = true }
openvm-stark-sdk = { workspace = true }
hex.workspace = true
rand.workspace = true
test-case.workspace = true
test-log.workspace = true
lazy_static.workspace = true
[features]
default = ["parallel", "halo2-compiler"]
halo2-compiler = ["dep:snark-verifier-sdk"]
parallel = ["openvm-circuit/parallel"]
bench-metrics = ["dep:metrics", "openvm-circuit/bench-metrics"]