anki/cargo/remote/BUILD.openssl-0.10.38.bazel

96 lines
2.1 KiB
Plaintext
Raw Normal View History

"""
@generated
cargo-raze crate build file.
DO NOT EDIT! Replaced on runs of cargo-raze
"""
# buildifier: disable=load
load("@bazel_skylib//lib:selects.bzl", "selects")
# buildifier: disable=load
load(
"@rules_rust//rust:defs.bzl",
"rust_binary",
"rust_library",
"rust_proc_macro",
"rust_test",
)
package(default_visibility = [
# Public for visibility by "@raze__crate__version//" targets.
#
# Prefer access through "//cargo", which limits external
# visibility to explicit Cargo.toml dependencies.
"//visibility:public",
])
licenses([
"notice", # Apache-2.0 from expression "Apache-2.0"
])
2020-11-24 07:57:37 +01:00
# Generated Targets
# buildifier: disable=out-of-order-load
2020-11-24 07:57:37 +01:00
# buildifier: disable=load-on-top
2020-11-03 01:26:27 +01:00
load(
"@rules_rust//cargo:cargo_build_script.bzl",
2020-11-03 01:26:27 +01:00
"cargo_build_script",
)
2020-11-03 01:26:27 +01:00
cargo_build_script(
name = "openssl_build_script",
2020-11-03 01:26:27 +01:00
srcs = glob(["**/*.rs"]),
build_script_env = {
},
crate_features = [
],
2020-11-03 01:26:27 +01:00
crate_root = "build.rs",
data = glob(["**"]),
2021-03-27 05:47:16 +01:00
edition = "2018",
rustc_flags = [
"--cap-lints=allow",
],
tags = [
"cargo-raze",
"manual",
],
2021-11-18 11:54:00 +01:00
version = "0.10.38",
2020-11-03 01:26:27 +01:00
visibility = ["//visibility:private"],
deps = [
2021-11-18 11:54:00 +01:00
"@raze__openssl_sys__0_9_71//:openssl_sys",
],
)
# Unsupported target "mk_certs" with type "example" omitted
rust_library(
name = "openssl",
srcs = glob(["**/*.rs"]),
2021-03-27 05:47:16 +01:00
aliases = {
2021-11-18 11:54:00 +01:00
"@raze__openssl_sys__0_9_71//:openssl_sys": "ffi",
2021-03-27 05:47:16 +01:00
},
crate_features = [
],
crate_root = "src/lib.rs",
2020-12-15 11:28:10 +01:00
data = [],
2021-03-27 05:47:16 +01:00
edition = "2018",
rustc_flags = [
"--cap-lints=allow",
],
tags = [
"cargo-raze",
"manual",
],
2021-11-18 11:54:00 +01:00
version = "0.10.38",
# buildifier: leave-alone
deps = [
":openssl_build_script",
2021-10-02 12:42:03 +02:00
"@raze__bitflags__1_3_2//:bitflags",
2020-12-15 08:10:25 +01:00
"@raze__cfg_if__1_0_0//:cfg_if",
"@raze__foreign_types__0_3_2//:foreign_types",
2021-12-03 11:04:47 +01:00
"@raze__libc__0_2_108//:libc",
2021-06-16 08:10:57 +02:00
"@raze__once_cell__1_8_0//:once_cell",
2021-11-18 11:54:00 +01:00
"@raze__openssl_sys__0_9_71//:openssl_sys",
],
)