[package] name = "wasmer-wasi" version = "0.5.4" description = "Wasmer runtime WASI implementation library" license = "MIT" authors = ["The Wasmer Engineering Team "] repository = "https://github.com/wasmerio/wasmer" edition = "2018" build = "build/mod.rs" [dependencies] wasmer-runtime-core = { path = "../runtime-core", version = "0.5.4" } libc = "0.2.50" rand = "0.6.5" # wasmer-runtime-abi = { path = "../runtime-abi" } hashbrown = "0.1.8" generational-arena = "0.2.2" log = "0.4.6" byteorder = "1.3.1" # hack to get tests to work wasmer-singlepass-backend = { path = "../singlepass-backend", version = "0.5.4", optional = true } wasmer-llvm-backend = { path = "../llvm-backend", version = "0.5.4", optional = true } [target.'cfg(windows)'.dependencies] winapi = "0.3" [build-dependencies] glob = "0.2.11" [dev-dependencies] wasmer-clif-backend = { path = "../clif-backend", version = "0.5.4" } wasmer-dev-utils = { path = "../dev-utils", version = "0.5.4"} [features] clif = [] singlepass = ["wasmer-singlepass-backend"] llvm = ["wasmer-llvm-backend"]