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