From 9c6c240eb922621125be117d1129db588a3838a2 Mon Sep 17 00:00:00 2001 From: UebelAndre Date: Thu, 19 Sep 2024 00:16:46 -0700 Subject: [PATCH 1/2] Update `cargo_build_script` to work without runfiles support. --- .bazelci/presubmit.yml | 37 ++++ cargo/private/BUILD.bazel | 6 + cargo/private/cargo_build_script.bzl | 77 ++++++-- cargo/private/runfiles_enabled.bzl | 167 ++++++++++++++++++ cargo/private/runfiles_maker/BUILD.bazel | 8 + .../private/runfiles_maker/runfiles_maker.rs | 71 ++++++++ crate_universe/src/rendering.rs | 24 ++- rust/private/rustc.bzl | 22 ++- 8 files changed, 388 insertions(+), 24 deletions(-) create mode 100644 cargo/private/runfiles_enabled.bzl create mode 100644 cargo/private/runfiles_maker/BUILD.bazel create mode 100644 cargo/private/runfiles_maker/runfiles_maker.rs diff --git a/.bazelci/presubmit.yml b/.bazelci/presubmit.yml index a08e71c25e..a48473ef95 100644 --- a/.bazelci/presubmit.yml +++ b/.bazelci/presubmit.yml @@ -36,6 +36,21 @@ default_windows_targets: &default_windows_targets - "//..." - "-//test/proto/..." - "-//test/unit/pipelined_compilation/..." +default_windows_no_runfiles_targets: &default_windows_no_runfiles_targets + - "--" # Allows negative patterns; hack for https://github.com/bazelbuild/continuous-integration/pull/245 + - "//..." + # TODO: https://github.com/bazelbuild/rules_rust/issues/1156 + - "-//crate_universe/..." + - "-//test/chained_direct_deps:mod3_doc_test" + - "-//test/out_dir_in_tests:demo_lib_doc_test" + - "-//test/proto/..." + - "-//test/rustc_env_files:output_test" + - "-//test/test_env_launcher:test" + - "-//test/test_env:test_manifest_dir" + - "-//test/test_env:test_run" + - "-//test/unit/pipelined_compilation/..." + - "-//test/unit/rustdoc/..." + - "-//tools/runfiles/..." crate_universe_vendor_example_targets: &crate_universe_vendor_example_targets - "//vendor_external:crates_vendor" - "//vendor_local_manifests:crates_vendor" @@ -78,6 +93,15 @@ tasks: windows: build_targets: *default_windows_targets test_targets: *default_windows_targets + windows_no_runfiles: + name: No Runfiles + platform: windows + build_flags: + - "--noenable_runfiles" + test_flags: + - "--noenable_runfiles" + build_targets: *default_windows_no_runfiles_targets + test_targets: *default_windows_no_runfiles_targets ubuntu2004_split_coverage_postprocessing: name: Split Coverage Postprocessing platform: ubuntu2004 @@ -171,6 +195,19 @@ tasks: - "--config=clippy" build_targets: *default_windows_targets test_targets: *default_windows_targets + windows_no_runfiles_with_aspects: + name: No Runfiles With Aspects + platform: windows + build_flags: + - "--noenable_runfiles" + - "--config=rustfmt" + - "--config=clippy" + test_flags: + - "--noenable_runfiles" + - "--config=rustfmt" + - "--config=clippy" + build_targets: *default_windows_no_runfiles_targets + test_targets: *default_windows_no_runfiles_targets windows_rolling_with_aspects: name: "Windows Rolling Bazel Version With Aspects" platform: windows diff --git a/cargo/private/BUILD.bazel b/cargo/private/BUILD.bazel index 6a1aab653c..2b7e6de7dd 100644 --- a/cargo/private/BUILD.bazel +++ b/cargo/private/BUILD.bazel @@ -1,7 +1,13 @@ load("@bazel_skylib//:bzl_library.bzl", "bzl_library") +load(":runfiles_enabled.bzl", "runfiles_enabled_build_setting") bzl_library( name = "bzl_lib", srcs = glob(["**/*.bzl"]), visibility = ["//:__subpackages__"], ) + +runfiles_enabled_build_setting( + name = "runfiles_enabled", + visibility = ["//visibility:public"], +) diff --git a/cargo/private/cargo_build_script.bzl b/cargo/private/cargo_build_script.bzl index 56f64994af..f1e1654672 100644 --- a/cargo/private/cargo_build_script.bzl +++ b/cargo/private/cargo_build_script.bzl @@ -23,6 +23,7 @@ load( "find_toolchain", _name_to_crate_name = "name_to_crate_name", ) +load(":runfiles_enabled.bzl", "is_runfiles_enabled", "runfiles_enabled_attr") # Reexport for cargo_build_script_wrapper.bzl name_to_crate_name = _name_to_crate_name @@ -198,6 +199,38 @@ def _feature_enabled(ctx, feature_name, default = False): return default +def _rlocationpath(file, workspace_name): + if file.short_path.startswith("../"): + return file.short_path[len("../"):] + + return "{}/{}".format(workspace_name, file.short_path) + +def _create_runfiles_dir(ctx, script): + runfiles_dir = ctx.actions.declare_directory("{}.cargo_runfiles".format(ctx.label.name)) + + # External repos always fall into the `../` branch of `_rlocationpath`. + workspace_name = ctx.workspace_name + + def _runfiles_map(file): + return "{}={}".format(file.path, _rlocationpath(file, workspace_name)) + + runfiles = script[DefaultInfo].default_runfiles + + args = ctx.actions.args() + args.use_param_file("@%s", use_always = True) + args.add(runfiles_dir.path) + args.add_all(runfiles.files, map_each = _runfiles_map, allow_closure = True) + + ctx.actions.run( + mnemonic = "CargoBuildScriptRunfilesDir", + executable = ctx.executable._runfiles_maker, + arguments = [args], + inputs = runfiles.files, + outputs = [runfiles_dir], + ) + + return runfiles_dir + def _cargo_build_script_impl(ctx): """The implementation for the `cargo_build_script` rule. @@ -208,6 +241,7 @@ def _cargo_build_script_impl(ctx): list: A list containing a BuildInfo provider """ script = ctx.executable.script + script_info = ctx.attr.script[CargoBuildScriptRunfilesInfo] toolchain = find_toolchain(ctx) out_dir = ctx.actions.declare_directory(ctx.label.name + ".out_dir") env_out = ctx.actions.declare_file(ctx.label.name + ".env") @@ -215,9 +249,29 @@ def _cargo_build_script_impl(ctx): flags_out = ctx.actions.declare_file(ctx.label.name + ".flags") link_flags = ctx.actions.declare_file(ctx.label.name + ".linkflags") link_search_paths = ctx.actions.declare_file(ctx.label.name + ".linksearchpaths") # rustc-link-search, propagated from transitive dependencies - manifest_dir = "%s.runfiles/%s/%s" % (script.path, ctx.label.workspace_name or ctx.workspace_name, ctx.label.package) compilation_mode_opt_level = get_compilation_mode_opts(ctx, toolchain).opt_level + script_tools = [] + script_data = [] + for target in script_info.data: + script_data.append(target[DefaultInfo].files) + script_data.append(target[DefaultInfo].default_runfiles.files) + for target in script_info.tools: + script_tools.append(target[DefaultInfo].files) + script_tools.append(target[DefaultInfo].default_runfiles.files) + + workspace_name = ctx.label.workspace_name + if not workspace_name: + workspace_name = ctx.workspace_name + + if not is_runfiles_enabled(ctx.attr): + runfiles_dir = _create_runfiles_dir(ctx, ctx.attr.script) + script_data.append(depset([runfiles_dir])) + manifest_dir = "{}/{}/{}".format(runfiles_dir.path, workspace_name, ctx.label.package) + else: + script_data.append(ctx.attr.script[DefaultInfo].default_runfiles.files) + manifest_dir = "{}.runfiles/{}/{}".format(script.path, workspace_name, ctx.label.package) + streams = struct( stdout = ctx.actions.declare_file(ctx.label.name + ".stdout.log"), stderr = ctx.actions.declare_file(ctx.label.name + ".stderr.log"), @@ -331,8 +385,6 @@ def _cargo_build_script_impl(ctx): variables = getattr(target[platform_common.TemplateVariableInfo], "variables", depset([])) env.update(variables) - script_info = ctx.attr.script[CargoBuildScriptRunfilesInfo] - _merge_env_dict(env, expand_dict_value_locations( ctx, ctx.attr.build_script_env, @@ -343,15 +395,6 @@ def _cargo_build_script_impl(ctx): script_info.tools, )) - script_tools = [] - script_data = [] - for target in script_info.data: - script_data.append(target[DefaultInfo].files) - script_data.append(target[DefaultInfo].default_runfiles.files) - for target in script_info.tools: - script_tools.append(target[DefaultInfo].files) - script_tools.append(target[DefaultInfo].default_runfiles.files) - tools = depset( direct = [ script, @@ -379,6 +422,7 @@ def _cargo_build_script_impl(ctx): args.add(ctx.attr.rundir) build_script_inputs = [] + for dep in ctx.attr.link_deps: if rust_common.dep_info in dep and dep[rust_common.dep_info].dep_env: dep_env_file = dep[rust_common.dep_info].dep_env @@ -520,7 +564,14 @@ cargo_build_script = rule( "_experimental_symlink_execroot": attr.label( default = Label("//cargo/settings:experimental_symlink_execroot"), ), - }, + "_runfiles_maker": attr.label( + cfg = "exec", + executable = True, + default = Label("//cargo/private/runfiles_maker"), + ), + } | runfiles_enabled_attr( + default = Label("//cargo/private:runfiles_enabled"), + ), fragments = ["cpp"], toolchains = [ str(Label("//rust:toolchain_type")), diff --git a/cargo/private/runfiles_enabled.bzl b/cargo/private/runfiles_enabled.bzl new file mode 100644 index 0000000000..c11b112e0f --- /dev/null +++ b/cargo/private/runfiles_enabled.bzl @@ -0,0 +1,167 @@ +"""A small utility module dedicated to detecting whether or not the `--enable_runfiles` and `--windows_enable_symlinks` flag are enabled +""" + +load("@bazel_skylib//lib:selects.bzl", "selects") +load("@bazel_skylib//rules:common_settings.bzl", "bool_setting") + +RunfilesEnabledInfo = provider( + doc = "A singleton provider that contains the raw value of a build setting", + fields = { + "value": "The value of the build setting in the current configuration. " + + "This value may come from the command line or an upstream transition, " + + "or else it will be the build setting's default.", + }, +) + +def _runfiles_enabled_setting_impl(ctx): + return RunfilesEnabledInfo(value = ctx.attr.value) + +runfiles_enabled_setting = rule( + implementation = _runfiles_enabled_setting_impl, + doc = "A bool-typed build setting that cannot be set on the command line", + attrs = { + "value": attr.bool( + doc = "A boolean value", + mandatory = True, + ), + }, +) + +_RUNFILES_ENABLED_ATTR_NAME = "_runfiles_enabled" + +def runfiles_enabled_attr(default): + return { + _RUNFILES_ENABLED_ATTR_NAME: attr.label( + doc = "A flag representing whether or not runfiles are enabled.", + providers = [RunfilesEnabledInfo], + default = default, + cfg = "exec", + ), + } + +def runfiles_enabled_build_setting(name, **kwargs): + """Define a build setting identifying if runfiles are enabled. + + Args: + name (str): The name of the build setting + **kwargs: Additional keyword arguments for the target. + """ + native.config_setting( + name = "{}__enable_runfiles".format(name), + values = {"enable_runfiles": "true"}, + ) + + native.config_setting( + name = "{}__disable_runfiles".format(name), + values = {"enable_runfiles": "false"}, + ) + + bool_setting( + name = "{}__always_true".format(name), + build_setting_default = True, + ) + + native.config_setting( + name = "{}__always_true_setting".format(name), + flag_values = {":{}__always_true".format(name): "True"}, + ) + + native.config_setting( + name = "{}__always_false_setting".format(name), + flag_values = {":{}__always_true".format(name): "False"}, + ) + + # There is no way to query a setting that is unset. By utilizing constant + # settings, we can filter to a fallback setting where no known value is + # defined. + native.alias( + name = "{}__unset_runfiles".format(name), + actual = select({ + ":{}__disable_runfiles".format(name): ":{}__always_false_setting".format(name), + ":{}__enable_runfiles".format(name): ":{}__always_false_setting".format(name), + "//conditions:default": ":{}__always_true_setting".format(name), + }), + ) + + selects.config_setting_group( + name = "{}__windows_enable_runfiles".format(name), + match_all = [ + ":{}__enable_runfiles".format(name), + "@platforms//os:windows", + ], + ) + + selects.config_setting_group( + name = "{}__windows_disable_runfiles".format(name), + match_all = [ + ":{}__disable_runfiles".format(name), + "@platforms//os:windows", + ], + ) + + selects.config_setting_group( + name = "{}__windows_unset_runfiles".format(name), + match_all = [ + ":{}__unset_runfiles".format(name), + "@platforms//os:windows", + ], + ) + + native.alias( + name = "{}__unix".format(name), + actual = select({ + "@platforms//os:windows": ":{}__always_false_setting".format(name), + "//conditions:default": ":{}__always_true_setting".format(name), + }), + ) + + selects.config_setting_group( + name = "{}__unix_enable_runfiles".format(name), + match_all = [ + ":{}__enable_runfiles".format(name), + ":{}__unix".format(name), + ], + ) + + selects.config_setting_group( + name = "{}__unix_disable_runfiles".format(name), + match_all = [ + ":{}__disable_runfiles".format(name), + ":{}__unix".format(name), + ], + ) + + selects.config_setting_group( + name = "{}__unix_unset_runfiles".format(name), + match_all = [ + ":{}__unset_runfiles".format(name), + ":{}__unix".format(name), + ], + ) + + runfiles_enabled_setting( + name = name, + value = select({ + ":{}__windows_enable_runfiles".format(name): True, + ":{}__windows_disable_runfiles".format(name): False, + ":{}__windows_unset_runfiles".format(name): False, + ":{}__unix_enable_runfiles".format(name): True, + ":{}__unix_disable_runfiles".format(name): False, + ":{}__unix_unset_runfiles".format(name): True, + "//conditions:default": True, + }), + **kwargs + ) + +def is_runfiles_enabled(attr): + """Determine whether or not runfiles are enabled. + + Args: + attr (struct): A rule's struct of attributes (`ctx.attr`) + Returns: + bool: The enable_runfiles value. + """ + + runfiles_enabled = getattr(attr, _RUNFILES_ENABLED_ATTR_NAME, None) + + return runfiles_enabled[RunfilesEnabledInfo].value if runfiles_enabled else True diff --git a/cargo/private/runfiles_maker/BUILD.bazel b/cargo/private/runfiles_maker/BUILD.bazel new file mode 100644 index 0000000000..3b3df766c2 --- /dev/null +++ b/cargo/private/runfiles_maker/BUILD.bazel @@ -0,0 +1,8 @@ +load("//rust:defs.bzl", "rust_binary") + +rust_binary( + name = "runfiles_maker", + srcs = ["runfiles_maker.rs"], + edition = "2021", + visibility = ["//visibility:public"], +) diff --git a/cargo/private/runfiles_maker/runfiles_maker.rs b/cargo/private/runfiles_maker/runfiles_maker.rs new file mode 100644 index 0000000000..a8ddf7d1c6 --- /dev/null +++ b/cargo/private/runfiles_maker/runfiles_maker.rs @@ -0,0 +1,71 @@ +//! A tool for building runfiles directories for Bazel environments that don't +//! support runfiles or have runfiles disabled. + +use std::collections::BTreeMap; +use std::path::PathBuf; + +struct Args { + pub output_dir: PathBuf, + pub runfiles: BTreeMap, +} + +impl Args { + fn parse() -> Self { + let args_file = std::env::args().nth(1).expect("No args file was passed."); + + let content = std::fs::read_to_string( + args_file + .strip_prefix('@') + .expect("Param files should start with @"), + ) + .unwrap(); + let mut args = content.lines(); + + let output_dir = PathBuf::from( + args.next() + .unwrap_or_else(|| panic!("Not enough arguments provided.")), + ); + let runfiles = args + .map(|s| { + let s = if s.starts_with('\'') && s.ends_with('\'') { + s.trim_matches('\'') + } else { + s + }; + let (src, dest) = s + .split_once('=') + .unwrap_or_else(|| panic!("Unexpected runfiles argument: {}", s)); + (PathBuf::from(src), PathBuf::from(dest)) + }) + .collect::>(); + + assert!(!runfiles.is_empty(), "No runfiles found"); + + Args { + output_dir, + runfiles, + } + } +} + +fn main() { + let args = Args::parse(); + + for (src, dest) in args.runfiles.iter() { + let out_dest = args.output_dir.join(dest); + std::fs::create_dir_all( + out_dest + .parent() + .expect("The output location should have a valid parent."), + ) + .expect("Failed to create output directory"); + std::fs::copy(src, &out_dest).unwrap_or_else(|e| { + panic!( + "Failed to copy file {} -> {}\n{:?}", + src.display(), + out_dest.display(), + e + ) + }); + } +} diff --git a/crate_universe/src/rendering.rs b/crate_universe/src/rendering.rs index ec71d93657..3d74ba3c33 100644 --- a/crate_universe/src/rendering.rs +++ b/crate_universe/src/rendering.rs @@ -436,6 +436,8 @@ impl Renderer { ) -> Result { let attrs = krate.build_script_attrs.as_ref(); + const COMPILE_DATA_GLOB_EXCLUDES: &[&str] = &["**/*.rs"]; + Ok(CargoBuildScript { // Because `cargo_build_script` does some invisible target name // mutating to determine the package and crate name for a build @@ -454,11 +456,15 @@ impl Renderer { .unwrap_or_default(), platforms, ), - compile_data: make_data( + compile_data: make_data_with_exclude( platforms, attrs .map(|attrs| attrs.compile_data_glob.clone()) .unwrap_or_default(), + COMPILE_DATA_GLOB_EXCLUDES + .iter() + .map(|&pattern| pattern.to_owned()) + .collect(), attrs .map(|attrs| attrs.compile_data.clone()) .unwrap_or_default(), @@ -872,9 +878,10 @@ fn render_build_file_template(template: &str, name: &str, version: &str) -> Resu ) } -fn make_data( +fn make_data_with_exclude( platforms: &Platforms, - glob: BTreeSet, + include: BTreeSet, + exclude: BTreeSet, select: Select>, ) -> Data { const COMMON_GLOB_EXCLUDES: &[&str] = &[ @@ -889,16 +896,25 @@ fn make_data( Data { glob: Glob { allow_empty: true, - include: glob, + include, exclude: COMMON_GLOB_EXCLUDES .iter() .map(|&glob| glob.to_owned()) + .chain(exclude) .collect(), }, select: SelectSet::new(select, platforms), } } +fn make_data( + platforms: &Platforms, + glob: BTreeSet, + select: Select>, +) -> Data { + make_data_with_exclude(platforms, glob, BTreeSet::new(), select) +} + #[cfg(test)] mod test { use super::*; diff --git a/rust/private/rustc.bzl b/rust/private/rustc.bzl index 5836040334..c82c236bb2 100644 --- a/rust/private/rustc.bzl +++ b/rust/private/rustc.bzl @@ -329,6 +329,7 @@ def collect_deps( transitive_build_infos.append(depset([build_info])) if build_info.link_search_paths: transitive_link_search_paths.append(depset([build_info.link_search_paths])) + transitive_data.append(build_info.compile_data) else: fail("rust targets can only depend on rust_library, rust_*_library or cc_library " + "targets.") @@ -470,14 +471,12 @@ def get_linker_and_args(ctx, attr, crate_type, cc_toolchain, feature_configurati def _process_build_scripts( build_info, dep_info, - compile_inputs, include_link_flags = True): """Gathers the outputs from a target's `cargo_build_script` action. Args: build_info (BuildInfo): The target Build's dependency info. dep_info (DepInfo): The Depinfo provider form the target Crate's set of inputs. - compile_inputs (depset): A set of all files that will participate in the build. include_link_flags (bool, optional): Whether to include flags like `-l` that instruct the linker to search for a library. Returns: @@ -488,8 +487,7 @@ def _process_build_scripts( - (depset[File]): All direct and transitive build flags from the current build info. """ extra_inputs, out_dir, build_env_file, build_flags_files = _create_extra_input_args(build_info, dep_info, include_link_flags = include_link_flags) - compile_inputs = depset(transitive = [extra_inputs, compile_inputs]) - return compile_inputs, out_dir, build_env_file, build_flags_files + return extra_inputs, out_dir, build_env_file, build_flags_files def _symlink_for_ambiguous_lib(actions, toolchain, crate_info, lib): """Constructs a disambiguating symlink for a library dependency. @@ -780,13 +778,18 @@ def collect_inputs( ], ) + build_script_compile_inputs, out_dir, build_env_file, build_flags_files = _process_build_scripts( + build_info = build_info, + dep_info = dep_info, + include_link_flags = include_link_flags, + ) + # For backwards compatibility, we also check the value of the `rustc_env_files` attribute when # `crate_info.rustc_env_files` is not populated. build_env_files = crate_info.rustc_env_files if crate_info.rustc_env_files else getattr(files, "rustc_env_files", []) - compile_inputs, out_dir, build_env_file, build_flags_files = _process_build_scripts(build_info, dep_info, compile_inputs, include_link_flags = include_link_flags) if build_env_file: build_env_files = [f for f in build_env_files] + [build_env_file] - compile_inputs = depset(build_env_files, transitive = [compile_inputs]) + compile_inputs = depset(build_env_files, transitive = [build_script_compile_inputs, compile_inputs]) return compile_inputs, out_dir, build_env_files, build_flags_files, linkstamp_outs, ambiguous_libs def construct_arguments( @@ -1731,8 +1734,13 @@ def _create_extra_input_args(build_info, dep_info, include_link_flags = True): input_depsets.append(build_info.compile_data) + out_dir_compile_inputs = depset( + input_files, + transitive = [dep_info.link_search_path_files, dep_info.transitive_data] + input_depsets, + ) + return ( - depset(input_files, transitive = [dep_info.link_search_path_files] + input_depsets), + out_dir_compile_inputs, out_dir, build_env_file, depset(build_flags_files, transitive = [dep_info.link_search_path_files]), From 3d2b32babf700140601f4c4f2da0fdff6de2436f Mon Sep 17 00:00:00 2001 From: UebelAndre Date: Thu, 19 Sep 2024 06:33:08 -0700 Subject: [PATCH 2/2] Regenerated crate_universe outputs --- bindgen/3rdparty/crates/BUILD.bindgen-0.70.1.bazel | 1 + bindgen/3rdparty/crates/BUILD.clang-sys-1.8.1.bazel | 1 + bindgen/3rdparty/crates/BUILD.libc-0.2.158.bazel | 1 + bindgen/3rdparty/crates/BUILD.winapi-0.3.9.bazel | 1 + crate_universe/3rdparty/crates/BUILD.anyhow-1.0.75.bazel | 1 + crate_universe/3rdparty/crates/BUILD.camino-1.1.6.bazel | 1 + crate_universe/3rdparty/crates/BUILD.chrono-tz-0.8.4.bazel | 1 + crate_universe/3rdparty/crates/BUILD.crc32fast-1.3.2.bazel | 1 + .../3rdparty/crates/BUILD.crossbeam-epoch-0.9.15.bazel | 1 + crate_universe/3rdparty/crates/BUILD.crossbeam-queue-0.3.8.bazel | 1 + .../3rdparty/crates/BUILD.crossbeam-utils-0.8.16.bazel | 1 + crate_universe/3rdparty/crates/BUILD.errno-dragonfly-0.1.2.bazel | 1 + crate_universe/3rdparty/crates/BUILD.generic-array-0.14.7.bazel | 1 + .../3rdparty/crates/BUILD.iana-time-zone-haiku-0.1.2.bazel | 1 + crate_universe/3rdparty/crates/BUILD.io-lifetimes-1.0.11.bazel | 1 + crate_universe/3rdparty/crates/BUILD.libc-0.2.149.bazel | 1 + crate_universe/3rdparty/crates/BUILD.libm-0.2.7.bazel | 1 + crate_universe/3rdparty/crates/BUILD.lock_api-0.4.11.bazel | 1 + crate_universe/3rdparty/crates/BUILD.memoffset-0.9.0.bazel | 1 + crate_universe/3rdparty/crates/BUILD.num-integer-0.1.45.bazel | 1 + crate_universe/3rdparty/crates/BUILD.num-iter-0.1.43.bazel | 1 + crate_universe/3rdparty/crates/BUILD.num-traits-0.2.15.bazel | 1 + .../3rdparty/crates/BUILD.parking_lot_core-0.9.9.bazel | 1 + crate_universe/3rdparty/crates/BUILD.proc-macro2-1.0.64.bazel | 1 + crate_universe/3rdparty/crates/BUILD.quote-1.0.29.bazel | 1 + crate_universe/3rdparty/crates/BUILD.rayon-core-1.12.0.bazel | 1 + crate_universe/3rdparty/crates/BUILD.rustix-0.37.23.bazel | 1 + crate_universe/3rdparty/crates/BUILD.rustix-0.38.21.bazel | 1 + crate_universe/3rdparty/crates/BUILD.semver-1.0.20.bazel | 1 + crate_universe/3rdparty/crates/BUILD.serde-1.0.190.bazel | 1 + crate_universe/3rdparty/crates/BUILD.serde_json-1.0.108.bazel | 1 + crate_universe/3rdparty/crates/BUILD.syn-1.0.109.bazel | 1 + crate_universe/3rdparty/crates/BUILD.thiserror-1.0.50.bazel | 1 + crate_universe/3rdparty/crates/BUILD.typenum-1.16.0.bazel | 1 + crate_universe/3rdparty/crates/BUILD.valuable-0.1.0.bazel | 1 + crate_universe/3rdparty/crates/BUILD.wasm-bindgen-0.2.87.bazel | 1 + .../3rdparty/crates/BUILD.wasm-bindgen-shared-0.2.87.bazel | 1 + crate_universe/3rdparty/crates/BUILD.winapi-0.3.9.bazel | 1 + .../3rdparty/crates/BUILD.winapi-i686-pc-windows-gnu-0.4.0.bazel | 1 + .../crates/BUILD.winapi-x86_64-pc-windows-gnu-0.4.0.bazel | 1 + .../3rdparty/crates/BUILD.windows_aarch64_gnullvm-0.48.0.bazel | 1 + .../3rdparty/crates/BUILD.windows_aarch64_msvc-0.48.0.bazel | 1 + .../3rdparty/crates/BUILD.windows_i686_gnu-0.48.0.bazel | 1 + .../3rdparty/crates/BUILD.windows_i686_msvc-0.48.0.bazel | 1 + .../3rdparty/crates/BUILD.windows_x86_64_gnu-0.48.0.bazel | 1 + .../3rdparty/crates/BUILD.windows_x86_64_gnullvm-0.48.0.bazel | 1 + .../3rdparty/crates/BUILD.windows_x86_64_msvc-0.48.0.bazel | 1 + .../vendor_external/crates/BUILD.indexmap-1.8.0.bazel | 1 + .../vendor_external/crates/BUILD.libc-0.2.119.bazel | 1 + .../vendor_external/crates/BUILD.memchr-2.4.1.bazel | 1 + .../vendor_external/crates/BUILD.proc-macro-error-1.0.4.bazel | 1 + .../crates/BUILD.proc-macro-error-attr-1.0.4.bazel | 1 + .../vendor_external/crates/BUILD.proc-macro2-1.0.36.bazel | 1 + .../vendor_external/crates/BUILD.pulldown-cmark-0.8.0.bazel | 1 + .../vendor_external/crates/BUILD.semver-1.0.6.bazel | 1 + .../vendor_external/crates/BUILD.serde-1.0.136.bazel | 1 + .../crate_universe/vendor_external/crates/BUILD.syn-1.0.86.bazel | 1 + .../vendor_external/crates/BUILD.unicase-2.6.0.bazel | 1 + .../vendor_external/crates/BUILD.winapi-0.3.9.bazel | 1 + .../crates/BUILD.winapi-i686-pc-windows-gnu-0.4.0.bazel | 1 + .../crates/BUILD.winapi-x86_64-pc-windows-gnu-0.4.0.bazel | 1 + .../vendor_local_manifests/crates/libc-0.2.158/BUILD.bazel | 1 + .../vendor_local_manifests/crates/lock_api-0.4.12/BUILD.bazel | 1 + .../crates/parking_lot_core-0.9.10/BUILD.bazel | 1 + .../vendor_local_manifests/crates/proc-macro2-1.0.86/BUILD.bazel | 1 + .../vendor_local_manifests/crates/rustix-0.38.37/BUILD.bazel | 1 + .../crates/windows_aarch64_gnullvm-0.52.6/BUILD.bazel | 1 + .../crates/windows_aarch64_msvc-0.52.6/BUILD.bazel | 1 + .../crates/windows_i686_gnu-0.52.6/BUILD.bazel | 1 + .../crates/windows_i686_gnullvm-0.52.6/BUILD.bazel | 1 + .../crates/windows_i686_msvc-0.52.6/BUILD.bazel | 1 + .../crates/windows_x86_64_gnu-0.52.6/BUILD.bazel | 1 + .../crates/windows_x86_64_gnullvm-0.52.6/BUILD.bazel | 1 + .../crates/windows_x86_64_msvc-0.52.6/BUILD.bazel | 1 + .../vendor_local_pkgs/crates/httparse-1.9.4/BUILD.bazel | 1 + .../vendor_local_pkgs/crates/libc-0.2.158/BUILD.bazel | 1 + .../vendor_local_pkgs/crates/lock_api-0.4.12/BUILD.bazel | 1 + .../vendor_local_pkgs/crates/parking_lot_core-0.9.10/BUILD.bazel | 1 + .../vendor_local_pkgs/crates/proc-macro2-1.0.86/BUILD.bazel | 1 + .../vendor_local_pkgs/crates/serde-1.0.210/BUILD.bazel | 1 + .../vendor_local_pkgs/crates/serde_json-1.0.128/BUILD.bazel | 1 + .../vendor_local_pkgs/crates/slab-0.4.9/BUILD.bazel | 1 + .../vendor_local_pkgs/crates/valuable-0.1.0/BUILD.bazel | 1 + .../vendor_local_pkgs/crates/winapi-0.3.9/BUILD.bazel | 1 + .../crates/winapi-i686-pc-windows-gnu-0.4.0/BUILD.bazel | 1 + .../crates/winapi-x86_64-pc-windows-gnu-0.4.0/BUILD.bazel | 1 + .../crates/windows_aarch64_gnullvm-0.52.6/BUILD.bazel | 1 + .../crates/windows_aarch64_msvc-0.52.6/BUILD.bazel | 1 + .../vendor_local_pkgs/crates/windows_i686_gnu-0.52.6/BUILD.bazel | 1 + .../crates/windows_i686_gnullvm-0.52.6/BUILD.bazel | 1 + .../crates/windows_i686_msvc-0.52.6/BUILD.bazel | 1 + .../crates/windows_x86_64_gnu-0.52.6/BUILD.bazel | 1 + .../crates/windows_x86_64_gnullvm-0.52.6/BUILD.bazel | 1 + .../crates/windows_x86_64_msvc-0.52.6/BUILD.bazel | 1 + .../vendor_remote_manifests/crates/BUILD.libc-0.2.158.bazel | 1 + .../vendor_remote_manifests/crates/BUILD.lock_api-0.4.12.bazel | 1 + .../crates/BUILD.parking_lot_core-0.9.10.bazel | 1 + .../crates/BUILD.proc-macro2-1.0.86.bazel | 1 + .../vendor_remote_manifests/crates/BUILD.rustix-0.38.37.bazel | 1 + .../crates/BUILD.windows_aarch64_gnullvm-0.52.6.bazel | 1 + .../crates/BUILD.windows_aarch64_msvc-0.52.6.bazel | 1 + .../crates/BUILD.windows_i686_gnu-0.52.6.bazel | 1 + .../crates/BUILD.windows_i686_gnullvm-0.52.6.bazel | 1 + .../crates/BUILD.windows_i686_msvc-0.52.6.bazel | 1 + .../crates/BUILD.windows_x86_64_gnu-0.52.6.bazel | 1 + .../crates/BUILD.windows_x86_64_gnullvm-0.52.6.bazel | 1 + .../crates/BUILD.windows_x86_64_msvc-0.52.6.bazel | 1 + .../vendor_remote_pkgs/crates/BUILD.httparse-1.9.4.bazel | 1 + .../vendor_remote_pkgs/crates/BUILD.libc-0.2.158.bazel | 1 + .../vendor_remote_pkgs/crates/BUILD.lock_api-0.4.12.bazel | 1 + .../crates/BUILD.parking_lot_core-0.9.10.bazel | 1 + .../vendor_remote_pkgs/crates/BUILD.proc-macro2-1.0.86.bazel | 1 + .../vendor_remote_pkgs/crates/BUILD.serde-1.0.210.bazel | 1 + .../vendor_remote_pkgs/crates/BUILD.serde_json-1.0.128.bazel | 1 + .../vendor_remote_pkgs/crates/BUILD.slab-0.4.9.bazel | 1 + .../vendor_remote_pkgs/crates/BUILD.valuable-0.1.0.bazel | 1 + .../vendor_remote_pkgs/crates/BUILD.winapi-0.3.9.bazel | 1 + .../crates/BUILD.winapi-i686-pc-windows-gnu-0.4.0.bazel | 1 + .../crates/BUILD.winapi-x86_64-pc-windows-gnu-0.4.0.bazel | 1 + .../crates/BUILD.windows_aarch64_gnullvm-0.52.6.bazel | 1 + .../crates/BUILD.windows_aarch64_msvc-0.52.6.bazel | 1 + .../crates/BUILD.windows_i686_gnu-0.52.6.bazel | 1 + .../crates/BUILD.windows_i686_gnullvm-0.52.6.bazel | 1 + .../crates/BUILD.windows_i686_msvc-0.52.6.bazel | 1 + .../crates/BUILD.windows_x86_64_gnu-0.52.6.bazel | 1 + .../crates/BUILD.windows_x86_64_gnullvm-0.52.6.bazel | 1 + .../crates/BUILD.windows_x86_64_msvc-0.52.6.bazel | 1 + proto/prost/private/3rdparty/crates/BUILD.anyhow-1.0.86.bazel | 1 + proto/prost/private/3rdparty/crates/BUILD.axum-0.7.5.bazel | 1 + proto/prost/private/3rdparty/crates/BUILD.axum-core-0.4.3.bazel | 1 + proto/prost/private/3rdparty/crates/BUILD.backtrace-0.3.73.bazel | 1 + proto/prost/private/3rdparty/crates/BUILD.httparse-1.9.4.bazel | 1 + proto/prost/private/3rdparty/crates/BUILD.indexmap-1.9.3.bazel | 1 + proto/prost/private/3rdparty/crates/BUILD.libc-0.2.158.bazel | 1 + proto/prost/private/3rdparty/crates/BUILD.lock_api-0.4.12.bazel | 1 + .../private/3rdparty/crates/BUILD.parking_lot_core-0.9.10.bazel | 1 + .../private/3rdparty/crates/BUILD.prettyplease-0.2.22.bazel | 1 + .../prost/private/3rdparty/crates/BUILD.proc-macro2-1.0.86.bazel | 1 + proto/prost/private/3rdparty/crates/BUILD.rustix-0.38.34.bazel | 1 + .../prost/private/3rdparty/crates/BUILD.rustversion-1.0.17.bazel | 1 + proto/prost/private/3rdparty/crates/BUILD.serde-1.0.209.bazel | 1 + proto/prost/private/3rdparty/crates/BUILD.slab-0.4.9.bazel | 1 + .../3rdparty/crates/BUILD.windows_aarch64_gnullvm-0.52.6.bazel | 1 + .../3rdparty/crates/BUILD.windows_aarch64_msvc-0.52.6.bazel | 1 + .../private/3rdparty/crates/BUILD.windows_i686_gnu-0.52.6.bazel | 1 + .../3rdparty/crates/BUILD.windows_i686_gnullvm-0.52.6.bazel | 1 + .../private/3rdparty/crates/BUILD.windows_i686_msvc-0.52.6.bazel | 1 + .../3rdparty/crates/BUILD.windows_x86_64_gnu-0.52.6.bazel | 1 + .../3rdparty/crates/BUILD.windows_x86_64_gnullvm-0.52.6.bazel | 1 + .../3rdparty/crates/BUILD.windows_x86_64_msvc-0.52.6.bazel | 1 + proto/protobuf/3rdparty/crates/BUILD.crossbeam-epoch-0.8.2.bazel | 1 + proto/protobuf/3rdparty/crates/BUILD.crossbeam-utils-0.7.2.bazel | 1 + proto/protobuf/3rdparty/crates/BUILD.httpbis-0.7.0.bazel | 1 + proto/protobuf/3rdparty/crates/BUILD.kernel32-sys-0.2.2.bazel | 1 + proto/protobuf/3rdparty/crates/BUILD.libc-0.2.139.bazel | 1 + proto/protobuf/3rdparty/crates/BUILD.log-0.4.17.bazel | 1 + proto/protobuf/3rdparty/crates/BUILD.maybe-uninit-2.0.0.bazel | 1 + proto/protobuf/3rdparty/crates/BUILD.memoffset-0.5.6.bazel | 1 + proto/protobuf/3rdparty/crates/BUILD.parking_lot-0.9.0.bazel | 1 + .../protobuf/3rdparty/crates/BUILD.parking_lot_core-0.6.3.bazel | 1 + proto/protobuf/3rdparty/crates/BUILD.protobuf-2.8.2.bazel | 1 + proto/protobuf/3rdparty/crates/BUILD.slab-0.4.7.bazel | 1 + proto/protobuf/3rdparty/crates/BUILD.winapi-0.3.9.bazel | 1 + .../3rdparty/crates/BUILD.winapi-i686-pc-windows-gnu-0.4.0.bazel | 1 + .../crates/BUILD.winapi-x86_64-pc-windows-gnu-0.4.0.bazel | 1 + proto/protobuf/3rdparty/crates/BUILD.ws2_32-sys-0.2.1.bazel | 1 + test/3rdparty/crates/BUILD.proc-macro2-1.0.86.bazel | 1 + test/3rdparty/crates/BUILD.serde-1.0.210.bazel | 1 + test/3rdparty/crates/BUILD.serde_json-1.0.128.bazel | 1 + tools/rust_analyzer/3rdparty/crates/BUILD.anyhow-1.0.71.bazel | 1 + .../3rdparty/crates/BUILD.errno-dragonfly-0.1.2.bazel | 1 + .../3rdparty/crates/BUILD.io-lifetimes-1.0.11.bazel | 1 + tools/rust_analyzer/3rdparty/crates/BUILD.libc-0.2.147.bazel | 1 + tools/rust_analyzer/3rdparty/crates/BUILD.memchr-2.5.0.bazel | 1 + .../rust_analyzer/3rdparty/crates/BUILD.proc-macro2-1.0.64.bazel | 1 + tools/rust_analyzer/3rdparty/crates/BUILD.quote-1.0.29.bazel | 1 + tools/rust_analyzer/3rdparty/crates/BUILD.rustix-0.37.23.bazel | 1 + tools/rust_analyzer/3rdparty/crates/BUILD.serde-1.0.171.bazel | 1 + .../rust_analyzer/3rdparty/crates/BUILD.serde_json-1.0.102.bazel | 1 + tools/rust_analyzer/3rdparty/crates/BUILD.winapi-0.3.9.bazel | 1 + .../3rdparty/crates/BUILD.winapi-i686-pc-windows-gnu-0.4.0.bazel | 1 + .../crates/BUILD.winapi-x86_64-pc-windows-gnu-0.4.0.bazel | 1 + .../3rdparty/crates/BUILD.windows_aarch64_gnullvm-0.48.0.bazel | 1 + .../3rdparty/crates/BUILD.windows_aarch64_msvc-0.48.0.bazel | 1 + .../3rdparty/crates/BUILD.windows_i686_gnu-0.48.0.bazel | 1 + .../3rdparty/crates/BUILD.windows_i686_msvc-0.48.0.bazel | 1 + .../3rdparty/crates/BUILD.windows_x86_64_gnu-0.48.0.bazel | 1 + .../3rdparty/crates/BUILD.windows_x86_64_gnullvm-0.48.0.bazel | 1 + .../3rdparty/crates/BUILD.windows_x86_64_msvc-0.48.0.bazel | 1 + wasm_bindgen/3rdparty/crates/BUILD.anyhow-1.0.71.bazel | 1 + wasm_bindgen/3rdparty/crates/BUILD.crc32fast-1.3.2.bazel | 1 + wasm_bindgen/3rdparty/crates/BUILD.crossbeam-epoch-0.9.15.bazel | 1 + wasm_bindgen/3rdparty/crates/BUILD.crossbeam-utils-0.8.16.bazel | 1 + wasm_bindgen/3rdparty/crates/BUILD.doc-comment-0.3.3.bazel | 1 + wasm_bindgen/3rdparty/crates/BUILD.errno-dragonfly-0.1.2.bazel | 1 + wasm_bindgen/3rdparty/crates/BUILD.httparse-1.8.0.bazel | 1 + .../3rdparty/crates/BUILD.iana-time-zone-haiku-0.1.2.bazel | 1 + wasm_bindgen/3rdparty/crates/BUILD.indexmap-1.9.3.bazel | 1 + wasm_bindgen/3rdparty/crates/BUILD.io-lifetimes-1.0.11.bazel | 1 + wasm_bindgen/3rdparty/crates/BUILD.libc-0.2.150.bazel | 1 + wasm_bindgen/3rdparty/crates/BUILD.memchr-2.5.0.bazel | 1 + wasm_bindgen/3rdparty/crates/BUILD.memoffset-0.9.0.bazel | 1 + wasm_bindgen/3rdparty/crates/BUILD.mime_guess-2.0.4.bazel | 1 + wasm_bindgen/3rdparty/crates/BUILD.num-traits-0.2.15.bazel | 1 + wasm_bindgen/3rdparty/crates/BUILD.proc-macro2-1.0.64.bazel | 1 + wasm_bindgen/3rdparty/crates/BUILD.quote-1.0.29.bazel | 1 + wasm_bindgen/3rdparty/crates/BUILD.rayon-core-1.11.0.bazel | 1 + wasm_bindgen/3rdparty/crates/BUILD.ring-0.17.5.bazel | 1 + wasm_bindgen/3rdparty/crates/BUILD.rustix-0.37.23.bazel | 1 + wasm_bindgen/3rdparty/crates/BUILD.rustls-0.21.8.bazel | 1 + wasm_bindgen/3rdparty/crates/BUILD.semver-1.0.17.bazel | 1 + wasm_bindgen/3rdparty/crates/BUILD.serde-1.0.171.bazel | 1 + wasm_bindgen/3rdparty/crates/BUILD.serde_json-1.0.102.bazel | 1 + wasm_bindgen/3rdparty/crates/BUILD.syn-1.0.109.bazel | 1 + wasm_bindgen/3rdparty/crates/BUILD.tempfile-3.6.0.bazel | 1 + wasm_bindgen/3rdparty/crates/BUILD.unicase-2.6.0.bazel | 1 + wasm_bindgen/3rdparty/crates/BUILD.wasm-bindgen-0.2.92.bazel | 1 + .../3rdparty/crates/BUILD.wasm-bindgen-shared-0.2.92.bazel | 1 + wasm_bindgen/3rdparty/crates/BUILD.winapi-0.3.9.bazel | 1 + .../3rdparty/crates/BUILD.winapi-i686-pc-windows-gnu-0.4.0.bazel | 1 + .../crates/BUILD.winapi-x86_64-pc-windows-gnu-0.4.0.bazel | 1 + .../3rdparty/crates/BUILD.windows_aarch64_gnullvm-0.48.0.bazel | 1 + .../3rdparty/crates/BUILD.windows_aarch64_msvc-0.48.0.bazel | 1 + wasm_bindgen/3rdparty/crates/BUILD.windows_i686_gnu-0.48.0.bazel | 1 + .../3rdparty/crates/BUILD.windows_i686_msvc-0.48.0.bazel | 1 + .../3rdparty/crates/BUILD.windows_x86_64_gnu-0.48.0.bazel | 1 + .../3rdparty/crates/BUILD.windows_x86_64_gnullvm-0.48.0.bazel | 1 + .../3rdparty/crates/BUILD.windows_x86_64_msvc-0.48.0.bazel | 1 + 228 files changed, 228 insertions(+) diff --git a/bindgen/3rdparty/crates/BUILD.bindgen-0.70.1.bazel b/bindgen/3rdparty/crates/BUILD.bindgen-0.70.1.bazel index 47d50c4570..41b52cfaaf 100644 --- a/bindgen/3rdparty/crates/BUILD.bindgen-0.70.1.bazel +++ b/bindgen/3rdparty/crates/BUILD.bindgen-0.70.1.bazel @@ -113,6 +113,7 @@ cargo_build_script( allow_empty = True, exclude = [ "**/* *", + "**/*.rs", ".tmp_git_root/**/*", "BUILD", "BUILD.bazel", diff --git a/bindgen/3rdparty/crates/BUILD.clang-sys-1.8.1.bazel b/bindgen/3rdparty/crates/BUILD.clang-sys-1.8.1.bazel index e7e4de20b3..780fd8dd10 100644 --- a/bindgen/3rdparty/crates/BUILD.clang-sys-1.8.1.bazel +++ b/bindgen/3rdparty/crates/BUILD.clang-sys-1.8.1.bazel @@ -118,6 +118,7 @@ cargo_build_script( allow_empty = True, exclude = [ "**/* *", + "**/*.rs", ".tmp_git_root/**/*", "BUILD", "BUILD.bazel", diff --git a/bindgen/3rdparty/crates/BUILD.libc-0.2.158.bazel b/bindgen/3rdparty/crates/BUILD.libc-0.2.158.bazel index f779344db5..ccfb678251 100644 --- a/bindgen/3rdparty/crates/BUILD.libc-0.2.158.bazel +++ b/bindgen/3rdparty/crates/BUILD.libc-0.2.158.bazel @@ -198,6 +198,7 @@ cargo_build_script( allow_empty = True, exclude = [ "**/* *", + "**/*.rs", ".tmp_git_root/**/*", "BUILD", "BUILD.bazel", diff --git a/bindgen/3rdparty/crates/BUILD.winapi-0.3.9.bazel b/bindgen/3rdparty/crates/BUILD.winapi-0.3.9.bazel index 2dccb6d01a..2c258936db 100644 --- a/bindgen/3rdparty/crates/BUILD.winapi-0.3.9.bazel +++ b/bindgen/3rdparty/crates/BUILD.winapi-0.3.9.bazel @@ -102,6 +102,7 @@ cargo_build_script( allow_empty = True, exclude = [ "**/* *", + "**/*.rs", ".tmp_git_root/**/*", "BUILD", "BUILD.bazel", diff --git a/crate_universe/3rdparty/crates/BUILD.anyhow-1.0.75.bazel b/crate_universe/3rdparty/crates/BUILD.anyhow-1.0.75.bazel index 701cf2bd01..1fda1063ad 100644 --- a/crate_universe/3rdparty/crates/BUILD.anyhow-1.0.75.bazel +++ b/crate_universe/3rdparty/crates/BUILD.anyhow-1.0.75.bazel @@ -99,6 +99,7 @@ cargo_build_script( allow_empty = True, exclude = [ "**/* *", + "**/*.rs", ".tmp_git_root/**/*", "BUILD", "BUILD.bazel", diff --git a/crate_universe/3rdparty/crates/BUILD.camino-1.1.6.bazel b/crate_universe/3rdparty/crates/BUILD.camino-1.1.6.bazel index e2f2e4bb2b..2dc1f08b93 100644 --- a/crate_universe/3rdparty/crates/BUILD.camino-1.1.6.bazel +++ b/crate_universe/3rdparty/crates/BUILD.camino-1.1.6.bazel @@ -100,6 +100,7 @@ cargo_build_script( allow_empty = True, exclude = [ "**/* *", + "**/*.rs", ".tmp_git_root/**/*", "BUILD", "BUILD.bazel", diff --git a/crate_universe/3rdparty/crates/BUILD.chrono-tz-0.8.4.bazel b/crate_universe/3rdparty/crates/BUILD.chrono-tz-0.8.4.bazel index e501c2ae85..be582b4887 100644 --- a/crate_universe/3rdparty/crates/BUILD.chrono-tz-0.8.4.bazel +++ b/crate_universe/3rdparty/crates/BUILD.chrono-tz-0.8.4.bazel @@ -101,6 +101,7 @@ cargo_build_script( allow_empty = True, exclude = [ "**/* *", + "**/*.rs", ".tmp_git_root/**/*", "BUILD", "BUILD.bazel", diff --git a/crate_universe/3rdparty/crates/BUILD.crc32fast-1.3.2.bazel b/crate_universe/3rdparty/crates/BUILD.crc32fast-1.3.2.bazel index f4fb2eecbc..4b6eaa0bfa 100644 --- a/crate_universe/3rdparty/crates/BUILD.crc32fast-1.3.2.bazel +++ b/crate_universe/3rdparty/crates/BUILD.crc32fast-1.3.2.bazel @@ -100,6 +100,7 @@ cargo_build_script( allow_empty = True, exclude = [ "**/* *", + "**/*.rs", ".tmp_git_root/**/*", "BUILD", "BUILD.bazel", diff --git a/crate_universe/3rdparty/crates/BUILD.crossbeam-epoch-0.9.15.bazel b/crate_universe/3rdparty/crates/BUILD.crossbeam-epoch-0.9.15.bazel index c5db8fe413..dcc53e4e3a 100644 --- a/crate_universe/3rdparty/crates/BUILD.crossbeam-epoch-0.9.15.bazel +++ b/crate_universe/3rdparty/crates/BUILD.crossbeam-epoch-0.9.15.bazel @@ -103,6 +103,7 @@ cargo_build_script( allow_empty = True, exclude = [ "**/* *", + "**/*.rs", ".tmp_git_root/**/*", "BUILD", "BUILD.bazel", diff --git a/crate_universe/3rdparty/crates/BUILD.crossbeam-queue-0.3.8.bazel b/crate_universe/3rdparty/crates/BUILD.crossbeam-queue-0.3.8.bazel index 07bed72c02..c825628c02 100644 --- a/crate_universe/3rdparty/crates/BUILD.crossbeam-queue-0.3.8.bazel +++ b/crate_universe/3rdparty/crates/BUILD.crossbeam-queue-0.3.8.bazel @@ -101,6 +101,7 @@ cargo_build_script( allow_empty = True, exclude = [ "**/* *", + "**/*.rs", ".tmp_git_root/**/*", "BUILD", "BUILD.bazel", diff --git a/crate_universe/3rdparty/crates/BUILD.crossbeam-utils-0.8.16.bazel b/crate_universe/3rdparty/crates/BUILD.crossbeam-utils-0.8.16.bazel index 6ae9711d83..8d7f74987f 100644 --- a/crate_universe/3rdparty/crates/BUILD.crossbeam-utils-0.8.16.bazel +++ b/crate_universe/3rdparty/crates/BUILD.crossbeam-utils-0.8.16.bazel @@ -100,6 +100,7 @@ cargo_build_script( allow_empty = True, exclude = [ "**/* *", + "**/*.rs", ".tmp_git_root/**/*", "BUILD", "BUILD.bazel", diff --git a/crate_universe/3rdparty/crates/BUILD.errno-dragonfly-0.1.2.bazel b/crate_universe/3rdparty/crates/BUILD.errno-dragonfly-0.1.2.bazel index b3da3e8c64..d3876e200f 100644 --- a/crate_universe/3rdparty/crates/BUILD.errno-dragonfly-0.1.2.bazel +++ b/crate_universe/3rdparty/crates/BUILD.errno-dragonfly-0.1.2.bazel @@ -96,6 +96,7 @@ cargo_build_script( allow_empty = True, exclude = [ "**/* *", + "**/*.rs", ".tmp_git_root/**/*", "BUILD", "BUILD.bazel", diff --git a/crate_universe/3rdparty/crates/BUILD.generic-array-0.14.7.bazel b/crate_universe/3rdparty/crates/BUILD.generic-array-0.14.7.bazel index 951563020d..a9281098fa 100644 --- a/crate_universe/3rdparty/crates/BUILD.generic-array-0.14.7.bazel +++ b/crate_universe/3rdparty/crates/BUILD.generic-array-0.14.7.bazel @@ -99,6 +99,7 @@ cargo_build_script( allow_empty = True, exclude = [ "**/* *", + "**/*.rs", ".tmp_git_root/**/*", "BUILD", "BUILD.bazel", diff --git a/crate_universe/3rdparty/crates/BUILD.iana-time-zone-haiku-0.1.2.bazel b/crate_universe/3rdparty/crates/BUILD.iana-time-zone-haiku-0.1.2.bazel index 15b7a308b1..770d9e0be4 100644 --- a/crate_universe/3rdparty/crates/BUILD.iana-time-zone-haiku-0.1.2.bazel +++ b/crate_universe/3rdparty/crates/BUILD.iana-time-zone-haiku-0.1.2.bazel @@ -95,6 +95,7 @@ cargo_build_script( allow_empty = True, exclude = [ "**/* *", + "**/*.rs", ".tmp_git_root/**/*", "BUILD", "BUILD.bazel", diff --git a/crate_universe/3rdparty/crates/BUILD.io-lifetimes-1.0.11.bazel b/crate_universe/3rdparty/crates/BUILD.io-lifetimes-1.0.11.bazel index 3104666ba0..f2626eb1da 100644 --- a/crate_universe/3rdparty/crates/BUILD.io-lifetimes-1.0.11.bazel +++ b/crate_universe/3rdparty/crates/BUILD.io-lifetimes-1.0.11.bazel @@ -206,6 +206,7 @@ cargo_build_script( allow_empty = True, exclude = [ "**/* *", + "**/*.rs", ".tmp_git_root/**/*", "BUILD", "BUILD.bazel", diff --git a/crate_universe/3rdparty/crates/BUILD.libc-0.2.149.bazel b/crate_universe/3rdparty/crates/BUILD.libc-0.2.149.bazel index eaf45af124..75732addc7 100644 --- a/crate_universe/3rdparty/crates/BUILD.libc-0.2.149.bazel +++ b/crate_universe/3rdparty/crates/BUILD.libc-0.2.149.bazel @@ -191,6 +191,7 @@ cargo_build_script( allow_empty = True, exclude = [ "**/* *", + "**/*.rs", ".tmp_git_root/**/*", "BUILD", "BUILD.bazel", diff --git a/crate_universe/3rdparty/crates/BUILD.libm-0.2.7.bazel b/crate_universe/3rdparty/crates/BUILD.libm-0.2.7.bazel index a8928f5aae..d6996ff6e1 100644 --- a/crate_universe/3rdparty/crates/BUILD.libm-0.2.7.bazel +++ b/crate_universe/3rdparty/crates/BUILD.libm-0.2.7.bazel @@ -98,6 +98,7 @@ cargo_build_script( allow_empty = True, exclude = [ "**/* *", + "**/*.rs", ".tmp_git_root/**/*", "BUILD", "BUILD.bazel", diff --git a/crate_universe/3rdparty/crates/BUILD.lock_api-0.4.11.bazel b/crate_universe/3rdparty/crates/BUILD.lock_api-0.4.11.bazel index 9728ade48d..d25ced3866 100644 --- a/crate_universe/3rdparty/crates/BUILD.lock_api-0.4.11.bazel +++ b/crate_universe/3rdparty/crates/BUILD.lock_api-0.4.11.bazel @@ -100,6 +100,7 @@ cargo_build_script( allow_empty = True, exclude = [ "**/* *", + "**/*.rs", ".tmp_git_root/**/*", "BUILD", "BUILD.bazel", diff --git a/crate_universe/3rdparty/crates/BUILD.memoffset-0.9.0.bazel b/crate_universe/3rdparty/crates/BUILD.memoffset-0.9.0.bazel index 4042d6d02e..0d4af6a9c1 100644 --- a/crate_universe/3rdparty/crates/BUILD.memoffset-0.9.0.bazel +++ b/crate_universe/3rdparty/crates/BUILD.memoffset-0.9.0.bazel @@ -98,6 +98,7 @@ cargo_build_script( allow_empty = True, exclude = [ "**/* *", + "**/*.rs", ".tmp_git_root/**/*", "BUILD", "BUILD.bazel", diff --git a/crate_universe/3rdparty/crates/BUILD.num-integer-0.1.45.bazel b/crate_universe/3rdparty/crates/BUILD.num-integer-0.1.45.bazel index 3a47f5336b..079ffdd5cc 100644 --- a/crate_universe/3rdparty/crates/BUILD.num-integer-0.1.45.bazel +++ b/crate_universe/3rdparty/crates/BUILD.num-integer-0.1.45.bazel @@ -100,6 +100,7 @@ cargo_build_script( allow_empty = True, exclude = [ "**/* *", + "**/*.rs", ".tmp_git_root/**/*", "BUILD", "BUILD.bazel", diff --git a/crate_universe/3rdparty/crates/BUILD.num-iter-0.1.43.bazel b/crate_universe/3rdparty/crates/BUILD.num-iter-0.1.43.bazel index 6e2cab65df..bf3e0d594e 100644 --- a/crate_universe/3rdparty/crates/BUILD.num-iter-0.1.43.bazel +++ b/crate_universe/3rdparty/crates/BUILD.num-iter-0.1.43.bazel @@ -101,6 +101,7 @@ cargo_build_script( allow_empty = True, exclude = [ "**/* *", + "**/*.rs", ".tmp_git_root/**/*", "BUILD", "BUILD.bazel", diff --git a/crate_universe/3rdparty/crates/BUILD.num-traits-0.2.15.bazel b/crate_universe/3rdparty/crates/BUILD.num-traits-0.2.15.bazel index 34039af270..1d8e89b79b 100644 --- a/crate_universe/3rdparty/crates/BUILD.num-traits-0.2.15.bazel +++ b/crate_universe/3rdparty/crates/BUILD.num-traits-0.2.15.bazel @@ -99,6 +99,7 @@ cargo_build_script( allow_empty = True, exclude = [ "**/* *", + "**/*.rs", ".tmp_git_root/**/*", "BUILD", "BUILD.bazel", diff --git a/crate_universe/3rdparty/crates/BUILD.parking_lot_core-0.9.9.bazel b/crate_universe/3rdparty/crates/BUILD.parking_lot_core-0.9.9.bazel index 34e96a792c..4583f86cc3 100644 --- a/crate_universe/3rdparty/crates/BUILD.parking_lot_core-0.9.9.bazel +++ b/crate_universe/3rdparty/crates/BUILD.parking_lot_core-0.9.9.bazel @@ -180,6 +180,7 @@ cargo_build_script( allow_empty = True, exclude = [ "**/* *", + "**/*.rs", ".tmp_git_root/**/*", "BUILD", "BUILD.bazel", diff --git a/crate_universe/3rdparty/crates/BUILD.proc-macro2-1.0.64.bazel b/crate_universe/3rdparty/crates/BUILD.proc-macro2-1.0.64.bazel index 502879cf04..a9746e2757 100644 --- a/crate_universe/3rdparty/crates/BUILD.proc-macro2-1.0.64.bazel +++ b/crate_universe/3rdparty/crates/BUILD.proc-macro2-1.0.64.bazel @@ -100,6 +100,7 @@ cargo_build_script( allow_empty = True, exclude = [ "**/* *", + "**/*.rs", ".tmp_git_root/**/*", "BUILD", "BUILD.bazel", diff --git a/crate_universe/3rdparty/crates/BUILD.quote-1.0.29.bazel b/crate_universe/3rdparty/crates/BUILD.quote-1.0.29.bazel index 844f47935d..92e678d604 100644 --- a/crate_universe/3rdparty/crates/BUILD.quote-1.0.29.bazel +++ b/crate_universe/3rdparty/crates/BUILD.quote-1.0.29.bazel @@ -100,6 +100,7 @@ cargo_build_script( allow_empty = True, exclude = [ "**/* *", + "**/*.rs", ".tmp_git_root/**/*", "BUILD", "BUILD.bazel", diff --git a/crate_universe/3rdparty/crates/BUILD.rayon-core-1.12.0.bazel b/crate_universe/3rdparty/crates/BUILD.rayon-core-1.12.0.bazel index 766d61297f..a7a23e5b4d 100644 --- a/crate_universe/3rdparty/crates/BUILD.rayon-core-1.12.0.bazel +++ b/crate_universe/3rdparty/crates/BUILD.rayon-core-1.12.0.bazel @@ -97,6 +97,7 @@ cargo_build_script( allow_empty = True, exclude = [ "**/* *", + "**/*.rs", ".tmp_git_root/**/*", "BUILD", "BUILD.bazel", diff --git a/crate_universe/3rdparty/crates/BUILD.rustix-0.37.23.bazel b/crate_universe/3rdparty/crates/BUILD.rustix-0.37.23.bazel index a39f12dc9f..6a1a78bf8f 100644 --- a/crate_universe/3rdparty/crates/BUILD.rustix-0.37.23.bazel +++ b/crate_universe/3rdparty/crates/BUILD.rustix-0.37.23.bazel @@ -303,6 +303,7 @@ cargo_build_script( allow_empty = True, exclude = [ "**/* *", + "**/*.rs", ".tmp_git_root/**/*", "BUILD", "BUILD.bazel", diff --git a/crate_universe/3rdparty/crates/BUILD.rustix-0.38.21.bazel b/crate_universe/3rdparty/crates/BUILD.rustix-0.38.21.bazel index 7d45985ba2..014b96d7b9 100644 --- a/crate_universe/3rdparty/crates/BUILD.rustix-0.38.21.bazel +++ b/crate_universe/3rdparty/crates/BUILD.rustix-0.38.21.bazel @@ -398,6 +398,7 @@ cargo_build_script( allow_empty = True, exclude = [ "**/* *", + "**/*.rs", ".tmp_git_root/**/*", "BUILD", "BUILD.bazel", diff --git a/crate_universe/3rdparty/crates/BUILD.semver-1.0.20.bazel b/crate_universe/3rdparty/crates/BUILD.semver-1.0.20.bazel index 20aff00add..92da48a8fb 100644 --- a/crate_universe/3rdparty/crates/BUILD.semver-1.0.20.bazel +++ b/crate_universe/3rdparty/crates/BUILD.semver-1.0.20.bazel @@ -101,6 +101,7 @@ cargo_build_script( allow_empty = True, exclude = [ "**/* *", + "**/*.rs", ".tmp_git_root/**/*", "BUILD", "BUILD.bazel", diff --git a/crate_universe/3rdparty/crates/BUILD.serde-1.0.190.bazel b/crate_universe/3rdparty/crates/BUILD.serde-1.0.190.bazel index 9f164f97d0..e96106b39c 100644 --- a/crate_universe/3rdparty/crates/BUILD.serde-1.0.190.bazel +++ b/crate_universe/3rdparty/crates/BUILD.serde-1.0.190.bazel @@ -105,6 +105,7 @@ cargo_build_script( allow_empty = True, exclude = [ "**/* *", + "**/*.rs", ".tmp_git_root/**/*", "BUILD", "BUILD.bazel", diff --git a/crate_universe/3rdparty/crates/BUILD.serde_json-1.0.108.bazel b/crate_universe/3rdparty/crates/BUILD.serde_json-1.0.108.bazel index 796226fdfe..1e0aa68a76 100644 --- a/crate_universe/3rdparty/crates/BUILD.serde_json-1.0.108.bazel +++ b/crate_universe/3rdparty/crates/BUILD.serde_json-1.0.108.bazel @@ -103,6 +103,7 @@ cargo_build_script( allow_empty = True, exclude = [ "**/* *", + "**/*.rs", ".tmp_git_root/**/*", "BUILD", "BUILD.bazel", diff --git a/crate_universe/3rdparty/crates/BUILD.syn-1.0.109.bazel b/crate_universe/3rdparty/crates/BUILD.syn-1.0.109.bazel index fc70bdbde3..e56e61866f 100644 --- a/crate_universe/3rdparty/crates/BUILD.syn-1.0.109.bazel +++ b/crate_universe/3rdparty/crates/BUILD.syn-1.0.109.bazel @@ -109,6 +109,7 @@ cargo_build_script( allow_empty = True, exclude = [ "**/* *", + "**/*.rs", ".tmp_git_root/**/*", "BUILD", "BUILD.bazel", diff --git a/crate_universe/3rdparty/crates/BUILD.thiserror-1.0.50.bazel b/crate_universe/3rdparty/crates/BUILD.thiserror-1.0.50.bazel index 96d39f61d9..725ea4e39a 100644 --- a/crate_universe/3rdparty/crates/BUILD.thiserror-1.0.50.bazel +++ b/crate_universe/3rdparty/crates/BUILD.thiserror-1.0.50.bazel @@ -98,6 +98,7 @@ cargo_build_script( allow_empty = True, exclude = [ "**/* *", + "**/*.rs", ".tmp_git_root/**/*", "BUILD", "BUILD.bazel", diff --git a/crate_universe/3rdparty/crates/BUILD.typenum-1.16.0.bazel b/crate_universe/3rdparty/crates/BUILD.typenum-1.16.0.bazel index f2fec087a5..36d1535e9f 100644 --- a/crate_universe/3rdparty/crates/BUILD.typenum-1.16.0.bazel +++ b/crate_universe/3rdparty/crates/BUILD.typenum-1.16.0.bazel @@ -95,6 +95,7 @@ cargo_build_script( allow_empty = True, exclude = [ "**/* *", + "**/*.rs", ".tmp_git_root/**/*", "BUILD", "BUILD.bazel", diff --git a/crate_universe/3rdparty/crates/BUILD.valuable-0.1.0.bazel b/crate_universe/3rdparty/crates/BUILD.valuable-0.1.0.bazel index 0d8b74233e..f945b5f512 100644 --- a/crate_universe/3rdparty/crates/BUILD.valuable-0.1.0.bazel +++ b/crate_universe/3rdparty/crates/BUILD.valuable-0.1.0.bazel @@ -95,6 +95,7 @@ cargo_build_script( allow_empty = True, exclude = [ "**/* *", + "**/*.rs", ".tmp_git_root/**/*", "BUILD", "BUILD.bazel", diff --git a/crate_universe/3rdparty/crates/BUILD.wasm-bindgen-0.2.87.bazel b/crate_universe/3rdparty/crates/BUILD.wasm-bindgen-0.2.87.bazel index 61065703b4..65f10bb354 100644 --- a/crate_universe/3rdparty/crates/BUILD.wasm-bindgen-0.2.87.bazel +++ b/crate_universe/3rdparty/crates/BUILD.wasm-bindgen-0.2.87.bazel @@ -99,6 +99,7 @@ cargo_build_script( allow_empty = True, exclude = [ "**/* *", + "**/*.rs", ".tmp_git_root/**/*", "BUILD", "BUILD.bazel", diff --git a/crate_universe/3rdparty/crates/BUILD.wasm-bindgen-shared-0.2.87.bazel b/crate_universe/3rdparty/crates/BUILD.wasm-bindgen-shared-0.2.87.bazel index 835201125b..6fdc8630a3 100644 --- a/crate_universe/3rdparty/crates/BUILD.wasm-bindgen-shared-0.2.87.bazel +++ b/crate_universe/3rdparty/crates/BUILD.wasm-bindgen-shared-0.2.87.bazel @@ -95,6 +95,7 @@ cargo_build_script( allow_empty = True, exclude = [ "**/* *", + "**/*.rs", ".tmp_git_root/**/*", "BUILD", "BUILD.bazel", diff --git a/crate_universe/3rdparty/crates/BUILD.winapi-0.3.9.bazel b/crate_universe/3rdparty/crates/BUILD.winapi-0.3.9.bazel index d3c39a3d27..16ae90e7fe 100644 --- a/crate_universe/3rdparty/crates/BUILD.winapi-0.3.9.bazel +++ b/crate_universe/3rdparty/crates/BUILD.winapi-0.3.9.bazel @@ -113,6 +113,7 @@ cargo_build_script( allow_empty = True, exclude = [ "**/* *", + "**/*.rs", ".tmp_git_root/**/*", "BUILD", "BUILD.bazel", diff --git a/crate_universe/3rdparty/crates/BUILD.winapi-i686-pc-windows-gnu-0.4.0.bazel b/crate_universe/3rdparty/crates/BUILD.winapi-i686-pc-windows-gnu-0.4.0.bazel index dc32319117..bba9597c8a 100644 --- a/crate_universe/3rdparty/crates/BUILD.winapi-i686-pc-windows-gnu-0.4.0.bazel +++ b/crate_universe/3rdparty/crates/BUILD.winapi-i686-pc-windows-gnu-0.4.0.bazel @@ -95,6 +95,7 @@ cargo_build_script( allow_empty = True, exclude = [ "**/* *", + "**/*.rs", ".tmp_git_root/**/*", "BUILD", "BUILD.bazel", diff --git a/crate_universe/3rdparty/crates/BUILD.winapi-x86_64-pc-windows-gnu-0.4.0.bazel b/crate_universe/3rdparty/crates/BUILD.winapi-x86_64-pc-windows-gnu-0.4.0.bazel index fc4bffc11d..1044abe447 100644 --- a/crate_universe/3rdparty/crates/BUILD.winapi-x86_64-pc-windows-gnu-0.4.0.bazel +++ b/crate_universe/3rdparty/crates/BUILD.winapi-x86_64-pc-windows-gnu-0.4.0.bazel @@ -95,6 +95,7 @@ cargo_build_script( allow_empty = True, exclude = [ "**/* *", + "**/*.rs", ".tmp_git_root/**/*", "BUILD", "BUILD.bazel", diff --git a/crate_universe/3rdparty/crates/BUILD.windows_aarch64_gnullvm-0.48.0.bazel b/crate_universe/3rdparty/crates/BUILD.windows_aarch64_gnullvm-0.48.0.bazel index ec926950fe..f9467e8c4d 100644 --- a/crate_universe/3rdparty/crates/BUILD.windows_aarch64_gnullvm-0.48.0.bazel +++ b/crate_universe/3rdparty/crates/BUILD.windows_aarch64_gnullvm-0.48.0.bazel @@ -95,6 +95,7 @@ cargo_build_script( allow_empty = True, exclude = [ "**/* *", + "**/*.rs", ".tmp_git_root/**/*", "BUILD", "BUILD.bazel", diff --git a/crate_universe/3rdparty/crates/BUILD.windows_aarch64_msvc-0.48.0.bazel b/crate_universe/3rdparty/crates/BUILD.windows_aarch64_msvc-0.48.0.bazel index 66bccdedab..46242c22dc 100644 --- a/crate_universe/3rdparty/crates/BUILD.windows_aarch64_msvc-0.48.0.bazel +++ b/crate_universe/3rdparty/crates/BUILD.windows_aarch64_msvc-0.48.0.bazel @@ -95,6 +95,7 @@ cargo_build_script( allow_empty = True, exclude = [ "**/* *", + "**/*.rs", ".tmp_git_root/**/*", "BUILD", "BUILD.bazel", diff --git a/crate_universe/3rdparty/crates/BUILD.windows_i686_gnu-0.48.0.bazel b/crate_universe/3rdparty/crates/BUILD.windows_i686_gnu-0.48.0.bazel index 702c90ec1f..3186c0269d 100644 --- a/crate_universe/3rdparty/crates/BUILD.windows_i686_gnu-0.48.0.bazel +++ b/crate_universe/3rdparty/crates/BUILD.windows_i686_gnu-0.48.0.bazel @@ -95,6 +95,7 @@ cargo_build_script( allow_empty = True, exclude = [ "**/* *", + "**/*.rs", ".tmp_git_root/**/*", "BUILD", "BUILD.bazel", diff --git a/crate_universe/3rdparty/crates/BUILD.windows_i686_msvc-0.48.0.bazel b/crate_universe/3rdparty/crates/BUILD.windows_i686_msvc-0.48.0.bazel index a184208c50..6974cc40a9 100644 --- a/crate_universe/3rdparty/crates/BUILD.windows_i686_msvc-0.48.0.bazel +++ b/crate_universe/3rdparty/crates/BUILD.windows_i686_msvc-0.48.0.bazel @@ -95,6 +95,7 @@ cargo_build_script( allow_empty = True, exclude = [ "**/* *", + "**/*.rs", ".tmp_git_root/**/*", "BUILD", "BUILD.bazel", diff --git a/crate_universe/3rdparty/crates/BUILD.windows_x86_64_gnu-0.48.0.bazel b/crate_universe/3rdparty/crates/BUILD.windows_x86_64_gnu-0.48.0.bazel index 1caebd451e..f3908ce9da 100644 --- a/crate_universe/3rdparty/crates/BUILD.windows_x86_64_gnu-0.48.0.bazel +++ b/crate_universe/3rdparty/crates/BUILD.windows_x86_64_gnu-0.48.0.bazel @@ -95,6 +95,7 @@ cargo_build_script( allow_empty = True, exclude = [ "**/* *", + "**/*.rs", ".tmp_git_root/**/*", "BUILD", "BUILD.bazel", diff --git a/crate_universe/3rdparty/crates/BUILD.windows_x86_64_gnullvm-0.48.0.bazel b/crate_universe/3rdparty/crates/BUILD.windows_x86_64_gnullvm-0.48.0.bazel index e6cbc4ee53..4e6942375f 100644 --- a/crate_universe/3rdparty/crates/BUILD.windows_x86_64_gnullvm-0.48.0.bazel +++ b/crate_universe/3rdparty/crates/BUILD.windows_x86_64_gnullvm-0.48.0.bazel @@ -95,6 +95,7 @@ cargo_build_script( allow_empty = True, exclude = [ "**/* *", + "**/*.rs", ".tmp_git_root/**/*", "BUILD", "BUILD.bazel", diff --git a/crate_universe/3rdparty/crates/BUILD.windows_x86_64_msvc-0.48.0.bazel b/crate_universe/3rdparty/crates/BUILD.windows_x86_64_msvc-0.48.0.bazel index 06f41eb362..26fea68b7d 100644 --- a/crate_universe/3rdparty/crates/BUILD.windows_x86_64_msvc-0.48.0.bazel +++ b/crate_universe/3rdparty/crates/BUILD.windows_x86_64_msvc-0.48.0.bazel @@ -95,6 +95,7 @@ cargo_build_script( allow_empty = True, exclude = [ "**/* *", + "**/*.rs", ".tmp_git_root/**/*", "BUILD", "BUILD.bazel", diff --git a/examples/crate_universe/vendor_external/crates/BUILD.indexmap-1.8.0.bazel b/examples/crate_universe/vendor_external/crates/BUILD.indexmap-1.8.0.bazel index 183d43d3a8..3f3c477a77 100644 --- a/examples/crate_universe/vendor_external/crates/BUILD.indexmap-1.8.0.bazel +++ b/examples/crate_universe/vendor_external/crates/BUILD.indexmap-1.8.0.bazel @@ -99,6 +99,7 @@ cargo_build_script( allow_empty = True, exclude = [ "**/* *", + "**/*.rs", ".tmp_git_root/**/*", "BUILD", "BUILD.bazel", diff --git a/examples/crate_universe/vendor_external/crates/BUILD.libc-0.2.119.bazel b/examples/crate_universe/vendor_external/crates/BUILD.libc-0.2.119.bazel index ae1a40e313..edba7c7341 100644 --- a/examples/crate_universe/vendor_external/crates/BUILD.libc-0.2.119.bazel +++ b/examples/crate_universe/vendor_external/crates/BUILD.libc-0.2.119.bazel @@ -95,6 +95,7 @@ cargo_build_script( allow_empty = True, exclude = [ "**/* *", + "**/*.rs", ".tmp_git_root/**/*", "BUILD", "BUILD.bazel", diff --git a/examples/crate_universe/vendor_external/crates/BUILD.memchr-2.4.1.bazel b/examples/crate_universe/vendor_external/crates/BUILD.memchr-2.4.1.bazel index f9bd54dc82..7b6d4cbe20 100644 --- a/examples/crate_universe/vendor_external/crates/BUILD.memchr-2.4.1.bazel +++ b/examples/crate_universe/vendor_external/crates/BUILD.memchr-2.4.1.bazel @@ -99,6 +99,7 @@ cargo_build_script( allow_empty = True, exclude = [ "**/* *", + "**/*.rs", ".tmp_git_root/**/*", "BUILD", "BUILD.bazel", diff --git a/examples/crate_universe/vendor_external/crates/BUILD.proc-macro-error-1.0.4.bazel b/examples/crate_universe/vendor_external/crates/BUILD.proc-macro-error-1.0.4.bazel index ce88ccc639..7417263752 100644 --- a/examples/crate_universe/vendor_external/crates/BUILD.proc-macro-error-1.0.4.bazel +++ b/examples/crate_universe/vendor_external/crates/BUILD.proc-macro-error-1.0.4.bazel @@ -106,6 +106,7 @@ cargo_build_script( allow_empty = True, exclude = [ "**/* *", + "**/*.rs", ".tmp_git_root/**/*", "BUILD", "BUILD.bazel", diff --git a/examples/crate_universe/vendor_external/crates/BUILD.proc-macro-error-attr-1.0.4.bazel b/examples/crate_universe/vendor_external/crates/BUILD.proc-macro-error-attr-1.0.4.bazel index 3a407b0ed0..faebfd3223 100644 --- a/examples/crate_universe/vendor_external/crates/BUILD.proc-macro-error-attr-1.0.4.bazel +++ b/examples/crate_universe/vendor_external/crates/BUILD.proc-macro-error-attr-1.0.4.bazel @@ -97,6 +97,7 @@ cargo_build_script( allow_empty = True, exclude = [ "**/* *", + "**/*.rs", ".tmp_git_root/**/*", "BUILD", "BUILD.bazel", diff --git a/examples/crate_universe/vendor_external/crates/BUILD.proc-macro2-1.0.36.bazel b/examples/crate_universe/vendor_external/crates/BUILD.proc-macro2-1.0.36.bazel index 7ef279c5d4..2b410d7989 100644 --- a/examples/crate_universe/vendor_external/crates/BUILD.proc-macro2-1.0.36.bazel +++ b/examples/crate_universe/vendor_external/crates/BUILD.proc-macro2-1.0.36.bazel @@ -157,6 +157,7 @@ cargo_build_script( allow_empty = True, exclude = [ "**/* *", + "**/*.rs", ".tmp_git_root/**/*", "BUILD", "BUILD.bazel", diff --git a/examples/crate_universe/vendor_external/crates/BUILD.pulldown-cmark-0.8.0.bazel b/examples/crate_universe/vendor_external/crates/BUILD.pulldown-cmark-0.8.0.bazel index 785eb7bbc2..0caf5772d6 100644 --- a/examples/crate_universe/vendor_external/crates/BUILD.pulldown-cmark-0.8.0.bazel +++ b/examples/crate_universe/vendor_external/crates/BUILD.pulldown-cmark-0.8.0.bazel @@ -98,6 +98,7 @@ cargo_build_script( allow_empty = True, exclude = [ "**/* *", + "**/*.rs", ".tmp_git_root/**/*", "BUILD", "BUILD.bazel", diff --git a/examples/crate_universe/vendor_external/crates/BUILD.semver-1.0.6.bazel b/examples/crate_universe/vendor_external/crates/BUILD.semver-1.0.6.bazel index ef9016d810..8ee27cf8cd 100644 --- a/examples/crate_universe/vendor_external/crates/BUILD.semver-1.0.6.bazel +++ b/examples/crate_universe/vendor_external/crates/BUILD.semver-1.0.6.bazel @@ -99,6 +99,7 @@ cargo_build_script( allow_empty = True, exclude = [ "**/* *", + "**/*.rs", ".tmp_git_root/**/*", "BUILD", "BUILD.bazel", diff --git a/examples/crate_universe/vendor_external/crates/BUILD.serde-1.0.136.bazel b/examples/crate_universe/vendor_external/crates/BUILD.serde-1.0.136.bazel index fe4d7321cb..c77931b82d 100644 --- a/examples/crate_universe/vendor_external/crates/BUILD.serde-1.0.136.bazel +++ b/examples/crate_universe/vendor_external/crates/BUILD.serde-1.0.136.bazel @@ -99,6 +99,7 @@ cargo_build_script( allow_empty = True, exclude = [ "**/* *", + "**/*.rs", ".tmp_git_root/**/*", "BUILD", "BUILD.bazel", diff --git a/examples/crate_universe/vendor_external/crates/BUILD.syn-1.0.86.bazel b/examples/crate_universe/vendor_external/crates/BUILD.syn-1.0.86.bazel index 9f181d22fb..f486dc6822 100644 --- a/examples/crate_universe/vendor_external/crates/BUILD.syn-1.0.86.bazel +++ b/examples/crate_universe/vendor_external/crates/BUILD.syn-1.0.86.bazel @@ -190,6 +190,7 @@ cargo_build_script( allow_empty = True, exclude = [ "**/* *", + "**/*.rs", ".tmp_git_root/**/*", "BUILD", "BUILD.bazel", diff --git a/examples/crate_universe/vendor_external/crates/BUILD.unicase-2.6.0.bazel b/examples/crate_universe/vendor_external/crates/BUILD.unicase-2.6.0.bazel index 2f500891a8..1c768d17df 100644 --- a/examples/crate_universe/vendor_external/crates/BUILD.unicase-2.6.0.bazel +++ b/examples/crate_universe/vendor_external/crates/BUILD.unicase-2.6.0.bazel @@ -95,6 +95,7 @@ cargo_build_script( allow_empty = True, exclude = [ "**/* *", + "**/*.rs", ".tmp_git_root/**/*", "BUILD", "BUILD.bazel", diff --git a/examples/crate_universe/vendor_external/crates/BUILD.winapi-0.3.9.bazel b/examples/crate_universe/vendor_external/crates/BUILD.winapi-0.3.9.bazel index dd490e78e2..b28a0a62c3 100644 --- a/examples/crate_universe/vendor_external/crates/BUILD.winapi-0.3.9.bazel +++ b/examples/crate_universe/vendor_external/crates/BUILD.winapi-0.3.9.bazel @@ -108,6 +108,7 @@ cargo_build_script( allow_empty = True, exclude = [ "**/* *", + "**/*.rs", ".tmp_git_root/**/*", "BUILD", "BUILD.bazel", diff --git a/examples/crate_universe/vendor_external/crates/BUILD.winapi-i686-pc-windows-gnu-0.4.0.bazel b/examples/crate_universe/vendor_external/crates/BUILD.winapi-i686-pc-windows-gnu-0.4.0.bazel index 6e8f1c99c2..f0d77659aa 100644 --- a/examples/crate_universe/vendor_external/crates/BUILD.winapi-i686-pc-windows-gnu-0.4.0.bazel +++ b/examples/crate_universe/vendor_external/crates/BUILD.winapi-i686-pc-windows-gnu-0.4.0.bazel @@ -95,6 +95,7 @@ cargo_build_script( allow_empty = True, exclude = [ "**/* *", + "**/*.rs", ".tmp_git_root/**/*", "BUILD", "BUILD.bazel", diff --git a/examples/crate_universe/vendor_external/crates/BUILD.winapi-x86_64-pc-windows-gnu-0.4.0.bazel b/examples/crate_universe/vendor_external/crates/BUILD.winapi-x86_64-pc-windows-gnu-0.4.0.bazel index 33f5307014..05e4d869c2 100644 --- a/examples/crate_universe/vendor_external/crates/BUILD.winapi-x86_64-pc-windows-gnu-0.4.0.bazel +++ b/examples/crate_universe/vendor_external/crates/BUILD.winapi-x86_64-pc-windows-gnu-0.4.0.bazel @@ -95,6 +95,7 @@ cargo_build_script( allow_empty = True, exclude = [ "**/* *", + "**/*.rs", ".tmp_git_root/**/*", "BUILD", "BUILD.bazel", diff --git a/examples/crate_universe/vendor_local_manifests/crates/libc-0.2.158/BUILD.bazel b/examples/crate_universe/vendor_local_manifests/crates/libc-0.2.158/BUILD.bazel index 77feabd8c1..ce3d6c99b7 100644 --- a/examples/crate_universe/vendor_local_manifests/crates/libc-0.2.158/BUILD.bazel +++ b/examples/crate_universe/vendor_local_manifests/crates/libc-0.2.158/BUILD.bazel @@ -155,6 +155,7 @@ cargo_build_script( allow_empty = True, exclude = [ "**/* *", + "**/*.rs", ".tmp_git_root/**/*", "BUILD", "BUILD.bazel", diff --git a/examples/crate_universe/vendor_local_manifests/crates/lock_api-0.4.12/BUILD.bazel b/examples/crate_universe/vendor_local_manifests/crates/lock_api-0.4.12/BUILD.bazel index 86223067a3..8d2943669a 100644 --- a/examples/crate_universe/vendor_local_manifests/crates/lock_api-0.4.12/BUILD.bazel +++ b/examples/crate_universe/vendor_local_manifests/crates/lock_api-0.4.12/BUILD.bazel @@ -100,6 +100,7 @@ cargo_build_script( allow_empty = True, exclude = [ "**/* *", + "**/*.rs", ".tmp_git_root/**/*", "BUILD", "BUILD.bazel", diff --git a/examples/crate_universe/vendor_local_manifests/crates/parking_lot_core-0.9.10/BUILD.bazel b/examples/crate_universe/vendor_local_manifests/crates/parking_lot_core-0.9.10/BUILD.bazel index e57d8d3cbe..635686dd0a 100644 --- a/examples/crate_universe/vendor_local_manifests/crates/parking_lot_core-0.9.10/BUILD.bazel +++ b/examples/crate_universe/vendor_local_manifests/crates/parking_lot_core-0.9.10/BUILD.bazel @@ -180,6 +180,7 @@ cargo_build_script( allow_empty = True, exclude = [ "**/* *", + "**/*.rs", ".tmp_git_root/**/*", "BUILD", "BUILD.bazel", diff --git a/examples/crate_universe/vendor_local_manifests/crates/proc-macro2-1.0.86/BUILD.bazel b/examples/crate_universe/vendor_local_manifests/crates/proc-macro2-1.0.86/BUILD.bazel index d9052179c4..0290822b7a 100644 --- a/examples/crate_universe/vendor_local_manifests/crates/proc-macro2-1.0.86/BUILD.bazel +++ b/examples/crate_universe/vendor_local_manifests/crates/proc-macro2-1.0.86/BUILD.bazel @@ -100,6 +100,7 @@ cargo_build_script( allow_empty = True, exclude = [ "**/* *", + "**/*.rs", ".tmp_git_root/**/*", "BUILD", "BUILD.bazel", diff --git a/examples/crate_universe/vendor_local_manifests/crates/rustix-0.38.37/BUILD.bazel b/examples/crate_universe/vendor_local_manifests/crates/rustix-0.38.37/BUILD.bazel index 5a1f2654ae..0b19b1a77b 100644 --- a/examples/crate_universe/vendor_local_manifests/crates/rustix-0.38.37/BUILD.bazel +++ b/examples/crate_universe/vendor_local_manifests/crates/rustix-0.38.37/BUILD.bazel @@ -325,6 +325,7 @@ cargo_build_script( allow_empty = True, exclude = [ "**/* *", + "**/*.rs", ".tmp_git_root/**/*", "BUILD", "BUILD.bazel", diff --git a/examples/crate_universe/vendor_local_manifests/crates/windows_aarch64_gnullvm-0.52.6/BUILD.bazel b/examples/crate_universe/vendor_local_manifests/crates/windows_aarch64_gnullvm-0.52.6/BUILD.bazel index 34af08ffdf..e68b1084b9 100644 --- a/examples/crate_universe/vendor_local_manifests/crates/windows_aarch64_gnullvm-0.52.6/BUILD.bazel +++ b/examples/crate_universe/vendor_local_manifests/crates/windows_aarch64_gnullvm-0.52.6/BUILD.bazel @@ -95,6 +95,7 @@ cargo_build_script( allow_empty = True, exclude = [ "**/* *", + "**/*.rs", ".tmp_git_root/**/*", "BUILD", "BUILD.bazel", diff --git a/examples/crate_universe/vendor_local_manifests/crates/windows_aarch64_msvc-0.52.6/BUILD.bazel b/examples/crate_universe/vendor_local_manifests/crates/windows_aarch64_msvc-0.52.6/BUILD.bazel index e944be5a21..ac258bfd0b 100644 --- a/examples/crate_universe/vendor_local_manifests/crates/windows_aarch64_msvc-0.52.6/BUILD.bazel +++ b/examples/crate_universe/vendor_local_manifests/crates/windows_aarch64_msvc-0.52.6/BUILD.bazel @@ -95,6 +95,7 @@ cargo_build_script( allow_empty = True, exclude = [ "**/* *", + "**/*.rs", ".tmp_git_root/**/*", "BUILD", "BUILD.bazel", diff --git a/examples/crate_universe/vendor_local_manifests/crates/windows_i686_gnu-0.52.6/BUILD.bazel b/examples/crate_universe/vendor_local_manifests/crates/windows_i686_gnu-0.52.6/BUILD.bazel index e63910ff82..cc0f088da0 100644 --- a/examples/crate_universe/vendor_local_manifests/crates/windows_i686_gnu-0.52.6/BUILD.bazel +++ b/examples/crate_universe/vendor_local_manifests/crates/windows_i686_gnu-0.52.6/BUILD.bazel @@ -95,6 +95,7 @@ cargo_build_script( allow_empty = True, exclude = [ "**/* *", + "**/*.rs", ".tmp_git_root/**/*", "BUILD", "BUILD.bazel", diff --git a/examples/crate_universe/vendor_local_manifests/crates/windows_i686_gnullvm-0.52.6/BUILD.bazel b/examples/crate_universe/vendor_local_manifests/crates/windows_i686_gnullvm-0.52.6/BUILD.bazel index 755196d904..5592d7a1d3 100644 --- a/examples/crate_universe/vendor_local_manifests/crates/windows_i686_gnullvm-0.52.6/BUILD.bazel +++ b/examples/crate_universe/vendor_local_manifests/crates/windows_i686_gnullvm-0.52.6/BUILD.bazel @@ -95,6 +95,7 @@ cargo_build_script( allow_empty = True, exclude = [ "**/* *", + "**/*.rs", ".tmp_git_root/**/*", "BUILD", "BUILD.bazel", diff --git a/examples/crate_universe/vendor_local_manifests/crates/windows_i686_msvc-0.52.6/BUILD.bazel b/examples/crate_universe/vendor_local_manifests/crates/windows_i686_msvc-0.52.6/BUILD.bazel index 7be06a581a..a1e10667f0 100644 --- a/examples/crate_universe/vendor_local_manifests/crates/windows_i686_msvc-0.52.6/BUILD.bazel +++ b/examples/crate_universe/vendor_local_manifests/crates/windows_i686_msvc-0.52.6/BUILD.bazel @@ -95,6 +95,7 @@ cargo_build_script( allow_empty = True, exclude = [ "**/* *", + "**/*.rs", ".tmp_git_root/**/*", "BUILD", "BUILD.bazel", diff --git a/examples/crate_universe/vendor_local_manifests/crates/windows_x86_64_gnu-0.52.6/BUILD.bazel b/examples/crate_universe/vendor_local_manifests/crates/windows_x86_64_gnu-0.52.6/BUILD.bazel index e565842a86..a33aea0a58 100644 --- a/examples/crate_universe/vendor_local_manifests/crates/windows_x86_64_gnu-0.52.6/BUILD.bazel +++ b/examples/crate_universe/vendor_local_manifests/crates/windows_x86_64_gnu-0.52.6/BUILD.bazel @@ -95,6 +95,7 @@ cargo_build_script( allow_empty = True, exclude = [ "**/* *", + "**/*.rs", ".tmp_git_root/**/*", "BUILD", "BUILD.bazel", diff --git a/examples/crate_universe/vendor_local_manifests/crates/windows_x86_64_gnullvm-0.52.6/BUILD.bazel b/examples/crate_universe/vendor_local_manifests/crates/windows_x86_64_gnullvm-0.52.6/BUILD.bazel index 5bddb1fff4..06959c0131 100644 --- a/examples/crate_universe/vendor_local_manifests/crates/windows_x86_64_gnullvm-0.52.6/BUILD.bazel +++ b/examples/crate_universe/vendor_local_manifests/crates/windows_x86_64_gnullvm-0.52.6/BUILD.bazel @@ -95,6 +95,7 @@ cargo_build_script( allow_empty = True, exclude = [ "**/* *", + "**/*.rs", ".tmp_git_root/**/*", "BUILD", "BUILD.bazel", diff --git a/examples/crate_universe/vendor_local_manifests/crates/windows_x86_64_msvc-0.52.6/BUILD.bazel b/examples/crate_universe/vendor_local_manifests/crates/windows_x86_64_msvc-0.52.6/BUILD.bazel index 11a77c5594..72b8be76cb 100644 --- a/examples/crate_universe/vendor_local_manifests/crates/windows_x86_64_msvc-0.52.6/BUILD.bazel +++ b/examples/crate_universe/vendor_local_manifests/crates/windows_x86_64_msvc-0.52.6/BUILD.bazel @@ -95,6 +95,7 @@ cargo_build_script( allow_empty = True, exclude = [ "**/* *", + "**/*.rs", ".tmp_git_root/**/*", "BUILD", "BUILD.bazel", diff --git a/examples/crate_universe/vendor_local_pkgs/crates/httparse-1.9.4/BUILD.bazel b/examples/crate_universe/vendor_local_pkgs/crates/httparse-1.9.4/BUILD.bazel index 31c16df6a4..4d6caa01f3 100644 --- a/examples/crate_universe/vendor_local_pkgs/crates/httparse-1.9.4/BUILD.bazel +++ b/examples/crate_universe/vendor_local_pkgs/crates/httparse-1.9.4/BUILD.bazel @@ -99,6 +99,7 @@ cargo_build_script( allow_empty = True, exclude = [ "**/* *", + "**/*.rs", ".tmp_git_root/**/*", "BUILD", "BUILD.bazel", diff --git a/examples/crate_universe/vendor_local_pkgs/crates/libc-0.2.158/BUILD.bazel b/examples/crate_universe/vendor_local_pkgs/crates/libc-0.2.158/BUILD.bazel index b8788f6856..fb6847ed4e 100644 --- a/examples/crate_universe/vendor_local_pkgs/crates/libc-0.2.158/BUILD.bazel +++ b/examples/crate_universe/vendor_local_pkgs/crates/libc-0.2.158/BUILD.bazel @@ -99,6 +99,7 @@ cargo_build_script( allow_empty = True, exclude = [ "**/* *", + "**/*.rs", ".tmp_git_root/**/*", "BUILD", "BUILD.bazel", diff --git a/examples/crate_universe/vendor_local_pkgs/crates/lock_api-0.4.12/BUILD.bazel b/examples/crate_universe/vendor_local_pkgs/crates/lock_api-0.4.12/BUILD.bazel index e954624bce..50330be82e 100644 --- a/examples/crate_universe/vendor_local_pkgs/crates/lock_api-0.4.12/BUILD.bazel +++ b/examples/crate_universe/vendor_local_pkgs/crates/lock_api-0.4.12/BUILD.bazel @@ -100,6 +100,7 @@ cargo_build_script( allow_empty = True, exclude = [ "**/* *", + "**/*.rs", ".tmp_git_root/**/*", "BUILD", "BUILD.bazel", diff --git a/examples/crate_universe/vendor_local_pkgs/crates/parking_lot_core-0.9.10/BUILD.bazel b/examples/crate_universe/vendor_local_pkgs/crates/parking_lot_core-0.9.10/BUILD.bazel index b6a3b461e2..cd5c087e99 100644 --- a/examples/crate_universe/vendor_local_pkgs/crates/parking_lot_core-0.9.10/BUILD.bazel +++ b/examples/crate_universe/vendor_local_pkgs/crates/parking_lot_core-0.9.10/BUILD.bazel @@ -180,6 +180,7 @@ cargo_build_script( allow_empty = True, exclude = [ "**/* *", + "**/*.rs", ".tmp_git_root/**/*", "BUILD", "BUILD.bazel", diff --git a/examples/crate_universe/vendor_local_pkgs/crates/proc-macro2-1.0.86/BUILD.bazel b/examples/crate_universe/vendor_local_pkgs/crates/proc-macro2-1.0.86/BUILD.bazel index 5cff94d3a7..9772a802d9 100644 --- a/examples/crate_universe/vendor_local_pkgs/crates/proc-macro2-1.0.86/BUILD.bazel +++ b/examples/crate_universe/vendor_local_pkgs/crates/proc-macro2-1.0.86/BUILD.bazel @@ -100,6 +100,7 @@ cargo_build_script( allow_empty = True, exclude = [ "**/* *", + "**/*.rs", ".tmp_git_root/**/*", "BUILD", "BUILD.bazel", diff --git a/examples/crate_universe/vendor_local_pkgs/crates/serde-1.0.210/BUILD.bazel b/examples/crate_universe/vendor_local_pkgs/crates/serde-1.0.210/BUILD.bazel index 879e96cf7a..9d5ae79afd 100644 --- a/examples/crate_universe/vendor_local_pkgs/crates/serde-1.0.210/BUILD.bazel +++ b/examples/crate_universe/vendor_local_pkgs/crates/serde-1.0.210/BUILD.bazel @@ -99,6 +99,7 @@ cargo_build_script( allow_empty = True, exclude = [ "**/* *", + "**/*.rs", ".tmp_git_root/**/*", "BUILD", "BUILD.bazel", diff --git a/examples/crate_universe/vendor_local_pkgs/crates/serde_json-1.0.128/BUILD.bazel b/examples/crate_universe/vendor_local_pkgs/crates/serde_json-1.0.128/BUILD.bazel index 4c47ba34b2..b0071ba6cf 100644 --- a/examples/crate_universe/vendor_local_pkgs/crates/serde_json-1.0.128/BUILD.bazel +++ b/examples/crate_universe/vendor_local_pkgs/crates/serde_json-1.0.128/BUILD.bazel @@ -104,6 +104,7 @@ cargo_build_script( allow_empty = True, exclude = [ "**/* *", + "**/*.rs", ".tmp_git_root/**/*", "BUILD", "BUILD.bazel", diff --git a/examples/crate_universe/vendor_local_pkgs/crates/slab-0.4.9/BUILD.bazel b/examples/crate_universe/vendor_local_pkgs/crates/slab-0.4.9/BUILD.bazel index e5b54fef04..f6b9945e24 100644 --- a/examples/crate_universe/vendor_local_pkgs/crates/slab-0.4.9/BUILD.bazel +++ b/examples/crate_universe/vendor_local_pkgs/crates/slab-0.4.9/BUILD.bazel @@ -99,6 +99,7 @@ cargo_build_script( allow_empty = True, exclude = [ "**/* *", + "**/*.rs", ".tmp_git_root/**/*", "BUILD", "BUILD.bazel", diff --git a/examples/crate_universe/vendor_local_pkgs/crates/valuable-0.1.0/BUILD.bazel b/examples/crate_universe/vendor_local_pkgs/crates/valuable-0.1.0/BUILD.bazel index 0ff079648e..947215c7f9 100644 --- a/examples/crate_universe/vendor_local_pkgs/crates/valuable-0.1.0/BUILD.bazel +++ b/examples/crate_universe/vendor_local_pkgs/crates/valuable-0.1.0/BUILD.bazel @@ -95,6 +95,7 @@ cargo_build_script( allow_empty = True, exclude = [ "**/* *", + "**/*.rs", ".tmp_git_root/**/*", "BUILD", "BUILD.bazel", diff --git a/examples/crate_universe/vendor_local_pkgs/crates/winapi-0.3.9/BUILD.bazel b/examples/crate_universe/vendor_local_pkgs/crates/winapi-0.3.9/BUILD.bazel index dd66c53c8d..8f50197de0 100644 --- a/examples/crate_universe/vendor_local_pkgs/crates/winapi-0.3.9/BUILD.bazel +++ b/examples/crate_universe/vendor_local_pkgs/crates/winapi-0.3.9/BUILD.bazel @@ -104,6 +104,7 @@ cargo_build_script( allow_empty = True, exclude = [ "**/* *", + "**/*.rs", ".tmp_git_root/**/*", "BUILD", "BUILD.bazel", diff --git a/examples/crate_universe/vendor_local_pkgs/crates/winapi-i686-pc-windows-gnu-0.4.0/BUILD.bazel b/examples/crate_universe/vendor_local_pkgs/crates/winapi-i686-pc-windows-gnu-0.4.0/BUILD.bazel index 98f0bb0bb0..8a3f52e6a0 100644 --- a/examples/crate_universe/vendor_local_pkgs/crates/winapi-i686-pc-windows-gnu-0.4.0/BUILD.bazel +++ b/examples/crate_universe/vendor_local_pkgs/crates/winapi-i686-pc-windows-gnu-0.4.0/BUILD.bazel @@ -95,6 +95,7 @@ cargo_build_script( allow_empty = True, exclude = [ "**/* *", + "**/*.rs", ".tmp_git_root/**/*", "BUILD", "BUILD.bazel", diff --git a/examples/crate_universe/vendor_local_pkgs/crates/winapi-x86_64-pc-windows-gnu-0.4.0/BUILD.bazel b/examples/crate_universe/vendor_local_pkgs/crates/winapi-x86_64-pc-windows-gnu-0.4.0/BUILD.bazel index c1b996dcea..f53155d8b5 100644 --- a/examples/crate_universe/vendor_local_pkgs/crates/winapi-x86_64-pc-windows-gnu-0.4.0/BUILD.bazel +++ b/examples/crate_universe/vendor_local_pkgs/crates/winapi-x86_64-pc-windows-gnu-0.4.0/BUILD.bazel @@ -95,6 +95,7 @@ cargo_build_script( allow_empty = True, exclude = [ "**/* *", + "**/*.rs", ".tmp_git_root/**/*", "BUILD", "BUILD.bazel", diff --git a/examples/crate_universe/vendor_local_pkgs/crates/windows_aarch64_gnullvm-0.52.6/BUILD.bazel b/examples/crate_universe/vendor_local_pkgs/crates/windows_aarch64_gnullvm-0.52.6/BUILD.bazel index 7f25df2bb1..a96ec20346 100644 --- a/examples/crate_universe/vendor_local_pkgs/crates/windows_aarch64_gnullvm-0.52.6/BUILD.bazel +++ b/examples/crate_universe/vendor_local_pkgs/crates/windows_aarch64_gnullvm-0.52.6/BUILD.bazel @@ -95,6 +95,7 @@ cargo_build_script( allow_empty = True, exclude = [ "**/* *", + "**/*.rs", ".tmp_git_root/**/*", "BUILD", "BUILD.bazel", diff --git a/examples/crate_universe/vendor_local_pkgs/crates/windows_aarch64_msvc-0.52.6/BUILD.bazel b/examples/crate_universe/vendor_local_pkgs/crates/windows_aarch64_msvc-0.52.6/BUILD.bazel index fd1340b594..3f7079596d 100644 --- a/examples/crate_universe/vendor_local_pkgs/crates/windows_aarch64_msvc-0.52.6/BUILD.bazel +++ b/examples/crate_universe/vendor_local_pkgs/crates/windows_aarch64_msvc-0.52.6/BUILD.bazel @@ -95,6 +95,7 @@ cargo_build_script( allow_empty = True, exclude = [ "**/* *", + "**/*.rs", ".tmp_git_root/**/*", "BUILD", "BUILD.bazel", diff --git a/examples/crate_universe/vendor_local_pkgs/crates/windows_i686_gnu-0.52.6/BUILD.bazel b/examples/crate_universe/vendor_local_pkgs/crates/windows_i686_gnu-0.52.6/BUILD.bazel index 28d25457ff..0ec344a8af 100644 --- a/examples/crate_universe/vendor_local_pkgs/crates/windows_i686_gnu-0.52.6/BUILD.bazel +++ b/examples/crate_universe/vendor_local_pkgs/crates/windows_i686_gnu-0.52.6/BUILD.bazel @@ -95,6 +95,7 @@ cargo_build_script( allow_empty = True, exclude = [ "**/* *", + "**/*.rs", ".tmp_git_root/**/*", "BUILD", "BUILD.bazel", diff --git a/examples/crate_universe/vendor_local_pkgs/crates/windows_i686_gnullvm-0.52.6/BUILD.bazel b/examples/crate_universe/vendor_local_pkgs/crates/windows_i686_gnullvm-0.52.6/BUILD.bazel index 27df0aaee0..c155ec91c6 100644 --- a/examples/crate_universe/vendor_local_pkgs/crates/windows_i686_gnullvm-0.52.6/BUILD.bazel +++ b/examples/crate_universe/vendor_local_pkgs/crates/windows_i686_gnullvm-0.52.6/BUILD.bazel @@ -95,6 +95,7 @@ cargo_build_script( allow_empty = True, exclude = [ "**/* *", + "**/*.rs", ".tmp_git_root/**/*", "BUILD", "BUILD.bazel", diff --git a/examples/crate_universe/vendor_local_pkgs/crates/windows_i686_msvc-0.52.6/BUILD.bazel b/examples/crate_universe/vendor_local_pkgs/crates/windows_i686_msvc-0.52.6/BUILD.bazel index 50b527ffaf..80fdaf85c4 100644 --- a/examples/crate_universe/vendor_local_pkgs/crates/windows_i686_msvc-0.52.6/BUILD.bazel +++ b/examples/crate_universe/vendor_local_pkgs/crates/windows_i686_msvc-0.52.6/BUILD.bazel @@ -95,6 +95,7 @@ cargo_build_script( allow_empty = True, exclude = [ "**/* *", + "**/*.rs", ".tmp_git_root/**/*", "BUILD", "BUILD.bazel", diff --git a/examples/crate_universe/vendor_local_pkgs/crates/windows_x86_64_gnu-0.52.6/BUILD.bazel b/examples/crate_universe/vendor_local_pkgs/crates/windows_x86_64_gnu-0.52.6/BUILD.bazel index c4eb809ea9..9a2b52342a 100644 --- a/examples/crate_universe/vendor_local_pkgs/crates/windows_x86_64_gnu-0.52.6/BUILD.bazel +++ b/examples/crate_universe/vendor_local_pkgs/crates/windows_x86_64_gnu-0.52.6/BUILD.bazel @@ -95,6 +95,7 @@ cargo_build_script( allow_empty = True, exclude = [ "**/* *", + "**/*.rs", ".tmp_git_root/**/*", "BUILD", "BUILD.bazel", diff --git a/examples/crate_universe/vendor_local_pkgs/crates/windows_x86_64_gnullvm-0.52.6/BUILD.bazel b/examples/crate_universe/vendor_local_pkgs/crates/windows_x86_64_gnullvm-0.52.6/BUILD.bazel index 689dc22ca9..c0739caeb8 100644 --- a/examples/crate_universe/vendor_local_pkgs/crates/windows_x86_64_gnullvm-0.52.6/BUILD.bazel +++ b/examples/crate_universe/vendor_local_pkgs/crates/windows_x86_64_gnullvm-0.52.6/BUILD.bazel @@ -95,6 +95,7 @@ cargo_build_script( allow_empty = True, exclude = [ "**/* *", + "**/*.rs", ".tmp_git_root/**/*", "BUILD", "BUILD.bazel", diff --git a/examples/crate_universe/vendor_local_pkgs/crates/windows_x86_64_msvc-0.52.6/BUILD.bazel b/examples/crate_universe/vendor_local_pkgs/crates/windows_x86_64_msvc-0.52.6/BUILD.bazel index b5980e7920..63ed6f6c53 100644 --- a/examples/crate_universe/vendor_local_pkgs/crates/windows_x86_64_msvc-0.52.6/BUILD.bazel +++ b/examples/crate_universe/vendor_local_pkgs/crates/windows_x86_64_msvc-0.52.6/BUILD.bazel @@ -95,6 +95,7 @@ cargo_build_script( allow_empty = True, exclude = [ "**/* *", + "**/*.rs", ".tmp_git_root/**/*", "BUILD", "BUILD.bazel", diff --git a/examples/crate_universe/vendor_remote_manifests/crates/BUILD.libc-0.2.158.bazel b/examples/crate_universe/vendor_remote_manifests/crates/BUILD.libc-0.2.158.bazel index eafa45e052..cb1c85573d 100644 --- a/examples/crate_universe/vendor_remote_manifests/crates/BUILD.libc-0.2.158.bazel +++ b/examples/crate_universe/vendor_remote_manifests/crates/BUILD.libc-0.2.158.bazel @@ -155,6 +155,7 @@ cargo_build_script( allow_empty = True, exclude = [ "**/* *", + "**/*.rs", ".tmp_git_root/**/*", "BUILD", "BUILD.bazel", diff --git a/examples/crate_universe/vendor_remote_manifests/crates/BUILD.lock_api-0.4.12.bazel b/examples/crate_universe/vendor_remote_manifests/crates/BUILD.lock_api-0.4.12.bazel index 6dd647bdb0..0f0ed06b2b 100644 --- a/examples/crate_universe/vendor_remote_manifests/crates/BUILD.lock_api-0.4.12.bazel +++ b/examples/crate_universe/vendor_remote_manifests/crates/BUILD.lock_api-0.4.12.bazel @@ -100,6 +100,7 @@ cargo_build_script( allow_empty = True, exclude = [ "**/* *", + "**/*.rs", ".tmp_git_root/**/*", "BUILD", "BUILD.bazel", diff --git a/examples/crate_universe/vendor_remote_manifests/crates/BUILD.parking_lot_core-0.9.10.bazel b/examples/crate_universe/vendor_remote_manifests/crates/BUILD.parking_lot_core-0.9.10.bazel index eedfcbcb39..9bc4e17793 100644 --- a/examples/crate_universe/vendor_remote_manifests/crates/BUILD.parking_lot_core-0.9.10.bazel +++ b/examples/crate_universe/vendor_remote_manifests/crates/BUILD.parking_lot_core-0.9.10.bazel @@ -180,6 +180,7 @@ cargo_build_script( allow_empty = True, exclude = [ "**/* *", + "**/*.rs", ".tmp_git_root/**/*", "BUILD", "BUILD.bazel", diff --git a/examples/crate_universe/vendor_remote_manifests/crates/BUILD.proc-macro2-1.0.86.bazel b/examples/crate_universe/vendor_remote_manifests/crates/BUILD.proc-macro2-1.0.86.bazel index ee9a26b5c3..a3bc0f98be 100644 --- a/examples/crate_universe/vendor_remote_manifests/crates/BUILD.proc-macro2-1.0.86.bazel +++ b/examples/crate_universe/vendor_remote_manifests/crates/BUILD.proc-macro2-1.0.86.bazel @@ -100,6 +100,7 @@ cargo_build_script( allow_empty = True, exclude = [ "**/* *", + "**/*.rs", ".tmp_git_root/**/*", "BUILD", "BUILD.bazel", diff --git a/examples/crate_universe/vendor_remote_manifests/crates/BUILD.rustix-0.38.37.bazel b/examples/crate_universe/vendor_remote_manifests/crates/BUILD.rustix-0.38.37.bazel index 399c6a5d6e..d468db91a3 100644 --- a/examples/crate_universe/vendor_remote_manifests/crates/BUILD.rustix-0.38.37.bazel +++ b/examples/crate_universe/vendor_remote_manifests/crates/BUILD.rustix-0.38.37.bazel @@ -325,6 +325,7 @@ cargo_build_script( allow_empty = True, exclude = [ "**/* *", + "**/*.rs", ".tmp_git_root/**/*", "BUILD", "BUILD.bazel", diff --git a/examples/crate_universe/vendor_remote_manifests/crates/BUILD.windows_aarch64_gnullvm-0.52.6.bazel b/examples/crate_universe/vendor_remote_manifests/crates/BUILD.windows_aarch64_gnullvm-0.52.6.bazel index caa63245a3..d94954b4c9 100644 --- a/examples/crate_universe/vendor_remote_manifests/crates/BUILD.windows_aarch64_gnullvm-0.52.6.bazel +++ b/examples/crate_universe/vendor_remote_manifests/crates/BUILD.windows_aarch64_gnullvm-0.52.6.bazel @@ -95,6 +95,7 @@ cargo_build_script( allow_empty = True, exclude = [ "**/* *", + "**/*.rs", ".tmp_git_root/**/*", "BUILD", "BUILD.bazel", diff --git a/examples/crate_universe/vendor_remote_manifests/crates/BUILD.windows_aarch64_msvc-0.52.6.bazel b/examples/crate_universe/vendor_remote_manifests/crates/BUILD.windows_aarch64_msvc-0.52.6.bazel index 46f9b1ae0c..050b25a316 100644 --- a/examples/crate_universe/vendor_remote_manifests/crates/BUILD.windows_aarch64_msvc-0.52.6.bazel +++ b/examples/crate_universe/vendor_remote_manifests/crates/BUILD.windows_aarch64_msvc-0.52.6.bazel @@ -95,6 +95,7 @@ cargo_build_script( allow_empty = True, exclude = [ "**/* *", + "**/*.rs", ".tmp_git_root/**/*", "BUILD", "BUILD.bazel", diff --git a/examples/crate_universe/vendor_remote_manifests/crates/BUILD.windows_i686_gnu-0.52.6.bazel b/examples/crate_universe/vendor_remote_manifests/crates/BUILD.windows_i686_gnu-0.52.6.bazel index ad3715e7da..e10559ba79 100644 --- a/examples/crate_universe/vendor_remote_manifests/crates/BUILD.windows_i686_gnu-0.52.6.bazel +++ b/examples/crate_universe/vendor_remote_manifests/crates/BUILD.windows_i686_gnu-0.52.6.bazel @@ -95,6 +95,7 @@ cargo_build_script( allow_empty = True, exclude = [ "**/* *", + "**/*.rs", ".tmp_git_root/**/*", "BUILD", "BUILD.bazel", diff --git a/examples/crate_universe/vendor_remote_manifests/crates/BUILD.windows_i686_gnullvm-0.52.6.bazel b/examples/crate_universe/vendor_remote_manifests/crates/BUILD.windows_i686_gnullvm-0.52.6.bazel index 258407dc6a..01fbfeb697 100644 --- a/examples/crate_universe/vendor_remote_manifests/crates/BUILD.windows_i686_gnullvm-0.52.6.bazel +++ b/examples/crate_universe/vendor_remote_manifests/crates/BUILD.windows_i686_gnullvm-0.52.6.bazel @@ -95,6 +95,7 @@ cargo_build_script( allow_empty = True, exclude = [ "**/* *", + "**/*.rs", ".tmp_git_root/**/*", "BUILD", "BUILD.bazel", diff --git a/examples/crate_universe/vendor_remote_manifests/crates/BUILD.windows_i686_msvc-0.52.6.bazel b/examples/crate_universe/vendor_remote_manifests/crates/BUILD.windows_i686_msvc-0.52.6.bazel index e323552b50..485350b9c8 100644 --- a/examples/crate_universe/vendor_remote_manifests/crates/BUILD.windows_i686_msvc-0.52.6.bazel +++ b/examples/crate_universe/vendor_remote_manifests/crates/BUILD.windows_i686_msvc-0.52.6.bazel @@ -95,6 +95,7 @@ cargo_build_script( allow_empty = True, exclude = [ "**/* *", + "**/*.rs", ".tmp_git_root/**/*", "BUILD", "BUILD.bazel", diff --git a/examples/crate_universe/vendor_remote_manifests/crates/BUILD.windows_x86_64_gnu-0.52.6.bazel b/examples/crate_universe/vendor_remote_manifests/crates/BUILD.windows_x86_64_gnu-0.52.6.bazel index b560bac549..7bdb2e39e9 100644 --- a/examples/crate_universe/vendor_remote_manifests/crates/BUILD.windows_x86_64_gnu-0.52.6.bazel +++ b/examples/crate_universe/vendor_remote_manifests/crates/BUILD.windows_x86_64_gnu-0.52.6.bazel @@ -95,6 +95,7 @@ cargo_build_script( allow_empty = True, exclude = [ "**/* *", + "**/*.rs", ".tmp_git_root/**/*", "BUILD", "BUILD.bazel", diff --git a/examples/crate_universe/vendor_remote_manifests/crates/BUILD.windows_x86_64_gnullvm-0.52.6.bazel b/examples/crate_universe/vendor_remote_manifests/crates/BUILD.windows_x86_64_gnullvm-0.52.6.bazel index e5c375c67a..2f0e4b0f73 100644 --- a/examples/crate_universe/vendor_remote_manifests/crates/BUILD.windows_x86_64_gnullvm-0.52.6.bazel +++ b/examples/crate_universe/vendor_remote_manifests/crates/BUILD.windows_x86_64_gnullvm-0.52.6.bazel @@ -95,6 +95,7 @@ cargo_build_script( allow_empty = True, exclude = [ "**/* *", + "**/*.rs", ".tmp_git_root/**/*", "BUILD", "BUILD.bazel", diff --git a/examples/crate_universe/vendor_remote_manifests/crates/BUILD.windows_x86_64_msvc-0.52.6.bazel b/examples/crate_universe/vendor_remote_manifests/crates/BUILD.windows_x86_64_msvc-0.52.6.bazel index d6a08b0470..5ce88a1be7 100644 --- a/examples/crate_universe/vendor_remote_manifests/crates/BUILD.windows_x86_64_msvc-0.52.6.bazel +++ b/examples/crate_universe/vendor_remote_manifests/crates/BUILD.windows_x86_64_msvc-0.52.6.bazel @@ -95,6 +95,7 @@ cargo_build_script( allow_empty = True, exclude = [ "**/* *", + "**/*.rs", ".tmp_git_root/**/*", "BUILD", "BUILD.bazel", diff --git a/examples/crate_universe/vendor_remote_pkgs/crates/BUILD.httparse-1.9.4.bazel b/examples/crate_universe/vendor_remote_pkgs/crates/BUILD.httparse-1.9.4.bazel index 336ec37a1a..a2b9f17105 100644 --- a/examples/crate_universe/vendor_remote_pkgs/crates/BUILD.httparse-1.9.4.bazel +++ b/examples/crate_universe/vendor_remote_pkgs/crates/BUILD.httparse-1.9.4.bazel @@ -99,6 +99,7 @@ cargo_build_script( allow_empty = True, exclude = [ "**/* *", + "**/*.rs", ".tmp_git_root/**/*", "BUILD", "BUILD.bazel", diff --git a/examples/crate_universe/vendor_remote_pkgs/crates/BUILD.libc-0.2.158.bazel b/examples/crate_universe/vendor_remote_pkgs/crates/BUILD.libc-0.2.158.bazel index 8c516b4031..dd791cad0e 100644 --- a/examples/crate_universe/vendor_remote_pkgs/crates/BUILD.libc-0.2.158.bazel +++ b/examples/crate_universe/vendor_remote_pkgs/crates/BUILD.libc-0.2.158.bazel @@ -99,6 +99,7 @@ cargo_build_script( allow_empty = True, exclude = [ "**/* *", + "**/*.rs", ".tmp_git_root/**/*", "BUILD", "BUILD.bazel", diff --git a/examples/crate_universe/vendor_remote_pkgs/crates/BUILD.lock_api-0.4.12.bazel b/examples/crate_universe/vendor_remote_pkgs/crates/BUILD.lock_api-0.4.12.bazel index 1bbe2482c3..c7e7182b3b 100644 --- a/examples/crate_universe/vendor_remote_pkgs/crates/BUILD.lock_api-0.4.12.bazel +++ b/examples/crate_universe/vendor_remote_pkgs/crates/BUILD.lock_api-0.4.12.bazel @@ -100,6 +100,7 @@ cargo_build_script( allow_empty = True, exclude = [ "**/* *", + "**/*.rs", ".tmp_git_root/**/*", "BUILD", "BUILD.bazel", diff --git a/examples/crate_universe/vendor_remote_pkgs/crates/BUILD.parking_lot_core-0.9.10.bazel b/examples/crate_universe/vendor_remote_pkgs/crates/BUILD.parking_lot_core-0.9.10.bazel index 639eda6773..8d45a829fe 100644 --- a/examples/crate_universe/vendor_remote_pkgs/crates/BUILD.parking_lot_core-0.9.10.bazel +++ b/examples/crate_universe/vendor_remote_pkgs/crates/BUILD.parking_lot_core-0.9.10.bazel @@ -180,6 +180,7 @@ cargo_build_script( allow_empty = True, exclude = [ "**/* *", + "**/*.rs", ".tmp_git_root/**/*", "BUILD", "BUILD.bazel", diff --git a/examples/crate_universe/vendor_remote_pkgs/crates/BUILD.proc-macro2-1.0.86.bazel b/examples/crate_universe/vendor_remote_pkgs/crates/BUILD.proc-macro2-1.0.86.bazel index 1650f89a35..c405f8dd09 100644 --- a/examples/crate_universe/vendor_remote_pkgs/crates/BUILD.proc-macro2-1.0.86.bazel +++ b/examples/crate_universe/vendor_remote_pkgs/crates/BUILD.proc-macro2-1.0.86.bazel @@ -100,6 +100,7 @@ cargo_build_script( allow_empty = True, exclude = [ "**/* *", + "**/*.rs", ".tmp_git_root/**/*", "BUILD", "BUILD.bazel", diff --git a/examples/crate_universe/vendor_remote_pkgs/crates/BUILD.serde-1.0.210.bazel b/examples/crate_universe/vendor_remote_pkgs/crates/BUILD.serde-1.0.210.bazel index f2a0dc2144..e72fdde45b 100644 --- a/examples/crate_universe/vendor_remote_pkgs/crates/BUILD.serde-1.0.210.bazel +++ b/examples/crate_universe/vendor_remote_pkgs/crates/BUILD.serde-1.0.210.bazel @@ -99,6 +99,7 @@ cargo_build_script( allow_empty = True, exclude = [ "**/* *", + "**/*.rs", ".tmp_git_root/**/*", "BUILD", "BUILD.bazel", diff --git a/examples/crate_universe/vendor_remote_pkgs/crates/BUILD.serde_json-1.0.128.bazel b/examples/crate_universe/vendor_remote_pkgs/crates/BUILD.serde_json-1.0.128.bazel index 2d8b711133..b8dd8dc657 100644 --- a/examples/crate_universe/vendor_remote_pkgs/crates/BUILD.serde_json-1.0.128.bazel +++ b/examples/crate_universe/vendor_remote_pkgs/crates/BUILD.serde_json-1.0.128.bazel @@ -104,6 +104,7 @@ cargo_build_script( allow_empty = True, exclude = [ "**/* *", + "**/*.rs", ".tmp_git_root/**/*", "BUILD", "BUILD.bazel", diff --git a/examples/crate_universe/vendor_remote_pkgs/crates/BUILD.slab-0.4.9.bazel b/examples/crate_universe/vendor_remote_pkgs/crates/BUILD.slab-0.4.9.bazel index 78628d1e0c..e31cf8158d 100644 --- a/examples/crate_universe/vendor_remote_pkgs/crates/BUILD.slab-0.4.9.bazel +++ b/examples/crate_universe/vendor_remote_pkgs/crates/BUILD.slab-0.4.9.bazel @@ -99,6 +99,7 @@ cargo_build_script( allow_empty = True, exclude = [ "**/* *", + "**/*.rs", ".tmp_git_root/**/*", "BUILD", "BUILD.bazel", diff --git a/examples/crate_universe/vendor_remote_pkgs/crates/BUILD.valuable-0.1.0.bazel b/examples/crate_universe/vendor_remote_pkgs/crates/BUILD.valuable-0.1.0.bazel index 32943da895..49f4c4c182 100644 --- a/examples/crate_universe/vendor_remote_pkgs/crates/BUILD.valuable-0.1.0.bazel +++ b/examples/crate_universe/vendor_remote_pkgs/crates/BUILD.valuable-0.1.0.bazel @@ -95,6 +95,7 @@ cargo_build_script( allow_empty = True, exclude = [ "**/* *", + "**/*.rs", ".tmp_git_root/**/*", "BUILD", "BUILD.bazel", diff --git a/examples/crate_universe/vendor_remote_pkgs/crates/BUILD.winapi-0.3.9.bazel b/examples/crate_universe/vendor_remote_pkgs/crates/BUILD.winapi-0.3.9.bazel index 7d1fd3991e..491450db13 100644 --- a/examples/crate_universe/vendor_remote_pkgs/crates/BUILD.winapi-0.3.9.bazel +++ b/examples/crate_universe/vendor_remote_pkgs/crates/BUILD.winapi-0.3.9.bazel @@ -104,6 +104,7 @@ cargo_build_script( allow_empty = True, exclude = [ "**/* *", + "**/*.rs", ".tmp_git_root/**/*", "BUILD", "BUILD.bazel", diff --git a/examples/crate_universe/vendor_remote_pkgs/crates/BUILD.winapi-i686-pc-windows-gnu-0.4.0.bazel b/examples/crate_universe/vendor_remote_pkgs/crates/BUILD.winapi-i686-pc-windows-gnu-0.4.0.bazel index f56384fa8e..bfd2707c92 100644 --- a/examples/crate_universe/vendor_remote_pkgs/crates/BUILD.winapi-i686-pc-windows-gnu-0.4.0.bazel +++ b/examples/crate_universe/vendor_remote_pkgs/crates/BUILD.winapi-i686-pc-windows-gnu-0.4.0.bazel @@ -95,6 +95,7 @@ cargo_build_script( allow_empty = True, exclude = [ "**/* *", + "**/*.rs", ".tmp_git_root/**/*", "BUILD", "BUILD.bazel", diff --git a/examples/crate_universe/vendor_remote_pkgs/crates/BUILD.winapi-x86_64-pc-windows-gnu-0.4.0.bazel b/examples/crate_universe/vendor_remote_pkgs/crates/BUILD.winapi-x86_64-pc-windows-gnu-0.4.0.bazel index df88fea1fc..fe6236e3ba 100644 --- a/examples/crate_universe/vendor_remote_pkgs/crates/BUILD.winapi-x86_64-pc-windows-gnu-0.4.0.bazel +++ b/examples/crate_universe/vendor_remote_pkgs/crates/BUILD.winapi-x86_64-pc-windows-gnu-0.4.0.bazel @@ -95,6 +95,7 @@ cargo_build_script( allow_empty = True, exclude = [ "**/* *", + "**/*.rs", ".tmp_git_root/**/*", "BUILD", "BUILD.bazel", diff --git a/examples/crate_universe/vendor_remote_pkgs/crates/BUILD.windows_aarch64_gnullvm-0.52.6.bazel b/examples/crate_universe/vendor_remote_pkgs/crates/BUILD.windows_aarch64_gnullvm-0.52.6.bazel index ae3251db12..d2aa040523 100644 --- a/examples/crate_universe/vendor_remote_pkgs/crates/BUILD.windows_aarch64_gnullvm-0.52.6.bazel +++ b/examples/crate_universe/vendor_remote_pkgs/crates/BUILD.windows_aarch64_gnullvm-0.52.6.bazel @@ -95,6 +95,7 @@ cargo_build_script( allow_empty = True, exclude = [ "**/* *", + "**/*.rs", ".tmp_git_root/**/*", "BUILD", "BUILD.bazel", diff --git a/examples/crate_universe/vendor_remote_pkgs/crates/BUILD.windows_aarch64_msvc-0.52.6.bazel b/examples/crate_universe/vendor_remote_pkgs/crates/BUILD.windows_aarch64_msvc-0.52.6.bazel index c1d8d5a39b..4a1fece633 100644 --- a/examples/crate_universe/vendor_remote_pkgs/crates/BUILD.windows_aarch64_msvc-0.52.6.bazel +++ b/examples/crate_universe/vendor_remote_pkgs/crates/BUILD.windows_aarch64_msvc-0.52.6.bazel @@ -95,6 +95,7 @@ cargo_build_script( allow_empty = True, exclude = [ "**/* *", + "**/*.rs", ".tmp_git_root/**/*", "BUILD", "BUILD.bazel", diff --git a/examples/crate_universe/vendor_remote_pkgs/crates/BUILD.windows_i686_gnu-0.52.6.bazel b/examples/crate_universe/vendor_remote_pkgs/crates/BUILD.windows_i686_gnu-0.52.6.bazel index b743b2c5fd..9a6dbd4e22 100644 --- a/examples/crate_universe/vendor_remote_pkgs/crates/BUILD.windows_i686_gnu-0.52.6.bazel +++ b/examples/crate_universe/vendor_remote_pkgs/crates/BUILD.windows_i686_gnu-0.52.6.bazel @@ -95,6 +95,7 @@ cargo_build_script( allow_empty = True, exclude = [ "**/* *", + "**/*.rs", ".tmp_git_root/**/*", "BUILD", "BUILD.bazel", diff --git a/examples/crate_universe/vendor_remote_pkgs/crates/BUILD.windows_i686_gnullvm-0.52.6.bazel b/examples/crate_universe/vendor_remote_pkgs/crates/BUILD.windows_i686_gnullvm-0.52.6.bazel index 026621e54f..df2f32a5d7 100644 --- a/examples/crate_universe/vendor_remote_pkgs/crates/BUILD.windows_i686_gnullvm-0.52.6.bazel +++ b/examples/crate_universe/vendor_remote_pkgs/crates/BUILD.windows_i686_gnullvm-0.52.6.bazel @@ -95,6 +95,7 @@ cargo_build_script( allow_empty = True, exclude = [ "**/* *", + "**/*.rs", ".tmp_git_root/**/*", "BUILD", "BUILD.bazel", diff --git a/examples/crate_universe/vendor_remote_pkgs/crates/BUILD.windows_i686_msvc-0.52.6.bazel b/examples/crate_universe/vendor_remote_pkgs/crates/BUILD.windows_i686_msvc-0.52.6.bazel index 2685bdcfc6..19c12c0a57 100644 --- a/examples/crate_universe/vendor_remote_pkgs/crates/BUILD.windows_i686_msvc-0.52.6.bazel +++ b/examples/crate_universe/vendor_remote_pkgs/crates/BUILD.windows_i686_msvc-0.52.6.bazel @@ -95,6 +95,7 @@ cargo_build_script( allow_empty = True, exclude = [ "**/* *", + "**/*.rs", ".tmp_git_root/**/*", "BUILD", "BUILD.bazel", diff --git a/examples/crate_universe/vendor_remote_pkgs/crates/BUILD.windows_x86_64_gnu-0.52.6.bazel b/examples/crate_universe/vendor_remote_pkgs/crates/BUILD.windows_x86_64_gnu-0.52.6.bazel index 496337fb3f..7aecc0ef72 100644 --- a/examples/crate_universe/vendor_remote_pkgs/crates/BUILD.windows_x86_64_gnu-0.52.6.bazel +++ b/examples/crate_universe/vendor_remote_pkgs/crates/BUILD.windows_x86_64_gnu-0.52.6.bazel @@ -95,6 +95,7 @@ cargo_build_script( allow_empty = True, exclude = [ "**/* *", + "**/*.rs", ".tmp_git_root/**/*", "BUILD", "BUILD.bazel", diff --git a/examples/crate_universe/vendor_remote_pkgs/crates/BUILD.windows_x86_64_gnullvm-0.52.6.bazel b/examples/crate_universe/vendor_remote_pkgs/crates/BUILD.windows_x86_64_gnullvm-0.52.6.bazel index 5bc6383a40..311527e812 100644 --- a/examples/crate_universe/vendor_remote_pkgs/crates/BUILD.windows_x86_64_gnullvm-0.52.6.bazel +++ b/examples/crate_universe/vendor_remote_pkgs/crates/BUILD.windows_x86_64_gnullvm-0.52.6.bazel @@ -95,6 +95,7 @@ cargo_build_script( allow_empty = True, exclude = [ "**/* *", + "**/*.rs", ".tmp_git_root/**/*", "BUILD", "BUILD.bazel", diff --git a/examples/crate_universe/vendor_remote_pkgs/crates/BUILD.windows_x86_64_msvc-0.52.6.bazel b/examples/crate_universe/vendor_remote_pkgs/crates/BUILD.windows_x86_64_msvc-0.52.6.bazel index 265cd4f826..552b07807c 100644 --- a/examples/crate_universe/vendor_remote_pkgs/crates/BUILD.windows_x86_64_msvc-0.52.6.bazel +++ b/examples/crate_universe/vendor_remote_pkgs/crates/BUILD.windows_x86_64_msvc-0.52.6.bazel @@ -95,6 +95,7 @@ cargo_build_script( allow_empty = True, exclude = [ "**/* *", + "**/*.rs", ".tmp_git_root/**/*", "BUILD", "BUILD.bazel", diff --git a/proto/prost/private/3rdparty/crates/BUILD.anyhow-1.0.86.bazel b/proto/prost/private/3rdparty/crates/BUILD.anyhow-1.0.86.bazel index 8d1596619a..a6d4b34c7a 100644 --- a/proto/prost/private/3rdparty/crates/BUILD.anyhow-1.0.86.bazel +++ b/proto/prost/private/3rdparty/crates/BUILD.anyhow-1.0.86.bazel @@ -99,6 +99,7 @@ cargo_build_script( allow_empty = True, exclude = [ "**/* *", + "**/*.rs", ".tmp_git_root/**/*", "BUILD", "BUILD.bazel", diff --git a/proto/prost/private/3rdparty/crates/BUILD.axum-0.7.5.bazel b/proto/prost/private/3rdparty/crates/BUILD.axum-0.7.5.bazel index 33f6383a98..ace8231d3e 100644 --- a/proto/prost/private/3rdparty/crates/BUILD.axum-0.7.5.bazel +++ b/proto/prost/private/3rdparty/crates/BUILD.axum-0.7.5.bazel @@ -115,6 +115,7 @@ cargo_build_script( allow_empty = True, exclude = [ "**/* *", + "**/*.rs", ".tmp_git_root/**/*", "BUILD", "BUILD.bazel", diff --git a/proto/prost/private/3rdparty/crates/BUILD.axum-core-0.4.3.bazel b/proto/prost/private/3rdparty/crates/BUILD.axum-core-0.4.3.bazel index 3ff171082f..c5f2395c34 100644 --- a/proto/prost/private/3rdparty/crates/BUILD.axum-core-0.4.3.bazel +++ b/proto/prost/private/3rdparty/crates/BUILD.axum-core-0.4.3.bazel @@ -108,6 +108,7 @@ cargo_build_script( allow_empty = True, exclude = [ "**/* *", + "**/*.rs", ".tmp_git_root/**/*", "BUILD", "BUILD.bazel", diff --git a/proto/prost/private/3rdparty/crates/BUILD.backtrace-0.3.73.bazel b/proto/prost/private/3rdparty/crates/BUILD.backtrace-0.3.73.bazel index 74474768ee..6034351c54 100644 --- a/proto/prost/private/3rdparty/crates/BUILD.backtrace-0.3.73.bazel +++ b/proto/prost/private/3rdparty/crates/BUILD.backtrace-0.3.73.bazel @@ -285,6 +285,7 @@ cargo_build_script( allow_empty = True, exclude = [ "**/* *", + "**/*.rs", ".tmp_git_root/**/*", "BUILD", "BUILD.bazel", diff --git a/proto/prost/private/3rdparty/crates/BUILD.httparse-1.9.4.bazel b/proto/prost/private/3rdparty/crates/BUILD.httparse-1.9.4.bazel index 7b438b19a5..36f7fe442a 100644 --- a/proto/prost/private/3rdparty/crates/BUILD.httparse-1.9.4.bazel +++ b/proto/prost/private/3rdparty/crates/BUILD.httparse-1.9.4.bazel @@ -99,6 +99,7 @@ cargo_build_script( allow_empty = True, exclude = [ "**/* *", + "**/*.rs", ".tmp_git_root/**/*", "BUILD", "BUILD.bazel", diff --git a/proto/prost/private/3rdparty/crates/BUILD.indexmap-1.9.3.bazel b/proto/prost/private/3rdparty/crates/BUILD.indexmap-1.9.3.bazel index 5d937a86ce..6b0b23c6c9 100644 --- a/proto/prost/private/3rdparty/crates/BUILD.indexmap-1.9.3.bazel +++ b/proto/prost/private/3rdparty/crates/BUILD.indexmap-1.9.3.bazel @@ -96,6 +96,7 @@ cargo_build_script( allow_empty = True, exclude = [ "**/* *", + "**/*.rs", ".tmp_git_root/**/*", "BUILD", "BUILD.bazel", diff --git a/proto/prost/private/3rdparty/crates/BUILD.libc-0.2.158.bazel b/proto/prost/private/3rdparty/crates/BUILD.libc-0.2.158.bazel index aee566b807..a298f7a469 100644 --- a/proto/prost/private/3rdparty/crates/BUILD.libc-0.2.158.bazel +++ b/proto/prost/private/3rdparty/crates/BUILD.libc-0.2.158.bazel @@ -155,6 +155,7 @@ cargo_build_script( allow_empty = True, exclude = [ "**/* *", + "**/*.rs", ".tmp_git_root/**/*", "BUILD", "BUILD.bazel", diff --git a/proto/prost/private/3rdparty/crates/BUILD.lock_api-0.4.12.bazel b/proto/prost/private/3rdparty/crates/BUILD.lock_api-0.4.12.bazel index 493aac850c..805ffb6411 100644 --- a/proto/prost/private/3rdparty/crates/BUILD.lock_api-0.4.12.bazel +++ b/proto/prost/private/3rdparty/crates/BUILD.lock_api-0.4.12.bazel @@ -100,6 +100,7 @@ cargo_build_script( allow_empty = True, exclude = [ "**/* *", + "**/*.rs", ".tmp_git_root/**/*", "BUILD", "BUILD.bazel", diff --git a/proto/prost/private/3rdparty/crates/BUILD.parking_lot_core-0.9.10.bazel b/proto/prost/private/3rdparty/crates/BUILD.parking_lot_core-0.9.10.bazel index 082388e96d..99f1d692ca 100644 --- a/proto/prost/private/3rdparty/crates/BUILD.parking_lot_core-0.9.10.bazel +++ b/proto/prost/private/3rdparty/crates/BUILD.parking_lot_core-0.9.10.bazel @@ -180,6 +180,7 @@ cargo_build_script( allow_empty = True, exclude = [ "**/* *", + "**/*.rs", ".tmp_git_root/**/*", "BUILD", "BUILD.bazel", diff --git a/proto/prost/private/3rdparty/crates/BUILD.prettyplease-0.2.22.bazel b/proto/prost/private/3rdparty/crates/BUILD.prettyplease-0.2.22.bazel index 6cdfb56e54..762f756cea 100644 --- a/proto/prost/private/3rdparty/crates/BUILD.prettyplease-0.2.22.bazel +++ b/proto/prost/private/3rdparty/crates/BUILD.prettyplease-0.2.22.bazel @@ -97,6 +97,7 @@ cargo_build_script( allow_empty = True, exclude = [ "**/* *", + "**/*.rs", ".tmp_git_root/**/*", "BUILD", "BUILD.bazel", diff --git a/proto/prost/private/3rdparty/crates/BUILD.proc-macro2-1.0.86.bazel b/proto/prost/private/3rdparty/crates/BUILD.proc-macro2-1.0.86.bazel index e7762cad43..131a405186 100644 --- a/proto/prost/private/3rdparty/crates/BUILD.proc-macro2-1.0.86.bazel +++ b/proto/prost/private/3rdparty/crates/BUILD.proc-macro2-1.0.86.bazel @@ -100,6 +100,7 @@ cargo_build_script( allow_empty = True, exclude = [ "**/* *", + "**/*.rs", ".tmp_git_root/**/*", "BUILD", "BUILD.bazel", diff --git a/proto/prost/private/3rdparty/crates/BUILD.rustix-0.38.34.bazel b/proto/prost/private/3rdparty/crates/BUILD.rustix-0.38.34.bazel index 4b3c01eb8e..c040ff2637 100644 --- a/proto/prost/private/3rdparty/crates/BUILD.rustix-0.38.34.bazel +++ b/proto/prost/private/3rdparty/crates/BUILD.rustix-0.38.34.bazel @@ -325,6 +325,7 @@ cargo_build_script( allow_empty = True, exclude = [ "**/* *", + "**/*.rs", ".tmp_git_root/**/*", "BUILD", "BUILD.bazel", diff --git a/proto/prost/private/3rdparty/crates/BUILD.rustversion-1.0.17.bazel b/proto/prost/private/3rdparty/crates/BUILD.rustversion-1.0.17.bazel index 552e73217e..03837b31b6 100644 --- a/proto/prost/private/3rdparty/crates/BUILD.rustversion-1.0.17.bazel +++ b/proto/prost/private/3rdparty/crates/BUILD.rustversion-1.0.17.bazel @@ -95,6 +95,7 @@ cargo_build_script( allow_empty = True, exclude = [ "**/* *", + "**/*.rs", ".tmp_git_root/**/*", "BUILD", "BUILD.bazel", diff --git a/proto/prost/private/3rdparty/crates/BUILD.serde-1.0.209.bazel b/proto/prost/private/3rdparty/crates/BUILD.serde-1.0.209.bazel index a076e562f1..c9dc1d2a21 100644 --- a/proto/prost/private/3rdparty/crates/BUILD.serde-1.0.209.bazel +++ b/proto/prost/private/3rdparty/crates/BUILD.serde-1.0.209.bazel @@ -99,6 +99,7 @@ cargo_build_script( allow_empty = True, exclude = [ "**/* *", + "**/*.rs", ".tmp_git_root/**/*", "BUILD", "BUILD.bazel", diff --git a/proto/prost/private/3rdparty/crates/BUILD.slab-0.4.9.bazel b/proto/prost/private/3rdparty/crates/BUILD.slab-0.4.9.bazel index 4eac843b6d..a38f4a52b4 100644 --- a/proto/prost/private/3rdparty/crates/BUILD.slab-0.4.9.bazel +++ b/proto/prost/private/3rdparty/crates/BUILD.slab-0.4.9.bazel @@ -99,6 +99,7 @@ cargo_build_script( allow_empty = True, exclude = [ "**/* *", + "**/*.rs", ".tmp_git_root/**/*", "BUILD", "BUILD.bazel", diff --git a/proto/prost/private/3rdparty/crates/BUILD.windows_aarch64_gnullvm-0.52.6.bazel b/proto/prost/private/3rdparty/crates/BUILD.windows_aarch64_gnullvm-0.52.6.bazel index ee1fcc38fb..3a80a8cdb4 100644 --- a/proto/prost/private/3rdparty/crates/BUILD.windows_aarch64_gnullvm-0.52.6.bazel +++ b/proto/prost/private/3rdparty/crates/BUILD.windows_aarch64_gnullvm-0.52.6.bazel @@ -95,6 +95,7 @@ cargo_build_script( allow_empty = True, exclude = [ "**/* *", + "**/*.rs", ".tmp_git_root/**/*", "BUILD", "BUILD.bazel", diff --git a/proto/prost/private/3rdparty/crates/BUILD.windows_aarch64_msvc-0.52.6.bazel b/proto/prost/private/3rdparty/crates/BUILD.windows_aarch64_msvc-0.52.6.bazel index 59112d2ac4..87e8d2be60 100644 --- a/proto/prost/private/3rdparty/crates/BUILD.windows_aarch64_msvc-0.52.6.bazel +++ b/proto/prost/private/3rdparty/crates/BUILD.windows_aarch64_msvc-0.52.6.bazel @@ -95,6 +95,7 @@ cargo_build_script( allow_empty = True, exclude = [ "**/* *", + "**/*.rs", ".tmp_git_root/**/*", "BUILD", "BUILD.bazel", diff --git a/proto/prost/private/3rdparty/crates/BUILD.windows_i686_gnu-0.52.6.bazel b/proto/prost/private/3rdparty/crates/BUILD.windows_i686_gnu-0.52.6.bazel index 69a770bcda..f58b658ccd 100644 --- a/proto/prost/private/3rdparty/crates/BUILD.windows_i686_gnu-0.52.6.bazel +++ b/proto/prost/private/3rdparty/crates/BUILD.windows_i686_gnu-0.52.6.bazel @@ -95,6 +95,7 @@ cargo_build_script( allow_empty = True, exclude = [ "**/* *", + "**/*.rs", ".tmp_git_root/**/*", "BUILD", "BUILD.bazel", diff --git a/proto/prost/private/3rdparty/crates/BUILD.windows_i686_gnullvm-0.52.6.bazel b/proto/prost/private/3rdparty/crates/BUILD.windows_i686_gnullvm-0.52.6.bazel index 51d5c0aed1..1be59296bd 100644 --- a/proto/prost/private/3rdparty/crates/BUILD.windows_i686_gnullvm-0.52.6.bazel +++ b/proto/prost/private/3rdparty/crates/BUILD.windows_i686_gnullvm-0.52.6.bazel @@ -95,6 +95,7 @@ cargo_build_script( allow_empty = True, exclude = [ "**/* *", + "**/*.rs", ".tmp_git_root/**/*", "BUILD", "BUILD.bazel", diff --git a/proto/prost/private/3rdparty/crates/BUILD.windows_i686_msvc-0.52.6.bazel b/proto/prost/private/3rdparty/crates/BUILD.windows_i686_msvc-0.52.6.bazel index 0811753fe7..885807b385 100644 --- a/proto/prost/private/3rdparty/crates/BUILD.windows_i686_msvc-0.52.6.bazel +++ b/proto/prost/private/3rdparty/crates/BUILD.windows_i686_msvc-0.52.6.bazel @@ -95,6 +95,7 @@ cargo_build_script( allow_empty = True, exclude = [ "**/* *", + "**/*.rs", ".tmp_git_root/**/*", "BUILD", "BUILD.bazel", diff --git a/proto/prost/private/3rdparty/crates/BUILD.windows_x86_64_gnu-0.52.6.bazel b/proto/prost/private/3rdparty/crates/BUILD.windows_x86_64_gnu-0.52.6.bazel index 4db30241de..e35af44de4 100644 --- a/proto/prost/private/3rdparty/crates/BUILD.windows_x86_64_gnu-0.52.6.bazel +++ b/proto/prost/private/3rdparty/crates/BUILD.windows_x86_64_gnu-0.52.6.bazel @@ -95,6 +95,7 @@ cargo_build_script( allow_empty = True, exclude = [ "**/* *", + "**/*.rs", ".tmp_git_root/**/*", "BUILD", "BUILD.bazel", diff --git a/proto/prost/private/3rdparty/crates/BUILD.windows_x86_64_gnullvm-0.52.6.bazel b/proto/prost/private/3rdparty/crates/BUILD.windows_x86_64_gnullvm-0.52.6.bazel index eed1e099a1..8882e2fab8 100644 --- a/proto/prost/private/3rdparty/crates/BUILD.windows_x86_64_gnullvm-0.52.6.bazel +++ b/proto/prost/private/3rdparty/crates/BUILD.windows_x86_64_gnullvm-0.52.6.bazel @@ -95,6 +95,7 @@ cargo_build_script( allow_empty = True, exclude = [ "**/* *", + "**/*.rs", ".tmp_git_root/**/*", "BUILD", "BUILD.bazel", diff --git a/proto/prost/private/3rdparty/crates/BUILD.windows_x86_64_msvc-0.52.6.bazel b/proto/prost/private/3rdparty/crates/BUILD.windows_x86_64_msvc-0.52.6.bazel index 6a6d7aa81e..e5f698d465 100644 --- a/proto/prost/private/3rdparty/crates/BUILD.windows_x86_64_msvc-0.52.6.bazel +++ b/proto/prost/private/3rdparty/crates/BUILD.windows_x86_64_msvc-0.52.6.bazel @@ -95,6 +95,7 @@ cargo_build_script( allow_empty = True, exclude = [ "**/* *", + "**/*.rs", ".tmp_git_root/**/*", "BUILD", "BUILD.bazel", diff --git a/proto/protobuf/3rdparty/crates/BUILD.crossbeam-epoch-0.8.2.bazel b/proto/protobuf/3rdparty/crates/BUILD.crossbeam-epoch-0.8.2.bazel index 7805171580..98a20de5eb 100644 --- a/proto/protobuf/3rdparty/crates/BUILD.crossbeam-epoch-0.8.2.bazel +++ b/proto/protobuf/3rdparty/crates/BUILD.crossbeam-epoch-0.8.2.bazel @@ -106,6 +106,7 @@ cargo_build_script( allow_empty = True, exclude = [ "**/* *", + "**/*.rs", ".tmp_git_root/**/*", "BUILD", "BUILD.bazel", diff --git a/proto/protobuf/3rdparty/crates/BUILD.crossbeam-utils-0.7.2.bazel b/proto/protobuf/3rdparty/crates/BUILD.crossbeam-utils-0.7.2.bazel index f7ede2c0e0..73a7545cec 100644 --- a/proto/protobuf/3rdparty/crates/BUILD.crossbeam-utils-0.7.2.bazel +++ b/proto/protobuf/3rdparty/crates/BUILD.crossbeam-utils-0.7.2.bazel @@ -102,6 +102,7 @@ cargo_build_script( allow_empty = True, exclude = [ "**/* *", + "**/*.rs", ".tmp_git_root/**/*", "BUILD", "BUILD.bazel", diff --git a/proto/protobuf/3rdparty/crates/BUILD.httpbis-0.7.0.bazel b/proto/protobuf/3rdparty/crates/BUILD.httpbis-0.7.0.bazel index b919a44b16..6f6c711320 100644 --- a/proto/protobuf/3rdparty/crates/BUILD.httpbis-0.7.0.bazel +++ b/proto/protobuf/3rdparty/crates/BUILD.httpbis-0.7.0.bazel @@ -205,6 +205,7 @@ cargo_build_script( allow_empty = True, exclude = [ "**/* *", + "**/*.rs", ".tmp_git_root/**/*", "BUILD", "BUILD.bazel", diff --git a/proto/protobuf/3rdparty/crates/BUILD.kernel32-sys-0.2.2.bazel b/proto/protobuf/3rdparty/crates/BUILD.kernel32-sys-0.2.2.bazel index 4c3238de6e..ec12285ec2 100644 --- a/proto/protobuf/3rdparty/crates/BUILD.kernel32-sys-0.2.2.bazel +++ b/proto/protobuf/3rdparty/crates/BUILD.kernel32-sys-0.2.2.bazel @@ -96,6 +96,7 @@ cargo_build_script( allow_empty = True, exclude = [ "**/* *", + "**/*.rs", ".tmp_git_root/**/*", "BUILD", "BUILD.bazel", diff --git a/proto/protobuf/3rdparty/crates/BUILD.libc-0.2.139.bazel b/proto/protobuf/3rdparty/crates/BUILD.libc-0.2.139.bazel index 3290d7765b..4a8d306244 100644 --- a/proto/protobuf/3rdparty/crates/BUILD.libc-0.2.139.bazel +++ b/proto/protobuf/3rdparty/crates/BUILD.libc-0.2.139.bazel @@ -99,6 +99,7 @@ cargo_build_script( allow_empty = True, exclude = [ "**/* *", + "**/*.rs", ".tmp_git_root/**/*", "BUILD", "BUILD.bazel", diff --git a/proto/protobuf/3rdparty/crates/BUILD.log-0.4.17.bazel b/proto/protobuf/3rdparty/crates/BUILD.log-0.4.17.bazel index 8061ec829b..abef5d67de 100644 --- a/proto/protobuf/3rdparty/crates/BUILD.log-0.4.17.bazel +++ b/proto/protobuf/3rdparty/crates/BUILD.log-0.4.17.bazel @@ -171,6 +171,7 @@ cargo_build_script( allow_empty = True, exclude = [ "**/* *", + "**/*.rs", ".tmp_git_root/**/*", "BUILD", "BUILD.bazel", diff --git a/proto/protobuf/3rdparty/crates/BUILD.maybe-uninit-2.0.0.bazel b/proto/protobuf/3rdparty/crates/BUILD.maybe-uninit-2.0.0.bazel index 5b69359cc9..d4a5038be7 100644 --- a/proto/protobuf/3rdparty/crates/BUILD.maybe-uninit-2.0.0.bazel +++ b/proto/protobuf/3rdparty/crates/BUILD.maybe-uninit-2.0.0.bazel @@ -95,6 +95,7 @@ cargo_build_script( allow_empty = True, exclude = [ "**/* *", + "**/*.rs", ".tmp_git_root/**/*", "BUILD", "BUILD.bazel", diff --git a/proto/protobuf/3rdparty/crates/BUILD.memoffset-0.5.6.bazel b/proto/protobuf/3rdparty/crates/BUILD.memoffset-0.5.6.bazel index 5a2884afc3..45a7d09d75 100644 --- a/proto/protobuf/3rdparty/crates/BUILD.memoffset-0.5.6.bazel +++ b/proto/protobuf/3rdparty/crates/BUILD.memoffset-0.5.6.bazel @@ -98,6 +98,7 @@ cargo_build_script( allow_empty = True, exclude = [ "**/* *", + "**/*.rs", ".tmp_git_root/**/*", "BUILD", "BUILD.bazel", diff --git a/proto/protobuf/3rdparty/crates/BUILD.parking_lot-0.9.0.bazel b/proto/protobuf/3rdparty/crates/BUILD.parking_lot-0.9.0.bazel index 85d9009e63..d05cb6dd4f 100644 --- a/proto/protobuf/3rdparty/crates/BUILD.parking_lot-0.9.0.bazel +++ b/proto/protobuf/3rdparty/crates/BUILD.parking_lot-0.9.0.bazel @@ -100,6 +100,7 @@ cargo_build_script( allow_empty = True, exclude = [ "**/* *", + "**/*.rs", ".tmp_git_root/**/*", "BUILD", "BUILD.bazel", diff --git a/proto/protobuf/3rdparty/crates/BUILD.parking_lot_core-0.6.3.bazel b/proto/protobuf/3rdparty/crates/BUILD.parking_lot_core-0.6.3.bazel index 022f9ab516..fb53b71ba0 100644 --- a/proto/protobuf/3rdparty/crates/BUILD.parking_lot_core-0.6.3.bazel +++ b/proto/protobuf/3rdparty/crates/BUILD.parking_lot_core-0.6.3.bazel @@ -180,6 +180,7 @@ cargo_build_script( allow_empty = True, exclude = [ "**/* *", + "**/*.rs", ".tmp_git_root/**/*", "BUILD", "BUILD.bazel", diff --git a/proto/protobuf/3rdparty/crates/BUILD.protobuf-2.8.2.bazel b/proto/protobuf/3rdparty/crates/BUILD.protobuf-2.8.2.bazel index 0e097edc44..f5f4ef0d3c 100644 --- a/proto/protobuf/3rdparty/crates/BUILD.protobuf-2.8.2.bazel +++ b/proto/protobuf/3rdparty/crates/BUILD.protobuf-2.8.2.bazel @@ -100,6 +100,7 @@ cargo_build_script( allow_empty = True, exclude = [ "**/* *", + "**/*.rs", ".tmp_git_root/**/*", "BUILD", "BUILD.bazel", diff --git a/proto/protobuf/3rdparty/crates/BUILD.slab-0.4.7.bazel b/proto/protobuf/3rdparty/crates/BUILD.slab-0.4.7.bazel index 790939d795..a82eaaef64 100644 --- a/proto/protobuf/3rdparty/crates/BUILD.slab-0.4.7.bazel +++ b/proto/protobuf/3rdparty/crates/BUILD.slab-0.4.7.bazel @@ -99,6 +99,7 @@ cargo_build_script( allow_empty = True, exclude = [ "**/* *", + "**/*.rs", ".tmp_git_root/**/*", "BUILD", "BUILD.bazel", diff --git a/proto/protobuf/3rdparty/crates/BUILD.winapi-0.3.9.bazel b/proto/protobuf/3rdparty/crates/BUILD.winapi-0.3.9.bazel index 3b222fa0e8..53d501fcdf 100644 --- a/proto/protobuf/3rdparty/crates/BUILD.winapi-0.3.9.bazel +++ b/proto/protobuf/3rdparty/crates/BUILD.winapi-0.3.9.bazel @@ -108,6 +108,7 @@ cargo_build_script( allow_empty = True, exclude = [ "**/* *", + "**/*.rs", ".tmp_git_root/**/*", "BUILD", "BUILD.bazel", diff --git a/proto/protobuf/3rdparty/crates/BUILD.winapi-i686-pc-windows-gnu-0.4.0.bazel b/proto/protobuf/3rdparty/crates/BUILD.winapi-i686-pc-windows-gnu-0.4.0.bazel index 8f24906897..1dfdf56100 100644 --- a/proto/protobuf/3rdparty/crates/BUILD.winapi-i686-pc-windows-gnu-0.4.0.bazel +++ b/proto/protobuf/3rdparty/crates/BUILD.winapi-i686-pc-windows-gnu-0.4.0.bazel @@ -95,6 +95,7 @@ cargo_build_script( allow_empty = True, exclude = [ "**/* *", + "**/*.rs", ".tmp_git_root/**/*", "BUILD", "BUILD.bazel", diff --git a/proto/protobuf/3rdparty/crates/BUILD.winapi-x86_64-pc-windows-gnu-0.4.0.bazel b/proto/protobuf/3rdparty/crates/BUILD.winapi-x86_64-pc-windows-gnu-0.4.0.bazel index 427fa8e140..88f5d6b83e 100644 --- a/proto/protobuf/3rdparty/crates/BUILD.winapi-x86_64-pc-windows-gnu-0.4.0.bazel +++ b/proto/protobuf/3rdparty/crates/BUILD.winapi-x86_64-pc-windows-gnu-0.4.0.bazel @@ -95,6 +95,7 @@ cargo_build_script( allow_empty = True, exclude = [ "**/* *", + "**/*.rs", ".tmp_git_root/**/*", "BUILD", "BUILD.bazel", diff --git a/proto/protobuf/3rdparty/crates/BUILD.ws2_32-sys-0.2.1.bazel b/proto/protobuf/3rdparty/crates/BUILD.ws2_32-sys-0.2.1.bazel index 8151cdbf1a..ac0dd43498 100644 --- a/proto/protobuf/3rdparty/crates/BUILD.ws2_32-sys-0.2.1.bazel +++ b/proto/protobuf/3rdparty/crates/BUILD.ws2_32-sys-0.2.1.bazel @@ -96,6 +96,7 @@ cargo_build_script( allow_empty = True, exclude = [ "**/* *", + "**/*.rs", ".tmp_git_root/**/*", "BUILD", "BUILD.bazel", diff --git a/test/3rdparty/crates/BUILD.proc-macro2-1.0.86.bazel b/test/3rdparty/crates/BUILD.proc-macro2-1.0.86.bazel index cb65367a92..5f1985175e 100644 --- a/test/3rdparty/crates/BUILD.proc-macro2-1.0.86.bazel +++ b/test/3rdparty/crates/BUILD.proc-macro2-1.0.86.bazel @@ -99,6 +99,7 @@ cargo_build_script( allow_empty = True, exclude = [ "**/* *", + "**/*.rs", ".tmp_git_root/**/*", "BUILD", "BUILD.bazel", diff --git a/test/3rdparty/crates/BUILD.serde-1.0.210.bazel b/test/3rdparty/crates/BUILD.serde-1.0.210.bazel index 17edeca9a2..b2a765e50c 100644 --- a/test/3rdparty/crates/BUILD.serde-1.0.210.bazel +++ b/test/3rdparty/crates/BUILD.serde-1.0.210.bazel @@ -104,6 +104,7 @@ cargo_build_script( allow_empty = True, exclude = [ "**/* *", + "**/*.rs", ".tmp_git_root/**/*", "BUILD", "BUILD.bazel", diff --git a/test/3rdparty/crates/BUILD.serde_json-1.0.128.bazel b/test/3rdparty/crates/BUILD.serde_json-1.0.128.bazel index 0f9e62804c..142c593152 100644 --- a/test/3rdparty/crates/BUILD.serde_json-1.0.128.bazel +++ b/test/3rdparty/crates/BUILD.serde_json-1.0.128.bazel @@ -103,6 +103,7 @@ cargo_build_script( allow_empty = True, exclude = [ "**/* *", + "**/*.rs", ".tmp_git_root/**/*", "BUILD", "BUILD.bazel", diff --git a/tools/rust_analyzer/3rdparty/crates/BUILD.anyhow-1.0.71.bazel b/tools/rust_analyzer/3rdparty/crates/BUILD.anyhow-1.0.71.bazel index e779a2e041..1060532794 100644 --- a/tools/rust_analyzer/3rdparty/crates/BUILD.anyhow-1.0.71.bazel +++ b/tools/rust_analyzer/3rdparty/crates/BUILD.anyhow-1.0.71.bazel @@ -83,6 +83,7 @@ cargo_build_script( allow_empty = True, exclude = [ "**/* *", + "**/*.rs", ".tmp_git_root/**/*", "BUILD", "BUILD.bazel", diff --git a/tools/rust_analyzer/3rdparty/crates/BUILD.errno-dragonfly-0.1.2.bazel b/tools/rust_analyzer/3rdparty/crates/BUILD.errno-dragonfly-0.1.2.bazel index e41dfc7a97..667cb27a8a 100644 --- a/tools/rust_analyzer/3rdparty/crates/BUILD.errno-dragonfly-0.1.2.bazel +++ b/tools/rust_analyzer/3rdparty/crates/BUILD.errno-dragonfly-0.1.2.bazel @@ -80,6 +80,7 @@ cargo_build_script( allow_empty = True, exclude = [ "**/* *", + "**/*.rs", ".tmp_git_root/**/*", "BUILD", "BUILD.bazel", diff --git a/tools/rust_analyzer/3rdparty/crates/BUILD.io-lifetimes-1.0.11.bazel b/tools/rust_analyzer/3rdparty/crates/BUILD.io-lifetimes-1.0.11.bazel index 627115f890..722b34baa2 100644 --- a/tools/rust_analyzer/3rdparty/crates/BUILD.io-lifetimes-1.0.11.bazel +++ b/tools/rust_analyzer/3rdparty/crates/BUILD.io-lifetimes-1.0.11.bazel @@ -142,6 +142,7 @@ cargo_build_script( allow_empty = True, exclude = [ "**/* *", + "**/*.rs", ".tmp_git_root/**/*", "BUILD", "BUILD.bazel", diff --git a/tools/rust_analyzer/3rdparty/crates/BUILD.libc-0.2.147.bazel b/tools/rust_analyzer/3rdparty/crates/BUILD.libc-0.2.147.bazel index 58fc424510..852c5b0c15 100644 --- a/tools/rust_analyzer/3rdparty/crates/BUILD.libc-0.2.147.bazel +++ b/tools/rust_analyzer/3rdparty/crates/BUILD.libc-0.2.147.bazel @@ -84,6 +84,7 @@ cargo_build_script( allow_empty = True, exclude = [ "**/* *", + "**/*.rs", ".tmp_git_root/**/*", "BUILD", "BUILD.bazel", diff --git a/tools/rust_analyzer/3rdparty/crates/BUILD.memchr-2.5.0.bazel b/tools/rust_analyzer/3rdparty/crates/BUILD.memchr-2.5.0.bazel index ae3fc790b7..09f2abd50a 100644 --- a/tools/rust_analyzer/3rdparty/crates/BUILD.memchr-2.5.0.bazel +++ b/tools/rust_analyzer/3rdparty/crates/BUILD.memchr-2.5.0.bazel @@ -83,6 +83,7 @@ cargo_build_script( allow_empty = True, exclude = [ "**/* *", + "**/*.rs", ".tmp_git_root/**/*", "BUILD", "BUILD.bazel", diff --git a/tools/rust_analyzer/3rdparty/crates/BUILD.proc-macro2-1.0.64.bazel b/tools/rust_analyzer/3rdparty/crates/BUILD.proc-macro2-1.0.64.bazel index 9848a48f98..563e04ce44 100644 --- a/tools/rust_analyzer/3rdparty/crates/BUILD.proc-macro2-1.0.64.bazel +++ b/tools/rust_analyzer/3rdparty/crates/BUILD.proc-macro2-1.0.64.bazel @@ -84,6 +84,7 @@ cargo_build_script( allow_empty = True, exclude = [ "**/* *", + "**/*.rs", ".tmp_git_root/**/*", "BUILD", "BUILD.bazel", diff --git a/tools/rust_analyzer/3rdparty/crates/BUILD.quote-1.0.29.bazel b/tools/rust_analyzer/3rdparty/crates/BUILD.quote-1.0.29.bazel index dc165e59ad..3008fc4676 100644 --- a/tools/rust_analyzer/3rdparty/crates/BUILD.quote-1.0.29.bazel +++ b/tools/rust_analyzer/3rdparty/crates/BUILD.quote-1.0.29.bazel @@ -84,6 +84,7 @@ cargo_build_script( allow_empty = True, exclude = [ "**/* *", + "**/*.rs", ".tmp_git_root/**/*", "BUILD", "BUILD.bazel", diff --git a/tools/rust_analyzer/3rdparty/crates/BUILD.rustix-0.37.23.bazel b/tools/rust_analyzer/3rdparty/crates/BUILD.rustix-0.37.23.bazel index 163c77c9b0..6ab26ba299 100644 --- a/tools/rust_analyzer/3rdparty/crates/BUILD.rustix-0.37.23.bazel +++ b/tools/rust_analyzer/3rdparty/crates/BUILD.rustix-0.37.23.bazel @@ -188,6 +188,7 @@ cargo_build_script( allow_empty = True, exclude = [ "**/* *", + "**/*.rs", ".tmp_git_root/**/*", "BUILD", "BUILD.bazel", diff --git a/tools/rust_analyzer/3rdparty/crates/BUILD.serde-1.0.171.bazel b/tools/rust_analyzer/3rdparty/crates/BUILD.serde-1.0.171.bazel index 6b745275f6..3657aa7299 100644 --- a/tools/rust_analyzer/3rdparty/crates/BUILD.serde-1.0.171.bazel +++ b/tools/rust_analyzer/3rdparty/crates/BUILD.serde-1.0.171.bazel @@ -88,6 +88,7 @@ cargo_build_script( allow_empty = True, exclude = [ "**/* *", + "**/*.rs", ".tmp_git_root/**/*", "BUILD", "BUILD.bazel", diff --git a/tools/rust_analyzer/3rdparty/crates/BUILD.serde_json-1.0.102.bazel b/tools/rust_analyzer/3rdparty/crates/BUILD.serde_json-1.0.102.bazel index 14fbf824bb..03ced1671f 100644 --- a/tools/rust_analyzer/3rdparty/crates/BUILD.serde_json-1.0.102.bazel +++ b/tools/rust_analyzer/3rdparty/crates/BUILD.serde_json-1.0.102.bazel @@ -86,6 +86,7 @@ cargo_build_script( allow_empty = True, exclude = [ "**/* *", + "**/*.rs", ".tmp_git_root/**/*", "BUILD", "BUILD.bazel", diff --git a/tools/rust_analyzer/3rdparty/crates/BUILD.winapi-0.3.9.bazel b/tools/rust_analyzer/3rdparty/crates/BUILD.winapi-0.3.9.bazel index d98e096ce1..e168a8b466 100644 --- a/tools/rust_analyzer/3rdparty/crates/BUILD.winapi-0.3.9.bazel +++ b/tools/rust_analyzer/3rdparty/crates/BUILD.winapi-0.3.9.bazel @@ -91,6 +91,7 @@ cargo_build_script( allow_empty = True, exclude = [ "**/* *", + "**/*.rs", ".tmp_git_root/**/*", "BUILD", "BUILD.bazel", diff --git a/tools/rust_analyzer/3rdparty/crates/BUILD.winapi-i686-pc-windows-gnu-0.4.0.bazel b/tools/rust_analyzer/3rdparty/crates/BUILD.winapi-i686-pc-windows-gnu-0.4.0.bazel index edacab33a0..02c3e5eff8 100644 --- a/tools/rust_analyzer/3rdparty/crates/BUILD.winapi-i686-pc-windows-gnu-0.4.0.bazel +++ b/tools/rust_analyzer/3rdparty/crates/BUILD.winapi-i686-pc-windows-gnu-0.4.0.bazel @@ -79,6 +79,7 @@ cargo_build_script( allow_empty = True, exclude = [ "**/* *", + "**/*.rs", ".tmp_git_root/**/*", "BUILD", "BUILD.bazel", diff --git a/tools/rust_analyzer/3rdparty/crates/BUILD.winapi-x86_64-pc-windows-gnu-0.4.0.bazel b/tools/rust_analyzer/3rdparty/crates/BUILD.winapi-x86_64-pc-windows-gnu-0.4.0.bazel index 618abb0ee8..cf3da2e46c 100644 --- a/tools/rust_analyzer/3rdparty/crates/BUILD.winapi-x86_64-pc-windows-gnu-0.4.0.bazel +++ b/tools/rust_analyzer/3rdparty/crates/BUILD.winapi-x86_64-pc-windows-gnu-0.4.0.bazel @@ -79,6 +79,7 @@ cargo_build_script( allow_empty = True, exclude = [ "**/* *", + "**/*.rs", ".tmp_git_root/**/*", "BUILD", "BUILD.bazel", diff --git a/tools/rust_analyzer/3rdparty/crates/BUILD.windows_aarch64_gnullvm-0.48.0.bazel b/tools/rust_analyzer/3rdparty/crates/BUILD.windows_aarch64_gnullvm-0.48.0.bazel index 95ff997227..232615ee29 100644 --- a/tools/rust_analyzer/3rdparty/crates/BUILD.windows_aarch64_gnullvm-0.48.0.bazel +++ b/tools/rust_analyzer/3rdparty/crates/BUILD.windows_aarch64_gnullvm-0.48.0.bazel @@ -79,6 +79,7 @@ cargo_build_script( allow_empty = True, exclude = [ "**/* *", + "**/*.rs", ".tmp_git_root/**/*", "BUILD", "BUILD.bazel", diff --git a/tools/rust_analyzer/3rdparty/crates/BUILD.windows_aarch64_msvc-0.48.0.bazel b/tools/rust_analyzer/3rdparty/crates/BUILD.windows_aarch64_msvc-0.48.0.bazel index cfb3caba9e..ad78dc0906 100644 --- a/tools/rust_analyzer/3rdparty/crates/BUILD.windows_aarch64_msvc-0.48.0.bazel +++ b/tools/rust_analyzer/3rdparty/crates/BUILD.windows_aarch64_msvc-0.48.0.bazel @@ -79,6 +79,7 @@ cargo_build_script( allow_empty = True, exclude = [ "**/* *", + "**/*.rs", ".tmp_git_root/**/*", "BUILD", "BUILD.bazel", diff --git a/tools/rust_analyzer/3rdparty/crates/BUILD.windows_i686_gnu-0.48.0.bazel b/tools/rust_analyzer/3rdparty/crates/BUILD.windows_i686_gnu-0.48.0.bazel index bfc716d2a2..b079d7c76e 100644 --- a/tools/rust_analyzer/3rdparty/crates/BUILD.windows_i686_gnu-0.48.0.bazel +++ b/tools/rust_analyzer/3rdparty/crates/BUILD.windows_i686_gnu-0.48.0.bazel @@ -79,6 +79,7 @@ cargo_build_script( allow_empty = True, exclude = [ "**/* *", + "**/*.rs", ".tmp_git_root/**/*", "BUILD", "BUILD.bazel", diff --git a/tools/rust_analyzer/3rdparty/crates/BUILD.windows_i686_msvc-0.48.0.bazel b/tools/rust_analyzer/3rdparty/crates/BUILD.windows_i686_msvc-0.48.0.bazel index 99f9427d2b..696187305d 100644 --- a/tools/rust_analyzer/3rdparty/crates/BUILD.windows_i686_msvc-0.48.0.bazel +++ b/tools/rust_analyzer/3rdparty/crates/BUILD.windows_i686_msvc-0.48.0.bazel @@ -79,6 +79,7 @@ cargo_build_script( allow_empty = True, exclude = [ "**/* *", + "**/*.rs", ".tmp_git_root/**/*", "BUILD", "BUILD.bazel", diff --git a/tools/rust_analyzer/3rdparty/crates/BUILD.windows_x86_64_gnu-0.48.0.bazel b/tools/rust_analyzer/3rdparty/crates/BUILD.windows_x86_64_gnu-0.48.0.bazel index e2e93ef5d1..64042cfa11 100644 --- a/tools/rust_analyzer/3rdparty/crates/BUILD.windows_x86_64_gnu-0.48.0.bazel +++ b/tools/rust_analyzer/3rdparty/crates/BUILD.windows_x86_64_gnu-0.48.0.bazel @@ -79,6 +79,7 @@ cargo_build_script( allow_empty = True, exclude = [ "**/* *", + "**/*.rs", ".tmp_git_root/**/*", "BUILD", "BUILD.bazel", diff --git a/tools/rust_analyzer/3rdparty/crates/BUILD.windows_x86_64_gnullvm-0.48.0.bazel b/tools/rust_analyzer/3rdparty/crates/BUILD.windows_x86_64_gnullvm-0.48.0.bazel index c9b6d5c7e7..98b49db6e6 100644 --- a/tools/rust_analyzer/3rdparty/crates/BUILD.windows_x86_64_gnullvm-0.48.0.bazel +++ b/tools/rust_analyzer/3rdparty/crates/BUILD.windows_x86_64_gnullvm-0.48.0.bazel @@ -79,6 +79,7 @@ cargo_build_script( allow_empty = True, exclude = [ "**/* *", + "**/*.rs", ".tmp_git_root/**/*", "BUILD", "BUILD.bazel", diff --git a/tools/rust_analyzer/3rdparty/crates/BUILD.windows_x86_64_msvc-0.48.0.bazel b/tools/rust_analyzer/3rdparty/crates/BUILD.windows_x86_64_msvc-0.48.0.bazel index 105b620db3..db9bd649c3 100644 --- a/tools/rust_analyzer/3rdparty/crates/BUILD.windows_x86_64_msvc-0.48.0.bazel +++ b/tools/rust_analyzer/3rdparty/crates/BUILD.windows_x86_64_msvc-0.48.0.bazel @@ -79,6 +79,7 @@ cargo_build_script( allow_empty = True, exclude = [ "**/* *", + "**/*.rs", ".tmp_git_root/**/*", "BUILD", "BUILD.bazel", diff --git a/wasm_bindgen/3rdparty/crates/BUILD.anyhow-1.0.71.bazel b/wasm_bindgen/3rdparty/crates/BUILD.anyhow-1.0.71.bazel index addf4ef2f0..d01de893a5 100644 --- a/wasm_bindgen/3rdparty/crates/BUILD.anyhow-1.0.71.bazel +++ b/wasm_bindgen/3rdparty/crates/BUILD.anyhow-1.0.71.bazel @@ -99,6 +99,7 @@ cargo_build_script( allow_empty = True, exclude = [ "**/* *", + "**/*.rs", ".tmp_git_root/**/*", "BUILD", "BUILD.bazel", diff --git a/wasm_bindgen/3rdparty/crates/BUILD.crc32fast-1.3.2.bazel b/wasm_bindgen/3rdparty/crates/BUILD.crc32fast-1.3.2.bazel index 56ada4014e..2287a8a51b 100644 --- a/wasm_bindgen/3rdparty/crates/BUILD.crc32fast-1.3.2.bazel +++ b/wasm_bindgen/3rdparty/crates/BUILD.crc32fast-1.3.2.bazel @@ -100,6 +100,7 @@ cargo_build_script( allow_empty = True, exclude = [ "**/* *", + "**/*.rs", ".tmp_git_root/**/*", "BUILD", "BUILD.bazel", diff --git a/wasm_bindgen/3rdparty/crates/BUILD.crossbeam-epoch-0.9.15.bazel b/wasm_bindgen/3rdparty/crates/BUILD.crossbeam-epoch-0.9.15.bazel index 845570ede3..727f4f1ca8 100644 --- a/wasm_bindgen/3rdparty/crates/BUILD.crossbeam-epoch-0.9.15.bazel +++ b/wasm_bindgen/3rdparty/crates/BUILD.crossbeam-epoch-0.9.15.bazel @@ -103,6 +103,7 @@ cargo_build_script( allow_empty = True, exclude = [ "**/* *", + "**/*.rs", ".tmp_git_root/**/*", "BUILD", "BUILD.bazel", diff --git a/wasm_bindgen/3rdparty/crates/BUILD.crossbeam-utils-0.8.16.bazel b/wasm_bindgen/3rdparty/crates/BUILD.crossbeam-utils-0.8.16.bazel index 61d3cbce33..9c3e2761e4 100644 --- a/wasm_bindgen/3rdparty/crates/BUILD.crossbeam-utils-0.8.16.bazel +++ b/wasm_bindgen/3rdparty/crates/BUILD.crossbeam-utils-0.8.16.bazel @@ -100,6 +100,7 @@ cargo_build_script( allow_empty = True, exclude = [ "**/* *", + "**/*.rs", ".tmp_git_root/**/*", "BUILD", "BUILD.bazel", diff --git a/wasm_bindgen/3rdparty/crates/BUILD.doc-comment-0.3.3.bazel b/wasm_bindgen/3rdparty/crates/BUILD.doc-comment-0.3.3.bazel index 3faa869e06..dc85e32dd1 100644 --- a/wasm_bindgen/3rdparty/crates/BUILD.doc-comment-0.3.3.bazel +++ b/wasm_bindgen/3rdparty/crates/BUILD.doc-comment-0.3.3.bazel @@ -95,6 +95,7 @@ cargo_build_script( allow_empty = True, exclude = [ "**/* *", + "**/*.rs", ".tmp_git_root/**/*", "BUILD", "BUILD.bazel", diff --git a/wasm_bindgen/3rdparty/crates/BUILD.errno-dragonfly-0.1.2.bazel b/wasm_bindgen/3rdparty/crates/BUILD.errno-dragonfly-0.1.2.bazel index a753b9282f..d87194da19 100644 --- a/wasm_bindgen/3rdparty/crates/BUILD.errno-dragonfly-0.1.2.bazel +++ b/wasm_bindgen/3rdparty/crates/BUILD.errno-dragonfly-0.1.2.bazel @@ -96,6 +96,7 @@ cargo_build_script( allow_empty = True, exclude = [ "**/* *", + "**/*.rs", ".tmp_git_root/**/*", "BUILD", "BUILD.bazel", diff --git a/wasm_bindgen/3rdparty/crates/BUILD.httparse-1.8.0.bazel b/wasm_bindgen/3rdparty/crates/BUILD.httparse-1.8.0.bazel index 66b6c880a1..46984424c9 100644 --- a/wasm_bindgen/3rdparty/crates/BUILD.httparse-1.8.0.bazel +++ b/wasm_bindgen/3rdparty/crates/BUILD.httparse-1.8.0.bazel @@ -99,6 +99,7 @@ cargo_build_script( allow_empty = True, exclude = [ "**/* *", + "**/*.rs", ".tmp_git_root/**/*", "BUILD", "BUILD.bazel", diff --git a/wasm_bindgen/3rdparty/crates/BUILD.iana-time-zone-haiku-0.1.2.bazel b/wasm_bindgen/3rdparty/crates/BUILD.iana-time-zone-haiku-0.1.2.bazel index 457ec34537..47520eeece 100644 --- a/wasm_bindgen/3rdparty/crates/BUILD.iana-time-zone-haiku-0.1.2.bazel +++ b/wasm_bindgen/3rdparty/crates/BUILD.iana-time-zone-haiku-0.1.2.bazel @@ -95,6 +95,7 @@ cargo_build_script( allow_empty = True, exclude = [ "**/* *", + "**/*.rs", ".tmp_git_root/**/*", "BUILD", "BUILD.bazel", diff --git a/wasm_bindgen/3rdparty/crates/BUILD.indexmap-1.9.3.bazel b/wasm_bindgen/3rdparty/crates/BUILD.indexmap-1.9.3.bazel index dd9b78638c..d9029f1b83 100644 --- a/wasm_bindgen/3rdparty/crates/BUILD.indexmap-1.9.3.bazel +++ b/wasm_bindgen/3rdparty/crates/BUILD.indexmap-1.9.3.bazel @@ -96,6 +96,7 @@ cargo_build_script( allow_empty = True, exclude = [ "**/* *", + "**/*.rs", ".tmp_git_root/**/*", "BUILD", "BUILD.bazel", diff --git a/wasm_bindgen/3rdparty/crates/BUILD.io-lifetimes-1.0.11.bazel b/wasm_bindgen/3rdparty/crates/BUILD.io-lifetimes-1.0.11.bazel index 56779699b9..b23aad25ad 100644 --- a/wasm_bindgen/3rdparty/crates/BUILD.io-lifetimes-1.0.11.bazel +++ b/wasm_bindgen/3rdparty/crates/BUILD.io-lifetimes-1.0.11.bazel @@ -102,6 +102,7 @@ cargo_build_script( allow_empty = True, exclude = [ "**/* *", + "**/*.rs", ".tmp_git_root/**/*", "BUILD", "BUILD.bazel", diff --git a/wasm_bindgen/3rdparty/crates/BUILD.libc-0.2.150.bazel b/wasm_bindgen/3rdparty/crates/BUILD.libc-0.2.150.bazel index 07ef102cec..941777d0a6 100644 --- a/wasm_bindgen/3rdparty/crates/BUILD.libc-0.2.150.bazel +++ b/wasm_bindgen/3rdparty/crates/BUILD.libc-0.2.150.bazel @@ -176,6 +176,7 @@ cargo_build_script( allow_empty = True, exclude = [ "**/* *", + "**/*.rs", ".tmp_git_root/**/*", "BUILD", "BUILD.bazel", diff --git a/wasm_bindgen/3rdparty/crates/BUILD.memchr-2.5.0.bazel b/wasm_bindgen/3rdparty/crates/BUILD.memchr-2.5.0.bazel index 3eb9a3e972..1d63df875f 100644 --- a/wasm_bindgen/3rdparty/crates/BUILD.memchr-2.5.0.bazel +++ b/wasm_bindgen/3rdparty/crates/BUILD.memchr-2.5.0.bazel @@ -100,6 +100,7 @@ cargo_build_script( allow_empty = True, exclude = [ "**/* *", + "**/*.rs", ".tmp_git_root/**/*", "BUILD", "BUILD.bazel", diff --git a/wasm_bindgen/3rdparty/crates/BUILD.memoffset-0.9.0.bazel b/wasm_bindgen/3rdparty/crates/BUILD.memoffset-0.9.0.bazel index 4bbb246595..4a73025d79 100644 --- a/wasm_bindgen/3rdparty/crates/BUILD.memoffset-0.9.0.bazel +++ b/wasm_bindgen/3rdparty/crates/BUILD.memoffset-0.9.0.bazel @@ -98,6 +98,7 @@ cargo_build_script( allow_empty = True, exclude = [ "**/* *", + "**/*.rs", ".tmp_git_root/**/*", "BUILD", "BUILD.bazel", diff --git a/wasm_bindgen/3rdparty/crates/BUILD.mime_guess-2.0.4.bazel b/wasm_bindgen/3rdparty/crates/BUILD.mime_guess-2.0.4.bazel index 8470991a20..48602aa005 100644 --- a/wasm_bindgen/3rdparty/crates/BUILD.mime_guess-2.0.4.bazel +++ b/wasm_bindgen/3rdparty/crates/BUILD.mime_guess-2.0.4.bazel @@ -101,6 +101,7 @@ cargo_build_script( allow_empty = True, exclude = [ "**/* *", + "**/*.rs", ".tmp_git_root/**/*", "BUILD", "BUILD.bazel", diff --git a/wasm_bindgen/3rdparty/crates/BUILD.num-traits-0.2.15.bazel b/wasm_bindgen/3rdparty/crates/BUILD.num-traits-0.2.15.bazel index 475f37da19..2c4d983972 100644 --- a/wasm_bindgen/3rdparty/crates/BUILD.num-traits-0.2.15.bazel +++ b/wasm_bindgen/3rdparty/crates/BUILD.num-traits-0.2.15.bazel @@ -95,6 +95,7 @@ cargo_build_script( allow_empty = True, exclude = [ "**/* *", + "**/*.rs", ".tmp_git_root/**/*", "BUILD", "BUILD.bazel", diff --git a/wasm_bindgen/3rdparty/crates/BUILD.proc-macro2-1.0.64.bazel b/wasm_bindgen/3rdparty/crates/BUILD.proc-macro2-1.0.64.bazel index 387cf4f22b..1d5de243f8 100644 --- a/wasm_bindgen/3rdparty/crates/BUILD.proc-macro2-1.0.64.bazel +++ b/wasm_bindgen/3rdparty/crates/BUILD.proc-macro2-1.0.64.bazel @@ -101,6 +101,7 @@ cargo_build_script( allow_empty = True, exclude = [ "**/* *", + "**/*.rs", ".tmp_git_root/**/*", "BUILD", "BUILD.bazel", diff --git a/wasm_bindgen/3rdparty/crates/BUILD.quote-1.0.29.bazel b/wasm_bindgen/3rdparty/crates/BUILD.quote-1.0.29.bazel index 663a649108..6cc7395878 100644 --- a/wasm_bindgen/3rdparty/crates/BUILD.quote-1.0.29.bazel +++ b/wasm_bindgen/3rdparty/crates/BUILD.quote-1.0.29.bazel @@ -100,6 +100,7 @@ cargo_build_script( allow_empty = True, exclude = [ "**/* *", + "**/*.rs", ".tmp_git_root/**/*", "BUILD", "BUILD.bazel", diff --git a/wasm_bindgen/3rdparty/crates/BUILD.rayon-core-1.11.0.bazel b/wasm_bindgen/3rdparty/crates/BUILD.rayon-core-1.11.0.bazel index 2c6f0352c3..5d054cd9b0 100644 --- a/wasm_bindgen/3rdparty/crates/BUILD.rayon-core-1.11.0.bazel +++ b/wasm_bindgen/3rdparty/crates/BUILD.rayon-core-1.11.0.bazel @@ -99,6 +99,7 @@ cargo_build_script( allow_empty = True, exclude = [ "**/* *", + "**/*.rs", ".tmp_git_root/**/*", "BUILD", "BUILD.bazel", diff --git a/wasm_bindgen/3rdparty/crates/BUILD.ring-0.17.5.bazel b/wasm_bindgen/3rdparty/crates/BUILD.ring-0.17.5.bazel index 070e3b8ec6..d03004edf4 100644 --- a/wasm_bindgen/3rdparty/crates/BUILD.ring-0.17.5.bazel +++ b/wasm_bindgen/3rdparty/crates/BUILD.ring-0.17.5.bazel @@ -188,6 +188,7 @@ cargo_build_script( allow_empty = True, exclude = [ "**/* *", + "**/*.rs", ".tmp_git_root/**/*", "BUILD", "BUILD.bazel", diff --git a/wasm_bindgen/3rdparty/crates/BUILD.rustix-0.37.23.bazel b/wasm_bindgen/3rdparty/crates/BUILD.rustix-0.37.23.bazel index ae7384bed2..f3b33be4bb 100644 --- a/wasm_bindgen/3rdparty/crates/BUILD.rustix-0.37.23.bazel +++ b/wasm_bindgen/3rdparty/crates/BUILD.rustix-0.37.23.bazel @@ -303,6 +303,7 @@ cargo_build_script( allow_empty = True, exclude = [ "**/* *", + "**/*.rs", ".tmp_git_root/**/*", "BUILD", "BUILD.bazel", diff --git a/wasm_bindgen/3rdparty/crates/BUILD.rustls-0.21.8.bazel b/wasm_bindgen/3rdparty/crates/BUILD.rustls-0.21.8.bazel index 019d380264..95ba4df8ea 100644 --- a/wasm_bindgen/3rdparty/crates/BUILD.rustls-0.21.8.bazel +++ b/wasm_bindgen/3rdparty/crates/BUILD.rustls-0.21.8.bazel @@ -105,6 +105,7 @@ cargo_build_script( allow_empty = True, exclude = [ "**/* *", + "**/*.rs", ".tmp_git_root/**/*", "BUILD", "BUILD.bazel", diff --git a/wasm_bindgen/3rdparty/crates/BUILD.semver-1.0.17.bazel b/wasm_bindgen/3rdparty/crates/BUILD.semver-1.0.17.bazel index 55ad23b81e..528343567b 100644 --- a/wasm_bindgen/3rdparty/crates/BUILD.semver-1.0.17.bazel +++ b/wasm_bindgen/3rdparty/crates/BUILD.semver-1.0.17.bazel @@ -99,6 +99,7 @@ cargo_build_script( allow_empty = True, exclude = [ "**/* *", + "**/*.rs", ".tmp_git_root/**/*", "BUILD", "BUILD.bazel", diff --git a/wasm_bindgen/3rdparty/crates/BUILD.serde-1.0.171.bazel b/wasm_bindgen/3rdparty/crates/BUILD.serde-1.0.171.bazel index 199f10182b..89459ae2f2 100644 --- a/wasm_bindgen/3rdparty/crates/BUILD.serde-1.0.171.bazel +++ b/wasm_bindgen/3rdparty/crates/BUILD.serde-1.0.171.bazel @@ -104,6 +104,7 @@ cargo_build_script( allow_empty = True, exclude = [ "**/* *", + "**/*.rs", ".tmp_git_root/**/*", "BUILD", "BUILD.bazel", diff --git a/wasm_bindgen/3rdparty/crates/BUILD.serde_json-1.0.102.bazel b/wasm_bindgen/3rdparty/crates/BUILD.serde_json-1.0.102.bazel index c1a1295d58..8b6af00f33 100644 --- a/wasm_bindgen/3rdparty/crates/BUILD.serde_json-1.0.102.bazel +++ b/wasm_bindgen/3rdparty/crates/BUILD.serde_json-1.0.102.bazel @@ -102,6 +102,7 @@ cargo_build_script( allow_empty = True, exclude = [ "**/* *", + "**/*.rs", ".tmp_git_root/**/*", "BUILD", "BUILD.bazel", diff --git a/wasm_bindgen/3rdparty/crates/BUILD.syn-1.0.109.bazel b/wasm_bindgen/3rdparty/crates/BUILD.syn-1.0.109.bazel index f8456c6581..bf8f068fd9 100644 --- a/wasm_bindgen/3rdparty/crates/BUILD.syn-1.0.109.bazel +++ b/wasm_bindgen/3rdparty/crates/BUILD.syn-1.0.109.bazel @@ -108,6 +108,7 @@ cargo_build_script( allow_empty = True, exclude = [ "**/* *", + "**/*.rs", ".tmp_git_root/**/*", "BUILD", "BUILD.bazel", diff --git a/wasm_bindgen/3rdparty/crates/BUILD.tempfile-3.6.0.bazel b/wasm_bindgen/3rdparty/crates/BUILD.tempfile-3.6.0.bazel index b7216b00f6..d19197854f 100644 --- a/wasm_bindgen/3rdparty/crates/BUILD.tempfile-3.6.0.bazel +++ b/wasm_bindgen/3rdparty/crates/BUILD.tempfile-3.6.0.bazel @@ -183,6 +183,7 @@ cargo_build_script( allow_empty = True, exclude = [ "**/* *", + "**/*.rs", ".tmp_git_root/**/*", "BUILD", "BUILD.bazel", diff --git a/wasm_bindgen/3rdparty/crates/BUILD.unicase-2.6.0.bazel b/wasm_bindgen/3rdparty/crates/BUILD.unicase-2.6.0.bazel index c2693c357e..e894b36f10 100644 --- a/wasm_bindgen/3rdparty/crates/BUILD.unicase-2.6.0.bazel +++ b/wasm_bindgen/3rdparty/crates/BUILD.unicase-2.6.0.bazel @@ -97,6 +97,7 @@ cargo_build_script( allow_empty = True, exclude = [ "**/* *", + "**/*.rs", ".tmp_git_root/**/*", "BUILD", "BUILD.bazel", diff --git a/wasm_bindgen/3rdparty/crates/BUILD.wasm-bindgen-0.2.92.bazel b/wasm_bindgen/3rdparty/crates/BUILD.wasm-bindgen-0.2.92.bazel index 27af79d6ea..de6f85d27e 100644 --- a/wasm_bindgen/3rdparty/crates/BUILD.wasm-bindgen-0.2.92.bazel +++ b/wasm_bindgen/3rdparty/crates/BUILD.wasm-bindgen-0.2.92.bazel @@ -104,6 +104,7 @@ cargo_build_script( allow_empty = True, exclude = [ "**/* *", + "**/*.rs", ".tmp_git_root/**/*", "BUILD", "BUILD.bazel", diff --git a/wasm_bindgen/3rdparty/crates/BUILD.wasm-bindgen-shared-0.2.92.bazel b/wasm_bindgen/3rdparty/crates/BUILD.wasm-bindgen-shared-0.2.92.bazel index f8b18995ce..656c0d28bf 100644 --- a/wasm_bindgen/3rdparty/crates/BUILD.wasm-bindgen-shared-0.2.92.bazel +++ b/wasm_bindgen/3rdparty/crates/BUILD.wasm-bindgen-shared-0.2.92.bazel @@ -95,6 +95,7 @@ cargo_build_script( allow_empty = True, exclude = [ "**/* *", + "**/*.rs", ".tmp_git_root/**/*", "BUILD", "BUILD.bazel", diff --git a/wasm_bindgen/3rdparty/crates/BUILD.winapi-0.3.9.bazel b/wasm_bindgen/3rdparty/crates/BUILD.winapi-0.3.9.bazel index 2c277938d2..15a8097bcc 100644 --- a/wasm_bindgen/3rdparty/crates/BUILD.winapi-0.3.9.bazel +++ b/wasm_bindgen/3rdparty/crates/BUILD.winapi-0.3.9.bazel @@ -110,6 +110,7 @@ cargo_build_script( allow_empty = True, exclude = [ "**/* *", + "**/*.rs", ".tmp_git_root/**/*", "BUILD", "BUILD.bazel", diff --git a/wasm_bindgen/3rdparty/crates/BUILD.winapi-i686-pc-windows-gnu-0.4.0.bazel b/wasm_bindgen/3rdparty/crates/BUILD.winapi-i686-pc-windows-gnu-0.4.0.bazel index 74bd18e6bf..88490434b0 100644 --- a/wasm_bindgen/3rdparty/crates/BUILD.winapi-i686-pc-windows-gnu-0.4.0.bazel +++ b/wasm_bindgen/3rdparty/crates/BUILD.winapi-i686-pc-windows-gnu-0.4.0.bazel @@ -95,6 +95,7 @@ cargo_build_script( allow_empty = True, exclude = [ "**/* *", + "**/*.rs", ".tmp_git_root/**/*", "BUILD", "BUILD.bazel", diff --git a/wasm_bindgen/3rdparty/crates/BUILD.winapi-x86_64-pc-windows-gnu-0.4.0.bazel b/wasm_bindgen/3rdparty/crates/BUILD.winapi-x86_64-pc-windows-gnu-0.4.0.bazel index 2b126863ac..b683c2bf1c 100644 --- a/wasm_bindgen/3rdparty/crates/BUILD.winapi-x86_64-pc-windows-gnu-0.4.0.bazel +++ b/wasm_bindgen/3rdparty/crates/BUILD.winapi-x86_64-pc-windows-gnu-0.4.0.bazel @@ -95,6 +95,7 @@ cargo_build_script( allow_empty = True, exclude = [ "**/* *", + "**/*.rs", ".tmp_git_root/**/*", "BUILD", "BUILD.bazel", diff --git a/wasm_bindgen/3rdparty/crates/BUILD.windows_aarch64_gnullvm-0.48.0.bazel b/wasm_bindgen/3rdparty/crates/BUILD.windows_aarch64_gnullvm-0.48.0.bazel index 79ff07aac1..1c4f30fdde 100644 --- a/wasm_bindgen/3rdparty/crates/BUILD.windows_aarch64_gnullvm-0.48.0.bazel +++ b/wasm_bindgen/3rdparty/crates/BUILD.windows_aarch64_gnullvm-0.48.0.bazel @@ -95,6 +95,7 @@ cargo_build_script( allow_empty = True, exclude = [ "**/* *", + "**/*.rs", ".tmp_git_root/**/*", "BUILD", "BUILD.bazel", diff --git a/wasm_bindgen/3rdparty/crates/BUILD.windows_aarch64_msvc-0.48.0.bazel b/wasm_bindgen/3rdparty/crates/BUILD.windows_aarch64_msvc-0.48.0.bazel index 2087d5e314..c6cf027f99 100644 --- a/wasm_bindgen/3rdparty/crates/BUILD.windows_aarch64_msvc-0.48.0.bazel +++ b/wasm_bindgen/3rdparty/crates/BUILD.windows_aarch64_msvc-0.48.0.bazel @@ -95,6 +95,7 @@ cargo_build_script( allow_empty = True, exclude = [ "**/* *", + "**/*.rs", ".tmp_git_root/**/*", "BUILD", "BUILD.bazel", diff --git a/wasm_bindgen/3rdparty/crates/BUILD.windows_i686_gnu-0.48.0.bazel b/wasm_bindgen/3rdparty/crates/BUILD.windows_i686_gnu-0.48.0.bazel index 677aa6601b..a3a57ef69b 100644 --- a/wasm_bindgen/3rdparty/crates/BUILD.windows_i686_gnu-0.48.0.bazel +++ b/wasm_bindgen/3rdparty/crates/BUILD.windows_i686_gnu-0.48.0.bazel @@ -95,6 +95,7 @@ cargo_build_script( allow_empty = True, exclude = [ "**/* *", + "**/*.rs", ".tmp_git_root/**/*", "BUILD", "BUILD.bazel", diff --git a/wasm_bindgen/3rdparty/crates/BUILD.windows_i686_msvc-0.48.0.bazel b/wasm_bindgen/3rdparty/crates/BUILD.windows_i686_msvc-0.48.0.bazel index 60f3948689..70b7387c94 100644 --- a/wasm_bindgen/3rdparty/crates/BUILD.windows_i686_msvc-0.48.0.bazel +++ b/wasm_bindgen/3rdparty/crates/BUILD.windows_i686_msvc-0.48.0.bazel @@ -95,6 +95,7 @@ cargo_build_script( allow_empty = True, exclude = [ "**/* *", + "**/*.rs", ".tmp_git_root/**/*", "BUILD", "BUILD.bazel", diff --git a/wasm_bindgen/3rdparty/crates/BUILD.windows_x86_64_gnu-0.48.0.bazel b/wasm_bindgen/3rdparty/crates/BUILD.windows_x86_64_gnu-0.48.0.bazel index b50984f29b..d37b88536b 100644 --- a/wasm_bindgen/3rdparty/crates/BUILD.windows_x86_64_gnu-0.48.0.bazel +++ b/wasm_bindgen/3rdparty/crates/BUILD.windows_x86_64_gnu-0.48.0.bazel @@ -95,6 +95,7 @@ cargo_build_script( allow_empty = True, exclude = [ "**/* *", + "**/*.rs", ".tmp_git_root/**/*", "BUILD", "BUILD.bazel", diff --git a/wasm_bindgen/3rdparty/crates/BUILD.windows_x86_64_gnullvm-0.48.0.bazel b/wasm_bindgen/3rdparty/crates/BUILD.windows_x86_64_gnullvm-0.48.0.bazel index 9a44f2f69a..880cd7abf5 100644 --- a/wasm_bindgen/3rdparty/crates/BUILD.windows_x86_64_gnullvm-0.48.0.bazel +++ b/wasm_bindgen/3rdparty/crates/BUILD.windows_x86_64_gnullvm-0.48.0.bazel @@ -95,6 +95,7 @@ cargo_build_script( allow_empty = True, exclude = [ "**/* *", + "**/*.rs", ".tmp_git_root/**/*", "BUILD", "BUILD.bazel", diff --git a/wasm_bindgen/3rdparty/crates/BUILD.windows_x86_64_msvc-0.48.0.bazel b/wasm_bindgen/3rdparty/crates/BUILD.windows_x86_64_msvc-0.48.0.bazel index f27fc24531..3fecd2b015 100644 --- a/wasm_bindgen/3rdparty/crates/BUILD.windows_x86_64_msvc-0.48.0.bazel +++ b/wasm_bindgen/3rdparty/crates/BUILD.windows_x86_64_msvc-0.48.0.bazel @@ -95,6 +95,7 @@ cargo_build_script( allow_empty = True, exclude = [ "**/* *", + "**/*.rs", ".tmp_git_root/**/*", "BUILD", "BUILD.bazel",