wasmer/Cargo.toml

42 lines
978 B
TOML
Raw Normal View History

[package]
name = "wasmer"
2018-12-19 10:14:53 -08:00
version = "0.1.4"
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]
structopt = "0.2.11"
wabt = "0.7.2"
wasmer-clif-backend = { path = "lib/clif-backend" }
wasmer-runtime = { path = "lib/runtime" }
wasmer-runtime-core = { path = "lib/runtime-core" }
2019-01-10 21:37:59 -08:00
wasmer-emscripten = { path = "lib/emscripten" }
2018-10-15 02:48:59 +02:00
2019-01-09 20:06:33 -06:00
[workspace]
2019-02-09 15:53:40 -08:00
members = ["lib/clif-backend", "lib/runtime", "lib/runtime-core", "lib/emscripten", "lib/spectests", "lib/llvm-backend"]
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]
default = ["fast-tests"]
2018-10-15 02:48:59 +02:00
debug = []
# This feature will allow cargo test to run much faster
fast-tests = []