diff --git a/psa-crypto-sys/build.rs b/psa-crypto-sys/build.rs index a680144..4846894 100644 --- a/psa-crypto-sys/build.rs +++ b/psa-crypto-sys/build.rs @@ -1,6 +1,7 @@ // Copyright 2020 Contributors to the Parsec project. // SPDX-License-Identifier: Apache-2.0 +#![allow(unknown_lints)] #![deny( nonstandard_style, dead_code, @@ -10,8 +11,12 @@ overflowing_literals, path_statements, patterns_in_fns_without_body, + private_bounds, private_in_public, + private_interfaces, + renamed_and_removed_lints, unconditional_recursion, + unnameable_types, unused, unused_allocation, unused_comparisons, diff --git a/psa-crypto/src/lib.rs b/psa-crypto/src/lib.rs index 3385856..3878fa5 100644 --- a/psa-crypto/src/lib.rs +++ b/psa-crypto/src/lib.rs @@ -10,6 +10,7 @@ //! This abstraction is built on top of the `psa-crypto-sys` crate. #![cfg_attr(not(feature = "std"), no_std)] +#![allow(unknown_lints)] #![deny( nonstandard_style, dead_code, @@ -19,8 +20,12 @@ overflowing_literals, path_statements, patterns_in_fns_without_body, + private_bounds, private_in_public, + private_interfaces, + renamed_and_removed_lints, unconditional_recursion, + unnameable_types, unused, unused_allocation, unused_comparisons,