[package] name = "hurrycurry-registry" version = "0.1.0" edition = "2021" [dependencies] log = "0.4.22" env_logger = "0.11.5" anyhow = "1.0.89" rocket = { version = "0.5.1", features = ["json"] } tokio = { version = "1.40.0", features = ["full"] } serde_json = "1.0.128" markup = "0.15.0" serde = { version = "1.0.210", features = ["derive"] } tokio-tungstenite = { version = "0.24.0", features = [ "rustls-tls-native-roots", ] } rustls = { version = "0.23.13", features = ["ring"] } hurrycurry-protocol = { path = "../protocol" } hurrycurry-client-lib = { path = "../client-lib" }