-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathCargo.toml
More file actions
33 lines (30 loc) · 797 Bytes
/
Cargo.toml
File metadata and controls
33 lines (30 loc) · 797 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
[workspace]
resolver = "2"
members = [
"packages/boundless-types",
"contracts/core_escrow",
"contracts/reputation_registry",
"contracts/governance_voting",
"contracts/project_registry",
"contracts/bounty_registry",
"contracts/crowdfund_registry",
"contracts/grant_hub",
"contracts/hackathon_registry",
"tests/integration",
]
[workspace.dependencies]
soroban-sdk = "25"
boundless-types = { path = "packages/boundless-types" }
[profile.release]
opt-level = "z"
overflow-checks = true
debug = 0
strip = "symbols"
debug-assertions = false
panic = "abort"
codegen-units = 1
lto = true
# For more information about this profile see https://soroban.stellar.org/docs/basic-tutorials/logging#cargotoml-profile
[profile.release-with-logs]
inherits = "release"
debug-assertions = true