From 1dae1a4707c06a1248485a38afe69c363157d7f5 Mon Sep 17 00:00:00 2001 From: Damien Martin-Guillerez Date: Tue, 10 May 2016 13:26:50 +0200 Subject: [PATCH] Remove repository name for rust dependencies This repository name is not needed and Bazel seems to have a bug that it cannot refer to the main repository under its name. --- rust/rust.bzl | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/rust/rust.bzl b/rust/rust.bzl index f50f9e26c3..297c0a1073 100644 --- a/rust/rust.bzl +++ b/rust/rust.bzl @@ -596,18 +596,18 @@ _rust_common_attrs = { _rust_toolchain_attrs = { "_rustc": attr.label( - default = Label("@io_bazel_rules_rust//rust:rustc"), + default = Label("//rust:rustc"), executable = True, single_file = True, ), "_rustc_lib": attr.label( - default = Label("@io_bazel_rules_rust//rust:rustc_lib"), + default = Label("//rust:rustc_lib"), ), "_rustlib": attr.label( - default = Label("@io_bazel_rules_rust//rust:rustlib"), + default = Label("//rust:rustlib"), ), "_rustdoc": attr.label( - default = Label("@io_bazel_rules_rust//rust:rustdoc"), + default = Label("//rust:rustdoc"), executable = True, single_file = True, ),