forked from TENK-DAO/smartdeploy
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
59 lines (54 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
47
48
49
50
51
52
53
54
55
56
57
58
59
[workspace]
resolver = "2"
members = [
"crates/*",
"contracts/*",
"examples/increment",
"examples/errors",
"examples/cross_contract/*",
"examples/increment-init"
]
exclude = [
# "crates/smartdeploy-macros",
# "crates/smartdeploy-sdk",
"contracts/*",
"examples/increment",
"examples/errors",
"examples/cross_contract/*",
]
[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]
smartdeploy-sdk = { path = "./crates/smartdeploy-sdk" }
smartdeploy-macros = { path = "./crates/smartdeploy-macros" }
# loam-sdk = { path = "../../loam/crates/loam-sdk" }
# loam-sdk-core-riff = { path = "../../loam/crates/loam-core" }
loam-sdk-core-riff = "0.6.5"
loam-sdk = "0.6.5"
clap = { version = "4.1.8", features = [
"derive",
"env",
"deprecated",
"string",
] }
thiserror = "1.0.31"
serde = "1.0.82"
serde_derive = "1.0.82"
serde_json = "1.0.82"
serde-aux = "4.1.2"
hex = "0.4.3"
num-bigint = "0.4"
tokio = { version = "1", features = ["full"] }
soroban-cli = "20.2.0"
tracing = "0.1.37"
tracing-subscriber = "0.3.17"