• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1###############################################################################
2# @generated
3# DO NOT MODIFY: This file is auto-generated by a crate_universe tool. To
4# regenerate this file, run the following:
5#
6#     bazel run @//tools/rust_analyzer/3rdparty:crates_vendor
7###############################################################################
8
9load("@rules_rust//rust:defs.bzl", "rust_library")
10
11package(default_visibility = ["//visibility:public"])
12
13rust_library(
14    name = "env_logger",
15    srcs = glob(
16        include = ["**/*.rs"],
17        allow_empty = True,
18    ),
19    compile_data = glob(
20        include = ["**"],
21        allow_empty = True,
22        exclude = [
23            "**/* *",
24            ".tmp_git_root/**/*",
25            "BUILD",
26            "BUILD.bazel",
27            "WORKSPACE",
28            "WORKSPACE.bazel",
29        ],
30    ),
31    crate_features = [
32        "auto-color",
33        "color",
34        "default",
35        "humantime",
36        "regex",
37    ],
38    crate_root = "src/lib.rs",
39    edition = "2021",
40    rustc_flags = [
41        "--cap-lints=allow",
42    ],
43    tags = [
44        "cargo-bazel",
45        "crate-name=env_logger",
46        "manual",
47        "noclippy",
48        "norustfmt",
49    ],
50    target_compatible_with = select({
51        "@rules_rust//rust/platform:aarch64-apple-darwin": [],
52        "@rules_rust//rust/platform:aarch64-pc-windows-msvc": [],
53        "@rules_rust//rust/platform:aarch64-unknown-linux-gnu": [],
54        "@rules_rust//rust/platform:aarch64-unknown-nixos-gnu": [],
55        "@rules_rust//rust/platform:arm-unknown-linux-gnueabi": [],
56        "@rules_rust//rust/platform:armv7-linux-androideabi": [],
57        "@rules_rust//rust/platform:armv7-unknown-linux-gnueabi": [],
58        "@rules_rust//rust/platform:i686-apple-darwin": [],
59        "@rules_rust//rust/platform:i686-pc-windows-msvc": [],
60        "@rules_rust//rust/platform:i686-unknown-freebsd": [],
61        "@rules_rust//rust/platform:i686-unknown-linux-gnu": [],
62        "@rules_rust//rust/platform:powerpc-unknown-linux-gnu": [],
63        "@rules_rust//rust/platform:s390x-unknown-linux-gnu": [],
64        "@rules_rust//rust/platform:x86_64-apple-darwin": [],
65        "@rules_rust//rust/platform:x86_64-pc-windows-msvc": [],
66        "@rules_rust//rust/platform:x86_64-unknown-freebsd": [],
67        "@rules_rust//rust/platform:x86_64-unknown-linux-gnu": [],
68        "@rules_rust//rust/platform:x86_64-unknown-nixos-gnu": [],
69        "//conditions:default": ["@platforms//:incompatible"],
70    }),
71    version = "0.10.0",
72    deps = [
73        "@rrra__humantime-2.1.0//:humantime",
74        "@rrra__is-terminal-0.4.7//:is_terminal",
75        "@rrra__log-0.4.19//:log",
76        "@rrra__regex-1.9.1//:regex",
77        "@rrra__termcolor-1.2.0//:termcolor",
78    ],
79)
80