-
Notifications
You must be signed in to change notification settings - Fork 28
/
Copy pathCargo.toml
66 lines (61 loc) · 1.8 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
[package]
name = "homestar-wasm"
version = { workspace = true }
description = "Homestar Wasm / Wasmtime implementation and IPLD <=> WIT interpreter"
keywords = ["wasm", "wasmtime", "wit", "ipld", "ipvm"]
categories = ["wasm", "execution-engines"]
license = { workspace = true }
readme = "README.md"
edition = { workspace = true }
rust-version = { workspace = true }
documentation = "https://docs.rs/homestar-wasm"
repository = { workspace = true }
authors = { workspace = true }
[lib]
path = "src/lib.rs"
bench = false
doctest = true
[dependencies]
# return to version.workspace = true after the following issue is fixed:
# https://github.com/DevinR528/cargo-sort/issues/47
anyhow = { workspace = true }
async-trait = { workspace = true }
atomic_refcell = { workspace = true }
enum-as-inner = { workspace = true }
heck = "0.4"
homestar-core = { version = "0.1", path = "../homestar-core" }
itertools = { workspace = true }
libipld = { workspace = true }
rust_decimal = { version = "1.32", default-features = false }
serde = { workspace = true }
stacker = "0.1"
thiserror = { workspace = true }
tracing = { workspace = true }
wasi-common = { version = "11.0", default-features = false }
wasmparser = "0.115"
wasmtime = { version = "13.0", default-features = false, features = [
"async",
"component-model",
"cranelift",
"parallel-compilation",
"pooling-allocator",
"vtune",
"wat",
] }
wasmtime-component-util = "13.0"
wasmtime-wasi = { version = "11.0", default-features = false, features = [
"tokio",
] }
wat = "1.0"
wit-component = "0.14"
[dev-dependencies]
criterion = "0.5"
serde_ipld_dagcbor = { workspace = true }
tokio = { workspace = true }
[features]
default = ["wasmtime/default"]
dev = []
[package.metadata.docs.rs]
all-features = true
# defines the configuration attribute `docsrs`
rustdoc-args = ["--cfg", "docsrs"]