quick_search/rust-toolchain.toml
= b8eedf2137
Some checks are pending
CI / linux (push) Waiting to run
CI / windows-cross (push) Waiting to run
CI / release (push) Blocked by required conditions
Added better visual feeback for adding file extensions to ignore patterns and a prompt to save modified settings.
Added a Forgejo CI pipeline
2026-08-04 03:27:05 -04:00

12 lines
583 B
TOML

# Pinning the toolchain keeps CI from silently tracking whatever `stable` became
# overnight, and rustup honours this file automatically, so build.sh, build.bat
# and a plain `cargo build` all pick it up with no extra arguments.
#
# The floor is set by eframe/egui 0.32, which declare rust-version = "1.85".
#
# Listing the Windows target here is what lets the cross-compile CI job skip
# `rustup target add`: rustup installs everything named below on first use.
[toolchain]
channel = "1.94.1"
components = ["rustfmt"]
targets = ["x86_64-unknown-linux-gnu", "x86_64-pc-windows-gnu"]