wasmer-engine-universal 2.3.0

Wasmer Universal Engine
Documentation
[package]
name = "wasmer-engine-universal"
version = "2.3.0"
description = "Wasmer Universal Engine"
categories = ["wasm"]
keywords = ["wasm", "webassembly", "engine", "universal"]
authors = ["Wasmer Engineering Team <engineering@wasmer.io>"]
repository = "https://github.com/wasmerio/wasmer"
license = "MIT OR Apache-2.0 WITH LLVM-exception "
readme = "README.md"
edition = "2018"

[dependencies]
wasmer-engine-universal-artifact = { path = "../universal-artifact", version = "=2.3.0", features = [
    "compiler",
] }
wasmer-types = { path = "../types", version = "=2.3.0", features = [
    "enable-rkyv",
] }
wasmer-compiler = { path = "../compiler", version = "=2.3.0", features = [
    "translator",
    "enable-rkyv",
] }
wasmer-vm = { path = "../vm", version = "=2.3.0", features = ["enable-rkyv"] }
wasmer-engine = { path = "../engine", version = "=2.3.0" }
# flexbuffers = { path = "../../../flatbuffers/rust/flexbuffers", version = "0.1.0" }
cfg-if = "1.0"
leb128 = "0.2"
rkyv = "0.7.20"
loupe = "0.1"
enumset = "1.0"

[target.'cfg(not(target_arch = "wasm32"))'.dependencies]
region = { version = "3.0" }

[target.'cfg(target_os = "windows")'.dependencies]
winapi = { version = "0.3", features = ["winnt", "impl-default"] }

[features]
# Enable the `compiler` feature if you want the engine to compile
# and not be only on headless mode.
compiler = ["wasmer-compiler/translator"]

[badges]
maintenance = { status = "actively-developed" }