Skip to content

Commit

Permalink
Update the way lints are configured to use Rust's new manifest-lint
Browse files Browse the repository at this point in the history
… feature
  • Loading branch information
stepchowfun committed Nov 17, 2023
1 parent 07f87f0 commit 6ba60f5
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 2 deletions.
5 changes: 5 additions & 0 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,11 @@ homepage = "https://github.com/stepchowfun/toast"
repository = "https://github.com/stepchowfun/toast"
readme = "README.md"

[lints]
clippy.all = "deny"
clippy.pedantic = "deny"
rust.warnings = "deny"

[dependencies]
atty = "0.2"
colored = "2"
Expand Down
2 changes: 0 additions & 2 deletions src/main.rs
Original file line number Diff line number Diff line change
@@ -1,5 +1,3 @@
#![deny(clippy::all, clippy::pedantic, warnings)]

mod cache;
mod config;
mod docker;
Expand Down

0 comments on commit 6ba60f5

Please sign in to comment.