20 lines
592 B
TOML
20 lines
592 B
TOML
|
[package]
|
||
|
name = "woweb"
|
||
|
version = "0.1.0"
|
||
|
edition = "2021"
|
||
|
build = "build.rs"
|
||
|
|
||
|
[dependencies]
|
||
|
dist_text = { path = "../dist_text" }
|
||
|
axum = { version = "0.6.7", features = ["ws", "headers"] }
|
||
|
axum-extra = { version = "0.5.0", features = ["spa"] }
|
||
|
futures = "0.3.26"
|
||
|
headers = "0.3.8"
|
||
|
serde = { version = "1.0.152", features = ["derive"] }
|
||
|
serde_json = "1.0.93"
|
||
|
tokio = { version = "1.25.0", features = ["full"] }
|
||
|
tower-http = { version = "0.3.5", features = ["trace"] }
|
||
|
tracing = "0.1.37"
|
||
|
tracing-subscriber = { version = "0.3.16", features = ["env-filter"] }
|
||
|
unicode-segmentation = "1.10.1"
|