rust: add clippy configuration file

Configure the minimum supported Rust version (though strictly speaking
that's redundant with Cargo.toml), and the list of CamelCase identifiers
that are not Rust types.

Signed-off-by: Paolo Bonzini <pbonzini@redhat.com>
This commit is contained in:
Paolo Bonzini 2025-02-06 12:26:12 +01:00
parent 2590c02a5f
commit 6b03c03806

2
rust/clippy.toml Normal file
View file

@ -0,0 +1,2 @@
doc-valid-idents = ["PrimeCell", ".."]
msrv = "1.63.0"