forked from stellar/soroban-examples
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Cargo.toml
57 lines (50 loc) · 1.37 KB
/
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
51
52
53
54
55
56
57
[workspace]
resolver = "2"
members = [
"hello_world",
"increment",
"auth",
"custom_types",
"cross_contract/contract_a",
"cross_contract/contract_b",
"deployer/contract",
"deployer/deployer",
"liquidity_pool",
"single_offer",
"events",
"token",
"logging",
"errors",
"timelock",
"atomic_swap",
"atomic_multiswap",
"account",
"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.7.0"
git = "https://github.com/stellar/rs-soroban-sdk"
rev = "8abd3353c728f09ee1c8a2544f67a853e915afc2"
[workspace.dependencies.soroban-auth]
version = "0.7.0"
git = "https://github.com/stellar/rs-soroban-sdk"
rev = "8abd3353c728f09ee1c8a2544f67a853e915afc2"
# [patch."https://github.com/stellar/rs-soroban-sdk"]
# soroban-sdk = { path = "../rs-soroban-sdk/soroban-sdk" }
# soroban-auth = { path = "../rs-soroban-sdk/soroban-auth" }
# [patch."https://github.com/stellar/rs-soroban-env"]
# soroban-env-common = { path = "../rs-soroban-env/soroban-env-common" }
# soroban-env-guest = { path = "../rs-soroban-env/soroban-env-guest" }
# soroban-env-host = { path = "../rs-soroban-env/soroban-env-host/" }