Merge branch 'master' into rework-search-parser
Conflicts: rslib/src/search/sqlwriter.rs
This commit is contained in:
commit
c185fb966b
6
.github/workflows/checks.yml
vendored
6
.github/workflows/checks.yml
vendored
@ -119,13 +119,13 @@ jobs:
|
||||
uses: actions/cache@v2
|
||||
with:
|
||||
path: ${{ matrix.BAZEL_DISK }}
|
||||
key: ${{ runner.os }}-disk-1-${{ hashFiles('ts/yarn.lock') }}-${{ hashFiles('pip/requirements.txt') }}-${{ hashFiles('cargo/Cargo.lock') }}-${{ hashFiles('**/BUILD.bazel') }}-${{ hashFiles('**/*.bzl') }}
|
||||
key: ${{ runner.os }}-disk-2-${{ hashFiles('ts/yarn.lock') }}-${{ hashFiles('pip/requirements.txt') }}-${{ hashFiles('cargo/Cargo.lock') }}-${{ hashFiles('**/BUILD.bazel') }}-${{ hashFiles('**/*.bzl') }}
|
||||
|
||||
- name: Cache repo
|
||||
uses: actions/cache@v2
|
||||
with:
|
||||
path: ${{ matrix.BAZEL_REPO }}
|
||||
key: ${{ runner.os }}-repo-1-${{ hashFiles('ts/yarn.lock') }}-${{ hashFiles('pip/requirements.txt') }}-${{ hashFiles('cargo/Cargo.lock') }}-${{ hashFiles('**/BUILD.bazel') }}-${{ hashFiles('**/*.bzl') }}
|
||||
key: ${{ runner.os }}-repo-2-${{ hashFiles('ts/yarn.lock') }}-${{ hashFiles('pip/requirements.txt') }}-${{ hashFiles('cargo/Cargo.lock') }}-${{ hashFiles('**/BUILD.bazel') }}-${{ hashFiles('**/*.bzl') }}
|
||||
|
||||
################################
|
||||
# Linux
|
||||
@ -139,7 +139,7 @@ jobs:
|
||||
|
||||
set -x
|
||||
sudo apt update
|
||||
sudo apt install portaudio19-dev gettext
|
||||
sudo apt install portaudio19-dev
|
||||
curl -L https://github.com/bazelbuild/bazelisk/releases/download/v1.7.4/bazelisk-linux-amd64 -o ./bazel && \
|
||||
chmod +x ./bazel
|
||||
|
||||
|
@ -1,6 +1,6 @@
|
||||
"""
|
||||
@generated
|
||||
cargo-raze workspace build file.
|
||||
cargo-raze generated Bazel file.
|
||||
|
||||
DO NOT EDIT! Replaced on runs of cargo-raze
|
||||
"""
|
||||
@ -23,7 +23,7 @@ alias(
|
||||
|
||||
alias(
|
||||
name = "async_compression",
|
||||
actual = "@raze__async_compression__0_3_5//:async_compression",
|
||||
actual = "@raze__async_compression__0_3_6//:async_compression",
|
||||
tags = [
|
||||
"cargo-raze",
|
||||
"manual",
|
||||
@ -59,7 +59,7 @@ alias(
|
||||
|
||||
alias(
|
||||
name = "coarsetime",
|
||||
actual = "@raze__coarsetime__0_1_14//:coarsetime",
|
||||
actual = "@raze__coarsetime__0_1_16//:coarsetime",
|
||||
tags = [
|
||||
"cargo-raze",
|
||||
"manual",
|
||||
@ -113,7 +113,7 @@ alias(
|
||||
|
||||
alias(
|
||||
name = "futures",
|
||||
actual = "@raze__futures__0_3_7//:futures",
|
||||
actual = "@raze__futures__0_3_8//:futures",
|
||||
tags = [
|
||||
"cargo-raze",
|
||||
"manual",
|
||||
@ -203,7 +203,7 @@ alias(
|
||||
|
||||
alias(
|
||||
name = "once_cell",
|
||||
actual = "@raze__once_cell__1_4_1//:once_cell",
|
||||
actual = "@raze__once_cell__1_5_2//:once_cell",
|
||||
tags = [
|
||||
"cargo-raze",
|
||||
"manual",
|
||||
@ -401,7 +401,7 @@ alias(
|
||||
|
||||
alias(
|
||||
name = "tokio",
|
||||
actual = "@raze__tokio__0_2_22//:tokio",
|
||||
actual = "@raze__tokio__0_2_23//:tokio",
|
||||
tags = [
|
||||
"cargo-raze",
|
||||
"manual",
|
||||
@ -428,7 +428,7 @@ alias(
|
||||
|
||||
alias(
|
||||
name = "unicode_normalization",
|
||||
actual = "@raze__unicode_normalization__0_1_13//:unicode_normalization",
|
||||
actual = "@raze__unicode_normalization__0_1_14//:unicode_normalization",
|
||||
tags = [
|
||||
"cargo-raze",
|
||||
"manual",
|
||||
@ -452,3 +452,5 @@ alias(
|
||||
"manual",
|
||||
],
|
||||
)
|
||||
|
||||
exports_files(["licenses.json"])
|
||||
|
191
cargo/BUILD.reqwest.bazel
Normal file
191
cargo/BUILD.reqwest.bazel
Normal file
@ -0,0 +1,191 @@
|
||||
"""
|
||||
We currently need to manually maintain this file, so we can use
|
||||
ring on Linux, and native-tls on other platforms. We use ring on
|
||||
Linux because the wheels need the SSL library statically linked in,
|
||||
and native-tls-vendored is broken in Bazel due to sandboxing. We
|
||||
prefer native-tls on other platforms because it reduces the resulting
|
||||
binary size, and we get free updates from the OS.
|
||||
|
||||
Building openssl statically ourselves and linking it in would be
|
||||
another valid solution, but we would need to ensure we keep it up
|
||||
to date.
|
||||
|
||||
update.py takes care of keeping the referenced versions
|
||||
up to date for us.
|
||||
"""
|
||||
|
||||
# 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 "blocking" with type "example" omitted
|
||||
|
||||
# Unsupported target "form" with type "example" omitted
|
||||
|
||||
# Unsupported target "json_dynamic" with type "example" omitted
|
||||
|
||||
# Unsupported target "json_typed" with type "example" omitted
|
||||
|
||||
# Unsupported target "simple" with type "example" omitted
|
||||
|
||||
# Unsupported target "tor_socks" with type "example" omitted
|
||||
|
||||
rust_library(
|
||||
name = "reqwest",
|
||||
srcs = glob(["**/*.rs"]),
|
||||
aliases = selects.with_or({
|
||||
# ring on Linux
|
||||
(
|
||||
"@io_bazel_rules_rust//rust/platform:x86_64-unknown-linux-gnu",
|
||||
): {},
|
||||
"//conditions:default": {
|
||||
# native-tls
|
||||
"@raze__native_tls__0_2_6//:native_tls": "native_tls_crate",
|
||||
},
|
||||
}),
|
||||
crate_features = [
|
||||
"__tls",
|
||||
"json",
|
||||
"serde_json",
|
||||
"socks",
|
||||
"stream",
|
||||
"tokio-socks",
|
||||
] + selects.with_or({
|
||||
# ring on Linux
|
||||
(
|
||||
"@io_bazel_rules_rust//rust/platform:x86_64-unknown-linux-gnu",
|
||||
): [
|
||||
"__rustls",
|
||||
"hyper-rustls",
|
||||
"rustls",
|
||||
"rustls-tls",
|
||||
"rustls-tls-webpki-roots",
|
||||
"tokio-rustls",
|
||||
"webpki-roots",
|
||||
],
|
||||
# native-tls on other platforms
|
||||
"//conditions:default": [
|
||||
"default-tls",
|
||||
"hyper-tls",
|
||||
"native-tls",
|
||||
"native-tls-crate",
|
||||
"tokio-tls",
|
||||
],
|
||||
}),
|
||||
crate_root = "src/lib.rs",
|
||||
crate_type = "lib",
|
||||
edition = "2018",
|
||||
rustc_flags = [
|
||||
"--cap-lints=allow",
|
||||
],
|
||||
tags = [
|
||||
"cargo-raze",
|
||||
"manual",
|
||||
],
|
||||
version = "0.10.8",
|
||||
# buildifier: leave-alone
|
||||
deps = [
|
||||
"@raze__bytes__0_5_6//:bytes",
|
||||
"@raze__http__0_2_1//:http",
|
||||
"@raze__hyper_timeout__0_3_1//:hyper_timeout",
|
||||
"@raze__mime_guess__2_0_3//:mime_guess",
|
||||
"@raze__serde__1_0_117//:serde",
|
||||
"@raze__serde_json__1_0_59//:serde_json",
|
||||
"@raze__serde_urlencoded__0_6_1//:serde_urlencoded",
|
||||
"@raze__url__2_2_0//:url",
|
||||
] + selects.with_or({
|
||||
# cfg(not(target_arch = "wasm32"))
|
||||
(
|
||||
"@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-pc-windows-msvc",
|
||||
"@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-pc-windows-msvc",
|
||||
"@io_bazel_rules_rust//rust/platform:x86_64-unknown-linux-gnu",
|
||||
): [
|
||||
"@raze__base64__0_13_0//:base64",
|
||||
"@raze__encoding_rs__0_8_26//:encoding_rs",
|
||||
"@raze__futures_core__0_3_8//:futures_core",
|
||||
"@raze__futures_util__0_3_8//:futures_util",
|
||||
"@raze__http_body__0_3_1//:http_body",
|
||||
"@raze__hyper__0_13_9//:hyper",
|
||||
"@raze__ipnet__2_3_0//:ipnet",
|
||||
"@raze__lazy_static__1_4_0//:lazy_static",
|
||||
"@raze__log__0_4_11//:log",
|
||||
"@raze__mime__0_3_16//:mime",
|
||||
"@raze__percent_encoding__2_1_0//:percent_encoding",
|
||||
"@raze__pin_project_lite__0_1_11//:pin_project_lite",
|
||||
"@raze__tokio__0_2_23//:tokio",
|
||||
"@raze__tokio_socks__0_3_0//:tokio_socks",
|
||||
],
|
||||
"//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__winreg__0_7_0//:winreg",
|
||||
],
|
||||
"//conditions:default": [],
|
||||
}) + selects.with_or({
|
||||
# ring on Linux
|
||||
(
|
||||
"@io_bazel_rules_rust//rust/platform:x86_64-unknown-linux-gnu",
|
||||
): [
|
||||
"@raze__hyper_rustls__0_21_0//:hyper_rustls",
|
||||
"@raze__rustls__0_18_1//:rustls",
|
||||
"@raze__tokio_rustls__0_14_1//:tokio_rustls",
|
||||
"@raze__webpki_roots__0_20_0//:webpki_roots",
|
||||
],
|
||||
# native-tls on other platforms
|
||||
"//conditions:default": [
|
||||
"@raze__hyper_tls__0_4_3//:hyper_tls",
|
||||
"@raze__native_tls__0_2_6//:native_tls",
|
||||
"@raze__tokio_tls__0_3_1//:tokio_tls",
|
||||
],
|
||||
}),
|
||||
)
|
||||
|
||||
# Unsupported target "badssl" with type "test" omitted
|
||||
|
||||
# Unsupported target "blocking" with type "test" omitted
|
||||
|
||||
# Unsupported target "brotli" with type "test" omitted
|
||||
|
||||
# Unsupported target "client" with type "test" omitted
|
||||
|
||||
# Unsupported target "cookie" with type "test" omitted
|
||||
|
||||
# Unsupported target "gzip" with type "test" omitted
|
||||
|
||||
# Unsupported target "multipart" with type "test" omitted
|
||||
|
||||
# Unsupported target "proxy" with type "test" omitted
|
||||
|
||||
# Unsupported target "redirect" with type "test" omitted
|
||||
|
||||
# Unsupported target "timeouts" with type "test" omitted
|
238
cargo/Cargo.lock
generated
238
cargo/Cargo.lock
generated
@ -23,9 +23,9 @@ checksum = "f6789e291be47ace86a60303502173d84af8327e3627ecf334356ee0f87a164c"
|
||||
|
||||
[[package]]
|
||||
name = "aho-corasick"
|
||||
version = "0.7.14"
|
||||
version = "0.7.15"
|
||||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||
checksum = "b476ce7103678b0c6d3d395dbbae31d48ff910bd28be979ba5d48c6351131d0d"
|
||||
checksum = "7404febffaa47dac81aa44dba71523c9d069b1bdc50a77db41195149e17f68e5"
|
||||
dependencies = [
|
||||
"memchr",
|
||||
]
|
||||
@ -112,9 +112,9 @@ dependencies = [
|
||||
|
||||
[[package]]
|
||||
name = "async-compression"
|
||||
version = "0.3.5"
|
||||
version = "0.3.6"
|
||||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||
checksum = "9021768bcce77296b64648cc7a7460e3df99979b97ed5c925c38d1cc83778d98"
|
||||
checksum = "fb1ff21a63d3262af46b9f33a826a8d134e2d0d9b2179c86034948b732ea8b2a"
|
||||
dependencies = [
|
||||
"bytes 0.5.6",
|
||||
"flate2",
|
||||
@ -228,9 +228,9 @@ checksum = "0e4cec68f03f32e44924783795810fa50a7035d8c8ebe78580ad7e6c703fba38"
|
||||
|
||||
[[package]]
|
||||
name = "cc"
|
||||
version = "1.0.61"
|
||||
version = "1.0.62"
|
||||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||
checksum = "ed67cbde08356238e75fc4656be4749481eeffb09e19f320a25237d5221c985d"
|
||||
checksum = "f1770ced377336a88a67c473594ccc14eca6f4559217c34f64aac8f83d641b40"
|
||||
|
||||
[[package]]
|
||||
name = "cfg-if"
|
||||
@ -268,8 +268,9 @@ dependencies = [
|
||||
|
||||
[[package]]
|
||||
name = "coarsetime"
|
||||
version = "0.1.14"
|
||||
source = "git+https://github.com/ankitects/rust-coarsetime.git?tag=anki-2020-11-03#f9e2c86216f0f4803bc75404828318fc206dab29"
|
||||
version = "0.1.16"
|
||||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||
checksum = "0cbaaa2e4f75bd7eff165a3d24345a374efddbe0e90be326e62048937e56f65a"
|
||||
dependencies = [
|
||||
"lazy_static",
|
||||
"libc",
|
||||
@ -284,9 +285,9 @@ checksum = "245097e9a4535ee1e3e3931fcfcd55a796a44c643e8596ff6566d68f09b87bbc"
|
||||
|
||||
[[package]]
|
||||
name = "core-foundation"
|
||||
version = "0.7.0"
|
||||
version = "0.9.1"
|
||||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||
checksum = "57d24c7a13c43e870e37c1556b74555437870a04514f7685f5b354e090567171"
|
||||
checksum = "0a89e2ae426ea83155dccf10c0fa6b1463ef6d5fcb44cee0b224a408fa640a62"
|
||||
dependencies = [
|
||||
"core-foundation-sys",
|
||||
"libc",
|
||||
@ -294,9 +295,9 @@ dependencies = [
|
||||
|
||||
[[package]]
|
||||
name = "core-foundation-sys"
|
||||
version = "0.7.0"
|
||||
version = "0.8.2"
|
||||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||
checksum = "b3a71ab494c0b5b860bdc8407ae08978052417070c2ced38573a9157ad75b8ac"
|
||||
checksum = "ea221b5284a47e40033bf9b66f35f984ec0ea2931eb03505246cd27a963f981b"
|
||||
|
||||
[[package]]
|
||||
name = "crc32fast"
|
||||
@ -542,9 +543,9 @@ dependencies = [
|
||||
|
||||
[[package]]
|
||||
name = "fluent-bundle"
|
||||
version = "0.13.1"
|
||||
version = "0.13.2"
|
||||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||
checksum = "a79916560098f0a57215a489e37b7fc83088949eab7f7977dcc329b254d50c17"
|
||||
checksum = "092ebd50cd3f8a6d664bf156e3550d2f7232fbe446da6707d727cca53f707ce2"
|
||||
dependencies = [
|
||||
"fluent-langneg",
|
||||
"fluent-syntax",
|
||||
@ -576,6 +577,31 @@ version = "1.0.7"
|
||||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||
checksum = "3f9eec918d3f24069decb9af1554cad7c880e2da24a9afd88aca000531ab82c1"
|
||||
|
||||
[[package]]
|
||||
name = "foreign-types"
|
||||
version = "0.3.2"
|
||||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||
checksum = "f6f339eb8adc052cd2ca78910fda869aefa38d22d5cb648e6485e4d3fc06f3b1"
|
||||
dependencies = [
|
||||
"foreign-types-shared",
|
||||
]
|
||||
|
||||
[[package]]
|
||||
name = "foreign-types-shared"
|
||||
version = "0.1.1"
|
||||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||
checksum = "00b0228411908ca8685dba7fc2cdd70ec9990a6e753e89b6ac91a84c40fbaf4b"
|
||||
|
||||
[[package]]
|
||||
name = "form_urlencoded"
|
||||
version = "1.0.0"
|
||||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||
checksum = "ece68d15c92e84fa4f19d3780f1294e5ca82a78a6d515f1efaabcc144688be00"
|
||||
dependencies = [
|
||||
"matches",
|
||||
"percent-encoding",
|
||||
]
|
||||
|
||||
[[package]]
|
||||
name = "fuchsia-zircon"
|
||||
version = "0.3.3"
|
||||
@ -594,9 +620,9 @@ checksum = "3dcaa9ae7725d12cdb85b3ad99a434db70b468c09ded17e012d86b5c1010f7a7"
|
||||
|
||||
[[package]]
|
||||
name = "futures"
|
||||
version = "0.3.7"
|
||||
version = "0.3.8"
|
||||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||
checksum = "95314d38584ffbfda215621d723e0a3906f032e03ae5551e650058dac83d4797"
|
||||
checksum = "9b3b0c040a1fe6529d30b3c5944b280c7f0dcb2930d2c3062bca967b602583d0"
|
||||
dependencies = [
|
||||
"futures-channel",
|
||||
"futures-core",
|
||||
@ -609,9 +635,9 @@ dependencies = [
|
||||
|
||||
[[package]]
|
||||
name = "futures-channel"
|
||||
version = "0.3.7"
|
||||
version = "0.3.8"
|
||||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||
checksum = "0448174b01148032eed37ac4aed28963aaaa8cfa93569a08e5b479bbc6c2c151"
|
||||
checksum = "4b7109687aa4e177ef6fe84553af6280ef2778bdb7783ba44c9dc3399110fe64"
|
||||
dependencies = [
|
||||
"futures-core",
|
||||
"futures-sink",
|
||||
@ -619,15 +645,15 @@ dependencies = [
|
||||
|
||||
[[package]]
|
||||
name = "futures-core"
|
||||
version = "0.3.7"
|
||||
version = "0.3.8"
|
||||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||
checksum = "18eaa56102984bed2c88ea39026cff3ce3b4c7f508ca970cedf2450ea10d4e46"
|
||||
checksum = "847ce131b72ffb13b6109a221da9ad97a64cbe48feb1028356b836b47b8f1748"
|
||||
|
||||
[[package]]
|
||||
name = "futures-executor"
|
||||
version = "0.3.7"
|
||||
version = "0.3.8"
|
||||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||
checksum = "f5f8e0c9258abaea85e78ebdda17ef9666d390e987f006be6080dfe354b708cb"
|
||||
checksum = "4caa2b2b68b880003057c1dd49f1ed937e38f22fcf6c212188a121f08cf40a65"
|
||||
dependencies = [
|
||||
"futures-core",
|
||||
"futures-task",
|
||||
@ -636,15 +662,15 @@ dependencies = [
|
||||
|
||||
[[package]]
|
||||
name = "futures-io"
|
||||
version = "0.3.7"
|
||||
version = "0.3.8"
|
||||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||
checksum = "6e1798854a4727ff944a7b12aa999f58ce7aa81db80d2dfaaf2ba06f065ddd2b"
|
||||
checksum = "611834ce18aaa1bd13c4b374f5d653e1027cf99b6b502584ff8c9a64413b30bb"
|
||||
|
||||
[[package]]
|
||||
name = "futures-macro"
|
||||
version = "0.3.7"
|
||||
version = "0.3.8"
|
||||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||
checksum = "e36fccf3fc58563b4a14d265027c627c3b665d7fed489427e88e7cc929559efe"
|
||||
checksum = "77408a692f1f97bcc61dc001d752e00643408fbc922e4d634c655df50d595556"
|
||||
dependencies = [
|
||||
"proc-macro-hack",
|
||||
"proc-macro2",
|
||||
@ -654,24 +680,24 @@ dependencies = [
|
||||
|
||||
[[package]]
|
||||
name = "futures-sink"
|
||||
version = "0.3.7"
|
||||
version = "0.3.8"
|
||||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||
checksum = "0e3ca3f17d6e8804ae5d3df7a7d35b2b3a6fe89dac84b31872720fc3060a0b11"
|
||||
checksum = "f878195a49cee50e006b02b93cf7e0a95a38ac7b776b4c4d9cc1207cd20fcb3d"
|
||||
|
||||
[[package]]
|
||||
name = "futures-task"
|
||||
version = "0.3.7"
|
||||
version = "0.3.8"
|
||||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||
checksum = "96d502af37186c4fef99453df03e374683f8a1eec9dcc1e66b3b82dc8278ce3c"
|
||||
checksum = "7c554eb5bf48b2426c4771ab68c6b14468b6e76cc90996f528c3338d761a4d0d"
|
||||
dependencies = [
|
||||
"once_cell",
|
||||
]
|
||||
|
||||
[[package]]
|
||||
name = "futures-util"
|
||||
version = "0.3.7"
|
||||
version = "0.3.8"
|
||||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||
checksum = "abcb44342f62e6f3e8ac427b8aa815f724fd705dfad060b18ac7866c15bb8e34"
|
||||
checksum = "d304cff4a7b99cfb7986f7d43fbe93d175e72e704a8860787cc95e9ffd85cbd2"
|
||||
dependencies = [
|
||||
"futures-channel",
|
||||
"futures-core",
|
||||
@ -898,6 +924,19 @@ dependencies = [
|
||||
"tokio-io-timeout",
|
||||
]
|
||||
|
||||
[[package]]
|
||||
name = "hyper-tls"
|
||||
version = "0.4.3"
|
||||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||
checksum = "d979acc56dcb5b8dddba3917601745e877576475aa046df3226eabdecef78eed"
|
||||
dependencies = [
|
||||
"bytes 0.5.6",
|
||||
"hyper",
|
||||
"native-tls",
|
||||
"tokio",
|
||||
"tokio-tls",
|
||||
]
|
||||
|
||||
[[package]]
|
||||
name = "idna"
|
||||
version = "0.2.0"
|
||||
@ -1177,6 +1216,24 @@ version = "0.8.2"
|
||||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||
checksum = "1255076139a83bb467426e7f8d0134968a8118844faa755985e077cf31850333"
|
||||
|
||||
[[package]]
|
||||
name = "native-tls"
|
||||
version = "0.2.6"
|
||||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||
checksum = "6fcc7939b5edc4e4f86b1b4a04bb1498afaaf871b1a6691838ed06fcb48d3a3f"
|
||||
dependencies = [
|
||||
"lazy_static",
|
||||
"libc",
|
||||
"log",
|
||||
"openssl",
|
||||
"openssl-probe",
|
||||
"openssl-sys",
|
||||
"schannel",
|
||||
"security-framework",
|
||||
"security-framework-sys",
|
||||
"tempfile",
|
||||
]
|
||||
|
||||
[[package]]
|
||||
name = "net2"
|
||||
version = "0.2.35"
|
||||
@ -1274,9 +1331,23 @@ checksum = "8d3b63360ec3cb337817c2dbd47ab4a0f170d285d8e5a2064600f3def1402397"
|
||||
|
||||
[[package]]
|
||||
name = "once_cell"
|
||||
version = "1.4.1"
|
||||
version = "1.5.2"
|
||||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||
checksum = "260e51e7efe62b592207e9e13a68e43692a7a279171d6ba57abd208bf23645ad"
|
||||
checksum = "13bd41f508810a131401606d54ac32a467c97172d74ba7662562ebba5ad07fa0"
|
||||
|
||||
[[package]]
|
||||
name = "openssl"
|
||||
version = "0.10.30"
|
||||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||
checksum = "8d575eff3665419f9b83678ff2815858ad9d11567e082f5ac1814baba4e2bcb4"
|
||||
dependencies = [
|
||||
"bitflags",
|
||||
"cfg-if 0.1.10",
|
||||
"foreign-types",
|
||||
"lazy_static",
|
||||
"libc",
|
||||
"openssl-sys",
|
||||
]
|
||||
|
||||
[[package]]
|
||||
name = "openssl-probe"
|
||||
@ -1284,6 +1355,19 @@ version = "0.1.2"
|
||||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||
checksum = "77af24da69f9d9341038eba93a073b1fdaaa1b788221b00a69bce9e762cb32de"
|
||||
|
||||
[[package]]
|
||||
name = "openssl-sys"
|
||||
version = "0.9.58"
|
||||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||
checksum = "a842db4709b604f0fe5d1170ae3565899be2ad3d9cbc72dedc789ac0511f78de"
|
||||
dependencies = [
|
||||
"autocfg",
|
||||
"cc",
|
||||
"libc",
|
||||
"pkg-config",
|
||||
"vcpkg",
|
||||
]
|
||||
|
||||
[[package]]
|
||||
name = "parking_lot"
|
||||
version = "0.11.0"
|
||||
@ -1657,26 +1741,29 @@ dependencies = [
|
||||
"hyper",
|
||||
"hyper-rustls",
|
||||
"hyper-timeout",
|
||||
"hyper-tls",
|
||||
"ipnet",
|
||||
"js-sys",
|
||||
"lazy_static",
|
||||
"log",
|
||||
"mime",
|
||||
"mime_guess",
|
||||
"native-tls",
|
||||
"percent-encoding",
|
||||
"pin-project-lite",
|
||||
"rustls",
|
||||
"rustls-native-certs",
|
||||
"serde",
|
||||
"serde_json",
|
||||
"serde_urlencoded",
|
||||
"tokio",
|
||||
"tokio-rustls",
|
||||
"tokio-socks",
|
||||
"tokio-tls",
|
||||
"url",
|
||||
"wasm-bindgen",
|
||||
"wasm-bindgen-futures",
|
||||
"web-sys",
|
||||
"webpki-roots",
|
||||
"winreg",
|
||||
]
|
||||
|
||||
@ -1741,18 +1828,6 @@ dependencies = [
|
||||
"webpki",
|
||||
]
|
||||
|
||||
[[package]]
|
||||
name = "rustls-native-certs"
|
||||
version = "0.4.0"
|
||||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||
checksum = "629d439a7672da82dd955498445e496ee2096fe2117b9f796558a43fdb9e59b8"
|
||||
dependencies = [
|
||||
"openssl-probe",
|
||||
"rustls",
|
||||
"schannel",
|
||||
"security-framework",
|
||||
]
|
||||
|
||||
[[package]]
|
||||
name = "ryu"
|
||||
version = "1.0.5"
|
||||
@ -1787,9 +1862,9 @@ dependencies = [
|
||||
|
||||
[[package]]
|
||||
name = "security-framework"
|
||||
version = "1.0.0"
|
||||
version = "2.0.0"
|
||||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||
checksum = "ad502866817f0575705bd7be36e2b2535cc33262d493aa733a2ec862baa2bc2b"
|
||||
checksum = "c1759c2e3c8580017a484a7ac56d3abc5a6c1feadf88db2f3633f12ae4268c69"
|
||||
dependencies = [
|
||||
"bitflags",
|
||||
"core-foundation",
|
||||
@ -1800,9 +1875,9 @@ dependencies = [
|
||||
|
||||
[[package]]
|
||||
name = "security-framework-sys"
|
||||
version = "1.0.0"
|
||||
version = "2.0.0"
|
||||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||
checksum = "51ceb04988b17b6d1dcd555390fa822ca5637b4a14e1f5099f13d351bed4d6c7"
|
||||
checksum = "f99b9d5e26d2a71633cc4f2ebae7cc9f874044e0c351a27e17892d76dce5678b"
|
||||
dependencies = [
|
||||
"core-foundation-sys",
|
||||
"libc",
|
||||
@ -1983,9 +2058,9 @@ checksum = "fbee7696b84bbf3d89a1c2eccff0850e3047ed46bfcd2e92c29a2d074d57e252"
|
||||
|
||||
[[package]]
|
||||
name = "socket2"
|
||||
version = "0.3.15"
|
||||
version = "0.3.16"
|
||||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||
checksum = "b1fa70dc5c8104ec096f4fe7ede7a221d35ae13dcd19ba1ad9a81d2cab9a1c44"
|
||||
checksum = "7fd8b795c389288baa5f355489c65e71fd48a02104600d15c4cfbc561e9e429d"
|
||||
dependencies = [
|
||||
"cfg-if 0.1.10",
|
||||
"libc",
|
||||
@ -2081,18 +2156,18 @@ dependencies = [
|
||||
|
||||
[[package]]
|
||||
name = "thiserror"
|
||||
version = "1.0.21"
|
||||
version = "1.0.22"
|
||||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||
checksum = "318234ffa22e0920fe9a40d7b8369b5f649d490980cf7aadcf1eb91594869b42"
|
||||
checksum = "0e9ae34b84616eedaaf1e9dd6026dbe00dcafa92aa0c8077cb69df1fcfe5e53e"
|
||||
dependencies = [
|
||||
"thiserror-impl",
|
||||
]
|
||||
|
||||
[[package]]
|
||||
name = "thiserror-impl"
|
||||
version = "1.0.21"
|
||||
version = "1.0.22"
|
||||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||
checksum = "cae2447b6282786c3493999f40a9be2a6ad20cb8bd268b0a0dbf5a065535c0ab"
|
||||
checksum = "9ba20f23e85b10754cd195504aebf6a27e2e6cbe28c17778a0c930724628dd56"
|
||||
dependencies = [
|
||||
"proc-macro2",
|
||||
"quote",
|
||||
@ -2127,15 +2202,24 @@ checksum = "29738eedb4388d9ea620eeab9384884fc3f06f586a2eddb56bedc5885126c7c1"
|
||||
|
||||
[[package]]
|
||||
name = "tinyvec"
|
||||
version = "0.3.4"
|
||||
version = "1.0.1"
|
||||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||
checksum = "238ce071d267c5710f9d31451efec16c5ee22de34df17cc05e56cbc92e967117"
|
||||
checksum = "b78a366903f506d2ad52ca8dc552102ffdd3e937ba8a227f024dc1d1eae28575"
|
||||
dependencies = [
|
||||
"tinyvec_macros",
|
||||
]
|
||||
|
||||
[[package]]
|
||||
name = "tinyvec_macros"
|
||||
version = "0.1.0"
|
||||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||
checksum = "cda74da7e1a664f795bb1f8a87ec406fb89a02522cf6e50620d016add6dbbf5c"
|
||||
|
||||
[[package]]
|
||||
name = "tokio"
|
||||
version = "0.2.22"
|
||||
version = "0.2.23"
|
||||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||
checksum = "5d34ca54d84bf2b5b4d7d31e901a8464f7b60ac145a284fba25ceb801f2ddccd"
|
||||
checksum = "a6d7ad61edd59bfcc7e80dababf0f4aed2e6d5e0ba1659356ae889752dfc12ff"
|
||||
dependencies = [
|
||||
"bytes 0.5.6",
|
||||
"fnv",
|
||||
@ -2183,6 +2267,16 @@ dependencies = [
|
||||
"tokio",
|
||||
]
|
||||
|
||||
[[package]]
|
||||
name = "tokio-tls"
|
||||
version = "0.3.1"
|
||||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||
checksum = "9a70f4fcd7b3b24fb194f837560168208f669ca8cb70d0c4b862944452396343"
|
||||
dependencies = [
|
||||
"native-tls",
|
||||
"tokio",
|
||||
]
|
||||
|
||||
[[package]]
|
||||
name = "tokio-util"
|
||||
version = "0.3.1"
|
||||
@ -2327,18 +2421,18 @@ dependencies = [
|
||||
|
||||
[[package]]
|
||||
name = "unicode-normalization"
|
||||
version = "0.1.13"
|
||||
version = "0.1.14"
|
||||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||
checksum = "6fb19cf769fa8c6a80a162df694621ebeb4dafb606470b2b2fce0be40a98a977"
|
||||
checksum = "b7f98e67a4d84f730d343392f9bfff7d21e3fca562b9cb7a43b768350beeddc6"
|
||||
dependencies = [
|
||||
"tinyvec",
|
||||
]
|
||||
|
||||
[[package]]
|
||||
name = "unicode-segmentation"
|
||||
version = "1.6.0"
|
||||
version = "1.7.0"
|
||||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||
checksum = "e83e153d1053cbb5a118eeff7fd5be06ed99153f00dbcd8ae310c5fb2b22edc0"
|
||||
checksum = "db8716a166f290ff49dabc18b44aa407cb7c6dbe1aa0971b44b8a24b0ca35aae"
|
||||
|
||||
[[package]]
|
||||
name = "unicode-xid"
|
||||
@ -2360,10 +2454,11 @@ checksum = "a156c684c91ea7d62626509bce3cb4e1d9ed5c4d978f7b4352658f96a4c26b4a"
|
||||
|
||||
[[package]]
|
||||
name = "url"
|
||||
version = "2.1.1"
|
||||
version = "2.2.0"
|
||||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||
checksum = "829d4a8476c35c9bf0bbce5a3b23f4106f79728039b726d292bb93bc106787cb"
|
||||
checksum = "5909f2b0817350449ed73e8bcd81c8c3c8d9a7a5d8acba4b27db277f1868976e"
|
||||
dependencies = [
|
||||
"form_urlencoded",
|
||||
"idna",
|
||||
"matches",
|
||||
"percent-encoding",
|
||||
@ -2501,6 +2596,15 @@ dependencies = [
|
||||
"untrusted",
|
||||
]
|
||||
|
||||
[[package]]
|
||||
name = "webpki-roots"
|
||||
version = "0.20.0"
|
||||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||
checksum = "0f20dea7535251981a9670857150d571846545088359b28e4951d350bdaf179f"
|
||||
dependencies = [
|
||||
"webpki",
|
||||
]
|
||||
|
||||
[[package]]
|
||||
name = "which"
|
||||
version = "4.0.2"
|
||||
|
@ -4,7 +4,7 @@ After updating dependencies in ../rslib/Cargo.toml, change to this
|
||||
folder and run python update.py to update the external Bazel repositories
|
||||
to point to the updated deps.
|
||||
|
||||
You will need to have cargo-raze 0.6.1 or later installed, which is not
|
||||
You will need to have cargo-raze 0.7.0 or later installed, which is not
|
||||
currently included in this Bazel project. You can install it by installing
|
||||
rustup, then running "cargo install cargo-raze".
|
||||
|
||||
@ -12,14 +12,13 @@ A couple of crates need extra work to build with Bazel, and are listed
|
||||
in raze.toml. For example:
|
||||
|
||||
```toml
|
||||
[raze.crates.ring.'0.16.15']
|
||||
[raze.crates.ring.'*']
|
||||
data_attr = "glob([\"src/**\"])"
|
||||
```
|
||||
|
||||
After updating dependencies, if one of these crates has changed to a
|
||||
new version, the version in raze.toml will need to be updated, and
|
||||
update.py re-run.
|
||||
With minor version updates, you should not normally need to modify
|
||||
the entries in that file.
|
||||
|
||||
The ../pylib/rsbridge folder has a dependency on pyo3, which is
|
||||
special-cases in update.py. If updating the pyo3 version, raze.toml
|
||||
and update.py need to be updated as well.
|
||||
special-cased in update.py. If updating the pyo3 version, update.py
|
||||
needs to be updated as well.
|
||||
|
864
cargo/crates.bzl
864
cargo/crates.bzl
File diff suppressed because it is too large
Load Diff
2495
cargo/licenses.json
Normal file
2495
cargo/licenses.json
Normal file
File diff suppressed because it is too large
Load Diff
@ -7,7 +7,7 @@ edition = "2018"
|
||||
name = "anki"
|
||||
path = "src/lib.rs"
|
||||
|
||||
[raze]
|
||||
[package.metadata.raze]
|
||||
workspace_path = "//cargo"
|
||||
targets = [
|
||||
"i686-apple-darwin",
|
||||
@ -22,13 +22,13 @@ targets = [
|
||||
genmode = "Remote"
|
||||
default_gen_buildrs = true
|
||||
|
||||
[raze.crates.pyo3.'0.12.3']
|
||||
[package.metadata.raze.crates.pyo3.'*']
|
||||
data_attr = "glob([\"**\"])"
|
||||
|
||||
[raze.crates.ring.'0.16.15']
|
||||
[package.metadata.raze.crates.ring.'*']
|
||||
data_attr = "glob([\"src/**\"])"
|
||||
|
||||
[raze.crates.webpki.'0.21.3']
|
||||
[package.metadata.raze.crates.webpki.'*']
|
||||
data_attr = "glob([\"src/**\"])"
|
||||
|
||||
# WARNING: don't edit the dependencies below, they are generated by update.py
|
||||
|
@ -28,30 +28,34 @@ licenses([
|
||||
"notice", # Apache-2.0 from expression "Apache-2.0 OR MIT"
|
||||
])
|
||||
|
||||
# Generated targets
|
||||
# Generated Targets
|
||||
|
||||
# Unsupported target "addr2line" with type "example" omitted
|
||||
|
||||
# buildifier: leave-alone
|
||||
rust_library(
|
||||
name = "addr2line",
|
||||
crate_type = "lib",
|
||||
deps = [
|
||||
"@raze__gimli__0_23_0//:gimli",
|
||||
],
|
||||
srcs = glob(["**/*.rs"]),
|
||||
crate_features = [
|
||||
],
|
||||
crate_root = "src/lib.rs",
|
||||
crate_type = "lib",
|
||||
edition = "2015",
|
||||
rustc_flags = [
|
||||
"--cap-lints=allow",
|
||||
],
|
||||
version = "0.14.0",
|
||||
tags = [
|
||||
"cargo-raze",
|
||||
"manual",
|
||||
],
|
||||
crate_features = [
|
||||
version = "0.14.0",
|
||||
# buildifier: leave-alone
|
||||
deps = [
|
||||
"@raze__gimli__0_23_0//:gimli",
|
||||
],
|
||||
)
|
||||
|
||||
# Unsupported target "correctness" with type "test" omitted
|
||||
|
||||
# Unsupported target "output_equivalence" with type "test" omitted
|
||||
|
||||
# Unsupported target "parse" with type "test" omitted
|
@ -28,26 +28,27 @@ licenses([
|
||||
"notice", # MIT from expression "0BSD OR (MIT OR Apache-2.0)"
|
||||
])
|
||||
|
||||
# Generated targets
|
||||
# Generated Targets
|
||||
|
||||
# Unsupported target "bench" with type "bench" omitted
|
||||
|
||||
# buildifier: leave-alone
|
||||
rust_library(
|
||||
name = "adler",
|
||||
crate_type = "lib",
|
||||
deps = [
|
||||
],
|
||||
srcs = glob(["**/*.rs"]),
|
||||
crate_features = [
|
||||
],
|
||||
crate_root = "src/lib.rs",
|
||||
crate_type = "lib",
|
||||
edition = "2015",
|
||||
rustc_flags = [
|
||||
"--cap-lints=allow",
|
||||
],
|
||||
version = "0.2.3",
|
||||
tags = [
|
||||
"cargo-raze",
|
||||
"manual",
|
||||
],
|
||||
crate_features = [
|
||||
version = "0.2.3",
|
||||
# buildifier: leave-alone
|
||||
deps = [
|
||||
],
|
||||
)
|
||||
# Unsupported target "bench" with type "bench" omitted
|
@ -28,30 +28,35 @@ licenses([
|
||||
"notice", # MIT from expression "MIT OR Apache-2.0"
|
||||
])
|
||||
|
||||
# Generated targets
|
||||
# Generated Targets
|
||||
|
||||
# Unsupported target "ahash" with type "bench" omitted
|
||||
|
||||
# buildifier: leave-alone
|
||||
# Unsupported target "map" with type "bench" omitted
|
||||
|
||||
rust_library(
|
||||
name = "ahash",
|
||||
crate_type = "lib",
|
||||
deps = [
|
||||
],
|
||||
srcs = glob(["**/*.rs"]),
|
||||
crate_features = [
|
||||
],
|
||||
crate_root = "src/lib.rs",
|
||||
crate_type = "lib",
|
||||
edition = "2018",
|
||||
rustc_flags = [
|
||||
"--cap-lints=allow",
|
||||
],
|
||||
version = "0.4.6",
|
||||
tags = [
|
||||
"cargo-raze",
|
||||
"manual",
|
||||
],
|
||||
crate_features = [
|
||||
version = "0.4.6",
|
||||
# buildifier: leave-alone
|
||||
deps = [
|
||||
],
|
||||
)
|
||||
|
||||
# Unsupported target "bench" with type "test" omitted
|
||||
# Unsupported target "map" with type "bench" omitted
|
||||
|
||||
# Unsupported target "map_tests" with type "test" omitted
|
||||
|
||||
# Unsupported target "nopanic" with type "test" omitted
|
@ -28,28 +28,28 @@ licenses([
|
||||
"unencumbered", # Unlicense from expression "Unlicense OR MIT"
|
||||
])
|
||||
|
||||
# Generated targets
|
||||
# Generated Targets
|
||||
|
||||
# buildifier: leave-alone
|
||||
rust_library(
|
||||
name = "aho_corasick",
|
||||
crate_type = "lib",
|
||||
deps = [
|
||||
"@raze__memchr__2_3_4//: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",
|
||||
],
|
||||
crate_root = "src/lib.rs",
|
||||
crate_type = "lib",
|
||||
edition = "2015",
|
||||
rustc_flags = [
|
||||
"--cap-lints=allow",
|
||||
],
|
||||
tags = [
|
||||
"cargo-raze",
|
||||
"manual",
|
||||
],
|
||||
version = "0.7.15",
|
||||
# buildifier: leave-alone
|
||||
deps = [
|
||||
"@raze__memchr__2_3_4//:memchr",
|
||||
],
|
||||
)
|
@ -28,72 +28,81 @@ licenses([
|
||||
"notice", # MIT from expression "MIT OR Apache-2.0"
|
||||
])
|
||||
|
||||
# Generated targets
|
||||
# buildifier: disable=load-on-top
|
||||
# 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 = [
|
||||
build_script_env = {
|
||||
},
|
||||
crate_features = [
|
||||
"default",
|
||||
"std",
|
||||
],
|
||||
crate_root = "build.rs",
|
||||
data = glob(["**"]),
|
||||
edition = "2018",
|
||||
rustc_flags = [
|
||||
"--cap-lints=allow",
|
||||
],
|
||||
crate_features = [
|
||||
"default",
|
||||
"std",
|
||||
],
|
||||
build_script_env = {
|
||||
},
|
||||
data = glob(["**"]),
|
||||
tags = [
|
||||
"cargo-raze",
|
||||
"manual",
|
||||
],
|
||||
version = "1.0.34",
|
||||
visibility = ["//visibility:private"],
|
||||
deps = [
|
||||
],
|
||||
)
|
||||
|
||||
|
||||
# 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.34",
|
||||
tags = [
|
||||
"cargo-raze",
|
||||
"manual",
|
||||
],
|
||||
crate_features = [
|
||||
"default",
|
||||
"std",
|
||||
],
|
||||
crate_root = "src/lib.rs",
|
||||
crate_type = "lib",
|
||||
edition = "2018",
|
||||
rustc_flags = [
|
||||
"--cap-lints=allow",
|
||||
],
|
||||
tags = [
|
||||
"cargo-raze",
|
||||
"manual",
|
||||
],
|
||||
version = "1.0.34",
|
||||
# buildifier: leave-alone
|
||||
deps = [
|
||||
":anyhow_build_script",
|
||||
],
|
||||
)
|
||||
|
||||
# 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
|
@ -28,28 +28,31 @@ licenses([
|
||||
"notice", # Apache-2.0 from expression "Apache-2.0 OR MIT"
|
||||
])
|
||||
|
||||
# Generated targets
|
||||
# Generated Targets
|
||||
|
||||
# buildifier: leave-alone
|
||||
rust_library(
|
||||
name = "arc_swap",
|
||||
crate_type = "lib",
|
||||
deps = [
|
||||
],
|
||||
srcs = glob(["**/*.rs"]),
|
||||
crate_features = [
|
||||
],
|
||||
crate_root = "src/lib.rs",
|
||||
crate_type = "lib",
|
||||
edition = "2015",
|
||||
rustc_flags = [
|
||||
"--cap-lints=allow",
|
||||
],
|
||||
version = "0.4.7",
|
||||
tags = [
|
||||
"cargo-raze",
|
||||
"manual",
|
||||
],
|
||||
crate_features = [
|
||||
version = "0.4.7",
|
||||
# buildifier: leave-alone
|
||||
deps = [
|
||||
],
|
||||
)
|
||||
|
||||
# Unsupported target "random" with type "test" omitted
|
||||
|
||||
# Unsupported target "stress" with type "test" omitted
|
||||
|
||||
# Unsupported target "version" with type "test" omitted
|
@ -28,28 +28,31 @@ licenses([
|
||||
"restricted", # BSD-2-Clause from expression "BSD-2-Clause"
|
||||
])
|
||||
|
||||
# Generated targets
|
||||
# Generated Targets
|
||||
|
||||
# Unsupported target "array_refs" with type "example" omitted
|
||||
|
||||
# Unsupported target "array_refs_with_const" with type "example" omitted
|
||||
|
||||
# buildifier: leave-alone
|
||||
# Unsupported target "simple-case" with type "example" omitted
|
||||
|
||||
rust_library(
|
||||
name = "arrayref",
|
||||
crate_type = "lib",
|
||||
deps = [
|
||||
],
|
||||
srcs = glob(["**/*.rs"]),
|
||||
crate_features = [
|
||||
],
|
||||
crate_root = "src/lib.rs",
|
||||
crate_type = "lib",
|
||||
edition = "2015",
|
||||
rustc_flags = [
|
||||
"--cap-lints=allow",
|
||||
],
|
||||
version = "0.3.6",
|
||||
tags = [
|
||||
"cargo-raze",
|
||||
"manual",
|
||||
],
|
||||
crate_features = [
|
||||
version = "0.3.6",
|
||||
# buildifier: leave-alone
|
||||
deps = [
|
||||
],
|
||||
)
|
||||
# Unsupported target "simple-case" with type "example" omitted
|
@ -28,65 +28,66 @@ licenses([
|
||||
"notice", # MIT from expression "MIT OR Apache-2.0"
|
||||
])
|
||||
|
||||
# Generated targets
|
||||
# buildifier: disable=load-on-top
|
||||
# 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 = [
|
||||
build_script_env = {
|
||||
},
|
||||
crate_features = [
|
||||
"default",
|
||||
"std",
|
||||
],
|
||||
crate_root = "build.rs",
|
||||
data = glob(["**"]),
|
||||
edition = "2015",
|
||||
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"],
|
||||
deps = [
|
||||
],
|
||||
)
|
||||
|
||||
# Unsupported target "arraystring" with type "bench" omitted
|
||||
|
||||
# buildifier: leave-alone
|
||||
# Unsupported target "extend" with type "bench" omitted
|
||||
|
||||
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",
|
||||
],
|
||||
crate_root = "src/lib.rs",
|
||||
crate_type = "lib",
|
||||
edition = "2015",
|
||||
rustc_flags = [
|
||||
"--cap-lints=allow",
|
||||
],
|
||||
tags = [
|
||||
"cargo-raze",
|
||||
"manual",
|
||||
],
|
||||
version = "0.4.12",
|
||||
# buildifier: leave-alone
|
||||
deps = [
|
||||
":arrayvec_build_script",
|
||||
"@raze__nodrop__0_1_14//:nodrop",
|
||||
],
|
||||
)
|
||||
# Unsupported target "extend" with type "bench" omitted
|
||||
|
||||
# Unsupported target "serde" with type "test" omitted
|
||||
|
||||
# Unsupported target "tests" with type "test" omitted
|
@ -28,32 +28,36 @@ licenses([
|
||||
"notice", # MIT from expression "MIT OR Apache-2.0"
|
||||
])
|
||||
|
||||
# Generated targets
|
||||
# Generated Targets
|
||||
|
||||
# Unsupported target "arraystring" with type "bench" omitted
|
||||
|
||||
# buildifier: leave-alone
|
||||
# Unsupported target "extend" with type "bench" omitted
|
||||
|
||||
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.2",
|
||||
tags = [
|
||||
"cargo-raze",
|
||||
"manual",
|
||||
],
|
||||
crate_features = [
|
||||
"array-sizes-33-128",
|
||||
"default",
|
||||
"std",
|
||||
],
|
||||
crate_root = "src/lib.rs",
|
||||
crate_type = "lib",
|
||||
edition = "2018",
|
||||
rustc_flags = [
|
||||
"--cap-lints=allow",
|
||||
],
|
||||
tags = [
|
||||
"cargo-raze",
|
||||
"manual",
|
||||
],
|
||||
version = "0.5.2",
|
||||
# buildifier: leave-alone
|
||||
deps = [
|
||||
],
|
||||
)
|
||||
# Unsupported target "extend" with type "bench" omitted
|
||||
|
||||
# Unsupported target "serde" with type "test" omitted
|
||||
|
||||
# Unsupported target "tests" with type "test" omitted
|
@ -28,30 +28,11 @@ licenses([
|
||||
"notice", # MIT from expression "MIT OR Apache-2.0"
|
||||
])
|
||||
|
||||
# Generated targets
|
||||
# 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",
|
||||
@ -59,4 +40,23 @@ rust_library(
|
||||
"num-traits",
|
||||
"urlencode",
|
||||
],
|
||||
crate_root = "src/lib.rs",
|
||||
crate_type = "lib",
|
||||
edition = "2018",
|
||||
proc_macro_deps = [
|
||||
"@raze__askama_derive__0_10_3//:askama_derive",
|
||||
],
|
||||
rustc_flags = [
|
||||
"--cap-lints=allow",
|
||||
],
|
||||
tags = [
|
||||
"cargo-raze",
|
||||
"manual",
|
||||
],
|
||||
version = "0.10.3",
|
||||
# buildifier: leave-alone
|
||||
deps = [
|
||||
"@raze__askama_escape__0_10_1//:askama_escape",
|
||||
"@raze__askama_shared__0_10_4//:askama_shared",
|
||||
],
|
||||
)
|
@ -28,29 +28,29 @@ licenses([
|
||||
"notice", # MIT from expression "MIT OR Apache-2.0"
|
||||
])
|
||||
|
||||
# Generated targets
|
||||
# Generated Targets
|
||||
|
||||
# buildifier: leave-alone
|
||||
rust_library(
|
||||
name = "askama_derive",
|
||||
srcs = glob(["**/*.rs"]),
|
||||
crate_features = [
|
||||
],
|
||||
crate_root = "src/lib.rs",
|
||||
crate_type = "proc-macro",
|
||||
edition = "2018",
|
||||
rustc_flags = [
|
||||
"--cap-lints=allow",
|
||||
],
|
||||
tags = [
|
||||
"cargo-raze",
|
||||
"manual",
|
||||
],
|
||||
version = "0.10.3",
|
||||
# buildifier: leave-alone
|
||||
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_48//: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 = [
|
||||
],
|
||||
)
|
@ -28,26 +28,27 @@ licenses([
|
||||
"notice", # MIT from expression "MIT OR Apache-2.0"
|
||||
])
|
||||
|
||||
# Generated targets
|
||||
# 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_features = [
|
||||
],
|
||||
crate_root = "src/lib.rs",
|
||||
crate_type = "lib",
|
||||
edition = "2018",
|
||||
rustc_flags = [
|
||||
"--cap-lints=allow",
|
||||
],
|
||||
version = "0.10.1",
|
||||
tags = [
|
||||
"cargo-raze",
|
||||
"manual",
|
||||
],
|
||||
crate_features = [
|
||||
version = "0.10.1",
|
||||
# buildifier: leave-alone
|
||||
deps = [
|
||||
],
|
||||
)
|
@ -28,12 +28,31 @@ licenses([
|
||||
"notice", # MIT from expression "MIT OR Apache-2.0"
|
||||
])
|
||||
|
||||
# Generated targets
|
||||
# Generated Targets
|
||||
|
||||
# buildifier: leave-alone
|
||||
rust_library(
|
||||
name = "askama_shared",
|
||||
srcs = glob(["**/*.rs"]),
|
||||
crate_features = [
|
||||
"config",
|
||||
"humansize",
|
||||
"num-traits",
|
||||
"percent-encoding",
|
||||
"serde",
|
||||
"toml",
|
||||
],
|
||||
crate_root = "src/lib.rs",
|
||||
crate_type = "lib",
|
||||
edition = "2018",
|
||||
rustc_flags = [
|
||||
"--cap-lints=allow",
|
||||
],
|
||||
tags = [
|
||||
"cargo-raze",
|
||||
"manual",
|
||||
],
|
||||
version = "0.10.4",
|
||||
# buildifier: leave-alone
|
||||
deps = [
|
||||
"@raze__askama_escape__0_10_1//:askama_escape",
|
||||
"@raze__humansize__1_1_0//:humansize",
|
||||
@ -46,23 +65,4 @@ rust_library(
|
||||
"@raze__syn__1_0_48//: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",
|
||||
],
|
||||
)
|
@ -28,30 +28,15 @@ licenses([
|
||||
"notice", # MIT from expression "MIT OR Apache-2.0"
|
||||
])
|
||||
|
||||
# Generated targets
|
||||
# Generated Targets
|
||||
|
||||
# Unsupported target "zlib_tokio_02_write" with type "example" omitted
|
||||
|
||||
# Unsupported target "zstd_gzip" with type "example" omitted
|
||||
|
||||
# buildifier: leave-alone
|
||||
rust_library(
|
||||
name = "async_compression",
|
||||
crate_type = "lib",
|
||||
deps = [
|
||||
"@raze__bytes__0_5_6//:bytes",
|
||||
"@raze__flate2__1_0_19//:flate2",
|
||||
"@raze__futures_core__0_3_7//:futures_core",
|
||||
"@raze__memchr__2_3_4//: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",
|
||||
@ -59,13 +44,41 @@ rust_library(
|
||||
"gzip",
|
||||
"stream",
|
||||
],
|
||||
crate_root = "src/lib.rs",
|
||||
crate_type = "lib",
|
||||
edition = "2018",
|
||||
rustc_flags = [
|
||||
"--cap-lints=allow",
|
||||
],
|
||||
tags = [
|
||||
"cargo-raze",
|
||||
"manual",
|
||||
],
|
||||
version = "0.3.6",
|
||||
# buildifier: leave-alone
|
||||
deps = [
|
||||
"@raze__bytes__0_5_6//:bytes",
|
||||
"@raze__flate2__1_0_19//:flate2",
|
||||
"@raze__futures_core__0_3_8//:futures_core",
|
||||
"@raze__memchr__2_3_4//:memchr",
|
||||
"@raze__pin_project_lite__0_1_11//:pin_project_lite",
|
||||
],
|
||||
)
|
||||
|
||||
# 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
|
@ -28,13 +28,29 @@ licenses([
|
||||
"notice", # MIT from expression "MIT"
|
||||
])
|
||||
|
||||
# Generated targets
|
||||
# Generated Targets
|
||||
|
||||
# Unsupported target "atty" with type "example" omitted
|
||||
|
||||
# buildifier: leave-alone
|
||||
rust_library(
|
||||
name = "atty",
|
||||
srcs = glob(["**/*.rs"]),
|
||||
aliases = {
|
||||
},
|
||||
crate_features = [
|
||||
],
|
||||
crate_root = "src/lib.rs",
|
||||
crate_type = "lib",
|
||||
edition = "2015",
|
||||
rustc_flags = [
|
||||
"--cap-lints=allow",
|
||||
],
|
||||
tags = [
|
||||
"cargo-raze",
|
||||
"manual",
|
||||
],
|
||||
version = "0.2.14",
|
||||
# buildifier: leave-alone
|
||||
deps = [
|
||||
] + selects.with_or({
|
||||
# cfg(unix)
|
||||
@ -59,19 +75,4 @@ rust_library(
|
||||
],
|
||||
"//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 = {
|
||||
},
|
||||
)
|
@ -28,30 +28,35 @@ licenses([
|
||||
"notice", # Apache-2.0 from expression "Apache-2.0 OR MIT"
|
||||
])
|
||||
|
||||
# Generated targets
|
||||
# Generated Targets
|
||||
|
||||
# Unsupported target "integers" with type "example" omitted
|
||||
|
||||
# Unsupported target "paths" with type "example" omitted
|
||||
|
||||
# Unsupported target "traits" with type "example" omitted
|
||||
|
||||
# Unsupported target "versions" with type "example" omitted
|
||||
|
||||
# buildifier: leave-alone
|
||||
rust_library(
|
||||
name = "autocfg",
|
||||
crate_type = "lib",
|
||||
deps = [
|
||||
],
|
||||
srcs = glob(["**/*.rs"]),
|
||||
crate_features = [
|
||||
],
|
||||
crate_root = "src/lib.rs",
|
||||
crate_type = "lib",
|
||||
edition = "2015",
|
||||
rustc_flags = [
|
||||
"--cap-lints=allow",
|
||||
],
|
||||
version = "1.0.1",
|
||||
tags = [
|
||||
"cargo-raze",
|
||||
"manual",
|
||||
],
|
||||
crate_features = [
|
||||
version = "1.0.1",
|
||||
# buildifier: leave-alone
|
||||
deps = [
|
||||
],
|
||||
)
|
||||
# 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
|
@ -28,14 +28,39 @@ licenses([
|
||||
"notice", # MIT from expression "MIT OR Apache-2.0"
|
||||
])
|
||||
|
||||
# Generated targets
|
||||
# Unsupported target "accuracy" with type "test" omitted
|
||||
# Generated Targets
|
||||
|
||||
# Unsupported target "benchmarks" with type "bench" omitted
|
||||
|
||||
# Unsupported target "backtrace" with type "example" omitted
|
||||
|
||||
# buildifier: leave-alone
|
||||
# Unsupported target "raw" with type "example" omitted
|
||||
|
||||
rust_library(
|
||||
name = "backtrace",
|
||||
srcs = glob(["**/*.rs"]),
|
||||
aliases = {
|
||||
},
|
||||
crate_features = [
|
||||
"addr2line",
|
||||
"default",
|
||||
"gimli-symbolize",
|
||||
"miniz_oxide",
|
||||
"object",
|
||||
"std",
|
||||
],
|
||||
crate_root = "src/lib.rs",
|
||||
crate_type = "lib",
|
||||
edition = "2018",
|
||||
rustc_flags = [
|
||||
"--cap-lints=allow",
|
||||
],
|
||||
tags = [
|
||||
"cargo-raze",
|
||||
"manual",
|
||||
],
|
||||
version = "0.3.54",
|
||||
# buildifier: leave-alone
|
||||
deps = [
|
||||
"@raze__addr2line__0_14_0//:addr2line",
|
||||
"@raze__cfg_if__1_0_0//:cfg_if",
|
||||
@ -52,31 +77,14 @@ rust_library(
|
||||
],
|
||||
"//conditions:default": [],
|
||||
}),
|
||||
srcs = glob(["**/*.rs"]),
|
||||
crate_root = "src/lib.rs",
|
||||
edition = "2018",
|
||||
rustc_flags = [
|
||||
"--cap-lints=allow",
|
||||
],
|
||||
version = "0.3.54",
|
||||
tags = [
|
||||
"cargo-raze",
|
||||
"manual",
|
||||
],
|
||||
crate_features = [
|
||||
"addr2line",
|
||||
"default",
|
||||
"gimli-symbolize",
|
||||
"miniz_oxide",
|
||||
"object",
|
||||
"std",
|
||||
],
|
||||
aliases = {
|
||||
},
|
||||
)
|
||||
# Unsupported target "benchmarks" with type "bench" omitted
|
||||
|
||||
# Unsupported target "accuracy" with type "test" 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
|
@ -28,33 +28,39 @@ licenses([
|
||||
"notice", # MIT from expression "MIT OR Apache-2.0"
|
||||
])
|
||||
|
||||
# Generated targets
|
||||
# Generated Targets
|
||||
|
||||
# Unsupported target "benchmarks" with type "bench" omitted
|
||||
|
||||
# Unsupported target "make_tables" with type "example" omitted
|
||||
|
||||
# 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",
|
||||
],
|
||||
crate_root = "src/lib.rs",
|
||||
crate_type = "lib",
|
||||
edition = "2018",
|
||||
rustc_flags = [
|
||||
"--cap-lints=allow",
|
||||
],
|
||||
tags = [
|
||||
"cargo-raze",
|
||||
"manual",
|
||||
],
|
||||
version = "0.12.3",
|
||||
# buildifier: leave-alone
|
||||
deps = [
|
||||
],
|
||||
)
|
||||
# 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
|
@ -28,34 +28,41 @@ licenses([
|
||||
"notice", # MIT from expression "MIT OR Apache-2.0"
|
||||
])
|
||||
|
||||
# Generated targets
|
||||
# Generated Targets
|
||||
|
||||
# Unsupported target "benchmarks" with type "bench" omitted
|
||||
|
||||
# Unsupported target "base64" with type "example" omitted
|
||||
|
||||
# buildifier: leave-alone
|
||||
# Unsupported target "make_tables" with type "example" omitted
|
||||
|
||||
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.13.0",
|
||||
tags = [
|
||||
"cargo-raze",
|
||||
"manual",
|
||||
],
|
||||
crate_features = [
|
||||
"default",
|
||||
"std",
|
||||
],
|
||||
crate_root = "src/lib.rs",
|
||||
crate_type = "lib",
|
||||
edition = "2018",
|
||||
rustc_flags = [
|
||||
"--cap-lints=allow",
|
||||
],
|
||||
tags = [
|
||||
"cargo-raze",
|
||||
"manual",
|
||||
],
|
||||
version = "0.13.0",
|
||||
# buildifier: leave-alone
|
||||
deps = [
|
||||
],
|
||||
)
|
||||
# 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
|
@ -28,58 +28,55 @@ licenses([
|
||||
"notice", # MIT from expression "MIT OR Apache-2.0"
|
||||
])
|
||||
|
||||
# Generated targets
|
||||
# buildifier: disable=load-on-top
|
||||
# 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 = [
|
||||
build_script_env = {
|
||||
},
|
||||
crate_features = [
|
||||
"default",
|
||||
],
|
||||
crate_root = "build.rs",
|
||||
data = glob(["**"]),
|
||||
edition = "2015",
|
||||
rustc_flags = [
|
||||
"--cap-lints=allow",
|
||||
],
|
||||
crate_features = [
|
||||
"default",
|
||||
],
|
||||
build_script_env = {
|
||||
},
|
||||
data = glob(["**"]),
|
||||
tags = [
|
||||
"cargo-raze",
|
||||
"manual",
|
||||
],
|
||||
version = "1.2.1",
|
||||
visibility = ["//visibility:private"],
|
||||
deps = [
|
||||
],
|
||||
)
|
||||
|
||||
|
||||
# buildifier: leave-alone
|
||||
rust_library(
|
||||
name = "bitflags",
|
||||
crate_type = "lib",
|
||||
deps = [
|
||||
":bitflags_build_script",
|
||||
],
|
||||
srcs = glob(["**/*.rs"]),
|
||||
crate_features = [
|
||||
"default",
|
||||
],
|
||||
crate_root = "src/lib.rs",
|
||||
crate_type = "lib",
|
||||
edition = "2015",
|
||||
rustc_flags = [
|
||||
"--cap-lints=allow",
|
||||
],
|
||||
version = "1.2.1",
|
||||
tags = [
|
||||
"cargo-raze",
|
||||
"manual",
|
||||
],
|
||||
crate_features = [
|
||||
"default",
|
||||
version = "1.2.1",
|
||||
# buildifier: leave-alone
|
||||
deps = [
|
||||
":bitflags_build_script",
|
||||
],
|
||||
)
|
@ -28,30 +28,30 @@ licenses([
|
||||
"notice", # MIT from expression "MIT"
|
||||
])
|
||||
|
||||
# Generated targets
|
||||
# Generated Targets
|
||||
|
||||
# buildifier: leave-alone
|
||||
rust_library(
|
||||
name = "blake2b_simd",
|
||||
srcs = glob(["**/*.rs"]),
|
||||
crate_features = [
|
||||
"default",
|
||||
"std",
|
||||
],
|
||||
crate_root = "src/lib.rs",
|
||||
crate_type = "lib",
|
||||
edition = "2018",
|
||||
rustc_flags = [
|
||||
"--cap-lints=allow",
|
||||
],
|
||||
tags = [
|
||||
"cargo-raze",
|
||||
"manual",
|
||||
],
|
||||
version = "0.5.11",
|
||||
# buildifier: leave-alone
|
||||
deps = [
|
||||
"@raze__arrayref__0_3_6//:arrayref",
|
||||
"@raze__arrayvec__0_5_2//: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.11",
|
||||
tags = [
|
||||
"cargo-raze",
|
||||
"manual",
|
||||
],
|
||||
crate_features = [
|
||||
"default",
|
||||
"std",
|
||||
],
|
||||
)
|
@ -28,46 +28,59 @@ licenses([
|
||||
"unencumbered", # CC0-1.0 from expression "CC0-1.0 OR Apache-2.0"
|
||||
])
|
||||
|
||||
# Generated targets
|
||||
# buildifier: disable=load-on-top
|
||||
# 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",
|
||||
build_script_env = {
|
||||
},
|
||||
crate_features = [
|
||||
"default",
|
||||
"std",
|
||||
],
|
||||
crate_root = "build.rs",
|
||||
data = glob(["**"]),
|
||||
edition = "2018",
|
||||
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"],
|
||||
deps = [
|
||||
"@raze__cc__1_0_62//:cc",
|
||||
],
|
||||
)
|
||||
|
||||
# Unsupported target "bench" with type "bench" omitted
|
||||
|
||||
# buildifier: leave-alone
|
||||
rust_library(
|
||||
name = "blake3",
|
||||
srcs = glob(["**/*.rs"]),
|
||||
crate_features = [
|
||||
"default",
|
||||
"std",
|
||||
],
|
||||
crate_root = "src/lib.rs",
|
||||
crate_type = "lib",
|
||||
edition = "2018",
|
||||
rustc_flags = [
|
||||
"--cap-lints=allow",
|
||||
],
|
||||
tags = [
|
||||
"cargo-raze",
|
||||
"manual",
|
||||
],
|
||||
version = "0.3.7",
|
||||
# buildifier: leave-alone
|
||||
deps = [
|
||||
":blake3_build_script",
|
||||
"@raze__arrayref__0_3_6//:arrayref",
|
||||
@ -77,19 +90,4 @@ rust_library(
|
||||
"@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",
|
||||
],
|
||||
)
|
@ -28,35 +28,44 @@ 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
|
||||
# Generated Targets
|
||||
|
||||
# Unsupported target "benches" with type "bench" omitted
|
||||
|
||||
# buildifier: leave-alone
|
||||
rust_library(
|
||||
name = "bumpalo",
|
||||
crate_type = "lib",
|
||||
deps = [
|
||||
],
|
||||
srcs = glob(["**/*.rs"]),
|
||||
crate_features = [
|
||||
"default",
|
||||
],
|
||||
crate_root = "src/lib.rs",
|
||||
crate_type = "lib",
|
||||
edition = "2018",
|
||||
rustc_flags = [
|
||||
"--cap-lints=allow",
|
||||
],
|
||||
version = "3.4.0",
|
||||
tags = [
|
||||
"cargo-raze",
|
||||
"manual",
|
||||
],
|
||||
crate_features = [
|
||||
"default",
|
||||
version = "3.4.0",
|
||||
# buildifier: leave-alone
|
||||
deps = [
|
||||
],
|
||||
)
|
||||
|
||||
# Unsupported target "alloc_fill" with type "test" omitted
|
||||
|
||||
# Unsupported target "alloc_with" with type "test" omitted
|
||||
|
||||
# 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
|
@ -28,61 +28,59 @@ licenses([
|
||||
"unencumbered", # Unlicense from expression "Unlicense OR MIT"
|
||||
])
|
||||
|
||||
# Generated targets
|
||||
# buildifier: disable=load-on-top
|
||||
# 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 = [
|
||||
build_script_env = {
|
||||
},
|
||||
crate_features = [
|
||||
"default",
|
||||
"std",
|
||||
],
|
||||
crate_root = "build.rs",
|
||||
data = glob(["**"]),
|
||||
edition = "2015",
|
||||
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"],
|
||||
deps = [
|
||||
],
|
||||
)
|
||||
|
||||
# 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",
|
||||
],
|
||||
crate_root = "src/lib.rs",
|
||||
crate_type = "lib",
|
||||
edition = "2015",
|
||||
rustc_flags = [
|
||||
"--cap-lints=allow",
|
||||
],
|
||||
tags = [
|
||||
"cargo-raze",
|
||||
"manual",
|
||||
],
|
||||
version = "1.3.4",
|
||||
# buildifier: leave-alone
|
||||
deps = [
|
||||
":byteorder_build_script",
|
||||
],
|
||||
)
|
@ -28,38 +28,49 @@ licenses([
|
||||
"notice", # MIT from expression "MIT"
|
||||
])
|
||||
|
||||
# Generated targets
|
||||
# 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_features = [
|
||||
],
|
||||
crate_root = "src/lib.rs",
|
||||
crate_type = "lib",
|
||||
edition = "2015",
|
||||
rustc_flags = [
|
||||
"--cap-lints=allow",
|
||||
],
|
||||
version = "0.4.12",
|
||||
tags = [
|
||||
"cargo-raze",
|
||||
"manual",
|
||||
],
|
||||
crate_features = [
|
||||
version = "0.4.12",
|
||||
# buildifier: leave-alone
|
||||
deps = [
|
||||
"@raze__byteorder__1_3_4//:byteorder",
|
||||
"@raze__iovec__0_1_4//:iovec",
|
||||
],
|
||||
)
|
||||
|
||||
# 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
|
@ -28,41 +28,55 @@ licenses([
|
||||
"notice", # MIT from expression "MIT"
|
||||
])
|
||||
|
||||
# Generated targets
|
||||
# Generated Targets
|
||||
|
||||
# Unsupported target "buf" with type "bench" omitted
|
||||
|
||||
# Unsupported target "bytes" with type "bench" omitted
|
||||
|
||||
# buildifier: leave-alone
|
||||
# Unsupported target "bytes_mut" with type "bench" omitted
|
||||
|
||||
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",
|
||||
],
|
||||
crate_root = "src/lib.rs",
|
||||
crate_type = "lib",
|
||||
edition = "2018",
|
||||
rustc_flags = [
|
||||
"--cap-lints=allow",
|
||||
],
|
||||
tags = [
|
||||
"cargo-raze",
|
||||
"manual",
|
||||
],
|
||||
version = "0.5.6",
|
||||
# buildifier: leave-alone
|
||||
deps = [
|
||||
],
|
||||
)
|
||||
# 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
|
@ -28,53 +28,57 @@ licenses([
|
||||
"notice", # MIT from expression "MIT OR Apache-2.0"
|
||||
])
|
||||
|
||||
# Generated targets
|
||||
# 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_features = [
|
||||
],
|
||||
crate_root = "src/bin/gcc-shim.rs",
|
||||
edition = "2018",
|
||||
rustc_flags = [
|
||||
"--cap-lints=allow",
|
||||
],
|
||||
version = "1.0.61",
|
||||
tags = [
|
||||
"cargo-raze",
|
||||
"manual",
|
||||
],
|
||||
crate_features = [
|
||||
version = "1.0.62",
|
||||
# buildifier: leave-alone
|
||||
deps = [
|
||||
# Binaries get an implicit dependency on their crate's lib
|
||||
":cc",
|
||||
],
|
||||
)
|
||||
|
||||
rust_library(
|
||||
name = "cc",
|
||||
srcs = glob(["**/*.rs"]),
|
||||
crate_features = [
|
||||
],
|
||||
crate_root = "src/lib.rs",
|
||||
crate_type = "lib",
|
||||
edition = "2018",
|
||||
rustc_flags = [
|
||||
"--cap-lints=allow",
|
||||
],
|
||||
tags = [
|
||||
"cargo-raze",
|
||||
"manual",
|
||||
],
|
||||
version = "1.0.62",
|
||||
# buildifier: leave-alone
|
||||
deps = [
|
||||
],
|
||||
)
|
||||
|
||||
# Unsupported target "cc_env" with type "test" omitted
|
||||
|
||||
# Unsupported target "cflags" with type "test" omitted
|
||||
|
||||
# Unsupported target "cxxflags" with type "test" omitted
|
||||
|
||||
# Unsupported target "test" with type "test" omitted
|
@ -28,26 +28,27 @@ licenses([
|
||||
"notice", # MIT from expression "MIT OR Apache-2.0"
|
||||
])
|
||||
|
||||
# Generated targets
|
||||
# Generated Targets
|
||||
|
||||
# buildifier: leave-alone
|
||||
rust_library(
|
||||
name = "cfg_if",
|
||||
crate_type = "lib",
|
||||
deps = [
|
||||
],
|
||||
srcs = glob(["**/*.rs"]),
|
||||
crate_features = [
|
||||
],
|
||||
crate_root = "src/lib.rs",
|
||||
crate_type = "lib",
|
||||
edition = "2018",
|
||||
rustc_flags = [
|
||||
"--cap-lints=allow",
|
||||
],
|
||||
version = "0.1.10",
|
||||
tags = [
|
||||
"cargo-raze",
|
||||
"manual",
|
||||
],
|
||||
crate_features = [
|
||||
version = "0.1.10",
|
||||
# buildifier: leave-alone
|
||||
deps = [
|
||||
],
|
||||
)
|
||||
|
||||
# Unsupported target "xcrate" with type "test" omitted
|
@ -28,26 +28,27 @@ licenses([
|
||||
"notice", # MIT from expression "MIT OR Apache-2.0"
|
||||
])
|
||||
|
||||
# Generated targets
|
||||
# Generated Targets
|
||||
|
||||
# buildifier: leave-alone
|
||||
rust_library(
|
||||
name = "cfg_if",
|
||||
crate_type = "lib",
|
||||
deps = [
|
||||
],
|
||||
srcs = glob(["**/*.rs"]),
|
||||
crate_features = [
|
||||
],
|
||||
crate_root = "src/lib.rs",
|
||||
crate_type = "lib",
|
||||
edition = "2018",
|
||||
rustc_flags = [
|
||||
"--cap-lints=allow",
|
||||
],
|
||||
version = "1.0.0",
|
||||
tags = [
|
||||
"cargo-raze",
|
||||
"manual",
|
||||
],
|
||||
crate_features = [
|
||||
version = "1.0.0",
|
||||
# buildifier: leave-alone
|
||||
deps = [
|
||||
],
|
||||
)
|
||||
|
||||
# Unsupported target "xcrate" with type "test" omitted
|
@ -28,13 +28,38 @@ licenses([
|
||||
"notice", # MIT from expression "MIT OR Apache-2.0"
|
||||
])
|
||||
|
||||
# Generated targets
|
||||
# Generated Targets
|
||||
|
||||
# Unsupported target "chrono" with type "bench" omitted
|
||||
|
||||
# buildifier: leave-alone
|
||||
# Unsupported target "serde" with type "bench" omitted
|
||||
|
||||
rust_library(
|
||||
name = "chrono",
|
||||
srcs = glob(["**/*.rs"]),
|
||||
aliases = {
|
||||
},
|
||||
crate_features = [
|
||||
"clock",
|
||||
"default",
|
||||
"libc",
|
||||
"oldtime",
|
||||
"std",
|
||||
"time",
|
||||
"winapi",
|
||||
],
|
||||
crate_root = "src/lib.rs",
|
||||
crate_type = "lib",
|
||||
edition = "2015",
|
||||
rustc_flags = [
|
||||
"--cap-lints=allow",
|
||||
],
|
||||
tags = [
|
||||
"cargo-raze",
|
||||
"manual",
|
||||
],
|
||||
version = "0.4.19",
|
||||
# buildifier: leave-alone
|
||||
deps = [
|
||||
"@raze__libc__0_2_80//:libc",
|
||||
"@raze__num_integer__0_1_44//:num_integer",
|
||||
@ -50,28 +75,6 @@ rust_library(
|
||||
],
|
||||
"//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
|
@ -28,28 +28,28 @@ licenses([
|
||||
"restricted", # BSD-2-Clause from expression "BSD-2-Clause"
|
||||
])
|
||||
|
||||
# Generated targets
|
||||
# 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",
|
||||
],
|
||||
crate_root = "cloudabi.rs",
|
||||
crate_type = "lib",
|
||||
edition = "2018",
|
||||
rustc_flags = [
|
||||
"--cap-lints=allow",
|
||||
],
|
||||
tags = [
|
||||
"cargo-raze",
|
||||
"manual",
|
||||
],
|
||||
version = "0.1.0",
|
||||
# buildifier: leave-alone
|
||||
deps = [
|
||||
"@raze__bitflags__1_2_1//:bitflags",
|
||||
],
|
||||
)
|
70
cargo/remote/BUILD.coarsetime-0.1.16.bazel
Normal file
70
cargo/remote/BUILD.coarsetime-0.1.16.bazel
Normal file
@ -0,0 +1,70 @@
|
||||
"""
|
||||
@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
|
||||
|
||||
rust_library(
|
||||
name = "coarsetime",
|
||||
srcs = glob(["**/*.rs"]),
|
||||
aliases = {
|
||||
},
|
||||
crate_features = [
|
||||
],
|
||||
crate_root = "src/lib.rs",
|
||||
crate_type = "lib",
|
||||
edition = "2018",
|
||||
rustc_flags = [
|
||||
"--cap-lints=allow",
|
||||
],
|
||||
tags = [
|
||||
"cargo-raze",
|
||||
"manual",
|
||||
],
|
||||
version = "0.1.16",
|
||||
# buildifier: leave-alone
|
||||
deps = [
|
||||
"@raze__lazy_static__1_4_0//:lazy_static",
|
||||
] + selects.with_or({
|
||||
# cfg(not(target_os = "wasi"))
|
||||
(
|
||||
"@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-pc-windows-msvc",
|
||||
"@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-pc-windows-msvc",
|
||||
"@io_bazel_rules_rust//rust/platform:x86_64-unknown-linux-gnu",
|
||||
): [
|
||||
"@raze__libc__0_2_80//:libc",
|
||||
],
|
||||
"//conditions:default": [],
|
||||
}),
|
||||
)
|
@ -28,26 +28,27 @@ licenses([
|
||||
"unencumbered", # CC0-1.0 from expression "CC0-1.0"
|
||||
])
|
||||
|
||||
# Generated targets
|
||||
# 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_features = [
|
||||
],
|
||||
crate_root = "src/lib.rs",
|
||||
crate_type = "lib",
|
||||
edition = "2015",
|
||||
rustc_flags = [
|
||||
"--cap-lints=allow",
|
||||
],
|
||||
version = "0.1.5",
|
||||
tags = [
|
||||
"cargo-raze",
|
||||
"manual",
|
||||
],
|
||||
crate_features = [
|
||||
version = "0.1.5",
|
||||
# buildifier: leave-alone
|
||||
deps = [
|
||||
],
|
||||
)
|
@ -28,28 +28,29 @@ licenses([
|
||||
"notice", # MIT from expression "MIT OR Apache-2.0"
|
||||
])
|
||||
|
||||
# Generated targets
|
||||
# Generated Targets
|
||||
|
||||
# buildifier: leave-alone
|
||||
rust_library(
|
||||
name = "core_foundation",
|
||||
crate_type = "lib",
|
||||
deps = [
|
||||
"@raze__core_foundation_sys__0_7_0//:core_foundation_sys",
|
||||
"@raze__libc__0_2_80//:libc",
|
||||
],
|
||||
srcs = glob(["**/*.rs"]),
|
||||
crate_features = [
|
||||
],
|
||||
crate_root = "src/lib.rs",
|
||||
crate_type = "lib",
|
||||
edition = "2015",
|
||||
rustc_flags = [
|
||||
"--cap-lints=allow",
|
||||
],
|
||||
version = "0.7.0",
|
||||
tags = [
|
||||
"cargo-raze",
|
||||
"manual",
|
||||
],
|
||||
crate_features = [
|
||||
version = "0.9.1",
|
||||
# buildifier: leave-alone
|
||||
deps = [
|
||||
"@raze__core_foundation_sys__0_8_2//:core_foundation_sys",
|
||||
"@raze__libc__0_2_80//:libc",
|
||||
],
|
||||
)
|
||||
|
||||
# Unsupported target "use_macro_outside_crate" with type "test" omitted
|
@ -28,56 +28,53 @@ licenses([
|
||||
"notice", # MIT from expression "MIT OR Apache-2.0"
|
||||
])
|
||||
|
||||
# Generated targets
|
||||
# buildifier: disable=load-on-top
|
||||
# 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 = "core_foundation_sys_build_script",
|
||||
srcs = glob(["**/*.rs"]),
|
||||
crate_root = "build.rs",
|
||||
edition = "2015",
|
||||
deps = [
|
||||
build_script_env = {
|
||||
},
|
||||
crate_features = [
|
||||
],
|
||||
crate_root = "build.rs",
|
||||
data = glob(["**"]),
|
||||
edition = "2015",
|
||||
rustc_flags = [
|
||||
"--cap-lints=allow",
|
||||
],
|
||||
crate_features = [
|
||||
],
|
||||
build_script_env = {
|
||||
},
|
||||
data = glob(["**"]),
|
||||
tags = [
|
||||
"cargo-raze",
|
||||
"manual",
|
||||
],
|
||||
version = "0.7.0",
|
||||
version = "0.8.2",
|
||||
visibility = ["//visibility:private"],
|
||||
deps = [
|
||||
],
|
||||
)
|
||||
|
||||
|
||||
# buildifier: leave-alone
|
||||
rust_library(
|
||||
name = "core_foundation_sys",
|
||||
srcs = glob(["**/*.rs"]),
|
||||
crate_features = [
|
||||
],
|
||||
crate_root = "src/lib.rs",
|
||||
crate_type = "lib",
|
||||
edition = "2015",
|
||||
rustc_flags = [
|
||||
"--cap-lints=allow",
|
||||
],
|
||||
tags = [
|
||||
"cargo-raze",
|
||||
"manual",
|
||||
],
|
||||
version = "0.8.2",
|
||||
# buildifier: leave-alone
|
||||
deps = [
|
||||
":core_foundation_sys_build_script",
|
||||
],
|
||||
srcs = glob(["**/*.rs"]),
|
||||
crate_root = "src/lib.rs",
|
||||
edition = "2015",
|
||||
rustc_flags = [
|
||||
"--cap-lints=allow",
|
||||
],
|
||||
version = "0.7.0",
|
||||
tags = [
|
||||
"cargo-raze",
|
||||
"manual",
|
||||
],
|
||||
crate_features = [
|
||||
],
|
||||
)
|
@ -28,62 +28,60 @@ licenses([
|
||||
"notice", # MIT from expression "MIT OR Apache-2.0"
|
||||
])
|
||||
|
||||
# Generated targets
|
||||
# buildifier: disable=load-on-top
|
||||
# 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 = [
|
||||
build_script_env = {
|
||||
},
|
||||
crate_features = [
|
||||
"default",
|
||||
"std",
|
||||
],
|
||||
crate_root = "build.rs",
|
||||
data = glob(["**"]),
|
||||
edition = "2015",
|
||||
rustc_flags = [
|
||||
"--cap-lints=allow",
|
||||
],
|
||||
crate_features = [
|
||||
"default",
|
||||
"std",
|
||||
],
|
||||
build_script_env = {
|
||||
},
|
||||
data = glob(["**"]),
|
||||
tags = [
|
||||
"cargo-raze",
|
||||
"manual",
|
||||
],
|
||||
version = "1.2.1",
|
||||
visibility = ["//visibility:private"],
|
||||
deps = [
|
||||
],
|
||||
)
|
||||
|
||||
# Unsupported target "bench" with type "bench" omitted
|
||||
|
||||
# buildifier: leave-alone
|
||||
rust_library(
|
||||
name = "crc32fast",
|
||||
crate_type = "lib",
|
||||
deps = [
|
||||
":crc32fast_build_script",
|
||||
"@raze__cfg_if__1_0_0//:cfg_if",
|
||||
],
|
||||
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",
|
||||
"std",
|
||||
],
|
||||
crate_root = "src/lib.rs",
|
||||
crate_type = "lib",
|
||||
edition = "2015",
|
||||
rustc_flags = [
|
||||
"--cap-lints=allow",
|
||||
],
|
||||
tags = [
|
||||
"cargo-raze",
|
||||
"manual",
|
||||
],
|
||||
version = "1.2.1",
|
||||
# buildifier: leave-alone
|
||||
deps = [
|
||||
":crc32fast_build_script",
|
||||
"@raze__cfg_if__1_0_0//:cfg_if",
|
||||
],
|
||||
)
|
@ -28,45 +28,63 @@ 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
|
||||
# Generated Targets
|
||||
|
||||
# Unsupported target "crossbeam" with type "bench" omitted
|
||||
|
||||
# buildifier: leave-alone
|
||||
# Unsupported target "fibonacci" with type "example" omitted
|
||||
|
||||
# Unsupported target "matching" with type "example" omitted
|
||||
|
||||
# Unsupported target "stopwatch" with type "example" omitted
|
||||
|
||||
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_features = [
|
||||
],
|
||||
crate_root = "src/lib.rs",
|
||||
crate_type = "lib",
|
||||
edition = "2015",
|
||||
rustc_flags = [
|
||||
"--cap-lints=allow",
|
||||
],
|
||||
version = "0.4.4",
|
||||
tags = [
|
||||
"cargo-raze",
|
||||
"manual",
|
||||
],
|
||||
crate_features = [
|
||||
version = "0.4.4",
|
||||
# buildifier: leave-alone
|
||||
deps = [
|
||||
"@raze__crossbeam_utils__0_7_2//:crossbeam_utils",
|
||||
"@raze__maybe_uninit__2_0_0//:maybe_uninit",
|
||||
],
|
||||
)
|
||||
# Unsupported target "fibonacci" with type "example" omitted
|
||||
|
||||
# Unsupported target "after" with type "test" omitted
|
||||
|
||||
# Unsupported target "array" with type "test" 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
|
@ -28,72 +28,76 @@ licenses([
|
||||
"notice", # MIT from expression "MIT OR Apache-2.0"
|
||||
])
|
||||
|
||||
# Generated targets
|
||||
# buildifier: disable=load-on-top
|
||||
# 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",
|
||||
build_script_env = {
|
||||
},
|
||||
crate_features = [
|
||||
"default",
|
||||
"lazy_static",
|
||||
"std",
|
||||
],
|
||||
crate_root = "build.rs",
|
||||
data = glob(["**"]),
|
||||
edition = "2015",
|
||||
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"],
|
||||
deps = [
|
||||
"@raze__autocfg__1_0_1//:autocfg",
|
||||
],
|
||||
)
|
||||
|
||||
# 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",
|
||||
],
|
||||
crate_root = "src/lib.rs",
|
||||
crate_type = "lib",
|
||||
edition = "2015",
|
||||
rustc_flags = [
|
||||
"--cap-lints=allow",
|
||||
],
|
||||
tags = [
|
||||
"cargo-raze",
|
||||
"manual",
|
||||
],
|
||||
version = "0.7.2",
|
||||
# buildifier: leave-alone
|
||||
deps = [
|
||||
":crossbeam_utils_build_script",
|
||||
"@raze__cfg_if__0_1_10//:cfg_if",
|
||||
"@raze__lazy_static__1_4_0//:lazy_static",
|
||||
],
|
||||
)
|
||||
|
||||
# Unsupported target "atomic_cell" with type "test" omitted
|
||||
|
||||
# Unsupported target "cache_padded" with type "test" omitted
|
||||
|
||||
# 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
|
@ -28,27 +28,27 @@ licenses([
|
||||
"notice", # MIT from expression "MIT OR Apache-2.0"
|
||||
])
|
||||
|
||||
# Generated targets
|
||||
# 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_features = [
|
||||
],
|
||||
crate_root = "src/lib.rs",
|
||||
crate_type = "lib",
|
||||
edition = "2018",
|
||||
rustc_flags = [
|
||||
"--cap-lints=allow",
|
||||
],
|
||||
version = "0.8.0",
|
||||
tags = [
|
||||
"cargo-raze",
|
||||
"manual",
|
||||
],
|
||||
crate_features = [
|
||||
version = "0.8.0",
|
||||
# buildifier: leave-alone
|
||||
deps = [
|
||||
"@raze__generic_array__0_14_4//:generic_array",
|
||||
"@raze__subtle__2_3_0//:subtle",
|
||||
],
|
||||
)
|
@ -28,28 +28,29 @@ licenses([
|
||||
"notice", # Apache-2.0 from expression "Apache-2.0 OR MIT"
|
||||
])
|
||||
|
||||
# Generated targets
|
||||
# Generated Targets
|
||||
|
||||
# Unsupported target "example" with type "example" omitted
|
||||
|
||||
# buildifier: leave-alone
|
||||
rust_library(
|
||||
name = "ctor",
|
||||
crate_type = "proc-macro",
|
||||
deps = [
|
||||
"@raze__quote__1_0_7//:quote",
|
||||
"@raze__syn__1_0_48//:syn",
|
||||
],
|
||||
srcs = glob(["**/*.rs"]),
|
||||
crate_features = [
|
||||
],
|
||||
crate_root = "src/lib.rs",
|
||||
crate_type = "proc-macro",
|
||||
edition = "2018",
|
||||
rustc_flags = [
|
||||
"--cap-lints=allow",
|
||||
],
|
||||
version = "0.1.16",
|
||||
tags = [
|
||||
"cargo-raze",
|
||||
"manual",
|
||||
],
|
||||
crate_features = [
|
||||
version = "0.1.16",
|
||||
# buildifier: leave-alone
|
||||
deps = [
|
||||
"@raze__quote__1_0_7//:quote",
|
||||
"@raze__syn__1_0_48//:syn",
|
||||
],
|
||||
)
|
||||
# Unsupported target "example" with type "example" omitted
|
@ -28,95 +28,161 @@ licenses([
|
||||
"notice", # MIT from expression "MIT OR Apache-2.0"
|
||||
])
|
||||
|
||||
# Generated targets
|
||||
# Unsupported target "compile-test" with type "test" omitted
|
||||
# Generated Targets
|
||||
|
||||
# buildifier: leave-alone
|
||||
rust_library(
|
||||
name = "derivative",
|
||||
srcs = glob(["**/*.rs"]),
|
||||
crate_features = [
|
||||
"use_core",
|
||||
],
|
||||
crate_root = "src/lib.rs",
|
||||
crate_type = "proc-macro",
|
||||
edition = "2015",
|
||||
rustc_flags = [
|
||||
"--cap-lints=allow",
|
||||
],
|
||||
tags = [
|
||||
"cargo-raze",
|
||||
"manual",
|
||||
],
|
||||
version = "2.1.1",
|
||||
# buildifier: leave-alone
|
||||
deps = [
|
||||
"@raze__proc_macro2__1_0_24//:proc_macro2",
|
||||
"@raze__quote__1_0_7//:quote",
|
||||
"@raze__syn__1_0_48//: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 "compile-test" with type "test" omitted
|
||||
|
||||
# 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
|
@ -28,28 +28,28 @@ licenses([
|
||||
"notice", # MIT from expression "MIT OR Apache-2.0"
|
||||
])
|
||||
|
||||
# Generated targets
|
||||
# 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",
|
||||
],
|
||||
crate_root = "src/lib.rs",
|
||||
crate_type = "lib",
|
||||
edition = "2018",
|
||||
rustc_flags = [
|
||||
"--cap-lints=allow",
|
||||
],
|
||||
tags = [
|
||||
"cargo-raze",
|
||||
"manual",
|
||||
],
|
||||
version = "0.9.0",
|
||||
# buildifier: leave-alone
|
||||
deps = [
|
||||
"@raze__generic_array__0_14_4//:generic_array",
|
||||
],
|
||||
)
|
@ -28,27 +28,27 @@ licenses([
|
||||
"notice", # MIT from expression "MIT OR Apache-2.0"
|
||||
])
|
||||
|
||||
# Generated targets
|
||||
# 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_features = [
|
||||
],
|
||||
crate_root = "src/lib.rs",
|
||||
crate_type = "lib",
|
||||
edition = "2015",
|
||||
rustc_flags = [
|
||||
"--cap-lints=allow",
|
||||
],
|
||||
version = "2.0.2",
|
||||
tags = [
|
||||
"cargo-raze",
|
||||
"manual",
|
||||
],
|
||||
crate_features = [
|
||||
version = "2.0.2",
|
||||
# buildifier: leave-alone
|
||||
deps = [
|
||||
"@raze__cfg_if__0_1_10//:cfg_if",
|
||||
"@raze__dirs_sys__0_3_5//:dirs_sys",
|
||||
],
|
||||
)
|
@ -28,12 +28,27 @@ licenses([
|
||||
"notice", # MIT from expression "MIT OR Apache-2.0"
|
||||
])
|
||||
|
||||
# Generated targets
|
||||
# Generated Targets
|
||||
|
||||
# buildifier: leave-alone
|
||||
rust_library(
|
||||
name = "dirs_sys",
|
||||
srcs = glob(["**/*.rs"]),
|
||||
aliases = {
|
||||
},
|
||||
crate_features = [
|
||||
],
|
||||
crate_root = "src/lib.rs",
|
||||
crate_type = "lib",
|
||||
edition = "2015",
|
||||
rustc_flags = [
|
||||
"--cap-lints=allow",
|
||||
],
|
||||
tags = [
|
||||
"cargo-raze",
|
||||
"manual",
|
||||
],
|
||||
version = "0.3.5",
|
||||
# buildifier: leave-alone
|
||||
deps = [
|
||||
] + selects.with_or({
|
||||
# cfg(unix)
|
||||
@ -58,19 +73,4 @@ rust_library(
|
||||
],
|
||||
"//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 = {
|
||||
},
|
||||
)
|
@ -28,27 +28,29 @@ licenses([
|
||||
"notice", # MIT from expression "MIT OR Apache-2.0"
|
||||
])
|
||||
|
||||
# Generated targets
|
||||
# Generated Targets
|
||||
|
||||
# Unsupported target "bench" with type "bench" omitted
|
||||
|
||||
# buildifier: leave-alone
|
||||
rust_library(
|
||||
name = "dtoa",
|
||||
crate_type = "lib",
|
||||
deps = [
|
||||
],
|
||||
srcs = glob(["**/*.rs"]),
|
||||
crate_features = [
|
||||
],
|
||||
crate_root = "src/lib.rs",
|
||||
crate_type = "lib",
|
||||
edition = "2015",
|
||||
rustc_flags = [
|
||||
"--cap-lints=allow",
|
||||
],
|
||||
version = "0.4.6",
|
||||
tags = [
|
||||
"cargo-raze",
|
||||
"manual",
|
||||
],
|
||||
crate_features = [
|
||||
version = "0.4.6",
|
||||
# buildifier: leave-alone
|
||||
deps = [
|
||||
],
|
||||
)
|
||||
|
||||
# Unsupported target "test" with type "test" omitted
|
@ -28,27 +28,27 @@ licenses([
|
||||
"notice", # MIT from expression "MIT OR Apache-2.0"
|
||||
])
|
||||
|
||||
# Generated targets
|
||||
# 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",
|
||||
],
|
||||
crate_root = "src/lib.rs",
|
||||
crate_type = "lib",
|
||||
edition = "2015",
|
||||
rustc_flags = [
|
||||
"--cap-lints=allow",
|
||||
],
|
||||
tags = [
|
||||
"cargo-raze",
|
||||
"manual",
|
||||
],
|
||||
version = "1.6.1",
|
||||
# buildifier: leave-alone
|
||||
deps = [
|
||||
],
|
||||
)
|
@ -28,57 +28,54 @@ licenses([
|
||||
"notice", # Apache-2.0 from expression "Apache-2.0 OR MIT"
|
||||
])
|
||||
|
||||
# Generated targets
|
||||
# buildifier: disable=load-on-top
|
||||
# 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 = "2018",
|
||||
deps = [
|
||||
build_script_env = {
|
||||
},
|
||||
crate_features = [
|
||||
],
|
||||
crate_root = "build.rs",
|
||||
data = glob(["**"]),
|
||||
edition = "2018",
|
||||
rustc_flags = [
|
||||
"--cap-lints=allow",
|
||||
],
|
||||
crate_features = [
|
||||
],
|
||||
build_script_env = {
|
||||
},
|
||||
data = glob(["**"]),
|
||||
tags = [
|
||||
"cargo-raze",
|
||||
"manual",
|
||||
],
|
||||
version = "0.8.26",
|
||||
visibility = ["//visibility:private"],
|
||||
deps = [
|
||||
],
|
||||
)
|
||||
|
||||
|
||||
# buildifier: leave-alone
|
||||
rust_library(
|
||||
name = "encoding_rs",
|
||||
crate_type = "lib",
|
||||
deps = [
|
||||
":encoding_rs_build_script",
|
||||
"@raze__cfg_if__1_0_0//:cfg_if",
|
||||
],
|
||||
srcs = glob(["**/*.rs"]),
|
||||
crate_features = [
|
||||
],
|
||||
crate_root = "src/lib.rs",
|
||||
crate_type = "lib",
|
||||
edition = "2018",
|
||||
rustc_flags = [
|
||||
"--cap-lints=allow",
|
||||
],
|
||||
version = "0.8.26",
|
||||
tags = [
|
||||
"cargo-raze",
|
||||
"manual",
|
||||
],
|
||||
crate_features = [
|
||||
version = "0.8.26",
|
||||
# buildifier: leave-alone
|
||||
deps = [
|
||||
":encoding_rs_build_script",
|
||||
"@raze__cfg_if__1_0_0//:cfg_if",
|
||||
],
|
||||
)
|
@ -28,35 +28,27 @@ licenses([
|
||||
"notice", # MIT from expression "MIT OR Apache-2.0"
|
||||
])
|
||||
|
||||
# Generated targets
|
||||
# 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
|
||||
# Unsupported target "filters_from_code" with type "example" omitted
|
||||
|
||||
# Unsupported target "in_tests" with type "example" omitted
|
||||
|
||||
# Unsupported target "syslog_friendly_format" with type "example" omitted
|
||||
|
||||
rust_library(
|
||||
name = "env_logger",
|
||||
crate_type = "lib",
|
||||
deps = [
|
||||
"@raze__atty__0_2_14//:atty",
|
||||
"@raze__humantime__2_0_1//:humantime",
|
||||
"@raze__log__0_4_11//:log",
|
||||
"@raze__regex__1_4_2//:regex",
|
||||
"@raze__termcolor__1_1_0//:termcolor",
|
||||
],
|
||||
srcs = glob(["**/*.rs"]),
|
||||
crate_root = "src/lib.rs",
|
||||
edition = "2018",
|
||||
rustc_flags = [
|
||||
"--cap-lints=allow",
|
||||
],
|
||||
version = "0.8.1",
|
||||
tags = [
|
||||
"cargo-raze",
|
||||
"manual",
|
||||
],
|
||||
crate_features = [
|
||||
"atty",
|
||||
"default",
|
||||
@ -64,11 +56,31 @@ rust_library(
|
||||
"regex",
|
||||
"termcolor",
|
||||
],
|
||||
crate_root = "src/lib.rs",
|
||||
crate_type = "lib",
|
||||
edition = "2018",
|
||||
rustc_flags = [
|
||||
"--cap-lints=allow",
|
||||
],
|
||||
tags = [
|
||||
"cargo-raze",
|
||||
"manual",
|
||||
],
|
||||
version = "0.8.1",
|
||||
# buildifier: leave-alone
|
||||
deps = [
|
||||
"@raze__atty__0_2_14//:atty",
|
||||
"@raze__humantime__2_0_1//:humantime",
|
||||
"@raze__log__0_4_11//:log",
|
||||
"@raze__regex__1_4_2//:regex",
|
||||
"@raze__termcolor__1_1_0//:termcolor",
|
||||
],
|
||||
)
|
||||
# Unsupported target "filters_from_code" with type "example" omitted
|
||||
# Unsupported target "in_tests" 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
|
||||
# Unsupported target "syslog_friendly_format" with type "example" omitted
|
@ -28,33 +28,19 @@ 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
|
||||
# Generated Targets
|
||||
|
||||
# Unsupported target "bail_ensure" with type "example" omitted
|
||||
|
||||
# Unsupported target "error_as_cause" with type "example" omitted
|
||||
|
||||
# Unsupported target "simple" with type "example" omitted
|
||||
|
||||
# Unsupported target "string_custom_error_pattern" with type "example" omitted
|
||||
|
||||
# buildifier: leave-alone
|
||||
rust_library(
|
||||
name = "failure",
|
||||
crate_type = "lib",
|
||||
deps = [
|
||||
"@raze__backtrace__0_3_54//: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",
|
||||
@ -62,7 +48,28 @@ rust_library(
|
||||
"failure_derive",
|
||||
"std",
|
||||
],
|
||||
crate_root = "src/lib.rs",
|
||||
crate_type = "lib",
|
||||
edition = "2015",
|
||||
proc_macro_deps = [
|
||||
"@raze__failure_derive__0_1_8//:failure_derive",
|
||||
],
|
||||
rustc_flags = [
|
||||
"--cap-lints=allow",
|
||||
],
|
||||
tags = [
|
||||
"cargo-raze",
|
||||
"manual",
|
||||
],
|
||||
version = "0.1.8",
|
||||
# buildifier: leave-alone
|
||||
deps = [
|
||||
"@raze__backtrace__0_3_54//:backtrace",
|
||||
],
|
||||
)
|
||||
|
||||
# Unsupported target "basic_fail" with type "test" omitted
|
||||
|
||||
# Unsupported target "fail_compat" with type "test" omitted
|
||||
|
||||
# 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
|
@ -28,44 +28,52 @@ licenses([
|
||||
"notice", # MIT from expression "MIT OR Apache-2.0"
|
||||
])
|
||||
|
||||
# Generated targets
|
||||
# buildifier: disable=load-on-top
|
||||
# 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 = [
|
||||
build_script_env = {
|
||||
},
|
||||
crate_features = [
|
||||
],
|
||||
crate_root = "build.rs",
|
||||
data = glob(["**"]),
|
||||
edition = "2015",
|
||||
rustc_flags = [
|
||||
"--cap-lints=allow",
|
||||
],
|
||||
crate_features = [
|
||||
],
|
||||
build_script_env = {
|
||||
},
|
||||
data = glob(["**"]),
|
||||
tags = [
|
||||
"cargo-raze",
|
||||
"manual",
|
||||
],
|
||||
version = "0.1.8",
|
||||
visibility = ["//visibility:private"],
|
||||
deps = [
|
||||
],
|
||||
)
|
||||
|
||||
# Unsupported target "backtrace" with type "test" omitted
|
||||
# Unsupported target "custom_type_bounds" with type "test" omitted
|
||||
|
||||
# buildifier: leave-alone
|
||||
rust_library(
|
||||
name = "failure_derive",
|
||||
srcs = glob(["**/*.rs"]),
|
||||
crate_features = [
|
||||
],
|
||||
crate_root = "src/lib.rs",
|
||||
crate_type = "proc-macro",
|
||||
edition = "2015",
|
||||
rustc_flags = [
|
||||
"--cap-lints=allow",
|
||||
],
|
||||
tags = [
|
||||
"cargo-raze",
|
||||
"manual",
|
||||
],
|
||||
version = "0.1.8",
|
||||
# buildifier: leave-alone
|
||||
deps = [
|
||||
":failure_derive_build_script",
|
||||
"@raze__proc_macro2__1_0_24//:proc_macro2",
|
||||
@ -73,20 +81,14 @@ rust_library(
|
||||
"@raze__syn__1_0_48//: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 "backtrace" with type "test" omitted
|
||||
|
||||
# Unsupported target "custom_type_bounds" with type "test" omitted
|
||||
|
||||
# Unsupported target "no_derive_display" with type "test" omitted
|
||||
|
||||
# Unsupported target "tests" with type "test" omitted
|
||||
|
||||
# Unsupported target "wraps" with type "test" omitted
|
@ -28,27 +28,27 @@ licenses([
|
||||
"notice", # MIT from expression "MIT OR Apache-2.0"
|
||||
])
|
||||
|
||||
# Generated targets
|
||||
# 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",
|
||||
],
|
||||
crate_root = "src/lib.rs",
|
||||
crate_type = "lib",
|
||||
edition = "2018",
|
||||
rustc_flags = [
|
||||
"--cap-lints=allow",
|
||||
],
|
||||
tags = [
|
||||
"cargo-raze",
|
||||
"manual",
|
||||
],
|
||||
version = "0.2.0",
|
||||
# buildifier: leave-alone
|
||||
deps = [
|
||||
],
|
||||
)
|
@ -28,25 +28,25 @@ licenses([
|
||||
"notice", # MIT from expression "MIT OR Apache-2.0"
|
||||
])
|
||||
|
||||
# Generated targets
|
||||
# Generated Targets
|
||||
|
||||
# buildifier: leave-alone
|
||||
rust_library(
|
||||
name = "fallible_streaming_iterator",
|
||||
crate_type = "lib",
|
||||
deps = [
|
||||
],
|
||||
srcs = glob(["**/*.rs"]),
|
||||
crate_features = [
|
||||
],
|
||||
crate_root = "src/lib.rs",
|
||||
crate_type = "lib",
|
||||
edition = "2015",
|
||||
rustc_flags = [
|
||||
"--cap-lints=allow",
|
||||
],
|
||||
version = "0.1.9",
|
||||
tags = [
|
||||
"cargo-raze",
|
||||
"manual",
|
||||
],
|
||||
crate_features = [
|
||||
version = "0.1.9",
|
||||
# buildifier: leave-alone
|
||||
deps = [
|
||||
],
|
||||
)
|
@ -28,26 +28,27 @@ licenses([
|
||||
"notice", # MIT from expression "MIT OR Apache-2.0"
|
||||
])
|
||||
|
||||
# Generated targets
|
||||
# Generated Targets
|
||||
|
||||
# Unsupported target "benches" with type "bench" omitted
|
||||
|
||||
# buildifier: leave-alone
|
||||
rust_library(
|
||||
name = "fixedbitset",
|
||||
crate_type = "lib",
|
||||
deps = [
|
||||
],
|
||||
srcs = glob(["**/*.rs"]),
|
||||
crate_features = [
|
||||
],
|
||||
crate_root = "src/lib.rs",
|
||||
crate_type = "lib",
|
||||
edition = "2015",
|
||||
rustc_flags = [
|
||||
"--cap-lints=allow",
|
||||
],
|
||||
version = "0.2.0",
|
||||
tags = [
|
||||
"cargo-raze",
|
||||
"manual",
|
||||
],
|
||||
crate_features = [
|
||||
version = "0.2.0",
|
||||
# buildifier: leave-alone
|
||||
deps = [
|
||||
],
|
||||
)
|
@ -28,60 +28,88 @@ 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
|
||||
# Generated Targets
|
||||
|
||||
# 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 "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 "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
|
||||
|
||||
# buildifier: leave-alone
|
||||
rust_library(
|
||||
name = "flate2",
|
||||
srcs = glob(["**/*.rs"]),
|
||||
crate_features = [
|
||||
"default",
|
||||
"miniz_oxide",
|
||||
"rust_backend",
|
||||
],
|
||||
crate_root = "src/lib.rs",
|
||||
crate_type = "lib",
|
||||
edition = "2018",
|
||||
rustc_flags = [
|
||||
"--cap-lints=allow",
|
||||
],
|
||||
tags = [
|
||||
"cargo-raze",
|
||||
"manual",
|
||||
],
|
||||
version = "1.0.19",
|
||||
# buildifier: leave-alone
|
||||
deps = [
|
||||
"@raze__cfg_if__1_0_0//:cfg_if",
|
||||
"@raze__crc32fast__1_2_1//:crc32fast",
|
||||
"@raze__libc__0_2_80//:libc",
|
||||
"@raze__miniz_oxide__0_4_3//:miniz_oxide",
|
||||
],
|
||||
srcs = glob(["**/*.rs"]),
|
||||
crate_root = "src/lib.rs",
|
||||
edition = "2018",
|
||||
rustc_flags = [
|
||||
"--cap-lints=allow",
|
||||
],
|
||||
version = "1.0.19",
|
||||
tags = [
|
||||
"cargo-raze",
|
||||
"manual",
|
||||
],
|
||||
crate_features = [
|
||||
"default",
|
||||
"miniz_oxide",
|
||||
"rust_backend",
|
||||
],
|
||||
)
|
||||
|
||||
# Unsupported target "async-reader" with type "test" omitted
|
||||
|
||||
# Unsupported target "early-flush" with type "test" omitted
|
||||
|
||||
# Unsupported target "empty-read" with type "test" omitted
|
||||
|
||||
# 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
|
@ -28,27 +28,27 @@ licenses([
|
||||
"notice", # Apache-2.0 from expression "Apache-2.0 OR MIT"
|
||||
])
|
||||
|
||||
# Generated targets
|
||||
# Generated Targets
|
||||
|
||||
# buildifier: leave-alone
|
||||
rust_library(
|
||||
name = "fluent",
|
||||
crate_type = "lib",
|
||||
deps = [
|
||||
"@raze__fluent_bundle__0_13_1//:fluent_bundle",
|
||||
"@raze__unic_langid__0_9_0//:unic_langid",
|
||||
],
|
||||
srcs = glob(["**/*.rs"]),
|
||||
crate_features = [
|
||||
],
|
||||
crate_root = "src/lib.rs",
|
||||
crate_type = "lib",
|
||||
edition = "2018",
|
||||
rustc_flags = [
|
||||
"--cap-lints=allow",
|
||||
],
|
||||
version = "0.13.1",
|
||||
tags = [
|
||||
"cargo-raze",
|
||||
"manual",
|
||||
],
|
||||
crate_features = [
|
||||
version = "0.13.1",
|
||||
# buildifier: leave-alone
|
||||
deps = [
|
||||
"@raze__fluent_bundle__0_13_2//:fluent_bundle",
|
||||
"@raze__unic_langid__0_9_0//:unic_langid",
|
||||
],
|
||||
)
|
@ -28,12 +28,27 @@ licenses([
|
||||
"notice", # Apache-2.0 from expression "Apache-2.0 OR MIT"
|
||||
])
|
||||
|
||||
# Generated targets
|
||||
# Generated Targets
|
||||
|
||||
# Unsupported target "resolver" with type "bench" omitted
|
||||
|
||||
# buildifier: leave-alone
|
||||
rust_library(
|
||||
name = "fluent_bundle",
|
||||
srcs = glob(["**/*.rs"]),
|
||||
crate_features = [
|
||||
],
|
||||
crate_root = "src/lib.rs",
|
||||
crate_type = "lib",
|
||||
edition = "2018",
|
||||
rustc_flags = [
|
||||
"--cap-lints=allow",
|
||||
],
|
||||
tags = [
|
||||
"cargo-raze",
|
||||
"manual",
|
||||
],
|
||||
version = "0.13.2",
|
||||
# buildifier: leave-alone
|
||||
deps = [
|
||||
"@raze__fluent_langneg__0_13_0//:fluent_langneg",
|
||||
"@raze__fluent_syntax__0_10_0//:fluent_syntax",
|
||||
@ -43,18 +58,4 @@ rust_library(
|
||||
"@raze__smallvec__1_4_2//:smallvec",
|
||||
"@raze__unic_langid__0_9_0//:unic_langid",
|
||||
],
|
||||
srcs = glob(["**/*.rs"]),
|
||||
crate_root = "src/lib.rs",
|
||||
edition = "2018",
|
||||
rustc_flags = [
|
||||
"--cap-lints=allow",
|
||||
],
|
||||
version = "0.13.1",
|
||||
tags = [
|
||||
"cargo-raze",
|
||||
"manual",
|
||||
],
|
||||
crate_features = [
|
||||
],
|
||||
)
|
||||
# Unsupported target "resolver" with type "bench" omitted
|
@ -28,28 +28,29 @@ licenses([
|
||||
"notice", # Apache-2.0 from expression "Apache-2.0"
|
||||
])
|
||||
|
||||
# Generated targets
|
||||
# Generated Targets
|
||||
|
||||
# Unsupported target "negotiate" with type "bench" omitted
|
||||
|
||||
# buildifier: leave-alone
|
||||
rust_library(
|
||||
name = "fluent_langneg",
|
||||
crate_type = "lib",
|
||||
deps = [
|
||||
"@raze__unic_langid__0_9_0//:unic_langid",
|
||||
],
|
||||
srcs = glob(["**/*.rs"]),
|
||||
crate_features = [
|
||||
"default",
|
||||
],
|
||||
crate_root = "src/lib.rs",
|
||||
crate_type = "lib",
|
||||
edition = "2018",
|
||||
rustc_flags = [
|
||||
"--cap-lints=allow",
|
||||
],
|
||||
version = "0.13.0",
|
||||
tags = [
|
||||
"cargo-raze",
|
||||
"manual",
|
||||
],
|
||||
crate_features = [
|
||||
"default",
|
||||
version = "0.13.0",
|
||||
# buildifier: leave-alone
|
||||
deps = [
|
||||
"@raze__unic_langid__0_9_0//:unic_langid",
|
||||
],
|
||||
)
|
||||
# Unsupported target "negotiate" with type "bench" omitted
|
@ -28,78 +28,80 @@ licenses([
|
||||
"notice", # Apache-2.0 from expression "Apache-2.0 OR MIT"
|
||||
])
|
||||
|
||||
# Generated targets
|
||||
# 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.10.0",
|
||||
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_features = [
|
||||
"default",
|
||||
],
|
||||
crate_root = "src/bin/parser.rs",
|
||||
edition = "2018",
|
||||
rustc_flags = [
|
||||
"--cap-lints=allow",
|
||||
],
|
||||
version = "0.10.0",
|
||||
tags = [
|
||||
"cargo-raze",
|
||||
"manual",
|
||||
],
|
||||
crate_features = [
|
||||
"default",
|
||||
],
|
||||
)
|
||||
# Unsupported target "parser_fixtures" 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_update_fixtures",
|
||||
version = "0.10.0",
|
||||
# buildifier: leave-alone
|
||||
deps = [
|
||||
# Binaries get an implicit dependency on their crate's lib
|
||||
":fluent_syntax",
|
||||
],
|
||||
)
|
||||
|
||||
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_update_fixtures",
|
||||
srcs = glob(["**/*.rs"]),
|
||||
crate_features = [
|
||||
"default",
|
||||
],
|
||||
crate_root = "src/bin/update_fixtures.rs",
|
||||
edition = "2018",
|
||||
rustc_flags = [
|
||||
"--cap-lints=allow",
|
||||
],
|
||||
version = "0.10.0",
|
||||
tags = [
|
||||
"cargo-raze",
|
||||
"manual",
|
||||
],
|
||||
version = "0.10.0",
|
||||
# buildifier: leave-alone
|
||||
deps = [
|
||||
# Binaries get an implicit dependency on their crate's lib
|
||||
":fluent_syntax",
|
||||
],
|
||||
)
|
||||
|
||||
rust_library(
|
||||
name = "fluent_syntax",
|
||||
srcs = glob(["**/*.rs"]),
|
||||
crate_features = [
|
||||
"default",
|
||||
],
|
||||
crate_root = "src/lib.rs",
|
||||
crate_type = "lib",
|
||||
edition = "2018",
|
||||
rustc_flags = [
|
||||
"--cap-lints=allow",
|
||||
],
|
||||
tags = [
|
||||
"cargo-raze",
|
||||
"manual",
|
||||
],
|
||||
version = "0.10.0",
|
||||
# buildifier: leave-alone
|
||||
deps = [
|
||||
],
|
||||
)
|
||||
|
||||
# Unsupported target "parser_fixtures" with type "test" omitted
|
@ -28,27 +28,27 @@ licenses([
|
||||
"notice", # Apache-2.0 from expression "Apache-2.0 OR MIT"
|
||||
])
|
||||
|
||||
# Generated targets
|
||||
# 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",
|
||||
],
|
||||
crate_root = "lib.rs",
|
||||
crate_type = "lib",
|
||||
edition = "2015",
|
||||
rustc_flags = [
|
||||
"--cap-lints=allow",
|
||||
],
|
||||
tags = [
|
||||
"cargo-raze",
|
||||
"manual",
|
||||
],
|
||||
version = "1.0.7",
|
||||
# buildifier: leave-alone
|
||||
deps = [
|
||||
],
|
||||
)
|
53
cargo/remote/BUILD.foreign-types-0.3.2.bazel
Normal file
53
cargo/remote/BUILD.foreign-types-0.3.2.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
|
||||
|
||||
rust_library(
|
||||
name = "foreign_types",
|
||||
srcs = glob(["**/*.rs"]),
|
||||
crate_features = [
|
||||
],
|
||||
crate_root = "src/lib.rs",
|
||||
crate_type = "lib",
|
||||
edition = "2015",
|
||||
rustc_flags = [
|
||||
"--cap-lints=allow",
|
||||
],
|
||||
tags = [
|
||||
"cargo-raze",
|
||||
"manual",
|
||||
],
|
||||
version = "0.3.2",
|
||||
# buildifier: leave-alone
|
||||
deps = [
|
||||
"@raze__foreign_types_shared__0_1_1//:foreign_types_shared",
|
||||
],
|
||||
)
|
52
cargo/remote/BUILD.foreign-types-shared-0.1.1.bazel
Normal file
52
cargo/remote/BUILD.foreign-types-shared-0.1.1.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
|
||||
|
||||
rust_library(
|
||||
name = "foreign_types_shared",
|
||||
srcs = glob(["**/*.rs"]),
|
||||
crate_features = [
|
||||
],
|
||||
crate_root = "src/lib.rs",
|
||||
crate_type = "lib",
|
||||
edition = "2015",
|
||||
rustc_flags = [
|
||||
"--cap-lints=allow",
|
||||
],
|
||||
tags = [
|
||||
"cargo-raze",
|
||||
"manual",
|
||||
],
|
||||
version = "0.1.1",
|
||||
# buildifier: leave-alone
|
||||
deps = [
|
||||
],
|
||||
)
|
54
cargo/remote/BUILD.form_urlencoded-1.0.0.bazel
Normal file
54
cargo/remote/BUILD.form_urlencoded-1.0.0.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
|
||||
|
||||
rust_library(
|
||||
name = "form_urlencoded",
|
||||
srcs = glob(["**/*.rs"]),
|
||||
crate_features = [
|
||||
],
|
||||
crate_root = "src/lib.rs",
|
||||
crate_type = "lib",
|
||||
edition = "2015",
|
||||
rustc_flags = [
|
||||
"--cap-lints=allow",
|
||||
],
|
||||
tags = [
|
||||
"cargo-raze",
|
||||
"manual",
|
||||
],
|
||||
version = "1.0.0",
|
||||
# buildifier: leave-alone
|
||||
deps = [
|
||||
"@raze__matches__0_1_8//:matches",
|
||||
"@raze__percent_encoding__2_1_0//:percent_encoding",
|
||||
],
|
||||
)
|
@ -28,27 +28,27 @@ licenses([
|
||||
"notice", # BSD-3-Clause from expression "BSD-3-Clause"
|
||||
])
|
||||
|
||||
# Generated targets
|
||||
# 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_features = [
|
||||
],
|
||||
crate_root = "src/lib.rs",
|
||||
crate_type = "lib",
|
||||
edition = "2015",
|
||||
rustc_flags = [
|
||||
"--cap-lints=allow",
|
||||
],
|
||||
version = "0.3.3",
|
||||
tags = [
|
||||
"cargo-raze",
|
||||
"manual",
|
||||
],
|
||||
crate_features = [
|
||||
version = "0.3.3",
|
||||
# buildifier: leave-alone
|
||||
deps = [
|
||||
"@raze__bitflags__1_2_1//:bitflags",
|
||||
"@raze__fuchsia_zircon_sys__0_3_3//:fuchsia_zircon_sys",
|
||||
],
|
||||
)
|
@ -28,26 +28,27 @@ licenses([
|
||||
"notice", # BSD-3-Clause from expression "BSD-3-Clause"
|
||||
])
|
||||
|
||||
# Generated targets
|
||||
# Generated Targets
|
||||
|
||||
# Unsupported target "hello" with type "example" omitted
|
||||
|
||||
# buildifier: leave-alone
|
||||
rust_library(
|
||||
name = "fuchsia_zircon_sys",
|
||||
crate_type = "lib",
|
||||
deps = [
|
||||
],
|
||||
srcs = glob(["**/*.rs"]),
|
||||
crate_features = [
|
||||
],
|
||||
crate_root = "src/lib.rs",
|
||||
crate_type = "lib",
|
||||
edition = "2015",
|
||||
rustc_flags = [
|
||||
"--cap-lints=allow",
|
||||
],
|
||||
version = "0.3.3",
|
||||
tags = [
|
||||
"cargo-raze",
|
||||
"manual",
|
||||
],
|
||||
crate_features = [
|
||||
version = "0.3.3",
|
||||
# buildifier: leave-alone
|
||||
deps = [
|
||||
],
|
||||
)
|
||||
# Unsupported target "hello" with type "example" omitted
|
@ -28,45 +28,11 @@ 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
|
||||
# Generated Targets
|
||||
|
||||
# buildifier: leave-alone
|
||||
rust_library(
|
||||
name = "futures",
|
||||
crate_type = "lib",
|
||||
deps = [
|
||||
"@raze__futures_channel__0_3_7//:futures_channel",
|
||||
"@raze__futures_core__0_3_7//:futures_core",
|
||||
"@raze__futures_executor__0_3_7//:futures_executor",
|
||||
"@raze__futures_io__0_3_7//:futures_io",
|
||||
"@raze__futures_sink__0_3_7//:futures_sink",
|
||||
"@raze__futures_task__0_3_7//:futures_task",
|
||||
"@raze__futures_util__0_3_7//:futures_util",
|
||||
],
|
||||
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 = [
|
||||
"alloc",
|
||||
"async-await",
|
||||
@ -75,40 +41,125 @@ rust_library(
|
||||
"futures-executor",
|
||||
"std",
|
||||
],
|
||||
crate_root = "src/lib.rs",
|
||||
crate_type = "lib",
|
||||
edition = "2018",
|
||||
rustc_flags = [
|
||||
"--cap-lints=allow",
|
||||
],
|
||||
tags = [
|
||||
"cargo-raze",
|
||||
"manual",
|
||||
],
|
||||
version = "0.3.8",
|
||||
# buildifier: leave-alone
|
||||
deps = [
|
||||
"@raze__futures_channel__0_3_8//:futures_channel",
|
||||
"@raze__futures_core__0_3_8//:futures_core",
|
||||
"@raze__futures_executor__0_3_8//:futures_executor",
|
||||
"@raze__futures_io__0_3_8//:futures_io",
|
||||
"@raze__futures_sink__0_3_8//:futures_sink",
|
||||
"@raze__futures_task__0_3_8//:futures_task",
|
||||
"@raze__futures_util__0_3_8//:futures_util",
|
||||
],
|
||||
)
|
||||
|
||||
# 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
|
||||
|
||||
# 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 "try_stream" with type "test" omitted
|
||||
|
||||
# Unsupported target "unfold" with type "test" omitted
|
@ -28,28 +28,13 @@ licenses([
|
||||
"notice", # MIT from expression "MIT OR Apache-2.0"
|
||||
])
|
||||
|
||||
# Generated targets
|
||||
# Unsupported target "channel" with type "test" omitted
|
||||
# Generated Targets
|
||||
|
||||
# Unsupported target "sync_mpsc" with type "bench" omitted
|
||||
|
||||
# buildifier: leave-alone
|
||||
rust_library(
|
||||
name = "futures_channel",
|
||||
crate_type = "lib",
|
||||
deps = [
|
||||
"@raze__futures_core__0_3_7//:futures_core",
|
||||
"@raze__futures_sink__0_3_7//:futures_sink",
|
||||
],
|
||||
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 = [
|
||||
"alloc",
|
||||
"default",
|
||||
@ -57,8 +42,28 @@ rust_library(
|
||||
"sink",
|
||||
"std",
|
||||
],
|
||||
crate_root = "src/lib.rs",
|
||||
crate_type = "lib",
|
||||
edition = "2018",
|
||||
rustc_flags = [
|
||||
"--cap-lints=allow",
|
||||
],
|
||||
tags = [
|
||||
"cargo-raze",
|
||||
"manual",
|
||||
],
|
||||
version = "0.3.8",
|
||||
# buildifier: leave-alone
|
||||
deps = [
|
||||
"@raze__futures_core__0_3_8//:futures_core",
|
||||
"@raze__futures_sink__0_3_8//:futures_sink",
|
||||
],
|
||||
)
|
||||
|
||||
# Unsupported target "channel" with type "test" omitted
|
||||
|
||||
# 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
|
@ -28,28 +28,28 @@ licenses([
|
||||
"notice", # MIT from expression "MIT OR Apache-2.0"
|
||||
])
|
||||
|
||||
# Generated targets
|
||||
# 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.7",
|
||||
tags = [
|
||||
"cargo-raze",
|
||||
"manual",
|
||||
],
|
||||
crate_features = [
|
||||
"alloc",
|
||||
"default",
|
||||
"std",
|
||||
],
|
||||
crate_root = "src/lib.rs",
|
||||
crate_type = "lib",
|
||||
edition = "2018",
|
||||
rustc_flags = [
|
||||
"--cap-lints=allow",
|
||||
],
|
||||
tags = [
|
||||
"cargo-raze",
|
||||
"manual",
|
||||
],
|
||||
version = "0.3.8",
|
||||
# buildifier: leave-alone
|
||||
deps = [
|
||||
],
|
||||
)
|
@ -28,31 +28,33 @@ licenses([
|
||||
"notice", # MIT from expression "MIT OR Apache-2.0"
|
||||
])
|
||||
|
||||
# Generated targets
|
||||
# Generated Targets
|
||||
|
||||
# Unsupported target "thread_notify" with type "bench" omitted
|
||||
|
||||
# buildifier: leave-alone
|
||||
rust_library(
|
||||
name = "futures_executor",
|
||||
crate_type = "lib",
|
||||
deps = [
|
||||
"@raze__futures_core__0_3_7//:futures_core",
|
||||
"@raze__futures_task__0_3_7//:futures_task",
|
||||
"@raze__futures_util__0_3_7//:futures_util",
|
||||
],
|
||||
srcs = glob(["**/*.rs"]),
|
||||
crate_features = [
|
||||
"std",
|
||||
],
|
||||
crate_root = "src/lib.rs",
|
||||
crate_type = "lib",
|
||||
edition = "2018",
|
||||
rustc_flags = [
|
||||
"--cap-lints=allow",
|
||||
],
|
||||
version = "0.3.7",
|
||||
tags = [
|
||||
"cargo-raze",
|
||||
"manual",
|
||||
],
|
||||
crate_features = [
|
||||
"std",
|
||||
version = "0.3.8",
|
||||
# buildifier: leave-alone
|
||||
deps = [
|
||||
"@raze__futures_core__0_3_8//:futures_core",
|
||||
"@raze__futures_task__0_3_8//:futures_task",
|
||||
"@raze__futures_util__0_3_8//:futures_util",
|
||||
],
|
||||
)
|
||||
|
||||
# Unsupported target "local_pool" with type "test" omitted
|
||||
# Unsupported target "thread_notify" with type "bench" omitted
|
@ -28,26 +28,26 @@ licenses([
|
||||
"notice", # MIT from expression "MIT OR Apache-2.0"
|
||||
])
|
||||
|
||||
# Generated targets
|
||||
# Generated Targets
|
||||
|
||||
# buildifier: leave-alone
|
||||
rust_library(
|
||||
name = "futures_io",
|
||||
crate_type = "lib",
|
||||
deps = [
|
||||
],
|
||||
srcs = glob(["**/*.rs"]),
|
||||
crate_features = [
|
||||
"std",
|
||||
],
|
||||
crate_root = "src/lib.rs",
|
||||
crate_type = "lib",
|
||||
edition = "2018",
|
||||
rustc_flags = [
|
||||
"--cap-lints=allow",
|
||||
],
|
||||
version = "0.3.7",
|
||||
tags = [
|
||||
"cargo-raze",
|
||||
"manual",
|
||||
],
|
||||
crate_features = [
|
||||
"std",
|
||||
version = "0.3.8",
|
||||
# buildifier: leave-alone
|
||||
deps = [
|
||||
],
|
||||
)
|
@ -28,19 +28,15 @@ licenses([
|
||||
"notice", # MIT from expression "MIT OR Apache-2.0"
|
||||
])
|
||||
|
||||
# Generated targets
|
||||
# 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_48//:syn",
|
||||
],
|
||||
srcs = glob(["**/*.rs"]),
|
||||
crate_features = [
|
||||
],
|
||||
crate_root = "src/lib.rs",
|
||||
crate_type = "proc-macro",
|
||||
edition = "2018",
|
||||
proc_macro_deps = [
|
||||
"@raze__proc_macro_hack__0_5_19//:proc_macro_hack",
|
||||
@ -48,11 +44,15 @@ rust_library(
|
||||
rustc_flags = [
|
||||
"--cap-lints=allow",
|
||||
],
|
||||
version = "0.3.7",
|
||||
tags = [
|
||||
"cargo-raze",
|
||||
"manual",
|
||||
],
|
||||
crate_features = [
|
||||
version = "0.3.8",
|
||||
# buildifier: leave-alone
|
||||
deps = [
|
||||
"@raze__proc_macro2__1_0_24//:proc_macro2",
|
||||
"@raze__quote__1_0_7//:quote",
|
||||
"@raze__syn__1_0_48//:syn",
|
||||
],
|
||||
)
|
@ -28,28 +28,28 @@ licenses([
|
||||
"notice", # MIT from expression "MIT OR Apache-2.0"
|
||||
])
|
||||
|
||||
# Generated targets
|
||||
# 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.7",
|
||||
tags = [
|
||||
"cargo-raze",
|
||||
"manual",
|
||||
],
|
||||
crate_features = [
|
||||
"alloc",
|
||||
"default",
|
||||
"std",
|
||||
],
|
||||
crate_root = "src/lib.rs",
|
||||
crate_type = "lib",
|
||||
edition = "2018",
|
||||
rustc_flags = [
|
||||
"--cap-lints=allow",
|
||||
],
|
||||
tags = [
|
||||
"cargo-raze",
|
||||
"manual",
|
||||
],
|
||||
version = "0.3.8",
|
||||
# buildifier: leave-alone
|
||||
deps = [
|
||||
],
|
||||
)
|
@ -28,29 +28,29 @@ licenses([
|
||||
"notice", # MIT from expression "MIT OR Apache-2.0"
|
||||
])
|
||||
|
||||
# Generated targets
|
||||
# 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.7",
|
||||
tags = [
|
||||
"cargo-raze",
|
||||
"manual",
|
||||
],
|
||||
crate_features = [
|
||||
"alloc",
|
||||
"once_cell",
|
||||
"std",
|
||||
],
|
||||
crate_root = "src/lib.rs",
|
||||
crate_type = "lib",
|
||||
edition = "2018",
|
||||
rustc_flags = [
|
||||
"--cap-lints=allow",
|
||||
],
|
||||
tags = [
|
||||
"cargo-raze",
|
||||
"manual",
|
||||
],
|
||||
version = "0.3.8",
|
||||
# buildifier: leave-alone
|
||||
deps = [
|
||||
"@raze__once_cell__1_5_2//:once_cell",
|
||||
],
|
||||
)
|
@ -28,39 +28,13 @@ licenses([
|
||||
"notice", # MIT from expression "MIT OR Apache-2.0"
|
||||
])
|
||||
|
||||
# Generated targets
|
||||
# Generated Targets
|
||||
|
||||
# Unsupported target "futures_unordered" with type "bench" omitted
|
||||
|
||||
# buildifier: leave-alone
|
||||
rust_library(
|
||||
name = "futures_util",
|
||||
crate_type = "lib",
|
||||
deps = [
|
||||
"@raze__futures_channel__0_3_7//:futures_channel",
|
||||
"@raze__futures_core__0_3_7//:futures_core",
|
||||
"@raze__futures_io__0_3_7//:futures_io",
|
||||
"@raze__futures_sink__0_3_7//:futures_sink",
|
||||
"@raze__futures_task__0_3_7//:futures_task",
|
||||
"@raze__memchr__2_3_4//:memchr",
|
||||
"@raze__pin_project__1_0_1//: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_7//:futures_macro",
|
||||
"@raze__proc_macro_hack__0_5_19//:proc_macro_hack",
|
||||
],
|
||||
rustc_flags = [
|
||||
"--cap-lints=allow",
|
||||
],
|
||||
version = "0.3.7",
|
||||
tags = [
|
||||
"cargo-raze",
|
||||
"manual",
|
||||
],
|
||||
crate_features = [
|
||||
"alloc",
|
||||
"async-await",
|
||||
@ -79,5 +53,32 @@ rust_library(
|
||||
"slab",
|
||||
"std",
|
||||
],
|
||||
crate_root = "src/lib.rs",
|
||||
crate_type = "lib",
|
||||
edition = "2018",
|
||||
proc_macro_deps = [
|
||||
"@raze__futures_macro__0_3_8//:futures_macro",
|
||||
"@raze__proc_macro_hack__0_5_19//:proc_macro_hack",
|
||||
],
|
||||
rustc_flags = [
|
||||
"--cap-lints=allow",
|
||||
],
|
||||
tags = [
|
||||
"cargo-raze",
|
||||
"manual",
|
||||
],
|
||||
version = "0.3.8",
|
||||
# buildifier: leave-alone
|
||||
deps = [
|
||||
"@raze__futures_channel__0_3_8//:futures_channel",
|
||||
"@raze__futures_core__0_3_8//:futures_core",
|
||||
"@raze__futures_io__0_3_8//:futures_io",
|
||||
"@raze__futures_sink__0_3_8//:futures_sink",
|
||||
"@raze__futures_task__0_3_8//:futures_task",
|
||||
"@raze__memchr__2_3_4//:memchr",
|
||||
"@raze__pin_project__1_0_1//: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",
|
||||
],
|
||||
)
|
||||
# Unsupported target "futures_unordered" with type "bench" omitted
|
@ -28,27 +28,28 @@ licenses([
|
||||
"notice", # Apache-2.0 from expression "Apache-2.0 OR MIT"
|
||||
])
|
||||
|
||||
# Generated targets
|
||||
# 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_features = [
|
||||
],
|
||||
crate_root = "lib.rs",
|
||||
crate_type = "lib",
|
||||
edition = "2015",
|
||||
rustc_flags = [
|
||||
"--cap-lints=allow",
|
||||
],
|
||||
version = "0.2.1",
|
||||
tags = [
|
||||
"cargo-raze",
|
||||
"manual",
|
||||
],
|
||||
crate_features = [
|
||||
version = "0.2.1",
|
||||
# buildifier: leave-alone
|
||||
deps = [
|
||||
"@raze__byteorder__1_3_4//:byteorder",
|
||||
],
|
||||
)
|
@ -28,64 +28,67 @@ licenses([
|
||||
"notice", # MIT from expression "MIT"
|
||||
])
|
||||
|
||||
# Generated targets
|
||||
# buildifier: disable=load-on-top
|
||||
# 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",
|
||||
build_script_env = {
|
||||
},
|
||||
crate_features = [
|
||||
],
|
||||
crate_root = "build.rs",
|
||||
data = glob(["**"]),
|
||||
edition = "2015",
|
||||
rustc_flags = [
|
||||
"--cap-lints=allow",
|
||||
],
|
||||
crate_features = [
|
||||
],
|
||||
build_script_env = {
|
||||
},
|
||||
data = glob(["**"]),
|
||||
tags = [
|
||||
"cargo-raze",
|
||||
"manual",
|
||||
],
|
||||
version = "0.14.4",
|
||||
visibility = ["//visibility:private"],
|
||||
deps = [
|
||||
"@raze__version_check__0_9_2//:version_check",
|
||||
],
|
||||
)
|
||||
|
||||
# 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_features = [
|
||||
],
|
||||
crate_root = "src/lib.rs",
|
||||
crate_type = "lib",
|
||||
edition = "2015",
|
||||
rustc_flags = [
|
||||
"--cap-lints=allow",
|
||||
],
|
||||
version = "0.14.4",
|
||||
tags = [
|
||||
"cargo-raze",
|
||||
"manual",
|
||||
],
|
||||
crate_features = [
|
||||
version = "0.14.4",
|
||||
# buildifier: leave-alone
|
||||
deps = [
|
||||
":generic_array_build_script",
|
||||
"@raze__typenum__1_12_0//:typenum",
|
||||
],
|
||||
)
|
||||
|
||||
# Unsupported target "arr" with type "test" omitted
|
||||
|
||||
# Unsupported target "generics" with type "test" omitted
|
||||
|
||||
# Unsupported target "hex" with type "test" omitted
|
||||
|
||||
# Unsupported target "import_name" with type "test" omitted
|
||||
|
||||
# Unsupported target "iter" with type "test" omitted
|
||||
|
||||
# Unsupported target "mod" with type "test" omitted
|
@ -28,19 +28,32 @@ licenses([
|
||||
"notice", # MIT from expression "MIT OR Apache-2.0"
|
||||
])
|
||||
|
||||
# Generated targets
|
||||
# buildifier: disable=load-on-top
|
||||
# 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"]),
|
||||
build_script_env = {
|
||||
},
|
||||
crate_features = [
|
||||
"std",
|
||||
],
|
||||
crate_root = "build.rs",
|
||||
data = glob(["**"]),
|
||||
edition = "2018",
|
||||
rustc_flags = [
|
||||
"--cap-lints=allow",
|
||||
],
|
||||
tags = [
|
||||
"cargo-raze",
|
||||
"manual",
|
||||
],
|
||||
version = "0.1.15",
|
||||
visibility = ["//visibility:private"],
|
||||
deps = [
|
||||
] + selects.with_or({
|
||||
# cfg(unix)
|
||||
@ -55,29 +68,30 @@ cargo_build_script(
|
||||
],
|
||||
"//conditions:default": [],
|
||||
}),
|
||||
)
|
||||
|
||||
# Unsupported target "mod" with type "bench" omitted
|
||||
|
||||
rust_library(
|
||||
name = "getrandom",
|
||||
srcs = glob(["**/*.rs"]),
|
||||
aliases = {
|
||||
},
|
||||
crate_features = [
|
||||
"std",
|
||||
],
|
||||
crate_root = "src/lib.rs",
|
||||
crate_type = "lib",
|
||||
edition = "2018",
|
||||
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",
|
||||
# buildifier: leave-alone
|
||||
deps = [
|
||||
":getrandom_build_script",
|
||||
"@raze__cfg_if__0_1_10//:cfg_if",
|
||||
@ -95,21 +109,6 @@ rust_library(
|
||||
],
|
||||
"//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
|
||||
|
||||
# Unsupported target "common" with type "test" omitted
|
@ -28,28 +28,28 @@ licenses([
|
||||
"notice", # MIT from expression "MIT OR Apache-2.0"
|
||||
])
|
||||
|
||||
# Generated targets
|
||||
# Generated Targets
|
||||
|
||||
# buildifier: leave-alone
|
||||
rust_library(
|
||||
name = "ghost",
|
||||
srcs = glob(["**/*.rs"]),
|
||||
crate_features = [
|
||||
],
|
||||
crate_root = "src/lib.rs",
|
||||
crate_type = "proc-macro",
|
||||
edition = "2018",
|
||||
rustc_flags = [
|
||||
"--cap-lints=allow",
|
||||
],
|
||||
tags = [
|
||||
"cargo-raze",
|
||||
"manual",
|
||||
],
|
||||
version = "0.1.2",
|
||||
# buildifier: leave-alone
|
||||
deps = [
|
||||
"@raze__proc_macro2__1_0_24//:proc_macro2",
|
||||
"@raze__quote__1_0_7//:quote",
|
||||
"@raze__syn__1_0_48//: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 = [
|
||||
],
|
||||
)
|
@ -28,33 +28,40 @@ licenses([
|
||||
"notice", # Apache-2.0 from expression "Apache-2.0 OR MIT"
|
||||
])
|
||||
|
||||
# Generated targets
|
||||
# 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
|
||||
# Unsupported target "simple" with type "example" omitted
|
||||
|
||||
# Unsupported target "simple_line" with type "example" omitted
|
||||
|
||||
rust_library(
|
||||
name = "gimli",
|
||||
crate_type = "lib",
|
||||
deps = [
|
||||
],
|
||||
srcs = glob(["**/*.rs"]),
|
||||
crate_features = [
|
||||
"read",
|
||||
],
|
||||
crate_root = "src/lib.rs",
|
||||
crate_type = "lib",
|
||||
edition = "2018",
|
||||
rustc_flags = [
|
||||
"--cap-lints=allow",
|
||||
],
|
||||
version = "0.23.0",
|
||||
tags = [
|
||||
"cargo-raze",
|
||||
"manual",
|
||||
],
|
||||
crate_features = [
|
||||
"read",
|
||||
version = "0.23.0",
|
||||
# buildifier: leave-alone
|
||||
deps = [
|
||||
],
|
||||
)
|
||||
|
||||
# Unsupported target "convert_self" with type "test" omitted
|
||||
|
||||
# Unsupported target "parse_self" with type "test" omitted
|
||||
# Unsupported target "simple" with type "example" omitted
|
||||
# Unsupported target "simple_line" with type "example" omitted
|
@ -28,40 +28,43 @@ licenses([
|
||||
"notice", # MIT from expression "MIT"
|
||||
])
|
||||
|
||||
# Generated targets
|
||||
# Generated Targets
|
||||
|
||||
# Unsupported target "akamai" with type "example" omitted
|
||||
|
||||
# Unsupported target "client" with type "example" omitted
|
||||
|
||||
# buildifier: leave-alone
|
||||
# Unsupported target "server" with type "example" omitted
|
||||
|
||||
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_7//:futures_core",
|
||||
"@raze__futures_sink__0_3_7//:futures_sink",
|
||||
"@raze__futures_util__0_3_7//: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",
|
||||
"@raze__tracing_futures__0_2_4//:tracing_futures",
|
||||
],
|
||||
srcs = glob(["**/*.rs"]),
|
||||
crate_features = [
|
||||
],
|
||||
crate_root = "src/lib.rs",
|
||||
crate_type = "lib",
|
||||
edition = "2018",
|
||||
rustc_flags = [
|
||||
"--cap-lints=allow",
|
||||
],
|
||||
version = "0.2.7",
|
||||
tags = [
|
||||
"cargo-raze",
|
||||
"manual",
|
||||
],
|
||||
crate_features = [
|
||||
version = "0.2.7",
|
||||
# buildifier: leave-alone
|
||||
deps = [
|
||||
"@raze__bytes__0_5_6//:bytes",
|
||||
"@raze__fnv__1_0_7//:fnv",
|
||||
"@raze__futures_core__0_3_8//:futures_core",
|
||||
"@raze__futures_sink__0_3_8//:futures_sink",
|
||||
"@raze__futures_util__0_3_8//:futures_util",
|
||||
"@raze__http__0_2_1//:http",
|
||||
"@raze__indexmap__1_6_0//:indexmap",
|
||||
"@raze__slab__0_4_2//:slab",
|
||||
"@raze__tokio__0_2_23//:tokio",
|
||||
"@raze__tokio_util__0_3_1//:tokio_util",
|
||||
"@raze__tracing__0_1_21//:tracing",
|
||||
"@raze__tracing_futures__0_2_4//:tracing_futures",
|
||||
],
|
||||
)
|
||||
# Unsupported target "server" with type "example" omitted
|
@ -28,35 +28,40 @@ licenses([
|
||||
"notice", # Apache-2.0 from expression "Apache-2.0 OR MIT"
|
||||
])
|
||||
|
||||
# Generated targets
|
||||
# Generated Targets
|
||||
|
||||
# Unsupported target "bench" with type "bench" omitted
|
||||
|
||||
# buildifier: leave-alone
|
||||
rust_library(
|
||||
name = "hashbrown",
|
||||
crate_type = "lib",
|
||||
deps = [
|
||||
"@raze__ahash__0_4_6//:ahash",
|
||||
],
|
||||
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 = [
|
||||
"ahash",
|
||||
"default",
|
||||
"inline-more",
|
||||
"raw",
|
||||
],
|
||||
crate_root = "src/lib.rs",
|
||||
crate_type = "lib",
|
||||
edition = "2018",
|
||||
rustc_flags = [
|
||||
"--cap-lints=allow",
|
||||
],
|
||||
tags = [
|
||||
"cargo-raze",
|
||||
"manual",
|
||||
],
|
||||
version = "0.9.1",
|
||||
# buildifier: leave-alone
|
||||
deps = [
|
||||
"@raze__ahash__0_4_6//:ahash",
|
||||
],
|
||||
)
|
||||
|
||||
# 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
|
@ -28,30 +28,34 @@ licenses([
|
||||
"notice", # MIT from expression "MIT OR Apache-2.0"
|
||||
])
|
||||
|
||||
# Generated targets
|
||||
# Generated Targets
|
||||
|
||||
# buildifier: leave-alone
|
||||
rust_library(
|
||||
name = "hashlink",
|
||||
crate_type = "lib",
|
||||
deps = [
|
||||
"@raze__hashbrown__0_9_1//:hashbrown",
|
||||
],
|
||||
srcs = glob(["**/*.rs"]),
|
||||
crate_features = [
|
||||
],
|
||||
crate_root = "src/lib.rs",
|
||||
crate_type = "lib",
|
||||
edition = "2018",
|
||||
rustc_flags = [
|
||||
"--cap-lints=allow",
|
||||
],
|
||||
version = "0.6.0",
|
||||
tags = [
|
||||
"cargo-raze",
|
||||
"manual",
|
||||
],
|
||||
crate_features = [
|
||||
version = "0.6.0",
|
||||
# buildifier: leave-alone
|
||||
deps = [
|
||||
"@raze__hashbrown__0_9_1//:hashbrown",
|
||||
],
|
||||
)
|
||||
|
||||
# Unsupported target "linked_hash_map" with type "test" omitted
|
||||
|
||||
# Unsupported target "linked_hash_set" with type "test" omitted
|
||||
|
||||
# Unsupported target "lru_cache" with type "test" omitted
|
||||
|
||||
# Unsupported target "serde" with type "test" omitted
|
@ -28,26 +28,26 @@ licenses([
|
||||
"notice", # MIT from expression "MIT OR Apache-2.0"
|
||||
])
|
||||
|
||||
# Generated targets
|
||||
# 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_features = [
|
||||
],
|
||||
crate_root = "src/lib.rs",
|
||||
crate_type = "lib",
|
||||
edition = "2015",
|
||||
rustc_flags = [
|
||||
"--cap-lints=allow",
|
||||
],
|
||||
version = "0.3.1",
|
||||
tags = [
|
||||
"cargo-raze",
|
||||
"manual",
|
||||
],
|
||||
crate_features = [
|
||||
version = "0.3.1",
|
||||
# buildifier: leave-alone
|
||||
deps = [
|
||||
"@raze__unicode_segmentation__1_7_0//:unicode_segmentation",
|
||||
],
|
||||
)
|
@ -28,27 +28,27 @@ licenses([
|
||||
"notice", # MIT from expression "MIT OR Apache-2.0"
|
||||
])
|
||||
|
||||
# Generated targets
|
||||
# Generated Targets
|
||||
|
||||
# buildifier: leave-alone
|
||||
rust_library(
|
||||
name = "hermit_abi",
|
||||
crate_type = "lib",
|
||||
deps = [
|
||||
"@raze__libc__0_2_80//:libc",
|
||||
],
|
||||
srcs = glob(["**/*.rs"]),
|
||||
crate_features = [
|
||||
"default",
|
||||
],
|
||||
crate_root = "src/lib.rs",
|
||||
crate_type = "lib",
|
||||
edition = "2018",
|
||||
rustc_flags = [
|
||||
"--cap-lints=allow",
|
||||
],
|
||||
version = "0.1.17",
|
||||
tags = [
|
||||
"cargo-raze",
|
||||
"manual",
|
||||
],
|
||||
crate_features = [
|
||||
"default",
|
||||
version = "0.1.17",
|
||||
# buildifier: leave-alone
|
||||
deps = [
|
||||
"@raze__libc__0_2_80//:libc",
|
||||
],
|
||||
)
|
@ -28,30 +28,33 @@ licenses([
|
||||
"notice", # MIT from expression "MIT OR Apache-2.0"
|
||||
])
|
||||
|
||||
# Generated targets
|
||||
# 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",
|
||||
],
|
||||
crate_root = "src/lib.rs",
|
||||
crate_type = "lib",
|
||||
edition = "2018",
|
||||
rustc_flags = [
|
||||
"--cap-lints=allow",
|
||||
],
|
||||
tags = [
|
||||
"cargo-raze",
|
||||
"manual",
|
||||
],
|
||||
version = "0.4.2",
|
||||
# buildifier: leave-alone
|
||||
deps = [
|
||||
],
|
||||
)
|
||||
|
||||
# Unsupported target "serde" with type "test" omitted
|
||||
|
||||
# Unsupported target "version-number" with type "test" omitted
|
@ -28,27 +28,29 @@ licenses([
|
||||
"notice", # Apache-2.0 from expression "Apache-2.0 OR (MIT OR MPL-2.0)"
|
||||
])
|
||||
|
||||
# Generated targets
|
||||
# Generated Targets
|
||||
|
||||
# Unsupported target "bench" with type "bench" omitted
|
||||
|
||||
# buildifier: leave-alone
|
||||
rust_library(
|
||||
name = "htmlescape",
|
||||
crate_type = "lib",
|
||||
deps = [
|
||||
],
|
||||
srcs = glob(["**/*.rs"]),
|
||||
crate_features = [
|
||||
],
|
||||
crate_root = "src/lib.rs",
|
||||
crate_type = "lib",
|
||||
edition = "2015",
|
||||
rustc_flags = [
|
||||
"--cap-lints=allow",
|
||||
],
|
||||
version = "0.3.1",
|
||||
tags = [
|
||||
"cargo-raze",
|
||||
"manual",
|
||||
],
|
||||
crate_features = [
|
||||
version = "0.3.1",
|
||||
# buildifier: leave-alone
|
||||
deps = [
|
||||
],
|
||||
)
|
||||
|
||||
# Unsupported target "test" with type "test" omitted
|
@ -28,35 +28,42 @@ licenses([
|
||||
"notice", # MIT from expression "MIT OR Apache-2.0"
|
||||
])
|
||||
|
||||
# Generated targets
|
||||
# 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
|
||||
# Unsupported target "uri" with type "bench" omitted
|
||||
|
||||
rust_library(
|
||||
name = "http",
|
||||
srcs = glob(["**/*.rs"]),
|
||||
crate_features = [
|
||||
],
|
||||
crate_root = "src/lib.rs",
|
||||
crate_type = "lib",
|
||||
edition = "2018",
|
||||
rustc_flags = [
|
||||
"--cap-lints=allow",
|
||||
],
|
||||
tags = [
|
||||
"cargo-raze",
|
||||
"manual",
|
||||
],
|
||||
version = "0.2.1",
|
||||
# buildifier: leave-alone
|
||||
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 "header_map" with type "test" omitted
|
||||
|
||||
# Unsupported target "header_map_fuzz" with type "test" omitted
|
||||
|
||||
# Unsupported target "status_code" with type "test" omitted
|
||||
# Unsupported target "uri" with type "bench" omitted
|
@ -28,28 +28,29 @@ licenses([
|
||||
"notice", # MIT from expression "MIT"
|
||||
])
|
||||
|
||||
# Generated targets
|
||||
# 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_features = [
|
||||
],
|
||||
crate_root = "src/lib.rs",
|
||||
crate_type = "lib",
|
||||
edition = "2018",
|
||||
rustc_flags = [
|
||||
"--cap-lints=allow",
|
||||
],
|
||||
version = "0.3.1",
|
||||
tags = [
|
||||
"cargo-raze",
|
||||
"manual",
|
||||
],
|
||||
crate_features = [
|
||||
version = "0.3.1",
|
||||
# buildifier: leave-alone
|
||||
deps = [
|
||||
"@raze__bytes__0_5_6//:bytes",
|
||||
"@raze__http__0_2_1//:http",
|
||||
],
|
||||
)
|
||||
|
||||
# Unsupported target "is_end_stream" with type "test" omitted
|
@ -28,62 +28,61 @@ licenses([
|
||||
"notice", # MIT from expression "MIT OR Apache-2.0"
|
||||
])
|
||||
|
||||
# Generated targets
|
||||
# buildifier: disable=load-on-top
|
||||
# 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 = "httparse_build_script",
|
||||
srcs = glob(["**/*.rs"]),
|
||||
crate_root = "build.rs",
|
||||
edition = "2015",
|
||||
deps = [
|
||||
build_script_env = {
|
||||
},
|
||||
crate_features = [
|
||||
"default",
|
||||
"std",
|
||||
],
|
||||
crate_root = "build.rs",
|
||||
data = glob(["**"]),
|
||||
edition = "2015",
|
||||
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"],
|
||||
deps = [
|
||||
],
|
||||
)
|
||||
|
||||
# Unsupported target "parse" with type "bench" omitted
|
||||
|
||||
# buildifier: leave-alone
|
||||
rust_library(
|
||||
name = "httparse",
|
||||
crate_type = "lib",
|
||||
deps = [
|
||||
":httparse_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",
|
||||
],
|
||||
crate_root = "src/lib.rs",
|
||||
crate_type = "lib",
|
||||
edition = "2015",
|
||||
rustc_flags = [
|
||||
"--cap-lints=allow",
|
||||
],
|
||||
tags = [
|
||||
"cargo-raze",
|
||||
"manual",
|
||||
],
|
||||
version = "1.3.4",
|
||||
# buildifier: leave-alone
|
||||
deps = [
|
||||
":httparse_build_script",
|
||||
],
|
||||
)
|
||||
# Unsupported target "parse" with type "bench" omitted
|
||||
|
||||
# Unsupported target "uri" with type "test" omitted
|
@ -28,25 +28,25 @@ licenses([
|
||||
"notice", # MIT from expression "MIT OR Apache-2.0"
|
||||
])
|
||||
|
||||
# Generated targets
|
||||
# Generated Targets
|
||||
|
||||
# buildifier: leave-alone
|
||||
rust_library(
|
||||
name = "httpdate",
|
||||
crate_type = "lib",
|
||||
deps = [
|
||||
],
|
||||
srcs = glob(["**/*.rs"]),
|
||||
crate_features = [
|
||||
],
|
||||
crate_root = "src/lib.rs",
|
||||
crate_type = "lib",
|
||||
edition = "2015",
|
||||
rustc_flags = [
|
||||
"--cap-lints=allow",
|
||||
],
|
||||
version = "0.3.2",
|
||||
tags = [
|
||||
"cargo-raze",
|
||||
"manual",
|
||||
],
|
||||
crate_features = [
|
||||
version = "0.3.2",
|
||||
# buildifier: leave-alone
|
||||
deps = [
|
||||
],
|
||||
)
|
@ -28,27 +28,29 @@ licenses([
|
||||
"notice", # MIT from expression "MIT OR Apache-2.0"
|
||||
])
|
||||
|
||||
# Generated targets
|
||||
# Generated Targets
|
||||
|
||||
# Unsupported target "custom_options" with type "example" omitted
|
||||
|
||||
# buildifier: leave-alone
|
||||
# Unsupported target "sizes" with type "example" omitted
|
||||
|
||||
rust_library(
|
||||
name = "humansize",
|
||||
crate_type = "lib",
|
||||
deps = [
|
||||
],
|
||||
srcs = glob(["**/*.rs"]),
|
||||
crate_features = [
|
||||
],
|
||||
crate_root = "src/lib.rs",
|
||||
crate_type = "lib",
|
||||
edition = "2015",
|
||||
rustc_flags = [
|
||||
"--cap-lints=allow",
|
||||
],
|
||||
version = "1.1.0",
|
||||
tags = [
|
||||
"cargo-raze",
|
||||
"manual",
|
||||
],
|
||||
crate_features = [
|
||||
version = "1.1.0",
|
||||
# buildifier: leave-alone
|
||||
deps = [
|
||||
],
|
||||
)
|
||||
# Unsupported target "sizes" with type "example" omitted
|
@ -28,27 +28,29 @@ licenses([
|
||||
"notice", # MIT from expression "MIT OR Apache-2.0"
|
||||
])
|
||||
|
||||
# Generated targets
|
||||
# Generated Targets
|
||||
|
||||
# Unsupported target "datetime_format" with type "bench" omitted
|
||||
|
||||
# Unsupported target "datetime_parse" with type "bench" omitted
|
||||
|
||||
# buildifier: leave-alone
|
||||
rust_library(
|
||||
name = "humantime",
|
||||
crate_type = "lib",
|
||||
deps = [
|
||||
],
|
||||
srcs = glob(["**/*.rs"]),
|
||||
crate_features = [
|
||||
],
|
||||
crate_root = "src/lib.rs",
|
||||
crate_type = "lib",
|
||||
edition = "2018",
|
||||
rustc_flags = [
|
||||
"--cap-lints=allow",
|
||||
],
|
||||
version = "2.0.1",
|
||||
tags = [
|
||||
"cargo-raze",
|
||||
"manual",
|
||||
],
|
||||
crate_features = [
|
||||
version = "2.0.1",
|
||||
# buildifier: leave-alone
|
||||
deps = [
|
||||
],
|
||||
)
|
@ -28,27 +28,76 @@ licenses([
|
||||
"notice", # MIT from expression "MIT"
|
||||
])
|
||||
|
||||
# Generated targets
|
||||
# Generated Targets
|
||||
|
||||
# Unsupported target "body" with type "bench" omitted
|
||||
# Unsupported target "client" with type "example" omitted
|
||||
# Unsupported target "client" with type "test" omitted
|
||||
# Unsupported target "client_json" with type "example" omitted
|
||||
|
||||
# Unsupported target "connect" with type "bench" omitted
|
||||
# Unsupported target "echo" with type "example" omitted
|
||||
|
||||
# Unsupported target "end_to_end" with type "bench" omitted
|
||||
|
||||
# Unsupported target "pipeline" with type "bench" omitted
|
||||
|
||||
# Unsupported target "server" with type "bench" omitted
|
||||
|
||||
# Unsupported target "client" with type "example" omitted
|
||||
|
||||
# Unsupported target "client_json" with type "example" omitted
|
||||
|
||||
# Unsupported target "echo" with type "example" omitted
|
||||
|
||||
# Unsupported target "gateway" with type "example" omitted
|
||||
|
||||
# Unsupported target "hello" with type "example" omitted
|
||||
|
||||
# Unsupported target "http_proxy" with type "example" omitted
|
||||
|
||||
# buildifier: leave-alone
|
||||
# Unsupported target "multi_server" with type "example" omitted
|
||||
|
||||
# Unsupported target "params" with type "example" omitted
|
||||
|
||||
# Unsupported target "send_file" with type "example" omitted
|
||||
|
||||
# Unsupported target "service_struct_impl" with type "example" omitted
|
||||
|
||||
# Unsupported target "single_threaded" with type "example" omitted
|
||||
|
||||
# Unsupported target "state" with type "example" omitted
|
||||
|
||||
# Unsupported target "tower_client" with type "example" omitted
|
||||
|
||||
# Unsupported target "tower_server" with type "example" omitted
|
||||
|
||||
# Unsupported target "upgrades" with type "example" omitted
|
||||
|
||||
# Unsupported target "web_api" with type "example" omitted
|
||||
|
||||
rust_library(
|
||||
name = "hyper",
|
||||
srcs = glob(["**/*.rs"]),
|
||||
aliases = {
|
||||
},
|
||||
crate_features = [
|
||||
"socket2",
|
||||
"tcp",
|
||||
],
|
||||
crate_root = "src/lib.rs",
|
||||
crate_type = "lib",
|
||||
edition = "2018",
|
||||
rustc_flags = [
|
||||
"--cap-lints=allow",
|
||||
],
|
||||
tags = [
|
||||
"cargo-raze",
|
||||
"manual",
|
||||
],
|
||||
version = "0.13.9",
|
||||
# buildifier: leave-alone
|
||||
deps = [
|
||||
"@raze__bytes__0_5_6//:bytes",
|
||||
"@raze__futures_channel__0_3_7//:futures_channel",
|
||||
"@raze__futures_core__0_3_7//:futures_core",
|
||||
"@raze__futures_util__0_3_7//:futures_util",
|
||||
"@raze__futures_channel__0_3_8//:futures_channel",
|
||||
"@raze__futures_core__0_3_8//:futures_core",
|
||||
"@raze__futures_util__0_3_8//:futures_util",
|
||||
"@raze__h2__0_2_7//:h2",
|
||||
"@raze__http__0_2_1//:http",
|
||||
"@raze__http_body__0_3_1//:http_body",
|
||||
@ -56,8 +105,8 @@ rust_library(
|
||||
"@raze__httpdate__0_3_2//:httpdate",
|
||||
"@raze__itoa__0_4_6//:itoa",
|
||||
"@raze__pin_project__1_0_1//:pin_project",
|
||||
"@raze__socket2__0_3_15//:socket2",
|
||||
"@raze__tokio__0_2_22//:tokio",
|
||||
"@raze__socket2__0_3_16//:socket2",
|
||||
"@raze__tokio__0_2_23//:tokio",
|
||||
"@raze__tower_service__0_3_0//:tower_service",
|
||||
"@raze__tracing__0_1_21//:tracing",
|
||||
"@raze__want__0_3_0//:want",
|
||||
@ -72,35 +121,10 @@ rust_library(
|
||||
],
|
||||
"//conditions:default": [],
|
||||
}),
|
||||
srcs = glob(["**/*.rs"]),
|
||||
crate_root = "src/lib.rs",
|
||||
edition = "2018",
|
||||
rustc_flags = [
|
||||
"--cap-lints=allow",
|
||||
],
|
||||
version = "0.13.9",
|
||||
tags = [
|
||||
"cargo-raze",
|
||||
"manual",
|
||||
],
|
||||
crate_features = [
|
||||
"socket2",
|
||||
"tcp",
|
||||
],
|
||||
aliases = {
|
||||
},
|
||||
)
|
||||
|
||||
# Unsupported target "client" with type "test" omitted
|
||||
|
||||
# Unsupported target "integration" with type "test" omitted
|
||||
# Unsupported target "multi_server" with type "example" omitted
|
||||
# Unsupported target "params" with type "example" omitted
|
||||
# Unsupported target "pipeline" with type "bench" omitted
|
||||
# Unsupported target "send_file" with type "example" omitted
|
||||
# Unsupported target "server" with type "bench" omitted
|
||||
|
||||
# Unsupported target "server" with type "test" omitted
|
||||
# Unsupported target "service_struct_impl" with type "example" omitted
|
||||
# Unsupported target "single_threaded" with type "example" omitted
|
||||
# Unsupported target "state" with type "example" omitted
|
||||
# Unsupported target "tower_client" with type "example" omitted
|
||||
# Unsupported target "tower_server" with type "example" omitted
|
||||
# Unsupported target "upgrades" with type "example" omitted
|
||||
# Unsupported target "web_api" with type "example" 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