[package]
name = "wai-bindgen-wasmer"
description = "Generate WAI glue for a Rust Wasmer host"
version = "0.3.1"
edition = "2018"
categories = ["wasm", "os"]
keywords = ["wasm", "webassembly", "wasi", "sandbox", "ABI"]
authors = ["Wasmer Engineering Team <engineering@wasmer.io>"]
repository = "https://github.com/wasmerio/wasmer"
license = "MIT"
readme = "README.md"
[dependencies]
anyhow = "1.0"
async-trait = { version = "0.1.50", optional = true }
bitflags = "1.2"
once_cell = "1.13"
thiserror = "1.0"
tracing-lib = { version = "0.1.26", optional = true, package = "tracing" }
wai-bindgen-wasmer-impl = { version = "0.2.2" }
wasmer = { version = "=3.2.1", path = "../api", default-features = false }
[features]
tracing = ["tracing-lib", "wai-bindgen-wasmer-impl/tracing"]
async = ["async-trait", "wai-bindgen-wasmer-impl/async"]
js = ["wasmer/js", "wasmer/std"]
sys = ["wasmer/sys"]