wasmer/Cargo.toml

98 lines
2.7 KiB
TOML
Raw Normal View History

[package]
name = "wasmer"
2019-07-31 10:28:45 -07:00
version = "0.6.0"
authors = ["The Wasmer Engineering Team <engineering@wasmer.io>"]
edition = "2018"
repository = "https://github.com/wasmerio/wasmer"
2018-10-24 12:56:30 +02:00
publish = true
description = "High-Performance WebAssembly JIT interpreter"
license = "MIT"
2018-10-24 12:54:45 +02:00
include = [
"examples/**/*",
"src/**/*",
"Cargo.lock",
"Cargo.toml",
"LICENSE",
"Makefile",
"/README.md",
2018-10-24 12:54:45 +02:00
"rustfmt.toml"
]
[dependencies]
2019-07-31 23:03:52 -07:00
byteorder = "1.3.2"
errno = "0.2.4"
2019-07-31 23:03:52 -07:00
structopt = "0.2.18"
wabt = "0.9.1"
wasmer-clif-backend = { path = "lib/clif-backend" }
2019-04-11 12:44:03 -07:00
wasmer-singlepass-backend = { path = "lib/singlepass-backend", optional = true }
2019-04-28 12:55:07 +08:00
wasmer-middleware-common = { path = "lib/middleware-common" }
wasmer-runtime = { path = "lib/runtime" }
2019-05-24 11:00:57 -07:00
# wasmer-runtime-abi = { path = "lib/runtime-abi", optional = true }
wasmer-runtime-core = { path = "lib/runtime-core" }
2019-01-10 21:37:59 -08:00
wasmer-emscripten = { path = "lib/emscripten" }
2019-03-11 09:57:06 -07:00
wasmer-llvm-backend = { path = "lib/llvm-backend", optional = true }
2019-03-28 12:19:23 -07:00
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 }
2019-07-09 11:58:03 -07:00
wasmer-wasi-tests = { path = "lib/wasi-tests", optional = true }
wasmer-emscripten-tests = { path = "lib/emscripten-tests", optional = true }
2019-03-07 18:26:29 -08:00
2019-01-09 20:06:33 -06:00
[workspace]
2019-05-24 11:00:57 -07:00
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",
2019-07-09 11:58:03 -07:00
"lib/wasi-tests",
"lib/emscripten-tests",
2019-05-24 11:00:57 -07:00
"examples/plugin-for-example"
]
2019-01-09 20:06:33 -06:00
[build-dependencies]
wabt = "0.9.1"
2019-07-31 23:21:56 -07:00
glob = "0.3.0"
rustc_version = "0.2.3"
2018-10-16 11:18:58 +02:00
2018-10-15 02:48:59 +02:00
[features]
default = ["fast-tests", "wasi", "backend-cranelift"]
"loader-kernel" = ["wasmer-kernel-loader"]
2019-05-05 11:21:28 -07:00
debug = ["wasmer-runtime-core/debug"]
trace = ["wasmer-runtime-core/trace"]
2019-05-05 12:17:10 -07:00
extra-debug = ["wasmer-clif-backend/debug", "wasmer-runtime-core/debug"]
# This feature will allow cargo test to run much faster
fast-tests = []
2019-07-30 15:59:21 +09:00
backend-cranelift = [
"wasmer-runtime-core/backend-cranelift",
"wasmer-runtime/cranelift",
"wasmer-middleware-common/clif"
]
backend-llvm = [
"wasmer-llvm-backend",
"wasmer-runtime-core/backend-llvm",
"wasmer-runtime/llvm",
"wasmer-middleware-common/llvm"
]
backend-singlepass = [
"wasmer-singlepass-backend",
"wasmer-runtime-core/backend-singlepass",
"wasmer-runtime/singlepass",
"wasmer-middleware-common/singlepass"
]
wasi = ["wasmer-wasi"]
2019-05-24 11:00:57 -07:00
# vfs = ["wasmer-runtime-abi"]
2019-04-26 18:45:18 -07:00
[[example]]
name = "plugin"
2019-04-29 08:09:42 -07:00
crate-type = ["bin"]