forked from MarketXpress/MarketX-contract
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
27 lines (24 loc) · 702 Bytes
/
Copy pathCargo.toml
File metadata and controls
27 lines (24 loc) · 702 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
[workspace]
resolver = "2"
members = [
"contracts/*",
]
# ---------------------------------------------------------------------------
# Shared dependencies — referenced by individual contracts via
# `{ workspace = true }` to keep versions consistent across all crates.
# ---------------------------------------------------------------------------
[workspace.dependencies]
soroban-sdk = "25"
[profile.release]
opt-level = "z"
overflow-checks = true
debug = 0
strip = "symbols"
debug-assertions = false
panic = "abort"
codegen-units = 1
lto = true
# Enable logging in release builds for local debugging; do not deploy this.
[profile.release-with-logs]
inherits = "release"
debug-assertions = true