Clone this repo:
  1. 9f66dfd Add feature for cc.compile_is_starlark (#136) by Philip Zembrod · 10 days ago upstream/main
  2. c5b8e31 chore(deps): update dependency protobuf to v33.6 (#135) by renovate[bot] · 10 days ago
  3. f609c31 chore(deps): update dependency bazel to v9.0.1 (#134) by renovate[bot] · 3 weeks ago
  4. afd1c52 Add feature for starlark cc_toolchain (#133) by David Zbarsky · 3 weeks ago v1.43.0
  5. f706fb8 Update symlink_action_has_target_type to include Bazel 8.6.0 (#129) by Mihail Vratchanski · 3 weeks ago

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.