30 lines
903 B
TOML
30 lines
903 B
TOML
[package]
|
|
name = "wasi"
|
|
version = "0.11.1+wasi-snapshot-preview1"
|
|
authors = ["The Cranelift Project Developers"]
|
|
license = "Apache-2.0 WITH LLVM-exception OR Apache-2.0 OR MIT"
|
|
description = "Experimental WASI API bindings for Rust"
|
|
edition = "2018"
|
|
categories = ["no-std", "wasm"]
|
|
keywords = ["webassembly", "wasm"]
|
|
repository = "https://github.com/bytecodealliance/wasi"
|
|
readme = "README.md"
|
|
documentation = "https://docs.rs/wasi"
|
|
|
|
[workspace]
|
|
members = ['crates/witx-bindgen', 'crates/wasi-ephemeral']
|
|
|
|
[dependencies]
|
|
# When built as part of libstd
|
|
core = { version = "1.0", optional = true, package = "rustc-std-workspace-core" }
|
|
rustc-std-workspace-alloc = { version = "1.0", optional = true }
|
|
|
|
[features]
|
|
default = ["std"]
|
|
std = []
|
|
# Unstable feature to support being a libstd dependency
|
|
rustc-dep-of-std = ["core", "rustc-std-workspace-alloc"]
|
|
|
|
[badges]
|
|
maintenance = { status = "experimental" }
|