blob: 928109c9b27d8b530603d36396722821b5b7509a [file] [log] [blame]
Adam Snaider1c095c92023-07-08 02:09:58 -04001###############################################################################
2# @generated
3# DO NOT MODIFY: This file is auto-generated by a crate_universe tool. To
4# regenerate this file, run the following:
5#
6# bazel run @//sys/complex/3rdparty:crates_vendor
7###############################################################################
8
9load(
10 "@rules_rust//rust:defs.bzl",
11 "rust_library",
12)
13
14package(default_visibility = ["//visibility:public"])
15
16# licenses([
17# "TODO", # MIT OR Apache-2.0
18# ])
19
20rust_library(
21 name = "cc",
22 srcs = glob(["**/*.rs"]),
23 compile_data = glob(
24 include = ["**"],
25 exclude = [
26 "**/* *",
27 "BUILD",
28 "BUILD.bazel",
29 "WORKSPACE",
30 "WORKSPACE.bazel",
31 ],
32 ),
33 crate_features = [
34 "jobserver",
35 "parallel",
36 ],
37 crate_root = "src/lib.rs",
38 edition = "2018",
39 rustc_flags = ["--cap-lints=allow"],
40 tags = [
41 "cargo-bazel",
42 "manual",
43 "noclippy",
44 "norustfmt",
45 ],
46 version = "1.0.77",
47 deps = [
48 "@complex_sys__jobserver-0.1.25//:jobserver",
49 ],
50)