Update error-chain dep for crates-io as well
authorGuillaume Gomez <guillaume1.gomez@gmail.com>
Fri, 28 Jul 2017 19:37:08 +0000 (21:37 +0200)
committerAlex Crichton <alex@alexcrichton.com>
Sat, 12 Aug 2017 22:59:49 +0000 (15:59 -0700)
Cargo.lock
src/cargo/util/errors.rs
src/crates-io/Cargo.toml
src/crates-io/lib.rs

index dcf605c3b24766e7618a2e5894ea650e783c4692..5ab14b38ac346dd1691fa49f0f5891b15c648168 100644 (file)
@@ -152,7 +152,7 @@ name = "crates-io"
 version = "0.10.0"
 dependencies = [
  "curl 0.4.7 (registry+https://github.com/rust-lang/crates.io-index)",
- "error-chain 0.10.0 (registry+https://github.com/rust-lang/crates.io-index)",
+ "error-chain 0.11.0-rc.2 (registry+https://github.com/rust-lang/crates.io-index)",
  "serde 1.0.9 (registry+https://github.com/rust-lang/crates.io-index)",
  "serde_derive 1.0.9 (registry+https://github.com/rust-lang/crates.io-index)",
  "serde_json 1.0.2 (registry+https://github.com/rust-lang/crates.io-index)",
@@ -226,14 +226,6 @@ dependencies = [
  "regex 0.2.2 (registry+https://github.com/rust-lang/crates.io-index)",
 ]
 
-[[package]]
-name = "error-chain"
-version = "0.10.0"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-dependencies = [
- "backtrace 0.3.2 (registry+https://github.com/rust-lang/crates.io-index)",
-]
-
 [[package]]
 name = "error-chain"
 version = "0.11.0-rc.2"
@@ -901,7 +893,6 @@ dependencies = [
 "checksum docopt 0.8.1 (registry+https://github.com/rust-lang/crates.io-index)" = "3b5b93718f8b3e5544fcc914c43de828ca6c6ace23e0332c6080a2977b49787a"
 "checksum dtoa 0.4.1 (registry+https://github.com/rust-lang/crates.io-index)" = "80c8b71fd71146990a9742fc06dcbbde19161a267e0ad4e572c35162f4578c90"
 "checksum env_logger 0.4.3 (registry+https://github.com/rust-lang/crates.io-index)" = "3ddf21e73e016298f5cb37d6ef8e8da8e39f91f9ec8b0df44b7deb16a9f8cd5b"
-"checksum error-chain 0.10.0 (registry+https://github.com/rust-lang/crates.io-index)" = "d9435d864e017c3c6afeac1654189b06cdb491cf2ff73dbf0d73b0f292f42ff8"
 "checksum error-chain 0.11.0-rc.2 (registry+https://github.com/rust-lang/crates.io-index)" = "38d3a55d9a7a456748f2a3912c0941a5d9a68006eb15b3c3c9836b8420dc102d"
 "checksum filetime 0.1.10 (registry+https://github.com/rust-lang/crates.io-index)" = "5363ab8e4139b8568a6237db5248646e5a8a2f89bd5ccb02092182b11fd3e922"
 "checksum flate2 0.2.19 (registry+https://github.com/rust-lang/crates.io-index)" = "36df0166e856739905cd3d7e0b210fe818592211a008862599845e012d8d304c"
index dd748a459b7df07e1ca9b0e1cdbdcead5380029d..557901afe525f441229b36ea604edb33cbdb6bb8 100644 (file)
@@ -1,3 +1,5 @@
+#![allow(unknown_lints)]
+
 use std::error::Error;
 use std::fmt;
 use std::io;
index 37c74b94e4ffb168ebf70648605fcc6301bd0f4e..41b506832b5932a8fab52334313eb16e39e30a47 100644 (file)
@@ -14,7 +14,7 @@ path = "lib.rs"
 
 [dependencies]
 curl = "0.4"
-error-chain = "0.10.0"
+error-chain = "0.11.0-rc.2"
 serde = "1.0"
 serde_derive = "1.0"
 serde_json = "1.0"
index 05ca8e8de70e134eebeb0cae4b09e4ef7cbda15c..cd8df416d8d87ea6bd394b3f65eac017d62cb062 100644 (file)
@@ -1,3 +1,5 @@
+#![allow(unknown_lints)]
+
 extern crate curl;
 extern crate url;
 #[macro_use]