wasmer/Cargo.toml

74 lines
1.7 KiB
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]
cranelift-native = "0.26.0"
# cranelift-native = { path = "cranelift/lib/native" }
cranelift-codegen = "0.26.0"
# cranelift-codegen = { path = "cranelift/lib/codegen" }
cranelift-entity = "0.26.0"
# cranelift-entity = { path = "cranelift/lib/entity" }
cranelift-wasm = "0.26.0"
# cranelift-wasm = { path = "cranelift/lib/wasm" }
docopt = "1.0.0"
serde = "1.0.55"
serde_derive = "1.0.55"
tempdir = "0.3.7"
error-chain = "0.12.0"
errno = "0.2.4"
structopt = "0.2.11"
wabt = "0.7.2"
2018-12-20 00:35:11 -06:00
wasmparser = "0.23.0"
winapi = "0.3.6"
region = "0.3.0"
2018-11-15 13:30:00 -08:00
# spin = "0.4.10"
2018-10-15 02:48:59 +02:00
log = "0.4.5"
2018-11-14 23:10:35 -08:00
target-lexicon = "0.2.0"
2018-11-28 13:57:59 -08:00
nix = "0.12.0"
rayon = "1.0.3"
byteorder = "1"
2018-12-05 20:39:06 -05:00
indicatif = "0.10"
console = "0.7.1"
2018-12-18 20:28:15 -05:00
field-offset = "0.1.1"
2018-12-24 23:05:04 -05:00
hashbrown = "0.1"
2018-12-26 20:42:23 -05:00
libffi = "0.6.4"
time = "0.1.41"
wasmer-clif-backend = { path = "lib/clif-backend" }
wasmer-runtime = { path = "lib/runtime" }
# wasmer-emscripten = { path = "lib/emscripten" }
2019-01-10 21:37:59 -08:00
libc = { git = "https://github.com/rust-lang/libc" }
2018-10-15 02:48:59 +02:00
2019-01-09 20:06:33 -06:00
[workspace]
members = ["lib/clif-backend", "lib/runtime"] # "lib/emscripten"
2019-01-09 20:06:33 -06:00
[build-dependencies]
wabt = "0.7.2"
glob = "0.2.11"
2018-10-19 11:46:07 +02:00
# [dev-dependencies]
# libffi = "0.6.4"
# maplit = "1.0.1"
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 = []