wasmer/lib/emscripten/Cargo.toml

27 lines
679 B
TOML
Raw Normal View History

2019-01-11 05:37:59 +00:00
[package]
name = "wasmer-emscripten"
2019-01-24 00:33:44 +00:00
version = "0.1.0"
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]
2019-01-24 00:33:44 +00:00
wasmer-runtime-core = { path = "../runtime-core", version = "0.1.0" }
lazy_static = "1.2.0"
2019-01-11 05:37:59 +00:00
libc = { git = "https://github.com/rust-lang/libc" }
byteorder = "1"
time = "0.1.41"
[target.'cfg(windows)'.dependencies]
rand = "0.6"
2019-01-11 05:37:59 +00:00
[dev-dependencies]
2019-01-24 00:33:44 +00:00
wasmer-clif-backend = { path = "../clif-backend", version = "0.1.0" }
2019-01-11 05:37:59 +00:00
wabt = "0.7.2"
[build-dependencies]
glob = "0.2.11"