mirror of
https://github.com/nexus-stc/hyperboria
synced 2024-12-02 16:02:53 +01:00
fff80cd4e7
- fix(nexus): Preparing configs to be published - feat(nexus): Various fixes for opening left sources - fix(nexus): Fine-tune versions 1 internal commit(s) GitOrigin-RevId: 6c834cd3f4f5f18109a159a73503700dac63b0bb
74 lines
1.6 KiB
Plaintext
74 lines
1.6 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:rust.bzl",
|
|
"rust_binary",
|
|
"rust_library",
|
|
"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", # MIT from expression "MIT"
|
|
])
|
|
|
|
# Generated Targets
|
|
|
|
rust_library(
|
|
name = "mio",
|
|
srcs = glob(["**/*.rs"]),
|
|
aliases = {
|
|
},
|
|
crate_features = [
|
|
"default",
|
|
"with-deprecated",
|
|
],
|
|
crate_root = "src/lib.rs",
|
|
crate_type = "lib",
|
|
data = [],
|
|
edition = "2015",
|
|
rustc_flags = [
|
|
"--cap-lints=allow",
|
|
],
|
|
tags = [
|
|
"cargo-raze",
|
|
"manual",
|
|
],
|
|
version = "0.6.23",
|
|
# buildifier: leave-alone
|
|
deps = [
|
|
"@raze__cfg_if__0_1_10//:cfg_if",
|
|
"@raze__iovec__0_1_4//:iovec",
|
|
"@raze__log__0_4_14//:log",
|
|
"@raze__net2__0_2_37//:net2",
|
|
"@raze__slab__0_4_2//:slab",
|
|
] + selects.with_or({
|
|
# cfg(unix)
|
|
(
|
|
"@rules_rust//rust/platform:x86_64-apple-darwin",
|
|
"@rules_rust//rust/platform:x86_64-unknown-linux-gnu",
|
|
): [
|
|
"@raze__libc__0_2_93//:libc",
|
|
],
|
|
"//conditions:default": [],
|
|
}),
|
|
)
|
|
|
|
# Unsupported target "test" with type "test" omitted
|