Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
21 commits
Select commit Hold shift + click to select a range
65c6bcb
Update to Rerun 0.23
Wumpf Jul 15, 2025
a7880b7
bump version number
Wumpf Jul 15, 2025
903b6bf
clippy fixes
Wumpf Jul 15, 2025
150954d
0.24 port, basics without improving anything
Wumpf Jul 15, 2025
965ad2c
make descriptor usage a bit nicer
Wumpf Jul 15, 2025
968ff9b
clippy fixes
Wumpf Jul 15, 2025
7a343f7
Stage 1/4: rerun 0.24 against crates.io (unblock the abandoned 0.24 p…
haydenflinner Aug 2, 2026
801bd82
Stage 2/4: bump rerun 0.24 -> 0.35
haydenflinner Aug 2, 2026
84e064e
Stage 3/4: bump bevy 0.15 -> 0.17
haydenflinner Aug 2, 2026
7220af4
Stage 4/4: bump bevy 0.17 -> 0.19
haydenflinner Aug 2, 2026
0cb2d0e
Update README version references for the 0.35 bump
haydenflinner Aug 2, 2026
35ee87f
Exclude resource-backed pseudo-entities from the sync walk
haydenflinner Aug 2, 2026
8446859
alien_cake_addict: group tiles under a board parent, record input as …
haydenflinner Aug 2, 2026
4596eac
Bump Rust MSRV, fix README nits, and point examples README at bevy 0.19
haydenflinner Aug 11, 2026
e38e773
ci: install libwayland-dev and bump cargo-deny-action to v2
emilk Aug 18, 2026
fad2442
Merge branch 'emilk/ci-wayland-and-cargo-deny-v2' into bump-rerun-0.3…
emilk Aug 18, 2026
1fdb3ca
ci: make cargo-deny pass against rerun 0.35 and bevy 0.19
emilk Aug 18, 2026
6d4576b
Bump MSRV to 1.95 and make cargo-deny pass
emilk Aug 18, 2026
f9eb5bb
Replace cargo-cranky with workspace lints
emilk Aug 18, 2026
695881b
Fix the lints that Rust 1.95 and the new lint set report
emilk Aug 18, 2026
6c2eabf
Merge branch 'emilk/ci-wayland-and-cargo-deny-v2' into bump-rerun-0.3…
emilk Aug 18, 2026
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
17 changes: 6 additions & 11 deletions .github/workflows/rust.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,14 +17,14 @@ jobs:
- uses: actions-rs/toolchain@v1
with:
profile: default
toolchain: 1.82.0
toolchain: 1.95.0
override: true

- name: Install packages (Linux)
uses: awalsh128/cache-apt-pkgs-action@v1.5.1
with:
# Random stuff required by `bevy`
packages: libxcb-render0-dev libxcb-shape0-dev libxcb-xfixes0-dev libxkbcommon-dev libssl-dev libasound2-dev libudev-dev
packages: libxcb-render0-dev libxcb-shape0-dev libxcb-xfixes0-dev libxkbcommon-dev libssl-dev libasound2-dev libudev-dev libwayland-dev
version: 1.0
execute_install_scripts: true

Expand All @@ -37,11 +37,6 @@ jobs:
command: fmt
args: --all -- --check

- name: Install cargo-cranky
uses: baptiste0928/cargo-install@v1
with:
crate: cargo-cranky

- name: check --all-features
uses: actions-rs/cargo@v1
with:
Expand Down Expand Up @@ -90,10 +85,10 @@ jobs:
command: test
args: --all-features

- name: Cranky
- name: Clippy
uses: actions-rs/cargo@v1
with:
command: cranky
command: clippy
args: --all-targets --all-features -- -D warnings

# ---------------------------------------------------------------------------
Expand All @@ -102,8 +97,8 @@ jobs:
runs-on: ubuntu-22.04
steps:
- uses: actions/checkout@v4
- uses: EmbarkStudios/cargo-deny-action@v1
- uses: EmbarkStudios/cargo-deny-action@v2
with:
rust-version: "1.82.0"
rust-version: "1.95.0"
log-level: warn
command: check
Loading
Loading