]> git.proxmox.com Git - cargo.git/commitdiff
Fix building with current rust by using rust-lang/glob
authorBjörn Steinbrink <bsteinbr@gmail.com>
Wed, 27 Aug 2014 10:49:11 +0000 (12:49 +0200)
committerBjörn Steinbrink <bsteinbr@gmail.com>
Wed, 27 Aug 2014 10:49:11 +0000 (12:49 +0200)
The glob crate that comes with rust itself has been deprecated.

Cargo.lock
Cargo.toml

index 79bca56434b97b31724eb0b22b50e7847162d303..136ba3c3299a444ee13afbcfd2a76878c0bb7a78 100644 (file)
@@ -6,6 +6,7 @@ dependencies = [
  "docopt_macros 0.6.0 (git+https://github.com/burntsushi/docopt.rs#fc7ba2f1a5a351f7874257d880223d2ff5c75d36)",
  "flate2 0.0.1 (git+https://github.com/alexcrichton/flate2-rs#12593d1b9ccf09c2eabac176a6e233b171eed843)",
  "git2 0.0.1 (git+https://github.com/alexcrichton/git2-rs#d11091d4ac52d319301ad110ce9eacc0f0d88bab)",
+ "glob 0.0.1 (git+https://github.com/rust-lang/glob#c4495d9f2f2a1b22173b860f907760ba8c419843)",
  "hamcrest 0.1.0 (git+https://github.com/carllerche/hamcrest-rust.git#f0fd1546b0a7a278a12658ab8602b5c827cc3a42)",
  "semver 0.0.1 (git+https://github.com/rust-lang/semver#c78b40d7fdf8acd99b503e6ce394fbcf9eb8982f)",
  "tar 0.0.1 (git+https://github.com/alexcrichton/tar-rs#689bbc003ae47feae5bc99c53b56736e4ad994ba)",
@@ -44,6 +45,11 @@ dependencies = [
  "libgit2 0.0.1 (git+https://github.com/alexcrichton/git2-rs#d11091d4ac52d319301ad110ce9eacc0f0d88bab)",
 ]
 
+[[package]]
+name = "glob"
+version = "0.0.1"
+source = "git+https://github.com/rust-lang/glob#c4495d9f2f2a1b22173b860f907760ba8c419843"
+
 [[package]]
 name = "hamcrest"
 version = "0.1.0"
index f3ac95e0fd75379af4c267ed5d24ed153b2b7214..e681652d8770a053d118a156fc24ea81f389e6de 100644 (file)
@@ -35,6 +35,9 @@ git = "https://github.com/alexcrichton/flate2-rs"
 [dependencies.git2]
 git = "https://github.com/alexcrichton/git2-rs"
 
+[dependencies.glob]
+git = "https://github.com/rust-lang/glob"
+
 [[bin]]
 name = "cargo"
 test = false