Skip to content

Commit 3b48558

Browse files
authored
Merge pull request #413 from jbaublitz/pr-libblkid-rs-171
Allow default of cargo_metadata(true)
2 parents 229b8e2 + aa466c0 commit 3b48558

File tree

1 file changed

+1
-5
lines changed

1 file changed

+1
-5
lines changed

libcryptsetup-rs-sys/build.rs

Lines changed: 1 addition & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -9,11 +9,7 @@ fn probe() -> Library {
99
let mut config = Config::new();
1010
#[cfg(feature = "static")]
1111
config.statik(true);
12-
match config
13-
.atleast_version("2.2.0")
14-
.cargo_metadata(false)
15-
.probe("libcryptsetup")
16-
{
12+
match config.atleast_version("2.2.0").probe("libcryptsetup") {
1713
Ok(l) => l,
1814
Err(e) => panic!("Bindings require at least cryptsetup-2.2.0: {e}"),
1915
}

0 commit comments

Comments
 (0)