wasmer/Cargo.toml

80 lines
2.1 KiB
TOML
Raw Normal View History

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