summaryrefslogtreecommitdiff
path: root/server
diff options
context:
space:
mode:
Diffstat (limited to 'server')
-rw-r--r--server/Cargo.toml14
-rw-r--r--server/bot/Cargo.toml6
-rw-r--r--server/client-lib/Cargo.toml10
-rw-r--r--server/protocol/Cargo.toml4
-rw-r--r--server/registry/Cargo.toml8
-rw-r--r--server/replaytool/Cargo.toml14
6 files changed, 28 insertions, 28 deletions
diff --git a/server/Cargo.toml b/server/Cargo.toml
index 978de4c6..38db0bdd 100644
--- a/server/Cargo.toml
+++ b/server/Cargo.toml
@@ -7,16 +7,16 @@ default-run = "hurrycurry-server"
[dependencies]
log = "0.4.22"
env_logger = "0.11.5"
-anyhow = "1.0.86"
-serde = { version = "1.0.205", features = ["derive"] }
-tokio = { version = "1.39.2", features = ["full"] }
-serde_json = "1.0.122"
-tokio-tungstenite = "0.23.1"
+anyhow = "1.0.89"
+serde = { version = "1.0.210", features = ["derive"] }
+tokio = { version = "1.40.0", features = ["full"] }
+serde_json = "1.0.128"
+tokio-tungstenite = "0.24.0"
futures-util = "0.3.30"
-serde_yml = "0.0.11"
+serde_yml = "0.0.12"
rand = "0.9.0-alpha.2"
shlex = "1.3.0"
-clap = { version = "4.5.15", features = ["derive"] }
+clap = { version = "4.5.18", features = ["derive"] }
reqwest = { version = "0.12.7", optional = true, default-features = false, features = [
"json",
"http2",
diff --git a/server/bot/Cargo.toml b/server/bot/Cargo.toml
index 3143ab55..c8d60270 100644
--- a/server/bot/Cargo.toml
+++ b/server/bot/Cargo.toml
@@ -7,8 +7,8 @@ edition = "2021"
hurrycurry-client-lib = { path = "../client-lib", features = ["tokio-network"] }
hurrycurry-protocol = { path = "../protocol" }
log = "0.4.22"
-anyhow = "1.0.86"
+anyhow = "1.0.89"
env_logger = "0.11.5"
-rustls = { version = "0.23.12", features = ["ring"] }
-clap = { version = "4.5.15", features = ["derive"] }
+rustls = { version = "0.23.13", features = ["ring"] }
+clap = { version = "4.5.18", features = ["derive"] }
rand = "0.9.0-alpha.2"
diff --git a/server/client-lib/Cargo.toml b/server/client-lib/Cargo.toml
index 291c07f4..517dbba0 100644
--- a/server/client-lib/Cargo.toml
+++ b/server/client-lib/Cargo.toml
@@ -5,17 +5,17 @@ edition = "2021"
[dependencies]
hurrycurry-protocol = { path = "../protocol" }
-tungstenite = { version = "0.23.0", optional = true, features = [
+tungstenite = { version = "0.24.0", optional = true, features = [
"rustls-tls-native-roots",
] }
-tokio-tungstenite = { version = "0.23.1", optional = true, features = [
+tokio-tungstenite = { version = "0.24.0", optional = true, features = [
"rustls-tls-native-roots",
] }
-tokio = { version = "1.39.2", features = ["net", "sync"], optional = true }
-serde_json = "1.0.122"
+tokio = { version = "1.40.0", features = ["net", "sync"], optional = true }
+serde_json = "1.0.128"
bincode = "2.0.0-rc.3"
log = "0.4.22"
-anyhow = "1.0.86"
+anyhow = "1.0.89"
futures-util = { version = "0.3.30", optional = true }
[features]
diff --git a/server/protocol/Cargo.toml b/server/protocol/Cargo.toml
index 9c3f26e8..2a7a989c 100644
--- a/server/protocol/Cargo.toml
+++ b/server/protocol/Cargo.toml
@@ -4,6 +4,6 @@ version = "0.1.0"
edition = "2021"
[dependencies]
-serde = { version = "1.0.205", features = ["derive"] }
-glam = { version = "0.28.0", features = ["serde"] }
+serde = { version = "1.0.210", features = ["derive"] }
+glam = { version = "0.29.0", features = ["serde"] }
bincode = { version = "2.0.0-rc.3", features = ["serde", "derive"] }
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" }
diff --git a/server/replaytool/Cargo.toml b/server/replaytool/Cargo.toml
index fb27ed4b..9d5ac20a 100644
--- a/server/replaytool/Cargo.toml
+++ b/server/replaytool/Cargo.toml
@@ -6,17 +6,17 @@ edition = "2021"
[dependencies]
log = "0.4.22"
env_logger = "0.11.5"
-anyhow = "1.0.86"
-serde = { version = "1.0.205", features = ["derive"] }
-tokio = { version = "1.39.2", features = ["full"] }
-serde_json = "1.0.122"
-tokio-tungstenite = { version = "0.23.1", features = [
+anyhow = "1.0.89"
+serde = { version = "1.0.210", features = ["derive"] }
+tokio = { version = "1.40.0", features = ["full"] }
+serde_json = "1.0.128"
+tokio-tungstenite = { version = "0.24.0", features = [
"rustls-tls-native-roots",
] }
futures-util = "0.3.30"
rand = "0.9.0-alpha.2"
-clap = { version = "4.5.15", features = ["derive"] }
+clap = { version = "4.5.18", features = ["derive"] }
async-compression = { version = "0.4.12", features = ["zstd", "tokio"] }
-rustls = { version = "0.23.12", features = ["ring"] }
+rustls = { version = "0.23.13", features = ["ring"] }
hurrycurry-protocol = { path = "../protocol" }