Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
bytecodealliance
GitHub Repository: bytecodealliance/wasmtime
Path: blob/main/crates/wasi-threads/Cargo.toml
1690 views
1
[package]
2
name = "wasmtime-wasi-threads"
3
version.workspace = true
4
authors.workspace = true
5
description = "Wasmtime implementation of the wasi-threads API"
6
documentation = "https://docs.rs/wasmtime-wasi-nn"
7
license = "Apache-2.0 WITH LLVM-exception"
8
categories = ["wasm"]
9
keywords = ["webassembly", "wasm", "neural-network"]
10
repository = "https://github.com/bytecodealliance/wasmtime"
11
readme = "README.md"
12
edition.workspace = true
13
rust-version.workspace = true
14
15
[lints]
16
workspace = true
17
18
[dependencies]
19
anyhow = { workspace = true }
20
log = { workspace = true }
21
rand = "0.8"
22
wasi-common = { workspace = true, features = ["exit"]}
23
wasmtime = { workspace = true, features = ['threads'] }
24
wasmtime-wasi = { workspace = true }
25
26