swarm repositories / source
aboutsummaryrefslogtreecommitdiff
path: root/AGENTS.md
diff options
context:
space:
mode:
authormain <main@swarm.moe>2026-06-14 23:49:59 -0400
committermain <main@swarm.moe>2026-06-14 23:49:59 -0400
commitf9f897b32cad3bf10fcc06774887254922eaea74 (patch)
treef90d4800c379a6c20371a05d550c6439c3984df2 /AGENTS.md
parent4735637ead09c4e8d4b9a0409d7ea2538eb9cb40 (diff)
downloadrust_starter-f9f897b32cad3bf10fcc06774887254922eaea74.zip
Scrub hardcoded Rust toolchain defaultsHEADmain
Teach rust-bootstrap to use the latest system Rust toolchain, derive rust-version only from active rustc when needed, and initialize Git before applying the fresh template in an empty directory.
Diffstat (limited to 'AGENTS.md')
-rw-r--r--AGENTS.md2
1 files changed, 1 insertions, 1 deletions
diff --git a/AGENTS.md b/AGENTS.md
index f758059..8075028 100644
--- a/AGENTS.md
+++ b/AGENTS.md
@@ -15,7 +15,7 @@ House rules:
- Keep lint semantics in root `Cargo.toml`; keep runners, CI, and editor config orchestration-only.
- Install project-local `.cargo/config.toml` with `[build] target-dir = "/data/main/cargo-target/<project-slug>"`; do not alter user-global Cargo config.
- Make every member crate opt into `[lints] workspace = true`.
-- Pin an exact stable toolchain in `rust-toolchain.toml`.
+- Use the latest system Rust toolchain; do not copy a hardcoded Rust version from this starter.
- Install a target `AGENTS.md` link to [docs/rust-style-doctrine.md](/home/main/programming/projects/rust_starter/docs/rust-style-doctrine.md).
- Prefer `#[expect(..., reason = "...")]` for temporary local suppressions.
- Retrofit is ratchet work: preserve stricter local policy and justified local carve-outs; do not blindly paste the template.