-
Notifications
You must be signed in to change notification settings - Fork 2
/
Cargo.toml
80 lines (71 loc) · 2.47 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
74
75
76
77
78
79
80
[package]
name = "west"
version = "0.1.4"
description = "WebAssembly component test runtime"
authors.workspace = true
categories.workspace = true
edition.workspace = true
license.workspace = true
repository.workspace = true
exclude = [
"*.a",
"*.go",
"*.h",
"*.s",
"*.wasm",
".github",
".gitignore",
"examples",
"flake.*",
"go.*",
"rust-toolchain.toml",
"tests",
]
[workspace]
members = ["crates/*", "tests/components/*"]
[workspace.package]
authors = ["Roman Volosatovs <[email protected]>"]
categories = ["wasm"]
edition = "2021"
homepage = "https://github.com/rvolosatovs/west"
license = "Apache-2.0 WITH LLVM-exception"
repository = "https://github.com/rvolosatovs/west"
[profile.release.package.west-passthrough]
opt-level = 's'
strip = true
[profile.release.package.west-sys]
opt-level = 's'
strip = true
[profile.release]
lto = true
[dependencies]
anyhow = { workspace = true }
http = { workspace = true }
tokio = { workspace = true }
tracing = { workspace = true }
wasi-preview1-component-adapter-provider = { workspace = true }
wasmparser = { workspace = true }
wasmtime = { workspace = true, features = ["cranelift", "gc"] }
wasmtime-wasi = { workspace = true }
wasmtime-wasi-http = { workspace = true }
wit-component = { workspace = true }
[workspace.dependencies]
anyhow = { version = "1", default-features = false }
cbindgen = { version = "0.27", default-features = false }
http = { version = "1", default-features = false }
tokio = { version = "1", default-features = false }
tracing = { version = "0.1", default-features = false }
tracing-subscriber = { version = "0.3", default-features = false }
wasi-passthrough = { version = "0.3.2", default-features = false }
wasi-passthrough-ext = { version = "0.1.4", default-features = false }
wasi-passthrough-keyvalue = { version = "0.1.1", default-features = false }
wasi-passthrough-logging = { version = "0.1.1", default-features = false }
wasi-preview1-component-adapter-provider = { version = "24", default-features = false }
wasmparser = { version = "0.217", default-features = false }
wasmtime = { version = "24", default-features = false }
wasmtime-cabish = { version = "0.1.2", default-features = false }
wasmtime-wasi = { version = "24", default-features = false }
wasmtime-wasi-http = { version = "24", default-features = false }
west = { version = "0.1.3", path = "." }
wit-bindgen = { version = "0.32", default-features = false }
wit-component = { version = "0.217", default-features = false }