[package] name = "hurrycurry-server" version = "0.2.0" edition = "2021" default-run = "hurrycurry-server" [dependencies] log = "0.4.22" env_logger = "0.11.5" anyhow = "1.0.86" serde = { version = "1.0.205", features = ["derive"] } tokio = { version = "1.39.2", features = ["full"] } serde_json = "1.0.122" tokio-tungstenite = "0.23.1" futures-util = "0.3.30" serde_yml = "0.0.11" rand = "0.9.0-alpha.2" shlex = "1.3.0" clap = { version = "4.5.15", features = ["derive"] } reqwest = { version = "0.12.7", default-features = false, features = [ "json", "http2", "charset", "rustls-tls-native-roots", ] } pollster = "0.3.0" bincode = "2.0.0-rc.3" xdg = "2.5.2" hurrycurry-protocol = { path = "protocol" } hurrycurry-client-lib = { path = "client-lib" } hurrycurry-bot = { path = "bot" }