diff options
| author | Jason Newcomb <jsnewcomb@pm.me> | 2024-08-06 10:12:49 -0400 |
|---|---|---|
| committer | Jason Newcomb <jsnewcomb@pm.me> | 2024-08-06 10:46:39 -0400 |
| commit | 4e57b2c46f6f0a6c19a563e36e2bc9158bddd7b6 (patch) | |
| tree | 69537bf9396e67d24ee3fc0cf6d5cc8ebde1665a /clippy_lints | |
| parent | c082bc2cb85313901ed3565fcd285592ed93df0f (diff) | |
Use `-D warnings` instead of `deny-warnings` feature.
Diffstat (limited to 'clippy_lints')
| -rw-r--r-- | clippy_lints/Cargo.toml | 1 | ||||
| -rw-r--r-- | clippy_lints/src/lib.rs | 1 |
2 files changed, 0 insertions, 2 deletions
diff --git a/clippy_lints/Cargo.toml b/clippy_lints/Cargo.toml index eb04c006f89..99ed93468a0 100644 --- a/clippy_lints/Cargo.toml +++ b/clippy_lints/Cargo.toml @@ -32,7 +32,6 @@ url = "2.2" walkdir = "2.3" [features] -deny-warnings = ["clippy_config/deny-warnings", "clippy_utils/deny-warnings"] # build clippy with internal lints enabled, off by default internal = ["serde_json", "tempfile", "regex"] diff --git a/clippy_lints/src/lib.rs b/clippy_lints/src/lib.rs index 3aee6cfa5c0..a0d77a58ad1 100644 --- a/clippy_lints/src/lib.rs +++ b/clippy_lints/src/lib.rs @@ -14,7 +14,6 @@ #![feature(stmt_expr_attributes)] #![feature(unwrap_infallible)] #![recursion_limit = "512"] -#![cfg_attr(feature = "deny-warnings", deny(warnings))] #