Skip to content

Commit

Permalink
Exclude two internal crates from clippy's MSRV check
Browse files Browse the repository at this point in the history
Signed-off-by: Uli Schlachter <psychon@znc.in>
  • Loading branch information
psychon committed Jun 1, 2024
1 parent cf2bb3a commit 62657b8
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 0 deletions.
2 changes: 2 additions & 0 deletions extract-generated-code-doc/src/main.rs
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,8 @@
unused_qualifications
)]
#![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;
Expand Down
2 changes: 2 additions & 0 deletions generator/src/main.rs
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,8 @@
unused_qualifications
)]
#![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;
Expand Down

0 comments on commit 62657b8

Please sign in to comment.