blob: e00c468d5a1d1f6c9a24ce2d93a5ff9f64248486 [file] [log] [blame]
Serge Bazanskicbf1fa92021-07-02 17:28:50 +02001"""
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:rust.bzl",
14 "rust_binary",
15 "rust_library",
16 "rust_test",
17)
18
19package(default_visibility = [
20 # Public for visibility by "@raze__crate__version//" targets.
21 #
22 # Prefer access through "//third_party/rust/cargo", which limits external
23 # visibility to explicit Cargo.toml dependencies.
24 "//visibility:public",
25])
26
27licenses([
28 "notice", # MIT from expression "MIT OR Apache-2.0"
29])
30
31# Generated Targets
32
33rust_binary(
34 # Prefix bin name to disambiguate from (probable) collision with lib name
35 # N.B.: The exact form of this is subject to change.
36 name = "cargo_bin_gitignore_check",
37 srcs = glob(["**/*.rs"]),
38 crate_features = [
39 ],
40 crate_root = "src/bin/gitignore_check.rs",
41 data = [],
42 edition = "2015",
43 rustc_flags = [
44 "--cap-lints=allow",
45 ],
46 tags = [
47 "cargo-raze",
48 "manual",
49 ],
50 version = "1.0.7",
51 # buildifier: leave-alone
52 deps = [
53 ":gitignore",
54 "@raze__glob__0_3_0//:glob",
55 ],
56)
57
58rust_binary(
59 # Prefix bin name to disambiguate from (probable) collision with lib name
60 # N.B.: The exact form of this is subject to change.
61 name = "cargo_bin_gitignore_tree",
62 srcs = glob(["**/*.rs"]),
63 crate_features = [
64 ],
65 crate_root = "src/bin/gitignore_tree.rs",
66 data = [],
67 edition = "2015",
68 rustc_flags = [
69 "--cap-lints=allow",
70 ],
71 tags = [
72 "cargo-raze",
73 "manual",
74 ],
75 version = "1.0.7",
76 # buildifier: leave-alone
77 deps = [
78 ":gitignore",
79 "@raze__glob__0_3_0//:glob",
80 ],
81)
82
83rust_library(
84 name = "gitignore",
85 srcs = glob(["**/*.rs"]),
86 crate_features = [
87 ],
88 crate_root = "src/lib.rs",
89 crate_type = "lib",
90 data = [],
91 edition = "2015",
92 rustc_flags = [
93 "--cap-lints=allow",
94 ],
95 tags = [
96 "cargo-raze",
97 "manual",
98 ],
99 version = "1.0.7",
100 # buildifier: leave-alone
101 deps = [
102 "@raze__glob__0_3_0//:glob",
103 ],
104)