diff -r fba29deebfe7 -r 136aa80aa8b2 rust/hg-cpython/src/lib.rs --- 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.