blob: def8f779b9390306f0759075bcbf33b87fe20145 [file] [log] [blame]
Brian Silvermancc09f182022-03-09 15:40:20 -08001###############################################################################
2# @generated
3# This file is auto-generated by the cargo-bazel tool.
4#
5# DO NOT MODIFY: Local changes may be replaced in future executions.
6###############################################################################
7
8load(
9 "@bazel_skylib//lib:selects.bzl",
10 "selects",
11)
12
13# buildifier: disable=bzl-visibility
14load("@rules_rust//crate_universe/private:selects.bzl", "select_with_or")
15load(
16 "@rules_rust//rust:defs.bzl",
17 "rust_library",
18)
19
20package(default_visibility = ["//visibility:public"])
21
22# licenses([
23# "TODO", # Apache-2.0/MIT
24# ])
25
26rust_library(
27 name = "rustc_hash",
28 srcs = glob(
29 include = [
30 "**/*.rs",
31 ],
32 exclude = [
33 ],
34 ),
35 aliases = selects.with_or({
36 "//conditions:default": {
37 },
38 }),
39 compile_data = glob(["**"]) + select_with_or({
40 "//conditions:default": [
41 ],
42 }),
43 crate_features = [
44 "default",
45 "std",
46 ],
47 crate_root = "src/lib.rs",
48 data = select_with_or({
49 "//conditions:default": [
50 ],
51 }),
52 edition = "2015",
53 proc_macro_deps = [
54 ] + select_with_or({
55 "//conditions:default": [
56 ],
57 }),
58 rustc_env = {
59 },
60 rustc_env_files = select_with_or({
61 "//conditions:default": [
62 ],
63 }),
64 rustc_flags = [
65 # In most cases, warnings in 3rd party crates are not interesting as
66 # they're out of the control of consumers. The flag here silences
67 # warnings. For more details see:
68 # https://doc.rust-lang.org/rustc/lints/levels.html
69 "--cap-lints=allow",
70 ] + select_with_or({
71 "//conditions:default": [
72 ],
73 }),
74 tags = [
75 "cargo-bazel",
76 "manual",
77 "noclippy",
78 "norustfmt",
79 ],
80 version = "1.1.0",
81 deps = [
82 ] + select_with_or({
83 "//conditions:default": [
84 ],
85 }),
86)