* Add release notes for 3.0.1 * Update some version directives for crates in Wasmtime * Mark anything with `publish = false` as version 0.0.0 * Mark the icache coherence crate with the same version as Wasmtime * Fix manifest directives
29 lines
769 B
TOML
29 lines
769 B
TOML
[package]
|
|
name = "test-programs"
|
|
version = "0.0.0"
|
|
authors = ["The Wasmtime Project Developers"]
|
|
readme = "README.md"
|
|
edition.workspace = true
|
|
publish = false
|
|
license = "Apache-2.0 WITH LLVM-exception"
|
|
|
|
[build-dependencies]
|
|
cfg-if = "1.0"
|
|
|
|
[dev-dependencies]
|
|
wasi-common = { workspace = true }
|
|
wasi-cap-std-sync = { workspace = true }
|
|
wasmtime = { workspace = true }
|
|
wasmtime-wasi = { workspace = true, features = ["tokio"] }
|
|
target-lexicon = { workspace = true }
|
|
tracing-subscriber = { version = "0.3.1", default-features = false, features = ['fmt'] }
|
|
tempfile = "3.1.0"
|
|
os_pipe = "0.9"
|
|
anyhow = { workspace = true }
|
|
wat = { workspace = true }
|
|
cap-std = { workspace = true }
|
|
tokio = { version = "1.8.0", features = ["rt-multi-thread"] }
|
|
|
|
[features]
|
|
test_programs = []
|