Path: blob/main/crates/wasi-threads/Cargo.toml
1690 views
[package]1name = "wasmtime-wasi-threads"2version.workspace = true3authors.workspace = true4description = "Wasmtime implementation of the wasi-threads API"5documentation = "https://docs.rs/wasmtime-wasi-nn"6license = "Apache-2.0 WITH LLVM-exception"7categories = ["wasm"]8keywords = ["webassembly", "wasm", "neural-network"]9repository = "https://github.com/bytecodealliance/wasmtime"10readme = "README.md"11edition.workspace = true12rust-version.workspace = true1314[lints]15workspace = true1617[dependencies]18anyhow = { workspace = true }19log = { workspace = true }20rand = "0.8"21wasi-common = { workspace = true, features = ["exit"]}22wasmtime = { workspace = true, features = ['threads'] }23wasmtime-wasi = { workspace = true }242526