forked from stellar/soroban-examples
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
50 lines (45 loc) · 949 Bytes
/
Cargo.toml
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
[workspace]
resolver = "2"
members = [
"hello_world",
"increment",
"auth",
"auth_advanced",
"custom_types",
"cross_contract/contract_a",
"cross_contract/contract_b",
"deployer/contract",
"deployer/deployer",
"liquidity_pool",
"liquidity_pool_router",
"single_offer",
"single_offer_xfer_from",
"single_offer_router",
"events",
"timelock",
"token",
"logging",
"errors",
"wallet",
"alloc",
]
[profile.release-with-logs]
inherits = "release"
debug-assertions = true
[profile.release]
opt-level = "z"
overflow-checks = true
debug = 0
strip = "symbols"
debug-assertions = false
panic = "abort"
codegen-units = 1
lto = true
[workspace.dependencies.soroban-sdk]
version = "0.4.2"
git = "https://github.com/stellar/rs-soroban-sdk"
rev = "135c3c8"
[workspace.dependencies.soroban-auth]
version = "0.4.2"
git = "https://github.com/stellar/rs-soroban-sdk"
rev = "135c3c8"