-
Notifications
You must be signed in to change notification settings - Fork 24
/
Cargo.toml
73 lines (66 loc) · 2.03 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
67
68
69
70
71
72
73
[package]
name = "homestar-wasm"
version = { workspace = true }
description = "Homestar Wasm / Wasmtime implementation and IPLD <=> WIT interpreter"
keywords = ["ipld", "ipvm", "wasm", "wasmtime", "wit"]
categories = { workspace = true }
license = { workspace = true }
readme = "README.md"
edition = { workspace = true }
rust-version = { workspace = true }
documentation = "https://docs.rs/homestar-wasm"
repository = "https://github.com/ipvm-wg/homestar/tree/main/homestar-wasm"
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-invocation = { version = "0.3", path = "../homestar-invocation" }
homestar-workspace-hack = { workspace = true }
indexmap = { workspace = true }
itertools = { workspace = true }
libipld = { workspace = true }
rust_decimal = { version = "1.33", default-features = false }
serde = { workspace = true }
stacker = "0.1"
thiserror = { workspace = true }
tracing = { workspace = true }
wasmparser = "0.200"
wasmtime = { version = "18.0", default-features = false, features = [
"async",
"component-model",
"cranelift",
"parallel-compilation",
"pooling-allocator",
"wat",
] }
wasmtime-component-util = "18.0"
wasmtime-wasi = { version = "18.0", default-features = false, features = [
"tokio",
"preview1-on-preview2",
] }
wat = "1.200"
wit-component = "0.200"
[dev-dependencies]
criterion = "0.5"
serde_json = { workspace = true }
tokio = { workspace = true }
[features]
default = ["wasmtime/default"]
test-utils = []
[package.metadata.docs.rs]
all-features = true
# defines the configuration attribute `docsrs`
rustdoc-args = ["--cfg", "docsrs"]
[package.metadata.cargo-machete]
ignored = ["homestar-workspace-hack"]
[package.metadata.cargo-udeps.ignore]
normal = ["homestar-workspace-hack"]