wasmer/lib/runtime/Cargo.toml

29 lines
519 B
TOML
Raw Normal View History

2019-01-08 17:09:47 +00:00
[package]
name = "wasmer-runtime"
version = "0.1.0"
authors = ["Lachlan Sneff <lachlan.sneff@gmail.com>"]
edition = "2018"
2019-01-09 04:59:55 +00:00
build = "build/mod.rs"
2019-01-08 17:09:47 +00:00
[dependencies]
hashbrown = "0.1"
libffi = "0.6.4"
nix = "0.12.0"
page_size = "0.4.1"
errno = "0.2.4"
2019-01-09 04:59:55 +00:00
[build-dependencies]
wabt = "0.7.2"
[dev-dependencies]
2019-01-09 04:59:55 +00:00
wasmer-clif-backend = { path = "../clif-backend" }
2019-01-09 06:06:24 +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 = []