mirror of
https://github.com/bazelbuild/bazel-skylib
synced 2024-11-30 10:41:18 +00:00
9cbe3aea11
* Fix location of MODULE.bazel in distro tarballs. * Remove invalid paths from WORKSPACE files in distro tarballs * The resulting tarballs should finally be distributable as 1.4.0 in BCR.
30 lines
1 KiB
Plaintext
30 lines
1 KiB
Plaintext
module(
|
|
name = "bazel_skylib",
|
|
# Keep in sync with version.bzl and @bazel_skylib_gazelle_plugin//:MODULE.bazel
|
|
version = "1.4.0",
|
|
compatibility_level = 1,
|
|
)
|
|
|
|
register_toolchains(
|
|
"//toolchains/unittest:cmd_toolchain",
|
|
"//toolchains/unittest:bash_toolchain",
|
|
)
|
|
|
|
bazel_dep(name = "platforms", version = "0.0.4")
|
|
|
|
### INTERNAL ONLY - lines after this are not included in the release packaging.
|
|
|
|
# Build-only / test-only dependencies
|
|
bazel_dep(name = "stardoc", version = "0.5.3", dev_dependency = True, repo_name = "io_bazel_stardoc")
|
|
bazel_dep(name = "rules_pkg", version = "0.7.0", dev_dependency = True)
|
|
bazel_dep(name = "rules_cc", version = "0.0.2", dev_dependency = True)
|
|
|
|
# Needed for bazelci and for building distribution tarballs.
|
|
# If using an unreleased version of bazel_skylib via git_override, apply
|
|
# MODULE.bazel-remove-override.patch to remove the following lines:
|
|
bazel_dep(name = "bazel_skylib_gazelle_plugin", dev_dependency = True)
|
|
local_path_override(
|
|
module_name = "bazel_skylib_gazelle_plugin",
|
|
path = "gazelle",
|
|
)
|