equal
deleted
inserted
replaced
16 //! ```text |
16 //! ```text |
17 //! >>> from mercurial.rustext import ancestor |
17 //! >>> from mercurial.rustext import ancestor |
18 //! >>> ancestor.__doc__ |
18 //! >>> ancestor.__doc__ |
19 //! 'Generic DAG ancestor algorithms - Rust implementation' |
19 //! 'Generic DAG ancestor algorithms - Rust implementation' |
20 //! ``` |
20 //! ``` |
|
21 #![allow(clippy::too_many_arguments)] // rust-cpython macros |
|
22 #![allow(clippy::zero_ptr)] // rust-cpython macros |
|
23 #![allow(clippy::needless_update)] // rust-cpython macros |
|
24 #![allow(clippy::manual_strip)] // rust-cpython macros |
|
25 #![allow(clippy::type_complexity)] // rust-cpython macros |
21 |
26 |
22 /// This crate uses nested private macros, `extern crate` is still needed in |
27 /// This crate uses nested private macros, `extern crate` is still needed in |
23 /// 2018 edition. |
28 /// 2018 edition. |
24 #[macro_use] |
29 #[macro_use] |
25 extern crate cpython; |
30 extern crate cpython; |