-
Notifications
You must be signed in to change notification settings - Fork 844
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
24dbdd3
commit 327a1fe
Showing
8 changed files
with
41 additions
and
32 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
# Wasmer Cache | ||
|
||
The `wasmer-cache` crate allows easily caching WebAssembly | ||
modules in your system. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,10 +1,12 @@ | ||
# Wasmer Runtime | ||
|
||
This is the `wasmer-runtime` crate, which contains wasm runtime library | ||
support, supporting the wasm ABI used by any [`wasmer-compiler`] implementation, | ||
and [`wasmer-jit`]. | ||
support, supporting the wasm ABI used by any [`wasmer-engine`] implementation. | ||
|
||
> Note: this project started as a subfork of [this crate](https://crates.io/crates/wasmtime-runtime). | ||
[`wasmer-engine`]: https://crates.io/crates/wasmer-engine | ||
|
||
[`wasmer-compiler`]: https://crates.io/crates/wasmer-compiler | ||
[`wasmer-jit`]: https://crates.io/crates/wasmer-jit | ||
#### Aknowledgments | ||
|
||
This project borrowed some of the code for the VM structure and trapping from the [wasmtime-runtime](https://crates.io/crates/wasmtime-runtime). | ||
|
||
Please check [Wasmer ATTRIBUTIONS](https://github.com/wasmerio/wasmer/blob/master/ATTRIBUTIONS.md) to further see licenses and other attributions of the project. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,5 @@ | ||
# WASI Framebuffer | ||
|
||
An experimental extension of WASI for basic graphics. | ||
The `wasmer-wasi-experimental-io-devices` crate is experimental extension of WASI for basic graphics. | ||
|
||
This is not part of the WASI standard right now so use at your own risk -- it may break or be removed | ||
|
||
TODO add usage instructions here | ||
Note: I/O devices is not part of the WASI standard yet. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
# Wasmer WASI | ||
|
||
This is the `wasmer-wasi` crate. It provides the necessary | ||
imports to use WASI easily for any Wasmer user. | ||
imports to use WASI easily from Wasmer. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters