Skip to content

Commit

Permalink
fix clippu clode
Browse files Browse the repository at this point in the history
  • Loading branch information
dobefore committed Feb 7, 2023
1 parent 148aa61 commit e65b2f5
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions build.rs
Original file line number Diff line number Diff line change
Expand Up @@ -19,8 +19,8 @@ fn main() {
// println!("cargo:rustc-link-lib=static=sqlite3");
// }
let pat = "tls";
let key = format!("CARGO_FEATURE_{}", pat).to_uppercase();
let key = format!("CARGO_FEATURE_{pat}").to_uppercase();
if env::var_os(key).is_some() {
println!("cargo:rustc-cfg=feature=\"{}\"", pat)
println!("cargo:rustc-cfg=feature=\"{pat}\"")
}
}

0 comments on commit e65b2f5

Please sign in to comment.