coreos / ignition-config-rs

Data structures for reading/writing Ignition configs
https://crates.io/crates/ignition-config
Apache License 2.0
3 stars 5 forks source link

Bump clippy to 1.64.0; avoid `Eq` derive warnings #25

Closed bgilbert closed 1 year ago

bgilbert commented 1 year ago

schemafy never derives Eq, only PartialEq, and clippy now warns about this. If we derived Eq ourselves, we could end up having to remove the derive in a future schema version if a floating-point value is ever added to the spec. We don't need Eq for now, so just disable the warning to keep things simple.