2019-03-28 18:23:08 +00:00
|
|
|
[package]
|
|
|
|
name = "wasmer-wasi"
|
2019-05-16 21:39:13 +00:00
|
|
|
version = "0.4.2"
|
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"
|
2019-05-17 19:09:31 +00:00
|
|
|
build = "build/mod.rs"
|
2019-03-28 18:23:08 +00:00
|
|
|
|
|
|
|
[dependencies]
|
2019-05-16 21:39:13 +00:00
|
|
|
wasmer-runtime-core = { path = "../runtime-core", version = "0.4.2" }
|
2019-03-29 20:06:06 +00:00
|
|
|
libc = "0.2.50"
|
2019-04-01 22:17:13 +00:00
|
|
|
rand = "0.6.5"
|
2019-04-01 22:15:20 +00:00
|
|
|
# wasmer-runtime-abi = { path = "../runtime-abi" }
|
|
|
|
hashbrown = "0.1.8"
|
|
|
|
generational-arena = "0.2.2"
|
2019-04-01 22:17:13 +00:00
|
|
|
log = "0.4.6"
|
2019-04-01 22:52:35 +00:00
|
|
|
byteorder = "1.3.1"
|
2019-05-17 19:09:31 +00:00
|
|
|
# hack to get tests to work
|
2019-05-17 20:30:10 +00:00
|
|
|
wasmer-singlepass-backend = { path = "../singlepass-backend", version = "0.4.2", optional = true }
|
2019-05-21 18:23:24 +00:00
|
|
|
|
|
|
|
[target.'cfg(windows)'.dependencies]
|
2019-05-21 17:41:40 +00:00
|
|
|
winapi = "0.3"
|
2019-05-17 19:09:31 +00:00
|
|
|
|
|
|
|
[build-dependencies]
|
|
|
|
glob = "0.2.11"
|
|
|
|
|
|
|
|
[dev-dependencies]
|
|
|
|
wasmer-clif-backend = { path = "../clif-backend", version = "0.4.2" }
|
2019-05-17 22:48:30 +00:00
|
|
|
wasmer-dev-utils = { path = "../dev-utils", version = "0.4.2"}
|
2019-05-17 19:09:31 +00:00
|
|
|
|
|
|
|
[features]
|
|
|
|
clif = []
|
|
|
|
singlepass = ["wasmer-singlepass-backend"]
|