Warning: file_get_contents(/data/phpspider/zhask/data//catemap/7/rust/4.json): failed to open stream: No such file or directory in /data/phpspider/zhask/libs/function.php on line 167

Warning: Invalid argument supplied for foreach() in /data/phpspider/zhask/libs/tag.function.php on line 1116

Notice: Undefined index: in /data/phpspider/zhask/libs/function.php on line 180

Warning: array_chunk() expects parameter 1 to be array, null given in /data/phpspider/zhask/libs/function.php on line 181
Rust 是否可以下载以前的夜间版本?_Rust - Fatal编程技术网

Rust 是否可以下载以前的夜间版本?

Rust 是否可以下载以前的夜间版本?,rust,Rust,我已每晚下载最新的Rust,并将此依赖项添加到Cargo.toml: [dependencies.http] git = "https://github.com/chris-morgan/rust-http.git" 对于货物构建,我收到了很多错误: ... error: aborting due to 7 previous errors ... error: aborting due to previous error Could not compile `regex`. 我想这是因为一

我已每晚下载最新的Rust,并将此依赖项添加到Cargo.toml:

[dependencies.http]

git = "https://github.com/chris-morgan/rust-http.git"
对于
货物构建
,我收到了很多错误:

...
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安装夜间-2016-06-03
如果要使用独立的Rust安装程序,则保留以前的版本。从这里,链接到:

它们是官方主办的

wgethttps://static.rust-lang.org/dist/2014-12-08/rust-nightly-x86_64-apple-darwin.pkg
wgethttps://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 http
中的编译问题,并提交一个pull请求。您甚至可以更改您的
Cargo.toml
以指向您的fork,直到upstream接受这些更改。您不应该使用
rust http
,因为它很旧并且完全不推荐使用。改用。酷,谢谢!我将在完成hello world应用程序后立即尝试修复编译问题:)如果出现“无法下载”错误,请尝试更早的日期。今天是2020-09-02,“生锈安装夜间-2020-08-29”工程。