mirror of
https://github.com/nexus-stc/hyperboria
synced 2025-01-24 17:37:34 +01:00
dd23846059
- [nexus] Switch bot - [bot] Added extra receivers functionality GitOrigin-RevId: 68fc32d3e79ff411758f54f435fe8680fc42dead
72 lines
1.5 KiB
Plaintext
72 lines
1.5 KiB
Plaintext
"""
|
|
@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 "//rules/rust", which limits external
|
|
# visibility to explicit Cargo.toml dependencies.
|
|
"//visibility:public",
|
|
])
|
|
|
|
licenses([
|
|
"notice", # ISC from expression "ISC"
|
|
])
|
|
|
|
# Generated Targets
|
|
|
|
rust_library(
|
|
name = "json5",
|
|
srcs = glob(["**/*.rs"]),
|
|
crate_features = [
|
|
],
|
|
crate_root = "src/lib.rs",
|
|
data = [] + glob(["**/*.pest"]),
|
|
edition = "2018",
|
|
proc_macro_deps = [
|
|
"@raze__pest_derive__2_1_0//:pest_derive",
|
|
],
|
|
rustc_flags = [
|
|
"--cap-lints=allow",
|
|
],
|
|
tags = [
|
|
"cargo-raze",
|
|
"crate-name=json5",
|
|
"manual",
|
|
],
|
|
version = "0.4.1",
|
|
# buildifier: leave-alone
|
|
deps = [
|
|
"@raze__pest__2_1_3//:pest",
|
|
"@raze__serde__1_0_136//:serde",
|
|
],
|
|
)
|
|
|
|
# Unsupported target "adapted_from_js_reference" with type "test" omitted
|
|
|
|
# Unsupported target "common" with type "test" omitted
|
|
|
|
# Unsupported target "de" with type "test" omitted
|
|
|
|
# Unsupported target "examples" with type "test" omitted
|
|
|
|
# Unsupported target "json5_dot_org_example" with type "test" omitted
|
|
|
|
# Unsupported target "ser" with type "test" omitted
|