forked from noir-lang/acvm
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathCargo.toml
33 lines (24 loc) · 1.14 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
[workspace]
members = ["acir_field", "acir", "acvm", "acvm_js", "stdlib", "brillig", "brillig_vm", "blackbox_solver"]
resolver = "2"
[workspace.package]
authors = ["The Noir Team <[email protected]>"]
edition = "2021"
license = "MIT"
rust-version = "1.66"
repository = "https://github.com/noir-lang/acvm/"
[workspace.dependencies]
acir = { version = "0.25.0", path = "acir", default-features = false }
acir_field = { version = "0.25.0", path = "acir_field", default-features = false }
stdlib = { package = "acvm_stdlib", version = "0.25.0", path = "stdlib", default-features = false }
brillig = { version = "0.25.0", path = "brillig", default-features = false }
blackbox_solver = { package = "acvm_blackbox_solver", version = "0.25.0", path = "blackbox_solver", default-features = false }
bincode = "1.3.3"
num-bigint = "0.4"
num-traits = "0.2"
thiserror = "1.0.21"
serde = { version = "1.0.136", features = ["derive"] }
[profile.dev]
# This is required to be able to run `cargo test` in acvm_js due to the `locals exceeds maximum` error.
# See https://ritik-mishra.medium.com/resolving-the-wasm-pack-error-locals-exceed-maximum-ec3a9d96685b
opt-level = 1