[package] name = "wasmer-runtime" version = "0.2.1" description = "Wasmer runtime library" license = "MIT" authors = ["The Wasmer Engineering Team "] repository = "https://github.com/wasmerio/wasmer" edition = "2018" readme = "README.md" [dependencies] wasmer-dynasm-backend = { path = "../dynasm-backend", optional = true } lazy_static = "1.2.0" memmap = "0.7.0" [dependencies.wasmer-runtime-core] path = "../runtime-core" version = "0.2.1" [dependencies.wasmer-clif-backend] path = "../clif-backend" version = "0.2.0" optional = true [dev-dependencies] tempfile = "3.0.7" criterion = "0.2" wabt = "0.7.4" [target.'cfg(not(windows))'.dependencies.wasmer-llvm-backend] path = "../llvm-backend" optional = true [features] default = ["default-compiler"] default-compiler = ["wasmer-clif-backend"] cache = ["default-compiler"] debug = ["wasmer-clif-backend/debug", "wasmer-runtime-core/debug"] llvm = ["wasmer-llvm-backend"] dynasm = ["wasmer-dynasm-backend"] [[bench]] name = "nginx" harness = false