22 lines
793 B
TOML
22 lines
793 B
TOML
[package]
|
|
name = "chs"
|
|
version = "0.1.0"
|
|
edition = "2021"
|
|
|
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
|
|
|
[dependencies]
|
|
axum = { version = "0.5.17", features = ["ws"] }
|
|
futures = "0.3.25"
|
|
mime_guess = "2.0.4"
|
|
rayon = "1.5.3"
|
|
rust-embed = "6.4.2"
|
|
serde = { version = "1.0.147", features = ["derive"] }
|
|
serde_json = "1.0.87"
|
|
thiserror = "1.0.37"
|
|
tokio = { version = "1.21.2", features = ["full"] }
|
|
tower-http = { version = "0.3.4", features = ["trace", "fs"] }
|
|
tracing = "0.1.37"
|
|
tracing-subscriber = { version = "0.3.16", features = ["env-filter"] }
|
|
uuid = { version = "1.2.1", features = ["v4", "serde"] }
|
|
xtra = { git = "https://github.com/Restioson/xtra.git", version = "0.6.0", features = ["tokio", "instrumentation", "macros", "sink"] }
|