wasmer/lib/wasi/Cargo.toml

21 lines
543 B
TOML
Raw Normal View History

2019-03-28 18:23:08 +00:00
[package]
name = "wasmer-wasi"
2019-07-31 17:28:45 +00:00
version = "0.6.0"
description = "Wasmer runtime WASI implementation library"
2019-04-02 00:21:48 +00:00
license = "MIT"
2019-03-28 18:23:08 +00:00
authors = ["The Wasmer Engineering Team <engineering@wasmer.io>"]
2019-04-02 00:21:48 +00:00
repository = "https://github.com/wasmerio/wasmer"
2019-03-28 18:23:08 +00:00
edition = "2018"
[dependencies]
2019-07-31 17:28:45 +00:00
wasmer-runtime-core = { path = "../runtime-core", version = "0.6.0" }
2019-08-01 06:03:52 +00:00
libc = "0.2.60"
rand = "0.7.0"
2019-04-01 22:15:20 +00:00
# wasmer-runtime-abi = { path = "../runtime-abi" }
generational-arena = "0.2.2"
2019-08-01 06:03:52 +00:00
log = "0.4.8"
byteorder = "1.3.2"
[target.'cfg(windows)'.dependencies]
2019-08-01 06:21:56 +00:00
winapi = "0.3.7"