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 85531c9 commit 903c582
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/gramlang/gram"
repository = "https://github.com/gramlang/gram"
readme = "README.md"

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

[dependencies]
colored = "1"
num-bigint = "0.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 assertions;
mod de_bruijn;
mod equality;
Expand Down

0 comments on commit 903c582

Please sign in to comment.