Files
wasmtime/crates/test-programs/Cargo.toml
Roman Volosatovs 95c74ef246 feat: rely on tracing-subscriber in tests (#4950)
`tracing` crate is already used within the codebase, this change allows
developers to benefit from that functionality when running and debugging
tests

Signed-off-by: Roman Volosatovs <rvolosatovs@riseup.net>

Signed-off-by: Roman Volosatovs <rvolosatovs@riseup.net>
2022-09-23 22:10:00 +00:00

29 lines
821 B
TOML

[package]
name = "test-programs"
version = "0.19.0"
authors = ["The Wasmtime Project Developers"]
readme = "README.md"
edition = "2021"
publish = false
license = "Apache-2.0 WITH LLVM-exception"
[build-dependencies]
cfg-if = "1.0"
[dev-dependencies]
wasi-common = { path = "../wasi-common", version = "2.0.0" }
wasi-cap-std-sync = { path = "../wasi-common/cap-std-sync", version = "2.0.0" }
wasmtime = { path = "../wasmtime", version = "2.0.0" }
wasmtime-wasi = { path = "../wasi", version = "2.0.0", features = ["tokio"] }
target-lexicon = "0.12.0"
tracing-subscriber = { version = "0.3.1", default-features = false, features = ['fmt'] }
tempfile = "3.1.0"
os_pipe = "0.9"
anyhow = "1.0.19"
wat = "1.0.47"
cap-std = "0.26.0"
tokio = { version = "1.8.0", features = ["rt-multi-thread"] }
[features]
test_programs = []