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([
|
|
|
|
"notice", # MIT from expression "MIT OR Apache-2.0"
|
|
|
|
])
|
|
|
|
|
2020-11-24 07:57:37 +01:00
|
|
|
# Generated Targets
|
2021-03-27 09:39:02 +01:00
|
|
|
# buildifier: disable=out-of-order-load
|
2020-11-24 07:57:37 +01:00
|
|
|
# buildifier: disable=load-on-top
|
2020-11-01 05:26:58 +01:00
|
|
|
load(
|
2021-03-27 09:39:02 +01:00
|
|
|
"@rules_rust//cargo:cargo_build_script.bzl",
|
2020-11-01 05:26:58 +01:00
|
|
|
"cargo_build_script",
|
|
|
|
)
|
|
|
|
|
|
|
|
cargo_build_script(
|
2021-02-06 04:42:38 +01:00
|
|
|
name = "markup5ever_build_script",
|
2020-11-01 05:26:58 +01:00
|
|
|
srcs = glob(["**/*.rs"]),
|
2020-11-10 00:47:24 +01:00
|
|
|
build_script_env = {
|
|
|
|
},
|
|
|
|
crate_features = [
|
|
|
|
],
|
2020-11-01 05:26:58 +01:00
|
|
|
crate_root = "build.rs",
|
2020-11-10 00:47:24 +01:00
|
|
|
data = glob(["**"]),
|
2020-11-01 05:26:58 +01:00
|
|
|
edition = "2018",
|
|
|
|
rustc_flags = [
|
|
|
|
"--cap-lints=allow",
|
|
|
|
],
|
|
|
|
tags = [
|
|
|
|
"cargo-raze",
|
|
|
|
"manual",
|
|
|
|
],
|
2021-04-27 14:18:12 +02:00
|
|
|
version = "0.10.1",
|
2020-11-01 05:26:58 +01:00
|
|
|
visibility = ["//visibility:private"],
|
2020-11-10 00:47:24 +01:00
|
|
|
deps = [
|
2021-02-06 04:42:38 +01:00
|
|
|
"@raze__phf_codegen__0_8_0//:phf_codegen",
|
|
|
|
"@raze__string_cache_codegen__0_5_1//:string_cache_codegen",
|
2020-11-10 00:47:24 +01:00
|
|
|
],
|
2020-11-01 05:26:58 +01:00
|
|
|
)
|
|
|
|
|
|
|
|
rust_library(
|
2021-02-06 04:42:38 +01:00
|
|
|
name = "markup5ever",
|
2020-11-01 05:26:58 +01:00
|
|
|
srcs = glob(["**/*.rs"]),
|
2020-11-10 00:47:24 +01:00
|
|
|
crate_features = [
|
|
|
|
],
|
2021-02-06 04:42:38 +01:00
|
|
|
crate_root = "lib.rs",
|
2020-12-15 11:28:10 +01:00
|
|
|
data = [],
|
2020-11-01 05:26:58 +01:00
|
|
|
edition = "2018",
|
|
|
|
rustc_flags = [
|
|
|
|
"--cap-lints=allow",
|
|
|
|
],
|
|
|
|
tags = [
|
|
|
|
"cargo-raze",
|
2022-01-15 05:33:53 +01:00
|
|
|
"crate-name=markup5ever",
|
2020-11-01 05:26:58 +01:00
|
|
|
"manual",
|
|
|
|
],
|
2021-04-27 14:18:12 +02:00
|
|
|
version = "0.10.1",
|
2020-11-10 00:47:24 +01:00
|
|
|
# buildifier: leave-alone
|
|
|
|
deps = [
|
2021-02-06 04:42:38 +01:00
|
|
|
":markup5ever_build_script",
|
|
|
|
"@raze__log__0_4_14//:log",
|
|
|
|
"@raze__phf__0_8_0//:phf",
|
2022-02-25 07:30:59 +01:00
|
|
|
"@raze__string_cache__0_8_3//:string_cache",
|
2021-02-06 04:42:38 +01:00
|
|
|
"@raze__tendril__0_4_2//:tendril",
|
2020-11-01 05:26:58 +01:00
|
|
|
],
|
|
|
|
)
|