• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1module(
2    name = "rules_license",
3    version = "1.0.0",  # Keep in sync with version.bzl
4    compatibility_level = 1,
5)
6
7# NOTE: rules_license must not depend on any other repositories if you are
8# just using basic rules under //rules/... and //licenses/...
9
10# TODO(aiuto): Create an extension to enable the rules under //tools/...
11# That will require rules_python, which we do not want to force on people who
12# do not need //tools.
13
14# Only for development
15bazel_dep(name = "bazel_skylib", version = "1.7.1", dev_dependency = True)
16bazel_dep(name = "rules_pkg", version = "1.0.1", dev_dependency = True)
17bazel_dep(name = "rules_python", version = "0.35.0", dev_dependency = True)
18bazel_dep(name = "stardoc", version = "0.6.2", dev_dependency = True)
19