* Move back to only one WASI submodule This commit fixes the issue where we have two WASI submodules for build reasons in this repository. The fix was to place the submodule in the `wasi-common` crate, and then anyone using the `wig` crate has to be sure to define a `WASI_ROOT` env var in a build script to be able to parse witx files. With all that in place `wasi-common` becomes the source of truth for the witx files we're parsing, and crates like `wasmtime-wasi` use build-scripts shenanigans to read the same witx files. This should hopefully get us so we're compatible with publishing and still only have one submodule! * rustfmt
52 lines
1.6 KiB
TOML
52 lines
1.6 KiB
TOML
[package]
|
|
name = "wasi-common"
|
|
version = "0.14.0"
|
|
authors = ["The Wasmtime Project Developers"]
|
|
description = "WASI implementation in Rust"
|
|
license = "Apache-2.0 WITH LLVM-exception"
|
|
categories = ["wasm"]
|
|
keywords = ["webassembly", "wasm"]
|
|
repository = "https://github.com/bytecodealliance/wasmtime"
|
|
readme = "README.md"
|
|
edition = "2018"
|
|
include = ["src/**/*", "LICENSE", "WASI/phases"]
|
|
|
|
# This doesn't actually link to a native library, but it allows us to set env
|
|
# vars like `DEP_WASI_COMMON_14_*` for crates that have build scripts and depend
|
|
# on this crate, allowing other crates to use the same witx files.
|
|
links = "wasi-common-14"
|
|
|
|
[dependencies]
|
|
anyhow = "1.0"
|
|
thiserror = "1.0"
|
|
libc = "0.2"
|
|
getrandom = "0.1"
|
|
cfg-if = "0.1.9"
|
|
log = "0.4"
|
|
filetime = "0.2.7"
|
|
lazy_static = "1.4.0"
|
|
num = { version = "0.2.0", default-features = false }
|
|
wig = { path = "wig", version = "0.14.0" }
|
|
wiggle = { path = "../wiggle", default-features = false, version = "0.14.0" }
|
|
|
|
[target.'cfg(unix)'.dependencies]
|
|
yanix = { path = "yanix", version = "0.14.0" }
|
|
|
|
[target.'cfg(windows)'.dependencies]
|
|
winx = { path = "winx", version = "0.14.0" }
|
|
winapi = "0.3"
|
|
cpu-time = "1.0"
|
|
|
|
[badges]
|
|
maintenance = { status = "actively-developed" }
|
|
|
|
[features]
|
|
default = ["trace_log"]
|
|
# This feature enables `log::trace` calls in syscalls shims, in effect
|
|
# emulating something like `strace`. This feature is an opt-out and hence
|
|
# enabled by default.
|
|
trace_log = []
|
|
# Need to make the wiggle_metadata feature available to consumers of this
|
|
# crate if they want the snapshots to have metadata available.
|
|
wiggle_metadata = ["wiggle/wiggle_metadata"]
|