Merge pull request #225 from dtolnay/checkcfg

Resolve unexpected_cfgs warning
This commit is contained in:
David Tolnay 2024-05-06 15:32:08 -07:00 committed by GitHub
commit c3bdfe4e7f
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -4,6 +4,7 @@ use std::path::PathBuf;
fn main() {
println!("cargo:rerun-if-changed=build.rs");
println!("cargo:rustc-check-cfg=cfg(exhaustive)");
let prettyplease_version = match env::var("DEP_PRETTYPLEASE02_VERSION") {
Ok(prettyplease_version) => format!(r#"Some("{}")"#, prettyplease_version.escape_debug()),