-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathCargo.toml
56 lines (52 loc) · 1.3 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
[workspace]
resolver = "2"
default-members = ["libtallyvm"]
members = ["libtallyvm", "runtime/core", "runtime/sdk", "xtask"]
[workspace.package]
rust-version = "1.77.0"
version = "2.2.0"
[profile.dev]
codegen-units = 512
opt-level = 1
[profile.release]
codegen-units = 1
incremental = true
lto = "thin"
panic = "abort"
strip = true
rpath = true
[workspace.dependencies]
anyhow = "1.0"
arbitrary = { version = "1.4", features = ["derive"] }
cbindgen = "0.26"
hex = "0.4"
home = "0.5.5"
k256 = "0.13.3"
lazy_static = "1.4"
parking_lot = "0.12"
paste = "1.0"
rand = "0.8"
seda-runtime-sdk = { path = "./runtime/sdk" }
seda-wasm-vm = { path = "./runtime/core" }
serde = { version = "1.0", default-features = false, features = ["derive"] }
serde_json = { version = "1.0", default-features = false }
sha3 = "0.10.8"
tempdir = "0.3"
thiserror = "1.0"
tokio = { version = "1.21", default-features = false }
tracing = { version = "0.1", features = ["log-always"] }
tracing-subscriber = "0.3"
tracing-appender = "0.2"
url = { version = "2.3", default-features = false }
wasmer = { version = "4.3.7", default-features = false }
wasmer-middlewares = "4.3.7"
wasmer-wasix = { version = "0.27", default-features = false, features = [
"sys",
"logging",
"host-fs",
"sys-thread",
"sys-poll",
"host-threads",
] }
which = "7.0"
xshell = "0.2"