wasmer/lib/runtime-core/Cargo.toml

31 lines
666 B
TOML
Raw Normal View History

[package]
name = "wasmer-runtime-core"
version = "0.1.2"
2019-01-24 00:33:44 +00:00
description = "Wasmer runtime core library"
license = "MIT"
authors = ["The Wasmer Engineering Team <engineering@wasmer.io>"]
2019-01-24 00:33:44 +00:00
repository = "https://github.com/wasmerio/wasmer"
edition = "2018"
[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"
[target.'cfg(windows)'.dependencies]
winapi = { version = "0.3", features = ["memoryapi"] }
[target.'cfg(unix)'.dependencies]
errno = "0.2.4"
[dev-dependencies]
2019-01-25 18:34:43 +00:00
wasmer-clif-backend = { path = "../clif-backend", version = "0.1.2" }
field-offset = "0.1.1"
[features]
debug = []
2019-01-29 22:58:16 +00:00