diff --git a/.github/dependabot.yml b/.github/dependabot.yml deleted file mode 100644 index fd11b04c..00000000 --- a/.github/dependabot.yml +++ /dev/null @@ -1,26 +0,0 @@ -version: 2 -updates: - - package-ecosystem: "cargo" - directory: "/server/central" - schedule: - interval: "daily" - - package-ecosystem: "cargo" - directory: "/server/derive" - schedule: - interval: "daily" - - package-ecosystem: "cargo" - directory: "/server/esp" - schedule: - interval: "daily" - - package-ecosystem: "cargo" - directory: "/server/game" - schedule: - interval: "daily" - - package-ecosystem: "cargo" - directory: "/server/shared" - schedule: - interval: "daily" - - package-ecosystem: "cargo" - directory: "/server" - schedule: - interval: "daily" diff --git a/mod.json b/mod.json index 206f9e24..2ff43a7a 100644 --- a/mod.json +++ b/mod.json @@ -2,7 +2,7 @@ "id": "dankmeme.globed2", "name": "Globed", "developer": "dankmeme", - "geode": "4.0.1", + "geode": "4.1.0", "version": "v1.7.2", "gd": { "win": "2.2074", @@ -68,4 +68,4 @@ "resources/sounds/*.ogg" ] } -} \ No newline at end of file +} diff --git a/server/central/Cargo.toml b/server/central/Cargo.toml index e3dc37e2..0ba91484 100644 --- a/server/central/Cargo.toml +++ b/server/central/Cargo.toml @@ -13,7 +13,7 @@ ipnet = "2.10.1" iprange = "0.6.7" serde = { version = "1.0.215", features = ["serde_derive"] } serde_json = "1.0.133" -tokio = { version = "1.41.1", features = ["full"] } +tokio = { version = "1.42.0", features = ["full"] } json_comments = "0.2.2" rocket = { version = "0.5.1", features = ["json"] } rocket_db_pools = { version = "0.2.0", features = ["sqlx_sqlite"] } diff --git a/server/changelog.md b/server/changelog.md deleted file mode 100644 index 2e2b5711..00000000 --- a/server/changelog.md +++ /dev/null @@ -1,7 +0,0 @@ -# Server Changelog - -## v1.4.0 - -* Bump protocol version to v6 (breaks compatibility with mod versions before v1.4.x) -* Add `skip_name_check` central server config option to ignore account name mismatch when verifying accounts -* Add `refresh_interval` central server config option to control time between requests to the GD server for account verification purposes diff --git a/server/game/Cargo.toml b/server/game/Cargo.toml index f95187e4..ddac9fce 100644 --- a/server/game/Cargo.toml +++ b/server/game/Cargo.toml @@ -16,11 +16,11 @@ serde_json = "1.0.133" futures-util = "0.3.31" console-subscriber = { version = "0.4.1", features = ["parking_lot"] } -# tokio_tracing = { package = "tokio", version = "1.41.1", features = [ +# tokio_tracing = { package = "tokio", version = "1.42.0", features = [ # "full", # "tracing", # ], optional = true } -tokio = { version = "1.41.1", features = ["full"], optional = true } +tokio = { version = "1.42.0", features = ["full"], optional = true } aho-corasick = "1.1.3" [dev-dependencies] diff --git a/server/shared/Cargo.toml b/server/shared/Cargo.toml index 78b3727c..eb9bf1f9 100644 --- a/server/shared/Cargo.toml +++ b/server/shared/Cargo.toml @@ -7,7 +7,7 @@ edition = "2024" esp = { path = "../esp" } globed-derive = { path = "../derive" } -anyhow = "1.0.93" +anyhow = "1.0.94" base64 = "0.22.1" colored = "2.1.0" crypto_box = { version = "0.9.1", features = ["std", "chacha20"] } @@ -20,7 +20,7 @@ reqwest = { version = "0.12.9", default-features = false, features = [ "rustls-tls", ] } sha2 = "0.11.0-pre.4" -time = { version = "0.3.36", features = ["formatting"] } +time = { version = "0.3.37", features = ["formatting"] } serde = { version = "1.0.215", features = ["derive"] } crypto_secretbox = { version = "0.1.1", features = ["chacha20"] } serde_json = "1.0.133"