1*d4726bddSHONG Yifanload("@bazel_skylib//:bzl_library.bzl", "bzl_library") 2*d4726bddSHONG Yifan 3*d4726bddSHONG Yifanpackage(default_visibility = ["//visibility:public"]) 4*d4726bddSHONG Yifan 5*d4726bddSHONG Yifanexports_files([ 6*d4726bddSHONG Yifan "known_shas.bzl", 7*d4726bddSHONG Yifan "repositories.bzl", 8*d4726bddSHONG Yifan "defs.bzl", 9*d4726bddSHONG Yifan "toolchain.bzl", 10*d4726bddSHONG Yifan]) 11*d4726bddSHONG Yifan 12*d4726bddSHONG Yifantoolchain_type( 13*d4726bddSHONG Yifan name = "toolchain_type", 14*d4726bddSHONG Yifan) 15*d4726bddSHONG Yifan 16*d4726bddSHONG Yifanalias( 17*d4726bddSHONG Yifan name = "toolchain", 18*d4726bddSHONG Yifan actual = "toolchain_type", 19*d4726bddSHONG Yifan deprecation = "instead use `@rules_rust//rust:toolchain_type`", 20*d4726bddSHONG Yifan tags = ["manual"], 21*d4726bddSHONG Yifan) 22*d4726bddSHONG Yifan 23*d4726bddSHONG Yifanbzl_library( 24*d4726bddSHONG Yifan name = "bzl_lib", 25*d4726bddSHONG Yifan srcs = glob(["**/*.bzl"]), 26*d4726bddSHONG Yifan deps = [ 27*d4726bddSHONG Yifan "//rust/platform:bzl_lib", 28*d4726bddSHONG Yifan "//rust/private:bzl_lib", 29*d4726bddSHONG Yifan "//rust/settings:bzl_lib", 30*d4726bddSHONG Yifan ], 31*d4726bddSHONG Yifan) 32