wasmer/lib/emscripten/Cargo.toml

24 lines
617 B
TOML
Raw Normal View History

2019-01-11 05:37:59 +00:00
[package]
name = "wasmer-emscripten"
2019-11-22 19:18:06 +00:00
version = "0.11.0"
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"
keywords = ["wasm", "webassembly", "ABI", "emscripten", "posix"]
categories = ["wasm"]
2019-01-11 05:37:59 +00:00
edition = "2018"
[dependencies]
byteorder = "1.3"
lazy_static = "1.4"
2019-08-01 06:03:52 +00:00
libc = "0.2.60"
time = "0.1"
2019-11-22 19:18:06 +00:00
wasmer-runtime-core = { path = "../runtime-core", version = "0.11.0" }
2019-01-11 05:37:59 +00:00
[target.'cfg(windows)'.dependencies]
2019-10-28 15:33:15 +00:00
getrandom = "0.1"
2019-07-09 20:41:40 +00:00
[features]
2019-07-10 00:43:04 +00:00
debug = ["wasmer-runtime-core/debug"]