Add wasi crate

This commit is contained in:
Lachlan Sneff 2019-03-28 11:23:08 -07:00
parent 4bbf9903f3
commit be08154670
3 changed files with 9 additions and 1 deletions

View File

@ -30,7 +30,7 @@ wasmer-llvm-backend = { path = "lib/llvm-backend", optional = true }
wasmer-dynasm-backend = { path = "lib/dynasm-backend", optional = true }
[workspace]
members = ["lib/clif-backend", "lib/dynasm-backend", "lib/runtime", "lib/runtime-core", "lib/emscripten", "lib/spectests", "lib/win-exception-handler", "lib/runtime-c-api", "lib/llvm-backend"]
members = ["lib/clif-backend", "lib/dynasm-backend", "lib/runtime", "lib/runtime-core", "lib/emscripten", "lib/spectests", "lib/win-exception-handler", "lib/runtime-c-api", "lib/llvm-backend", "lib/wasi"]
[build-dependencies]
wabt = "0.7.2"

7
lib/wasi/Cargo.toml Normal file
View File

@ -0,0 +1,7 @@
[package]
name = "wasmer-wasi"
version = "0.1.0"
authors = ["The Wasmer Engineering Team <engineering@wasmer.io>"]
edition = "2018"
[dependencies]

1
lib/wasi/src/lib.rs Normal file
View File

@ -0,0 +1 @@