UebelAndre | 59fab4e | 2022-03-03 06:49:27 -0800 | [diff] [blame] | 1 | ############################################################################### |
| 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 | |
| 8 | load( |
| 9 | "@bazel_skylib//lib:selects.bzl", |
| 10 | "selects", |
| 11 | ) |
| 12 | |
| 13 | # buildifier: disable=bzl-visibility |
| 14 | load("@rules_rust//crate_universe/private:selects.bzl", "select_with_or") |
| 15 | load( |
| 16 | "@rules_rust//rust:defs.bzl", |
| 17 | "rust_library", |
| 18 | ) |
| 19 | |
| 20 | package(default_visibility = ["//visibility:public"]) |
| 21 | |
| 22 | # licenses([ |
| 23 | # "TODO", # MIT/Apache-2.0 |
| 24 | # ]) |
| 25 | |
| 26 | rust_library( |
| 27 | name = "num_bigint", |
| 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 | "rand", |
| 46 | "rustc-serialize", |
| 47 | ], |
| 48 | crate_root = "src/lib.rs", |
| 49 | data = select_with_or({ |
| 50 | "//conditions:default": [ |
| 51 | ], |
| 52 | }), |
| 53 | edition = "2015", |
| 54 | proc_macro_deps = [ |
| 55 | ] + select_with_or({ |
| 56 | "//conditions:default": [ |
| 57 | ], |
| 58 | }), |
| 59 | rustc_env = { |
| 60 | }, |
| 61 | rustc_env_files = select_with_or({ |
| 62 | "//conditions:default": [ |
| 63 | ], |
| 64 | }), |
| 65 | rustc_flags = [ |
| 66 | # In most cases, warnings in 3rd party crates are not interesting as |
| 67 | # they're out of the control of consumers. The flag here silences |
| 68 | # warnings. For more details see: |
| 69 | # https://doc.rust-lang.org/rustc/lints/levels.html |
| 70 | "--cap-lints=allow", |
UebelAndre | d3197a6 | 2022-06-13 06:07:49 -0700 | [diff] [blame^] | 71 | ], |
UebelAndre | 59fab4e | 2022-03-03 06:49:27 -0800 | [diff] [blame] | 72 | tags = [ |
| 73 | "cargo-bazel", |
| 74 | "manual", |
| 75 | "noclippy", |
| 76 | "norustfmt", |
| 77 | ], |
| 78 | version = "0.1.44", |
| 79 | deps = [ |
| 80 | ] + select_with_or({ |
| 81 | "//conditions:default": [ |
Daniel Wagner-Hall | d3d9aba | 2022-05-09 19:10:48 +0200 | [diff] [blame] | 82 | "@crate_universe_crate_index__num-integer-0.1.45//:num_integer", |
| 83 | "@crate_universe_crate_index__num-traits-0.2.15//:num_traits", |
UebelAndre | e48c834 | 2022-03-24 06:57:32 -0700 | [diff] [blame] | 84 | "@crate_universe_crate_index__rand-0.4.6//:rand", |
| 85 | "@crate_universe_crate_index__rustc-serialize-0.3.24//:rustc_serialize", |
UebelAndre | 59fab4e | 2022-03-03 06:49:27 -0800 | [diff] [blame] | 86 | ], |
| 87 | }), |
| 88 | ) |