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
56 lines (53 loc) · 1.3 KB
/
Copy pathCargo.toml
File metadata and controls
56 lines (53 loc) · 1.3 KB
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
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
[workspace]
resolver = "2"
members = [
"contracts/subscription",
"contracts/achievement_collection",
"contracts/achievement_nft",
"contracts/achievement_sets",
"contracts/auction",
"contracts/battle_pass",
"contracts/bridge",
"contracts/crafting",
"contracts/daily_rewards",
"contracts/energy",
"contracts/guild",
"contracts/leaderboard",
"contracts/lending",
"contracts/oracle",
"contracts/puzzle_verification",
"contracts/puzzle_insurance",
"contracts/quest_chain",
"contracts/referral",
"contracts/reputation",
"contracts/reward_token",
"contracts/staking",
"contracts/time_attack",
"contracts/tournament",
"contracts/bounty",
"contracts/charity_donation",
"contracts/vesting",
"contracts/insurance",
"contracts/whitelist",
"contracts/skill_rating",
"contracts/governance",
"contracts/lottery",
"contracts/prize_pool",
"contracts/seasonal_event",
"contracts/hint_marketplace",
]
[workspace.dependencies]
# Enable test utilities for test builds across workspace
soroban-sdk = { version = "21.0.0", features = ["testutils"] }
[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