summaryrefslogtreecommitdiff
path: root/server/registry/Cargo.toml
blob: 14eec0aad14e888df3e78baffb95ccae545c15ed (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 = "2.3.3"
edition = "2021"

[dependencies]
log = "0.4.27"
env_logger = "0.11.8"
anyhow = "1.0.98"
rocket = { version = "0.5.1", features = ["json"] }
tokio = { version = "1.45.1", features = ["full"] }
serde_json = "1.0.140"
markup = "0.15.0"
serde = { version = "1.0.219", features = ["derive"] }
tokio-tungstenite = { version = "0.26.2", features = [
    "rustls-tls-native-roots",
] }
rustls = { version = "0.23.27", features = ["ring"] }

hurrycurry-protocol = { path = "../protocol" }
hurrycurry-client-lib = { path = "../client-lib" }