2018-10-11 21:29:36 +02:00
|
|
|
[package]
|
|
|
|
name = "wasmer"
|
2019-02-27 17:20:49 -08:00
|
|
|
version = "0.2.1"
|
2019-01-17 16:19:31 -08:00
|
|
|
authors = ["The Wasmer Engineering Team <engineering@wasmer.io>"]
|
2018-12-10 18:31:08 -05:00
|
|
|
edition = "2018"
|
2018-11-21 22:15:13 -08:00
|
|
|
repository = "https://github.com/wasmerio/wasmer"
|
2018-10-24 12:56:30 +02:00
|
|
|
publish = true
|
2018-10-24 13:01:23 +02:00
|
|
|
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",
|
2018-12-13 20:00:11 -06:00
|
|
|
"/README.md",
|
2018-10-24 12:54:45 +02:00
|
|
|
"rustfmt.toml"
|
|
|
|
]
|
2018-10-11 21:29:36 +02:00
|
|
|
|
|
|
|
[dependencies]
|
|
|
|
structopt = "0.2.11"
|
2018-12-16 11:27:45 -08:00
|
|
|
wabt = "0.7.2"
|
2019-01-09 00:49:11 -06:00
|
|
|
wasmer-clif-backend = { path = "lib/clif-backend" }
|
|
|
|
wasmer-runtime = { path = "lib/runtime" }
|
2019-01-22 13:02:06 -06:00
|
|
|
wasmer-runtime-core = { path = "lib/runtime-core" }
|
2019-01-10 21:37:59 -08:00
|
|
|
wasmer-emscripten = { path = "lib/emscripten" }
|
2019-03-12 10:39:48 -07:00
|
|
|
wasmer-runtime-abi = { path = "lib/runtime-abi", optional = true }
|
2018-10-15 02:48:59 +02:00
|
|
|
|
2019-03-07 18:26:29 -08:00
|
|
|
[target.'cfg(not(windows))'.dependencies]
|
2019-03-11 09:57:06 -07:00
|
|
|
wasmer-llvm-backend = { path = "lib/llvm-backend", optional = true }
|
2019-03-07 18:26:29 -08:00
|
|
|
|
2019-01-09 20:06:33 -06:00
|
|
|
[workspace]
|
2019-03-12 10:39:48 -07:00
|
|
|
members = ["lib/clif-backend", "lib/runtime", "lib/runtime-core", "lib/emscripten", "lib/spectests", "lib/win-exception-handler", "lib/runtime-c-api", "lib/llvm-backend", "lib/runtime-abi"]
|
2019-01-09 20:06:33 -06:00
|
|
|
|
2018-10-19 01:29:12 +02:00
|
|
|
[build-dependencies]
|
2018-12-16 11:27:45 -08:00
|
|
|
wabt = "0.7.2"
|
2018-12-27 01:43:38 -06:00
|
|
|
glob = "0.2.11"
|
2018-10-16 11:18:58 +02:00
|
|
|
|
2018-10-15 02:48:59 +02:00
|
|
|
[features]
|
2018-10-30 17:35:11 +01:00
|
|
|
default = ["fast-tests"]
|
2019-03-12 13:36:11 -07:00
|
|
|
vfs = ["wasmer-runtime-abi", "wasmer-emscripten/vfs"]
|
2019-02-26 15:39:54 -08:00
|
|
|
debug = ["wasmer-clif-backend/debug", "wasmer-runtime-core/debug"]
|
2019-03-11 09:57:06 -07:00
|
|
|
default = ["fast-tests"]
|
2018-10-30 17:35:11 +01:00
|
|
|
# This feature will allow cargo test to run much faster
|
|
|
|
fast-tests = []
|
2019-03-11 09:57:06 -07:00
|
|
|
llvm = ["wasmer-llvm-backend"]
|