blob: 62814bff5164304d28b02a9dad7184834b91eb0f [file] [log] [blame]
Brian Silverman5f6f2762022-08-13 19:30:05 -07001###############################################################################
2# @generated
3# DO NOT MODIFY: This file is auto-generated by a crate_universe tool. To
4# regenerate this file, run the following:
5#
6# bazel run //wasm_bindgen/3rdparty:crates_vendor
7###############################################################################
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 OR Apache-2.0
25# ])
26
27rust_library(
28 name = "tempfile",
29 srcs = glob(
30 include = [
31 "**/*.rs",
32 ],
33 exclude = [
34 ],
35 ),
36 aliases = selects.with_or({
37 "//conditions:default": {
38 },
39 }),
40 compile_data = glob(
41 include = ["**"],
42 exclude = [
43 "BUILD",
44 "BUILD.bazel",
45 "WORKSPACE",
46 "WORKSPACE.bazel",
47 ],
48 ) + select_with_or({
49 "//conditions:default": [
50 ],
51 }),
52 crate_features = [
53 ],
54 crate_root = "src/lib.rs",
55 data = select_with_or({
56 "//conditions:default": [
57 ],
58 }),
59 edition = "2018",
60 proc_macro_deps = [
61 ] + select_with_or({
62 "//conditions:default": [
63 ],
64 }),
65 rustc_env = {
66 },
67 rustc_env_files = select_with_or({
68 "//conditions:default": [
69 ],
70 }),
71 rustc_flags = [
72 # In most cases, warnings in 3rd party crates are not interesting as
73 # they're out of the control of consumers. The flag here silences
74 # warnings. For more details see:
75 # https://doc.rust-lang.org/rustc/lints/levels.html
76 "--cap-lints=allow",
77 ],
78 tags = [
79 "cargo-bazel",
80 "manual",
81 "noclippy",
82 "norustfmt",
83 ],
84 version = "3.3.0",
85 deps = [
86 ] + select_with_or({
87 # cfg(any(unix, target_os = "wasi"))
88 (
89 "@rules_rust//rust/platform:aarch64-apple-darwin",
90 "@rules_rust//rust/platform:aarch64-apple-ios",
91 "@rules_rust//rust/platform:aarch64-apple-ios-sim",
92 "@rules_rust//rust/platform:aarch64-linux-android",
93 "@rules_rust//rust/platform:aarch64-unknown-linux-gnu",
94 "@rules_rust//rust/platform:arm-unknown-linux-gnueabi",
95 "@rules_rust//rust/platform:armv7-linux-androideabi",
96 "@rules_rust//rust/platform:armv7-unknown-linux-gnueabi",
97 "@rules_rust//rust/platform:i686-apple-darwin",
98 "@rules_rust//rust/platform:i686-linux-android",
99 "@rules_rust//rust/platform:i686-unknown-freebsd",
100 "@rules_rust//rust/platform:i686-unknown-linux-gnu",
101 "@rules_rust//rust/platform:powerpc-unknown-linux-gnu",
102 "@rules_rust//rust/platform:s390x-unknown-linux-gnu",
103 "@rules_rust//rust/platform:wasm32-wasi",
104 "@rules_rust//rust/platform:x86_64-apple-darwin",
105 "@rules_rust//rust/platform:x86_64-apple-ios",
106 "@rules_rust//rust/platform:x86_64-linux-android",
107 "@rules_rust//rust/platform:x86_64-unknown-freebsd",
108 "@rules_rust//rust/platform:x86_64-unknown-linux-gnu",
109 ): [
110 # Target Deps
111 "@rules_rust_wasm_bindgen__libc-0.2.126//:libc",
112
113 # Common Deps
114 "@rules_rust_wasm_bindgen__cfg-if-1.0.0//:cfg_if",
115 "@rules_rust_wasm_bindgen__fastrand-1.7.0//:fastrand",
116 "@rules_rust_wasm_bindgen__remove_dir_all-0.5.3//:remove_dir_all",
117 ],
118 # cfg(target_os = "redox")
119 #
120 # No supported platform triples for cfg: 'cfg(target_os = "redox")'
121 # Skipped dependencies: [{"id":"redox_syscall 0.2.13","target":"syscall"}]
122 #
123 # cfg(windows)
124 (
125 "@rules_rust//rust/platform:i686-pc-windows-msvc",
126 "@rules_rust//rust/platform:x86_64-pc-windows-msvc",
127 ): [
128 # Target Deps
129 "@rules_rust_wasm_bindgen__winapi-0.3.9//:winapi",
130
131 # Common Deps
132 "@rules_rust_wasm_bindgen__cfg-if-1.0.0//:cfg_if",
133 "@rules_rust_wasm_bindgen__fastrand-1.7.0//:fastrand",
134 "@rules_rust_wasm_bindgen__remove_dir_all-0.5.3//:remove_dir_all",
135 ],
136 "//conditions:default": [
137 "@rules_rust_wasm_bindgen__cfg-if-1.0.0//:cfg_if",
138 "@rules_rust_wasm_bindgen__fastrand-1.7.0//:fastrand",
139 "@rules_rust_wasm_bindgen__remove_dir_all-0.5.3//:remove_dir_all",
140 ],
141 }),
142)