-
Notifications
You must be signed in to change notification settings - Fork 64
Expand file tree
/
Copy pathCargo.toml
More file actions
36 lines (33 loc) · 871 Bytes
/
Cargo.toml
File metadata and controls
36 lines (33 loc) · 871 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
[workspace]
members = [
"contracts/shared_utils",
"contracts/commitment_nft",
"contracts/commitment_marketplace",
"contracts/commitment_core",
"contracts/attestation_engine",
"contracts/allocation_logic",
"contracts/commitment_interface",
"contracts/commitment_transformation",
"contracts/price_oracle",
"contracts/mock_oracle",
"contracts/version-system",
"contracts/time_lock"
]
# Note: tests/integration is excluded from workspace to prevent testutils feature
# from being enabled during WASM builds. Run integration tests separately.
exclude = [
"tests/integration",
]
resolver = "2"
[profile.release]
opt-level = "z"
overflow-checks = true
debug = 0
strip = "symbols"
debug-assertions = false
panic = "abort"
codegen-units = 1
lto = true
[profile.release-with-logs]
inherits = "release"
debug-assertions = true