mirror of
https://github.com/Xevion/Pac-Man.git
synced 2025-12-06 01:15:42 -06:00
Compare commits
3 Commits
b1c22a2973
...
93e0895fb0
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
93e0895fb0 | ||
|
|
a60d309a66 | ||
|
|
203a5c0e2e |
1
.github/workflows/coverage.yaml
vendored
1
.github/workflows/coverage.yaml
vendored
@@ -57,6 +57,7 @@ jobs:
|
|||||||
working-directory: pacman
|
working-directory: pacman
|
||||||
|
|
||||||
- name: Coveralls upload
|
- name: Coveralls upload
|
||||||
|
if: ${{ secrets.COVERALLS_REPO_TOKEN != '' }}
|
||||||
uses: coverallsapp/github-action@v2
|
uses: coverallsapp/github-action@v2
|
||||||
with:
|
with:
|
||||||
github-token: ${{ secrets.COVERALLS_REPO_TOKEN }}
|
github-token: ${{ secrets.COVERALLS_REPO_TOKEN }}
|
||||||
|
|||||||
474
Cargo.lock
generated
474
Cargo.lock
generated
File diff suppressed because it is too large
Load Diff
@@ -51,7 +51,7 @@ s3-tokio = { version = "0.39.6", default-features = false }
|
|||||||
rustls = { version = "0.23", features = ["ring"] }
|
rustls = { version = "0.23", features = ["ring"] }
|
||||||
image = { version = "0.25", features = ["png", "jpeg"] }
|
image = { version = "0.25", features = ["png", "jpeg"] }
|
||||||
sha2 = "0.10"
|
sha2 = "0.10"
|
||||||
mockall = "0.13.1"
|
mockall = "0.14.0"
|
||||||
# validator = { version = "0.16", features = ["derive"] }
|
# validator = { version = "0.16", features = ["derive"] }
|
||||||
|
|
||||||
[dev-dependencies]
|
[dev-dependencies]
|
||||||
@@ -63,7 +63,7 @@ bytes = "1"
|
|||||||
anyhow = "1"
|
anyhow = "1"
|
||||||
axum-test = "18.1.0"
|
axum-test = "18.1.0"
|
||||||
pretty_assertions = "1.4.1"
|
pretty_assertions = "1.4.1"
|
||||||
testcontainers = "0.25.0"
|
testcontainers = "0.25.2"
|
||||||
bon = "3.7.2"
|
bon = "3.7.2"
|
||||||
cookie = "0.18.1"
|
cookie = "0.18.1"
|
||||||
|
|
||||||
|
|||||||
@@ -19,19 +19,19 @@ default-run = "pacman"
|
|||||||
|
|
||||||
[dependencies]
|
[dependencies]
|
||||||
bevy_ecs = "0.16.1"
|
bevy_ecs = "0.16.1"
|
||||||
glam = "0.30.5"
|
glam = "0.30.9"
|
||||||
pathfinding = "4.14"
|
pathfinding = "4.14"
|
||||||
tracing = { version = "0.1.41", 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.20", features = ["env-filter"]}
|
tracing-subscriber = {version = "0.3.20", features = ["env-filter"]}
|
||||||
time = { version = "0.3.43", features = ["formatting", "macros"] }
|
time = { version = "0.3.44", features = ["formatting", "macros"] }
|
||||||
thiserror = "2.0.16"
|
thiserror = "2.0.17"
|
||||||
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.3"
|
parking_lot = "0.12.5"
|
||||||
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.0", features = ["Win32_Security", "Win32_Storage_FileSystem", "Win32_System_Console"] }
|
windows = { version = "0.62.1", features = ["Win32_Security", "Win32_Storage_FileSystem", "Win32_System_Console"] }
|
||||||
windows-sys = { version = "0.61.0", features = ["Win32_System_Console"] }
|
windows-sys = { version = "0.61.2", 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.175" # TODO: Describe why this is required.
|
libc = "0.2.177" # 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.225", features = ["derive"] }
|
serde = { version = "1.0.228", 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
|
||||||
|
|||||||
Reference in New Issue
Block a user