[package] name = "wasmer" version = "0.5.3" authors = ["The Wasmer Engineering Team "] edition = "2018" repository = "https://github.com/wasmerio/wasmer" publish = true description = "High-Performance WebAssembly JIT interpreter" license = "MIT" include = [ "examples/**/*", "src/**/*", "Cargo.lock", "Cargo.toml", "LICENSE", "Makefile", "/README.md", "rustfmt.toml" ] [dependencies] byteorder = "1.3.1" errno = "0.2.4" structopt = "0.2.11" wabt = "0.7.2" hashbrown = "0.1.8" wasmer-clif-backend = { path = "lib/clif-backend" } wasmer-singlepass-backend = { path = "lib/singlepass-backend", optional = true } wasmer-middleware-common = { path = "lib/middleware-common" } wasmer-runtime = { path = "lib/runtime" } # wasmer-runtime-abi = { path = "lib/runtime-abi", optional = true } wasmer-runtime-core = { path = "lib/runtime-core" } wasmer-emscripten = { path = "lib/emscripten" } wasmer-llvm-backend = { path = "lib/llvm-backend", optional = true } wasmer-wasi = { path = "lib/wasi", optional = true } wasmer-kernel-loader = { path = "lib/kernel-loader", optional = true } wasmer-dev-utils = { path = "lib/dev-utils", optional = true } [workspace] members = [ "lib/clif-backend", "lib/singlepass-backend", "lib/runtime", # "lib/runtime-abi", "lib/runtime-core", "lib/emscripten", "lib/spectests", "lib/win-exception-handler", "lib/runtime-c-api", "lib/llvm-backend", "lib/wasi", "lib/middleware-common", "lib/kernel-loader", "lib/kernel-net", "lib/dev-utils", "examples/plugin-for-example" ] [build-dependencies] wabt = "0.7.2" glob = "0.2.11" rustc_version = "0.2.3" [features] default = ["fast-tests", "wasi"] "loader:kernel" = ["wasmer-kernel-loader"] debug = ["wasmer-runtime-core/debug"] trace = ["wasmer-runtime-core/trace"] extra-debug = ["wasmer-clif-backend/debug", "wasmer-runtime-core/debug"] # This feature will allow cargo test to run much faster fast-tests = [] "backend:llvm" = ["wasmer-llvm-backend"] "backend:singlepass" = ["wasmer-singlepass-backend"] wasi = ["wasmer-wasi"] # vfs = ["wasmer-runtime-abi"] [[example]] name = "plugin" crate-type = ["bin"]