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
This commit is contained in:
bors 2018-11-03 06:50:19 +00:00
commit 757d6cc91a
1 changed files with 1 additions and 1 deletions

View File

@ -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;