1###############################################################################
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("@rules_rust//cargo:defs.bzl", "cargo_build_script")
10load("@rules_rust//rust:defs.bzl", "rust_library")
11
12package(default_visibility = ["//visibility:public"])
13
14rust_library(
15    name = "rustls",
16    srcs = glob(
17        include = ["**/*.rs"],
18        allow_empty = True,
19    ),
20    compile_data = glob(
21        include = ["**"],
22        allow_empty = True,
23        exclude = [
24            "**/* *",
25            ".tmp_git_root/**/*",
26            "BUILD",
27            "BUILD.bazel",
28            "WORKSPACE",
29            "WORKSPACE.bazel",
30        ],
31    ),
32    crate_features = [
33        "default",
34        "log",
35        "logging",
36        "tls12",
37    ],
38    crate_root = "src/lib.rs",
39    edition = "2021",
40    rustc_flags = [
41        "--cap-lints=allow",
42    ],
43    tags = [
44        "cargo-bazel",
45        "crate-name=rustls",
46        "manual",
47        "noclippy",
48        "norustfmt",
49    ],
50    target_compatible_with = select({
51        "@rules_rust//rust/platform:aarch64-apple-darwin": [],
52        "@rules_rust//rust/platform:aarch64-apple-ios": [],
53        "@rules_rust//rust/platform:aarch64-apple-ios-sim": [],
54        "@rules_rust//rust/platform:aarch64-fuchsia": [],
55        "@rules_rust//rust/platform:aarch64-linux-android": [],
56        "@rules_rust//rust/platform:aarch64-pc-windows-msvc": [],
57        "@rules_rust//rust/platform:aarch64-unknown-linux-gnu": [],
58        "@rules_rust//rust/platform:aarch64-unknown-nixos-gnu": [],
59        "@rules_rust//rust/platform:aarch64-unknown-nto-qnx710": [],
60        "@rules_rust//rust/platform:arm-unknown-linux-gnueabi": [],
61        "@rules_rust//rust/platform:armv7-linux-androideabi": [],
62        "@rules_rust//rust/platform:armv7-unknown-linux-gnueabi": [],
63        "@rules_rust//rust/platform:i686-apple-darwin": [],
64        "@rules_rust//rust/platform:i686-linux-android": [],
65        "@rules_rust//rust/platform:i686-pc-windows-msvc": [],
66        "@rules_rust//rust/platform:i686-unknown-freebsd": [],
67        "@rules_rust//rust/platform:i686-unknown-linux-gnu": [],
68        "@rules_rust//rust/platform:powerpc-unknown-linux-gnu": [],
69        "@rules_rust//rust/platform:riscv32imc-unknown-none-elf": [],
70        "@rules_rust//rust/platform:riscv64gc-unknown-none-elf": [],
71        "@rules_rust//rust/platform:s390x-unknown-linux-gnu": [],
72        "@rules_rust//rust/platform:thumbv7em-none-eabi": [],
73        "@rules_rust//rust/platform:thumbv8m.main-none-eabi": [],
74        "@rules_rust//rust/platform:wasm32-unknown-unknown": [],
75        "@rules_rust//rust/platform:wasm32-wasi": [],
76        "@rules_rust//rust/platform:x86_64-apple-darwin": [],
77        "@rules_rust//rust/platform:x86_64-apple-ios": [],
78        "@rules_rust//rust/platform:x86_64-fuchsia": [],
79        "@rules_rust//rust/platform:x86_64-linux-android": [],
80        "@rules_rust//rust/platform:x86_64-pc-windows-msvc": [],
81        "@rules_rust//rust/platform:x86_64-unknown-freebsd": [],
82        "@rules_rust//rust/platform:x86_64-unknown-linux-gnu": [],
83        "@rules_rust//rust/platform:x86_64-unknown-nixos-gnu": [],
84        "@rules_rust//rust/platform:x86_64-unknown-none": [],
85        "//conditions:default": ["@platforms//:incompatible"],
86    }),
87    version = "0.21.8",
88    deps = [
89        "@rules_rust_wasm_bindgen__log-0.4.19//:log",
90        "@rules_rust_wasm_bindgen__ring-0.17.5//:ring",
91        "@rules_rust_wasm_bindgen__rustls-0.21.8//:build_script_build",
92        "@rules_rust_wasm_bindgen__rustls-webpki-0.101.7//:webpki",
93        "@rules_rust_wasm_bindgen__sct-0.7.1//:sct",
94    ],
95)
96
97cargo_build_script(
98    name = "_bs",
99    srcs = glob(
100        include = ["**/*.rs"],
101        allow_empty = True,
102    ),
103    crate_features = [
104        "default",
105        "log",
106        "logging",
107        "tls12",
108    ],
109    crate_name = "build_script_build",
110    crate_root = "build.rs",
111    data = glob(
112        include = ["**"],
113        allow_empty = True,
114        exclude = [
115            "**/* *",
116            ".tmp_git_root/**/*",
117            "BUILD",
118            "BUILD.bazel",
119            "WORKSPACE",
120            "WORKSPACE.bazel",
121        ],
122    ),
123    edition = "2021",
124    link_deps = [
125        "@rules_rust_wasm_bindgen__ring-0.17.5//:ring",
126    ],
127    pkg_name = "rustls",
128    rustc_flags = [
129        "--cap-lints=allow",
130    ],
131    tags = [
132        "cargo-bazel",
133        "crate-name=rustls",
134        "manual",
135        "noclippy",
136        "norustfmt",
137    ],
138    version = "0.21.8",
139    visibility = ["//visibility:private"],
140)
141
142alias(
143    name = "build_script_build",
144    actual = ":_bs",
145    tags = ["manual"],
146)
147