2020-11-01 05:26:58 +01:00
|
|
|
"""
|
|
|
|
@generated
|
|
|
|
cargo-raze crate build file.
|
|
|
|
|
|
|
|
DO NOT EDIT! Replaced on runs of cargo-raze
|
|
|
|
"""
|
|
|
|
|
2021-03-27 09:39:02 +01:00
|
|
|
# buildifier: disable=load
|
|
|
|
load("@bazel_skylib//lib:selects.bzl", "selects")
|
|
|
|
|
2020-11-01 05:26:58 +01:00
|
|
|
# buildifier: disable=load
|
|
|
|
load(
|
2021-10-26 00:16:40 +02:00
|
|
|
"@rules_rust//rust:defs.bzl",
|
2020-11-01 05:26:58 +01:00
|
|
|
"rust_binary",
|
|
|
|
"rust_library",
|
2021-10-26 00:16:40 +02:00
|
|
|
"rust_proc_macro",
|
2020-11-01 05:26:58 +01:00
|
|
|
"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([
|
2020-11-15 05:02:53 +01:00
|
|
|
"reciprocal", # MPL-2.0 from expression "MPL-2.0"
|
2020-11-01 05:26:58 +01:00
|
|
|
])
|
|
|
|
|
2020-11-15 05:02:53 +01:00
|
|
|
# Generated Targets
|
2020-11-01 05:26:58 +01:00
|
|
|
|
2020-11-15 05:02:53 +01:00
|
|
|
rust_binary(
|
|
|
|
# Prefix bin name to disambiguate from (probable) collision with lib name
|
|
|
|
# N.B.: The exact form of this is subject to change.
|
|
|
|
name = "cargo_bin_process_cert",
|
2020-11-03 01:26:27 +01:00
|
|
|
srcs = glob(["**/*.rs"]),
|
2020-11-10 00:47:24 +01:00
|
|
|
crate_features = [
|
|
|
|
],
|
2020-11-15 05:02:53 +01:00
|
|
|
crate_root = "src/bin/process_cert.rs",
|
2020-12-15 11:28:10 +01:00
|
|
|
data = [],
|
2020-11-15 05:02:53 +01:00
|
|
|
edition = "2018",
|
2020-11-01 05:26:58 +01:00
|
|
|
rustc_flags = [
|
|
|
|
"--cap-lints=allow",
|
|
|
|
],
|
|
|
|
tags = [
|
|
|
|
"cargo-raze",
|
2022-01-15 05:33:53 +01:00
|
|
|
"crate-name=process_cert",
|
2020-11-01 05:26:58 +01:00
|
|
|
"manual",
|
|
|
|
],
|
2021-04-27 14:18:12 +02:00
|
|
|
version = "0.21.1",
|
2020-11-15 05:02:53 +01:00
|
|
|
# buildifier: leave-alone
|
2020-11-10 00:47:24 +01:00
|
|
|
deps = [
|
2020-11-15 05:02:53 +01:00
|
|
|
":webpki_roots",
|
2020-12-09 06:34:43 +01:00
|
|
|
"@raze__webpki__0_21_4//:webpki",
|
2020-11-10 00:47:24 +01:00
|
|
|
],
|
2020-11-01 05:26:58 +01:00
|
|
|
)
|
|
|
|
|
|
|
|
rust_library(
|
2020-11-15 05:02:53 +01:00
|
|
|
name = "webpki_roots",
|
2020-11-01 05:26:58 +01:00
|
|
|
srcs = glob(["**/*.rs"]),
|
2020-11-10 00:47:24 +01:00
|
|
|
crate_features = [
|
|
|
|
],
|
2020-11-01 05:26:58 +01:00
|
|
|
crate_root = "src/lib.rs",
|
2020-12-15 11:28:10 +01:00
|
|
|
data = [],
|
2020-11-15 05:02:53 +01:00
|
|
|
edition = "2018",
|
2020-11-01 05:26:58 +01:00
|
|
|
rustc_flags = [
|
|
|
|
"--cap-lints=allow",
|
|
|
|
],
|
|
|
|
tags = [
|
|
|
|
"cargo-raze",
|
2022-01-15 05:33:53 +01:00
|
|
|
"crate-name=webpki-roots",
|
2020-11-01 05:26:58 +01:00
|
|
|
"manual",
|
|
|
|
],
|
2021-04-27 14:18:12 +02:00
|
|
|
version = "0.21.1",
|
2020-11-10 00:47:24 +01:00
|
|
|
# buildifier: leave-alone
|
|
|
|
deps = [
|
2020-12-09 06:34:43 +01:00
|
|
|
"@raze__webpki__0_21_4//:webpki",
|
2020-11-01 05:26:58 +01:00
|
|
|
],
|
|
|
|
)
|