1load("@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( 13 name = "toolchain_type", 14) 15 16alias( 17 name = "toolchain", 18 actual = "toolchain_type", 19 deprecation = "instead use `@rules_rust//rust:toolchain_type`", 20 tags = ["manual"], 21) 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) 32