Skip to content

Commit

Permalink
deny rust warnings
Browse files Browse the repository at this point in the history
  • Loading branch information
mightyiam committed Nov 21, 2024
1 parent 4686d2c commit ed374ef
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
2 changes: 1 addition & 1 deletion crates/builder/src/pages.rs
Original file line number Diff line number Diff line change
Expand Up @@ -8,5 +8,5 @@ use crate::mob::Mob;
pub(crate) fn all(mobs: Vec<Mob>) -> impl Iterator<Item = FileSpec> {
[index::page(&mobs), add::page()]
.into_iter()
.chain(mobs.into_iter().map(|m| Mob::page(m)))
.chain(mobs.into_iter().map(Mob::page))
}
1 change: 1 addition & 0 deletions nci.nix
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,7 @@
nci.projects.default = {
numtideDevshell = "default";
path = ./.;
drvConfig.env.RUSTFLAGS = "--deny warnings";
};

devshells.default = {
Expand Down

0 comments on commit ed374ef

Please sign in to comment.