blob: 37674a9344ffe61e265c22a736c2d75a43cb199d [file] [log] [blame]
Alphan Ulusoydbbb1fe2022-01-03 13:28:36 -05001"""
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# buildifier: disable=out-of-order-load
34# buildifier: disable=load-on-top
35load(
36 "@rules_rust//cargo:cargo_build_script.bzl",
37 "cargo_build_script",
38)
39
40cargo_build_script(
41 name = "num_bigint_dig_build_script",
42 srcs = glob(["**/*.rs"]),
43 build_script_env = {
44 },
45 crate_features = [
46 "default",
47 "i128",
48 "rand",
49 "serde",
50 "std",
51 "u64_digit",
52 ],
53 crate_root = "build.rs",
54 data = glob(["**"]),
55 edition = "2015",
56 rustc_flags = [
57 "--cap-lints=allow",
58 ],
59 tags = [
60 "cargo-raze",
61 "manual",
62 ],
63 version = "0.7.0",
64 visibility = ["//visibility:private"],
65 deps = [
Timothy Trippel05bc1812022-02-15 15:59:39 -080066 "@raze__autocfg__0_1_8//:autocfg",
Alphan Ulusoydbbb1fe2022-01-03 13:28:36 -050067 ],
68)
69
70rust_library(
71 name = "num_bigint_dig",
72 srcs = glob(["**/*.rs"]),
73 crate_features = [
74 "default",
75 "i128",
76 "rand",
77 "serde",
78 "std",
79 "u64_digit",
80 ],
81 crate_root = "src/lib.rs",
82 data = [],
83 edition = "2015",
84 rustc_flags = [
85 "--cap-lints=allow",
86 ],
87 tags = [
88 "cargo-raze",
Timothy Trippel05bc1812022-02-15 15:59:39 -080089 "crate-name=num-bigint-dig",
Alphan Ulusoydbbb1fe2022-01-03 13:28:36 -050090 "manual",
91 ],
92 version = "0.7.0",
93 # buildifier: leave-alone
94 deps = [
95 ":num_bigint_dig_build_script",
96 "@raze__byteorder__1_4_3//:byteorder",
97 "@raze__lazy_static__1_4_0//:lazy_static",
Timothy Trippel05bc1812022-02-15 15:59:39 -080098 "@raze__libm__0_2_2//:libm",
Alphan Ulusoydbbb1fe2022-01-03 13:28:36 -050099 "@raze__num_integer__0_1_44//:num_integer",
100 "@raze__num_iter__0_1_42//:num_iter",
101 "@raze__num_traits__0_2_14//:num_traits",
Timothy Trippel05bc1812022-02-15 15:59:39 -0800102 "@raze__rand__0_8_5//:rand",
Alphan Ulusoydbbb1fe2022-01-03 13:28:36 -0500103 "@raze__serde__1_0_130//:serde",
Jon Flatley48f64de2022-01-06 09:53:40 -0500104 "@raze__smallvec__1_8_0//:smallvec",
Alphan Ulusoydbbb1fe2022-01-03 13:28:36 -0500105 ],
106)
107
108# Unsupported target "bigint" with type "test" omitted
109
110# Unsupported target "bigint_bitwise" with type "test" omitted
111
112# Unsupported target "bigint_scalar" with type "test" omitted
113
114# Unsupported target "biguint" with type "test" omitted
115
116# Unsupported target "biguint_scalar" with type "test" omitted
117
118# Unsupported target "modpow" with type "test" omitted
119
120# Unsupported target "rand" with type "test" omitted
121
122# Unsupported target "roots" with type "test" omitted
123
124# Unsupported target "serde" with type "test" omitted
125
126# Unsupported target "torture" with type "test" omitted