2019-01-22 19:02:06 +00:00
|
|
|
[package]
|
|
|
|
name = "wasmer-runtime-core"
|
2019-01-24 00:33:44 +00:00
|
|
|
version = "0.1.1"
|
|
|
|
description = "Wasmer runtime core library"
|
|
|
|
license = "MIT"
|
2019-01-22 19:02:06 +00:00
|
|
|
authors = ["The Wasmer Engineering Team <engineering@wasmer.io>"]
|
2019-01-24 00:33:44 +00:00
|
|
|
repository = "https://github.com/wasmerio/wasmer"
|
2019-01-22 19:02:06 +00:00
|
|
|
edition = "2018"
|
|
|
|
build = "build/mod.rs"
|
|
|
|
|
|
|
|
[dependencies]
|
|
|
|
hashbrown = "0.1"
|
|
|
|
nix = "0.12.0"
|
|
|
|
page_size = "0.4.1"
|
|
|
|
wasmparser = "0.23.0"
|
2019-01-29 18:16:39 +00:00
|
|
|
parking_lot = "0.7.1"
|
|
|
|
lazy_static = "1.2.0"
|
2019-01-22 19:02:06 +00:00
|
|
|
|
|
|
|
[target.'cfg(windows)'.dependencies]
|
|
|
|
winapi = { version = "0.3", features = ["memoryapi"] }
|
|
|
|
|
|
|
|
[target.'cfg(unix)'.dependencies]
|
|
|
|
errno = "0.2.4"
|
|
|
|
|
|
|
|
[build-dependencies]
|
|
|
|
wabt = "0.7.2"
|
|
|
|
|
|
|
|
[dev-dependencies]
|
2019-01-24 00:33:44 +00:00
|
|
|
wasmer-clif-backend = { path = "../clif-backend", version = "0.1.1" }
|
2019-01-22 19:02:06 +00:00
|
|
|
wabt = "0.7.2"
|
|
|
|
field-offset = "0.1.1"
|
|
|
|
|
|
|
|
[features]
|
|
|
|
default = ["fast-tests"]
|
|
|
|
|
|
|
|
debug = []
|
|
|
|
# This feature will allow cargo test to compile much faster
|
|
|
|
fast-tests = []
|