forked from ceejaylaboratory/AnchorPoint
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
39 lines (38 loc) · 726 Bytes
/
Copy pathCargo.toml
File metadata and controls
39 lines (38 loc) · 726 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
39
[workspace]
members = [
"src/amm",
"src/auth",
"src/batch",
"src/bridge",
"src/circuit_breaker",
"src/escrow_multisig",
"src/escrow_timelock",
"src/event_hub",
"src/flash_loan",
"src/governance",
"src/indexing",
"src/kyc",
"src/liquidation",
"src/oracle_consumer",
"src/oracle_medianizer",
"src/random",
"src/security_registry",
"src/staking",
"src/token",
"src/upgradeable",
"src/utils",
"src/vesting",
"src/proxy",
"src/yield_farming",
"src/benchmarks",
]
resolver = "2"
[profile.release]
opt-level = "z"
overflow-checks = false
debug = 0
strip = true
debug-assertions = false
panic = "abort"
codegen-units = 1
lto = "fat"