forked from StellarSplit/StellarSplit
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
34 lines (30 loc) · 674 Bytes
/
Copy pathCargo.toml
File metadata and controls
34 lines (30 loc) · 674 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
[workspace]
resolver = "2"
members = [
"achievement-badges",
"flash-loan",
"dispute-resolution",
"path-payment",
"split-template",
"staking",
"split-escrow",
"multi-sig-splits",
]
# Excluded: these crates have compilation errors and are not yet workspace-ready
# - dispute-resolution: many compilation errors (mid-port to pinned Soroban toolchain)
exclude = [
]
[workspace.dependencies]
soroban-sdk = "21.0.0"
[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