Clone this repo:
  1. 8e514d2 Add repo_rules_relativize_symlinks (#139) by David Zbarsky · 33 hours ago upstream/main v1.45.0
  2. 9f66dfd Add feature for cc.compile_is_starlark (#136) by Philip Zembrod · 11 days ago v1.44.0
  3. c5b8e31 chore(deps): update dependency protobuf to v33.6 (#135) by renovate[bot] · 12 days ago
  4. f609c31 chore(deps): update dependency bazel to v9.0.1 (#134) by renovate[bot] · 3 weeks ago
  5. afd1c52 Add feature for starlark cc_toolchain (#133) by David Zbarsky · 4 weeks ago v1.43.0

Bazel Features

Use this to determine the availability of a Bazel feature in your ruleset. It works under the hood by comparing the Bazel version against a known range in which the feature is available. Example usage:

load("@bazel_features//:features.bzl", "bazel_features")
if bazel_features.toolchains.has_optional_toolchains:
    # Do something

The features.bzl file contains the list of features.

Accessing globals

References to global Starlark symbols that do not exist cause load time errors, which means that their availability in Bazel cannot be tested via a regular feature. Instead, use bazel_features.globals.<symbol>, which is <symbol> if the symbol is available and None else.

See globals.bzl for the list of symbols that can be checked for in this way.