blob: 6895a62406fb8587e4cf5b2ad936b30646bb1071 [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 OR Apache-2.0"
30])
31
32# Generated Targets
33
34# Unsupported target "bench1" with type "bench" omitted
35
36# Unsupported target "combinations_with_replacement" with type "bench" omitted
37
38# Unsupported target "fold_specialization" with type "bench" omitted
39
40# Unsupported target "tree_fold1" with type "bench" omitted
41
42# Unsupported target "tuple_combinations" with type "bench" omitted
43
44# Unsupported target "tuples" with type "bench" omitted
45
46# Unsupported target "iris" with type "example" omitted
47
48rust_library(
49 name = "itertools",
50 srcs = glob(["**/*.rs"]),
51 crate_features = [
52 "default",
53 "use_std",
54 ],
55 crate_root = "src/lib.rs",
56 data = [],
57 edition = "2018",
58 rustc_flags = [
59 "--cap-lints=allow",
60 ],
61 tags = [
62 "cargo-raze",
63 "crate-name=itertools",
64 "manual",
65 ],
66 version = "0.9.0",
67 # buildifier: leave-alone
68 deps = [
Brian Silvermana7ba2512022-12-19 19:13:52 -080069 "@raze__either__1_8_0//:either",
Brian Silverman547eda02022-05-19 23:14:08 -070070 ],
71)
72
73# Unsupported target "adaptors_no_collect" with type "test" omitted
74
75# Unsupported target "fold_specialization" with type "test" omitted
76
77# Unsupported target "merge_join" with type "test" omitted
78
79# Unsupported target "peeking_take_while" with type "test" omitted
80
81# Unsupported target "quick" with type "test" omitted
82
83# Unsupported target "specializations" with type "test" omitted
84
85# Unsupported target "test_core" with type "test" omitted
86
87# Unsupported target "test_std" with type "test" omitted
88
89# Unsupported target "tuples" with type "test" omitted
90
91# Unsupported target "zip" with type "test" omitted