mirror of
https://github.com/nexus-stc/hyperboria
synced 2024-12-03 00:12:54 +01:00
d51e5ab65d
- fix: Translation fixes - fix: Various fixes - feat: PB translations, configuration changes - fix: Bugfixes GitOrigin-RevId: 55f8b148c42a296162fc707c36a5146ca0073b4b
163 lines
4.1 KiB
Plaintext
163 lines
4.1 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([
|
|
"notice", # MIT from expression "MIT OR Apache-2.0"
|
|
])
|
|
|
|
# Generated Targets
|
|
# buildifier: disable=load-on-top
|
|
load(
|
|
"@io_bazel_rules_rust//cargo:cargo_build_script.bzl",
|
|
"cargo_build_script",
|
|
)
|
|
|
|
cargo_build_script(
|
|
name = "httpbis_build_script",
|
|
srcs = glob(["**/*.rs"]),
|
|
build_script_env = {
|
|
},
|
|
crate_features = [
|
|
],
|
|
crate_root = "build.rs",
|
|
data = glob(["**"]),
|
|
edition = "2018",
|
|
rustc_flags = [
|
|
"--cap-lints=allow",
|
|
],
|
|
tags = [
|
|
"cargo-raze",
|
|
"manual",
|
|
],
|
|
version = "0.9.1",
|
|
visibility = ["//visibility:private"],
|
|
deps = [
|
|
] + selects.with_or({
|
|
# cfg(unix)
|
|
(
|
|
"@io_bazel_rules_rust//rust/platform:x86_64-apple-darwin",
|
|
"@io_bazel_rules_rust//rust/platform:x86_64-unknown-linux-gnu",
|
|
): [
|
|
],
|
|
"//conditions:default": [],
|
|
}),
|
|
)
|
|
|
|
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_client_server_loop",
|
|
srcs = glob(["**/*.rs"]),
|
|
aliases = {
|
|
},
|
|
crate_features = [
|
|
],
|
|
crate_root = "src/bin/client_server_loop.rs",
|
|
data = [],
|
|
edition = "2018",
|
|
rustc_flags = [
|
|
"--cap-lints=allow",
|
|
],
|
|
tags = [
|
|
"cargo-raze",
|
|
"manual",
|
|
],
|
|
version = "0.9.1",
|
|
# buildifier: leave-alone
|
|
deps = [
|
|
# Binaries get an implicit dependency on their crate's lib
|
|
":httpbis",
|
|
":httpbis_build_script",
|
|
"@raze__bytes__0_5_6//:bytes",
|
|
"@raze__futures__0_3_10//:futures",
|
|
"@raze__log__0_4_13//:log",
|
|
"@raze__log_ndc__0_2_0//:log_ndc",
|
|
"@raze__net2__0_2_37//:net2",
|
|
"@raze__rand__0_5_6//:rand",
|
|
"@raze__tls_api__0_4_0//:tls_api",
|
|
"@raze__tls_api_stub__0_4_0//:tls_api_stub",
|
|
"@raze__tokio__0_2_24//:tokio",
|
|
"@raze__void__1_0_2//:void",
|
|
] + selects.with_or({
|
|
# cfg(unix)
|
|
(
|
|
"@io_bazel_rules_rust//rust/platform:x86_64-apple-darwin",
|
|
"@io_bazel_rules_rust//rust/platform:x86_64-unknown-linux-gnu",
|
|
): [
|
|
"@raze__unix_socket__0_5_0//:unix_socket",
|
|
],
|
|
"//conditions:default": [],
|
|
}),
|
|
)
|
|
|
|
# Unsupported target "client" with type "example" omitted
|
|
|
|
# Unsupported target "server" with type "example" omitted
|
|
|
|
rust_library(
|
|
name = "httpbis",
|
|
srcs = glob(["**/*.rs"]),
|
|
aliases = {
|
|
},
|
|
crate_features = [
|
|
],
|
|
crate_root = "src/lib.rs",
|
|
crate_type = "lib",
|
|
data = [],
|
|
edition = "2018",
|
|
rustc_flags = [
|
|
"--cap-lints=allow",
|
|
],
|
|
tags = [
|
|
"cargo-raze",
|
|
"manual",
|
|
],
|
|
version = "0.9.1",
|
|
# buildifier: leave-alone
|
|
deps = [
|
|
":httpbis_build_script",
|
|
"@raze__bytes__0_5_6//:bytes",
|
|
"@raze__futures__0_3_10//:futures",
|
|
"@raze__log__0_4_13//:log",
|
|
"@raze__log_ndc__0_2_0//:log_ndc",
|
|
"@raze__net2__0_2_37//:net2",
|
|
"@raze__rand__0_5_6//:rand",
|
|
"@raze__tls_api__0_4_0//:tls_api",
|
|
"@raze__tls_api_stub__0_4_0//:tls_api_stub",
|
|
"@raze__tokio__0_2_24//:tokio",
|
|
"@raze__void__1_0_2//:void",
|
|
] + selects.with_or({
|
|
# cfg(unix)
|
|
(
|
|
"@io_bazel_rules_rust//rust/platform:x86_64-apple-darwin",
|
|
"@io_bazel_rules_rust//rust/platform:x86_64-unknown-linux-gnu",
|
|
): [
|
|
"@raze__unix_socket__0_5_0//:unix_socket",
|
|
],
|
|
"//conditions:default": [],
|
|
}),
|
|
)
|