diff options
author | bors-servo <lbergstrom+bors@mozilla.com> | 2016-12-29 04:49:16 -0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2016-12-29 04:49:16 -0800 |
commit | ab623de2617c5a5414f4a0ac7cd66627214f82d5 (patch) | |
tree | e789405e43e17478e9047b6c653c33d2e7936822 | |
parent | 885d152e92b20bdaeb0d0ad20affd269fc3b55d3 (diff) | |
parent | f1f1466aa19b037de0004e4f293aa3c71ee8e58c (diff) | |
download | servo-ab623de2617c5a5414f4a0ac7cd66627214f82d5.tar.gz servo-ab623de2617c5a5414f4a0ac7cd66627214f82d5.zip |
Auto merge of #14768 - upsuper:upgrade-bindgen, r=emilio
Upgrade libbindgen to 0.1.5
0.1.4 is known to be broken on Windows, and earlier version may not work properly in various platforms.
r? @emilio
<!-- Reviewable:start -->
---
This change is [<img src="https://reviewable.io/review_button.svg" height="34" align="absmiddle" alt="Reviewable"/>](https://reviewable.io/reviews/servo/servo/14768)
<!-- Reviewable:end -->
-rw-r--r-- | Cargo.lock | 6 | ||||
-rw-r--r-- | components/style/Cargo.toml | 2 |
2 files changed, 4 insertions, 4 deletions
diff --git a/Cargo.lock b/Cargo.lock index 708d7c10694..1fe2fe5505e 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1409,7 +1409,7 @@ dependencies = [ [[package]] name = "libbindgen" -version = "0.1.4" +version = "0.1.5" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ "aster 0.34.0 (registry+https://github.com/rust-lang/crates.io-index)", @@ -2724,7 +2724,7 @@ dependencies = [ "html5ever-atoms 0.1.2 (registry+https://github.com/rust-lang/crates.io-index)", "kernel32-sys 0.2.2 (registry+https://github.com/rust-lang/crates.io-index)", "lazy_static 0.2.2 (registry+https://github.com/rust-lang/crates.io-index)", - "libbindgen 0.1.4 (registry+https://github.com/rust-lang/crates.io-index)", + "libbindgen 0.1.5 (registry+https://github.com/rust-lang/crates.io-index)", "log 0.3.6 (registry+https://github.com/rust-lang/crates.io-index)", "matches 0.1.4 (registry+https://github.com/rust-lang/crates.io-index)", "nsstring_vendor 0.1.0", @@ -3414,7 +3414,7 @@ dependencies = [ "checksum lazy_static 0.2.2 (registry+https://github.com/rust-lang/crates.io-index)" = "6abe0ee2e758cd6bc8a2cd56726359007748fbf4128da998b65d0b70f881e19b" "checksum leak 0.1.2 (registry+https://github.com/rust-lang/crates.io-index)" = "bd100e01f1154f2908dfa7d02219aeab25d0b9c7fa955164192e3245255a0c73" "checksum leaky-cow 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)" = "40a8225d44241fd324a8af2806ba635fc7c8a7e9a7de4d5cf3ef54e71f5926fc" -"checksum libbindgen 0.1.4 (registry+https://github.com/rust-lang/crates.io-index)" = "b08a166f5cce21f217bcf61f73f166bb9fb5618b8db893c1bc5d24912f2b4988" +"checksum libbindgen 0.1.5 (registry+https://github.com/rust-lang/crates.io-index)" = "03fc3da1bbd6aac5068e7b8464e494352a587f57ec8986974d42216e0c88e58c" "checksum libc 0.2.18 (registry+https://github.com/rust-lang/crates.io-index)" = "a51822fc847e7a8101514d1d44e354ba2ffa7d4c194dcab48870740e327cac70" "checksum libloading 0.3.1 (registry+https://github.com/rust-lang/crates.io-index)" = "84816a8c6ed8163dfe0dbdd2b09d35c6723270ea77a4c7afa4bedf038a36cb99" "checksum libressl-pnacl-sys 2.1.6 (registry+https://github.com/rust-lang/crates.io-index)" = "cbc058951ab6a3ef35ca16462d7642c4867e6403520811f28537a4e2f2db3e71" diff --git a/components/style/Cargo.toml b/components/style/Cargo.toml index 3cc56f23711..51a250b00a9 100644 --- a/components/style/Cargo.toml +++ b/components/style/Cargo.toml @@ -66,7 +66,7 @@ kernel32-sys = "0.2" [build-dependencies] lazy_static = "0.2" -libbindgen = {version = "0.1.1", optional = true} +libbindgen = {version = "0.1.5", optional = true} phf_codegen = "0.7.20" regex = {version = "0.1", optional = true} walkdir = "0.1" |