emk / heroku-buildpack-rust

A buildpack for Rust applications on Heroku, with full support for Rustup, cargo and build caching.
522 stars 186 forks source link

nightly rust distributions go with cargo included #3

Closed kstep closed 9 years ago

kstep commented 9 years ago

Worked around by:

mkdir -p cache/cargo-cache-nightly
cd cache/cargo-cache-nightly
ln -s ../rust-cache-nightly/rust-nightly-x86_64-unknown-linux-gnu cargo-nightly-x86_64-unknown-linux-gnu

Also my RustConfig contains:

URL="https://static.rust-lang.org/dist/rust-nightly-x86_64-unknown-linux-gnu.tar.gz"
VERSION="nightly"
emk commented 9 years ago

Thank you for reporting this! I'll take a look and see how to support it without breaking backwards compatibility.

emk commented 9 years ago

I fixed this shortly before the release of Rust 1.0. Thank you for the suggestion!