blob: 6774eec4a1f93cc97f870a56de08d1c585f4f4ff [file] [log] [blame]
Adam Snaider1c095c92023-07-08 02:09:58 -04001###############################################################################
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 @//3rdparty:crates_vendor
7###############################################################################
8
9load("@rules_rust//cargo:defs.bzl", "cargo_build_script")
10load("@rules_rust//rust:defs.bzl", "rust_library")
11
12package(default_visibility = ["//visibility:public"])
13
14# licenses([
15# "TODO", # MIT OR Apache-2.0
16# ])
17
18rust_library(
19 name = "libc",
20 srcs = glob(["**/*.rs"]),
21 compile_data = glob(
22 include = ["**"],
23 exclude = [
24 "**/* *",
25 "BUILD",
26 "BUILD.bazel",
27 "WORKSPACE",
28 "WORKSPACE.bazel",
29 ],
30 ),
31 crate_features = [
32 "default",
33 "std",
34 ],
35 crate_root = "src/lib.rs",
36 edition = "2015",
37 rustc_flags = ["--cap-lints=allow"],
38 tags = [
39 "cargo-bazel",
40 "manual",
41 "noclippy",
42 "norustfmt",
43 ],
44 version = "0.2.134",
45 deps = [
46 "@ios_build__libc-0.2.134//:build_script_build",
47 ],
48)
49
50cargo_build_script(
51 name = "libc_build_script",
52 srcs = glob(["**/*.rs"]),
53 crate_features = [
54 "default",
55 "std",
56 ],
57 crate_name = "build_script_build",
58 crate_root = "build.rs",
59 data = glob(
60 include = ["**"],
61 exclude = [
62 "**/* *",
63 "BUILD",
64 "BUILD.bazel",
65 "WORKSPACE",
66 "WORKSPACE.bazel",
67 ],
68 ),
69 edition = "2015",
70 rustc_flags = [
71 "--cap-lints=allow",
72 ],
73 tags = [
74 "cargo-bazel",
75 "manual",
76 "noclippy",
77 "norustfmt",
78 ],
79 version = "0.2.134",
80 visibility = ["//visibility:private"],
81)
82
83alias(
84 name = "build_script_build",
85 actual = "libc_build_script",
86 tags = ["manual"],
87)