blob: b9a02d0270a1ce6f96c81664c55872da77d76f38 [file] [log] [blame]
UebelAndre6d8009d2022-07-18 08:48:51 -07001###############################################################################
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 //bindgen/3rdparty:crates_vendor
7###############################################################################
8
9load(
10 "@bazel_skylib//lib:selects.bzl",
11 "selects",
12)
13
14# buildifier: disable=bzl-visibility
15load("@rules_rust//crate_universe/private:selects.bzl", "select_with_or")
16load(
17 "@rules_rust//rust:defs.bzl",
18 "rust_library",
19)
20
21package(default_visibility = ["//visibility:public"])
22
23# licenses([
24# "TODO", # MIT/Apache-2.0
25# ])
26
27rust_library(
UebelAndre25baabc2022-07-18 09:59:50 -070028 name = "either",
UebelAndre6d8009d2022-07-18 08:48:51 -070029 srcs = glob(
30 include = [
31 "**/*.rs",
32 ],
33 exclude = [
34 ],
35 ),
36 aliases = selects.with_or({
37 "//conditions:default": {
38 },
39 }),
40 compile_data = glob(
41 include = ["**"],
42 exclude = [
43 "BUILD",
44 "BUILD.bazel",
45 "WORKSPACE",
46 "WORKSPACE.bazel",
47 ],
48 ) + select_with_or({
49 "//conditions:default": [
50 ],
51 }),
52 crate_features = [
UebelAndre25baabc2022-07-18 09:59:50 -070053 "default",
54 "use_std",
UebelAndre6d8009d2022-07-18 08:48:51 -070055 ],
56 crate_root = "src/lib.rs",
57 data = select_with_or({
58 "//conditions:default": [
59 ],
60 }),
61 edition = "2018",
62 proc_macro_deps = [
63 ] + select_with_or({
64 "//conditions:default": [
65 ],
66 }),
67 rustc_env = {
68 },
69 rustc_env_files = select_with_or({
70 "//conditions:default": [
71 ],
72 }),
73 rustc_flags = [
74 # In most cases, warnings in 3rd party crates are not interesting as
75 # they're out of the control of consumers. The flag here silences
76 # warnings. For more details see:
77 # https://doc.rust-lang.org/rustc/lints/levels.html
78 "--cap-lints=allow",
79 ],
80 tags = [
81 "cargo-bazel",
82 "manual",
83 "noclippy",
84 "norustfmt",
85 ],
UebelAndre25baabc2022-07-18 09:59:50 -070086 version = "1.7.0",
UebelAndre6d8009d2022-07-18 08:48:51 -070087 deps = [
88 ] + select_with_or({
89 "//conditions:default": [
90 ],
91 }),
92)