| [package] |
| name = "clippy_utils" |
| version = "0.1.90" |
| edition = "2024" |
| description = "Helpful tools for writing lints, provided as they are used in Clippy" |
| repository = "https://github.com/rust-lang/rust-clippy" |
| readme = "README.md" |
| license = "MIT OR Apache-2.0" |
| keywords = ["clippy", "lint", "utils"] |
| categories = ["development-tools"] |
| |
| [dependencies] |
| arrayvec = { version = "0.7", default-features = false } |
| itertools = "0.12" |
| # FIXME(f16_f128): remove when no longer needed for parsing |
| rustc_apfloat = "0.2.0" |
| serde = { version = "1.0", features = ["derive"] } |
| |
| [package.metadata.rust-analyzer] |
| # This crate uses #[feature(rustc_private)] |
| rustc_private = true |