是否可以下载以前的夜间构建?
Is it possible to download previous nightly builds?
我已经下载了最新的 Rust nightly 并将此依赖项添加到 Cargo.toml:
[dependencies.http]
git = "https://github.com/chris-morgan/rust-http.git"
cargo build
我收到很多错误:
...
error: aborting due to 7 previous errors
...
error: aborting due to previous error
Could not compile `regex`.
我猜这是因为一些依赖没有更新到最新的rust版本。是否可以下载昨天或前天的每晚?
已安装的版本:
$ rustc --version
rustc 0.13.0-nightly (c89417130 2015-01-02 21:56:13 +0000)
$ cargo --version
cargo 0.0.1-pre-nightly (1a1868b 2014-12-31 21:39:41 +0000)
如果您正在使用 rustup(目前安装 Rust 的首选方式):
rustup install nightly-2016-06-03
如果您想使用独立的 Rust 安装程序,则保留以前的版本。从这个 Reddit thread, which links to this Rust issue:
They are officially hosted.
wget https://static.rust-lang.org/dist/2014-12-08/rust-nightly-x86_64-apple-darwin.pkg
wget https://static.rust-lang.org/dist/2014-12-12/rust-nightly-x86_64-unknown-linux-gnu.tar.gz
如果您仍在使用 rustup.sh(不是 .rs),您应该可以使用类似的东西:
rustup.sh --channel=nightly --date=2016-06-03
我已经下载了最新的 Rust nightly 并将此依赖项添加到 Cargo.toml:
[dependencies.http]
git = "https://github.com/chris-morgan/rust-http.git"
cargo build
我收到很多错误:
...
error: aborting due to 7 previous errors
...
error: aborting due to previous error
Could not compile `regex`.
我猜这是因为一些依赖没有更新到最新的rust版本。是否可以下载昨天或前天的每晚?
已安装的版本:
$ rustc --version
rustc 0.13.0-nightly (c89417130 2015-01-02 21:56:13 +0000)
$ cargo --version
cargo 0.0.1-pre-nightly (1a1868b 2014-12-31 21:39:41 +0000)
如果您正在使用 rustup(目前安装 Rust 的首选方式):
rustup install nightly-2016-06-03
如果您想使用独立的 Rust 安装程序,则保留以前的版本。从这个 Reddit thread, which links to this Rust issue:
They are officially hosted.
wget https://static.rust-lang.org/dist/2014-12-08/rust-nightly-x86_64-apple-darwin.pkg wget https://static.rust-lang.org/dist/2014-12-12/rust-nightly-x86_64-unknown-linux-gnu.tar.gz
如果您仍在使用 rustup.sh(不是 .rs),您应该可以使用类似的东西:
rustup.sh --channel=nightly --date=2016-06-03