diff options
Diffstat (limited to 'server/registry/Cargo.toml')
-rw-r--r-- | server/registry/Cargo.toml | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/server/registry/Cargo.toml b/server/registry/Cargo.toml index 9108f056..3b1c7137 100644 --- a/server/registry/Cargo.toml +++ b/server/registry/Cargo.toml @@ -4,18 +4,18 @@ version = "2.3.1" edition = "2021" [dependencies] -log = "0.4.22" -env_logger = "0.11.5" -anyhow = "1.0.89" +log = "0.4.27" +env_logger = "0.11.8" +anyhow = "1.0.98" rocket = { version = "0.5.1", features = ["json"] } -tokio = { version = "1.40.0", features = ["full"] } -serde_json = "1.0.128" +tokio = { version = "1.45.1", features = ["full"] } +serde_json = "1.0.140" markup = "0.15.0" -serde = { version = "1.0.210", features = ["derive"] } -tokio-tungstenite = { version = "0.24.0", features = [ +serde = { version = "1.0.219", features = ["derive"] } +tokio-tungstenite = { version = "0.26.2", features = [ "rustls-tls-native-roots", ] } -rustls = { version = "0.23.13", features = ["ring"] } +rustls = { version = "0.23.27", features = ["ring"] } hurrycurry-protocol = { path = "../protocol" } hurrycurry-client-lib = { path = "../client-lib" } |