Update dependencies
authorAlex Crichton <alex@alexcrichton.com>
Mon, 12 Feb 2018 20:42:31 +0000 (12:42 -0800)
committerAlex Crichton <alex@alexcrichton.com>
Mon, 12 Feb 2018 22:30:18 +0000 (14:30 -0800)
Just a few major updates here and there

Cargo.toml
tests/cargotest/Cargo.toml
tests/cargotest/support/registry.rs
tests/package.rs

index 265a0ad1553199096b07647d8bb3dd302daf60c2..237890cfc3182b000de21e70102f877084b4bd2b 100644 (file)
@@ -33,7 +33,7 @@ git2-curl = "0.7"
 glob = "0.2"
 hex = "0.3"
 home = "0.3"
-ignore = "0.3"
+ignore = "0.4"
 jobserver = "0.1.9"
 libc = "0.2"
 libgit2-sys = "0.6"
@@ -54,10 +54,10 @@ toml = "0.4"
 url = "1.1"
 
 [target.'cfg(target_os = "macos")'.dependencies]
-core-foundation = { version = "0.4.4", features = ["mac_os_10_7_support"] }
+core-foundation = { version = "0.5.1", features = ["mac_os_10_7_support"] }
 
 [target.'cfg(windows)'.dependencies]
-miow = "0.2"
+miow = "0.3"
 
 [target.'cfg(windows)'.dependencies.winapi]
 version = "0.3"
index 5f1b6a49856112186a19993289fcc614e99af8e2..ee9770a3876669afa19c644d370039bdbf3ad091 100644 (file)
@@ -12,7 +12,7 @@ filetime = "0.1"
 flate2 = "1.0"
 git2 = { version = "0.6", default-features = false }
 hamcrest = "=0.1.1"
-hex = "0.2"
+hex = "0.3"
 log = "0.4"
 serde_json = "1.0"
 tar = { version = "0.4", default-features = false }
index 25f8feb145cf8d2c8c7f9d9ba3e35d9dcaecf39e..7283ad78af0cf0f6fefef4c560364de171d8769c 100644 (file)
@@ -6,7 +6,7 @@ use std::path::{PathBuf, Path};
 use flate2::Compression;
 use flate2::write::GzEncoder;
 use git2;
-use hex::ToHex;
+use hex;
 use tar::{Builder, Header};
 use url::Url;
 
@@ -320,5 +320,5 @@ impl Package {
 pub fn cksum(s: &[u8]) -> String {
     let mut sha = Sha256::new();
     sha.update(s);
-    sha.finish().to_hex()
+    hex::encode(&sha.finish())
 }
index f49a56193aac98b6e6d7a329324f357c260d3f4f..ca35e624b6ff74543c1b93b0b779eda97ad76b10 100644 (file)
@@ -330,10 +330,6 @@ See [..]
 See [..]
 [WARNING] [..] file `some_dir[/]dir_deep_3[/]some_dir[/]file` WILL be excluded [..]
 See [..]
-[WARNING] [..] file `some_dir[/]dir_deep_4[/]some_dir[/]file` WILL be excluded [..]
-See [..]
-[WARNING] [..] file `some_dir[/]dir_deep_5[/]some_dir[/]file` WILL be excluded [..]
-See [..]
 [WARNING] [..] file `some_dir[/]file_deep_1` WILL be excluded [..]
 See [..]
 [ARCHIVING] [..]
@@ -1003,4 +999,4 @@ Caused by:
 
 consider adding `cargo-features = [\"epoch\"]` to the manifest
 ")));
-}
\ No newline at end of file
+}