|
| 1 | +error: `feature = "cargo-clippy"` was replaced by `clippy` |
| 2 | + --> $DIR/cfg_attr_cargo_clippy.rs:5:12 |
| 3 | + | |
| 4 | +LL | #[cfg_attr(feature = "cargo-clippy", derive(Debug))] |
| 5 | + | ^^^^^^^^^^^^^^^^^^^^^^^^ help: replace with: `clippy` |
| 6 | + | |
| 7 | + = note: `-D clippy::deprecated-clippy-cfg-attr` implied by `-D warnings` |
| 8 | + = help: to override `-D warnings` add `#[allow(clippy::deprecated_clippy_cfg_attr)]` |
| 9 | + |
| 10 | +error: `feature = "cargo-clippy"` was replaced by `clippy` |
| 11 | + --> $DIR/cfg_attr_cargo_clippy.rs:6:16 |
| 12 | + | |
| 13 | +LL | #[cfg_attr(not(feature = "cargo-clippy"), derive(Debug))] |
| 14 | + | ^^^^^^^^^^^^^^^^^^^^^^^^ help: replace with: `clippy` |
| 15 | + |
| 16 | +error: `feature = "cargo-clippy"` was replaced by `clippy` |
| 17 | + --> $DIR/cfg_attr_cargo_clippy.rs:7:7 |
| 18 | + | |
| 19 | +LL | #[cfg(feature = "cargo-clippy")] |
| 20 | + | ^^^^^^^^^^^^^^^^^^^^^^^^ help: replace with: `clippy` |
| 21 | + |
| 22 | +error: `feature = "cargo-clippy"` was replaced by `clippy` |
| 23 | + --> $DIR/cfg_attr_cargo_clippy.rs:8:11 |
| 24 | + | |
| 25 | +LL | #[cfg(not(feature = "cargo-clippy"))] |
| 26 | + | ^^^^^^^^^^^^^^^^^^^^^^^^ help: replace with: `clippy` |
| 27 | + |
| 28 | +error: `feature = "cargo-clippy"` was replaced by `clippy` |
| 29 | + --> $DIR/cfg_attr_cargo_clippy.rs:9:11 |
| 30 | + | |
| 31 | +LL | #[cfg(any(feature = "cargo-clippy"))] |
| 32 | + | ^^^^^^^^^^^^^^^^^^^^^^^^ help: replace with: `clippy` |
| 33 | + |
| 34 | +error: `feature = "cargo-clippy"` was replaced by `clippy` |
| 35 | + --> $DIR/cfg_attr_cargo_clippy.rs:10:11 |
| 36 | + | |
| 37 | +LL | #[cfg(all(feature = "cargo-clippy"))] |
| 38 | + | ^^^^^^^^^^^^^^^^^^^^^^^^ help: replace with: `clippy` |
| 39 | + |
| 40 | +error: `feature = "cargo-clippy"` was replaced by `clippy` |
| 41 | + --> $DIR/cfg_attr_cargo_clippy.rs:3:13 |
| 42 | + | |
| 43 | +LL | #![cfg_attr(feature = "cargo-clippy", doc = "a")] |
| 44 | + | ^^^^^^^^^^^^^^^^^^^^^^^^ help: replace with: `clippy` |
| 45 | + |
| 46 | +error: aborting due to 7 previous errors |
| 47 | + |
0 commit comments