blob: 018294437d4a19cb3b00c562869f5e14ebd84224 [file] [log] [blame]
Brian Silvermancc09f182022-03-09 15:40:20 -08001load("@bazel_skylib//:bzl_library.bzl", "bzl_library")
Brian Silvermancc09f182022-03-09 15:40:20 -08002
3alias(
Brian Silverman5f6f2762022-08-13 19:30:05 -07004 name = "toolchain_type",
Adam Snaider1c095c92023-07-08 02:09:58 -04005 actual = "//proto/protobuf:toolchain_type",
6 deprecation = "Use @rules_rust//proto/protobuf:toolchain_type instead",
Brian Silvermancc09f182022-03-09 15:40:20 -08007 visibility = ["//visibility:public"],
8)
9
Adam Snaider1c095c92023-07-08 02:09:58 -040010alias(
Brian Silvermancc09f182022-03-09 15:40:20 -080011 name = "default-proto-toolchain",
Adam Snaider1c095c92023-07-08 02:09:58 -040012 actual = "//proto/protobuf:default-proto-toolchain",
13 deprecation = "Use @rules_rust//proto/protobuf:default-proto-toolchain instead",
14 visibility = ["//visibility:public"],
Brian Silverman5f6f2762022-08-13 19:30:05 -070015)
Brian Silvermancc09f182022-03-09 15:40:20 -080016
17bzl_library(
18 name = "bzl_lib",
Brian Silverman5f6f2762022-08-13 19:30:05 -070019 srcs = glob(["**/*.bzl"]),
Adam Snaider1c095c92023-07-08 02:09:58 -040020 visibility = ["//visibility:public"],
Brian Silverman5f6f2762022-08-13 19:30:05 -070021 deps = [
Adam Snaider1c095c92023-07-08 02:09:58 -040022 "//proto/prost:bzl_lib",
23 "//proto/protobuf:bzl_lib",
Brian Silverman5f6f2762022-08-13 19:30:05 -070024 ],
Brian Silvermancc09f182022-03-09 15:40:20 -080025)