summaryrefslogtreecommitdiffhomepage
path: root/src/wasm-wasi-component/Cargo.toml
blob: 8f42d1284acb443d8d6ebd147a1ec0f1fa8258b5 (plain) (blame)
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
[package]
name = "wasm-wasi-component"
version = "0.1.0"
edition = "2021"
publish = false

[lib]
crate-type = ["cdylib"]

[dependencies]
anyhow = "1.0.75"
bytes = "1.5.0"
futures-util = { version = "0.3.29", default-features = false }
http = "0.2.9"
http-body = { version = "1.0.0-rc.2", default-features = false }
http-body-util = "0.1.0-rc.2"
tokio = { version = "1.33.0", default-features = false }
wasmtime = "14.0.2"
wasmtime-wasi = "14.0.2"
wasmtime-wasi-http = "14.0.2"

[build-dependencies]
bindgen = "0.68.1"
cc = "1.0.83"

[profile.dev]
panic = 'abort'

[profile.release]
panic = 'abort'