-
Notifications
You must be signed in to change notification settings - Fork 67
/
Cargo.toml
74 lines (62 loc) · 2.1 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
[workspace]
resolver = "2"
members = [
"soroban-sdk",
"soroban-sdk-macros",
"soroban-spec",
"soroban-spec-rust",
"soroban-ledger-snapshot",
"soroban-token-sdk",
"tests/*",
]
[workspace.package]
version = "22.0.0-rc.3.1"
rust-version = "1.79.0"
[workspace.dependencies]
soroban-sdk = { version = "22.0.0-rc.3.1", path = "soroban-sdk" }
soroban-sdk-macros = { version = "22.0.0-rc.3.1", path = "soroban-sdk-macros" }
soroban-spec = { version = "22.0.0-rc.3.1", path = "soroban-spec" }
soroban-spec-rust = { version = "22.0.0-rc.3.1", path = "soroban-spec-rust" }
soroban-ledger-snapshot = { version = "22.0.0-rc.3.1", path = "soroban-ledger-snapshot" }
soroban-token-sdk = { version = "22.0.0-rc.3.1", path = "soroban-token-sdk" }
[workspace.dependencies.soroban-env-common]
version = "=22.0.0-rc.3"
git = "https://github.com/stellar/rs-soroban-env"
rev = "bd0c80a1fe171e75f8d745f17975a73927d44ecd"
[workspace.dependencies.soroban-env-guest]
version = "=22.0.0-rc.3"
git = "https://github.com/stellar/rs-soroban-env"
rev = "bd0c80a1fe171e75f8d745f17975a73927d44ecd"
[workspace.dependencies.soroban-env-host]
version = "=22.0.0-rc.3"
git = "https://github.com/stellar/rs-soroban-env"
rev = "bd0c80a1fe171e75f8d745f17975a73927d44ecd"
[workspace.dependencies.stellar-strkey]
version = "=0.0.9"
[workspace.dependencies.stellar-xdr]
version = "=22.0.0-rc.1.1"
default-features = false
features = ["curr"]
#git = "https://github.com/stellar/rs-stellar-xdr"
#rev = "67be5955a15f1d3a4df83fe86e6ae107f687141b"
#[patch.crates-io]
#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