Run `cargo fmt`

This commit is contained in:
Midnight Exigent 2022-01-07 06:19:29 +01:00
parent 8a7acc7799
commit bfaba3d968
3 changed files with 2 additions and 3 deletions

View File

@ -1,4 +1,3 @@
use itertools::Itertools;
use std::env;
use std::path::{Path, PathBuf};

View File

@ -1,4 +1,3 @@
use heck::ToSnakeCase;
use std::env;

View File

@ -28,7 +28,8 @@ fn main() {
builder = builder.clang_arg(clang_arg);
}
env::var("CMAKE_LIBRARIES").unwrap_or_default()
env::var("CMAKE_LIBRARIES")
.unwrap_or_default()
.split(':')
.into_iter()
.filter(|s| s.contains(".so") || s.contains(".dylib"))