Brian Silverman | 547eda0 | 2022-05-19 23:14:08 -0700 | [diff] [blame] | 1 | """ |
| 2 | @generated |
| 3 | cargo-raze crate build file. |
| 4 | |
| 5 | DO NOT EDIT! Replaced on runs of cargo-raze |
| 6 | """ |
| 7 | |
| 8 | # buildifier: disable=load |
| 9 | load("@bazel_skylib//lib:selects.bzl", "selects") |
| 10 | |
| 11 | # buildifier: disable=load |
| 12 | load( |
| 13 | "@rules_rust//rust:defs.bzl", |
| 14 | "rust_binary", |
| 15 | "rust_library", |
| 16 | "rust_proc_macro", |
| 17 | "rust_test", |
| 18 | ) |
| 19 | |
| 20 | package(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 | |
| 28 | licenses([ |
| 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 type "bench" omitted |
| 37 | |
| 38 | # Unsupported target "combinations_with_replacement" with type "bench" omitted |
| 39 | |
| 40 | # Unsupported target "fold_specialization" with type "bench" omitted |
| 41 | |
| 42 | # Unsupported target "powerset" with type "bench" omitted |
| 43 | |
| 44 | # Unsupported target "tree_fold1" with type "bench" omitted |
| 45 | |
| 46 | # Unsupported target "tuple_combinations" with type "bench" omitted |
| 47 | |
| 48 | # Unsupported target "tuples" with type "bench" omitted |
| 49 | |
| 50 | # Unsupported target "iris" with type "example" omitted |
| 51 | |
| 52 | rust_library( |
| 53 | name = "itertools", |
| 54 | srcs = glob(["**/*.rs"]), |
| 55 | crate_features = [ |
| 56 | "default", |
| 57 | "use_alloc", |
| 58 | "use_std", |
| 59 | ], |
| 60 | crate_root = "src/lib.rs", |
| 61 | data = [], |
| 62 | edition = "2018", |
| 63 | rustc_flags = [ |
| 64 | "--cap-lints=allow", |
| 65 | ], |
| 66 | tags = [ |
| 67 | "cargo-raze", |
| 68 | "crate-name=itertools", |
| 69 | "manual", |
| 70 | ], |
Brian Silverman | a7ba251 | 2022-12-19 19:13:52 -0800 | [diff] [blame] | 71 | version = "0.10.5", |
Brian Silverman | 547eda0 | 2022-05-19 23:14:08 -0700 | [diff] [blame] | 72 | # buildifier: leave-alone |
| 73 | deps = [ |
Brian Silverman | a7ba251 | 2022-12-19 19:13:52 -0800 | [diff] [blame] | 74 | "@raze__either__1_8_0//:either", |
Brian Silverman | 547eda0 | 2022-05-19 23:14:08 -0700 | [diff] [blame] | 75 | ], |
| 76 | ) |
| 77 | |
| 78 | # Unsupported target "adaptors_no_collect" with type "test" omitted |
| 79 | |
| 80 | # Unsupported target "flatten_ok" with type "test" omitted |
| 81 | |
| 82 | # Unsupported target "macros_hygiene" with type "test" omitted |
| 83 | |
| 84 | # Unsupported target "merge_join" with type "test" omitted |
| 85 | |
| 86 | # Unsupported target "peeking_take_while" with type "test" omitted |
| 87 | |
| 88 | # Unsupported target "quick" with type "test" omitted |
| 89 | |
| 90 | # Unsupported target "specializations" with type "test" omitted |
| 91 | |
| 92 | # Unsupported target "test_core" with type "test" omitted |
| 93 | |
| 94 | # Unsupported target "test_std" with type "test" omitted |
| 95 | |
| 96 | # Unsupported target "tuples" with type "test" omitted |
| 97 | |
| 98 | # Unsupported target "zip" with type "test" omitted |