Actually just three programming languages in a trenchcoat

use different rust package

+6 -1
+6 -1
.tangled/workflows/rust.yml
··· 6 6 7 7 dependencies: 8 8 nixpkgs: 9 - - "cargo" 9 + - "rustup" 10 10 - "clang_18" 11 11 - "valgrind" 12 12 13 13 steps: 14 + - name: "Install Rust" 15 + command: | 16 + rustup toolchain install stable 17 + rustup component add rustfmt 18 + rustup component add clippy 14 19 - name: "Format" 15 20 command: "cargo fmt -- --check" 16 21 - name: "Clippy"