wasmer/Cargo.toml

45 lines
1.3 KiB
TOML
Raw Normal View History

[package]
name = "wasmer"
2019-02-28 01:20:49 +00:00
version = "0.2.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]
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" }
wasmer-runtime = { path = "lib/runtime" }
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-18 08:14:11 +00:00
wasmer-dynasm-backend = { path = "lib/dynasm-backend", optional = true }
2019-03-08 02:26:29 +00:00
2019-01-10 02:06:33 +00:00
[workspace]
2019-03-28 18:23:08 +00:00
members = ["lib/clif-backend", "lib/dynasm-backend", "lib/runtime", "lib/runtime-core", "lib/emscripten", "lib/spectests", "lib/win-exception-handler", "lib/runtime-c-api", "lib/llvm-backend", "lib/wasi"]
2019-01-10 02:06:33 +00:00
[build-dependencies]
wabt = "0.7.2"
glob = "0.2.11"
2018-10-16 09:18:58 +00:00
2018-10-15 00:48:59 +00:00
[features]
2019-02-26 23:39:54 +00:00
debug = ["wasmer-clif-backend/debug", "wasmer-runtime-core/debug"]
2019-03-11 16:57:06 +00:00
default = ["fast-tests"]
# This feature will allow cargo test to run much faster
fast-tests = []
2019-03-11 16:57:06 +00:00
llvm = ["wasmer-llvm-backend"]
2019-03-18 08:14:11 +00:00
dynasm = ["wasmer-dynasm-backend"]