forked from MindFlowInteractive/quest-contract
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
38 lines (35 loc) · 769 Bytes
/
Copy pathCargo.toml
File metadata and controls
38 lines (35 loc) · 769 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
[workspace]
resolver = "2"
members = [
"contracts/subscription",
"contracts/achievement_collection",
"contracts/achievement_nft",
"contracts/auction",
"contracts/bridge",
"contracts/daily_rewards",
"contracts/energy",
"contracts/guild",
"contracts/leaderboard",
"contracts/oracle",
"contracts/puzzle_verification",
"contracts/referral",
"contracts/reward_token",
"contracts/staking",
"contracts/time_attack",
"contracts/tournament",
"contracts/bounty",
]
[workspace.dependencies]
soroban-sdk = "21.0.0"
[profile.release]
opt-level = "z"
debug = 0
strip = "symbols"
debug-assertions = false
overflow-checks = true
lto = true
panic = "abort"
codegen-units = 1
[profile.release-with-logs]
inherits = "release"
debug-assertions = true