-
Notifications
You must be signed in to change notification settings - Fork 33
/
Copy pathCargo.toml
29 lines (25 loc) · 1.09 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]
wasm-bindgen-cli-support = "0.2"
anyhow = "1.0"
tokio = { version = "1.11", default-features = false, features = ["rt-multi-thread"] }
axum = { version = "0.8", default-features = false, features = ["http1", "ws"] }
axum-server = { version = "0.7", features = ["tls-rustls"] }
axum-server-dual-protocol = "0.7"
tower-http = { version = "0.5", features = ["compression-full", "fs", "set-header", "trace"] }
tower = "0.4"
http = "1.0"
rcgen = { version = "0.12", default-features = false, features = ["ring"] }
tracing = { version = "0.1", default-features = false, features = ["release_max_level_debug"] }
tracing-subscriber = { version = "0.3", features = ["env-filter"] }
directories = "6"
fastrand = "2.0"