We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6206086 commit b3f8415Copy full SHA for b3f8415
clippy_dev/Cargo.toml
@@ -9,10 +9,14 @@ clap = "2.33"
9
indoc = "1.0"
10
itertools = "0.10.1"
11
opener = "0.5"
12
-regex = "1.5"
13
shell-escape = "0.1"
14
walkdir = "2.3"
15
cargo_metadata = "0.14"
16
+
17
[features]
18
deny-warnings = []
19
20
+[package.metadata.rust-analyzer]
21
+# This package uses #[feature(rustc_private)]
22
+rustc_private = true
clippy_dev/src/lib.rs
@@ -1,8 +1,11 @@
1
#![feature(once_cell)]
2
+#![feature(rustc_private)]
3
#![cfg_attr(feature = "deny-warnings", deny(warnings))]
4
// warn on lints, that are included in `rust-lang/rust`s bootstrap
5
#![warn(rust_2018_idioms, unused_lifetimes)]
6
7
+extern crate rustc_lexer;
8
use std::path::PathBuf;
pub mod bless;
0 commit comments