-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
29 lines (26 loc) · 999 Bytes
/
Cargo.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
[workspace]
members = ["guest-rust", "host-wasmtime"]
[workspace.package]
version = "0.1.0"
edition = "2021"
homepage = "https://github.com/jvatic/wasi-streams-demo"
categories = ["wit", "wasi", "wasm", "wasmtime"]
license = "BSD 3-Clause License"
repository = "https://github.com/jvatic/wasi-streams-demo"
authors = ["Jesse Stuart <[email protected]>"]
[patch.crates-io]
tokio = { git = "https://github.com/tokio-rs/tokio.git" } # tokio::io::simplex isn't published yet'
[workspace.dependencies]
anyhow = "1.0.86"
futures-lite = "2.3.0"
serde = "1.0.209"
serde_json = "1.0.127"
tokio = { version = "1.39" }
wasi = "0.13"
# see https://github.com/yoshuawuyts/wasm-http-tools/pull/5
wasi-async-runtime = { version = "0.1.3", git = "https://github.com/jvatic/wasm-http-tools.git", rev = "f0df352354e563f35fdc6923bca5578c3dc1d78b" }
wasi-preview1-component-adapter-provider = "23.0"
wasmtime = { version = "24.0" }
wasmtime-wasi = { version = "24.0" }
wit-bindgen = "0.30"
wit-component = "0.215"