wasmer/Cargo.toml

51 lines
1.5 KiB
TOML
Raw Normal View History

[package]
name = "wasmer"
2019-02-27 17:20:49 -08:00
version = "0.2.1"
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]
errno = "0.2.4"
structopt = "0.2.11"
wabt = "0.7.2"
2019-03-26 16:41:40 -07:00
hashbrown = "0.1.8"
wasmer-clif-backend = { path = "lib/clif-backend" }
wasmer-dynasm-backend = { path = "lib/dynasm-backend", optional = true }
wasmer-runtime = { path = "lib/runtime" }
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 }
2019-03-07 18:26:29 -08:00
2019-01-09 20:06:33 -06:00
[workspace]
members = ["lib/clif-backend", "lib/dynasm-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"]
2019-01-09 20:06:33 -06:00
[build-dependencies]
wabt = "0.7.2"
glob = "0.2.11"
2018-10-16 11:18:58 +02:00
2018-10-15 02:48:59 +02:00
[features]
2019-03-11 09:57:06 -07:00
default = ["fast-tests"]
2019-02-26 15:39:54 -08:00
debug = ["wasmer-clif-backend/debug", "wasmer-runtime-core/debug"]
# This feature will allow cargo test to run much faster
fast-tests = []
2019-03-11 09:57:06 -07:00
llvm = ["wasmer-llvm-backend"]
2019-03-28 12:19:23 -07:00
dynasm = ["wasmer-dynasm-backend"]
wasi = ["wasmer-wasi"]
2019-03-28 11:55:01 -07:00
vfs = ["wasmer-runtime-abi"]