forked from stellar/rs-soroban-env
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
46 lines (38 loc) · 1.24 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
[workspace]
resolver = "2"
members = [
"soroban-env-host",
"soroban-env-guest",
"soroban-env-common",
"soroban-env-common/tests/no_std",
"soroban-env-macros",
"soroban-native-sdk-macros",
"soroban-test-wasms",
"soroban-synth-wasm"
]
exclude = ["soroban-test-wasms/wasm-workspace"]
[workspace.package]
version = "0.0.9"
[workspace.dependencies]
soroban-env-common = { version = "0.0.9", path = "soroban-env-common" }
soroban-env-guest = { version = "0.0.9", path = "soroban-env-guest" }
soroban-env-host = { version = "0.0.9", path = "soroban-env-host" }
soroban-env-macros = { version = "0.0.9", path = "soroban-env-macros" }
soroban-native-sdk-macros = { version = "0.0.9", path = "soroban-native-sdk-macros" }
[workspace.dependencies.stellar-xdr]
version = "0.0.7"
git = "https://github.com/stellar/rs-stellar-xdr"
rev = "5fd7c7d4"
default-features = false
[workspace.dependencies.wasmi]
package = "soroban-wasmi"
version = "0.16.0-soroban1"
git = "https://github.com/stellar/wasmi"
rev = "d1ec0036"
# [patch."https://github.com/stellar/rs-stellar-xdr"]
# stellar-xdr = { path = "../rs-stellar-xdr/" }
# [patch."https://github.com/stellar/wasmi"]
# wasmi = { path = "../wasmi/" }
[profile.release]
codegen-units = 1
lto = true