wasmer/lib/wasi/Cargo.toml

34 lines
929 B
TOML
Raw Normal View History

2019-03-28 18:23:08 +00:00
[package]
name = "wasmer-wasi"
2019-05-16 21:39:13 +00:00
version = "0.4.2"
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"
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"
log = "0.4.6"
byteorder = "1.3.1"
2019-05-17 19:09:31 +00:00
# hack to get tests to work
wasmer-singlepass-backend = { path = "../singlepass-backend", version = "0.4.2", optional = true }
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" }
wasmer-dev-utils = { path = "../dev-utils", version = "0.4.2"}
2019-05-17 19:09:31 +00:00
[features]
clif = []
singlepass = ["wasmer-singlepass-backend"]