# Pin the toolchain so every `cargo` invocation here uses the exact same # compiler — reproducible gate across machines and CI. rustup reads this and # installs the version + components on demand. Bump deliberately. [toolchain] channel = "1.97.1" # latest stable # clippy + rustfmt for the lint/format gate; llvm-tools-preview ships the # profdata/profcov binaries cargo-llvm-cov shells out to (the `cov` alias # fails on a fresh machine without it). components = ["rustfmt", "clippy", "llvm-tools-preview"] profile = "minimal"