You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
26 lines
789 B
26 lines
789 B
[package]
|
|
name = "wasmtime-wasi"
|
|
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/**/*", "README.md", "LICENSE", "build.rs"]
|
|
build = "build.rs"
|
|
|
|
[dependencies]
|
|
wasi-common = { workspace = true }
|
|
wasi-cap-std-sync = { workspace = true, optional = true }
|
|
wasi-tokio = { workspace = true, optional = true }
|
|
wiggle = { workspace = true }
|
|
wasmtime = { workspace = true }
|
|
anyhow = { workspace = true }
|
|
|
|
[features]
|
|
default = ["sync"]
|
|
sync = ["wasi-cap-std-sync"]
|
|
tokio = ["wasi-tokio", "wasmtime/async", "wiggle/wasmtime_async"]
|
|
|