chore: update to edition 2024; update packages; rename some stuff

This commit is contained in:
Jef Roosens 2025-06-06 12:33:26 +02:00
parent 82e52bc8f9
commit 275d249320
No known key found for this signature in database
GPG key ID: 21FD3D77D56BAF49
48 changed files with 359 additions and 208 deletions

16
gpodder_sqlite/Justfile Normal file
View file

@ -0,0 +1,16 @@
build:
cargo build --frozen
alias b := build
test:
cargo test --frozen
alias t := test
check:
cargo fmt --check
cargo clippy \
--frozen \
-- \
--no-deps \
--deny 'clippy::all'
alias c := check