aboutsummaryrefslogtreecommitdiffhomepage
path: root/examples/rust
diff options
context:
space:
mode:
Diffstat (limited to 'examples/rust')
-rw-r--r--examples/rust/fibonacci/BUILD2
-rw-r--r--examples/rust/hello_lib/BUILD2
-rw-r--r--examples/rust/hello_world/BUILD2
3 files changed, 3 insertions, 3 deletions
diff --git a/examples/rust/fibonacci/BUILD b/examples/rust/fibonacci/BUILD
index a29e2123ba..74f7914217 100644
--- a/examples/rust/fibonacci/BUILD
+++ b/examples/rust/fibonacci/BUILD
@@ -1,7 +1,7 @@
package(default_visibility = ["//visibility:public"])
load(
- "/tools/build_rules/rust/rust",
+ "//tools/build_rules/rust:rust.bzl",
"rust_library",
"rust_test",
"rust_bench_test",
diff --git a/examples/rust/hello_lib/BUILD b/examples/rust/hello_lib/BUILD
index 90941e6a42..c47368727a 100644
--- a/examples/rust/hello_lib/BUILD
+++ b/examples/rust/hello_lib/BUILD
@@ -1,7 +1,7 @@
package(default_visibility = ["//visibility:public"])
load(
- "/tools/build_rules/rust/rust",
+ "//tools/build_rules/rust:rust.bzl",
"rust_library",
"rust_test",
"rust_doc",
diff --git a/examples/rust/hello_world/BUILD b/examples/rust/hello_world/BUILD
index 71061255cd..e78362915c 100644
--- a/examples/rust/hello_world/BUILD
+++ b/examples/rust/hello_world/BUILD
@@ -1,6 +1,6 @@
package(default_visibility = ["//visibility:public"])
-load("/tools/build_rules/rust/rust", "rust_binary", "rust_doc", "rust_doc_test")
+load("//tools/build_rules/rust:rust.bzl", "rust_binary", "rust_doc", "rust_doc_test")
rust_binary(
name = "hello_world",