-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathCargo.toml
46 lines (43 loc) · 1.31 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
[package]
name = "spin-test"
version = "0.1.0"
edition = "2021"
[dependencies]
anyhow = { workspace = true }
clap = { version = "4.5", features = ["derive"] }
env_logger = "0.11"
glob = "0.3"
http-body-util = "0.1.1"
hyper = "1.0"
libtest-mimic = "0.7"
log = "0.4"
owo-colors = { version = "4.0.0", features = ["supports-colors"] }
spin-common = { git = "https://github.com/fermyon/spin" }
spin-componentize = { git = "https://github.com/fermyon/spin" }
spin-http = { git = "https://github.com/fermyon/spin", default-features = false }
spin-manifest = { workspace = true }
temp-dir = "0.1.13"
tokio = "1.0"
toml = { workspace = true }
wac-graph = "0.3"
wasmtime = "22.0"
wasmtime-wasi = "22.0"
wit-component = { workspace = true }
wit-parser = { workspace = true }
[workspace]
members = [
"crates/*",
"examples/test-rs",
"examples/apps/app-rs",
"conformance-tests",
]
[workspace.dependencies]
anyhow = "1.0"
spin-expressions = { git = "https://github.com/fermyon/spin" }
spin-manifest = { git = "https://github.com/fermyon/spin" }
spin-outbound-networking = { git = "https://github.com/fermyon/spin" }
spin-serde = { git = "https://github.com/fermyon/spin" }
toml = { version = "0.8", features = ["preserve_order"] }
wit-bindgen-rt = { version = "0.26", features = ["bitflags"] }
wit-component = "0.211"
wit-parser = "0.211"