mirror of
https://github.com/nexus-stc/hyperboria
synced 2024-12-03 00:12:54 +01:00
7389f85ef2
- Move fancy naming to Hub - Adopt translations - Fix long authors list in bot - Support CJK in scitech - Fixed pylon bug with decoding improper unicode ch... GitOrigin-RevId: 74f73c44f749a71cb65dd5ddd3416f32a83d329f
135 lines
3.9 KiB
Plaintext
135 lines
3.9 KiB
Plaintext
"""
|
|
@generated
|
|
cargo-raze crate build file.
|
|
|
|
DO NOT EDIT! Replaced on runs of cargo-raze
|
|
"""
|
|
|
|
# buildifier: disable=load
|
|
load(
|
|
"@io_bazel_rules_rust//rust:rust.bzl",
|
|
"rust_binary",
|
|
"rust_library",
|
|
"rust_test",
|
|
)
|
|
|
|
# buildifier: disable=load
|
|
load("@bazel_skylib//lib:selects.bzl", "selects")
|
|
|
|
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([
|
|
"unencumbered", # Unlicense from expression "Unlicense OR MIT"
|
|
])
|
|
|
|
# Generated Targets
|
|
|
|
# Unsupported target "bench" with type "bench" omitted
|
|
|
|
# Unsupported target "cookbook-read-basic" with type "example" omitted
|
|
|
|
# Unsupported target "cookbook-read-colon" with type "example" omitted
|
|
|
|
# Unsupported target "cookbook-read-no-headers" with type "example" omitted
|
|
|
|
# Unsupported target "cookbook-read-serde" with type "example" omitted
|
|
|
|
# Unsupported target "cookbook-write-basic" with type "example" omitted
|
|
|
|
# Unsupported target "cookbook-write-serde" with type "example" omitted
|
|
|
|
# Unsupported target "tutorial-error-01" with type "example" omitted
|
|
|
|
# Unsupported target "tutorial-error-02" with type "example" omitted
|
|
|
|
# Unsupported target "tutorial-error-03" with type "example" omitted
|
|
|
|
# Unsupported target "tutorial-error-04" with type "example" omitted
|
|
|
|
# Unsupported target "tutorial-perf-alloc-01" with type "example" omitted
|
|
|
|
# Unsupported target "tutorial-perf-alloc-02" with type "example" omitted
|
|
|
|
# Unsupported target "tutorial-perf-alloc-03" with type "example" omitted
|
|
|
|
# Unsupported target "tutorial-perf-core-01" with type "example" omitted
|
|
|
|
# Unsupported target "tutorial-perf-serde-01" with type "example" omitted
|
|
|
|
# Unsupported target "tutorial-perf-serde-02" with type "example" omitted
|
|
|
|
# Unsupported target "tutorial-perf-serde-03" with type "example" omitted
|
|
|
|
# Unsupported target "tutorial-pipeline-pop-01" with type "example" omitted
|
|
|
|
# Unsupported target "tutorial-pipeline-search-01" with type "example" omitted
|
|
|
|
# Unsupported target "tutorial-pipeline-search-02" with type "example" omitted
|
|
|
|
# Unsupported target "tutorial-read-01" with type "example" omitted
|
|
|
|
# Unsupported target "tutorial-read-delimiter-01" with type "example" omitted
|
|
|
|
# Unsupported target "tutorial-read-headers-01" with type "example" omitted
|
|
|
|
# Unsupported target "tutorial-read-headers-02" with type "example" omitted
|
|
|
|
# Unsupported target "tutorial-read-serde-01" with type "example" omitted
|
|
|
|
# Unsupported target "tutorial-read-serde-02" with type "example" omitted
|
|
|
|
# Unsupported target "tutorial-read-serde-03" with type "example" omitted
|
|
|
|
# Unsupported target "tutorial-read-serde-04" with type "example" omitted
|
|
|
|
# Unsupported target "tutorial-read-serde-invalid-01" with type "example" omitted
|
|
|
|
# Unsupported target "tutorial-read-serde-invalid-02" with type "example" omitted
|
|
|
|
# Unsupported target "tutorial-setup-01" with type "example" omitted
|
|
|
|
# Unsupported target "tutorial-write-01" with type "example" omitted
|
|
|
|
# Unsupported target "tutorial-write-02" with type "example" omitted
|
|
|
|
# Unsupported target "tutorial-write-delimiter-01" with type "example" omitted
|
|
|
|
# Unsupported target "tutorial-write-serde-01" with type "example" omitted
|
|
|
|
# Unsupported target "tutorial-write-serde-02" with type "example" omitted
|
|
|
|
rust_library(
|
|
name = "csv",
|
|
srcs = glob(["**/*.rs"]),
|
|
crate_features = [
|
|
],
|
|
crate_root = "src/lib.rs",
|
|
crate_type = "lib",
|
|
data = [],
|
|
edition = "2018",
|
|
rustc_flags = [
|
|
"--cap-lints=allow",
|
|
],
|
|
tags = [
|
|
"cargo-raze",
|
|
"manual",
|
|
],
|
|
version = "1.1.5",
|
|
# buildifier: leave-alone
|
|
deps = [
|
|
"@raze__bstr__0_2_14//:bstr",
|
|
"@raze__csv_core__0_1_10//:csv_core",
|
|
"@raze__itoa__0_4_7//:itoa",
|
|
"@raze__ryu__1_0_5//:ryu",
|
|
"@raze__serde__1_0_118//:serde",
|
|
],
|
|
)
|
|
|
|
# Unsupported target "tests" with type "test" omitted
|