initial Bazel conversion
Running and testing should be working on the three platforms, but there's still a fair bit that needs to be done: - Wheel building + testing in a venv still needs to be implemented. - Python requirements still need to be compiled with piptool and pinned; need to compile on all platforms then merge - Cargo deps in cargo/ and rslib/ need to be cleaned up, and ideally unified into one place - Currently using rustls to work around openssl compilation issues on Linux, but this will break corporate proxies with custom SSL authorities; need to conditionally use openssl or use https://github.com/seanmonstar/reqwest/pull/1058 - Makefiles and docs still need cleaning up - It may make sense to reparent ts/* to the top level, as we don't nest the other modules under a specific language. - rspy and pylib must always be updated in lock-step, so merging rspy into pylib as a private module would simplify things. - Merging desktop-ftl and mobile-ftl into the core ftl would make managing and updating translations easier. - Obsolete scripts need removing. - And probably more.
This commit is contained in:
parent
6b0b3fcd6a
commit
aea0a6fcc6
1
.bazelignore
Normal file
1
.bazelignore
Normal file
@ -0,0 +1 @@
|
||||
ts/node_modules
|
28
.bazelrc
Normal file
28
.bazelrc
Normal file
@ -0,0 +1,28 @@
|
||||
common --enable_platform_specific_config
|
||||
common --experimental_repository_cache_hardlinks
|
||||
#common --symlink_prefix=.bazel/
|
||||
#common --experimental_no_product_name_out_symlink
|
||||
|
||||
# specify python path on Windows for pyo3 compile
|
||||
build:windows --action_env="PYTHON_SYS_EXECUTABLE=c:\\python\\python.exe"
|
||||
|
||||
# runfiles are off by default on Windows, and we need them
|
||||
build --enable_runfiles
|
||||
|
||||
# skip the slow zip step on Windows, as we have symlinks
|
||||
build:windows --build_python_zip=false
|
||||
|
||||
# record version/build hash
|
||||
build --workspace_status_command='bash ./scripts/status.sh'
|
||||
|
||||
# run clippy when compiling rust in test mode
|
||||
test --aspects=@io_bazel_rules_rust//rust:rust.bzl%rust_clippy_aspect --output_groups=clippy_checks
|
||||
|
||||
# print output when test fails
|
||||
test --test_output=errors
|
||||
|
||||
# don't add empty __init__.py files
|
||||
build --incompatible_default_to_explicit_init_py
|
||||
|
||||
# faster for .ui file generation, but may sacrifice correctness
|
||||
#--genrule_strategy=standalone
|
1
.bazelversion
Normal file
1
.bazelversion
Normal file
@ -0,0 +1 @@
|
||||
3.7.0
|
1
.gitignore
vendored
1
.gitignore
vendored
@ -11,3 +11,4 @@ pyenv
|
||||
.mypy_cache
|
||||
__pycache__
|
||||
anki.prof
|
||||
/bazel-*
|
||||
|
13
BUILD.bazel
Normal file
13
BUILD.bazel
Normal file
@ -0,0 +1,13 @@
|
||||
genrule(
|
||||
name = "buildinfo_gen",
|
||||
outs = ["buildinfo.txt"],
|
||||
cmd = "grep STABLE_ bazel-out/stable-status.txt > $@",
|
||||
stamp = 1,
|
||||
visibility = ["//visibility:public"],
|
||||
)
|
||||
|
||||
alias(
|
||||
name = "tsconfig.json",
|
||||
actual = "//ts:tsconfig.json",
|
||||
visibility = ["//visibility:public"],
|
||||
)
|
@ -1,10 +1,10 @@
|
||||
This repo contains all the code for the computer version of Anki.
|
||||
# Anki
|
||||
|
||||
This repo contains the source code for the computer version of Anki.
|
||||
|
||||
If you'd like to try development builds of Anki but don't feel comfortable
|
||||
building the code, please see https://betas.ankiweb.net/#/
|
||||
|
||||
For more information on building, please see [README.development](README.development).
|
||||
|
||||
If you'd like to contribute code, please see [README.contributing](README.contributing).
|
||||
For more information on building, please see [Development](./docs/development.md).
|
||||
|
||||
[![](../../workflows/Checks/badge.svg)](../../actions)
|
||||
|
22
WORKSPACE
Normal file
22
WORKSPACE
Normal file
@ -0,0 +1,22 @@
|
||||
workspace(
|
||||
name = "anki",
|
||||
managed_directories = {"@npm": [
|
||||
"ts/node_modules",
|
||||
]},
|
||||
)
|
||||
|
||||
load(":packages.bzl", "register_deps")
|
||||
|
||||
register_deps()
|
||||
|
||||
load(":setup.bzl", "setup_deps")
|
||||
|
||||
setup_deps()
|
||||
|
||||
load("@py_deps//:requirements.bzl", "pip_install")
|
||||
|
||||
pip_install()
|
||||
|
||||
load("@npm//@bazel/labs:package.bzl", "npm_bazel_labs_dependencies")
|
||||
|
||||
npm_bazel_labs_dependencies()
|
2
bazel.bat
Executable file
2
bazel.bat
Executable file
@ -0,0 +1,2 @@
|
||||
@set PATH=c:\msys64\usr\bin;c:\python;%PATH%
|
||||
\bazel\bazel --output_user_root=\bazel\anki %*
|
7
bin.py
Normal file
7
bin.py
Normal file
@ -0,0 +1,7 @@
|
||||
print("hello world!")
|
||||
import sys
|
||||
print(sys.version)
|
||||
import anki
|
||||
import os
|
||||
print(os.listdir("."))
|
||||
print(anki.buildinfo.version)
|
481
cargo/BUILD.bazel
Normal file
481
cargo/BUILD.bazel
Normal file
@ -0,0 +1,481 @@
|
||||
"""
|
||||
@generated
|
||||
cargo-raze workspace build file.
|
||||
|
||||
DO NOT EDIT! Replaced on runs of cargo-raze
|
||||
"""
|
||||
|
||||
package(default_visibility = ["//visibility:public"])
|
||||
|
||||
licenses([
|
||||
"notice", # See individual crates for specific licenses
|
||||
])
|
||||
|
||||
# Aliased targets
|
||||
alias(
|
||||
name = "askama",
|
||||
actual = "@raze__askama__0_10_3//:askama",
|
||||
tags = [
|
||||
"cargo-raze",
|
||||
"manual",
|
||||
],
|
||||
)
|
||||
|
||||
alias(
|
||||
name = "async_compression",
|
||||
actual = "@raze__async_compression__0_3_5//:async_compression",
|
||||
tags = [
|
||||
"cargo-raze",
|
||||
"manual",
|
||||
],
|
||||
)
|
||||
|
||||
alias(
|
||||
name = "blake3",
|
||||
actual = "@raze__blake3__0_3_7//:blake3",
|
||||
tags = [
|
||||
"cargo-raze",
|
||||
"manual",
|
||||
],
|
||||
)
|
||||
|
||||
alias(
|
||||
name = "bytes",
|
||||
actual = "@raze__bytes__0_5_6//:bytes",
|
||||
tags = [
|
||||
"cargo-raze",
|
||||
"manual",
|
||||
],
|
||||
)
|
||||
|
||||
alias(
|
||||
name = "chrono",
|
||||
actual = "@raze__chrono__0_4_19//:chrono",
|
||||
tags = [
|
||||
"cargo-raze",
|
||||
"manual",
|
||||
],
|
||||
)
|
||||
|
||||
alias(
|
||||
name = "coarsetime",
|
||||
actual = "@raze__coarsetime__0_1_14//:coarsetime",
|
||||
tags = [
|
||||
"cargo-raze",
|
||||
"manual",
|
||||
],
|
||||
)
|
||||
|
||||
alias(
|
||||
name = "env_logger",
|
||||
actual = "@raze__env_logger__0_7_1//:env_logger",
|
||||
tags = [
|
||||
"cargo-raze",
|
||||
"manual",
|
||||
],
|
||||
)
|
||||
|
||||
alias(
|
||||
name = "failure",
|
||||
actual = "@raze__failure__0_1_8//:failure",
|
||||
tags = [
|
||||
"cargo-raze",
|
||||
"manual",
|
||||
],
|
||||
)
|
||||
|
||||
alias(
|
||||
name = "flate2",
|
||||
actual = "@raze__flate2__1_0_14//:flate2",
|
||||
tags = [
|
||||
"cargo-raze",
|
||||
"manual",
|
||||
],
|
||||
)
|
||||
|
||||
alias(
|
||||
name = "fluent",
|
||||
actual = "@raze__fluent__0_10_2//:fluent",
|
||||
tags = [
|
||||
"cargo-raze",
|
||||
"manual",
|
||||
],
|
||||
)
|
||||
|
||||
alias(
|
||||
name = "fluent_syntax",
|
||||
actual = "@raze__fluent_syntax__0_9_3//:fluent_syntax",
|
||||
tags = [
|
||||
"cargo-raze",
|
||||
"manual",
|
||||
],
|
||||
)
|
||||
|
||||
alias(
|
||||
name = "futures",
|
||||
actual = "@raze__futures__0_3_6//:futures",
|
||||
tags = [
|
||||
"cargo-raze",
|
||||
"manual",
|
||||
],
|
||||
)
|
||||
|
||||
alias(
|
||||
name = "hex",
|
||||
actual = "@raze__hex__0_4_2//:hex",
|
||||
tags = [
|
||||
"cargo-raze",
|
||||
"manual",
|
||||
],
|
||||
)
|
||||
|
||||
alias(
|
||||
name = "htmlescape",
|
||||
actual = "@raze__htmlescape__0_3_1//:htmlescape",
|
||||
tags = [
|
||||
"cargo-raze",
|
||||
"manual",
|
||||
],
|
||||
)
|
||||
|
||||
alias(
|
||||
name = "hyper",
|
||||
actual = "@raze__hyper__0_13_8//:hyper",
|
||||
tags = [
|
||||
"cargo-raze",
|
||||
"manual",
|
||||
],
|
||||
)
|
||||
|
||||
alias(
|
||||
name = "intl_memoizer",
|
||||
actual = "@raze__intl_memoizer__0_3_0//:intl_memoizer",
|
||||
tags = [
|
||||
"cargo-raze",
|
||||
"manual",
|
||||
],
|
||||
)
|
||||
|
||||
alias(
|
||||
name = "itertools",
|
||||
actual = "@raze__itertools__0_9_0//:itertools",
|
||||
tags = [
|
||||
"cargo-raze",
|
||||
"manual",
|
||||
],
|
||||
)
|
||||
|
||||
alias(
|
||||
name = "lazy_static",
|
||||
actual = "@raze__lazy_static__1_4_0//:lazy_static",
|
||||
tags = [
|
||||
"cargo-raze",
|
||||
"manual",
|
||||
],
|
||||
)
|
||||
|
||||
alias(
|
||||
name = "log",
|
||||
actual = "@raze__log__0_4_11//:log",
|
||||
tags = [
|
||||
"cargo-raze",
|
||||
"manual",
|
||||
],
|
||||
)
|
||||
|
||||
alias(
|
||||
name = "nom",
|
||||
actual = "@raze__nom__5_1_2//:nom",
|
||||
tags = [
|
||||
"cargo-raze",
|
||||
"manual",
|
||||
],
|
||||
)
|
||||
|
||||
alias(
|
||||
name = "num_format",
|
||||
actual = "@raze__num_format__0_4_0//:num_format",
|
||||
tags = [
|
||||
"cargo-raze",
|
||||
"manual",
|
||||
],
|
||||
)
|
||||
|
||||
alias(
|
||||
name = "num_integer",
|
||||
actual = "@raze__num_integer__0_1_43//:num_integer",
|
||||
tags = [
|
||||
"cargo-raze",
|
||||
"manual",
|
||||
],
|
||||
)
|
||||
|
||||
alias(
|
||||
name = "num_enum",
|
||||
actual = "@raze__num_enum__0_5_1//:num_enum",
|
||||
tags = [
|
||||
"cargo-raze",
|
||||
"manual",
|
||||
],
|
||||
)
|
||||
|
||||
alias(
|
||||
name = "once_cell",
|
||||
actual = "@raze__once_cell__1_4_1//:once_cell",
|
||||
tags = [
|
||||
"cargo-raze",
|
||||
"manual",
|
||||
],
|
||||
)
|
||||
|
||||
alias(
|
||||
name = "pin_project",
|
||||
actual = "@raze__pin_project__0_4_27//:pin_project",
|
||||
tags = [
|
||||
"cargo-raze",
|
||||
"manual",
|
||||
],
|
||||
)
|
||||
|
||||
alias(
|
||||
name = "prost",
|
||||
actual = "@raze__prost__0_6_1//:prost",
|
||||
tags = [
|
||||
"cargo-raze",
|
||||
"manual",
|
||||
],
|
||||
)
|
||||
|
||||
alias(
|
||||
name = "prost_build",
|
||||
actual = "@raze__prost_build__0_6_1//:prost_build",
|
||||
tags = [
|
||||
"cargo-raze",
|
||||
"manual",
|
||||
],
|
||||
)
|
||||
|
||||
alias(
|
||||
name = "pyo3",
|
||||
actual = "@raze__pyo3__0_11_1//:pyo3",
|
||||
tags = [
|
||||
"cargo-raze",
|
||||
"manual",
|
||||
],
|
||||
)
|
||||
|
||||
alias(
|
||||
name = "rand",
|
||||
actual = "@raze__rand__0_7_3//:rand",
|
||||
tags = [
|
||||
"cargo-raze",
|
||||
"manual",
|
||||
],
|
||||
)
|
||||
|
||||
alias(
|
||||
name = "regex",
|
||||
actual = "@raze__regex__1_4_1//:regex",
|
||||
tags = [
|
||||
"cargo-raze",
|
||||
"manual",
|
||||
],
|
||||
)
|
||||
|
||||
alias(
|
||||
name = "reqwest",
|
||||
actual = "@raze__reqwest__0_10_4//:reqwest",
|
||||
tags = [
|
||||
"cargo-raze",
|
||||
"manual",
|
||||
],
|
||||
)
|
||||
|
||||
alias(
|
||||
name = "rusqlite",
|
||||
actual = "@raze__rusqlite__0_23_1//:rusqlite",
|
||||
tags = [
|
||||
"cargo-raze",
|
||||
"manual",
|
||||
],
|
||||
)
|
||||
|
||||
alias(
|
||||
name = "scopeguard",
|
||||
actual = "@raze__scopeguard__1_1_0//:scopeguard",
|
||||
tags = [
|
||||
"cargo-raze",
|
||||
"manual",
|
||||
],
|
||||
)
|
||||
|
||||
alias(
|
||||
name = "serde",
|
||||
actual = "@raze__serde__1_0_117//:serde",
|
||||
tags = [
|
||||
"cargo-raze",
|
||||
"manual",
|
||||
],
|
||||
)
|
||||
|
||||
alias(
|
||||
name = "serde_aux",
|
||||
actual = "@raze__serde_aux__0_6_1//:serde_aux",
|
||||
tags = [
|
||||
"cargo-raze",
|
||||
"manual",
|
||||
],
|
||||
)
|
||||
|
||||
alias(
|
||||
name = "serde_derive",
|
||||
actual = "@raze__serde_derive__1_0_117//:serde_derive",
|
||||
tags = [
|
||||
"cargo-raze",
|
||||
"manual",
|
||||
],
|
||||
)
|
||||
|
||||
alias(
|
||||
name = "serde_json",
|
||||
actual = "@raze__serde_json__1_0_59//:serde_json",
|
||||
tags = [
|
||||
"cargo-raze",
|
||||
"manual",
|
||||
],
|
||||
)
|
||||
|
||||
alias(
|
||||
name = "serde_repr",
|
||||
actual = "@raze__serde_repr__0_1_6//:serde_repr",
|
||||
tags = [
|
||||
"cargo-raze",
|
||||
"manual",
|
||||
],
|
||||
)
|
||||
|
||||
alias(
|
||||
name = "serde_tuple",
|
||||
actual = "@raze__serde_tuple__0_5_0//:serde_tuple",
|
||||
tags = [
|
||||
"cargo-raze",
|
||||
"manual",
|
||||
],
|
||||
)
|
||||
|
||||
alias(
|
||||
name = "sha1",
|
||||
actual = "@raze__sha1__0_6_0//:sha1",
|
||||
tags = [
|
||||
"cargo-raze",
|
||||
"manual",
|
||||
],
|
||||
)
|
||||
|
||||
alias(
|
||||
name = "slog",
|
||||
actual = "@raze__slog__2_5_2//:slog",
|
||||
tags = [
|
||||
"cargo-raze",
|
||||
"manual",
|
||||
],
|
||||
)
|
||||
|
||||
alias(
|
||||
name = "slog_async",
|
||||
actual = "@raze__slog_async__2_5_0//:slog_async",
|
||||
tags = [
|
||||
"cargo-raze",
|
||||
"manual",
|
||||
],
|
||||
)
|
||||
|
||||
alias(
|
||||
name = "slog_envlogger",
|
||||
actual = "@raze__slog_envlogger__2_2_0//:slog_envlogger",
|
||||
tags = [
|
||||
"cargo-raze",
|
||||
"manual",
|
||||
],
|
||||
)
|
||||
|
||||
alias(
|
||||
name = "slog_stdlog",
|
||||
actual = "@raze__slog_stdlog__4_0_0//:slog_stdlog",
|
||||
tags = [
|
||||
"cargo-raze",
|
||||
"manual",
|
||||
],
|
||||
)
|
||||
|
||||
alias(
|
||||
name = "slog_term",
|
||||
actual = "@raze__slog_term__2_6_0//:slog_term",
|
||||
tags = [
|
||||
"cargo-raze",
|
||||
"manual",
|
||||
],
|
||||
)
|
||||
|
||||
alias(
|
||||
name = "tempfile",
|
||||
actual = "@raze__tempfile__3_1_0//:tempfile",
|
||||
tags = [
|
||||
"cargo-raze",
|
||||
"manual",
|
||||
],
|
||||
)
|
||||
|
||||
alias(
|
||||
name = "tokio",
|
||||
actual = "@raze__tokio__0_2_22//:tokio",
|
||||
tags = [
|
||||
"cargo-raze",
|
||||
"manual",
|
||||
],
|
||||
)
|
||||
|
||||
alias(
|
||||
name = "unic_langid",
|
||||
actual = "@raze__unic_langid__0_8_0//:unic_langid",
|
||||
tags = [
|
||||
"cargo-raze",
|
||||
"manual",
|
||||
],
|
||||
)
|
||||
|
||||
alias(
|
||||
name = "unicase",
|
||||
actual = "@raze__unicase__2_6_0//:unicase",
|
||||
tags = [
|
||||
"cargo-raze",
|
||||
"manual",
|
||||
],
|
||||
)
|
||||
|
||||
alias(
|
||||
name = "unicode_normalization",
|
||||
actual = "@raze__unicode_normalization__0_1_13//:unicode_normalization",
|
||||
tags = [
|
||||
"cargo-raze",
|
||||
"manual",
|
||||
],
|
||||
)
|
||||
|
||||
alias(
|
||||
name = "utime",
|
||||
actual = "@raze__utime__0_3_1//:utime",
|
||||
tags = [
|
||||
"cargo-raze",
|
||||
"manual",
|
||||
],
|
||||
)
|
||||
|
||||
alias(
|
||||
name = "zip",
|
||||
actual = "@raze__zip__0_5_8//:zip",
|
||||
tags = [
|
||||
"cargo-raze",
|
||||
"manual",
|
||||
],
|
||||
)
|
2591
cargo/Cargo.lock
generated
Normal file
2591
cargo/Cargo.lock
generated
Normal file
File diff suppressed because it is too large
Load Diff
133
cargo/Cargo.toml
Normal file
133
cargo/Cargo.toml
Normal file
@ -0,0 +1,133 @@
|
||||
[package]
|
||||
name = "anki"
|
||||
version = "2.1.36" # automatically updated
|
||||
edition = "2018"
|
||||
authors = ["Ankitects Pty Ltd and contributors"]
|
||||
license = "AGPL-3.0-or-later"
|
||||
description = "Anki's Rust library code"
|
||||
readme = "README.md"
|
||||
|
||||
[raze]
|
||||
# The WORKSPACE relative path to the Cargo.toml working directory.
|
||||
workspace_path = "//cargo"
|
||||
# The target to generate BUILD rules for.
|
||||
#target = "x86_64-apple-darwin"
|
||||
#target = "x86_64-pc-windows-gnu"
|
||||
targets = [
|
||||
"i686-apple-darwin",
|
||||
"i686-pc-windows-msvc",
|
||||
"i686-unknown-linux-gnu",
|
||||
"x86_64-apple-darwin",
|
||||
"x86_64-apple-ios",
|
||||
"x86_64-pc-windows-msvc",
|
||||
"x86_64-unknown-linux-gnu",
|
||||
"aarch64-apple-ios",
|
||||
]
|
||||
genmode = "Remote"
|
||||
default_gen_buildrs = true
|
||||
|
||||
[raze.crates.pyo3.'0.11.1']
|
||||
data_attr = "glob([\"**\"])"
|
||||
|
||||
[raze.crates.ring.'0.16.15']
|
||||
data_attr = "glob([\"src/**\"])"
|
||||
|
||||
[raze.crates.webpki.'0.21.3']
|
||||
data_attr = "glob([\"src/**\"])"
|
||||
|
||||
[lib]
|
||||
name = "anki"
|
||||
path = "src/lib.rs"
|
||||
|
||||
[dependencies]
|
||||
# pinned as any changes could invalidate sqlite indexes
|
||||
unicase = "=2.6.0"
|
||||
|
||||
nom = "5.1.2"
|
||||
failure = "0.1.8"
|
||||
prost = { git = "https://github.com/danburkert/prost.git", rev = "4ded4a98ef339da0b7babd4efee3fbe8adaf746b" }
|
||||
bytes = "0.5.5"
|
||||
chrono = "0.4.13"
|
||||
lazy_static = "1.4.0"
|
||||
regex = "1.3.9"
|
||||
hex = "0.4.2"
|
||||
htmlescape = "0.3.1"
|
||||
sha1 = "0.6.0"
|
||||
unicode-normalization = "0.1.13"
|
||||
tempfile = "3.1.0"
|
||||
serde = "1.0.114"
|
||||
serde_json = "1.0.56"
|
||||
tokio = { version = "0.2.21", features = ["fs", "rt-threaded"] }
|
||||
serde_derive = "1.0.114"
|
||||
zip = { version = "0.5.8", default-features = false, features = ["deflate", "time"] }
|
||||
serde_tuple = "0.5.0"
|
||||
coarsetime = { git = "https://github.com/ankitects/rust-coarsetime.git", branch="old-mac-compat" }
|
||||
utime = "0.3.1"
|
||||
serde-aux = "0.6.1"
|
||||
unic-langid = { version = "0.8.0", features = ["macros"] }
|
||||
fluent = { git = "https://github.com/ankitects/fluent-rs.git", branch="32bit-panic" }
|
||||
intl-memoizer = { git = "https://github.com/ankitects/fluent-rs.git", branch="32bit-panic" }
|
||||
num-format = "0.4.0"
|
||||
slog = { version = "2.5.2", features = ["max_level_trace", "release_max_level_debug"] }
|
||||
slog-term = "2.6.0"
|
||||
slog-async = "2.5.0"
|
||||
slog-envlogger = "2.2.0"
|
||||
slog-stdlog = "4.0.0"
|
||||
log = { version = "0.4.11", features = ["std"] }
|
||||
serde_repr = "0.1.6"
|
||||
num_enum = "0.5.0"
|
||||
futures = "0.3.5"
|
||||
rand = "0.7.3"
|
||||
num-integer = "0.1.43"
|
||||
itertools = "0.9.0"
|
||||
flate2 = "1.0.14"
|
||||
pin-project = "0.4.22"
|
||||
async-compression = { version = "0.3.5", features = ["stream", "gzip"] }
|
||||
askama = "0.10.1"
|
||||
hyper = "0.13.7"
|
||||
once_cell = "1.4.1"
|
||||
scopeguard = "1.1.0"
|
||||
|
||||
blake3 = "0.3.5"
|
||||
|
||||
[dependencies.pyo3]
|
||||
version = "0.11.0"
|
||||
features = ["extension-module"]
|
||||
|
||||
[target.'cfg(target_vendor="apple")'.dependencies.rusqlite]
|
||||
version = "0.23.1"
|
||||
features = ["trace", "functions", "collation"]
|
||||
|
||||
[target.'cfg(not(target_vendor="apple"))'.dependencies.rusqlite]
|
||||
version = "0.23.1"
|
||||
features = ["trace", "functions", "collation", "bundled"]
|
||||
|
||||
#[dependencies.reqwest_linux]
|
||||
#git = "https://github.com/ankitects/reqwest.git"
|
||||
#rev = "57665e2c2a39db85723ba860f1b570a608bb73f9"
|
||||
#features = ["json", "socks", "stream", "rustls-tls"]
|
||||
#package = "reqwest"
|
||||
|
||||
#[target.'cfg(not(linux))'.dependencies.reqwest]
|
||||
#git = "https://github.com/ankitects/reqwest.git"
|
||||
#rev = "57665e2c2a39db85723ba860f1b570a608bb73f9"
|
||||
#features = ["json", "socks", "stream"]
|
||||
|
||||
#[dependencies.reqwest]
|
||||
#git = "https://github.com/ankitects/reqwest.git"
|
||||
#rev = "57665e2c2a39db85723ba860f1b570a608bb73f9"
|
||||
#features = ["json", "socks", "stream"]
|
||||
|
||||
[dependencies.reqwest]
|
||||
git = "https://github.com/ankitects/reqwest.git"
|
||||
rev = "57665e2c2a39db85723ba860f1b570a608bb73f9"
|
||||
default-features = false
|
||||
features = ["json", "socks", "stream", "rustls-tls"]
|
||||
|
||||
[build-dependencies]
|
||||
# 0.6.1 stable release depends on compile time PROTOC
|
||||
prost-build = { git = "https://github.com/danburkert/prost.git", rev = "4ded4a98ef339da0b7babd4efee3fbe8adaf746b" }
|
||||
fluent-syntax = "0.9.3"
|
||||
|
||||
[dev-dependencies]
|
||||
env_logger = "0.7.1"
|
2661
cargo/crates.bzl
Normal file
2661
cargo/crates.bzl
Normal file
File diff suppressed because it is too large
Load Diff
0
cargo/remote/BUILD.bazel
Normal file
0
cargo/remote/BUILD.bazel
Normal file
57
cargo/remote/addr2line-0.13.0.BUILD.bazel
Normal file
57
cargo/remote/addr2line-0.13.0.BUILD.bazel
Normal file
@ -0,0 +1,57 @@
|
||||
"""
|
||||
@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 "//cargo", which limits external
|
||||
# visibility to explicit Cargo.toml dependencies.
|
||||
"//visibility:public",
|
||||
])
|
||||
|
||||
licenses([
|
||||
"notice", # Apache-2.0 from expression "Apache-2.0 OR MIT"
|
||||
])
|
||||
|
||||
# Generated targets
|
||||
# Unsupported target "addr2line" with type "example" omitted
|
||||
|
||||
# buildifier: leave-alone
|
||||
rust_library(
|
||||
name = "addr2line",
|
||||
crate_type = "lib",
|
||||
deps = [
|
||||
"@raze__gimli__0_22_0//:gimli",
|
||||
],
|
||||
srcs = glob(["**/*.rs"]),
|
||||
crate_root = "src/lib.rs",
|
||||
edition = "2015",
|
||||
rustc_flags = [
|
||||
"--cap-lints=allow",
|
||||
],
|
||||
version = "0.13.0",
|
||||
tags = [
|
||||
"cargo-raze",
|
||||
"manual",
|
||||
],
|
||||
crate_features = [
|
||||
],
|
||||
)
|
||||
# Unsupported target "correctness" with type "test" omitted
|
||||
# Unsupported target "output_equivalence" with type "test" omitted
|
||||
# Unsupported target "parse" with type "test" omitted
|
53
cargo/remote/adler-0.2.3.BUILD.bazel
Normal file
53
cargo/remote/adler-0.2.3.BUILD.bazel
Normal file
@ -0,0 +1,53 @@
|
||||
"""
|
||||
@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 "//cargo", which limits external
|
||||
# visibility to explicit Cargo.toml dependencies.
|
||||
"//visibility:public",
|
||||
])
|
||||
|
||||
licenses([
|
||||
"notice", # MIT from expression "0BSD OR (MIT OR Apache-2.0)"
|
||||
])
|
||||
|
||||
# Generated targets
|
||||
|
||||
# buildifier: leave-alone
|
||||
rust_library(
|
||||
name = "adler",
|
||||
crate_type = "lib",
|
||||
deps = [
|
||||
],
|
||||
srcs = glob(["**/*.rs"]),
|
||||
crate_root = "src/lib.rs",
|
||||
edition = "2015",
|
||||
rustc_flags = [
|
||||
"--cap-lints=allow",
|
||||
],
|
||||
version = "0.2.3",
|
||||
tags = [
|
||||
"cargo-raze",
|
||||
"manual",
|
||||
],
|
||||
crate_features = [
|
||||
],
|
||||
)
|
||||
# Unsupported target "bench" with type "bench" omitted
|
55
cargo/remote/adler32-1.2.0.BUILD.bazel
Normal file
55
cargo/remote/adler32-1.2.0.BUILD.bazel
Normal file
@ -0,0 +1,55 @@
|
||||
"""
|
||||
@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 "//cargo", which limits external
|
||||
# visibility to explicit Cargo.toml dependencies.
|
||||
"//visibility:public",
|
||||
])
|
||||
|
||||
licenses([
|
||||
"notice", # Zlib from expression "Zlib"
|
||||
])
|
||||
|
||||
# Generated targets
|
||||
|
||||
# buildifier: leave-alone
|
||||
rust_library(
|
||||
name = "adler32",
|
||||
crate_type = "lib",
|
||||
deps = [
|
||||
],
|
||||
srcs = glob(["**/*.rs"]),
|
||||
crate_root = "src/lib.rs",
|
||||
edition = "2018",
|
||||
rustc_flags = [
|
||||
"--cap-lints=allow",
|
||||
],
|
||||
version = "1.2.0",
|
||||
tags = [
|
||||
"cargo-raze",
|
||||
"manual",
|
||||
],
|
||||
crate_features = [
|
||||
"default",
|
||||
"std",
|
||||
],
|
||||
)
|
||||
# Unsupported target "bench" with type "bench" omitted
|
55
cargo/remote/aho-corasick-0.7.14.BUILD.bazel
Normal file
55
cargo/remote/aho-corasick-0.7.14.BUILD.bazel
Normal file
@ -0,0 +1,55 @@
|
||||
"""
|
||||
@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 "//cargo", which limits external
|
||||
# visibility to explicit Cargo.toml dependencies.
|
||||
"//visibility:public",
|
||||
])
|
||||
|
||||
licenses([
|
||||
"unencumbered", # Unlicense from expression "Unlicense OR MIT"
|
||||
])
|
||||
|
||||
# Generated targets
|
||||
|
||||
# buildifier: leave-alone
|
||||
rust_library(
|
||||
name = "aho_corasick",
|
||||
crate_type = "lib",
|
||||
deps = [
|
||||
"@raze__memchr__2_3_3//:memchr",
|
||||
],
|
||||
srcs = glob(["**/*.rs"]),
|
||||
crate_root = "src/lib.rs",
|
||||
edition = "2015",
|
||||
rustc_flags = [
|
||||
"--cap-lints=allow",
|
||||
],
|
||||
version = "0.7.14",
|
||||
tags = [
|
||||
"cargo-raze",
|
||||
"manual",
|
||||
],
|
||||
crate_features = [
|
||||
"default",
|
||||
"std",
|
||||
],
|
||||
)
|
99
cargo/remote/anyhow-1.0.33.BUILD.bazel
Normal file
99
cargo/remote/anyhow-1.0.33.BUILD.bazel
Normal file
@ -0,0 +1,99 @@
|
||||
"""
|
||||
@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 "//cargo", 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",
|
||||
)
|
||||
|
||||
# buildifier: leave-alone
|
||||
cargo_build_script(
|
||||
name = "anyhow_build_script",
|
||||
srcs = glob(["**/*.rs"]),
|
||||
crate_root = "build.rs",
|
||||
edition = "2018",
|
||||
deps = [
|
||||
],
|
||||
rustc_flags = [
|
||||
"--cap-lints=allow",
|
||||
],
|
||||
crate_features = [
|
||||
"default",
|
||||
"std",
|
||||
],
|
||||
build_script_env = {
|
||||
},
|
||||
data = glob(["**"]),
|
||||
tags = [
|
||||
"cargo-raze",
|
||||
"manual",
|
||||
],
|
||||
version = "1.0.33",
|
||||
visibility = ["//visibility:private"],
|
||||
)
|
||||
|
||||
|
||||
# buildifier: leave-alone
|
||||
rust_library(
|
||||
name = "anyhow",
|
||||
crate_type = "lib",
|
||||
deps = [
|
||||
":anyhow_build_script",
|
||||
],
|
||||
srcs = glob(["**/*.rs"]),
|
||||
crate_root = "src/lib.rs",
|
||||
edition = "2018",
|
||||
rustc_flags = [
|
||||
"--cap-lints=allow",
|
||||
],
|
||||
version = "1.0.33",
|
||||
tags = [
|
||||
"cargo-raze",
|
||||
"manual",
|
||||
],
|
||||
crate_features = [
|
||||
"default",
|
||||
"std",
|
||||
],
|
||||
)
|
||||
# Unsupported target "compiletest" with type "test" omitted
|
||||
# Unsupported target "test_autotrait" with type "test" omitted
|
||||
# Unsupported target "test_backtrace" with type "test" omitted
|
||||
# Unsupported target "test_boxed" with type "test" omitted
|
||||
# Unsupported target "test_chain" with type "test" omitted
|
||||
# Unsupported target "test_context" with type "test" omitted
|
||||
# Unsupported target "test_convert" with type "test" omitted
|
||||
# Unsupported target "test_downcast" with type "test" omitted
|
||||
# Unsupported target "test_fmt" with type "test" omitted
|
||||
# Unsupported target "test_macros" with type "test" omitted
|
||||
# Unsupported target "test_repr" with type "test" omitted
|
||||
# Unsupported target "test_source" with type "test" omitted
|
55
cargo/remote/arc-swap-0.4.7.BUILD.bazel
Normal file
55
cargo/remote/arc-swap-0.4.7.BUILD.bazel
Normal file
@ -0,0 +1,55 @@
|
||||
"""
|
||||
@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 "//cargo", which limits external
|
||||
# visibility to explicit Cargo.toml dependencies.
|
||||
"//visibility:public",
|
||||
])
|
||||
|
||||
licenses([
|
||||
"notice", # Apache-2.0 from expression "Apache-2.0 OR MIT"
|
||||
])
|
||||
|
||||
# Generated targets
|
||||
|
||||
# buildifier: leave-alone
|
||||
rust_library(
|
||||
name = "arc_swap",
|
||||
crate_type = "lib",
|
||||
deps = [
|
||||
],
|
||||
srcs = glob(["**/*.rs"]),
|
||||
crate_root = "src/lib.rs",
|
||||
edition = "2015",
|
||||
rustc_flags = [
|
||||
"--cap-lints=allow",
|
||||
],
|
||||
version = "0.4.7",
|
||||
tags = [
|
||||
"cargo-raze",
|
||||
"manual",
|
||||
],
|
||||
crate_features = [
|
||||
],
|
||||
)
|
||||
# Unsupported target "random" with type "test" omitted
|
||||
# Unsupported target "stress" with type "test" omitted
|
||||
# Unsupported target "version" with type "test" omitted
|
55
cargo/remote/arrayref-0.3.6.BUILD.bazel
Normal file
55
cargo/remote/arrayref-0.3.6.BUILD.bazel
Normal file
@ -0,0 +1,55 @@
|
||||
"""
|
||||
@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 "//cargo", which limits external
|
||||
# visibility to explicit Cargo.toml dependencies.
|
||||
"//visibility:public",
|
||||
])
|
||||
|
||||
licenses([
|
||||
"restricted", # BSD-2-Clause from expression "BSD-2-Clause"
|
||||
])
|
||||
|
||||
# Generated targets
|
||||
# Unsupported target "array_refs" with type "example" omitted
|
||||
# Unsupported target "array_refs_with_const" with type "example" omitted
|
||||
|
||||
# buildifier: leave-alone
|
||||
rust_library(
|
||||
name = "arrayref",
|
||||
crate_type = "lib",
|
||||
deps = [
|
||||
],
|
||||
srcs = glob(["**/*.rs"]),
|
||||
crate_root = "src/lib.rs",
|
||||
edition = "2015",
|
||||
rustc_flags = [
|
||||
"--cap-lints=allow",
|
||||
],
|
||||
version = "0.3.6",
|
||||
tags = [
|
||||
"cargo-raze",
|
||||
"manual",
|
||||
],
|
||||
crate_features = [
|
||||
],
|
||||
)
|
||||
# Unsupported target "simple-case" with type "example" omitted
|
92
cargo/remote/arrayvec-0.4.12.BUILD.bazel
Normal file
92
cargo/remote/arrayvec-0.4.12.BUILD.bazel
Normal file
@ -0,0 +1,92 @@
|
||||
"""
|
||||
@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 "//cargo", 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",
|
||||
)
|
||||
|
||||
# buildifier: leave-alone
|
||||
cargo_build_script(
|
||||
name = "arrayvec_build_script",
|
||||
srcs = glob(["**/*.rs"]),
|
||||
crate_root = "build.rs",
|
||||
edition = "2015",
|
||||
deps = [
|
||||
],
|
||||
rustc_flags = [
|
||||
"--cap-lints=allow",
|
||||
],
|
||||
crate_features = [
|
||||
"default",
|
||||
"std",
|
||||
],
|
||||
build_script_env = {
|
||||
},
|
||||
data = glob(["**"]),
|
||||
tags = [
|
||||
"cargo-raze",
|
||||
"manual",
|
||||
],
|
||||
version = "0.4.12",
|
||||
visibility = ["//visibility:private"],
|
||||
)
|
||||
|
||||
# Unsupported target "arraystring" with type "bench" omitted
|
||||
|
||||
# buildifier: leave-alone
|
||||
rust_library(
|
||||
name = "arrayvec",
|
||||
crate_type = "lib",
|
||||
deps = [
|
||||
":arrayvec_build_script",
|
||||
"@raze__nodrop__0_1_14//:nodrop",
|
||||
],
|
||||
srcs = glob(["**/*.rs"]),
|
||||
crate_root = "src/lib.rs",
|
||||
edition = "2015",
|
||||
rustc_flags = [
|
||||
"--cap-lints=allow",
|
||||
],
|
||||
version = "0.4.12",
|
||||
tags = [
|
||||
"cargo-raze",
|
||||
"manual",
|
||||
],
|
||||
crate_features = [
|
||||
"default",
|
||||
"std",
|
||||
],
|
||||
)
|
||||
# Unsupported target "extend" with type "bench" omitted
|
||||
# Unsupported target "serde" with type "test" omitted
|
||||
# Unsupported target "tests" with type "test" omitted
|
59
cargo/remote/arrayvec-0.5.1.BUILD.bazel
Normal file
59
cargo/remote/arrayvec-0.5.1.BUILD.bazel
Normal file
@ -0,0 +1,59 @@
|
||||
"""
|
||||
@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 "//cargo", which limits external
|
||||
# visibility to explicit Cargo.toml dependencies.
|
||||
"//visibility:public",
|
||||
])
|
||||
|
||||
licenses([
|
||||
"notice", # MIT from expression "MIT OR Apache-2.0"
|
||||
])
|
||||
|
||||
# Generated targets
|
||||
# Unsupported target "arraystring" with type "bench" omitted
|
||||
|
||||
# buildifier: leave-alone
|
||||
rust_library(
|
||||
name = "arrayvec",
|
||||
crate_type = "lib",
|
||||
deps = [
|
||||
],
|
||||
srcs = glob(["**/*.rs"]),
|
||||
crate_root = "src/lib.rs",
|
||||
edition = "2018",
|
||||
rustc_flags = [
|
||||
"--cap-lints=allow",
|
||||
],
|
||||
version = "0.5.1",
|
||||
tags = [
|
||||
"cargo-raze",
|
||||
"manual",
|
||||
],
|
||||
crate_features = [
|
||||
"array-sizes-33-128",
|
||||
"default",
|
||||
"std",
|
||||
],
|
||||
)
|
||||
# Unsupported target "extend" with type "bench" omitted
|
||||
# Unsupported target "serde" with type "test" omitted
|
||||
# Unsupported target "tests" with type "test" omitted
|
62
cargo/remote/askama-0.10.3.BUILD.bazel
Normal file
62
cargo/remote/askama-0.10.3.BUILD.bazel
Normal file
@ -0,0 +1,62 @@
|
||||
"""
|
||||
@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 "//cargo", which limits external
|
||||
# visibility to explicit Cargo.toml dependencies.
|
||||
"//visibility:public",
|
||||
])
|
||||
|
||||
licenses([
|
||||
"notice", # MIT from expression "MIT OR Apache-2.0"
|
||||
])
|
||||
|
||||
# Generated targets
|
||||
|
||||
# buildifier: leave-alone
|
||||
rust_library(
|
||||
name = "askama",
|
||||
crate_type = "lib",
|
||||
deps = [
|
||||
"@raze__askama_escape__0_10_1//:askama_escape",
|
||||
"@raze__askama_shared__0_10_4//:askama_shared",
|
||||
],
|
||||
srcs = glob(["**/*.rs"]),
|
||||
crate_root = "src/lib.rs",
|
||||
edition = "2018",
|
||||
proc_macro_deps = [
|
||||
"@raze__askama_derive__0_10_3//:askama_derive",
|
||||
],
|
||||
rustc_flags = [
|
||||
"--cap-lints=allow",
|
||||
],
|
||||
version = "0.10.3",
|
||||
tags = [
|
||||
"cargo-raze",
|
||||
"manual",
|
||||
],
|
||||
crate_features = [
|
||||
"config",
|
||||
"default",
|
||||
"humansize",
|
||||
"num-traits",
|
||||
"urlencode",
|
||||
],
|
||||
)
|
56
cargo/remote/askama_derive-0.10.3.BUILD.bazel
Normal file
56
cargo/remote/askama_derive-0.10.3.BUILD.bazel
Normal file
@ -0,0 +1,56 @@
|
||||
"""
|
||||
@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 "//cargo", which limits external
|
||||
# visibility to explicit Cargo.toml dependencies.
|
||||
"//visibility:public",
|
||||
])
|
||||
|
||||
licenses([
|
||||
"notice", # MIT from expression "MIT OR Apache-2.0"
|
||||
])
|
||||
|
||||
# Generated targets
|
||||
|
||||
# buildifier: leave-alone
|
||||
rust_library(
|
||||
name = "askama_derive",
|
||||
crate_type = "proc-macro",
|
||||
deps = [
|
||||
"@raze__askama_shared__0_10_4//:askama_shared",
|
||||
"@raze__proc_macro2__1_0_24//:proc_macro2",
|
||||
"@raze__quote__1_0_7//:quote",
|
||||
"@raze__syn__1_0_45//:syn",
|
||||
],
|
||||
srcs = glob(["**/*.rs"]),
|
||||
crate_root = "src/lib.rs",
|
||||
edition = "2018",
|
||||
rustc_flags = [
|
||||
"--cap-lints=allow",
|
||||
],
|
||||
version = "0.10.3",
|
||||
tags = [
|
||||
"cargo-raze",
|
||||
"manual",
|
||||
],
|
||||
crate_features = [
|
||||
],
|
||||
)
|
53
cargo/remote/askama_escape-0.10.1.BUILD.bazel
Normal file
53
cargo/remote/askama_escape-0.10.1.BUILD.bazel
Normal file
@ -0,0 +1,53 @@
|
||||
"""
|
||||
@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 "//cargo", which limits external
|
||||
# visibility to explicit Cargo.toml dependencies.
|
||||
"//visibility:public",
|
||||
])
|
||||
|
||||
licenses([
|
||||
"notice", # MIT from expression "MIT OR Apache-2.0"
|
||||
])
|
||||
|
||||
# Generated targets
|
||||
# Unsupported target "all" with type "bench" omitted
|
||||
|
||||
# buildifier: leave-alone
|
||||
rust_library(
|
||||
name = "askama_escape",
|
||||
crate_type = "lib",
|
||||
deps = [
|
||||
],
|
||||
srcs = glob(["**/*.rs"]),
|
||||
crate_root = "src/lib.rs",
|
||||
edition = "2018",
|
||||
rustc_flags = [
|
||||
"--cap-lints=allow",
|
||||
],
|
||||
version = "0.10.1",
|
||||
tags = [
|
||||
"cargo-raze",
|
||||
"manual",
|
||||
],
|
||||
crate_features = [
|
||||
],
|
||||
)
|
68
cargo/remote/askama_shared-0.10.4.BUILD.bazel
Normal file
68
cargo/remote/askama_shared-0.10.4.BUILD.bazel
Normal file
@ -0,0 +1,68 @@
|
||||
"""
|
||||
@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 "//cargo", which limits external
|
||||
# visibility to explicit Cargo.toml dependencies.
|
||||
"//visibility:public",
|
||||
])
|
||||
|
||||
licenses([
|
||||
"notice", # MIT from expression "MIT OR Apache-2.0"
|
||||
])
|
||||
|
||||
# Generated targets
|
||||
|
||||
# buildifier: leave-alone
|
||||
rust_library(
|
||||
name = "askama_shared",
|
||||
crate_type = "lib",
|
||||
deps = [
|
||||
"@raze__askama_escape__0_10_1//:askama_escape",
|
||||
"@raze__humansize__1_1_0//:humansize",
|
||||
"@raze__nom__5_1_2//:nom",
|
||||
"@raze__num_traits__0_2_12//:num_traits",
|
||||
"@raze__percent_encoding__2_1_0//:percent_encoding",
|
||||
"@raze__proc_macro2__1_0_24//:proc_macro2",
|
||||
"@raze__quote__1_0_7//:quote",
|
||||
"@raze__serde__1_0_117//:serde",
|
||||
"@raze__syn__1_0_45//:syn",
|
||||
"@raze__toml__0_5_7//:toml",
|
||||
],
|
||||
srcs = glob(["**/*.rs"]),
|
||||
crate_root = "src/lib.rs",
|
||||
edition = "2018",
|
||||
rustc_flags = [
|
||||
"--cap-lints=allow",
|
||||
],
|
||||
version = "0.10.4",
|
||||
tags = [
|
||||
"cargo-raze",
|
||||
"manual",
|
||||
],
|
||||
crate_features = [
|
||||
"config",
|
||||
"humansize",
|
||||
"num-traits",
|
||||
"percent-encoding",
|
||||
"serde",
|
||||
"toml",
|
||||
],
|
||||
)
|
71
cargo/remote/async-compression-0.3.5.BUILD.bazel
Normal file
71
cargo/remote/async-compression-0.3.5.BUILD.bazel
Normal file
@ -0,0 +1,71 @@
|
||||
"""
|
||||
@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 "//cargo", which limits external
|
||||
# visibility to explicit Cargo.toml dependencies.
|
||||
"//visibility:public",
|
||||
])
|
||||
|
||||
licenses([
|
||||
"notice", # MIT from expression "MIT OR Apache-2.0"
|
||||
])
|
||||
|
||||
# Generated targets
|
||||
|
||||
# buildifier: leave-alone
|
||||
rust_library(
|
||||
name = "async_compression",
|
||||
crate_type = "lib",
|
||||
deps = [
|
||||
"@raze__bytes__0_5_6//:bytes",
|
||||
"@raze__flate2__1_0_14//:flate2",
|
||||
"@raze__futures_core__0_3_6//:futures_core",
|
||||
"@raze__memchr__2_3_3//:memchr",
|
||||
"@raze__pin_project_lite__0_1_11//:pin_project_lite",
|
||||
],
|
||||
srcs = glob(["**/*.rs"]),
|
||||
crate_root = "src/lib.rs",
|
||||
edition = "2018",
|
||||
rustc_flags = [
|
||||
"--cap-lints=allow",
|
||||
],
|
||||
version = "0.3.5",
|
||||
tags = [
|
||||
"cargo-raze",
|
||||
"manual",
|
||||
],
|
||||
crate_features = [
|
||||
"bytes",
|
||||
"default",
|
||||
"flate2",
|
||||
"gzip",
|
||||
"stream",
|
||||
],
|
||||
)
|
||||
# Unsupported target "brotli" with type "test" omitted
|
||||
# Unsupported target "bzip2" with type "test" omitted
|
||||
# Unsupported target "deflate" with type "test" omitted
|
||||
# Unsupported target "gzip" with type "test" omitted
|
||||
# Unsupported target "lzma" with type "test" omitted
|
||||
# Unsupported target "proptest" with type "test" omitted
|
||||
# Unsupported target "xz" with type "test" omitted
|
||||
# Unsupported target "zlib" with type "test" omitted
|
||||
# Unsupported target "zstd" with type "test" omitted
|
77
cargo/remote/atty-0.2.14.BUILD.bazel
Normal file
77
cargo/remote/atty-0.2.14.BUILD.bazel
Normal file
@ -0,0 +1,77 @@
|
||||
"""
|
||||
@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 "//cargo", which limits external
|
||||
# visibility to explicit Cargo.toml dependencies.
|
||||
"//visibility:public",
|
||||
])
|
||||
|
||||
licenses([
|
||||
"notice", # MIT from expression "MIT"
|
||||
])
|
||||
|
||||
# Generated targets
|
||||
# Unsupported target "atty" with type "example" omitted
|
||||
|
||||
# buildifier: leave-alone
|
||||
rust_library(
|
||||
name = "atty",
|
||||
crate_type = "lib",
|
||||
deps = [
|
||||
] + selects.with_or({
|
||||
# cfg(unix)
|
||||
(
|
||||
"@io_bazel_rules_rust//rust/platform:aarch64-apple-ios",
|
||||
"@io_bazel_rules_rust//rust/platform:i686-apple-darwin",
|
||||
"@io_bazel_rules_rust//rust/platform:i686-unknown-linux-gnu",
|
||||
"@io_bazel_rules_rust//rust/platform:x86_64-apple-darwin",
|
||||
"@io_bazel_rules_rust//rust/platform:x86_64-apple-ios",
|
||||
"@io_bazel_rules_rust//rust/platform:x86_64-unknown-linux-gnu",
|
||||
): [
|
||||
"@raze__libc__0_2_79//:libc",
|
||||
],
|
||||
"//conditions:default": [],
|
||||
}) + selects.with_or({
|
||||
# cfg(windows)
|
||||
(
|
||||
"@io_bazel_rules_rust//rust/platform:i686-pc-windows-msvc",
|
||||
"@io_bazel_rules_rust//rust/platform:x86_64-pc-windows-msvc",
|
||||
): [
|
||||
"@raze__winapi__0_3_9//:winapi",
|
||||
],
|
||||
"//conditions:default": [],
|
||||
}),
|
||||
srcs = glob(["**/*.rs"]),
|
||||
crate_root = "src/lib.rs",
|
||||
edition = "2015",
|
||||
rustc_flags = [
|
||||
"--cap-lints=allow",
|
||||
],
|
||||
version = "0.2.14",
|
||||
tags = [
|
||||
"cargo-raze",
|
||||
"manual",
|
||||
],
|
||||
crate_features = [
|
||||
],
|
||||
aliases = {
|
||||
},
|
||||
)
|
57
cargo/remote/autocfg-1.0.1.BUILD.bazel
Normal file
57
cargo/remote/autocfg-1.0.1.BUILD.bazel
Normal file
@ -0,0 +1,57 @@
|
||||
"""
|
||||
@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 "//cargo", which limits external
|
||||
# visibility to explicit Cargo.toml dependencies.
|
||||
"//visibility:public",
|
||||
])
|
||||
|
||||
licenses([
|
||||
"notice", # Apache-2.0 from expression "Apache-2.0 OR MIT"
|
||||
])
|
||||
|
||||
# Generated targets
|
||||
|
||||
# buildifier: leave-alone
|
||||
rust_library(
|
||||
name = "autocfg",
|
||||
crate_type = "lib",
|
||||
deps = [
|
||||
],
|
||||
srcs = glob(["**/*.rs"]),
|
||||
crate_root = "src/lib.rs",
|
||||
edition = "2015",
|
||||
rustc_flags = [
|
||||
"--cap-lints=allow",
|
||||
],
|
||||
version = "1.0.1",
|
||||
tags = [
|
||||
"cargo-raze",
|
||||
"manual",
|
||||
],
|
||||
crate_features = [
|
||||
],
|
||||
)
|
||||
# Unsupported target "integers" with type "example" omitted
|
||||
# Unsupported target "paths" with type "example" omitted
|
||||
# Unsupported target "rustflags" with type "test" omitted
|
||||
# Unsupported target "traits" with type "example" omitted
|
||||
# Unsupported target "versions" with type "example" omitted
|
82
cargo/remote/backtrace-0.3.53.BUILD.bazel
Normal file
82
cargo/remote/backtrace-0.3.53.BUILD.bazel
Normal file
@ -0,0 +1,82 @@
|
||||
"""
|
||||
@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 "//cargo", which limits external
|
||||
# visibility to explicit Cargo.toml dependencies.
|
||||
"//visibility:public",
|
||||
])
|
||||
|
||||
licenses([
|
||||
"notice", # MIT from expression "MIT OR Apache-2.0"
|
||||
])
|
||||
|
||||
# Generated targets
|
||||
# Unsupported target "accuracy" with type "test" omitted
|
||||
# Unsupported target "backtrace" with type "example" omitted
|
||||
|
||||
# buildifier: leave-alone
|
||||
rust_library(
|
||||
name = "backtrace",
|
||||
crate_type = "lib",
|
||||
deps = [
|
||||
"@raze__addr2line__0_13_0//:addr2line",
|
||||
"@raze__cfg_if__1_0_0//:cfg_if",
|
||||
"@raze__libc__0_2_79//:libc",
|
||||
"@raze__miniz_oxide__0_4_3//:miniz_oxide",
|
||||
"@raze__object__0_21_1//:object",
|
||||
"@raze__rustc_demangle__0_1_17//:rustc_demangle",
|
||||
] + selects.with_or({
|
||||
# cfg(windows)
|
||||
(
|
||||
"@io_bazel_rules_rust//rust/platform:i686-pc-windows-msvc",
|
||||
"@io_bazel_rules_rust//rust/platform:x86_64-pc-windows-msvc",
|
||||
): [
|
||||
],
|
||||
"//conditions:default": [],
|
||||
}),
|
||||
srcs = glob(["**/*.rs"]),
|
||||
crate_root = "src/lib.rs",
|
||||
edition = "2018",
|
||||
rustc_flags = [
|
||||
"--cap-lints=allow",
|
||||
],
|
||||
version = "0.3.53",
|
||||
tags = [
|
||||
"cargo-raze",
|
||||
"manual",
|
||||
],
|
||||
crate_features = [
|
||||
"addr2line",
|
||||
"default",
|
||||
"gimli-symbolize",
|
||||
"miniz_oxide",
|
||||
"object",
|
||||
"std",
|
||||
],
|
||||
aliases = {
|
||||
},
|
||||
)
|
||||
# Unsupported target "benchmarks" with type "bench" omitted
|
||||
# Unsupported target "concurrent-panics" with type "test" omitted
|
||||
# Unsupported target "long_fn_name" with type "test" omitted
|
||||
# Unsupported target "raw" with type "example" omitted
|
||||
# Unsupported target "skip_inner_frames" with type "test" omitted
|
||||
# Unsupported target "smoke" with type "test" omitted
|
60
cargo/remote/base64-0.11.0.BUILD.bazel
Normal file
60
cargo/remote/base64-0.11.0.BUILD.bazel
Normal file
@ -0,0 +1,60 @@
|
||||
"""
|
||||
@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 "//cargo", which limits external
|
||||
# visibility to explicit Cargo.toml dependencies.
|
||||
"//visibility:public",
|
||||
])
|
||||
|
||||
licenses([
|
||||
"notice", # MIT from expression "MIT OR Apache-2.0"
|
||||
])
|
||||
|
||||
# Generated targets
|
||||
|
||||
# buildifier: leave-alone
|
||||
rust_library(
|
||||
name = "base64",
|
||||
crate_type = "lib",
|
||||
deps = [
|
||||
],
|
||||
srcs = glob(["**/*.rs"]),
|
||||
crate_root = "src/lib.rs",
|
||||
edition = "2018",
|
||||
rustc_flags = [
|
||||
"--cap-lints=allow",
|
||||
],
|
||||
version = "0.11.0",
|
||||
tags = [
|
||||
"cargo-raze",
|
||||
"manual",
|
||||
],
|
||||
crate_features = [
|
||||
"default",
|
||||
"std",
|
||||
],
|
||||
)
|
||||
# Unsupported target "benchmarks" with type "bench" omitted
|
||||
# Unsupported target "decode" with type "test" omitted
|
||||
# Unsupported target "encode" with type "test" omitted
|
||||
# Unsupported target "helpers" with type "test" omitted
|
||||
# Unsupported target "make_tables" with type "example" omitted
|
||||
# Unsupported target "tests" with type "test" omitted
|
60
cargo/remote/base64-0.12.3.BUILD.bazel
Normal file
60
cargo/remote/base64-0.12.3.BUILD.bazel
Normal file
@ -0,0 +1,60 @@
|
||||
"""
|
||||
@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 "//cargo", which limits external
|
||||
# visibility to explicit Cargo.toml dependencies.
|
||||
"//visibility:public",
|
||||
])
|
||||
|
||||
licenses([
|
||||
"notice", # MIT from expression "MIT OR Apache-2.0"
|
||||
])
|
||||
|
||||
# Generated targets
|
||||
|
||||
# buildifier: leave-alone
|
||||
rust_library(
|
||||
name = "base64",
|
||||
crate_type = "lib",
|
||||
deps = [
|
||||
],
|
||||
srcs = glob(["**/*.rs"]),
|
||||
crate_root = "src/lib.rs",
|
||||
edition = "2018",
|
||||
rustc_flags = [
|
||||
"--cap-lints=allow",
|
||||
],
|
||||
version = "0.12.3",
|
||||
tags = [
|
||||
"cargo-raze",
|
||||
"manual",
|
||||
],
|
||||
crate_features = [
|
||||
"default",
|
||||
"std",
|
||||
],
|
||||
)
|
||||
# Unsupported target "benchmarks" with type "bench" omitted
|
||||
# Unsupported target "decode" with type "test" omitted
|
||||
# Unsupported target "encode" with type "test" omitted
|
||||
# Unsupported target "helpers" with type "test" omitted
|
||||
# Unsupported target "make_tables" with type "example" omitted
|
||||
# Unsupported target "tests" with type "test" omitted
|
85
cargo/remote/bitflags-1.2.1.BUILD.bazel
Normal file
85
cargo/remote/bitflags-1.2.1.BUILD.bazel
Normal file
@ -0,0 +1,85 @@
|
||||
"""
|
||||
@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 "//cargo", 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",
|
||||
)
|
||||
|
||||
# buildifier: leave-alone
|
||||
cargo_build_script(
|
||||
name = "bitflags_build_script",
|
||||
srcs = glob(["**/*.rs"]),
|
||||
crate_root = "build.rs",
|
||||
edition = "2015",
|
||||
deps = [
|
||||
],
|
||||
rustc_flags = [
|
||||
"--cap-lints=allow",
|
||||
],
|
||||
crate_features = [
|
||||
"default",
|
||||
],
|
||||
build_script_env = {
|
||||
},
|
||||
data = glob(["**"]),
|
||||
tags = [
|
||||
"cargo-raze",
|
||||
"manual",
|
||||
],
|
||||
version = "1.2.1",
|
||||
visibility = ["//visibility:private"],
|
||||
)
|
||||
|
||||
|
||||
# buildifier: leave-alone
|
||||
rust_library(
|
||||
name = "bitflags",
|
||||
crate_type = "lib",
|
||||
deps = [
|
||||
":bitflags_build_script",
|
||||
],
|
||||
srcs = glob(["**/*.rs"]),
|
||||
crate_root = "src/lib.rs",
|
||||
edition = "2015",
|
||||
rustc_flags = [
|
||||
"--cap-lints=allow",
|
||||
],
|
||||
version = "1.2.1",
|
||||
tags = [
|
||||
"cargo-raze",
|
||||
"manual",
|
||||
],
|
||||
crate_features = [
|
||||
"default",
|
||||
],
|
||||
)
|
57
cargo/remote/blake2b_simd-0.5.10.BUILD.bazel
Normal file
57
cargo/remote/blake2b_simd-0.5.10.BUILD.bazel
Normal file
@ -0,0 +1,57 @@
|
||||
"""
|
||||
@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 "//cargo", which limits external
|
||||
# visibility to explicit Cargo.toml dependencies.
|
||||
"//visibility:public",
|
||||
])
|
||||
|
||||
licenses([
|
||||
"notice", # MIT from expression "MIT"
|
||||
])
|
||||
|
||||
# Generated targets
|
||||
|
||||
# buildifier: leave-alone
|
||||
rust_library(
|
||||
name = "blake2b_simd",
|
||||
crate_type = "lib",
|
||||
deps = [
|
||||
"@raze__arrayref__0_3_6//:arrayref",
|
||||
"@raze__arrayvec__0_5_1//:arrayvec",
|
||||
"@raze__constant_time_eq__0_1_5//:constant_time_eq",
|
||||
],
|
||||
srcs = glob(["**/*.rs"]),
|
||||
crate_root = "src/lib.rs",
|
||||
edition = "2018",
|
||||
rustc_flags = [
|
||||
"--cap-lints=allow",
|
||||
],
|
||||
version = "0.5.10",
|
||||
tags = [
|
||||
"cargo-raze",
|
||||
"manual",
|
||||
],
|
||||
crate_features = [
|
||||
"default",
|
||||
"std",
|
||||
],
|
||||
)
|
95
cargo/remote/blake3-0.3.7.BUILD.bazel
Normal file
95
cargo/remote/blake3-0.3.7.BUILD.bazel
Normal file
@ -0,0 +1,95 @@
|
||||
"""
|
||||
@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 "//cargo", which limits external
|
||||
# visibility to explicit Cargo.toml dependencies.
|
||||
"//visibility:public",
|
||||
])
|
||||
|
||||
licenses([
|
||||
"unencumbered", # CC0-1.0 from expression "CC0-1.0 OR Apache-2.0"
|
||||
])
|
||||
|
||||
# Generated targets
|
||||
# buildifier: disable=load-on-top
|
||||
load(
|
||||
"@io_bazel_rules_rust//cargo:cargo_build_script.bzl",
|
||||
"cargo_build_script",
|
||||
)
|
||||
|
||||
# buildifier: leave-alone
|
||||
cargo_build_script(
|
||||
name = "blake3_build_script",
|
||||
srcs = glob(["**/*.rs"]),
|
||||
crate_root = "build.rs",
|
||||
edition = "2018",
|
||||
deps = [
|
||||
"@raze__cc__1_0_61//:cc",
|
||||
],
|
||||
rustc_flags = [
|
||||
"--cap-lints=allow",
|
||||
],
|
||||
crate_features = [
|
||||
"default",
|
||||
"std",
|
||||
],
|
||||
build_script_env = {
|
||||
},
|
||||
data = glob(["**"]),
|
||||
tags = [
|
||||
"cargo-raze",
|
||||
"manual",
|
||||
],
|
||||
version = "0.3.7",
|
||||
visibility = ["//visibility:private"],
|
||||
)
|
||||
|
||||
# Unsupported target "bench" with type "bench" omitted
|
||||
|
||||
# buildifier: leave-alone
|
||||
rust_library(
|
||||
name = "blake3",
|
||||
crate_type = "lib",
|
||||
deps = [
|
||||
":blake3_build_script",
|
||||
"@raze__arrayref__0_3_6//:arrayref",
|
||||
"@raze__arrayvec__0_5_1//:arrayvec",
|
||||
"@raze__cfg_if__0_1_10//:cfg_if",
|
||||
"@raze__constant_time_eq__0_1_5//:constant_time_eq",
|
||||
"@raze__crypto_mac__0_8_0//:crypto_mac",
|
||||
"@raze__digest__0_9_0//:digest",
|
||||
],
|
||||
srcs = glob(["**/*.rs"]),
|
||||
crate_root = "src/lib.rs",
|
||||
edition = "2018",
|
||||
rustc_flags = [
|
||||
"--cap-lints=allow",
|
||||
],
|
||||
version = "0.3.7",
|
||||
tags = [
|
||||
"cargo-raze",
|
||||
"manual",
|
||||
],
|
||||
crate_features = [
|
||||
"default",
|
||||
"std",
|
||||
],
|
||||
)
|
62
cargo/remote/bumpalo-3.4.0.BUILD.bazel
Normal file
62
cargo/remote/bumpalo-3.4.0.BUILD.bazel
Normal file
@ -0,0 +1,62 @@
|
||||
"""
|
||||
@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 "//cargo", which limits external
|
||||
# visibility to explicit Cargo.toml dependencies.
|
||||
"//visibility:public",
|
||||
])
|
||||
|
||||
licenses([
|
||||
"notice", # MIT from expression "MIT OR Apache-2.0"
|
||||
])
|
||||
|
||||
# Generated targets
|
||||
# Unsupported target "alloc_fill" with type "test" omitted
|
||||
# Unsupported target "alloc_with" with type "test" omitted
|
||||
# Unsupported target "benches" with type "bench" omitted
|
||||
|
||||
# buildifier: leave-alone
|
||||
rust_library(
|
||||
name = "bumpalo",
|
||||
crate_type = "lib",
|
||||
deps = [
|
||||
],
|
||||
srcs = glob(["**/*.rs"]),
|
||||
crate_root = "src/lib.rs",
|
||||
edition = "2018",
|
||||
rustc_flags = [
|
||||
"--cap-lints=allow",
|
||||
],
|
||||
version = "3.4.0",
|
||||
tags = [
|
||||
"cargo-raze",
|
||||
"manual",
|
||||
],
|
||||
crate_features = [
|
||||
"default",
|
||||
],
|
||||
)
|
||||
# Unsupported target "quickchecks" with type "test" omitted
|
||||
# Unsupported target "readme_up_to_date" with type "test" omitted
|
||||
# Unsupported target "string" with type "test" omitted
|
||||
# Unsupported target "tests" with type "test" omitted
|
||||
# Unsupported target "try_alloc" with type "test" omitted
|
||||
# Unsupported target "vec" with type "test" omitted
|
88
cargo/remote/byteorder-1.3.4.BUILD.bazel
Normal file
88
cargo/remote/byteorder-1.3.4.BUILD.bazel
Normal file
@ -0,0 +1,88 @@
|
||||
"""
|
||||
@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 "//cargo", which limits external
|
||||
# visibility to explicit Cargo.toml dependencies.
|
||||
"//visibility:public",
|
||||
])
|
||||
|
||||
licenses([
|
||||
"unencumbered", # Unlicense from expression "Unlicense OR MIT"
|
||||
])
|
||||
|
||||
# Generated targets
|
||||
# buildifier: disable=load-on-top
|
||||
load(
|
||||
"@io_bazel_rules_rust//cargo:cargo_build_script.bzl",
|
||||
"cargo_build_script",
|
||||
)
|
||||
|
||||
# buildifier: leave-alone
|
||||
cargo_build_script(
|
||||
name = "byteorder_build_script",
|
||||
srcs = glob(["**/*.rs"]),
|
||||
crate_root = "build.rs",
|
||||
edition = "2015",
|
||||
deps = [
|
||||
],
|
||||
rustc_flags = [
|
||||
"--cap-lints=allow",
|
||||
],
|
||||
crate_features = [
|
||||
"default",
|
||||
"std",
|
||||
],
|
||||
build_script_env = {
|
||||
},
|
||||
data = glob(["**"]),
|
||||
tags = [
|
||||
"cargo-raze",
|
||||
"manual",
|
||||
],
|
||||
version = "1.3.4",
|
||||
visibility = ["//visibility:private"],
|
||||
)
|
||||
|
||||
# Unsupported target "bench" with type "bench" omitted
|
||||
|
||||
# buildifier: leave-alone
|
||||
rust_library(
|
||||
name = "byteorder",
|
||||
crate_type = "lib",
|
||||
deps = [
|
||||
":byteorder_build_script",
|
||||
],
|
||||
srcs = glob(["**/*.rs"]),
|
||||
crate_root = "src/lib.rs",
|
||||
edition = "2015",
|
||||
rustc_flags = [
|
||||
"--cap-lints=allow",
|
||||
],
|
||||
version = "1.3.4",
|
||||
tags = [
|
||||
"cargo-raze",
|
||||
"manual",
|
||||
],
|
||||
crate_features = [
|
||||
"default",
|
||||
"std",
|
||||
],
|
||||
)
|
65
cargo/remote/bytes-0.4.12.BUILD.bazel
Normal file
65
cargo/remote/bytes-0.4.12.BUILD.bazel
Normal file
@ -0,0 +1,65 @@
|
||||
"""
|
||||
@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 "//cargo", which limits external
|
||||
# visibility to explicit Cargo.toml dependencies.
|
||||
"//visibility:public",
|
||||
])
|
||||
|
||||
licenses([
|
||||
"notice", # MIT from expression "MIT"
|
||||
])
|
||||
|
||||
# Generated targets
|
||||
# Unsupported target "bytes" with type "bench" omitted
|
||||
|
||||
# buildifier: leave-alone
|
||||
rust_library(
|
||||
name = "bytes",
|
||||
crate_type = "lib",
|
||||
deps = [
|
||||
"@raze__byteorder__1_3_4//:byteorder",
|
||||
"@raze__iovec__0_1_4//:iovec",
|
||||
],
|
||||
srcs = glob(["**/*.rs"]),
|
||||
crate_root = "src/lib.rs",
|
||||
edition = "2015",
|
||||
rustc_flags = [
|
||||
"--cap-lints=allow",
|
||||
],
|
||||
version = "0.4.12",
|
||||
tags = [
|
||||
"cargo-raze",
|
||||
"manual",
|
||||
],
|
||||
crate_features = [
|
||||
],
|
||||
)
|
||||
# Unsupported target "test_buf" with type "test" omitted
|
||||
# Unsupported target "test_buf_mut" with type "test" omitted
|
||||
# Unsupported target "test_bytes" with type "test" omitted
|
||||
# Unsupported target "test_chain" with type "test" omitted
|
||||
# Unsupported target "test_debug" with type "test" omitted
|
||||
# Unsupported target "test_from_buf" with type "test" omitted
|
||||
# Unsupported target "test_iter" with type "test" omitted
|
||||
# Unsupported target "test_reader" with type "test" omitted
|
||||
# Unsupported target "test_serde" with type "test" omitted
|
||||
# Unsupported target "test_take" with type "test" omitted
|
68
cargo/remote/bytes-0.5.6.BUILD.bazel
Normal file
68
cargo/remote/bytes-0.5.6.BUILD.bazel
Normal file
@ -0,0 +1,68 @@
|
||||
"""
|
||||
@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 "//cargo", which limits external
|
||||
# visibility to explicit Cargo.toml dependencies.
|
||||
"//visibility:public",
|
||||
])
|
||||
|
||||
licenses([
|
||||
"notice", # MIT from expression "MIT"
|
||||
])
|
||||
|
||||
# Generated targets
|
||||
# Unsupported target "buf" with type "bench" omitted
|
||||
# Unsupported target "bytes" with type "bench" omitted
|
||||
|
||||
# buildifier: leave-alone
|
||||
rust_library(
|
||||
name = "bytes",
|
||||
crate_type = "lib",
|
||||
deps = [
|
||||
],
|
||||
srcs = glob(["**/*.rs"]),
|
||||
crate_root = "src/lib.rs",
|
||||
edition = "2018",
|
||||
rustc_flags = [
|
||||
"--cap-lints=allow",
|
||||
],
|
||||
version = "0.5.6",
|
||||
tags = [
|
||||
"cargo-raze",
|
||||
"manual",
|
||||
],
|
||||
crate_features = [
|
||||
"default",
|
||||
"std",
|
||||
],
|
||||
)
|
||||
# Unsupported target "bytes_mut" with type "bench" omitted
|
||||
# Unsupported target "test_buf" with type "test" omitted
|
||||
# Unsupported target "test_buf_mut" with type "test" omitted
|
||||
# Unsupported target "test_bytes" with type "test" omitted
|
||||
# Unsupported target "test_bytes_odd_alloc" with type "test" omitted
|
||||
# Unsupported target "test_bytes_vec_alloc" with type "test" omitted
|
||||
# Unsupported target "test_chain" with type "test" omitted
|
||||
# Unsupported target "test_debug" with type "test" omitted
|
||||
# Unsupported target "test_iter" with type "test" omitted
|
||||
# Unsupported target "test_reader" with type "test" omitted
|
||||
# Unsupported target "test_serde" with type "test" omitted
|
||||
# Unsupported target "test_take" with type "test" omitted
|
80
cargo/remote/cc-1.0.61.BUILD.bazel
Normal file
80
cargo/remote/cc-1.0.61.BUILD.bazel
Normal file
@ -0,0 +1,80 @@
|
||||
"""
|
||||
@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 "//cargo", which limits external
|
||||
# visibility to explicit Cargo.toml dependencies.
|
||||
"//visibility:public",
|
||||
])
|
||||
|
||||
licenses([
|
||||
"notice", # MIT from expression "MIT OR Apache-2.0"
|
||||
])
|
||||
|
||||
# Generated targets
|
||||
|
||||
# buildifier: leave-alone
|
||||
rust_library(
|
||||
name = "cc",
|
||||
crate_type = "lib",
|
||||
deps = [
|
||||
],
|
||||
srcs = glob(["**/*.rs"]),
|
||||
crate_root = "src/lib.rs",
|
||||
edition = "2018",
|
||||
rustc_flags = [
|
||||
"--cap-lints=allow",
|
||||
],
|
||||
version = "1.0.61",
|
||||
tags = [
|
||||
"cargo-raze",
|
||||
"manual",
|
||||
],
|
||||
crate_features = [
|
||||
],
|
||||
)
|
||||
# Unsupported target "cc_env" with type "test" omitted
|
||||
# Unsupported target "cflags" with type "test" omitted
|
||||
# Unsupported target "cxxflags" with type "test" omitted
|
||||
|
||||
# buildifier: leave-alone
|
||||
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_gcc_shim",
|
||||
deps = [
|
||||
# Binaries get an implicit dependency on their crate's lib
|
||||
":cc",
|
||||
],
|
||||
srcs = glob(["**/*.rs"]),
|
||||
crate_root = "src/bin/gcc-shim.rs",
|
||||
edition = "2018",
|
||||
rustc_flags = [
|
||||
"--cap-lints=allow",
|
||||
],
|
||||
version = "1.0.61",
|
||||
tags = [
|
||||
"cargo-raze",
|
||||
"manual",
|
||||
],
|
||||
crate_features = [
|
||||
],
|
||||
)
|
||||
# Unsupported target "test" with type "test" omitted
|
53
cargo/remote/cfg-if-0.1.10.BUILD.bazel
Normal file
53
cargo/remote/cfg-if-0.1.10.BUILD.bazel
Normal file
@ -0,0 +1,53 @@
|
||||
"""
|
||||
@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 "//cargo", which limits external
|
||||
# visibility to explicit Cargo.toml dependencies.
|
||||
"//visibility:public",
|
||||
])
|
||||
|
||||
licenses([
|
||||
"notice", # MIT from expression "MIT OR Apache-2.0"
|
||||
])
|
||||
|
||||
# Generated targets
|
||||
|
||||
# buildifier: leave-alone
|
||||
rust_library(
|
||||
name = "cfg_if",
|
||||
crate_type = "lib",
|
||||
deps = [
|
||||
],
|
||||
srcs = glob(["**/*.rs"]),
|
||||
crate_root = "src/lib.rs",
|
||||
edition = "2018",
|
||||
rustc_flags = [
|
||||
"--cap-lints=allow",
|
||||
],
|
||||
version = "0.1.10",
|
||||
tags = [
|
||||
"cargo-raze",
|
||||
"manual",
|
||||
],
|
||||
crate_features = [
|
||||
],
|
||||
)
|
||||
# Unsupported target "xcrate" with type "test" omitted
|
53
cargo/remote/cfg-if-1.0.0.BUILD.bazel
Normal file
53
cargo/remote/cfg-if-1.0.0.BUILD.bazel
Normal file
@ -0,0 +1,53 @@
|
||||
"""
|
||||
@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 "//cargo", which limits external
|
||||
# visibility to explicit Cargo.toml dependencies.
|
||||
"//visibility:public",
|
||||
])
|
||||
|
||||
licenses([
|
||||
"notice", # MIT from expression "MIT OR Apache-2.0"
|
||||
])
|
||||
|
||||
# Generated targets
|
||||
|
||||
# buildifier: leave-alone
|
||||
rust_library(
|
||||
name = "cfg_if",
|
||||
crate_type = "lib",
|
||||
deps = [
|
||||
],
|
||||
srcs = glob(["**/*.rs"]),
|
||||
crate_root = "src/lib.rs",
|
||||
edition = "2018",
|
||||
rustc_flags = [
|
||||
"--cap-lints=allow",
|
||||
],
|
||||
version = "1.0.0",
|
||||
tags = [
|
||||
"cargo-raze",
|
||||
"manual",
|
||||
],
|
||||
crate_features = [
|
||||
],
|
||||
)
|
||||
# Unsupported target "xcrate" with type "test" omitted
|
77
cargo/remote/chrono-0.4.19.BUILD.bazel
Normal file
77
cargo/remote/chrono-0.4.19.BUILD.bazel
Normal file
@ -0,0 +1,77 @@
|
||||
"""
|
||||
@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 "//cargo", which limits external
|
||||
# visibility to explicit Cargo.toml dependencies.
|
||||
"//visibility:public",
|
||||
])
|
||||
|
||||
licenses([
|
||||
"notice", # MIT from expression "MIT OR Apache-2.0"
|
||||
])
|
||||
|
||||
# Generated targets
|
||||
# Unsupported target "chrono" with type "bench" omitted
|
||||
|
||||
# buildifier: leave-alone
|
||||
rust_library(
|
||||
name = "chrono",
|
||||
crate_type = "lib",
|
||||
deps = [
|
||||
"@raze__libc__0_2_79//:libc",
|
||||
"@raze__num_integer__0_1_43//:num_integer",
|
||||
"@raze__num_traits__0_2_12//:num_traits",
|
||||
"@raze__time__0_1_44//:time",
|
||||
] + selects.with_or({
|
||||
# cfg(windows)
|
||||
(
|
||||
"@io_bazel_rules_rust//rust/platform:i686-pc-windows-msvc",
|
||||
"@io_bazel_rules_rust//rust/platform:x86_64-pc-windows-msvc",
|
||||
): [
|
||||
"@raze__winapi__0_3_9//:winapi",
|
||||
],
|
||||
"//conditions:default": [],
|
||||
}),
|
||||
srcs = glob(["**/*.rs"]),
|
||||
crate_root = "src/lib.rs",
|
||||
edition = "2015",
|
||||
rustc_flags = [
|
||||
"--cap-lints=allow",
|
||||
],
|
||||
version = "0.4.19",
|
||||
tags = [
|
||||
"cargo-raze",
|
||||
"manual",
|
||||
],
|
||||
crate_features = [
|
||||
"clock",
|
||||
"default",
|
||||
"libc",
|
||||
"oldtime",
|
||||
"std",
|
||||
"time",
|
||||
"winapi",
|
||||
],
|
||||
aliases = {
|
||||
},
|
||||
)
|
||||
# Unsupported target "serde" with type "bench" omitted
|
||||
# Unsupported target "wasm" with type "test" omitted
|
55
cargo/remote/cloudabi-0.1.0.BUILD.bazel
Normal file
55
cargo/remote/cloudabi-0.1.0.BUILD.bazel
Normal file
@ -0,0 +1,55 @@
|
||||
"""
|
||||
@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 "//cargo", which limits external
|
||||
# visibility to explicit Cargo.toml dependencies.
|
||||
"//visibility:public",
|
||||
])
|
||||
|
||||
licenses([
|
||||
"restricted", # BSD-2-Clause from expression "BSD-2-Clause"
|
||||
])
|
||||
|
||||
# Generated targets
|
||||
|
||||
# buildifier: leave-alone
|
||||
rust_library(
|
||||
name = "cloudabi",
|
||||
crate_type = "lib",
|
||||
deps = [
|
||||
"@raze__bitflags__1_2_1//:bitflags",
|
||||
],
|
||||
srcs = glob(["**/*.rs"]),
|
||||
crate_root = "cloudabi.rs",
|
||||
edition = "2018",
|
||||
rustc_flags = [
|
||||
"--cap-lints=allow",
|
||||
],
|
||||
version = "0.1.0",
|
||||
tags = [
|
||||
"cargo-raze",
|
||||
"manual",
|
||||
],
|
||||
crate_features = [
|
||||
"bitflags",
|
||||
"default",
|
||||
],
|
||||
)
|
54
cargo/remote/coarsetime-0.1.14.BUILD.bazel
Normal file
54
cargo/remote/coarsetime-0.1.14.BUILD.bazel
Normal file
@ -0,0 +1,54 @@
|
||||
"""
|
||||
@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 "//cargo", which limits external
|
||||
# visibility to explicit Cargo.toml dependencies.
|
||||
"//visibility:public",
|
||||
])
|
||||
|
||||
licenses([
|
||||
"notice", # ISC from expression "ISC"
|
||||
])
|
||||
|
||||
# Generated targets
|
||||
|
||||
# buildifier: leave-alone
|
||||
rust_library(
|
||||
name = "coarsetime",
|
||||
crate_type = "lib",
|
||||
deps = [
|
||||
"@raze__lazy_static__1_4_0//:lazy_static",
|
||||
"@raze__libc__0_2_79//:libc",
|
||||
],
|
||||
srcs = glob(["**/*.rs"]),
|
||||
crate_root = "src/lib.rs",
|
||||
edition = "2018",
|
||||
rustc_flags = [
|
||||
"--cap-lints=allow",
|
||||
],
|
||||
version = "0.1.14",
|
||||
tags = [
|
||||
"cargo-raze",
|
||||
"manual",
|
||||
],
|
||||
crate_features = [
|
||||
],
|
||||
)
|
53
cargo/remote/constant_time_eq-0.1.5.BUILD.bazel
Normal file
53
cargo/remote/constant_time_eq-0.1.5.BUILD.bazel
Normal file
@ -0,0 +1,53 @@
|
||||
"""
|
||||
@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 "//cargo", which limits external
|
||||
# visibility to explicit Cargo.toml dependencies.
|
||||
"//visibility:public",
|
||||
])
|
||||
|
||||
licenses([
|
||||
"unencumbered", # CC0-1.0 from expression "CC0-1.0"
|
||||
])
|
||||
|
||||
# Generated targets
|
||||
# Unsupported target "bench" with type "bench" omitted
|
||||
|
||||
# buildifier: leave-alone
|
||||
rust_library(
|
||||
name = "constant_time_eq",
|
||||
crate_type = "lib",
|
||||
deps = [
|
||||
],
|
||||
srcs = glob(["**/*.rs"]),
|
||||
crate_root = "src/lib.rs",
|
||||
edition = "2015",
|
||||
rustc_flags = [
|
||||
"--cap-lints=allow",
|
||||
],
|
||||
version = "0.1.5",
|
||||
tags = [
|
||||
"cargo-raze",
|
||||
"manual",
|
||||
],
|
||||
crate_features = [
|
||||
],
|
||||
)
|
89
cargo/remote/crc32fast-1.2.0.BUILD.bazel
Normal file
89
cargo/remote/crc32fast-1.2.0.BUILD.bazel
Normal file
@ -0,0 +1,89 @@
|
||||
"""
|
||||
@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 "//cargo", 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",
|
||||
)
|
||||
|
||||
# buildifier: leave-alone
|
||||
cargo_build_script(
|
||||
name = "crc32fast_build_script",
|
||||
srcs = glob(["**/*.rs"]),
|
||||
crate_root = "build.rs",
|
||||
edition = "2015",
|
||||
deps = [
|
||||
],
|
||||
rustc_flags = [
|
||||
"--cap-lints=allow",
|
||||
],
|
||||
crate_features = [
|
||||
"default",
|
||||
"std",
|
||||
],
|
||||
build_script_env = {
|
||||
},
|
||||
data = glob(["**"]),
|
||||
tags = [
|
||||
"cargo-raze",
|
||||
"manual",
|
||||
],
|
||||
version = "1.2.0",
|
||||
visibility = ["//visibility:private"],
|
||||
)
|
||||
|
||||
# Unsupported target "bench" with type "bench" omitted
|
||||
|
||||
# buildifier: leave-alone
|
||||
rust_library(
|
||||
name = "crc32fast",
|
||||
crate_type = "lib",
|
||||
deps = [
|
||||
":crc32fast_build_script",
|
||||
"@raze__cfg_if__0_1_10//:cfg_if",
|
||||
],
|
||||
srcs = glob(["**/*.rs"]),
|
||||
crate_root = "src/lib.rs",
|
||||
edition = "2015",
|
||||
rustc_flags = [
|
||||
"--cap-lints=allow",
|
||||
],
|
||||
version = "1.2.0",
|
||||
tags = [
|
||||
"cargo-raze",
|
||||
"manual",
|
||||
],
|
||||
crate_features = [
|
||||
"default",
|
||||
"std",
|
||||
],
|
||||
)
|
64
cargo/remote/crossbeam-0.7.3.BUILD.bazel
Normal file
64
cargo/remote/crossbeam-0.7.3.BUILD.bazel
Normal file
@ -0,0 +1,64 @@
|
||||
"""
|
||||
@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 "//cargo", which limits external
|
||||
# visibility to explicit Cargo.toml dependencies.
|
||||
"//visibility:public",
|
||||
])
|
||||
|
||||
licenses([
|
||||
"notice", # MIT from expression "MIT OR Apache-2.0"
|
||||
])
|
||||
|
||||
# Generated targets
|
||||
|
||||
# buildifier: leave-alone
|
||||
rust_library(
|
||||
name = "crossbeam",
|
||||
crate_type = "lib",
|
||||
deps = [
|
||||
"@raze__cfg_if__0_1_10//:cfg_if",
|
||||
"@raze__crossbeam_channel__0_4_4//:crossbeam_channel",
|
||||
"@raze__crossbeam_deque__0_7_3//:crossbeam_deque",
|
||||
"@raze__crossbeam_epoch__0_8_2//:crossbeam_epoch",
|
||||
"@raze__crossbeam_queue__0_2_3//:crossbeam_queue",
|
||||
"@raze__crossbeam_utils__0_7_2//:crossbeam_utils",
|
||||
],
|
||||
srcs = glob(["**/*.rs"]),
|
||||
crate_root = "src/lib.rs",
|
||||
edition = "2015",
|
||||
rustc_flags = [
|
||||
"--cap-lints=allow",
|
||||
],
|
||||
version = "0.7.3",
|
||||
tags = [
|
||||
"cargo-raze",
|
||||
"manual",
|
||||
],
|
||||
crate_features = [
|
||||
"crossbeam-channel",
|
||||
"crossbeam-deque",
|
||||
"crossbeam-queue",
|
||||
"default",
|
||||
"std",
|
||||
],
|
||||
)
|
||||
# Unsupported target "subcrates" with type "test" omitted
|
72
cargo/remote/crossbeam-channel-0.4.4.BUILD.bazel
Normal file
72
cargo/remote/crossbeam-channel-0.4.4.BUILD.bazel
Normal file
@ -0,0 +1,72 @@
|
||||
"""
|
||||
@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 "//cargo", which limits external
|
||||
# visibility to explicit Cargo.toml dependencies.
|
||||
"//visibility:public",
|
||||
])
|
||||
|
||||
licenses([
|
||||
"notice", # MIT from expression "MIT OR Apache-2.0"
|
||||
])
|
||||
|
||||
# Generated targets
|
||||
# Unsupported target "after" with type "test" omitted
|
||||
# Unsupported target "array" with type "test" omitted
|
||||
# Unsupported target "crossbeam" with type "bench" omitted
|
||||
|
||||
# buildifier: leave-alone
|
||||
rust_library(
|
||||
name = "crossbeam_channel",
|
||||
crate_type = "lib",
|
||||
deps = [
|
||||
"@raze__crossbeam_utils__0_7_2//:crossbeam_utils",
|
||||
"@raze__maybe_uninit__2_0_0//:maybe_uninit",
|
||||
],
|
||||
srcs = glob(["**/*.rs"]),
|
||||
crate_root = "src/lib.rs",
|
||||
edition = "2015",
|
||||
rustc_flags = [
|
||||
"--cap-lints=allow",
|
||||
],
|
||||
version = "0.4.4",
|
||||
tags = [
|
||||
"cargo-raze",
|
||||
"manual",
|
||||
],
|
||||
crate_features = [
|
||||
],
|
||||
)
|
||||
# Unsupported target "fibonacci" with type "example" omitted
|
||||
# Unsupported target "golang" with type "test" omitted
|
||||
# Unsupported target "iter" with type "test" omitted
|
||||
# Unsupported target "list" with type "test" omitted
|
||||
# Unsupported target "matching" with type "example" omitted
|
||||
# Unsupported target "mpsc" with type "test" omitted
|
||||
# Unsupported target "never" with type "test" omitted
|
||||
# Unsupported target "ready" with type "test" omitted
|
||||
# Unsupported target "same_channel" with type "test" omitted
|
||||
# Unsupported target "select" with type "test" omitted
|
||||
# Unsupported target "select_macro" with type "test" omitted
|
||||
# Unsupported target "stopwatch" with type "example" omitted
|
||||
# Unsupported target "thread_locals" with type "test" omitted
|
||||
# Unsupported target "tick" with type "test" omitted
|
||||
# Unsupported target "zero" with type "test" omitted
|
59
cargo/remote/crossbeam-deque-0.7.3.BUILD.bazel
Normal file
59
cargo/remote/crossbeam-deque-0.7.3.BUILD.bazel
Normal file
@ -0,0 +1,59 @@
|
||||
"""
|
||||
@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 "//cargo", which limits external
|
||||
# visibility to explicit Cargo.toml dependencies.
|
||||
"//visibility:public",
|
||||
])
|
||||
|
||||
licenses([
|
||||
"notice", # MIT from expression "MIT OR Apache-2.0"
|
||||
])
|
||||
|
||||
# Generated targets
|
||||
|
||||
# buildifier: leave-alone
|
||||
rust_library(
|
||||
name = "crossbeam_deque",
|
||||
crate_type = "lib",
|
||||
deps = [
|
||||
"@raze__crossbeam_epoch__0_8_2//:crossbeam_epoch",
|
||||
"@raze__crossbeam_utils__0_7_2//:crossbeam_utils",
|
||||
"@raze__maybe_uninit__2_0_0//:maybe_uninit",
|
||||
],
|
||||
srcs = glob(["**/*.rs"]),
|
||||
crate_root = "src/lib.rs",
|
||||
edition = "2015",
|
||||
rustc_flags = [
|
||||
"--cap-lints=allow",
|
||||
],
|
||||
version = "0.7.3",
|
||||
tags = [
|
||||
"cargo-raze",
|
||||
"manual",
|
||||
],
|
||||
crate_features = [
|
||||
],
|
||||
)
|
||||
# Unsupported target "fifo" with type "test" omitted
|
||||
# Unsupported target "injector" with type "test" omitted
|
||||
# Unsupported target "lifo" with type "test" omitted
|
||||
# Unsupported target "steal" with type "test" omitted
|
101
cargo/remote/crossbeam-epoch-0.8.2.BUILD.bazel
Normal file
101
cargo/remote/crossbeam-epoch-0.8.2.BUILD.bazel
Normal file
@ -0,0 +1,101 @@
|
||||
"""
|
||||
@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 "//cargo", 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",
|
||||
)
|
||||
|
||||
# buildifier: leave-alone
|
||||
cargo_build_script(
|
||||
name = "crossbeam_epoch_build_script",
|
||||
srcs = glob(["**/*.rs"]),
|
||||
crate_root = "build.rs",
|
||||
edition = "2015",
|
||||
deps = [
|
||||
"@raze__autocfg__1_0_1//:autocfg",
|
||||
],
|
||||
rustc_flags = [
|
||||
"--cap-lints=allow",
|
||||
],
|
||||
crate_features = [
|
||||
"default",
|
||||
"lazy_static",
|
||||
"std",
|
||||
],
|
||||
build_script_env = {
|
||||
},
|
||||
data = glob(["**"]),
|
||||
tags = [
|
||||
"cargo-raze",
|
||||
"manual",
|
||||
],
|
||||
version = "0.8.2",
|
||||
visibility = ["//visibility:private"],
|
||||
)
|
||||
|
||||
|
||||
# buildifier: leave-alone
|
||||
rust_library(
|
||||
name = "crossbeam_epoch",
|
||||
crate_type = "lib",
|
||||
deps = [
|
||||
":crossbeam_epoch_build_script",
|
||||
"@raze__cfg_if__0_1_10//:cfg_if",
|
||||
"@raze__crossbeam_utils__0_7_2//:crossbeam_utils",
|
||||
"@raze__lazy_static__1_4_0//:lazy_static",
|
||||
"@raze__maybe_uninit__2_0_0//:maybe_uninit",
|
||||
"@raze__memoffset__0_5_6//:memoffset",
|
||||
"@raze__scopeguard__1_1_0//:scopeguard",
|
||||
],
|
||||
srcs = glob(["**/*.rs"]),
|
||||
crate_root = "src/lib.rs",
|
||||
edition = "2015",
|
||||
rustc_flags = [
|
||||
"--cap-lints=allow",
|
||||
],
|
||||
version = "0.8.2",
|
||||
tags = [
|
||||
"cargo-raze",
|
||||
"manual",
|
||||
],
|
||||
crate_features = [
|
||||
"default",
|
||||
"lazy_static",
|
||||
"std",
|
||||
],
|
||||
)
|
||||
# Unsupported target "defer" with type "bench" omitted
|
||||
# Unsupported target "flush" with type "bench" omitted
|
||||
# Unsupported target "pin" with type "bench" omitted
|
||||
# Unsupported target "sanitize" with type "example" omitted
|
||||
# Unsupported target "treiber_stack" with type "example" omitted
|
59
cargo/remote/crossbeam-queue-0.2.3.BUILD.bazel
Normal file
59
cargo/remote/crossbeam-queue-0.2.3.BUILD.bazel
Normal file
@ -0,0 +1,59 @@
|
||||
"""
|
||||
@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 "//cargo", which limits external
|
||||
# visibility to explicit Cargo.toml dependencies.
|
||||
"//visibility:public",
|
||||
])
|
||||
|
||||
licenses([
|
||||
"notice", # MIT from expression "MIT OR (Apache-2.0 AND BSD-2-Clause)"
|
||||
])
|
||||
|
||||
# Generated targets
|
||||
# Unsupported target "array_queue" with type "test" omitted
|
||||
|
||||
# buildifier: leave-alone
|
||||
rust_library(
|
||||
name = "crossbeam_queue",
|
||||
crate_type = "lib",
|
||||
deps = [
|
||||
"@raze__cfg_if__0_1_10//:cfg_if",
|
||||
"@raze__crossbeam_utils__0_7_2//:crossbeam_utils",
|
||||
"@raze__maybe_uninit__2_0_0//:maybe_uninit",
|
||||
],
|
||||
srcs = glob(["**/*.rs"]),
|
||||
crate_root = "src/lib.rs",
|
||||
edition = "2015",
|
||||
rustc_flags = [
|
||||
"--cap-lints=allow",
|
||||
],
|
||||
version = "0.2.3",
|
||||
tags = [
|
||||
"cargo-raze",
|
||||
"manual",
|
||||
],
|
||||
crate_features = [
|
||||
"default",
|
||||
"std",
|
||||
],
|
||||
)
|
||||
# Unsupported target "seg_queue" with type "test" omitted
|
99
cargo/remote/crossbeam-utils-0.7.2.BUILD.bazel
Normal file
99
cargo/remote/crossbeam-utils-0.7.2.BUILD.bazel
Normal file
@ -0,0 +1,99 @@
|
||||
"""
|
||||
@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 "//cargo", 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",
|
||||
)
|
||||
|
||||
# buildifier: leave-alone
|
||||
cargo_build_script(
|
||||
name = "crossbeam_utils_build_script",
|
||||
srcs = glob(["**/*.rs"]),
|
||||
crate_root = "build.rs",
|
||||
edition = "2015",
|
||||
deps = [
|
||||
"@raze__autocfg__1_0_1//:autocfg",
|
||||
],
|
||||
rustc_flags = [
|
||||
"--cap-lints=allow",
|
||||
],
|
||||
crate_features = [
|
||||
"default",
|
||||
"lazy_static",
|
||||
"std",
|
||||
],
|
||||
build_script_env = {
|
||||
},
|
||||
data = glob(["**"]),
|
||||
tags = [
|
||||
"cargo-raze",
|
||||
"manual",
|
||||
],
|
||||
version = "0.7.2",
|
||||
visibility = ["//visibility:private"],
|
||||
)
|
||||
|
||||
# Unsupported target "atomic_cell" with type "bench" omitted
|
||||
# Unsupported target "atomic_cell" with type "test" omitted
|
||||
# Unsupported target "cache_padded" with type "test" omitted
|
||||
|
||||
# buildifier: leave-alone
|
||||
rust_library(
|
||||
name = "crossbeam_utils",
|
||||
crate_type = "lib",
|
||||
deps = [
|
||||
":crossbeam_utils_build_script",
|
||||
"@raze__cfg_if__0_1_10//:cfg_if",
|
||||
"@raze__lazy_static__1_4_0//:lazy_static",
|
||||
],
|
||||
srcs = glob(["**/*.rs"]),
|
||||
crate_root = "src/lib.rs",
|
||||
edition = "2015",
|
||||
rustc_flags = [
|
||||
"--cap-lints=allow",
|
||||
],
|
||||
version = "0.7.2",
|
||||
tags = [
|
||||
"cargo-raze",
|
||||
"manual",
|
||||
],
|
||||
crate_features = [
|
||||
"default",
|
||||
"lazy_static",
|
||||
"std",
|
||||
],
|
||||
)
|
||||
# Unsupported target "parker" with type "test" omitted
|
||||
# Unsupported target "sharded_lock" with type "test" omitted
|
||||
# Unsupported target "thread" with type "test" omitted
|
||||
# Unsupported target "wait_group" with type "test" omitted
|
54
cargo/remote/crypto-mac-0.8.0.BUILD.bazel
Normal file
54
cargo/remote/crypto-mac-0.8.0.BUILD.bazel
Normal file
@ -0,0 +1,54 @@
|
||||
"""
|
||||
@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 "//cargo", which limits external
|
||||
# visibility to explicit Cargo.toml dependencies.
|
||||
"//visibility:public",
|
||||
])
|
||||
|
||||
licenses([
|
||||
"notice", # MIT from expression "MIT OR Apache-2.0"
|
||||
])
|
||||
|
||||
# Generated targets
|
||||
|
||||
# buildifier: leave-alone
|
||||
rust_library(
|
||||
name = "crypto_mac",
|
||||
crate_type = "lib",
|
||||
deps = [
|
||||
"@raze__generic_array__0_14_4//:generic_array",
|
||||
"@raze__subtle__2_3_0//:subtle",
|
||||
],
|
||||
srcs = glob(["**/*.rs"]),
|
||||
crate_root = "src/lib.rs",
|
||||
edition = "2018",
|
||||
rustc_flags = [
|
||||
"--cap-lints=allow",
|
||||
],
|
||||
version = "0.8.0",
|
||||
tags = [
|
||||
"cargo-raze",
|
||||
"manual",
|
||||
],
|
||||
crate_features = [
|
||||
],
|
||||
)
|
53
cargo/remote/ct-logs-0.6.0.BUILD.bazel
Normal file
53
cargo/remote/ct-logs-0.6.0.BUILD.bazel
Normal file
@ -0,0 +1,53 @@
|
||||
"""
|
||||
@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 "//cargo", which limits external
|
||||
# visibility to explicit Cargo.toml dependencies.
|
||||
"//visibility:public",
|
||||
])
|
||||
|
||||
licenses([
|
||||
"notice", # Apache-2.0 from expression "Apache-2.0 OR (ISC OR MIT)"
|
||||
])
|
||||
|
||||
# Generated targets
|
||||
|
||||
# buildifier: leave-alone
|
||||
rust_library(
|
||||
name = "ct_logs",
|
||||
crate_type = "lib",
|
||||
deps = [
|
||||
"@raze__sct__0_6_0//:sct",
|
||||
],
|
||||
srcs = glob(["**/*.rs"]),
|
||||
crate_root = "src/lib.rs",
|
||||
edition = "2018",
|
||||
rustc_flags = [
|
||||
"--cap-lints=allow",
|
||||
],
|
||||
version = "0.6.0",
|
||||
tags = [
|
||||
"cargo-raze",
|
||||
"manual",
|
||||
],
|
||||
crate_features = [
|
||||
],
|
||||
)
|
55
cargo/remote/ctor-0.1.16.BUILD.bazel
Normal file
55
cargo/remote/ctor-0.1.16.BUILD.bazel
Normal file
@ -0,0 +1,55 @@
|
||||
"""
|
||||
@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 "//cargo", which limits external
|
||||
# visibility to explicit Cargo.toml dependencies.
|
||||
"//visibility:public",
|
||||
])
|
||||
|
||||
licenses([
|
||||
"notice", # Apache-2.0 from expression "Apache-2.0 OR MIT"
|
||||
])
|
||||
|
||||
# Generated targets
|
||||
|
||||
# buildifier: leave-alone
|
||||
rust_library(
|
||||
name = "ctor",
|
||||
crate_type = "proc-macro",
|
||||
deps = [
|
||||
"@raze__quote__1_0_7//:quote",
|
||||
"@raze__syn__1_0_45//:syn",
|
||||
],
|
||||
srcs = glob(["**/*.rs"]),
|
||||
crate_root = "src/lib.rs",
|
||||
edition = "2018",
|
||||
rustc_flags = [
|
||||
"--cap-lints=allow",
|
||||
],
|
||||
version = "0.1.16",
|
||||
tags = [
|
||||
"cargo-raze",
|
||||
"manual",
|
||||
],
|
||||
crate_features = [
|
||||
],
|
||||
)
|
||||
# Unsupported target "example" with type "example" omitted
|
122
cargo/remote/derivative-2.1.1.BUILD.bazel
Normal file
122
cargo/remote/derivative-2.1.1.BUILD.bazel
Normal file
@ -0,0 +1,122 @@
|
||||
"""
|
||||
@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 "//cargo", which limits external
|
||||
# visibility to explicit Cargo.toml dependencies.
|
||||
"//visibility:public",
|
||||
])
|
||||
|
||||
licenses([
|
||||
"notice", # MIT from expression "MIT OR Apache-2.0"
|
||||
])
|
||||
|
||||
# Generated targets
|
||||
# Unsupported target "compile-test" with type "test" omitted
|
||||
|
||||
# buildifier: leave-alone
|
||||
rust_library(
|
||||
name = "derivative",
|
||||
crate_type = "proc-macro",
|
||||
deps = [
|
||||
"@raze__proc_macro2__1_0_24//:proc_macro2",
|
||||
"@raze__quote__1_0_7//:quote",
|
||||
"@raze__syn__1_0_45//:syn",
|
||||
],
|
||||
srcs = glob(["**/*.rs"]),
|
||||
crate_root = "src/lib.rs",
|
||||
edition = "2015",
|
||||
rustc_flags = [
|
||||
"--cap-lints=allow",
|
||||
],
|
||||
version = "2.1.1",
|
||||
tags = [
|
||||
"cargo-raze",
|
||||
"manual",
|
||||
],
|
||||
crate_features = [
|
||||
"use_core",
|
||||
],
|
||||
)
|
||||
# Unsupported target "derive-clone" with type "test" omitted
|
||||
# Unsupported target "derive-clone-generics" with type "test" omitted
|
||||
# Unsupported target "derive-debug" with type "test" omitted
|
||||
# Unsupported target "derive-debug-bounds" with type "test" omitted
|
||||
# Unsupported target "derive-debug-generics" with type "test" omitted
|
||||
# Unsupported target "derive-debug-transparent" with type "test" omitted
|
||||
# Unsupported target "derive-default" with type "test" omitted
|
||||
# Unsupported target "derive-default-bounds" with type "test" omitted
|
||||
# Unsupported target "derive-eq" with type "test" omitted
|
||||
# Unsupported target "derive-hash" with type "test" omitted
|
||||
# Unsupported target "derive-ord" with type "test" omitted
|
||||
# Unsupported target "derive-partial-eq" with type "test" omitted
|
||||
# Unsupported target "issue-37-turbofish" with type "test" omitted
|
||||
# Unsupported target "issue-55" with type "test" omitted
|
||||
# Unsupported target "issue-57" with type "test" omitted
|
||||
# Unsupported target "issue-58" with type "test" omitted
|
||||
# Unsupported target "issue-67" with type "test" omitted
|
||||
# Unsupported target "rustc-class-implement-traits" with type "test" omitted
|
||||
# Unsupported target "rustc-deriving-bounds" with type "test" omitted
|
||||
# Unsupported target "rustc-deriving-clone-array" with type "test" omitted
|
||||
# Unsupported target "rustc-deriving-clone-enum" with type "test" omitted
|
||||
# Unsupported target "rustc-deriving-clone-generic-enum" with type "test" omitted
|
||||
# Unsupported target "rustc-deriving-clone-generic-tuple-struct" with type "test" omitted
|
||||
# Unsupported target "rustc-deriving-clone-struct" with type "test" omitted
|
||||
# Unsupported target "rustc-deriving-clone-tuple-struct" with type "test" omitted
|
||||
# Unsupported target "rustc-deriving-cmp-generic-enum" with type "test" omitted
|
||||
# Unsupported target "rustc-deriving-cmp-generic-struct" with type "test" omitted
|
||||
# Unsupported target "rustc-deriving-cmp-generic-struct-enum" with type "test" omitted
|
||||
# Unsupported target "rustc-deriving-cmp-generic-tuple-struct" with type "test" omitted
|
||||
# Unsupported target "rustc-deriving-copyclone" with type "test" omitted
|
||||
# Unsupported target "rustc-deriving-default-box" with type "test" omitted
|
||||
# Unsupported target "rustc-deriving-enum-single-variant" with type "test" omitted
|
||||
# Unsupported target "rustc-deriving-hash" with type "test" omitted
|
||||
# Unsupported target "rustc-deriving-in-fn" with type "test" omitted
|
||||
# Unsupported target "rustc-deriving-meta" with type "test" omitted
|
||||
# Unsupported target "rustc-deriving-meta-multiple" with type "test" omitted
|
||||
# Unsupported target "rustc-deriving-show" with type "test" omitted
|
||||
# Unsupported target "rustc-deriving-show-2" with type "test" omitted
|
||||
# Unsupported target "rustc-deriving-via-extension-hash-enum" with type "test" omitted
|
||||
# Unsupported target "rustc-deriving-via-extension-hash-struct" with type "test" omitted
|
||||
# Unsupported target "rustc-deriving-via-extension-type-params" with type "test" omitted
|
||||
# Unsupported target "rustc-expr-copy" with type "test" omitted
|
||||
# Unsupported target "rustc-exterior" with type "test" omitted
|
||||
# Unsupported target "rustc-issue-12860" with type "test" omitted
|
||||
# Unsupported target "rustc-issue-13434" with type "test" omitted
|
||||
# Unsupported target "rustc-issue-16530" with type "test" omitted
|
||||
# Unsupported target "rustc-issue-19037" with type "test" omitted
|
||||
# Unsupported target "rustc-issue-19102" with type "test" omitted
|
||||
# Unsupported target "rustc-issue-19135" with type "test" omitted
|
||||
# Unsupported target "rustc-issue-19358" with type "test" omitted
|
||||
# Unsupported target "rustc-issue-21402" with type "test" omitted
|
||||
# Unsupported target "rustc-issue-23649-3" with type "test" omitted
|
||||
# Unsupported target "rustc-issue-24085" with type "test" omitted
|
||||
# Unsupported target "rustc-issue-25394" with type "test" omitted
|
||||
# Unsupported target "rustc-issue-28561" with type "test" omitted
|
||||
# Unsupported target "rustc-issue-29030" with type "test" omitted
|
||||
# Unsupported target "rustc-issue-29540" with type "test" omitted
|
||||
# Unsupported target "rustc-issue-29710" with type "test" omitted
|
||||
# Unsupported target "rustc-issue-32292" with type "test" omitted
|
||||
# Unsupported target "rustc-issue-3935" with type "test" omitted
|
||||
# Unsupported target "rustc-issue-42453" with type "test" omitted
|
||||
# Unsupported target "rustc-issue-58319" with type "test" omitted
|
||||
# Unsupported target "rustc-issue-6341" with type "test" omitted
|
||||
# Unsupported target "rustc-typeclasses-eq-example" with type "test" omitted
|
||||
# Unsupported target "rustc-zero-sized-btreemap-insert" with type "test" omitted
|
55
cargo/remote/digest-0.9.0.BUILD.bazel
Normal file
55
cargo/remote/digest-0.9.0.BUILD.bazel
Normal file
@ -0,0 +1,55 @@
|
||||
"""
|
||||
@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 "//cargo", which limits external
|
||||
# visibility to explicit Cargo.toml dependencies.
|
||||
"//visibility:public",
|
||||
])
|
||||
|
||||
licenses([
|
||||
"notice", # MIT from expression "MIT OR Apache-2.0"
|
||||
])
|
||||
|
||||
# Generated targets
|
||||
|
||||
# buildifier: leave-alone
|
||||
rust_library(
|
||||
name = "digest",
|
||||
crate_type = "lib",
|
||||
deps = [
|
||||
"@raze__generic_array__0_14_4//:generic_array",
|
||||
],
|
||||
srcs = glob(["**/*.rs"]),
|
||||
crate_root = "src/lib.rs",
|
||||
edition = "2018",
|
||||
rustc_flags = [
|
||||
"--cap-lints=allow",
|
||||
],
|
||||
version = "0.9.0",
|
||||
tags = [
|
||||
"cargo-raze",
|
||||
"manual",
|
||||
],
|
||||
crate_features = [
|
||||
"alloc",
|
||||
"std",
|
||||
],
|
||||
)
|
54
cargo/remote/dirs-2.0.2.BUILD.bazel
Normal file
54
cargo/remote/dirs-2.0.2.BUILD.bazel
Normal file
@ -0,0 +1,54 @@
|
||||
"""
|
||||
@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 "//cargo", which limits external
|
||||
# visibility to explicit Cargo.toml dependencies.
|
||||
"//visibility:public",
|
||||
])
|
||||
|
||||
licenses([
|
||||
"notice", # MIT from expression "MIT OR Apache-2.0"
|
||||
])
|
||||
|
||||
# Generated targets
|
||||
|
||||
# buildifier: leave-alone
|
||||
rust_library(
|
||||
name = "dirs",
|
||||
crate_type = "lib",
|
||||
deps = [
|
||||
"@raze__cfg_if__0_1_10//:cfg_if",
|
||||
"@raze__dirs_sys__0_3_5//:dirs_sys",
|
||||
],
|
||||
srcs = glob(["**/*.rs"]),
|
||||
crate_root = "src/lib.rs",
|
||||
edition = "2015",
|
||||
rustc_flags = [
|
||||
"--cap-lints=allow",
|
||||
],
|
||||
version = "2.0.2",
|
||||
tags = [
|
||||
"cargo-raze",
|
||||
"manual",
|
||||
],
|
||||
crate_features = [
|
||||
],
|
||||
)
|
76
cargo/remote/dirs-sys-0.3.5.BUILD.bazel
Normal file
76
cargo/remote/dirs-sys-0.3.5.BUILD.bazel
Normal file
@ -0,0 +1,76 @@
|
||||
"""
|
||||
@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 "//cargo", which limits external
|
||||
# visibility to explicit Cargo.toml dependencies.
|
||||
"//visibility:public",
|
||||
])
|
||||
|
||||
licenses([
|
||||
"notice", # MIT from expression "MIT OR Apache-2.0"
|
||||
])
|
||||
|
||||
# Generated targets
|
||||
|
||||
# buildifier: leave-alone
|
||||
rust_library(
|
||||
name = "dirs_sys",
|
||||
crate_type = "lib",
|
||||
deps = [
|
||||
] + selects.with_or({
|
||||
# cfg(unix)
|
||||
(
|
||||
"@io_bazel_rules_rust//rust/platform:aarch64-apple-ios",
|
||||
"@io_bazel_rules_rust//rust/platform:i686-apple-darwin",
|
||||
"@io_bazel_rules_rust//rust/platform:i686-unknown-linux-gnu",
|
||||
"@io_bazel_rules_rust//rust/platform:x86_64-apple-darwin",
|
||||
"@io_bazel_rules_rust//rust/platform:x86_64-apple-ios",
|
||||
"@io_bazel_rules_rust//rust/platform:x86_64-unknown-linux-gnu",
|
||||
): [
|
||||
"@raze__libc__0_2_79//:libc",
|
||||
],
|
||||
"//conditions:default": [],
|
||||
}) + selects.with_or({
|
||||
# cfg(windows)
|
||||
(
|
||||
"@io_bazel_rules_rust//rust/platform:i686-pc-windows-msvc",
|
||||
"@io_bazel_rules_rust//rust/platform:x86_64-pc-windows-msvc",
|
||||
): [
|
||||
"@raze__winapi__0_3_9//:winapi",
|
||||
],
|
||||
"//conditions:default": [],
|
||||
}),
|
||||
srcs = glob(["**/*.rs"]),
|
||||
crate_root = "src/lib.rs",
|
||||
edition = "2015",
|
||||
rustc_flags = [
|
||||
"--cap-lints=allow",
|
||||
],
|
||||
version = "0.3.5",
|
||||
tags = [
|
||||
"cargo-raze",
|
||||
"manual",
|
||||
],
|
||||
crate_features = [
|
||||
],
|
||||
aliases = {
|
||||
},
|
||||
)
|
54
cargo/remote/dtoa-0.4.6.BUILD.bazel
Normal file
54
cargo/remote/dtoa-0.4.6.BUILD.bazel
Normal file
@ -0,0 +1,54 @@
|
||||
"""
|
||||
@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 "//cargo", which limits external
|
||||
# visibility to explicit Cargo.toml dependencies.
|
||||
"//visibility:public",
|
||||
])
|
||||
|
||||
licenses([
|
||||
"notice", # MIT from expression "MIT OR Apache-2.0"
|
||||
])
|
||||
|
||||
# Generated targets
|
||||
# Unsupported target "bench" with type "bench" omitted
|
||||
|
||||
# buildifier: leave-alone
|
||||
rust_library(
|
||||
name = "dtoa",
|
||||
crate_type = "lib",
|
||||
deps = [
|
||||
],
|
||||
srcs = glob(["**/*.rs"]),
|
||||
crate_root = "src/lib.rs",
|
||||
edition = "2015",
|
||||
rustc_flags = [
|
||||
"--cap-lints=allow",
|
||||
],
|
||||
version = "0.4.6",
|
||||
tags = [
|
||||
"cargo-raze",
|
||||
"manual",
|
||||
],
|
||||
crate_features = [
|
||||
],
|
||||
)
|
||||
# Unsupported target "test" with type "test" omitted
|
54
cargo/remote/either-1.6.1.BUILD.bazel
Normal file
54
cargo/remote/either-1.6.1.BUILD.bazel
Normal file
@ -0,0 +1,54 @@
|
||||
"""
|
||||
@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 "//cargo", which limits external
|
||||
# visibility to explicit Cargo.toml dependencies.
|
||||
"//visibility:public",
|
||||
])
|
||||
|
||||
licenses([
|
||||
"notice", # MIT from expression "MIT OR Apache-2.0"
|
||||
])
|
||||
|
||||
# Generated targets
|
||||
|
||||
# buildifier: leave-alone
|
||||
rust_library(
|
||||
name = "either",
|
||||
crate_type = "lib",
|
||||
deps = [
|
||||
],
|
||||
srcs = glob(["**/*.rs"]),
|
||||
crate_root = "src/lib.rs",
|
||||
edition = "2015",
|
||||
rustc_flags = [
|
||||
"--cap-lints=allow",
|
||||
],
|
||||
version = "1.6.1",
|
||||
tags = [
|
||||
"cargo-raze",
|
||||
"manual",
|
||||
],
|
||||
crate_features = [
|
||||
"default",
|
||||
"use_std",
|
||||
],
|
||||
)
|
84
cargo/remote/encoding_rs-0.8.24.BUILD.bazel
Normal file
84
cargo/remote/encoding_rs-0.8.24.BUILD.bazel
Normal file
@ -0,0 +1,84 @@
|
||||
"""
|
||||
@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 "//cargo", which limits external
|
||||
# visibility to explicit Cargo.toml dependencies.
|
||||
"//visibility:public",
|
||||
])
|
||||
|
||||
licenses([
|
||||
"notice", # Apache-2.0 from expression "Apache-2.0 OR MIT"
|
||||
])
|
||||
|
||||
# Generated targets
|
||||
# buildifier: disable=load-on-top
|
||||
load(
|
||||
"@io_bazel_rules_rust//cargo:cargo_build_script.bzl",
|
||||
"cargo_build_script",
|
||||
)
|
||||
|
||||
# buildifier: leave-alone
|
||||
cargo_build_script(
|
||||
name = "encoding_rs_build_script",
|
||||
srcs = glob(["**/*.rs"]),
|
||||
crate_root = "build.rs",
|
||||
edition = "2015",
|
||||
deps = [
|
||||
],
|
||||
rustc_flags = [
|
||||
"--cap-lints=allow",
|
||||
],
|
||||
crate_features = [
|
||||
],
|
||||
build_script_env = {
|
||||
},
|
||||
data = glob(["**"]),
|
||||
tags = [
|
||||
"cargo-raze",
|
||||
"manual",
|
||||
],
|
||||
version = "0.8.24",
|
||||
visibility = ["//visibility:private"],
|
||||
)
|
||||
|
||||
|
||||
# buildifier: leave-alone
|
||||
rust_library(
|
||||
name = "encoding_rs",
|
||||
crate_type = "lib",
|
||||
deps = [
|
||||
":encoding_rs_build_script",
|
||||
"@raze__cfg_if__0_1_10//:cfg_if",
|
||||
],
|
||||
srcs = glob(["**/*.rs"]),
|
||||
crate_root = "src/lib.rs",
|
||||
edition = "2015",
|
||||
rustc_flags = [
|
||||
"--cap-lints=allow",
|
||||
],
|
||||
version = "0.8.24",
|
||||
tags = [
|
||||
"cargo-raze",
|
||||
"manual",
|
||||
],
|
||||
crate_features = [
|
||||
],
|
||||
)
|
72
cargo/remote/env_logger-0.7.1.BUILD.bazel
Normal file
72
cargo/remote/env_logger-0.7.1.BUILD.bazel
Normal file
@ -0,0 +1,72 @@
|
||||
"""
|
||||
@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 "//cargo", which limits external
|
||||
# visibility to explicit Cargo.toml dependencies.
|
||||
"//visibility:public",
|
||||
])
|
||||
|
||||
licenses([
|
||||
"notice", # MIT from expression "MIT OR Apache-2.0"
|
||||
])
|
||||
|
||||
# Generated targets
|
||||
# Unsupported target "custom_default_format" with type "example" omitted
|
||||
# Unsupported target "custom_format" with type "example" omitted
|
||||
# Unsupported target "custom_logger" with type "example" omitted
|
||||
# Unsupported target "default" with type "example" omitted
|
||||
# Unsupported target "direct_logger" with type "example" omitted
|
||||
|
||||
# buildifier: leave-alone
|
||||
rust_library(
|
||||
name = "env_logger",
|
||||
crate_type = "lib",
|
||||
deps = [
|
||||
"@raze__atty__0_2_14//:atty",
|
||||
"@raze__humantime__1_3_0//:humantime",
|
||||
"@raze__log__0_4_11//:log",
|
||||
"@raze__regex__1_4_1//:regex",
|
||||
"@raze__termcolor__1_1_0//:termcolor",
|
||||
],
|
||||
srcs = glob(["**/*.rs"]),
|
||||
crate_root = "src/lib.rs",
|
||||
edition = "2018",
|
||||
rustc_flags = [
|
||||
"--cap-lints=allow",
|
||||
],
|
||||
version = "0.7.1",
|
||||
tags = [
|
||||
"cargo-raze",
|
||||
"manual",
|
||||
],
|
||||
crate_features = [
|
||||
"atty",
|
||||
"default",
|
||||
"humantime",
|
||||
"regex",
|
||||
"termcolor",
|
||||
],
|
||||
)
|
||||
# Unsupported target "filters_from_code" with type "example" omitted
|
||||
# Unsupported target "init-twice-retains-filter" with type "test" omitted
|
||||
# Unsupported target "log-in-log" with type "test" omitted
|
||||
# Unsupported target "log_tls_dtors" with type "test" omitted
|
||||
# Unsupported target "regexp_filter" with type "test" omitted
|
68
cargo/remote/failure-0.1.8.BUILD.bazel
Normal file
68
cargo/remote/failure-0.1.8.BUILD.bazel
Normal file
@ -0,0 +1,68 @@
|
||||
"""
|
||||
@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 "//cargo", which limits external
|
||||
# visibility to explicit Cargo.toml dependencies.
|
||||
"//visibility:public",
|
||||
])
|
||||
|
||||
licenses([
|
||||
"notice", # MIT from expression "MIT OR Apache-2.0"
|
||||
])
|
||||
|
||||
# Generated targets
|
||||
# Unsupported target "bail_ensure" with type "example" omitted
|
||||
# Unsupported target "basic_fail" with type "test" omitted
|
||||
# Unsupported target "error_as_cause" with type "example" omitted
|
||||
# Unsupported target "fail_compat" with type "test" omitted
|
||||
|
||||
# buildifier: leave-alone
|
||||
rust_library(
|
||||
name = "failure",
|
||||
crate_type = "lib",
|
||||
deps = [
|
||||
"@raze__backtrace__0_3_53//:backtrace",
|
||||
],
|
||||
srcs = glob(["**/*.rs"]),
|
||||
crate_root = "src/lib.rs",
|
||||
edition = "2015",
|
||||
proc_macro_deps = [
|
||||
"@raze__failure_derive__0_1_8//:failure_derive",
|
||||
],
|
||||
rustc_flags = [
|
||||
"--cap-lints=allow",
|
||||
],
|
||||
version = "0.1.8",
|
||||
tags = [
|
||||
"cargo-raze",
|
||||
"manual",
|
||||
],
|
||||
crate_features = [
|
||||
"backtrace",
|
||||
"default",
|
||||
"derive",
|
||||
"failure_derive",
|
||||
"std",
|
||||
],
|
||||
)
|
||||
# Unsupported target "macro_trailing_comma" with type "test" omitted
|
||||
# Unsupported target "simple" with type "example" omitted
|
||||
# Unsupported target "string_custom_error_pattern" with type "example" omitted
|
92
cargo/remote/failure_derive-0.1.8.BUILD.bazel
Normal file
92
cargo/remote/failure_derive-0.1.8.BUILD.bazel
Normal file
@ -0,0 +1,92 @@
|
||||
"""
|
||||
@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 "//cargo", 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",
|
||||
)
|
||||
|
||||
# buildifier: leave-alone
|
||||
cargo_build_script(
|
||||
name = "failure_derive_build_script",
|
||||
srcs = glob(["**/*.rs"]),
|
||||
crate_root = "build.rs",
|
||||
edition = "2015",
|
||||
deps = [
|
||||
],
|
||||
rustc_flags = [
|
||||
"--cap-lints=allow",
|
||||
],
|
||||
crate_features = [
|
||||
],
|
||||
build_script_env = {
|
||||
},
|
||||
data = glob(["**"]),
|
||||
tags = [
|
||||
"cargo-raze",
|
||||
"manual",
|
||||
],
|
||||
version = "0.1.8",
|
||||
visibility = ["//visibility:private"],
|
||||
)
|
||||
|
||||
# Unsupported target "backtrace" with type "test" omitted
|
||||
# Unsupported target "custom_type_bounds" with type "test" omitted
|
||||
|
||||
# buildifier: leave-alone
|
||||
rust_library(
|
||||
name = "failure_derive",
|
||||
crate_type = "proc-macro",
|
||||
deps = [
|
||||
":failure_derive_build_script",
|
||||
"@raze__proc_macro2__1_0_24//:proc_macro2",
|
||||
"@raze__quote__1_0_7//:quote",
|
||||
"@raze__syn__1_0_45//:syn",
|
||||
"@raze__synstructure__0_12_4//:synstructure",
|
||||
],
|
||||
srcs = glob(["**/*.rs"]),
|
||||
crate_root = "src/lib.rs",
|
||||
edition = "2015",
|
||||
rustc_flags = [
|
||||
"--cap-lints=allow",
|
||||
],
|
||||
version = "0.1.8",
|
||||
tags = [
|
||||
"cargo-raze",
|
||||
"manual",
|
||||
],
|
||||
crate_features = [
|
||||
],
|
||||
)
|
||||
# Unsupported target "no_derive_display" with type "test" omitted
|
||||
# Unsupported target "tests" with type "test" omitted
|
||||
# Unsupported target "wraps" with type "test" omitted
|
54
cargo/remote/fallible-iterator-0.2.0.BUILD.bazel
Normal file
54
cargo/remote/fallible-iterator-0.2.0.BUILD.bazel
Normal file
@ -0,0 +1,54 @@
|
||||
"""
|
||||
@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 "//cargo", which limits external
|
||||
# visibility to explicit Cargo.toml dependencies.
|
||||
"//visibility:public",
|
||||
])
|
||||
|
||||
licenses([
|
||||
"notice", # MIT from expression "MIT OR Apache-2.0"
|
||||
])
|
||||
|
||||
# Generated targets
|
||||
|
||||
# buildifier: leave-alone
|
||||
rust_library(
|
||||
name = "fallible_iterator",
|
||||
crate_type = "lib",
|
||||
deps = [
|
||||
],
|
||||
srcs = glob(["**/*.rs"]),
|
||||
crate_root = "src/lib.rs",
|
||||
edition = "2018",
|
||||
rustc_flags = [
|
||||
"--cap-lints=allow",
|
||||
],
|
||||
version = "0.2.0",
|
||||
tags = [
|
||||
"cargo-raze",
|
||||
"manual",
|
||||
],
|
||||
crate_features = [
|
||||
"default",
|
||||
"std",
|
||||
],
|
||||
)
|
52
cargo/remote/fallible-streaming-iterator-0.1.9.BUILD.bazel
Normal file
52
cargo/remote/fallible-streaming-iterator-0.1.9.BUILD.bazel
Normal file
@ -0,0 +1,52 @@
|
||||
"""
|
||||
@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 "//cargo", which limits external
|
||||
# visibility to explicit Cargo.toml dependencies.
|
||||
"//visibility:public",
|
||||
])
|
||||
|
||||
licenses([
|
||||
"notice", # MIT from expression "MIT OR Apache-2.0"
|
||||
])
|
||||
|
||||
# Generated targets
|
||||
|
||||
# buildifier: leave-alone
|
||||
rust_library(
|
||||
name = "fallible_streaming_iterator",
|
||||
crate_type = "lib",
|
||||
deps = [
|
||||
],
|
||||
srcs = glob(["**/*.rs"]),
|
||||
crate_root = "src/lib.rs",
|
||||
edition = "2015",
|
||||
rustc_flags = [
|
||||
"--cap-lints=allow",
|
||||
],
|
||||
version = "0.1.9",
|
||||
tags = [
|
||||
"cargo-raze",
|
||||
"manual",
|
||||
],
|
||||
crate_features = [
|
||||
],
|
||||
)
|
53
cargo/remote/fixedbitset-0.2.0.BUILD.bazel
Normal file
53
cargo/remote/fixedbitset-0.2.0.BUILD.bazel
Normal file
@ -0,0 +1,53 @@
|
||||
"""
|
||||
@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 "//cargo", which limits external
|
||||
# visibility to explicit Cargo.toml dependencies.
|
||||
"//visibility:public",
|
||||
])
|
||||
|
||||
licenses([
|
||||
"notice", # MIT from expression "MIT OR Apache-2.0"
|
||||
])
|
||||
|
||||
# Generated targets
|
||||
# Unsupported target "benches" with type "bench" omitted
|
||||
|
||||
# buildifier: leave-alone
|
||||
rust_library(
|
||||
name = "fixedbitset",
|
||||
crate_type = "lib",
|
||||
deps = [
|
||||
],
|
||||
srcs = glob(["**/*.rs"]),
|
||||
crate_root = "src/lib.rs",
|
||||
edition = "2015",
|
||||
rustc_flags = [
|
||||
"--cap-lints=allow",
|
||||
],
|
||||
version = "0.2.0",
|
||||
tags = [
|
||||
"cargo-raze",
|
||||
"manual",
|
||||
],
|
||||
crate_features = [
|
||||
],
|
||||
)
|
87
cargo/remote/flate2-1.0.14.BUILD.bazel
Normal file
87
cargo/remote/flate2-1.0.14.BUILD.bazel
Normal file
@ -0,0 +1,87 @@
|
||||
"""
|
||||
@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 "//cargo", which limits external
|
||||
# visibility to explicit Cargo.toml dependencies.
|
||||
"//visibility:public",
|
||||
])
|
||||
|
||||
licenses([
|
||||
"notice", # MIT from expression "MIT OR Apache-2.0"
|
||||
])
|
||||
|
||||
# Generated targets
|
||||
# Unsupported target "async-reader" with type "test" omitted
|
||||
# Unsupported target "compress_file" with type "example" omitted
|
||||
# Unsupported target "deflatedecoder-bufread" with type "example" omitted
|
||||
# Unsupported target "deflatedecoder-read" with type "example" omitted
|
||||
# Unsupported target "deflatedecoder-write" with type "example" omitted
|
||||
# Unsupported target "deflateencoder-bufread" with type "example" omitted
|
||||
# Unsupported target "deflateencoder-read" with type "example" omitted
|
||||
# Unsupported target "deflateencoder-write" with type "example" omitted
|
||||
# Unsupported target "early-flush" with type "test" omitted
|
||||
# Unsupported target "empty-read" with type "test" omitted
|
||||
|
||||
# buildifier: leave-alone
|
||||
rust_library(
|
||||
name = "flate2",
|
||||
crate_type = "lib",
|
||||
deps = [
|
||||
"@raze__cfg_if__0_1_10//:cfg_if",
|
||||
"@raze__crc32fast__1_2_0//:crc32fast",
|
||||
"@raze__libc__0_2_79//:libc",
|
||||
"@raze__miniz_oxide__0_3_7//:miniz_oxide",
|
||||
],
|
||||
srcs = glob(["**/*.rs"]),
|
||||
crate_root = "src/lib.rs",
|
||||
edition = "2018",
|
||||
rustc_flags = [
|
||||
"--cap-lints=allow",
|
||||
],
|
||||
version = "1.0.14",
|
||||
tags = [
|
||||
"cargo-raze",
|
||||
"manual",
|
||||
],
|
||||
crate_features = [
|
||||
"default",
|
||||
"miniz_oxide",
|
||||
"rust_backend",
|
||||
],
|
||||
)
|
||||
# Unsupported target "gunzip" with type "test" omitted
|
||||
# Unsupported target "gzbuilder" with type "example" omitted
|
||||
# Unsupported target "gzdecoder-bufread" with type "example" omitted
|
||||
# Unsupported target "gzdecoder-read" with type "example" omitted
|
||||
# Unsupported target "gzdecoder-write" with type "example" omitted
|
||||
# Unsupported target "gzencoder-bufread" with type "example" omitted
|
||||
# Unsupported target "gzencoder-read" with type "example" omitted
|
||||
# Unsupported target "gzencoder-write" with type "example" omitted
|
||||
# Unsupported target "gzmultidecoder-bufread" with type "example" omitted
|
||||
# Unsupported target "gzmultidecoder-read" with type "example" omitted
|
||||
# Unsupported target "tokio" with type "test" omitted
|
||||
# Unsupported target "zero-write" with type "test" omitted
|
||||
# Unsupported target "zlibdecoder-bufread" with type "example" omitted
|
||||
# Unsupported target "zlibdecoder-read" with type "example" omitted
|
||||
# Unsupported target "zlibdecoder-write" with type "example" omitted
|
||||
# Unsupported target "zlibencoder-bufread" with type "example" omitted
|
||||
# Unsupported target "zlibencoder-read" with type "example" omitted
|
||||
# Unsupported target "zlibencoder-write" with type "example" omitted
|
56
cargo/remote/fluent-0.10.2.BUILD.bazel
Normal file
56
cargo/remote/fluent-0.10.2.BUILD.bazel
Normal file
@ -0,0 +1,56 @@
|
||||
"""
|
||||
@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 "//cargo", which limits external
|
||||
# visibility to explicit Cargo.toml dependencies.
|
||||
"//visibility:public",
|
||||
])
|
||||
|
||||
licenses([
|
||||
"notice", # Apache-2.0 from expression "Apache-2.0 OR MIT"
|
||||
])
|
||||
|
||||
# Generated targets
|
||||
|
||||
# buildifier: leave-alone
|
||||
rust_library(
|
||||
name = "fluent",
|
||||
crate_type = "lib",
|
||||
deps = [
|
||||
"@raze__fluent_bundle__0_10_2//:fluent_bundle",
|
||||
"@raze__unic_langid__0_8_0//:unic_langid",
|
||||
],
|
||||
srcs = glob(["**/*.rs"]),
|
||||
crate_root = "fluent/src/lib.rs",
|
||||
edition = "2018",
|
||||
rustc_flags = [
|
||||
"--cap-lints=allow",
|
||||
],
|
||||
version = "0.10.2",
|
||||
tags = [
|
||||
"cargo-raze",
|
||||
"manual",
|
||||
],
|
||||
crate_features = [
|
||||
],
|
||||
)
|
||||
# Unsupported target "macro" with type "test" omitted
|
||||
# Unsupported target "pseudo" with type "test" omitted
|
72
cargo/remote/fluent-bundle-0.10.2.BUILD.bazel
Normal file
72
cargo/remote/fluent-bundle-0.10.2.BUILD.bazel
Normal file
@ -0,0 +1,72 @@
|
||||
"""
|
||||
@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 "//cargo", which limits external
|
||||
# visibility to explicit Cargo.toml dependencies.
|
||||
"//visibility:public",
|
||||
])
|
||||
|
||||
licenses([
|
||||
"notice", # Apache-2.0 from expression "Apache-2.0 OR MIT"
|
||||
])
|
||||
|
||||
# Generated targets
|
||||
# Unsupported target "bundle" with type "test" omitted
|
||||
# Unsupported target "custom_formatter" with type "example" omitted
|
||||
# Unsupported target "custom_type" with type "example" omitted
|
||||
# Unsupported target "custom_types" with type "test" omitted
|
||||
# Unsupported target "external_arguments" with type "example" omitted
|
||||
|
||||
# buildifier: leave-alone
|
||||
rust_library(
|
||||
name = "fluent_bundle",
|
||||
crate_type = "lib",
|
||||
deps = [
|
||||
"@raze__fluent_langneg__0_12_1//:fluent_langneg",
|
||||
"@raze__fluent_syntax__0_9_3//:fluent_syntax",
|
||||
"@raze__intl_memoizer__0_3_0//:intl_memoizer",
|
||||
"@raze__intl_pluralrules__6_0_0//:intl_pluralrules",
|
||||
"@raze__rental__0_5_5//:rental",
|
||||
"@raze__smallvec__1_4_2//:smallvec",
|
||||
"@raze__unic_langid__0_8_0//:unic_langid",
|
||||
],
|
||||
srcs = glob(["**/*.rs"]),
|
||||
crate_root = "fluent-bundle/src/lib.rs",
|
||||
edition = "2018",
|
||||
rustc_flags = [
|
||||
"--cap-lints=allow",
|
||||
],
|
||||
version = "0.10.2",
|
||||
tags = [
|
||||
"cargo-raze",
|
||||
"manual",
|
||||
],
|
||||
crate_features = [
|
||||
],
|
||||
)
|
||||
# Unsupported target "functions" with type "example" omitted
|
||||
# Unsupported target "hello" with type "example" omitted
|
||||
# Unsupported target "message_reference" with type "example" omitted
|
||||
# Unsupported target "resolver" with type "bench" omitted
|
||||
# Unsupported target "resolver_fixtures" with type "test" omitted
|
||||
# Unsupported target "selector" with type "example" omitted
|
||||
# Unsupported target "simple-app" with type "example" omitted
|
||||
# Unsupported target "types_test" with type "test" omitted
|
57
cargo/remote/fluent-langneg-0.12.1.BUILD.bazel
Normal file
57
cargo/remote/fluent-langneg-0.12.1.BUILD.bazel
Normal file
@ -0,0 +1,57 @@
|
||||
"""
|
||||
@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 "//cargo", which limits external
|
||||
# visibility to explicit Cargo.toml dependencies.
|
||||
"//visibility:public",
|
||||
])
|
||||
|
||||
licenses([
|
||||
"notice", # Apache-2.0 from expression "Apache-2.0"
|
||||
])
|
||||
|
||||
# Generated targets
|
||||
|
||||
# buildifier: leave-alone
|
||||
rust_library(
|
||||
name = "fluent_langneg",
|
||||
crate_type = "lib",
|
||||
deps = [
|
||||
"@raze__unic_langid__0_8_0//:unic_langid",
|
||||
],
|
||||
srcs = glob(["**/*.rs"]),
|
||||
crate_root = "src/lib.rs",
|
||||
edition = "2018",
|
||||
rustc_flags = [
|
||||
"--cap-lints=allow",
|
||||
],
|
||||
version = "0.12.1",
|
||||
tags = [
|
||||
"cargo-raze",
|
||||
"manual",
|
||||
],
|
||||
crate_features = [
|
||||
"default",
|
||||
],
|
||||
)
|
||||
# Unsupported target "lib" with type "test" omitted
|
||||
# Unsupported target "negotiate" with type "bench" omitted
|
||||
# Unsupported target "negotiate" with type "example" omitted
|
81
cargo/remote/fluent-syntax-0.9.3.BUILD.bazel
Normal file
81
cargo/remote/fluent-syntax-0.9.3.BUILD.bazel
Normal file
@ -0,0 +1,81 @@
|
||||
"""
|
||||
@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 "//cargo", which limits external
|
||||
# visibility to explicit Cargo.toml dependencies.
|
||||
"//visibility:public",
|
||||
])
|
||||
|
||||
licenses([
|
||||
"notice", # Apache-2.0 from expression "Apache-2.0 OR MIT"
|
||||
])
|
||||
|
||||
# Generated targets
|
||||
|
||||
# buildifier: leave-alone
|
||||
rust_library(
|
||||
name = "fluent_syntax",
|
||||
crate_type = "lib",
|
||||
deps = [
|
||||
],
|
||||
srcs = glob(["**/*.rs"]),
|
||||
crate_root = "src/lib.rs",
|
||||
edition = "2018",
|
||||
rustc_flags = [
|
||||
"--cap-lints=allow",
|
||||
],
|
||||
version = "0.9.3",
|
||||
tags = [
|
||||
"cargo-raze",
|
||||
"manual",
|
||||
],
|
||||
crate_features = [
|
||||
"default",
|
||||
],
|
||||
)
|
||||
# Unsupported target "parser" with type "bench" omitted
|
||||
|
||||
# buildifier: leave-alone
|
||||
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_parser",
|
||||
deps = [
|
||||
# Binaries get an implicit dependency on their crate's lib
|
||||
":fluent_syntax",
|
||||
],
|
||||
srcs = glob(["**/*.rs"]),
|
||||
crate_root = "src/bin/parser.rs",
|
||||
edition = "2018",
|
||||
rustc_flags = [
|
||||
"--cap-lints=allow",
|
||||
],
|
||||
version = "0.9.3",
|
||||
tags = [
|
||||
"cargo-raze",
|
||||
"manual",
|
||||
],
|
||||
crate_features = [
|
||||
"default",
|
||||
],
|
||||
)
|
||||
# Unsupported target "parser_fixtures" with type "test" omitted
|
||||
# Unsupported target "unicode" with type "test" omitted
|
54
cargo/remote/fnv-1.0.7.BUILD.bazel
Normal file
54
cargo/remote/fnv-1.0.7.BUILD.bazel
Normal file
@ -0,0 +1,54 @@
|
||||
"""
|
||||
@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 "//cargo", which limits external
|
||||
# visibility to explicit Cargo.toml dependencies.
|
||||
"//visibility:public",
|
||||
])
|
||||
|
||||
licenses([
|
||||
"notice", # Apache-2.0 from expression "Apache-2.0 OR MIT"
|
||||
])
|
||||
|
||||
# Generated targets
|
||||
|
||||
# buildifier: leave-alone
|
||||
rust_library(
|
||||
name = "fnv",
|
||||
crate_type = "lib",
|
||||
deps = [
|
||||
],
|
||||
srcs = glob(["**/*.rs"]),
|
||||
crate_root = "lib.rs",
|
||||
edition = "2015",
|
||||
rustc_flags = [
|
||||
"--cap-lints=allow",
|
||||
],
|
||||
version = "1.0.7",
|
||||
tags = [
|
||||
"cargo-raze",
|
||||
"manual",
|
||||
],
|
||||
crate_features = [
|
||||
"default",
|
||||
"std",
|
||||
],
|
||||
)
|
54
cargo/remote/fuchsia-zircon-0.3.3.BUILD.bazel
Normal file
54
cargo/remote/fuchsia-zircon-0.3.3.BUILD.bazel
Normal file
@ -0,0 +1,54 @@
|
||||
"""
|
||||
@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 "//cargo", which limits external
|
||||
# visibility to explicit Cargo.toml dependencies.
|
||||
"//visibility:public",
|
||||
])
|
||||
|
||||
licenses([
|
||||
"notice", # BSD-3-Clause from expression "BSD-3-Clause"
|
||||
])
|
||||
|
||||
# Generated targets
|
||||
|
||||
# buildifier: leave-alone
|
||||
rust_library(
|
||||
name = "fuchsia_zircon",
|
||||
crate_type = "lib",
|
||||
deps = [
|
||||
"@raze__bitflags__1_2_1//:bitflags",
|
||||
"@raze__fuchsia_zircon_sys__0_3_3//:fuchsia_zircon_sys",
|
||||
],
|
||||
srcs = glob(["**/*.rs"]),
|
||||
crate_root = "src/lib.rs",
|
||||
edition = "2015",
|
||||
rustc_flags = [
|
||||
"--cap-lints=allow",
|
||||
],
|
||||
version = "0.3.3",
|
||||
tags = [
|
||||
"cargo-raze",
|
||||
"manual",
|
||||
],
|
||||
crate_features = [
|
||||
],
|
||||
)
|
53
cargo/remote/fuchsia-zircon-sys-0.3.3.BUILD.bazel
Normal file
53
cargo/remote/fuchsia-zircon-sys-0.3.3.BUILD.bazel
Normal file
@ -0,0 +1,53 @@
|
||||
"""
|
||||
@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 "//cargo", which limits external
|
||||
# visibility to explicit Cargo.toml dependencies.
|
||||
"//visibility:public",
|
||||
])
|
||||
|
||||
licenses([
|
||||
"notice", # BSD-3-Clause from expression "BSD-3-Clause"
|
||||
])
|
||||
|
||||
# Generated targets
|
||||
|
||||
# buildifier: leave-alone
|
||||
rust_library(
|
||||
name = "fuchsia_zircon_sys",
|
||||
crate_type = "lib",
|
||||
deps = [
|
||||
],
|
||||
srcs = glob(["**/*.rs"]),
|
||||
crate_root = "src/lib.rs",
|
||||
edition = "2015",
|
||||
rustc_flags = [
|
||||
"--cap-lints=allow",
|
||||
],
|
||||
version = "0.3.3",
|
||||
tags = [
|
||||
"cargo-raze",
|
||||
"manual",
|
||||
],
|
||||
crate_features = [
|
||||
],
|
||||
)
|
||||
# Unsupported target "hello" with type "example" omitted
|
114
cargo/remote/futures-0.3.6.BUILD.bazel
Normal file
114
cargo/remote/futures-0.3.6.BUILD.bazel
Normal file
@ -0,0 +1,114 @@
|
||||
"""
|
||||
@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 "//cargo", which limits external
|
||||
# visibility to explicit Cargo.toml dependencies.
|
||||
"//visibility:public",
|
||||
])
|
||||
|
||||
licenses([
|
||||
"notice", # MIT from expression "MIT OR Apache-2.0"
|
||||
])
|
||||
|
||||
# Generated targets
|
||||
# Unsupported target "_require_features" with type "test" omitted
|
||||
# Unsupported target "abortable" with type "test" omitted
|
||||
# Unsupported target "arc_wake" with type "test" omitted
|
||||
# Unsupported target "async_await_macros" with type "test" omitted
|
||||
# Unsupported target "atomic_waker" with type "test" omitted
|
||||
# Unsupported target "basic_combinators" with type "test" omitted
|
||||
# Unsupported target "buffer_unordered" with type "test" omitted
|
||||
# Unsupported target "compat" with type "test" omitted
|
||||
# Unsupported target "eager_drop" with type "test" omitted
|
||||
# Unsupported target "eventual" with type "test" omitted
|
||||
# Unsupported target "fuse" with type "test" omitted
|
||||
# Unsupported target "future_obj" with type "test" omitted
|
||||
# Unsupported target "future_try_flatten_stream" with type "test" omitted
|
||||
|
||||
# buildifier: leave-alone
|
||||
rust_library(
|
||||
name = "futures",
|
||||
crate_type = "lib",
|
||||
deps = [
|
||||
"@raze__futures_channel__0_3_6//:futures_channel",
|
||||
"@raze__futures_core__0_3_6//:futures_core",
|
||||
"@raze__futures_executor__0_3_6//:futures_executor",
|
||||
"@raze__futures_io__0_3_6//:futures_io",
|
||||
"@raze__futures_sink__0_3_6//:futures_sink",
|
||||
"@raze__futures_task__0_3_6//:futures_task",
|
||||
"@raze__futures_util__0_3_6//:futures_util",
|
||||
],
|
||||
srcs = glob(["**/*.rs"]),
|
||||
crate_root = "src/lib.rs",
|
||||
edition = "2018",
|
||||
rustc_flags = [
|
||||
"--cap-lints=allow",
|
||||
],
|
||||
version = "0.3.6",
|
||||
tags = [
|
||||
"cargo-raze",
|
||||
"manual",
|
||||
],
|
||||
crate_features = [
|
||||
"alloc",
|
||||
"async-await",
|
||||
"default",
|
||||
"executor",
|
||||
"futures-executor",
|
||||
"std",
|
||||
],
|
||||
)
|
||||
# Unsupported target "futures_ordered" with type "test" omitted
|
||||
# Unsupported target "futures_unordered" with type "test" omitted
|
||||
# Unsupported target "inspect" with type "test" omitted
|
||||
# Unsupported target "io_buf_reader" with type "test" omitted
|
||||
# Unsupported target "io_buf_writer" with type "test" omitted
|
||||
# Unsupported target "io_cursor" with type "test" omitted
|
||||
# Unsupported target "io_lines" with type "test" omitted
|
||||
# Unsupported target "io_read" with type "test" omitted
|
||||
# Unsupported target "io_read_exact" with type "test" omitted
|
||||
# Unsupported target "io_read_line" with type "test" omitted
|
||||
# Unsupported target "io_read_to_string" with type "test" omitted
|
||||
# Unsupported target "io_read_until" with type "test" omitted
|
||||
# Unsupported target "io_window" with type "test" omitted
|
||||
# Unsupported target "io_write" with type "test" omitted
|
||||
# Unsupported target "join_all" with type "test" omitted
|
||||
# Unsupported target "macro_comma_support" with type "test" omitted
|
||||
# Unsupported target "mutex" with type "test" omitted
|
||||
# Unsupported target "object_safety" with type "test" omitted
|
||||
# Unsupported target "oneshot" with type "test" omitted
|
||||
# Unsupported target "ready_queue" with type "test" omitted
|
||||
# Unsupported target "recurse" with type "test" omitted
|
||||
# Unsupported target "select_all" with type "test" omitted
|
||||
# Unsupported target "select_ok" with type "test" omitted
|
||||
# Unsupported target "shared" with type "test" omitted
|
||||
# Unsupported target "sink" with type "test" omitted
|
||||
# Unsupported target "sink_fanout" with type "test" omitted
|
||||
# Unsupported target "split" with type "test" omitted
|
||||
# Unsupported target "stream" with type "test" omitted
|
||||
# Unsupported target "stream_catch_unwind" with type "test" omitted
|
||||
# Unsupported target "stream_into_async_read" with type "test" omitted
|
||||
# Unsupported target "stream_peekable" with type "test" omitted
|
||||
# Unsupported target "stream_select_all" with type "test" omitted
|
||||
# Unsupported target "stream_select_next_some" with type "test" omitted
|
||||
# Unsupported target "try_join" with type "test" omitted
|
||||
# Unsupported target "try_join_all" with type "test" omitted
|
||||
# Unsupported target "unfold" with type "test" omitted
|
64
cargo/remote/futures-channel-0.3.6.BUILD.bazel
Normal file
64
cargo/remote/futures-channel-0.3.6.BUILD.bazel
Normal file
@ -0,0 +1,64 @@
|
||||
"""
|
||||
@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 "//cargo", which limits external
|
||||
# visibility to explicit Cargo.toml dependencies.
|
||||
"//visibility:public",
|
||||
])
|
||||
|
||||
licenses([
|
||||
"notice", # MIT from expression "MIT OR Apache-2.0"
|
||||
])
|
||||
|
||||
# Generated targets
|
||||
# Unsupported target "channel" with type "test" omitted
|
||||
|
||||
# buildifier: leave-alone
|
||||
rust_library(
|
||||
name = "futures_channel",
|
||||
crate_type = "lib",
|
||||
deps = [
|
||||
"@raze__futures_core__0_3_6//:futures_core",
|
||||
"@raze__futures_sink__0_3_6//:futures_sink",
|
||||
],
|
||||
srcs = glob(["**/*.rs"]),
|
||||
crate_root = "src/lib.rs",
|
||||
edition = "2018",
|
||||
rustc_flags = [
|
||||
"--cap-lints=allow",
|
||||
],
|
||||
version = "0.3.6",
|
||||
tags = [
|
||||
"cargo-raze",
|
||||
"manual",
|
||||
],
|
||||
crate_features = [
|
||||
"alloc",
|
||||
"default",
|
||||
"futures-sink",
|
||||
"sink",
|
||||
"std",
|
||||
],
|
||||
)
|
||||
# Unsupported target "mpsc" with type "test" omitted
|
||||
# Unsupported target "mpsc-close" with type "test" omitted
|
||||
# Unsupported target "oneshot" with type "test" omitted
|
||||
# Unsupported target "sync_mpsc" with type "bench" omitted
|
55
cargo/remote/futures-core-0.3.6.BUILD.bazel
Normal file
55
cargo/remote/futures-core-0.3.6.BUILD.bazel
Normal file
@ -0,0 +1,55 @@
|
||||
"""
|
||||
@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 "//cargo", which limits external
|
||||
# visibility to explicit Cargo.toml dependencies.
|
||||
"//visibility:public",
|
||||
])
|
||||
|
||||
licenses([
|
||||
"notice", # MIT from expression "MIT OR Apache-2.0"
|
||||
])
|
||||
|
||||
# Generated targets
|
||||
|
||||
# buildifier: leave-alone
|
||||
rust_library(
|
||||
name = "futures_core",
|
||||
crate_type = "lib",
|
||||
deps = [
|
||||
],
|
||||
srcs = glob(["**/*.rs"]),
|
||||
crate_root = "src/lib.rs",
|
||||
edition = "2018",
|
||||
rustc_flags = [
|
||||
"--cap-lints=allow",
|
||||
],
|
||||
version = "0.3.6",
|
||||
tags = [
|
||||
"cargo-raze",
|
||||
"manual",
|
||||
],
|
||||
crate_features = [
|
||||
"alloc",
|
||||
"default",
|
||||
"std",
|
||||
],
|
||||
)
|
58
cargo/remote/futures-executor-0.3.6.BUILD.bazel
Normal file
58
cargo/remote/futures-executor-0.3.6.BUILD.bazel
Normal file
@ -0,0 +1,58 @@
|
||||
"""
|
||||
@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 "//cargo", which limits external
|
||||
# visibility to explicit Cargo.toml dependencies.
|
||||
"//visibility:public",
|
||||
])
|
||||
|
||||
licenses([
|
||||
"notice", # MIT from expression "MIT OR Apache-2.0"
|
||||
])
|
||||
|
||||
# Generated targets
|
||||
|
||||
# buildifier: leave-alone
|
||||
rust_library(
|
||||
name = "futures_executor",
|
||||
crate_type = "lib",
|
||||
deps = [
|
||||
"@raze__futures_core__0_3_6//:futures_core",
|
||||
"@raze__futures_task__0_3_6//:futures_task",
|
||||
"@raze__futures_util__0_3_6//:futures_util",
|
||||
],
|
||||
srcs = glob(["**/*.rs"]),
|
||||
crate_root = "src/lib.rs",
|
||||
edition = "2018",
|
||||
rustc_flags = [
|
||||
"--cap-lints=allow",
|
||||
],
|
||||
version = "0.3.6",
|
||||
tags = [
|
||||
"cargo-raze",
|
||||
"manual",
|
||||
],
|
||||
crate_features = [
|
||||
"std",
|
||||
],
|
||||
)
|
||||
# Unsupported target "local_pool" with type "test" omitted
|
||||
# Unsupported target "thread_notify" with type "bench" omitted
|
53
cargo/remote/futures-io-0.3.6.BUILD.bazel
Normal file
53
cargo/remote/futures-io-0.3.6.BUILD.bazel
Normal file
@ -0,0 +1,53 @@
|
||||
"""
|
||||
@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 "//cargo", which limits external
|
||||
# visibility to explicit Cargo.toml dependencies.
|
||||
"//visibility:public",
|
||||
])
|
||||
|
||||
licenses([
|
||||
"notice", # MIT from expression "MIT OR Apache-2.0"
|
||||
])
|
||||
|
||||
# Generated targets
|
||||
|
||||
# buildifier: leave-alone
|
||||
rust_library(
|
||||
name = "futures_io",
|
||||
crate_type = "lib",
|
||||
deps = [
|
||||
],
|
||||
srcs = glob(["**/*.rs"]),
|
||||
crate_root = "src/lib.rs",
|
||||
edition = "2018",
|
||||
rustc_flags = [
|
||||
"--cap-lints=allow",
|
||||
],
|
||||
version = "0.3.6",
|
||||
tags = [
|
||||
"cargo-raze",
|
||||
"manual",
|
||||
],
|
||||
crate_features = [
|
||||
"std",
|
||||
],
|
||||
)
|
58
cargo/remote/futures-macro-0.3.6.BUILD.bazel
Normal file
58
cargo/remote/futures-macro-0.3.6.BUILD.bazel
Normal file
@ -0,0 +1,58 @@
|
||||
"""
|
||||
@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 "//cargo", which limits external
|
||||
# visibility to explicit Cargo.toml dependencies.
|
||||
"//visibility:public",
|
||||
])
|
||||
|
||||
licenses([
|
||||
"notice", # MIT from expression "MIT OR Apache-2.0"
|
||||
])
|
||||
|
||||
# Generated targets
|
||||
|
||||
# buildifier: leave-alone
|
||||
rust_library(
|
||||
name = "futures_macro",
|
||||
crate_type = "proc-macro",
|
||||
deps = [
|
||||
"@raze__proc_macro2__1_0_24//:proc_macro2",
|
||||
"@raze__quote__1_0_7//:quote",
|
||||
"@raze__syn__1_0_45//:syn",
|
||||
],
|
||||
srcs = glob(["**/*.rs"]),
|
||||
crate_root = "src/lib.rs",
|
||||
edition = "2018",
|
||||
proc_macro_deps = [
|
||||
"@raze__proc_macro_hack__0_5_18//:proc_macro_hack",
|
||||
],
|
||||
rustc_flags = [
|
||||
"--cap-lints=allow",
|
||||
],
|
||||
version = "0.3.6",
|
||||
tags = [
|
||||
"cargo-raze",
|
||||
"manual",
|
||||
],
|
||||
crate_features = [
|
||||
],
|
||||
)
|
55
cargo/remote/futures-sink-0.3.6.BUILD.bazel
Normal file
55
cargo/remote/futures-sink-0.3.6.BUILD.bazel
Normal file
@ -0,0 +1,55 @@
|
||||
"""
|
||||
@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 "//cargo", which limits external
|
||||
# visibility to explicit Cargo.toml dependencies.
|
||||
"//visibility:public",
|
||||
])
|
||||
|
||||
licenses([
|
||||
"notice", # MIT from expression "MIT OR Apache-2.0"
|
||||
])
|
||||
|
||||
# Generated targets
|
||||
|
||||
# buildifier: leave-alone
|
||||
rust_library(
|
||||
name = "futures_sink",
|
||||
crate_type = "lib",
|
||||
deps = [
|
||||
],
|
||||
srcs = glob(["**/*.rs"]),
|
||||
crate_root = "src/lib.rs",
|
||||
edition = "2018",
|
||||
rustc_flags = [
|
||||
"--cap-lints=allow",
|
||||
],
|
||||
version = "0.3.6",
|
||||
tags = [
|
||||
"cargo-raze",
|
||||
"manual",
|
||||
],
|
||||
crate_features = [
|
||||
"alloc",
|
||||
"default",
|
||||
"std",
|
||||
],
|
||||
)
|
56
cargo/remote/futures-task-0.3.6.BUILD.bazel
Normal file
56
cargo/remote/futures-task-0.3.6.BUILD.bazel
Normal file
@ -0,0 +1,56 @@
|
||||
"""
|
||||
@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 "//cargo", which limits external
|
||||
# visibility to explicit Cargo.toml dependencies.
|
||||
"//visibility:public",
|
||||
])
|
||||
|
||||
licenses([
|
||||
"notice", # MIT from expression "MIT OR Apache-2.0"
|
||||
])
|
||||
|
||||
# Generated targets
|
||||
|
||||
# buildifier: leave-alone
|
||||
rust_library(
|
||||
name = "futures_task",
|
||||
crate_type = "lib",
|
||||
deps = [
|
||||
"@raze__once_cell__1_4_1//:once_cell",
|
||||
],
|
||||
srcs = glob(["**/*.rs"]),
|
||||
crate_root = "src/lib.rs",
|
||||
edition = "2018",
|
||||
rustc_flags = [
|
||||
"--cap-lints=allow",
|
||||
],
|
||||
version = "0.3.6",
|
||||
tags = [
|
||||
"cargo-raze",
|
||||
"manual",
|
||||
],
|
||||
crate_features = [
|
||||
"alloc",
|
||||
"once_cell",
|
||||
"std",
|
||||
],
|
||||
)
|
83
cargo/remote/futures-util-0.3.6.BUILD.bazel
Normal file
83
cargo/remote/futures-util-0.3.6.BUILD.bazel
Normal file
@ -0,0 +1,83 @@
|
||||
"""
|
||||
@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 "//cargo", which limits external
|
||||
# visibility to explicit Cargo.toml dependencies.
|
||||
"//visibility:public",
|
||||
])
|
||||
|
||||
licenses([
|
||||
"notice", # MIT from expression "MIT OR Apache-2.0"
|
||||
])
|
||||
|
||||
# Generated targets
|
||||
|
||||
# buildifier: leave-alone
|
||||
rust_library(
|
||||
name = "futures_util",
|
||||
crate_type = "lib",
|
||||
deps = [
|
||||
"@raze__futures_channel__0_3_6//:futures_channel",
|
||||
"@raze__futures_core__0_3_6//:futures_core",
|
||||
"@raze__futures_io__0_3_6//:futures_io",
|
||||
"@raze__futures_sink__0_3_6//:futures_sink",
|
||||
"@raze__futures_task__0_3_6//:futures_task",
|
||||
"@raze__memchr__2_3_3//:memchr",
|
||||
"@raze__pin_project__0_4_27//:pin_project",
|
||||
"@raze__pin_utils__0_1_0//:pin_utils",
|
||||
"@raze__proc_macro_nested__0_1_6//:proc_macro_nested",
|
||||
"@raze__slab__0_4_2//:slab",
|
||||
],
|
||||
srcs = glob(["**/*.rs"]),
|
||||
crate_root = "src/lib.rs",
|
||||
edition = "2018",
|
||||
proc_macro_deps = [
|
||||
"@raze__futures_macro__0_3_6//:futures_macro",
|
||||
"@raze__proc_macro_hack__0_5_18//:proc_macro_hack",
|
||||
],
|
||||
rustc_flags = [
|
||||
"--cap-lints=allow",
|
||||
],
|
||||
version = "0.3.6",
|
||||
tags = [
|
||||
"cargo-raze",
|
||||
"manual",
|
||||
],
|
||||
crate_features = [
|
||||
"alloc",
|
||||
"async-await",
|
||||
"async-await-macro",
|
||||
"channel",
|
||||
"default",
|
||||
"futures-channel",
|
||||
"futures-io",
|
||||
"futures-macro",
|
||||
"futures-sink",
|
||||
"io",
|
||||
"memchr",
|
||||
"proc-macro-hack",
|
||||
"proc-macro-nested",
|
||||
"sink",
|
||||
"slab",
|
||||
"std",
|
||||
],
|
||||
)
|
||||
# Unsupported target "futures_unordered" with type "bench" omitted
|
54
cargo/remote/fxhash-0.2.1.BUILD.bazel
Normal file
54
cargo/remote/fxhash-0.2.1.BUILD.bazel
Normal file
@ -0,0 +1,54 @@
|
||||
"""
|
||||
@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 "//cargo", which limits external
|
||||
# visibility to explicit Cargo.toml dependencies.
|
||||
"//visibility:public",
|
||||
])
|
||||
|
||||
licenses([
|
||||
"notice", # Apache-2.0 from expression "Apache-2.0 OR MIT"
|
||||
])
|
||||
|
||||
# Generated targets
|
||||
# Unsupported target "fxhash" with type "bench" omitted
|
||||
|
||||
# buildifier: leave-alone
|
||||
rust_library(
|
||||
name = "fxhash",
|
||||
crate_type = "lib",
|
||||
deps = [
|
||||
"@raze__byteorder__1_3_4//:byteorder",
|
||||
],
|
||||
srcs = glob(["**/*.rs"]),
|
||||
crate_root = "lib.rs",
|
||||
edition = "2015",
|
||||
rustc_flags = [
|
||||
"--cap-lints=allow",
|
||||
],
|
||||
version = "0.2.1",
|
||||
tags = [
|
||||
"cargo-raze",
|
||||
"manual",
|
||||
],
|
||||
crate_features = [
|
||||
],
|
||||
)
|
91
cargo/remote/generic-array-0.14.4.BUILD.bazel
Normal file
91
cargo/remote/generic-array-0.14.4.BUILD.bazel
Normal file
@ -0,0 +1,91 @@
|
||||
"""
|
||||
@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 "//cargo", which limits external
|
||||
# visibility to explicit Cargo.toml dependencies.
|
||||
"//visibility:public",
|
||||
])
|
||||
|
||||
licenses([
|
||||
"notice", # MIT from expression "MIT"
|
||||
])
|
||||
|
||||
# Generated targets
|
||||
# buildifier: disable=load-on-top
|
||||
load(
|
||||
"@io_bazel_rules_rust//cargo:cargo_build_script.bzl",
|
||||
"cargo_build_script",
|
||||
)
|
||||
|
||||
# buildifier: leave-alone
|
||||
cargo_build_script(
|
||||
name = "generic_array_build_script",
|
||||
srcs = glob(["**/*.rs"]),
|
||||
crate_root = "build.rs",
|
||||
edition = "2015",
|
||||
deps = [
|
||||
"@raze__version_check__0_9_2//:version_check",
|
||||
],
|
||||
rustc_flags = [
|
||||
"--cap-lints=allow",
|
||||
],
|
||||
crate_features = [
|
||||
],
|
||||
build_script_env = {
|
||||
},
|
||||
data = glob(["**"]),
|
||||
tags = [
|
||||
"cargo-raze",
|
||||
"manual",
|
||||
],
|
||||
version = "0.14.4",
|
||||
visibility = ["//visibility:private"],
|
||||
)
|
||||
|
||||
# Unsupported target "arr" with type "test" omitted
|
||||
|
||||
# buildifier: leave-alone
|
||||
rust_library(
|
||||
name = "generic_array",
|
||||
crate_type = "lib",
|
||||
deps = [
|
||||
":generic_array_build_script",
|
||||
"@raze__typenum__1_12_0//:typenum",
|
||||
],
|
||||
srcs = glob(["**/*.rs"]),
|
||||
crate_root = "src/lib.rs",
|
||||
edition = "2015",
|
||||
rustc_flags = [
|
||||
"--cap-lints=allow",
|
||||
],
|
||||
version = "0.14.4",
|
||||
tags = [
|
||||
"cargo-raze",
|
||||
"manual",
|
||||
],
|
||||
crate_features = [
|
||||
],
|
||||
)
|
||||
# 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
|
115
cargo/remote/getrandom-0.1.15.BUILD.bazel
Normal file
115
cargo/remote/getrandom-0.1.15.BUILD.bazel
Normal file
@ -0,0 +1,115 @@
|
||||
"""
|
||||
@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 "//cargo", 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",
|
||||
)
|
||||
|
||||
# buildifier: leave-alone
|
||||
cargo_build_script(
|
||||
name = "getrandom_build_script",
|
||||
srcs = glob(["**/*.rs"]),
|
||||
crate_root = "build.rs",
|
||||
edition = "2018",
|
||||
deps = [
|
||||
] + selects.with_or({
|
||||
# cfg(unix)
|
||||
(
|
||||
"@io_bazel_rules_rust//rust/platform:aarch64-apple-ios",
|
||||
"@io_bazel_rules_rust//rust/platform:i686-apple-darwin",
|
||||
"@io_bazel_rules_rust//rust/platform:i686-unknown-linux-gnu",
|
||||
"@io_bazel_rules_rust//rust/platform:x86_64-apple-darwin",
|
||||
"@io_bazel_rules_rust//rust/platform:x86_64-apple-ios",
|
||||
"@io_bazel_rules_rust//rust/platform:x86_64-unknown-linux-gnu",
|
||||
): [
|
||||
],
|
||||
"//conditions:default": [],
|
||||
}),
|
||||
rustc_flags = [
|
||||
"--cap-lints=allow",
|
||||
],
|
||||
crate_features = [
|
||||
"std",
|
||||
],
|
||||
build_script_env = {
|
||||
},
|
||||
data = glob(["**"]),
|
||||
tags = [
|
||||
"cargo-raze",
|
||||
"manual",
|
||||
],
|
||||
version = "0.1.15",
|
||||
visibility = ["//visibility:private"],
|
||||
)
|
||||
|
||||
# Unsupported target "common" with type "test" omitted
|
||||
|
||||
# buildifier: leave-alone
|
||||
rust_library(
|
||||
name = "getrandom",
|
||||
crate_type = "lib",
|
||||
deps = [
|
||||
":getrandom_build_script",
|
||||
"@raze__cfg_if__0_1_10//:cfg_if",
|
||||
] + selects.with_or({
|
||||
# cfg(unix)
|
||||
(
|
||||
"@io_bazel_rules_rust//rust/platform:aarch64-apple-ios",
|
||||
"@io_bazel_rules_rust//rust/platform:i686-apple-darwin",
|
||||
"@io_bazel_rules_rust//rust/platform:i686-unknown-linux-gnu",
|
||||
"@io_bazel_rules_rust//rust/platform:x86_64-apple-darwin",
|
||||
"@io_bazel_rules_rust//rust/platform:x86_64-apple-ios",
|
||||
"@io_bazel_rules_rust//rust/platform:x86_64-unknown-linux-gnu",
|
||||
): [
|
||||
"@raze__libc__0_2_79//:libc",
|
||||
],
|
||||
"//conditions:default": [],
|
||||
}),
|
||||
srcs = glob(["**/*.rs"]),
|
||||
crate_root = "src/lib.rs",
|
||||
edition = "2018",
|
||||
rustc_flags = [
|
||||
"--cap-lints=allow",
|
||||
],
|
||||
version = "0.1.15",
|
||||
tags = [
|
||||
"cargo-raze",
|
||||
"manual",
|
||||
],
|
||||
crate_features = [
|
||||
"std",
|
||||
],
|
||||
aliases = {
|
||||
},
|
||||
)
|
||||
# Unsupported target "mod" with type "bench" omitted
|
55
cargo/remote/ghost-0.1.2.BUILD.bazel
Normal file
55
cargo/remote/ghost-0.1.2.BUILD.bazel
Normal file
@ -0,0 +1,55 @@
|
||||
"""
|
||||
@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 "//cargo", which limits external
|
||||
# visibility to explicit Cargo.toml dependencies.
|
||||
"//visibility:public",
|
||||
])
|
||||
|
||||
licenses([
|
||||
"notice", # MIT from expression "MIT OR Apache-2.0"
|
||||
])
|
||||
|
||||
# Generated targets
|
||||
|
||||
# buildifier: leave-alone
|
||||
rust_library(
|
||||
name = "ghost",
|
||||
crate_type = "proc-macro",
|
||||
deps = [
|
||||
"@raze__proc_macro2__1_0_24//:proc_macro2",
|
||||
"@raze__quote__1_0_7//:quote",
|
||||
"@raze__syn__1_0_45//:syn",
|
||||
],
|
||||
srcs = glob(["**/*.rs"]),
|
||||
crate_root = "src/lib.rs",
|
||||
edition = "2018",
|
||||
rustc_flags = [
|
||||
"--cap-lints=allow",
|
||||
],
|
||||
version = "0.1.2",
|
||||
tags = [
|
||||
"cargo-raze",
|
||||
"manual",
|
||||
],
|
||||
crate_features = [
|
||||
],
|
||||
)
|
60
cargo/remote/gimli-0.22.0.BUILD.bazel
Normal file
60
cargo/remote/gimli-0.22.0.BUILD.bazel
Normal file
@ -0,0 +1,60 @@
|
||||
"""
|
||||
@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 "//cargo", which limits external
|
||||
# visibility to explicit Cargo.toml dependencies.
|
||||
"//visibility:public",
|
||||
])
|
||||
|
||||
licenses([
|
||||
"notice", # Apache-2.0 from expression "Apache-2.0 OR MIT"
|
||||
])
|
||||
|
||||
# Generated targets
|
||||
# Unsupported target "bench" with type "bench" omitted
|
||||
# Unsupported target "convert_self" with type "test" omitted
|
||||
# Unsupported target "dwarf-validate" with type "example" omitted
|
||||
# Unsupported target "dwarfdump" with type "example" omitted
|
||||
|
||||
# buildifier: leave-alone
|
||||
rust_library(
|
||||
name = "gimli",
|
||||
crate_type = "lib",
|
||||
deps = [
|
||||
],
|
||||
srcs = glob(["**/*.rs"]),
|
||||
crate_root = "src/lib.rs",
|
||||
edition = "2018",
|
||||
rustc_flags = [
|
||||
"--cap-lints=allow",
|
||||
],
|
||||
version = "0.22.0",
|
||||
tags = [
|
||||
"cargo-raze",
|
||||
"manual",
|
||||
],
|
||||
crate_features = [
|
||||
"read",
|
||||
],
|
||||
)
|
||||
# Unsupported target "parse_self" with type "test" omitted
|
||||
# Unsupported target "simple" with type "example" omitted
|
||||
# Unsupported target "simple_line" with type "example" omitted
|
66
cargo/remote/h2-0.2.6.BUILD.bazel
Normal file
66
cargo/remote/h2-0.2.6.BUILD.bazel
Normal file
@ -0,0 +1,66 @@
|
||||
"""
|
||||
@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 "//cargo", which limits external
|
||||
# visibility to explicit Cargo.toml dependencies.
|
||||
"//visibility:public",
|
||||
])
|
||||
|
||||
licenses([
|
||||
"notice", # MIT from expression "MIT"
|
||||
])
|
||||
|
||||
# Generated targets
|
||||
# Unsupported target "akamai" with type "example" omitted
|
||||
# Unsupported target "client" with type "example" omitted
|
||||
|
||||
# buildifier: leave-alone
|
||||
rust_library(
|
||||
name = "h2",
|
||||
crate_type = "lib",
|
||||
deps = [
|
||||
"@raze__bytes__0_5_6//:bytes",
|
||||
"@raze__fnv__1_0_7//:fnv",
|
||||
"@raze__futures_core__0_3_6//:futures_core",
|
||||
"@raze__futures_sink__0_3_6//:futures_sink",
|
||||
"@raze__futures_util__0_3_6//:futures_util",
|
||||
"@raze__http__0_2_1//:http",
|
||||
"@raze__indexmap__1_6_0//:indexmap",
|
||||
"@raze__slab__0_4_2//:slab",
|
||||
"@raze__tokio__0_2_22//:tokio",
|
||||
"@raze__tokio_util__0_3_1//:tokio_util",
|
||||
"@raze__tracing__0_1_21//:tracing",
|
||||
],
|
||||
srcs = glob(["**/*.rs"]),
|
||||
crate_root = "src/lib.rs",
|
||||
edition = "2018",
|
||||
rustc_flags = [
|
||||
"--cap-lints=allow",
|
||||
],
|
||||
version = "0.2.6",
|
||||
tags = [
|
||||
"cargo-raze",
|
||||
"manual",
|
||||
],
|
||||
crate_features = [
|
||||
],
|
||||
)
|
||||
# Unsupported target "server" with type "example" omitted
|
58
cargo/remote/hashbrown-0.9.1.BUILD.bazel
Normal file
58
cargo/remote/hashbrown-0.9.1.BUILD.bazel
Normal file
@ -0,0 +1,58 @@
|
||||
"""
|
||||
@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 "//cargo", which limits external
|
||||
# visibility to explicit Cargo.toml dependencies.
|
||||
"//visibility:public",
|
||||
])
|
||||
|
||||
licenses([
|
||||
"notice", # Apache-2.0 from expression "Apache-2.0 OR MIT"
|
||||
])
|
||||
|
||||
# Generated targets
|
||||
# Unsupported target "bench" with type "bench" omitted
|
||||
|
||||
# buildifier: leave-alone
|
||||
rust_library(
|
||||
name = "hashbrown",
|
||||
crate_type = "lib",
|
||||
deps = [
|
||||
],
|
||||
srcs = glob(["**/*.rs"]),
|
||||
crate_root = "src/lib.rs",
|
||||
edition = "2018",
|
||||
rustc_flags = [
|
||||
"--cap-lints=allow",
|
||||
],
|
||||
version = "0.9.1",
|
||||
tags = [
|
||||
"cargo-raze",
|
||||
"manual",
|
||||
],
|
||||
crate_features = [
|
||||
"raw",
|
||||
],
|
||||
)
|
||||
# Unsupported target "hasher" with type "test" omitted
|
||||
# Unsupported target "rayon" with type "test" omitted
|
||||
# Unsupported target "serde" with type "test" omitted
|
||||
# Unsupported target "set" with type "test" omitted
|
53
cargo/remote/heck-0.3.1.BUILD.bazel
Normal file
53
cargo/remote/heck-0.3.1.BUILD.bazel
Normal file
@ -0,0 +1,53 @@
|
||||
"""
|
||||
@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 "//cargo", which limits external
|
||||
# visibility to explicit Cargo.toml dependencies.
|
||||
"//visibility:public",
|
||||
])
|
||||
|
||||
licenses([
|
||||
"notice", # MIT from expression "MIT OR Apache-2.0"
|
||||
])
|
||||
|
||||
# Generated targets
|
||||
|
||||
# buildifier: leave-alone
|
||||
rust_library(
|
||||
name = "heck",
|
||||
crate_type = "lib",
|
||||
deps = [
|
||||
"@raze__unicode_segmentation__1_6_0//:unicode_segmentation",
|
||||
],
|
||||
srcs = glob(["**/*.rs"]),
|
||||
crate_root = "src/lib.rs",
|
||||
edition = "2015",
|
||||
rustc_flags = [
|
||||
"--cap-lints=allow",
|
||||
],
|
||||
version = "0.3.1",
|
||||
tags = [
|
||||
"cargo-raze",
|
||||
"manual",
|
||||
],
|
||||
crate_features = [
|
||||
],
|
||||
)
|
54
cargo/remote/hermit-abi-0.1.17.BUILD.bazel
Normal file
54
cargo/remote/hermit-abi-0.1.17.BUILD.bazel
Normal file
@ -0,0 +1,54 @@
|
||||
"""
|
||||
@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 "//cargo", which limits external
|
||||
# visibility to explicit Cargo.toml dependencies.
|
||||
"//visibility:public",
|
||||
])
|
||||
|
||||
licenses([
|
||||
"notice", # MIT from expression "MIT OR Apache-2.0"
|
||||
])
|
||||
|
||||
# Generated targets
|
||||
|
||||
# buildifier: leave-alone
|
||||
rust_library(
|
||||
name = "hermit_abi",
|
||||
crate_type = "lib",
|
||||
deps = [
|
||||
"@raze__libc__0_2_79//:libc",
|
||||
],
|
||||
srcs = glob(["**/*.rs"]),
|
||||
crate_root = "src/lib.rs",
|
||||
edition = "2018",
|
||||
rustc_flags = [
|
||||
"--cap-lints=allow",
|
||||
],
|
||||
version = "0.1.17",
|
||||
tags = [
|
||||
"cargo-raze",
|
||||
"manual",
|
||||
],
|
||||
crate_features = [
|
||||
"default",
|
||||
],
|
||||
)
|
57
cargo/remote/hex-0.4.2.BUILD.bazel
Normal file
57
cargo/remote/hex-0.4.2.BUILD.bazel
Normal file
@ -0,0 +1,57 @@
|
||||
"""
|
||||
@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 "//cargo", which limits external
|
||||
# visibility to explicit Cargo.toml dependencies.
|
||||
"//visibility:public",
|
||||
])
|
||||
|
||||
licenses([
|
||||
"notice", # MIT from expression "MIT OR Apache-2.0"
|
||||
])
|
||||
|
||||
# Generated targets
|
||||
# Unsupported target "hex" with type "bench" omitted
|
||||
|
||||
# buildifier: leave-alone
|
||||
rust_library(
|
||||
name = "hex",
|
||||
crate_type = "lib",
|
||||
deps = [
|
||||
],
|
||||
srcs = glob(["**/*.rs"]),
|
||||
crate_root = "src/lib.rs",
|
||||
edition = "2018",
|
||||
rustc_flags = [
|
||||
"--cap-lints=allow",
|
||||
],
|
||||
version = "0.4.2",
|
||||
tags = [
|
||||
"cargo-raze",
|
||||
"manual",
|
||||
],
|
||||
crate_features = [
|
||||
"default",
|
||||
"std",
|
||||
],
|
||||
)
|
||||
# Unsupported target "serde" with type "test" omitted
|
||||
# Unsupported target "version-number" with type "test" omitted
|
54
cargo/remote/htmlescape-0.3.1.BUILD.bazel
Normal file
54
cargo/remote/htmlescape-0.3.1.BUILD.bazel
Normal file
@ -0,0 +1,54 @@
|
||||
"""
|
||||
@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 "//cargo", which limits external
|
||||
# visibility to explicit Cargo.toml dependencies.
|
||||
"//visibility:public",
|
||||
])
|
||||
|
||||
licenses([
|
||||
"notice", # Apache-2.0 from expression "Apache-2.0 OR (MIT OR MPL-2.0)"
|
||||
])
|
||||
|
||||
# Generated targets
|
||||
# Unsupported target "bench" with type "bench" omitted
|
||||
|
||||
# buildifier: leave-alone
|
||||
rust_library(
|
||||
name = "htmlescape",
|
||||
crate_type = "lib",
|
||||
deps = [
|
||||
],
|
||||
srcs = glob(["**/*.rs"]),
|
||||
crate_root = "src/lib.rs",
|
||||
edition = "2015",
|
||||
rustc_flags = [
|
||||
"--cap-lints=allow",
|
||||
],
|
||||
version = "0.3.1",
|
||||
tags = [
|
||||
"cargo-raze",
|
||||
"manual",
|
||||
],
|
||||
crate_features = [
|
||||
],
|
||||
)
|
||||
# Unsupported target "test" with type "test" omitted
|
62
cargo/remote/http-0.2.1.BUILD.bazel
Normal file
62
cargo/remote/http-0.2.1.BUILD.bazel
Normal file
@ -0,0 +1,62 @@
|
||||
"""
|
||||
@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 "//cargo", which limits external
|
||||
# visibility to explicit Cargo.toml dependencies.
|
||||
"//visibility:public",
|
||||
])
|
||||
|
||||
licenses([
|
||||
"notice", # MIT from expression "MIT OR Apache-2.0"
|
||||
])
|
||||
|
||||
# Generated targets
|
||||
# Unsupported target "header_map" with type "bench" omitted
|
||||
# Unsupported target "header_map" with type "test" omitted
|
||||
# Unsupported target "header_map_fuzz" with type "test" omitted
|
||||
# Unsupported target "header_name" with type "bench" omitted
|
||||
# Unsupported target "header_value" with type "bench" omitted
|
||||
|
||||
# buildifier: leave-alone
|
||||
rust_library(
|
||||
name = "http",
|
||||
crate_type = "lib",
|
||||
deps = [
|
||||
"@raze__bytes__0_5_6//:bytes",
|
||||
"@raze__fnv__1_0_7//:fnv",
|
||||
"@raze__itoa__0_4_6//:itoa",
|
||||
],
|
||||
srcs = glob(["**/*.rs"]),
|
||||
crate_root = "src/lib.rs",
|
||||
edition = "2018",
|
||||
rustc_flags = [
|
||||
"--cap-lints=allow",
|
||||
],
|
||||
version = "0.2.1",
|
||||
tags = [
|
||||
"cargo-raze",
|
||||
"manual",
|
||||
],
|
||||
crate_features = [
|
||||
],
|
||||
)
|
||||
# Unsupported target "status_code" with type "test" omitted
|
||||
# Unsupported target "uri" with type "bench" omitted
|
55
cargo/remote/http-body-0.3.1.BUILD.bazel
Normal file
55
cargo/remote/http-body-0.3.1.BUILD.bazel
Normal file
@ -0,0 +1,55 @@
|
||||
"""
|
||||
@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 "//cargo", which limits external
|
||||
# visibility to explicit Cargo.toml dependencies.
|
||||
"//visibility:public",
|
||||
])
|
||||
|
||||
licenses([
|
||||
"notice", # MIT from expression "MIT"
|
||||
])
|
||||
|
||||
# Generated targets
|
||||
|
||||
# buildifier: leave-alone
|
||||
rust_library(
|
||||
name = "http_body",
|
||||
crate_type = "lib",
|
||||
deps = [
|
||||
"@raze__bytes__0_5_6//:bytes",
|
||||
"@raze__http__0_2_1//:http",
|
||||
],
|
||||
srcs = glob(["**/*.rs"]),
|
||||
crate_root = "src/lib.rs",
|
||||
edition = "2018",
|
||||
rustc_flags = [
|
||||
"--cap-lints=allow",
|
||||
],
|
||||
version = "0.3.1",
|
||||
tags = [
|
||||
"cargo-raze",
|
||||
"manual",
|
||||
],
|
||||
crate_features = [
|
||||
],
|
||||
)
|
||||
# Unsupported target "is_end_stream" with type "test" omitted
|
Some files were not shown because too many files have changed in this diff Show More
Loading…
Reference in New Issue
Block a user