wasmer/lib/emscripten/Cargo.toml

40 lines
1.0 KiB
TOML
Raw Normal View History

2019-01-11 05:37:59 +00:00
[package]
name = "wasmer-emscripten"
2019-02-28 01:20:49 +00:00
version = "0.2.1"
2019-01-24 00:33:44 +00:00
description = "Wasmer runtime emscripten implementation 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"
2019-01-11 05:37:59 +00:00
edition = "2018"
build = "build/mod.rs"
[dependencies]
bit_field = "0.9.0"
byteorder = "1"
errno = "0.2.4"
lazy_static = "1.2.0"
2019-02-25 21:28:37 +00:00
libc = "0.2.49"
2019-01-11 05:37:59 +00:00
time = "0.1.41"
wasmer-runtime-core = { path = "../runtime-core", version = "0.2.1" }
2019-03-18 08:14:11 +00:00
wasmer-clif-backend = { path = "../clif-backend", version = "0.2.0" }
wasmer-dynasm-backend = { path = "../dynasm-backend", version = "0.1.0", optional = true }
2019-03-21 15:55:23 +00:00
wasmer-llvm-backend = { path = "../llvm-backend", version = "0.1.0", optional = true }
2019-01-11 05:37:59 +00:00
2019-03-26 02:43:52 +00:00
[target.'cfg(unix)'.dependencies]
wasmer-runtime-abi = { path = "../runtime-abi", optional = true }
[target.'cfg(windows)'.dependencies]
rand = "0.6"
2019-01-11 05:37:59 +00:00
[dev-dependencies]
wabt = "0.7.2"
[build-dependencies]
glob = "0.2.11"
[features]
clif = []
2019-03-21 15:55:23 +00:00
llvm = ["wasmer-llvm-backend"]
dynasm = ["wasmer-dynasm-backend"]
2019-03-12 20:36:11 +00:00
vfs = ["wasmer-runtime-abi"]