-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathCargo.toml
54 lines (48 loc) · 1.45 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
[package]
name = "west"
version = "0.1.0-alpha.1"
description = "WebAssembly component test runtime"
authors.workspace = true
categories.workspace = true
edition.workspace = true
license.workspace = true
repository.workspace = true
[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"
[dependencies]
anyhow = { workspace = true }
http = { workspace = true }
tokio = { workspace = true }
wasi-preview1-component-adapter-provider = { workspace = true }
wasmparser = { workspace = true }
wasmtime = { workspace = true }
wasmtime-wasi = { workspace = true }
wasmtime-wasi-http = { workspace = true }
wit-component = { workspace = true }
[build-dependencies]
anyhow = { workspace = true }
wasi-preview1-component-adapter-provider = { workspace = true }
wit-component = { workspace = true }
[workspace.dependencies]
anyhow = "1"
cbindgen = "0.27"
http = "1"
tokio = "1"
tracing = "0.1"
tracing-subscriber = "0.3"
wasi-preview1-component-adapter-provider = "24"
wasmparser = "0.217"
wasmtime = "24"
wasmtime-wasi = "24"
wasmtime-wasi-http = "24"
west-passthrough = { version = "0.1.0-alpha.1", path = "./crates/passthrough" }
west = { version = "0.1.0-alpha.1", path = "." }
wit-bindgen = "0.32"
wit-component = "0.217"