this repo has no description
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

style: pin rustfmt edition to 2024, simplify treefmt rustfmt config

+3 -7
+1
.rustfmt.toml
··· 1 + edition = "2024"
+1 -1
Cargo.toml
··· 1 1 [package] 2 2 name = "cmprss" 3 3 version = "0.2.0" 4 - edition = "2021" 4 + edition = "2024" 5 5 authors = ["Patrick Jackson <patrick@jackson.dev>"] 6 6 readme = "README.md" 7 7 license = "MIT"
+1 -6
flake.nix
··· 137 137 programs = { 138 138 alejandra.enable = true; 139 139 prettier.enable = true; 140 - rustfmt = { 141 - enable = true; 142 - package = pkgs.writeShellScriptBin "rustfmt" '' 143 - exec ${fenixStable.rustfmt}/bin/rustfmt "$@" 144 - ''; 145 - }; 140 + rustfmt.enable = true; 146 141 }; 147 142 }; 148 143