Tell rustfmt to use the 2024 edition

This commit is contained in:
bjorn3 2025-04-04 10:46:47 +00:00
parent b0c23f78c9
commit 829413d208

View file

@ -34,9 +34,9 @@ jobs:
- name: Rustfmt
run: |
cargo fmt --check
rustfmt --check build_system/main.rs
rustfmt --check example/*
rustfmt --check scripts/*.rs
rustfmt --check --edition 2024 build_system/main.rs
rustfmt --check --edition 2024 example/*
rustfmt --check --edition 2024 scripts/*.rs
test: