[package]
name = "wasi-common"
version.workspace = true
authors.workspace = true
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.workspace = true
include = ["src/**/*", "tests/**/*", "WASI/phases/**/*", "README.md", "LICENSE", "build.rs"]
build = "build.rs"
links = "wasi-common-19"
[lints]
workspace = true
[dependencies]
anyhow = { workspace = true }
thiserror = { workspace = true }
wiggle = { workspace = true }
tracing = { workspace = true }
cap-std = { workspace = true }
cap-rand = { workspace = true }
bitflags = { workspace = true }
log = { workspace = true }
wasmtime = { workspace = true, optional = true, features = ['runtime'] }
cap-fs-ext = { workspace = true, optional = true }
cap-time-ext = { workspace = true, optional = true }
fs-set-times = { workspace = true, optional = true }
system-interface = { workspace = true, features = ["cap_std_impls"], optional = true }
io-lifetimes = { workspace = true, optional = true }
tokio = { workspace = true, features = [ "rt", "fs", "time", "io-util", "net", "io-std", "rt-multi-thread"], optional = true }
libc = { workspace = true, optional = true }
[target.'cfg(unix)'.dependencies]
rustix = { workspace = true, features = ["fs", "event"] }
[target.'cfg(windows)'.dependencies]
once_cell = { workspace = true }
io-extras = { workspace = true }
rustix = { workspace = true, features = ["net"] }
[target.'cfg(windows)'.dependencies.windows-sys]
workspace = true
features = [
"Win32_Foundation",
"Win32_Networking_WinSock",
]
[dev-dependencies]
tempfile = { workspace = true }
test-log = { workspace = true }
tracing-subscriber = { workspace = true }
wasmtime = { workspace = true, features = ['cranelift', 'async', 'runtime'] }
test-programs-artifacts = { workspace = true }
tokio = { workspace = true, features = ['macros', 'rt-multi-thread'] }
[features]
default = ["trace_log", "wasmtime", "sync"]
trace_log = [ "wiggle/tracing_log", "tracing/log" ]
wiggle_metadata = ["wiggle/wiggle_metadata"]
wasmtime = [
"dep:wasmtime",
"wiggle/wasmtime",
]
sync = [
"wasmtime",
"dep:cap-fs-ext",
"dep:cap-time-ext",
"dep:fs-set-times",
"dep:system-interface",
"dep:io-lifetimes",
]
tokio = [
"sync",
"wasmtime/async",
"wiggle/wasmtime_async",
"dep:tokio",
]
exit = [ "wasmtime", "dep:libc" ]
[[test]]
name = "all"
required-features = ["wasmtime", "sync", "tokio"]