From c415baf1f1d24a8a63c85c63eb39b9abb0950446 Mon Sep 17 00:00:00 2001 From: "David Z. Chen" Date: Tue, 7 Jun 2016 16:12:38 -0700 Subject: [PATCH] Update to Rust 1.9. --- rust/rust.bzl | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/rust/rust.bzl b/rust/rust.bzl index b985e94884..4eaa8c5a2b 100644 --- a/rust/rust.bzl +++ b/rust/rust.bzl @@ -746,16 +746,16 @@ filegroup( def rust_repositories(): native.new_http_archive( name = "rust_linux_x86_64", - url = "https://static.rust-lang.org/dist/rust-1.6.0-x86_64-unknown-linux-gnu.tar.gz", - strip_prefix = "rust-1.6.0-x86_64-unknown-linux-gnu", - sha256 = "8630cc02432b4423d64eeae4ef071ec58e5dd1f3d555a3a3cc34b759202813f6", + url = "https://static.rust-lang.org/dist/rust-1.9.0-x86_64-unknown-linux-gnu.tar.gz", + strip_prefix = "rust-1.9.0-x86_64-unknown-linux-gnu", + sha256 = "288ff13efa2577e81c77fc2cb6e2b49b1ed0ceab51b4fa12f7efb87039ac49b7", build_file_content = RUST_BUILD_FILE, ) native.new_http_archive( name = "rust_darwin_x86_64", - url = "https://static.rust-lang.org/dist/rust-1.6.0-x86_64-apple-darwin.tar.gz", - strip_prefix = "rust-1.6.0-x86_64-apple-darwin", - sha256 = "8c6897ed37ef6fd2890b176afa65306cc8943e3c770c9530a701f1aefd3942b1", + url = "https://static.rust-lang.org/dist/rust-1.9.0-x86_64-apple-darwin.tar.gz", + strip_prefix = "rust-1.9.0-x86_64-apple-darwin", + sha256 = "d59b5509e69c1cace20a57072e3b3ecefdbfd8c7e95657b0ff2ac10aa1dfebe6", build_file_content = RUST_BUILD_FILE, )