blob: 0ed368ba4c4ac88301c27913dc926d26d4d42b3c [file] [log] [blame]
Brian Silverman547eda02022-05-19 23:14:08 -07001"""
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/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_features = [
48 ],
49 crate_root = "src/lib.rs",
50 data = [],
51 edition = "2018",
52 rustc_flags = [
53 "--cap-lints=allow",
54 ],
55 tags = [
56 "cargo-raze",
57 "crate-name=codespan-reporting",
58 "manual",
59 ],
60 version = "0.11.1",
61 # buildifier: leave-alone
62 deps = [
63 "@raze__termcolor__1_1_3//:termcolor",
Brian Silvermana7ba2512022-12-19 19:13:52 -080064 "@raze__unicode_width__0_1_10//:unicode_width",
Brian Silverman547eda02022-05-19 23:14:08 -070065 ],
66)
67
68# Unsupported target "term" with type "test" omitted