blob: 748b3d024286d25ed9697ff53f91ac97b6800be5 [file] [log] [blame]
Leopold2aa8b182023-01-14 23:31:43 +01001"""
2@generated
3cargo-raze crate build file.
4
5DO NOT EDIT! Replaced on runs of cargo-raze
6"""
7
8# buildifier: disable=load
9load("@bazel_skylib//lib:selects.bzl", "selects")
10
11# buildifier: disable=load
12load(
13 "@rules_rust//rust:defs.bzl",
14 "rust_binary",
15 "rust_library",
16 "rust_proc_macro",
17 "rust_test",
18)
19
20package(default_visibility = [
21 # Public for visibility by "@raze__crate__version//" targets.
22 #
23 # Prefer access through "//third_party/rust/cargo", which limits external
24 # visibility to explicit Cargo.toml dependencies.
25 "//visibility:public",
26])
27
28licenses([
29 "notice", # Apache-2.0 from expression "Apache-2.0"
30])
31
32# Generated Targets
33
34# Unsupported target "custom_files" with type "example" omitted
35
36# Unsupported target "peg_calculator" with type "example" omitted
37
38# Unsupported target "readme_preview" with type "example" omitted
39
40# Unsupported target "reusable_diagnostic" with type "example" omitted
41
42# Unsupported target "term" with type "example" omitted
43
44rust_library(
45 name = "codespan_reporting",
46 srcs = glob(["**/*.rs"]),
47 crate_root = "src/lib.rs",
48 data = [],
49 edition = "2018",
50 rustc_flags = [
51 "--cap-lints=allow",
52 ],
53 tags = [
54 "cargo-raze",
55 "crate-name=codespan-reporting",
56 "manual",
57 ],
58 version = "0.11.1",
59 # buildifier: leave-alone
60 deps = [
61 "@raze__termcolor__1_1_3//:termcolor",
62 "@raze__unicode_width__0_1_10//:unicode_width",
63 ],
64)
65
66# Unsupported target "term" with type "test" omitted