feat: initialize rust project scaffold

Add minimal Rust project structure for bespoke site compiler:

- rust-toolchain.toml: stable channel with rustfmt, clippy, rust-src
- Cargo.toml: nrd-sh v0.1.0 with pulldown-cmark, gray_matter, maud
- src/main.rs: stub entrypoint

Verified with cargo check.
This commit is contained in:
Timothy DeHerrera
2026-01-24 18:41:59 -07:00
parent 3545b18875
commit 0be71ca374
5 changed files with 340 additions and 0 deletions

3
rust-toolchain.toml Normal file
View File

@@ -0,0 +1,3 @@
[toolchain]
channel = "stable"
components = ["rustfmt", "clippy", "rust-src"]