You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
Alex Crichton cd8cc4d375
Enable multi-value in the Python extension (#541)
5 years ago
.dependabot Add dependabot configuration 5 years ago
.github Move top-level `installer` directory to `ci` (#527) 5 years ago
ci Move top-level `installer` directory to `ci` (#527) 5 years ago
crates Enable multi-value in the Python extension (#541) 5 years ago
docs rustfmt and trim trailing whitespace. 5 years ago
fuzz Remove unneeded `extern crate`, `macro_use`, and tidy `use`s. 5 years ago
scripts Update publish-all.sh for new paths. 5 years ago
src Remove unneeded `extern crate`, `macro_use`, and tidy `use`s. 5 years ago
tests Remove unneeded `extern crate`, `macro_use`, and tidy `use`s. 5 years ago
.gitignore Add book documentation skeleton and auto-publish from CI (#435) 5 years ago
.gitmodules Reorganize tests. 5 years ago
.rustfmt.toml Convert a CRLF file. 5 years ago
CODE_OF_CONDUCT.md Add a CODE_OF_CONDUCT.nd and CONTRIBUTING.md. 6 years ago
CONTRIBUTING.md Add a CODE_OF_CONDUCT.nd and CONTRIBUTING.md. 6 years ago
Cargo.toml Use the more-asserts crate in more places. 5 years ago
LICENSE Adjust whitespace to match the upstream exception text. 6 years ago
README.md Merge pull request #512 from sunfishcode/reorg 5 years ago
build.rs Reformat some long lines and macros. 5 years ago
clippy.toml General Cargo.toml cleanup. (#529) 5 years ago

README.md

Wasmtime: a WebAssembly Runtime.

Wasmtime is a standalone wasm-only optimizing runtime for WebAssembly and WASI. It runs WebAssembly code outside of the Web, and can be used both as a command-line utility or as a library embedded in a larger application.

To get started, visit wasmtime.dev.

build-status gitter-chat-badge minimum-rustc

There are Rust, C, and C++ toolchains that can compile programs with WASI. See the WASI intro for more information, and the WASI tutorial for a tutorial on compiling and running programs using WASI and wasmtime, as well as an overview of the filesystem sandboxing system.

Wasmtime passes the WebAssembly spec testsuite. To run it, update the tests/spec_testsuite submodule with git submodule update --remote, and it will be run as part of cargo test.

Wasmtime does not yet implement Spectre mitigations, however this is a subject of ongoing research.

Additional goals for Wasmtime include:

  • Support a variety of host APIs (not just WASI), with fast calling sequences, and develop proposals for additional API modules to be part of WASI.
  • Facilitate development and testing around the Cranelift and Lightbeam JITs, and other WebAssembly execution strategies.
  • Develop a native ABI used for compiling WebAssembly suitable for use in both JIT and AOT to native object files.

Including Wasmtime in your project

Wasmtime exposes an API for embedding as a library through the wasmtime subcrate, which contains both a high-level and safe Rust API, as well as a C-compatible API compatible with the proposed WebAssembly C API.

For more information, see the Rust API embedding chapter of the Wasmtime documentation.

It's Wasmtime.