Crates.io | tinywasm |
lib.rs | tinywasm |
version | 0.8.0 |
source | src |
created_at | 2023-12-09 14:11:06.473154 |
updated_at | 2024-08-29 13:24:17.07017 |
description | A tiny WebAssembly interpreter |
homepage | |
repository | https://github.com/explodingcamera/tinywasm |
max_upload_size | |
id | 1063701 |
size | 298,542 |
no_std
, with minimal external dependencies.rkyv
which uses unsafe code can be used for serialization, but is optional).TinyWasm passes all WebAssembly MVP tests from the WebAssembly core testsuite and is able to run most WebAssembly programs. Additionally, the current 2.0 Draft is mostly supported, with the exception of Fixed-Width SIMD and Memory64/Multiple Memories. See the Supported Proposals section for more information.
Legend
🌑 -- not available
🚧 -- in development / partialy supported
🟢 -- fully supported
Proposal | Status | TinyWasm Version |
---|---|---|
Mutable Globals | 🟢 | 0.2.0 |
Non-trapping float-to-int Conversion | 🟢 | 0.2.0 |
Sign-extension operators | 🟢 | 0.2.0 |
Multi-value | 🟢 | 0.2.0 |
Bulk Memory Operations | 🟢 | 0.4.0 |
Reference Types | 🟢 | 0.7.0 |
Multiple Memories | 🟢 | 0.8.0 |
Memory64 | 🚧 | N/A |
Fixed-Width SIMD | 🌑 | N/A |
See the examples directory and documentation for more information on how to use TinyWasm.
For testing purposes, you can also use the tinywasm-cli
tool:
$ cargo install tinywasm-cli
$ tinywasm-cli --help
std
std
and std::io
for parsing from files and streams. This is enabled by default.logging
log
crate. This is enabled by default.parser
tinywasm-parser
crate. This is enabled by default.archive
With all these features disabled, TinyWasm only depends on core
, alloc
,and libm
and can be used in no_std
environments.
Since libm
is not as performant as the compiler's math intrinsics, it is recommended to use the std
feature if possible (at least for now), especially on wasm32 targets.
Big thanks to the authors of the following projects, which have inspired and influenced TinyWasm:
no_std
environmentsI encourage you to check these projects out if you're looking for more mature and feature-complete WebAssembly Runtimes.
Licensed under either of Apache License, Version 2.0 or MIT license at your option.
Unless you explicitly state otherwise, any contribution intentionally submitted for inclusion in TinyWasm by you, as defined in the Apache-2.0 license, shall be dual licensed as above, without any additional terms or conditions.
Note: The GitHub repository contains a Submodule (crates/tinywasm-parser/data
) which is licensed only under the Apache License, Version 2.0. This data is generated from the WebAssembly Specification and is only used for testing purposes and not included in the final binary.