forked from 0xMiden/miden-vm
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
39 lines (35 loc) · 711 Bytes
/
Copy pathCargo.toml
File metadata and controls
39 lines (35 loc) · 711 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
[workspace]
members = [
"air",
"assembly",
"core",
"miden",
"package",
"processor",
"prover",
"stdlib",
"test-utils",
"verifier",
]
resolver = "2"
[workspace.package]
edition = "2024"
rust-version = "1.86"
license = "MIT"
readme = "README.md"
authors = ["Miden contributors"]
homepage = "https://polygon.technology/polygon-miden"
repository = "https://github.com/0xMiden/miden-vm"
exclude = [".github/"]
[profile.optimized]
inherits = "release"
codegen-units = 1
lto = true
[profile.test-dev]
inherits = "dev"
opt-level = 1
debug = true
debug-assertions = true
overflow-checks = true
[workspace.dependencies]
thiserror = { version = "2.0", default-features = false }