Ignore missing `# Safety` section in ffi module

This commit is contained in:
Alexander Niederbühl 2019-12-28 03:18:22 +01:00
parent 3d463e1630
commit 3fae391a3c
1 changed files with 2 additions and 0 deletions

View File

@ -147,6 +147,8 @@ pub use libc;
pub use unindent;
/// Raw ffi declarations for the c interface of python
#[allow(clippy::unknown_clippy_lints)]
#[allow(clippy::missing_safety_doc)]
pub mod ffi;
pub mod buffer;