wasmer/lib/wasi/Cargo.toml

24 lines
631 B
TOML
Raw Normal View History

2019-03-28 18:23:08 +00:00
[package]
name = "wasmer-wasi"
2019-04-12 19:19:46 +00:00
version = "0.3.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-04-12 19:19:46 +00:00
wasmer-runtime-core = { path = "../runtime-core", version = "0.3.0" }
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-04-01 23:36:41 +00:00
[dependencies.zbox]
2019-04-12 21:16:42 +00:00
git = "https://github.com/wasmerio/zbox"
branch = "bundle-libsodium"
features = ["libsodium-bundled"]