diff --git a/secp256k1-sys/src/lib.rs b/secp256k1-sys/src/lib.rs index cc9047f..65f7388 100644 --- a/secp256k1-sys/src/lib.rs +++ b/secp256k1-sys/src/lib.rs @@ -19,6 +19,8 @@ // Coding conventions #![deny(non_upper_case_globals, non_camel_case_types, non_snake_case, unused_mut)] +#![allow(clippy::missing_safety_doc)] + #![cfg_attr(all(not(test), not(feature = "std")), no_std)] #![cfg_attr(docsrs, feature(doc_cfg))] diff --git a/src/lib.rs b/src/lib.rs index dc0b014..c2dc65f 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -152,6 +152,8 @@ #![deny(non_upper_case_globals, non_camel_case_types, non_snake_case)] #![warn(missing_docs, missing_copy_implementations, missing_debug_implementations)] +#![allow(clippy::missing_safety_doc)] + #![cfg_attr(all(not(test), not(feature = "std")), no_std)] #![cfg_attr(all(test, feature = "unstable"), feature(test))] #![cfg_attr(docsrs, feature(doc_cfg))]