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 <[email protected]>
  • Loading branch information
psychon committed Jun 1, 2024
1 parent cf2bb3a commit 9f60841
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 0 deletions.
3 changes: 3 additions & 0 deletions extract-generated-code-doc/src/main.rs
Original file line number Diff line number Diff line change
Expand Up @@ -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;
Expand Down
3 changes: 3 additions & 0 deletions generator/src/main.rs
Original file line number Diff line number Diff line change
Expand Up @@ -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;

Expand Down

0 comments on commit 9f60841

Please sign in to comment.