Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
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
1 change: 1 addition & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -37,6 +37,7 @@ jobs:
filters: |
rust:
- 'apps/desktop/src-tauri/**'
- 'apps/desktop/rust-toolchain.toml'
svelte:
- 'apps/desktop/src/**'
- 'apps/desktop/static/**'
Expand Down
6 changes: 6 additions & 0 deletions apps/desktop/rust-toolchain.toml
Original file line number Diff line number Diff line change
Expand Up @@ -3,3 +3,9 @@
# A compromised rustc release would land transparently otherwise. Bump
# deliberately, with a few days between Rust's release and our pin update.
channel = "1.95.0"
# rustup installs only the minimal profile for a pinned channel by default
# (rustc + cargo + rust-std). CI invokes `cargo fmt` and `cargo clippy`, both
# of which need their respective components installed. Declare them here so
# the runner picks them up automatically — without this, every CI Rust job
# fails at the rustfmt step.
components = ["rustfmt", "clippy"]
Loading