blob: b2520294b0b7af0be15b645d8e5c98d16c8f9dd7 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
# This file describes the stage0 compiler that's used to then bootstrap the Rust
# compiler itself. For the rustbuild build system, this also describes the
# relevant Cargo revision that we're using.
#
# Currently Rust always bootstraps from the previous stable release, and in our
# train model this means that the master branch bootstraps from beta, beta
# bootstraps from current stable, and stable bootstraps from the previous stable
# release.
#
# If you're looking at this file on the master branch, you'll likely see that
# rustc bootstraps from `beta-$date`, whereas if you're looking at a source
# tarball for a stable release you'll likely see `1.x.0-$date` where `1.x.0` was
# released on `$date`
rustc: 1.16.0-2017-03-11
cargo: 6b05583d71f982bcad049b9fa094c637c062e751
|