2018-10-11 19:29:36 +00:00
|
|
|
[package]
|
|
|
|
name = "wasmer"
|
2018-12-19 18:14:53 +00:00
|
|
|
version = "0.1.4"
|
2019-01-18 00:19:31 +00:00
|
|
|
authors = ["The Wasmer Engineering Team <engineering@wasmer.io>"]
|
2018-12-10 23:31:08 +00:00
|
|
|
edition = "2018"
|
2018-11-22 06:15:13 +00:00
|
|
|
repository = "https://github.com/wasmerio/wasmer"
|
2018-10-24 10:56:30 +00:00
|
|
|
publish = true
|
2018-10-24 11:01:23 +00:00
|
|
|
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",
|
2018-12-14 02:00:11 +00:00
|
|
|
"/README.md",
|
2018-10-24 10:54:45 +00:00
|
|
|
"rustfmt.toml"
|
|
|
|
]
|
2018-10-11 19:29:36 +00:00
|
|
|
|
|
|
|
[dependencies]
|
2018-12-18 02:30:27 +00:00
|
|
|
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" }
|
2018-10-11 19:29:36 +00:00
|
|
|
docopt = "1.0.0"
|
|
|
|
serde = "1.0.55"
|
|
|
|
serde_derive = "1.0.55"
|
2018-10-24 11:03:54 +00:00
|
|
|
tempdir = "0.3.7"
|
2018-10-11 19:29:36 +00:00
|
|
|
error-chain = "0.12.0"
|
2018-12-15 01:32:35 +00:00
|
|
|
errno = "0.2.4"
|
2018-10-11 19:29:36 +00:00
|
|
|
structopt = "0.2.11"
|
2018-12-16 19:27:45 +00:00
|
|
|
wabt = "0.7.2"
|
2018-12-20 06:35:11 +00:00
|
|
|
wasmparser = "0.23.0"
|
2018-12-15 01:32:35 +00:00
|
|
|
winapi = "0.3.6"
|
2018-10-11 19:29:36 +00:00
|
|
|
region = "0.3.0"
|
2018-11-15 21:30:00 +00:00
|
|
|
# spin = "0.4.10"
|
2018-10-15 00:48:59 +00:00
|
|
|
log = "0.4.5"
|
2018-11-15 07:10:35 +00:00
|
|
|
target-lexicon = "0.2.0"
|
2018-11-28 21:57:59 +00:00
|
|
|
nix = "0.12.0"
|
2018-11-21 00:30:25 +00:00
|
|
|
rayon = "1.0.3"
|
2018-11-26 04:56:21 +00:00
|
|
|
byteorder = "1"
|
2018-12-06 01:39:06 +00:00
|
|
|
indicatif = "0.10"
|
|
|
|
console = "0.7.1"
|
2018-12-19 01:28:15 +00:00
|
|
|
field-offset = "0.1.1"
|
2018-12-25 04:05:04 +00:00
|
|
|
hashbrown = "0.1"
|
2018-12-27 01:42:23 +00:00
|
|
|
libffi = "0.6.4"
|
2018-12-27 00:55:53 +00:00
|
|
|
time = "0.1.41"
|
2019-01-09 06:49:11 +00:00
|
|
|
wasmer-clif-backend = { path = "lib/clif-backend" }
|
|
|
|
wasmer-runtime = { path = "lib/runtime" }
|
2019-01-11 05:37:59 +00:00
|
|
|
wasmer-emscripten = { path = "lib/emscripten" }
|
|
|
|
libc = { git = "https://github.com/rust-lang/libc" }
|
2018-10-15 00:48:59 +00:00
|
|
|
|
2019-01-10 02:06:33 +00:00
|
|
|
[workspace]
|
2019-01-11 05:37:59 +00:00
|
|
|
members = ["lib/clif-backend", "lib/runtime", "lib/emscripten"]
|
2019-01-10 02:06:33 +00:00
|
|
|
|
2018-10-18 23:29:12 +00:00
|
|
|
[build-dependencies]
|
2018-12-16 19:27:45 +00:00
|
|
|
wabt = "0.7.2"
|
2018-12-27 07:43:38 +00:00
|
|
|
glob = "0.2.11"
|
2018-10-19 09:46:07 +00:00
|
|
|
# [dev-dependencies]
|
|
|
|
# libffi = "0.6.4"
|
2018-10-17 14:08:31 +00:00
|
|
|
# maplit = "1.0.1"
|
2018-10-16 09:18:58 +00:00
|
|
|
|
2018-10-15 00:48:59 +00:00
|
|
|
[features]
|
2018-10-30 16:35:11 +00:00
|
|
|
default = ["fast-tests"]
|
|
|
|
|
2018-10-15 00:48:59 +00:00
|
|
|
debug = []
|
2018-10-30 16:35:11 +00:00
|
|
|
# This feature will allow cargo test to run much faster
|
|
|
|
fast-tests = []
|