wasmer-engine-dummy 1.0.0-alpha01.0

Wasmer placeholder engine
Documentation
[package]
name = "wasmer-engine-dummy"
version = "1.0.0-alpha01.0"
authors = ["Wasmer Engineering Team <engineering@wasmer.io>"]
description = "Wasmer placeholder engine"
license = "MIT"
edition = "2018"

[dependencies]
wasmer-types = { path = "../../../lib/wasmer-types", version = "1.0.0-alpha01.0" }
wasmer-compiler = { path = "../../../lib/compiler", version = "1.0.0-alpha01.0" }
wasmer-vm = { path = "../../../lib/vm", version = "1.0.0-alpha01.0" }
wasmer-engine = { path = "../../../lib/engine", version = "1.0.0-alpha01.0" }
serde = { version = "1.0", features = ["derive", "rc"], optional = true }
serde_bytes = { version = "0.11", optional = true }
bincode = { version = "1.2", optional = true }

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

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