wasmer/lib/wasi/Cargo.toml

24 lines
617 B
TOML
Raw Normal View History

2019-03-28 18:23:08 +00:00
[package]
name = "wasmer-wasi"
2019-11-11 20:13:53 +00:00
version = "0.10.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-08-27 00:11:56 +00:00
bincode = "1"
byteorder = "1.3"
generational-arena = { version = "0.2", features = ["serde"] }
2019-08-01 06:03:52 +00:00
libc = "0.2.60"
log = "0.4"
2019-10-28 15:33:15 +00:00
getrandom = "0.1"
time = "0.1"
typetag = "0.1"
2019-08-27 00:11:56 +00:00
serde = { version = "1", features = ["derive"] }
2019-11-11 20:13:53 +00:00
wasmer-runtime-core = { path = "../runtime-core", version = "0.10.0" }
[target.'cfg(windows)'.dependencies]
winapi = "0.3"