mirror of
https://github.com/rust-lang/rust-clippy
synced 2024-11-10 15:14:29 +00:00
8cde354f0b
This removes the ICE codepaths for `f16` and `f128` in Clippy. `rustc_apfloat` is used as a dependency for the parsing of these types, since their `FromStr` implementation will not be available in the standard library for a while.
20 lines
486 B
TOML
20 lines
486 B
TOML
[package]
|
|
name = "clippy_utils"
|
|
version = "0.1.81"
|
|
edition = "2021"
|
|
publish = false
|
|
|
|
[dependencies]
|
|
clippy_config = { path = "../clippy_config" }
|
|
arrayvec = { version = "0.7", default-features = false }
|
|
itertools = "0.12"
|
|
rustc-semver = "1.1"
|
|
# FIXME(f16_f128): remove when no longer needed for parsing
|
|
rustc_apfloat = "0.2.0"
|
|
|
|
[features]
|
|
deny-warnings = ["clippy_config/deny-warnings"]
|
|
|
|
[package.metadata.rust-analyzer]
|
|
# This crate uses #[feature(rustc_private)]
|
|
rustc_private = true
|