rust/hg-cpython/src/lib.rs
changeset 49932 136aa80aa8b2
parent 48839 7b068abe4aa2
child 50976 4c5f6e95df84
--- a/rust/hg-cpython/src/lib.rs	Mon Jan 09 19:32:35 2023 +0100
+++ b/rust/hg-cpython/src/lib.rs	Mon Jan 09 19:36:41 2023 +0100
@@ -18,6 +18,11 @@
 //! >>> ancestor.__doc__
 //! 'Generic DAG ancestor algorithms - Rust implementation'
 //! ```
+#![allow(clippy::too_many_arguments)] // rust-cpython macros
+#![allow(clippy::zero_ptr)] // rust-cpython macros
+#![allow(clippy::needless_update)] // rust-cpython macros
+#![allow(clippy::manual_strip)] // rust-cpython macros
+#![allow(clippy::type_complexity)] // rust-cpython macros
 
 /// This crate uses nested private macros, `extern crate` is still needed in
 /// 2018 edition.