diff options
author | Daniel Mueller <deso@posteo.net> | 2018-12-10 20:51:50 -0800 |
---|---|---|
committer | Daniel Mueller <deso@posteo.net> | 2018-12-10 20:51:50 -0800 |
commit | 5875df6c958743cf86c75b2cb5fc2efe5ca0de43 (patch) | |
tree | 5c2275396ba921da440dc54dd76c0e5be1d3c60e /pkg-config/Cargo.toml | |
parent | df88d39cd9c7b254057ee80dad5367313f2bb87f (diff) | |
download | nitrocli-5875df6c958743cf86c75b2cb5fc2efe5ca0de43.tar.gz nitrocli-5875df6c958743cf86c75b2cb5fc2efe5ca0de43.tar.bz2 |
Update pkg-config crate to 0.3.14
This change updates the pkg-config crate to version 0.3.14.
Import subrepo pkg-config/:pkg-config at f867f8be1babca4d6d9cddc92a817519ae845193
Diffstat (limited to 'pkg-config/Cargo.toml')
-rw-r--r-- | pkg-config/Cargo.toml | 9 |
1 files changed, 6 insertions, 3 deletions
diff --git a/pkg-config/Cargo.toml b/pkg-config/Cargo.toml index 7393b5b..6f06af5 100644 --- a/pkg-config/Cargo.toml +++ b/pkg-config/Cargo.toml @@ -1,16 +1,19 @@ [package] name = "pkg-config" -version = "0.3.9" +version = "0.3.14" authors = ["Alex Crichton <alex@alexcrichton.com>"] license = "MIT/Apache-2.0" repository = "https://github.com/alexcrichton/pkg-config-rs" -documentation = "http://alexcrichton.com/pkg-config-rs" +documentation = "https://docs.rs/pkg-config" description = """ A library to run the pkg-config system tool at build time in order to be used in Cargo build scripts. """ keywords = ["build-dependencies"] +[badges] +travis-ci = { repository = "alexcrichton/pkg-config-rs" } + [dev-dependencies] -lazy_static = "0.2" +lazy_static = "1" |