1load("@bazel_skylib//rules:common_settings.bzl", "bool_flag") 2 3package(default_visibility = ["//visibility:public"]) 4 5# A flag for which causes `cargo_build_script` to symlink the execroot of the action to 6# the `CARGO_MANIFEST_DIR` where the scripts are run. 7bool_flag( 8 name = "experimental_symlink_execroot", 9 build_setting_default = False, 10) 11