We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a75e007 commit 5935355Copy full SHA for 5935355
libgit2-sys/build.rs
@@ -7,7 +7,7 @@ use std::process::Command;
7
/// Tries to use system libgit2 and emits necessary build script instructions.
8
fn try_system_libgit2() -> Result<pkg_config::Library, pkg_config::Error> {
9
let mut cfg = pkg_config::Config::new();
10
- match cfg.range_version("1.7.2".."1.8.0").probe("libgit2") {
+ match cfg.range_version("1.8.0-alpha".."1.9.0").probe("libgit2") {
11
Ok(lib) => {
12
for include in &lib.include_paths {
13
println!("cargo:root={}", include.display());
libgit2-sys/libgit2
0 commit comments