73 lines
1.7 KiB
Plaintext
Vendored
73 lines
1.7 KiB
Plaintext
Vendored
"""
|
|
@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", # MIT from expression "MIT OR Apache-2.0"
|
|
])
|
|
|
|
# Generated Targets
|
|
|
|
rust_library(
|
|
name = "linkcheck",
|
|
srcs = glob(["**/*.rs"]),
|
|
crate_features = [
|
|
"default",
|
|
"serde",
|
|
"serde-1",
|
|
],
|
|
crate_root = "src/lib.rs",
|
|
data = [],
|
|
edition = "2018",
|
|
rustc_flags = [
|
|
"--cap-lints=allow",
|
|
],
|
|
tags = [
|
|
"cargo-raze",
|
|
"crate-name=linkcheck",
|
|
"manual",
|
|
],
|
|
version = "0.4.1-alpha.0",
|
|
# buildifier: leave-alone
|
|
deps = [
|
|
"@raze__bytes__1_2_1//:bytes",
|
|
"@raze__codespan__0_11_1//:codespan",
|
|
"@raze__dunce__1_0_2//:dunce",
|
|
"@raze__futures__0_3_24//:futures",
|
|
"@raze__http__0_2_8//:http",
|
|
"@raze__kuchiki__0_8_1//:kuchiki",
|
|
"@raze__lazy_static__1_4_0//:lazy_static",
|
|
"@raze__linkify__0_5_0//:linkify",
|
|
"@raze__log__0_4_17//:log",
|
|
"@raze__pulldown_cmark__0_8_0//:pulldown_cmark",
|
|
"@raze__regex__1_6_0//:regex",
|
|
"@raze__reqwest__0_11_3//:reqwest",
|
|
"@raze__serde__1_0_145//:serde",
|
|
"@raze__thiserror__1_0_35//:thiserror",
|
|
"@raze__url__2_3_1//:url",
|
|
],
|
|
)
|