wasmer/lib/runtime-abi
Brandon Fish 85158ac22a Add some initial deny for unused_imports and unused_variables
Additional unused variable fix on unix

Remove unused import on unix

Remove unused windows import
2019-05-11 09:23:25 -05:00
..
src Add some initial deny for unused_imports and unused_variables 2019-05-11 09:23:25 -05:00
Cargo.toml update version number to 0.4.1 2019-05-06 18:02:39 -07:00
README.md switch to zbox 2019-03-13 14:23:55 -07:00

runtime-abi

This crate has ABI functions (like syscalls) and extensions to the runtime for enabling ABIs (e.g. virtual filesystem).

Virtual Filesystem (experimental)

The virtual filesystem allows the runtime to read bundled wasm data as if they were files. Data that is stored in a custom section compressed with zstd compression and archived with tar will be exposed as files and mounted in the / root.

The only current supported operation is the read syscall.

The virtual filesystem is not enabled by default. Build with --features vfs to use it.

Zbox is a virtual filesystem that depends on libsodium. See installation instructions for libsodium here. One can statically link libsodium with the instructions on Zbox's readme.