aboutsummaryrefslogtreecommitdiff
path: root/third-party/bazel/BUILD.codespan-reporting-0.11.1.bazel
diff options
context:
space:
mode:
Diffstat (limited to 'third-party/bazel/BUILD.codespan-reporting-0.11.1.bazel')
-rw-r--r--third-party/bazel/BUILD.codespan-reporting-0.11.1.bazel58
1 files changed, 49 insertions, 9 deletions
diff --git a/third-party/bazel/BUILD.codespan-reporting-0.11.1.bazel b/third-party/bazel/BUILD.codespan-reporting-0.11.1.bazel
index a75a1369..2db5b317 100644
--- a/third-party/bazel/BUILD.codespan-reporting-0.11.1.bazel
+++ b/third-party/bazel/BUILD.codespan-reporting-0.11.1.bazel
@@ -3,24 +3,25 @@
# DO NOT MODIFY: This file is auto-generated by a crate_universe tool. To
# regenerate this file, run the following:
#
-# bazel run @//third-party:vendor
+# bazel run @@//third-party:vendor
###############################################################################
load("@rules_rust//rust:defs.bzl", "rust_library")
package(default_visibility = ["//visibility:public"])
-# licenses([
-# "TODO", # Apache-2.0
-# ])
-
rust_library(
name = "codespan_reporting",
- srcs = glob(["**/*.rs"]),
+ srcs = glob(
+ include = ["**/*.rs"],
+ allow_empty = False,
+ ),
compile_data = glob(
include = ["**"],
+ allow_empty = True,
exclude = [
"**/* *",
+ ".tmp_git_root/**/*",
"BUILD",
"BUILD.bazel",
"WORKSPACE",
@@ -29,7 +30,9 @@ rust_library(
),
crate_root = "src/lib.rs",
edition = "2018",
- rustc_flags = ["--cap-lints=allow"],
+ rustc_flags = [
+ "--cap-lints=allow",
+ ],
tags = [
"cargo-bazel",
"crate-name=codespan-reporting",
@@ -37,9 +40,46 @@ rust_library(
"noclippy",
"norustfmt",
],
+ target_compatible_with = select({
+ "@rules_rust//rust/platform:aarch64-apple-darwin": [],
+ "@rules_rust//rust/platform:aarch64-apple-ios": [],
+ "@rules_rust//rust/platform:aarch64-apple-ios-sim": [],
+ "@rules_rust//rust/platform:aarch64-fuchsia": [],
+ "@rules_rust//rust/platform:aarch64-linux-android": [],
+ "@rules_rust//rust/platform:aarch64-pc-windows-msvc": [],
+ "@rules_rust//rust/platform:aarch64-unknown-linux-gnu": [],
+ "@rules_rust//rust/platform:aarch64-unknown-nixos-gnu": [],
+ "@rules_rust//rust/platform:aarch64-unknown-nto-qnx710": [],
+ "@rules_rust//rust/platform:arm-unknown-linux-gnueabi": [],
+ "@rules_rust//rust/platform:armv7-linux-androideabi": [],
+ "@rules_rust//rust/platform:armv7-unknown-linux-gnueabi": [],
+ "@rules_rust//rust/platform:i686-apple-darwin": [],
+ "@rules_rust//rust/platform:i686-linux-android": [],
+ "@rules_rust//rust/platform:i686-pc-windows-msvc": [],
+ "@rules_rust//rust/platform:i686-unknown-freebsd": [],
+ "@rules_rust//rust/platform:i686-unknown-linux-gnu": [],
+ "@rules_rust//rust/platform:powerpc-unknown-linux-gnu": [],
+ "@rules_rust//rust/platform:riscv32imc-unknown-none-elf": [],
+ "@rules_rust//rust/platform:riscv64gc-unknown-none-elf": [],
+ "@rules_rust//rust/platform:s390x-unknown-linux-gnu": [],
+ "@rules_rust//rust/platform:thumbv7em-none-eabi": [],
+ "@rules_rust//rust/platform:thumbv8m.main-none-eabi": [],
+ "@rules_rust//rust/platform:wasm32-unknown-unknown": [],
+ "@rules_rust//rust/platform:wasm32-wasi": [],
+ "@rules_rust//rust/platform:x86_64-apple-darwin": [],
+ "@rules_rust//rust/platform:x86_64-apple-ios": [],
+ "@rules_rust//rust/platform:x86_64-fuchsia": [],
+ "@rules_rust//rust/platform:x86_64-linux-android": [],
+ "@rules_rust//rust/platform:x86_64-pc-windows-msvc": [],
+ "@rules_rust//rust/platform:x86_64-unknown-freebsd": [],
+ "@rules_rust//rust/platform:x86_64-unknown-linux-gnu": [],
+ "@rules_rust//rust/platform:x86_64-unknown-nixos-gnu": [],
+ "@rules_rust//rust/platform:x86_64-unknown-none": [],
+ "//conditions:default": ["@platforms//:incompatible"],
+ }),
version = "0.11.1",
deps = [
- "@vendor__termcolor-1.2.0//:termcolor",
- "@vendor__unicode-width-0.1.10//:unicode_width",
+ "@vendor__termcolor-1.4.1//:termcolor",
+ "@vendor__unicode-width-0.1.11//:unicode_width",
],
)