forked from stellar/rs-soroban-sdk
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
81 lines (69 loc) · 2.04 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
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
[workspace]
resolver = "2"
members = [
"soroban-sdk",
"soroban-auth",
"soroban-sdk-macros",
"soroban-spec",
"soroban-token-spec",
"tests/empty",
"tests/add_u64",
"tests/add_bigint",
"tests/import_contract",
"tests/invoke_contract",
"tests/udt",
"tests/contract_data",
"tests/events",
"tests/logging",
"tests/errors",
]
[workspace.package]
version = "0.2.1"
[workspace.dependencies]
soroban-sdk = { version = "0.2.1", path = "soroban-sdk" }
soroban-sdk-macros = { version = "0.2.1", path = "soroban-sdk-macros" }
soroban-auth = { version = "0.2.1", path = "soroban-auth" }
soroban-spec = { version = "0.2.1", path = "soroban-spec" }
soroban-token-spec = { version = "0.2.1", path = "soroban-token-spec" }
[workspace.dependencies.soroban-env-common]
version = "0.0.9"
git = "https://github.com/stellar/rs-soroban-env"
rev = "99de1bf0"
[workspace.dependencies.soroban-env-guest]
version = "0.0.9"
git = "https://github.com/stellar/rs-soroban-env"
rev = "99de1bf0"
[workspace.dependencies.soroban-env-host]
version = "0.0.9"
git = "https://github.com/stellar/rs-soroban-env"
rev = "99de1bf0"
[workspace.dependencies.stellar-strkey]
version = "0.0.6"
git = "https://github.com/stellar/rs-stellar-strkey"
rev = "5e582a8b"
[workspace.dependencies.stellar-xdr]
version = "0.0.7"
git = "https://github.com/stellar/rs-stellar-xdr"
rev = "e88f9fa7"
default-features = false
# [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/" }
# [patch."https://github.com/stellar/rs-stellar-xdr"]
# stellar-xdr = { path = "../rs-stellar-xdr/" }
[profile.dev]
overflow-checks = true
panic = "abort"
[profile.release]
opt-level = "z"
overflow-checks = true
debug = 0
strip = "symbols"
debug-assertions = false
panic = "abort"
codegen-units = 1
lto = true
[profile.release-with-logs]
inherits = "release"
debug-assertions = true