1
0
mirror of https://github.com/fluencelabs/wasmer synced 2025-06-14 17:31:20 +00:00
Files
.azure
.github
assets
benches
ci
examples
fuzz
lib
api
clif-backend
emscripten
interface-types
kernel-loader
kernel-net
llvm-backend
middleware-common
runtime
runtime-c-api
runtime-core
src
Cargo.toml
README.md
build.rs
image-loading-freebsd-x86-64.s
image-loading-linux-x86-64.s
image-loading-macos-x86-64.s
singlepass-backend
wasi
wasi-experimental-io-devices
win-exception-handler
.gitignore
README.md
scripts
src
tests
.gitattributes
.gitignore
ATTRIBUTIONS.md
CHANGELOG.md
CODE_OF_CONDUCT.md
CONTRIBUTING.md
Cargo.lock
Cargo.toml
LICENSE
Makefile
README.md
SECURITY.md
azure-pipelines.yml
bors.toml
build.rs
rustfmt.toml
wasmer/lib/runtime-core/README.md

33 lines
1.4 KiB
Markdown
Raw Normal View History

2019-03-29 10:17:24 +01:00
<p align="center">
<a href="https://wasmer.io" target="_blank" rel="noopener noreferrer">
2020-02-21 13:39:43 +01:00
<img width="300" src="https://raw.githubusercontent.com/wasmerio/wasmer/master/assets/logo.png" alt="Wasmer logo">
2019-03-29 10:17:24 +01:00
</a>
</p>
<p align="center">
<a href="https://dev.azure.com/wasmerio/wasmer/_build/latest?definitionId=3&branchName=master">
<img src="https://img.shields.io/azure-devops/build/wasmerio/wasmer/3.svg?style=flat-square" alt="Build Status">
2019-03-29 10:17:24 +01:00
</a>
<a href="https://github.com/wasmerio/wasmer/blob/master/LICENSE">
<img src="https://img.shields.io/github/license/wasmerio/wasmer.svg?style=flat-square" alt="License">
2019-03-29 10:17:24 +01:00
</a>
<a href="https://spectrum.chat/wasmer">
<img src="https://withspectrum.github.io/badge/badge.svg" alt="Join the Wasmer Community">
</a>
<a href="https://crates.io/crates/wasmer-runtime-core">
<img src="https://img.shields.io/crates/d/wasmer-runtime-core.svg?style=flat-square" alt="Number of downloads from crates.io">
2019-03-29 10:17:24 +01:00
</a>
<a href="https://docs.rs/wasmer-runtime-core">
<img src="https://docs.rs/wasmer-runtime-core/badge.svg" alt="Read our API documentation">
</a>
</p>
# Wasmer Runtime Core
Wasmer is a standalone JIT WebAssembly runtime, aiming to be fully
compatible with WASI, Emscripten, Rust and Go. [Learn
2019-03-29 10:17:24 +01:00
more](https://github.com/wasmerio/wasmer).
This crate represents the core of the runtime. Consider
[`wasmer-runtime`] for higher level APIs.