1[package]
2name = "wasi"
3version = "0.10.0+wasi-snapshot-preview1"
4authors = ["The Cranelift Project Developers"]
5license = "Apache-2.0 WITH LLVM-exception OR Apache-2.0 OR MIT"
6description = "Experimental WASI API bindings for Rust"
7edition = "2018"
8categories = ["no-std", "wasm"]
9keywords = ["webassembly", "wasm"]
10repository = "https://github.com/bytecodealliance/wasi"
11readme = "README.md"
12documentation = "https://docs.rs/wasi"
13
14[workspace]
15members = ['crates/generate-raw', 'crates/wasi-ephemeral']
16
17[dependencies]
18# When built as part of libstd
19compiler_builtins = { version = "0.1", optional = true }
20core = { version = "1.0", optional = true, package = "rustc-std-workspace-core" }
21rustc-std-workspace-alloc = { version = "1.0", optional = true }
22
23[features]
24default = ["std"]
25std = []
26# Unstable feature to support being a libstd dependency
27rustc-dep-of-std = ["compiler_builtins", "core", "rustc-std-workspace-alloc"]
28
29[badges]
30maintenance = { status = "experimental" }
31