forked from openvm-org/openvm
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
29 lines (27 loc) · 956 Bytes
/
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
[package]
name = "openvm-ecc-integration-tests"
description = "Integration tests for the OpenVM ecc extension"
version.workspace = true
authors.workspace = true
edition.workspace = true
homepage.workspace = true
repository.workspace = true
[dependencies]
openvm-circuit-primitives-derive.workspace = true
openvm-instructions = { workspace = true }
openvm-stark-sdk.workspace = true
openvm-circuit = { workspace = true, features = ["test-utils"] }
openvm-transpiler.workspace = true
openvm-algebra-circuit.workspace = true
openvm-algebra-transpiler.workspace = true
openvm-ecc-transpiler.workspace = true
openvm-ecc-circuit.workspace = true
openvm-ecc-guest.workspace = true
openvm-rv32im-transpiler.workspace = true
openvm-keccak256-transpiler.workspace = true
openvm-toolchain-tests = { path = "../../../crates/toolchain/tests" }
openvm-sdk.workspace = true
eyre.workspace = true
[features]
default = ["parallel"]
parallel = ["openvm-circuit/parallel"]