test-programs: test wasi-tokio

This commit is contained in:
Pat Hickey
2021-04-19 16:00:27 -07:00
parent 675b579361
commit 8667d8c244
4 changed files with 149 additions and 3 deletions

View File

@@ -14,7 +14,7 @@ cfg-if = "1.0"
wasi-common = { path = "../wasi-common", version = "0.26.0" }
wasi-cap-std-sync = { path = "../wasi-common/cap-std-sync", version = "0.26.0" }
wasmtime = { path = "../wasmtime", version = "0.26.0" }
wasmtime-wasi = { path = "../wasi", version = "0.26.0" }
wasmtime-wasi = { path = "../wasi", version = "0.26.0", features = ["tokio"] }
target-lexicon = "0.12.0"
pretty_env_logger = "0.4.0"
tempfile = "3.1.0"
@@ -22,6 +22,7 @@ os_pipe = "0.9"
anyhow = "1.0.19"
wat = "1.0.37"
cap-std = "0.13"
tokio = { version = "1.5.0", features = ["rt-multi-thread"] }
[features]
test_programs = []