blob: f4edbd8b61e37180577fa46510f37328f9208e71 [file] [log] [blame]
Brian Silvermancc09f182022-03-09 15:40:20 -08001load("@bazel_skylib//:bzl_library.bzl", "bzl_library")
2
3package(default_visibility = ["//visibility:public"])
4
5exports_files([
6 "known_shas.bzl",
7 "repositories.bzl",
8 "defs.bzl",
9 "toolchain.bzl",
10])
11
12toolchain_type(
Brian Silverman5f6f2762022-08-13 19:30:05 -070013 name = "toolchain_type",
14)
15
16alias(
Brian Silvermancc09f182022-03-09 15:40:20 -080017 name = "toolchain",
Brian Silverman5f6f2762022-08-13 19:30:05 -070018 actual = "toolchain_type",
19 deprecation = "instead use `@rules_rust//rust:toolchain_type`",
20 tags = ["manual"],
Brian Silvermancc09f182022-03-09 15:40:20 -080021)
22
23bzl_library(
24 name = "bzl_lib",
25 srcs = glob(["**/*.bzl"]),
26 deps = [
27 "//rust/platform:bzl_lib",
28 "//rust/private:bzl_lib",
29 "//rust/settings:bzl_lib",
30 ],
31)