Compare commits

..

1 Commits

Author SHA1 Message Date
dependabot[bot]
46877d73e6 chore(deps): bump actions/checkout in the github-actions group
Bumps the github-actions group with 1 update: [actions/checkout](https://github.com/actions/checkout).


Updates `actions/checkout` from 5 to 6
- [Release notes](https://github.com/actions/checkout/releases)
- [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md)
- [Commits](https://github.com/actions/checkout/compare/v5...v6)

---
updated-dependencies:
- dependency-name: actions/checkout
  dependency-version: '6'
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: github-actions
...

Signed-off-by: dependabot[bot] <support@github.com>
2025-11-24 22:29:52 +00:00
3 changed files with 225 additions and 238 deletions

439
Cargo.lock generated
View File

File diff suppressed because it is too large Load Diff

View File

@@ -41,8 +41,8 @@ dashmap = "6.1"
axum-cookie = "0.2" axum-cookie = "0.2"
async-trait = "0.1" async-trait = "0.1"
jsonwebtoken = { version = "9.3", default-features = false } jsonwebtoken = { version = "9.3", default-features = false }
tracing = "0.1.43" tracing = "0.1.41"
tracing-subscriber = { version = "0.3.22", features = ["env-filter", "json"] } tracing-subscriber = { version = "0.3.20", features = ["env-filter", "json"] }
tracing-futures = { version = "0.2.5", features = ["tokio"] } tracing-futures = { version = "0.2.5", features = ["tokio"] }
tower-http = { version = "0.6", features = ["trace", "fs", "normalize-path"] } tower-http = { version = "0.6", features = ["trace", "fs", "normalize-path"] }
time = { version = "0.3", features = ["macros", "formatting"] } time = { version = "0.3", features = ["macros", "formatting"] }

View File

@@ -19,19 +19,19 @@ default-run = "pacman"
[dependencies] [dependencies]
bevy_ecs = "0.16.1" bevy_ecs = "0.16.1"
glam = "0.30.9" glam = "0.30.5"
pathfinding = "4.14" pathfinding = "4.14"
tracing = { version = "0.1.43", features = ["max_level_trace", "release_max_level_debug"]} tracing = { version = "0.1.41", features = ["max_level_trace", "release_max_level_debug"]}
tracing-error = "0.2.0" tracing-error = "0.2.0"
tracing-subscriber = {version = "0.3.22", features = ["env-filter"]} tracing-subscriber = {version = "0.3.20", features = ["env-filter"]}
time = { version = "0.3.44", features = ["formatting", "macros"] } time = { version = "0.3.43", features = ["formatting", "macros"] }
thiserror = "2.0.17" thiserror = "2.0.16"
anyhow = "1.0" anyhow = "1.0"
smallvec = "1.15.1" smallvec = "1.15.1"
bitflags = "2.9.4" bitflags = "2.9.4"
micromap = "0.1.0" micromap = "0.1.0"
circular-buffer = "=1.1.0" circular-buffer = "=1.1.0"
parking_lot = "0.12.5" parking_lot = "0.12.3"
strum = "0.27.2" strum = "0.27.2"
strum_macros = "0.27.2" strum_macros = "0.27.2"
thousands = "0.2.0" thousands = "0.2.0"
@@ -42,8 +42,8 @@ phf = { version = "0.13.1", features = ["macros"] }
# Windows-specific dependencies # Windows-specific dependencies
[target.'cfg(windows)'.dependencies] [target.'cfg(windows)'.dependencies]
# Used for customizing console output on Windows; both are required due to the `windows` crate having poor Result handling with `GetStdHandle`. # Used for customizing console output on Windows; both are required due to the `windows` crate having poor Result handling with `GetStdHandle`.
windows = { version = "0.62.1", features = ["Win32_Security", "Win32_Storage_FileSystem", "Win32_System_Console"] } windows = { version = "0.62.0", features = ["Win32_Security", "Win32_Storage_FileSystem", "Win32_System_Console"] }
windows-sys = { version = "0.61.2", features = ["Win32_System_Console"] } windows-sys = { version = "0.61.0", features = ["Win32_System_Console"] }
# Desktop-specific dependencies # Desktop-specific dependencies
[target.'cfg(not(target_os = "emscripten"))'.dependencies] [target.'cfg(not(target_os = "emscripten"))'.dependencies]
@@ -59,7 +59,7 @@ spin_sleep = "1.3.3"
sdl2 = { version = "0.38", default-features = false, features = ["image", "ttf", "gfx", "mixer", "unsafe_textures"] } sdl2 = { version = "0.38", default-features = false, features = ["image", "ttf", "gfx", "mixer", "unsafe_textures"] }
# TODO: Document why Emscripten cannot use `os_rng`. # TODO: Document why Emscripten cannot use `os_rng`.
rand = { version = "0.9.2", default-features = false, features = ["small_rng", "os_rng"] } rand = { version = "0.9.2", default-features = false, features = ["small_rng", "os_rng"] }
libc = "0.2.177" # TODO: Describe why this is required. libc = "0.2.175" # TODO: Describe why this is required.
[dev-dependencies] [dev-dependencies]
pretty_assertions = "1.4.1" pretty_assertions = "1.4.1"
@@ -67,7 +67,7 @@ speculoos = "0.13.0"
[build-dependencies] [build-dependencies]
phf = { version = "0.13.1", features = ["macros"] } phf = { version = "0.13.1", features = ["macros"] }
serde = { version = "1.0.228", features = ["derive"] } serde = { version = "1.0.225", features = ["derive"] }
serde_json = "1.0.145" serde_json = "1.0.145"
# phf generates runtime code which machete will not detect # phf generates runtime code which machete will not detect