blob: 520e3d24aab942655dd8e1344a3bd5d8846c94dc (
plain)
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
30
31
32
|
[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" }
|