aboutsummaryrefslogtreecommitdiff
path: root/xtask/src
diff options
context:
space:
mode:
authorbors[bot] <26634292+bors[bot]@users.noreply.github.com>2020-10-08 15:27:30 +0100
committerGitHub <[email protected]>2020-10-08 15:27:30 +0100
commite6a05e6566014d95cec416b5203fdf52bb8ac09c (patch)
tree6a2b183ddbcf674c7503b5646548610ee223a470 /xtask/src
parente95e666b106b2f63ab2b350e656c9e8b96441fa7 (diff)
parent3d169bd3f4cdc2dc3dd09eadbbc17c19214d69f3 (diff)
Merge #5651
5651: Add track_env_var to the proc macro server r=kjeremy a=lnicola See https://github.com/rust-lang/rust/pull/74653. Fixes #6054. Fixes #5640, maybe. Should be merged when 1.47 is released. Proc macros still don't work for me, but it no longer crashes. Co-authored-by: LaurenČ›iu Nicola <[email protected]>
Diffstat (limited to 'xtask/src')
-rw-r--r--xtask/src/install.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/xtask/src/install.rs b/xtask/src/install.rs
index d829790d7..fcc4f05e4 100644
--- a/xtask/src/install.rs
+++ b/xtask/src/install.rs
@@ -7,7 +7,7 @@ use anyhow::{bail, format_err, Context, Result};
7use crate::not_bash::{pushd, run}; 7use crate::not_bash::{pushd, run};
8 8
9// Latest stable, feel free to send a PR if this lags behind. 9// Latest stable, feel free to send a PR if this lags behind.
10const REQUIRED_RUST_VERSION: u32 = 46; 10const REQUIRED_RUST_VERSION: u32 = 47;
11 11
12pub struct InstallCmd { 12pub struct InstallCmd {
13 pub client: Option<ClientOpt>, 13 pub client: Option<ClientOpt>,