wasmer/lib/runtime-abi
2019-03-12 13:36:11 -07:00
..
src fix typos in vfs tests 2019-03-12 12:01:45 -07:00
Cargo.toml remove feature flag on custom sections 2019-03-12 13:36:11 -07:00
README.md add readme for runtime abi 2019-03-12 10:57:47 -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.