forked from deislabs/wasi-experimental-http
-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathCargo.toml
33 lines (30 loc) · 1.04 KB
/
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
30
31
32
33
[package]
name = "wasi-experimental-http-wasmtime-sample"
version = "0.9.0"
authors = [ "Radu Matei <[email protected]>" ]
edition = "2021"
[dependencies]
anyhow = "1.0"
futures = "0.3"
http = "0.2"
reqwest = { version = "0.11", default-features = true, features = [
"json",
"blocking",
] }
structopt = "0.3"
tokio = { version = "1.4", features = [ "full" ] }
wasmtime = { version = "*", default-features = false }
wasmtime-wasi = { version = "*", default-features = false }
wasi-common = { version = "*", default-features = false }
wasi-cap-std-sync = { version = "*", default-features = false }
wasi-experimental-http = { path = "crates/wasi-experimental-http" }
wasi-experimental-http-wasmtime = { path = "crates/wasi-experimental-http-wasmtime" }
[workspace]
members = [
"crates/wasi-experimental-http",
"crates/wasi-experimental-http-wasmtime",
"tests/rust",
]
[[bin]]
name = "wasmtime-http"
path = "bin/wasmtime-http.rs"