diff --git a/Cargo.toml b/Cargo.toml index d01f2d5..d8ae0d6 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -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" diff --git a/src/main.rs b/src/main.rs index e5b5c43..0a41e67 100644 --- a/src/main.rs +++ b/src/main.rs @@ -1,5 +1,3 @@ -#![deny(clippy::all, clippy::pedantic, warnings)] - mod assertions; mod de_bruijn; mod equality;