Skip to content

Commit

Permalink
Impress Clippy with my code formatting skills
Browse files Browse the repository at this point in the history
  • Loading branch information
bbqsrc committed Feb 1, 2023
1 parent 46a6489 commit a6c5df4
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/cargo.rs
Original file line number Diff line number Diff line change
Expand Up @@ -168,7 +168,7 @@ pub(crate) fn run(

log::trace!(
"Env: {:#?}",
std::env::vars().into_iter().collect::<BTreeMap<_, _>>()
std::env::vars().collect::<BTreeMap<_, _>>()
);

log::debug!("cargo: {}", &cargo_bin);
Expand Down Expand Up @@ -256,7 +256,7 @@ pub(crate) fn run(
);
cargo_cmd.env(
bindgen_clang_args_key,
bindgen_args.clone().replace('\\', "/"),
bindgen_args.replace('\\', "/"),
);
log::debug!("bindgen_args={}", bindgen_args);
}
Expand Down

0 comments on commit a6c5df4

Please sign in to comment.