about summary refs log tree commit diff
path: root/src
diff options
context:
space:
mode:
authorbors <bors@rust-lang.org>2018-11-03 06:50:19 +0000
committerbors <bors@rust-lang.org>2018-11-03 06:50:19 +0000
commit757d6cc91a691c8a749a7b0eee09df494ecdcc3b (patch)
tree226efc61ed6b97d375e826a191883325510d612d /src
parent3fc70e8d4686190891b575204326c9b9dcd2d3ed (diff)
parent4084eb032fb4882f61f2f8e5cad00801093803e6 (diff)
downloadrust-757d6cc91a691c8a749a7b0eee09df494ecdcc3b.tar.gz
rust-757d6cc91a691c8a749a7b0eee09df494ecdcc3b.zip
Auto merge of #55363 - pietroalbini:update-cargo-vendor, r=Mark-Simulacrum
Bump cargo-vendor version

Currently we pin `cargo-vendor` to 0.1.4, which doesn't set the `User-Agent` HTTP header. crates.io is going to require that header in the near future, so this PR bumps the pinned version of the crate to the latest one (which correctly sets the header).

r? @Mark-Simulacrum
cc @sgrif
Diffstat (limited to 'src')
-rw-r--r--src/bootstrap/dist.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/bootstrap/dist.rs b/src/bootstrap/dist.rs
index 6d405753524..0b0255fc027 100644
--- a/src/bootstrap/dist.rs
+++ b/src/bootstrap/dist.rs
@@ -912,7 +912,7 @@ impl Step for Src {
     }
 }
 
-const CARGO_VENDOR_VERSION: &str = "0.1.4";
+const CARGO_VENDOR_VERSION: &str = "0.1.19";
 
 #[derive(Debug, PartialOrd, Ord, Copy, Clone, Hash, PartialEq, Eq)]
 pub struct PlainSourceTarball;