mirror of
https://github.com/rust-lang/rust-clippy
synced 2024-11-11 07:34:18 +00:00
13 lines
416 B
Rust
13 lines
416 B
Rust
#![allow(dead_code)] // see https://github.com/rust-lang/rust/issues/46379
|
|
|
|
use std::path::PathBuf;
|
|
use std::sync::LazyLock;
|
|
|
|
pub static CARGO_CLIPPY_PATH: LazyLock<PathBuf> = LazyLock::new(|| {
|
|
let mut path = std::env::current_exe().unwrap();
|
|
assert!(path.pop()); // deps
|
|
path.set_file_name("cargo-clippy");
|
|
path
|
|
});
|
|
|
|
pub const IS_RUSTC_TEST_SUITE: bool = option_env!("RUSTC_TEST_SUITE").is_some();
|