89bce6d829
Tokio has had to be pinned, because the 1.17 release introduces
a dependency on windows_sys, which fails to build on Windows on
Bazel.
The issue appears to be the build script of a subcrate - it is using
CARGO_MANIFEST_DIR to update the linking path so windows.lib can be
found (it's contained in that crate), but the path is set incorrectly.
dfc25285a2/crates/targets/x86_64_msvc/build.rs
One way we might be able to work around it is to add to the link path
in our own build script.
101 lines
2.1 KiB
Plaintext
Vendored
101 lines
2.1 KiB
Plaintext
Vendored
"""
|
|
@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 "//cargo", which limits external
|
|
# visibility to explicit Cargo.toml dependencies.
|
|
"//visibility:public",
|
|
])
|
|
|
|
licenses([
|
|
"notice", # MIT from expression "MIT"
|
|
])
|
|
|
|
# Generated Targets
|
|
# buildifier: disable=out-of-order-load
|
|
# buildifier: disable=load-on-top
|
|
load(
|
|
"@rules_rust//cargo:cargo_build_script.bzl",
|
|
"cargo_build_script",
|
|
)
|
|
|
|
cargo_build_script(
|
|
name = "generic_array_build_script",
|
|
srcs = glob(["**/*.rs"]),
|
|
build_script_env = {
|
|
},
|
|
crate_features = [
|
|
"more_lengths",
|
|
],
|
|
crate_root = "build.rs",
|
|
data = glob(["**"]),
|
|
edition = "2015",
|
|
rustc_flags = [
|
|
"--cap-lints=allow",
|
|
],
|
|
tags = [
|
|
"cargo-raze",
|
|
"manual",
|
|
],
|
|
version = "0.14.5",
|
|
visibility = ["//visibility:private"],
|
|
deps = [
|
|
"@raze__version_check__0_9_4//:version_check",
|
|
],
|
|
)
|
|
|
|
rust_library(
|
|
name = "generic_array",
|
|
srcs = glob(["**/*.rs"]),
|
|
crate_features = [
|
|
"more_lengths",
|
|
],
|
|
crate_root = "src/lib.rs",
|
|
data = [],
|
|
edition = "2015",
|
|
rustc_flags = [
|
|
"--cap-lints=allow",
|
|
],
|
|
tags = [
|
|
"cargo-raze",
|
|
"crate-name=generic_array",
|
|
"manual",
|
|
],
|
|
version = "0.14.5",
|
|
# buildifier: leave-alone
|
|
deps = [
|
|
":generic_array_build_script",
|
|
"@raze__typenum__1_15_0//:typenum",
|
|
],
|
|
)
|
|
|
|
# Unsupported target "arr" with type "test" omitted
|
|
|
|
# Unsupported target "generics" with type "test" omitted
|
|
|
|
# Unsupported target "hex" with type "test" omitted
|
|
|
|
# Unsupported target "import_name" with type "test" omitted
|
|
|
|
# Unsupported target "iter" with type "test" omitted
|
|
|
|
# Unsupported target "mod" with type "test" omitted
|