diff --git a/extract-generated-code-doc/src/main.rs b/extract-generated-code-doc/src/main.rs index a26371a6..405eca13 100644 --- a/extract-generated-code-doc/src/main.rs +++ b/extract-generated-code-doc/src/main.rs @@ -8,6 +8,9 @@ )] #![forbid(unsafe_code)] +// This crate is not shipped to users and does not follow our MSRV +#![allow(clippy::incompatible_msrv)] + use std::io::Error as IoError; use std::path::Path; use std::process::ExitCode; diff --git a/generator/src/main.rs b/generator/src/main.rs index b4873078..be759b75 100644 --- a/generator/src/main.rs +++ b/generator/src/main.rs @@ -8,6 +8,9 @@ )] #![forbid(unsafe_code)] +// This crate is not shipped to users and does not follow our MSRV +#![allow(clippy::incompatible_msrv)] + use std::path::{Path, PathBuf}; use std::process::ExitCode;