blob: 4900b8ce5e7919928434db01c82210d8da3ff790 [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 @//wasm_bindgen/3rdparty:crates_vendor
7###############################################################################
8
9load("@rules_rust//rust:defs.bzl", "rust_library")
10
11package(default_visibility = ["//visibility:public"])
12
13# licenses([
14# "TODO", # MIT
15# ])
16
17rust_library(
18 name = "openssl_sys",
19 srcs = glob(["**/*.rs"]),
20 compile_data = glob(
21 include = ["**"],
22 exclude = [
23 "**/* *",
24 ".tmp_git_root/**/*",
25 "BUILD",
26 "BUILD.bazel",
27 "WORKSPACE",
28 "WORKSPACE.bazel",
29 ],
30 ),
31 crate_root = "src/lib.rs",
32 edition = "2015",
33 rustc_flags = [
34 "--cap-lints=allow",
35 "--cfg=ossl101",
36 "--cfg=ossl102",
37 "--cfg=ossl102f",
38 "--cfg=ossl102h",
39 "--cfg=ossl110",
40 "--cfg=ossl110f",
41 "--cfg=ossl110g",
42 "--cfg=ossl111",
43 "--cfg=ossl111b",
44 "-l",
45 "dylib=ssl",
46 "-l",
47 "dylib=crypto",
48 ],
49 tags = [
50 "cargo-bazel",
51 "crate-name=openssl-sys",
52 "manual",
53 "noclippy",
54 "norustfmt",
55 ],
56 target_compatible_with = select({
57 "@rules_rust//rust/platform:aarch64-apple-darwin": [],
58 "@rules_rust//rust/platform:aarch64-apple-ios": [],
59 "@rules_rust//rust/platform:aarch64-apple-ios-sim": [],
60 "@rules_rust//rust/platform:aarch64-fuchsia": [],
61 "@rules_rust//rust/platform:aarch64-linux-android": [],
62 "@rules_rust//rust/platform:aarch64-pc-windows-msvc": [],
63 "@rules_rust//rust/platform:aarch64-unknown-linux-gnu": [],
64 "@rules_rust//rust/platform:arm-unknown-linux-gnueabi": [],
65 "@rules_rust//rust/platform:armv7-linux-androideabi": [],
66 "@rules_rust//rust/platform:armv7-unknown-linux-gnueabi": [],
67 "@rules_rust//rust/platform:i686-apple-darwin": [],
68 "@rules_rust//rust/platform:i686-linux-android": [],
69 "@rules_rust//rust/platform:i686-pc-windows-msvc": [],
70 "@rules_rust//rust/platform:i686-unknown-freebsd": [],
71 "@rules_rust//rust/platform:i686-unknown-linux-gnu": [],
72 "@rules_rust//rust/platform:powerpc-unknown-linux-gnu": [],
73 "@rules_rust//rust/platform:riscv32imc-unknown-none-elf": [],
74 "@rules_rust//rust/platform:riscv64gc-unknown-none-elf": [],
75 "@rules_rust//rust/platform:s390x-unknown-linux-gnu": [],
76 "@rules_rust//rust/platform:thumbv7em-none-eabi": [],
77 "@rules_rust//rust/platform:thumbv8m.main-none-eabi": [],
78 "@rules_rust//rust/platform:wasm32-unknown-unknown": [],
79 "@rules_rust//rust/platform:wasm32-wasi": [],
80 "@rules_rust//rust/platform:x86_64-apple-darwin": [],
81 "@rules_rust//rust/platform:x86_64-apple-ios": [],
82 "@rules_rust//rust/platform:x86_64-fuchsia": [],
83 "@rules_rust//rust/platform:x86_64-linux-android": [],
84 "@rules_rust//rust/platform:x86_64-pc-windows-msvc": [],
85 "@rules_rust//rust/platform:x86_64-unknown-freebsd": [],
86 "@rules_rust//rust/platform:x86_64-unknown-linux-gnu": [],
87 "@rules_rust//rust/platform:x86_64-unknown-none": [],
88 "//conditions:default": ["@platforms//:incompatible"],
89 }),
90 version = "0.9.80",
91 deps = [
92 "@rules_rust_wasm_bindgen__libc-0.2.139//:libc",
93 ],
94)