2018-10-11 19:29:36 +00:00
|
|
|
[package]
|
|
|
|
name = "wasmer"
|
2019-07-05 20:35:55 +00:00
|
|
|
version = "0.5.4"
|
2019-01-18 00:19:31 +00:00
|
|
|
authors = ["The Wasmer Engineering Team <engineering@wasmer.io>"]
|
2018-12-10 23:31:08 +00:00
|
|
|
edition = "2018"
|
2018-11-22 06:15:13 +00:00
|
|
|
repository = "https://github.com/wasmerio/wasmer"
|
2018-10-24 10:56:30 +00:00
|
|
|
publish = true
|
2018-10-24 11:01:23 +00:00
|
|
|
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",
|
2018-12-14 02:00:11 +00:00
|
|
|
"/README.md",
|
2018-10-24 10:54:45 +00:00
|
|
|
"rustfmt.toml"
|
|
|
|
]
|
2018-10-11 19:29:36 +00:00
|
|
|
|
|
|
|
[dependencies]
|
2019-05-05 16:32:35 +00:00
|
|
|
byteorder = "1.3.1"
|
2019-03-23 07:27:55 +00:00
|
|
|
errno = "0.2.4"
|
2018-10-11 19:29:36 +00:00
|
|
|
structopt = "0.2.11"
|
2019-07-10 17:55:10 +00:00
|
|
|
wabt = "0.8.0"
|
2019-03-26 23:41:40 +00:00
|
|
|
hashbrown = "0.1.8"
|
2019-01-09 06:49:11 +00:00
|
|
|
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" }
|
2019-01-09 06:49:11 +00:00
|
|
|
wasmer-runtime = { path = "lib/runtime" }
|
2019-05-24 18:00:57 +00:00
|
|
|
# wasmer-runtime-abi = { path = "lib/runtime-abi", optional = true }
|
2019-01-22 19:02:06 +00:00
|
|
|
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 }
|
2019-05-15 13:43:19 +00:00
|
|
|
wasmer-kernel-loader = { path = "lib/kernel-loader", optional = true }
|
2019-05-17 22:48:30 +00:00
|
|
|
wasmer-dev-utils = { path = "lib/dev-utils", optional = true }
|
2019-07-09 18:58:03 +00:00
|
|
|
wasmer-wasi-tests = { path = "lib/wasi-tests", optional = true }
|
2019-07-09 19:07:05 +00:00
|
|
|
wasmer-emscripten-tests = { path = "lib/emscripten-tests", 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",
|
2019-07-09 18:58:03 +00:00
|
|
|
"lib/wasi-tests",
|
2019-07-09 19:07:05 +00:00
|
|
|
"lib/emscripten-tests",
|
2019-05-24 18:00:57 +00:00
|
|
|
"examples/plugin-for-example"
|
|
|
|
]
|
2019-01-10 02:06:33 +00:00
|
|
|
|
2018-10-18 23:29:12 +00:00
|
|
|
[build-dependencies]
|
2019-07-10 17:55:10 +00:00
|
|
|
wabt = "0.8.0"
|
2018-12-27 07:43:38 +00:00
|
|
|
glob = "0.2.11"
|
2019-04-11 22:31:02 +00:00
|
|
|
rustc_version = "0.2.3"
|
2018-10-16 09:18:58 +00:00
|
|
|
|
2018-10-15 00:48:59 +00:00
|
|
|
[features]
|
2019-04-11 22:31:02 +00:00
|
|
|
default = ["fast-tests", "wasi"]
|
2019-05-15 14:17:31 +00:00
|
|
|
"loader:kernel" = ["wasmer-kernel-loader"]
|
2019-05-05 18:21:28 +00:00
|
|
|
debug = ["wasmer-runtime-core/debug"]
|
2019-05-15 18:46:17 +00:00
|
|
|
trace = ["wasmer-runtime-core/trace"]
|
2019-05-05 19:17:10 +00:00
|
|
|
extra-debug = ["wasmer-clif-backend/debug", "wasmer-runtime-core/debug"]
|
2018-10-30 16:35:11 +00:00
|
|
|
# This feature will allow cargo test to run much faster
|
|
|
|
fast-tests = []
|
2019-07-09 00:05:54 +00:00
|
|
|
"backend:llvm" = ["wasmer-llvm-backend", "wasmer-runtime-core/backend:llvm"]
|
|
|
|
"backend:singlepass" = ["wasmer-singlepass-backend", "wasmer-runtime-core/backend:singlepass"]
|
2019-03-29 18:07:57 +00:00
|
|
|
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"]
|