Silence clippy warnings in build.rs

pull/392/head
Wilfred Hughes 2022-09-24 19:40:30 +07:00
parent 3bf7dea04f
commit 3d64da9161
1 changed files with 4 additions and 0 deletions

@ -1,3 +1,7 @@
// Has false positives on else if chains that sometimes have the same
// body for readability.
#![allow(clippy::if_same_then_else)]
use rayon::prelude::*;
use std::path::PathBuf;
use version_check as rustc;