forked from StellarRouter/StellarRouter
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
32 lines (30 loc) · 744 Bytes
/
Copy pathCargo.toml
File metadata and controls
32 lines (30 loc) · 744 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
[workspace]
resolver = "2"
members = [
"api-server",
"contracts/router-common",
"contracts/router-core",
"contracts/router-registry",
"contracts/router-access",
"contracts/router-middleware",
"contracts/router-timelock",
"contracts/router-multicall",
"contracts/router-quote",
"contracts/router-execution",
"contracts/liquidity-plugin-example-fixed-rate",
"metrics",
"router-off-chain-common",
"integration-tests",
]
[workspace.dependencies]
soroban-sdk = { version = "21.7.6", features = ["alloc"] }
ed25519-dalek = ">=2.0.0, <3"
[profile.release]
opt-level = "z"
overflow-checks = true
debug = 0
strip = "symbols"
debug-assertions = false
panic = "abort"
codegen-units = 1
lto = true