I downloaded the latest Rust nightly and added this dependency to Cargo.toml:
[dependencies.http] git = "https://github.com/chris-morgan/rust-http.git"
I get a lot of errors for cargo build :
... error: aborting due to 7 previous errors ... error: aborting due to previous error Could not compile `regex`.
I assume this is due to the fact that some dependencies have not been updated to the latest version of rust. Is it possible to download every night from yesterday or the day before?
Installed Versions:
$ 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)
source share