2019-01-10 21:37:59 -08:00
|
|
|
[package]
|
|
|
|
name = "wasmer-emscripten"
|
2019-12-18 17:24:29 -05:00
|
|
|
version = "0.12.0"
|
2019-01-23 16:33:44 -08:00
|
|
|
description = "Wasmer runtime emscripten implementation library"
|
|
|
|
license = "MIT"
|
2019-01-17 16:19:31 -08:00
|
|
|
authors = ["The Wasmer Engineering Team <engineering@wasmer.io>"]
|
2019-01-23 16:33:44 -08:00
|
|
|
repository = "https://github.com/wasmerio/wasmer"
|
2019-11-13 15:09:18 -08:00
|
|
|
keywords = ["wasm", "webassembly", "ABI", "emscripten", "posix"]
|
|
|
|
categories = ["wasm"]
|
2019-01-10 21:37:59 -08:00
|
|
|
edition = "2018"
|
|
|
|
|
|
|
|
[dependencies]
|
2019-09-20 16:08:45 -07:00
|
|
|
byteorder = "1.3"
|
|
|
|
lazy_static = "1.4"
|
2019-07-31 23:03:52 -07:00
|
|
|
libc = "0.2.60"
|
2019-09-20 16:08:45 -07:00
|
|
|
time = "0.1"
|
2019-12-18 17:24:29 -05:00
|
|
|
wasmer-runtime-core = { path = "../runtime-core", version = "0.12.0" }
|
2019-01-10 21:37:59 -08:00
|
|
|
|
2019-02-22 10:42:38 -08:00
|
|
|
[target.'cfg(windows)'.dependencies]
|
2019-10-28 18:33:15 +03:00
|
|
|
getrandom = "0.1"
|
2019-07-09 13:41:40 -07:00
|
|
|
|
|
|
|
[features]
|
2019-07-09 17:43:04 -07:00
|
|
|
debug = ["wasmer-runtime-core/debug"]
|