blob: 2eeebb30f8703764c56fac821f2f42acb9f4f33b (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
[package]
name = "hurrycurry-registry"
version = "0.1.0"
edition = "2021"
[dependencies]
log = "0.4.22"
env_logger = "0.11.5"
anyhow = "1.0.86"
rocket = { version = "0.5.1", features = ["json"] }
tokio = { version = "1.39.2", features = ["full"] }
serde_json = "1.0.128"
markup = "0.15.0"
serde = { version = "1.0.210", features = ["derive"] }
tokio-tungstenite = { version = "0.23.1", features = [
"rustls-tls-native-roots",
] }
hurrycurry-protocol = { path = "../protocol" }
hurrycurry-client-lib = { path = "../client-lib" }
|