blob: a0a1b7e0dd860c09f70560d1b4939c9d69617ffa [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", # MIT from expression "MIT"
30])
31
32# Generated Targets
33
34# Unsupported target "indent" with type "bench" omitted
35
36# Unsupported target "linear" with type "bench" omitted
37
38# Unsupported target "hyphenation" with type "example" omitted
39
40# Unsupported target "termwidth" with type "example" omitted
41
42rust_library(
43 name = "textwrap",
44 srcs = glob(["**/*.rs"]),
45 crate_features = [
46 "default",
47 "smawk",
48 "unicode-linebreak",
49 "unicode-width",
50 ],
51 crate_root = "src/lib.rs",
52 data = [],
53 edition = "2018",
54 rustc_flags = [
55 "--cap-lints=allow",
56 ],
57 tags = [
58 "cargo-raze",
59 "crate-name=textwrap",
60 "manual",
61 ],
62 version = "0.15.0",
63 # buildifier: leave-alone
64 deps = [
65 "@raze__smawk__0_3_1//:smawk",
66 "@raze__unicode_linebreak__0_1_2//:unicode_linebreak",
67 "@raze__unicode_width__0_1_9//:unicode_width",
68 ],
69)
70
71# Unsupported target "indent" with type "test" omitted
72
73# Unsupported target "version-numbers" with type "test" omitted