| """ |
| @generated |
| cargo-raze crate build file. |
| |
| DO NOT EDIT! Replaced on runs of cargo-raze |
| """ |
| |
| # buildifier: disable=load |
| load("@bazel_skylib//lib:selects.bzl", "selects") |
| |
| # buildifier: disable=load |
| load( |
| "@rules_rust//rust:defs.bzl", |
| "rust_binary", |
| "rust_library", |
| "rust_proc_macro", |
| "rust_test", |
| ) |
| |
| package(default_visibility = [ |
| # Public for visibility by "@raze__crate__version//" targets. |
| # |
| # Prefer access through "//third_party/cargo", which limits external |
| # visibility to explicit Cargo.toml dependencies. |
| "//visibility:public", |
| ]) |
| |
| licenses([ |
| "notice", # Apache-2.0 from expression "Apache-2.0" |
| ]) |
| |
| # Generated Targets |
| |
| rust_library( |
| name = "miette", |
| srcs = glob(["**/*.rs"]), |
| crate_features = [ |
| "atty", |
| "backtrace", |
| "default", |
| "fancy", |
| "fancy-no-backtrace", |
| "owo-colors", |
| "supports-color", |
| "supports-hyperlinks", |
| "supports-unicode", |
| "terminal_size", |
| "textwrap", |
| ], |
| crate_root = "src/lib.rs", |
| data = [], |
| edition = "2018", |
| proc_macro_deps = [ |
| "@raze__miette_derive__4_7_1//:miette_derive", |
| ], |
| rustc_flags = [ |
| "--cap-lints=allow", |
| ], |
| tags = [ |
| "cargo-raze", |
| "crate-name=miette", |
| "manual", |
| ], |
| version = "4.7.1", |
| # buildifier: leave-alone |
| deps = [ |
| "@raze__atty__0_2_14//:atty", |
| "@raze__backtrace__0_3_67//:backtrace", |
| "@raze__once_cell__1_16_0//:once_cell", |
| "@raze__owo_colors__3_5_0//:owo_colors", |
| "@raze__supports_color__1_3_1//:supports_color", |
| "@raze__supports_hyperlinks__1_2_0//:supports_hyperlinks", |
| "@raze__supports_unicode__1_0_2//:supports_unicode", |
| "@raze__terminal_size__0_1_17//:terminal_size", |
| "@raze__textwrap__0_15_2//:textwrap", |
| "@raze__thiserror__1_0_38//:thiserror", |
| "@raze__unicode_width__0_1_10//:unicode_width", |
| ], |
| ) |