blob: b72b2c843f46113822665e8086157f429fd5ec3a [file] [log] [blame]
Brian Silvermancc09f182022-03-09 15:40:20 -08001###############################################################################
2# @generated
Brian Silverman5f6f2762022-08-13 19:30:05 -07003# DO NOT MODIFY: This file is auto-generated by a crate_universe tool. To
4# regenerate this file, run the following:
Brian Silvermancc09f182022-03-09 15:40:20 -08005#
Brian Silverman5f6f2762022-08-13 19:30:05 -07006# bazel run //crate_universe/3rdparty:crates_vendor
Brian Silvermancc09f182022-03-09 15:40:20 -08007###############################################################################
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(
28 name = "num_complex",
29 srcs = glob(
30 include = [
31 "**/*.rs",
32 ],
33 exclude = [
34 ],
35 ),
36 aliases = selects.with_or({
37 "//conditions:default": {
38 },
39 }),
Brian Silverman5f6f2762022-08-13 19:30:05 -070040 compile_data = glob(
41 include = ["**"],
42 exclude = [
43 "BUILD",
44 "BUILD.bazel",
45 "WORKSPACE",
46 "WORKSPACE.bazel",
47 ],
48 ) + select_with_or({
Brian Silvermancc09f182022-03-09 15:40:20 -080049 "//conditions:default": [
50 ],
51 }),
52 crate_features = [
53 "default",
54 "rustc-serialize",
55 ],
56 crate_root = "src/lib.rs",
57 data = select_with_or({
58 "//conditions:default": [
59 ],
60 }),
61 edition = "2015",
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",
Brian Silverman5f6f2762022-08-13 19:30:05 -070079 ],
Brian Silvermancc09f182022-03-09 15:40:20 -080080 tags = [
81 "cargo-bazel",
82 "manual",
83 "noclippy",
84 "norustfmt",
85 ],
86 version = "0.1.43",
87 deps = [
88 ] + select_with_or({
89 "//conditions:default": [
Brian Silverman5f6f2762022-08-13 19:30:05 -070090 "@cui__num-traits-0.2.15//:num_traits",
91 "@cui__rustc-serialize-0.3.24//:rustc_serialize",
Brian Silvermancc09f182022-03-09 15:40:20 -080092 ],
93 }),
94)