From b0a5f6f8c503e5aa64c9c0c6145da8aebad5ae66 Mon Sep 17 00:00:00 2001 From: Daniel Wagner-Hall Date: Thu, 28 Jun 2018 20:12:32 +0100 Subject: [PATCH] Update pkg-config dependency to 0.3.2 Earlier versions of pkg-config don't build with any post-1.0 rust compiler. This is an attempt to get lmdb, and some non-trivial crates which depend on it, building with `-Z minimal-versions`. See https://github.com/rust-lang/cargo/issues/5657 for more information. --- lmdb-sys/Cargo.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lmdb-sys/Cargo.toml b/lmdb-sys/Cargo.toml index 5c8f4339..e7377e05 100644 --- a/lmdb-sys/Cargo.toml +++ b/lmdb-sys/Cargo.toml @@ -19,5 +19,5 @@ build = "build.rs" libc = "0.2" [build-dependencies] -pkg-config = "0.3" +pkg-config = "0.3.2" cc = "1"