-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathCargo.toml
More file actions
62 lines (59 loc) · 2 KB
/
Copy pathCargo.toml
File metadata and controls
62 lines (59 loc) · 2 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
57
58
59
60
61
62
[workspace]
resolver = "2"
members = [
"contracts/mcms",
"contracts/timelock",
"contracts/ccvs/*",
"contracts/examples/ccip_receiver",
"contracts/fee-quoter",
"contracts/onramp",
"contracts/offramp",
"contracts/pools/burn-mint-pool",
"contracts/pools/lock-release-pool",
"contracts/pools/siloed-lock-release-pool",
"contracts/pools/token-lock-box",
"contracts/ccip-ramp-registry",
"contracts/registry",
"contracts/token-admin-registry",
"contracts/rmn_proxy",
"contracts/rmn_remote",
"contracts/router",
"contracts/cre/forwarder",
"contracts/cre/test/read_fixture",
"contracts/cre/test/receiver",
"contracts/cre/test/rejecting_receiver",
"contracts/common/*",
]
[workspace.dependencies]
soroban-sdk = "26.0.0"
stellar-strkey = "0.0.16"
sha3 = "0.10"
k256 = { version = "0.13", default-features = false, features = ["ecdsa", "std"] }
common-message = { path = "contracts/common/message" }
common-guard = { path = "contracts/common/guard" }
common-authorization = { path = "contracts/common/authorization" }
common-error = { path = "contracts/common/error" }
common-interfaces = { path = "contracts/common/interfaces" }
common-signature = { path = "contracts/common/signature" }
common-helpers = { path = "contracts/common/helpers" }
common-pool = { path = "contracts/common/pool" }
fee-quoter = { path = "contracts/fee-quoter" }
onramp = { path = "contracts/onramp" }
rmn_proxy = { path = "contracts/rmn_proxy" }
rmn_remote = { path = "contracts/rmn_remote" }
router = { path = "contracts/router" }
ccip-ramp-registry = { path = "contracts/ccip-ramp-registry" }
ccvs-versioned-verifier-resolver = { path = "contracts/ccvs/versioned-verifier-resolver" }
[profile.release]
opt-level = "z"
overflow-checks = true
debug = 0
strip = "symbols"
debug-assertions = false
panic = "abort"
codegen-units = 1
lto = "thin"
# 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