wasi-cap-std-async: exactly like wasi-cap-std-sync but with a different WasiSched

This commit is contained in:
Pat Hickey
2021-04-12 18:56:23 -07:00
parent 22d18ffb0d
commit ac3b456523
4 changed files with 151 additions and 0 deletions

View File

@@ -0,0 +1,18 @@
[package]
name = "wasi-cap-std-async"
version = "0.26.0"
authors = ["The Wasmtime Project Developers"]
description = "WASI implementation in Rust"
license = "Apache-2.0 WITH LLVM-exception"
categories = ["wasm"]
keywords = ["webassembly", "wasm"]
repository = "https://github.com/bytecodealliance/wasmtime"
readme = "README.md"
edition = "2018"
include = ["src/**/*", "LICENSE" ]
[dependencies]
wasi-common = { path = "../", version = "0.26.0" }
wasi-cap-std-sync = { path = "../cap-std-sync", version = "0.26.0" }
wiggle = { path = "../../wiggle", version = "0.26.0" }
tokio = { version = "1.5.0", features = [ "rt", "time" ] }