2019-03-28 18:23:08 +00:00
|
|
|
[package]
|
|
|
|
name = "wasmer-wasi"
|
2019-07-31 17:28:45 +00:00
|
|
|
version = "0.6.0"
|
2019-04-12 21:07:25 +00:00
|
|
|
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-08-27 00:11:56 +00:00
|
|
|
bincode = "1"
|
|
|
|
byteorder = "1.3.2"
|
|
|
|
generational-arena = { version = "0.2.2", features = ["serde"] }
|
2019-08-01 06:03:52 +00:00
|
|
|
libc = "0.2.60"
|
|
|
|
log = "0.4.8"
|
2019-08-27 00:11:56 +00:00
|
|
|
rand = "0.7.0"
|
2019-08-05 02:24:06 +00:00
|
|
|
time = "0.1.42"
|
2019-08-27 00:11:56 +00:00
|
|
|
serde = { version = "1", features = ["derive"] }
|
|
|
|
# wasmer-runtime-abi = { path = "../runtime-abi" }
|
|
|
|
wasmer-runtime-core = { path = "../runtime-core", version = "0.6.0" }
|
2019-05-21 18:23:24 +00:00
|
|
|
|
|
|
|
[target.'cfg(windows)'.dependencies]
|
2019-08-01 06:21:56 +00:00
|
|
|
winapi = "0.3.7"
|