-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
55 lines (46 loc) · 1.09 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
[workspace]
resolver = "2"
members = [
"core",
"examples",
"soroban-events-streaming-node",
"cross-chain-bridge/soroban",
"cross-chain-bridge/ethereum",
"test_contracts/simple_log",
]
[workspace.package]
version = "0.1.0"
[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.9.2"
[workspace.dependencies.bytes]
version = "1"
[workspace.dependencies.soroban-env-host]
version = "0.0.17"
git = "https://github.com/stellar/rs-soroban-env"
rev = "400d806387140553e4e685d232deb3a807ec0e36"
[workspace.dependencies]
stellar-strkey = "0.0.7"
tokio = { version = "1", features = ["full"] }
tokio-test = "0.4.2"
web3 = "0.19.0"
hex-literal = "0.4.1"
futures = "0.3.28"
log = "0.4.19"
env_logger = "0.10.0"
chrono = "0.4.26"
async-trait = "0.1.68"
clap = "4.3.10"
stellar-xdr = { version = "0.0.17" }
soroban-cortex-core = { path = "./core/", default-features = false }