summaryrefslogtreecommitdiff
path: root/server/registry
diff options
context:
space:
mode:
authormetamuffin <metamuffin@disroot.org>2024-09-28 11:56:45 +0200
committermetamuffin <metamuffin@disroot.org>2024-09-28 11:56:50 +0200
commit045e34f78a498230f39101ce215424fcdcec9eb0 (patch)
tree7900e35b910a15f452ab14a7ca5630561df5d220 /server/registry
parent0889f61f1d761726fcec17a3a2a0fb45b66c2116 (diff)
downloadhurrycurry-045e34f78a498230f39101ce215424fcdcec9eb0.tar
hurrycurry-045e34f78a498230f39101ce215424fcdcec9eb0.tar.bz2
hurrycurry-045e34f78a498230f39101ce215424fcdcec9eb0.tar.zst
update cargo stuff
Diffstat (limited to 'server/registry')
-rw-r--r--server/registry/Cargo.toml8
1 files changed, 4 insertions, 4 deletions
diff --git a/server/registry/Cargo.toml b/server/registry/Cargo.toml
index c616174f..49f58a46 100644
--- a/server/registry/Cargo.toml
+++ b/server/registry/Cargo.toml
@@ -6,16 +6,16 @@ edition = "2021"
[dependencies]
log = "0.4.22"
env_logger = "0.11.5"
-anyhow = "1.0.86"
+anyhow = "1.0.89"
rocket = { version = "0.5.1", features = ["json"] }
-tokio = { version = "1.39.2", features = ["full"] }
+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.23.1", features = [
+tokio-tungstenite = { version = "0.24.0", features = [
"rustls-tls-native-roots",
] }
-rustls = { version = "0.23.12", features = ["ring"] }
+rustls = { version = "0.23.13", features = ["ring"] }
hurrycurry-protocol = { path = "../protocol" }
hurrycurry-client-lib = { path = "../client-lib" }