blob: ec868739bb1fa2ad4cb72b7230c63d39c935aab3 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
[package]
name = "hurrycurry-registry"
version = "3.0.1"
edition = "2024"
[dependencies]
log = "0.4.28"
env_logger = "0.11.8"
anyhow = "1.0.99"
rocket = { version = "0.5.1", features = ["json"] }
tokio = { version = "1.47.1", features = ["full"] }
serde_json = "1.0.145"
markup = "0.15.0"
serde = { version = "1.0.225", features = ["derive"] }
tokio-tungstenite = { version = "0.27.0", features = [
"rustls-tls-native-roots",
] }
rustls = { version = "0.23.31", features = ["ring"] }
hurrycurry-protocol = { path = "../protocol" }
hurrycurry-game-core = { path = "../game-core" }
|