-
Notifications
You must be signed in to change notification settings - Fork 33
/
Cargo.toml
29 lines (26 loc) · 1.13 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
[package]
name = "wasm-server-runner"
version = "0.6.3"
edition = "2021"
readme = "README.md"
repository = "https://github.com/jakobhellermann/wasm-server-runner/"
license = "MIT"
keywords = ["web", "wasm", "devtools"]
categories = ["command-line-utilities", "development-tools", "development-tools::cargo-plugins", "wasm", "web-programming"]
description = "cargo run for wasm programs"
[dependencies]
anyhow = "1.0"
tracing = { version = "0.1", default-features = false, features = ["release_max_level_debug"] }
tracing-subscriber = { version = "0.3", features = ["env-filter"] }
wasm-bindgen-cli-support = "0.2"
axum = { version = "0.7", default-features = false, features = ["http1", "ws"] }
axum-extra = { version = "0.9", features = [] }
axum-server = { version = "0.6", features = ["tls-rustls"] }
axum-server-dual-protocol = "0.6"
directories = "5"
tokio = { version = "1.11", default-features = false, features = ["rt-multi-thread"] }
tower-http = { version = "0.5", features = ["compression-full", "fs", "set-header", "trace"] }
http = "1.0"
tower = "0.4"
fastrand = "2.0"
rcgen = { version = "0.12", default-features = false, features = ["ring"] }