2019-01-11 05:37:59 +00:00
|
|
|
[package]
|
|
|
|
name = "wasmer-emscripten"
|
2019-07-23 18:20:59 +00:00
|
|
|
version = "0.5.7"
|
2019-01-24 00:33:44 +00:00
|
|
|
description = "Wasmer runtime emscripten implementation library"
|
|
|
|
license = "MIT"
|
2019-01-18 00:19:31 +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-11 05:37:59 +00:00
|
|
|
edition = "2018"
|
|
|
|
|
|
|
|
[dependencies]
|
2019-05-25 01:00:07 +00:00
|
|
|
byteorder = "1"
|
|
|
|
hashbrown = "0.1"
|
2019-02-10 22:24:04 +00:00
|
|
|
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"
|
2019-07-23 18:20:59 +00:00
|
|
|
wasmer-runtime-core = { path = "../runtime-core", version = "0.5.7" }
|
2019-01-11 05:37:59 +00:00
|
|
|
|
2019-02-22 18:42:38 +00:00
|
|
|
[target.'cfg(windows)'.dependencies]
|
2019-07-09 20:41:40 +00:00
|
|
|
rand = "0.6"
|
|
|
|
|
|
|
|
[features]
|
2019-07-10 00:43:04 +00:00
|
|
|
debug = ["wasmer-runtime-core/debug"]
|