Upgrade rust tooling
This is a combination of 2 commits and a merge that had to be made
into one to build successfully. Below is the each commit message.
======================
Merge commit '6b8c7d81975eefbe58bece57a9fa9d4665ca222a' into rules_rust
======================
Upgrade rules_rust to version 0.25.1
======================
Migrate rust dependencies to crate_universe.
We've been using cargo raze for managing rust dependencies,
however cargo-raze has some flaws and it's not being updated
(last commit on main was on Dec 2022). Meanwhile, crate_universe
ships with rules_rust which we already depend on.
crates_universe doesn't handle binary only dependencies, however
these are easy to add manually as explained here:
http://bazelbuild.github.io/rules_rust/crate_universe.html#binary-dependencies
We only depend on cxxbridge_cmd which I've added.
crates_universe didnd't allow for extra_aliased_targets which we use for
cxx (cxx_cc target). I've added that functionality and built a
cargo-bazel binary which has been deployed to our Build-Dependencies.
Crates now live in @crate_index//:[crate_name].
After adding a crate, you have to use
`CARGO_BAZEL_REPIN=1 bazel build //foo/bar` to have cargo generate the
new build files and the lock file. It will error if the manifest(s)
don't match the lock file.
If you want to update the lock file without building anything in
particular you can run
`CARGO_BAZEL_REPIN=1 bazel sync --only=crate_index`
Change-Id: Iaa47218e6012cf891c98a5c9340eeaa8b7e67c12
Signed-off-by: Adam Snaider <adsnaider@gmail.com>
diff --git a/third_party/cargo/BUILD.bazel b/third_party/cargo/BUILD.bazel
index 1877400..e69de29 100644
--- a/third_party/cargo/BUILD.bazel
+++ b/third_party/cargo/BUILD.bazel
@@ -1,426 +0,0 @@
-"""
-@generated
-cargo-raze generated Bazel file.
-
-DO NOT EDIT! Replaced on runs of cargo-raze
-"""
-
-package(default_visibility = ["//visibility:public"])
-
-licenses([
- "notice", # See individual crates for specific licenses
-])
-
-# Aliased targets
-alias(
- name = "anyhow",
- actual = "@raze__anyhow__1_0_68//:anyhow",
- tags = [
- "cargo-raze",
- "manual",
- ],
-)
-
-alias(
- name = "aquamarine",
- actual = "@raze__aquamarine__0_1_12//:aquamarine",
- tags = [
- "cargo-raze",
- "manual",
- ],
-)
-
-alias(
- name = "assert_cmd",
- actual = "@raze__assert_cmd__1_0_8//:assert_cmd",
- tags = [
- "cargo-raze",
- "manual",
- ],
-)
-
-alias(
- name = "autocxx_bindgen",
- actual = "@raze__autocxx_bindgen__0_59_17//:autocxx_bindgen",
- tags = [
- "cargo-raze",
- "manual",
- ],
-)
-
-alias(
- name = "bindgen",
- actual = "@raze__bindgen__0_58_1//:bindgen",
- tags = [
- "cargo-raze",
- "manual",
- ],
-)
-
-alias(
- name = "cargo_bin_bindgen",
- actual = "@raze__bindgen__0_58_1//:cargo_bin_bindgen",
- tags = [
- "cargo-raze",
- "manual",
- ],
-)
-
-alias(
- name = "bitflags",
- actual = "@raze__bitflags__1_3_2//:bitflags",
- tags = [
- "cargo-raze",
- "manual",
- ],
-)
-
-alias(
- name = "cc",
- actual = "@raze__cc__1_0_78//:cc",
- tags = [
- "cargo-raze",
- "manual",
- ],
-)
-
-alias(
- name = "clap",
- actual = "@raze__clap__3_2_23//:clap",
- tags = [
- "cargo-raze",
- "manual",
- ],
-)
-
-alias(
- name = "cxx",
- actual = "@raze__cxx__1_0_85//:cxx",
- tags = [
- "cargo-raze",
- "manual",
- ],
-)
-
-alias(
- name = "cxx_cc",
- actual = "@raze__cxx__1_0_85//:cxx_cc",
- tags = [
- "cargo-raze",
- "manual",
- ],
-)
-
-alias(
- name = "cxx_gen",
- actual = "@raze__cxx_gen__0_7_85//:cxx_gen",
- tags = [
- "cargo-raze",
- "manual",
- ],
-)
-
-alias(
- name = "cargo_bin_cxxbridge",
- actual = "@raze__cxxbridge_cmd__1_0_77//:cargo_bin_cxxbridge",
- tags = [
- "cargo-raze",
- "manual",
- ],
-)
-
-alias(
- name = "cxxbridge_cmd",
- actual = "@raze__cxxbridge_cmd__1_0_77//:cxxbridge_cmd",
- tags = [
- "cargo-raze",
- "manual",
- ],
-)
-
-alias(
- name = "cxxbridge_macro",
- actual = "@raze__cxxbridge_macro__1_0_85//:cxxbridge_macro",
- tags = [
- "cargo-raze",
- "manual",
- ],
-)
-
-alias(
- name = "env_logger",
- actual = "@raze__env_logger__0_9_3//:env_logger",
- tags = [
- "cargo-raze",
- "manual",
- ],
-)
-
-alias(
- name = "futures",
- actual = "@raze__futures__0_3_25//:futures",
- tags = [
- "cargo-raze",
- "manual",
- ],
-)
-
-alias(
- name = "indexmap",
- actual = "@raze__indexmap__1_9_2//:indexmap",
- tags = [
- "cargo-raze",
- "manual",
- ],
-)
-
-alias(
- name = "indoc",
- actual = "@raze__indoc__1_0_8//:indoc",
- tags = [
- "cargo-raze",
- "manual",
- ],
-)
-
-alias(
- name = "itertools",
- actual = "@raze__itertools__0_10_5//:itertools",
- tags = [
- "cargo-raze",
- "manual",
- ],
-)
-
-alias(
- name = "libloading",
- actual = "@raze__libloading__0_6_3//:libloading",
- tags = [
- "cargo-raze",
- "manual",
- ],
-)
-
-alias(
- name = "link_cplusplus",
- actual = "@raze__link_cplusplus__1_0_8//:link_cplusplus",
- tags = [
- "cargo-raze",
- "manual",
- ],
-)
-
-alias(
- name = "log",
- actual = "@raze__log__0_4_17//:log",
- tags = [
- "cargo-raze",
- "manual",
- ],
-)
-
-alias(
- name = "miette",
- actual = "@raze__miette__4_7_1//:miette",
- tags = [
- "cargo-raze",
- "manual",
- ],
-)
-
-alias(
- name = "moveit",
- actual = "@raze__moveit__0_5_1//:moveit",
- tags = [
- "cargo-raze",
- "manual",
- ],
-)
-
-alias(
- name = "once_cell",
- actual = "@raze__once_cell__1_16_0//:once_cell",
- tags = [
- "cargo-raze",
- "manual",
- ],
-)
-
-alias(
- name = "pathdiff",
- actual = "@raze__pathdiff__0_2_1//:pathdiff",
- tags = [
- "cargo-raze",
- "manual",
- ],
-)
-
-alias(
- name = "proc_macro2",
- actual = "@raze__proc_macro2__1_0_49//:proc_macro2",
- tags = [
- "cargo-raze",
- "manual",
- ],
-)
-
-alias(
- name = "proc_macro_error",
- actual = "@raze__proc_macro_error__1_0_4//:proc_macro_error",
- tags = [
- "cargo-raze",
- "manual",
- ],
-)
-
-alias(
- name = "quote",
- actual = "@raze__quote__1_0_23//:quote",
- tags = [
- "cargo-raze",
- "manual",
- ],
-)
-
-alias(
- name = "regex",
- actual = "@raze__regex__1_7_0//:regex",
- tags = [
- "cargo-raze",
- "manual",
- ],
-)
-
-alias(
- name = "rust_info",
- actual = "@raze__rust_info__0_3_2//:rust_info",
- tags = [
- "cargo-raze",
- "manual",
- ],
-)
-
-alias(
- name = "rustc_version",
- actual = "@raze__rustc_version__0_4_0//:rustc_version",
- tags = [
- "cargo-raze",
- "manual",
- ],
-)
-
-alias(
- name = "serde",
- actual = "@raze__serde__1_0_151//:serde",
- tags = [
- "cargo-raze",
- "manual",
- ],
-)
-
-alias(
- name = "serde_json",
- actual = "@raze__serde_json__1_0_91//:serde_json",
- tags = [
- "cargo-raze",
- "manual",
- ],
-)
-
-alias(
- name = "smallvec",
- actual = "@raze__smallvec__1_10_0//:smallvec",
- tags = [
- "cargo-raze",
- "manual",
- ],
-)
-
-alias(
- name = "strum_macros",
- actual = "@raze__strum_macros__0_24_3//:strum_macros",
- tags = [
- "cargo-raze",
- "manual",
- ],
-)
-
-alias(
- name = "syn",
- actual = "@raze__syn__1_0_107//:syn",
- tags = [
- "cargo-raze",
- "manual",
- ],
-)
-
-alias(
- name = "tempfile",
- actual = "@raze__tempfile__3_3_0//:tempfile",
- tags = [
- "cargo-raze",
- "manual",
- ],
-)
-
-alias(
- name = "test_log",
- actual = "@raze__test_log__0_2_11//:test_log",
- tags = [
- "cargo-raze",
- "manual",
- ],
-)
-
-alias(
- name = "thiserror",
- actual = "@raze__thiserror__1_0_38//:thiserror",
- tags = [
- "cargo-raze",
- "manual",
- ],
-)
-
-alias(
- name = "toml",
- actual = "@raze__toml__0_5_10//:toml",
- tags = [
- "cargo-raze",
- "manual",
- ],
-)
-
-alias(
- name = "trybuild",
- actual = "@raze__trybuild__1_0_73//:trybuild",
- tags = [
- "cargo-raze",
- "manual",
- ],
-)
-
-alias(
- name = "uuid",
- actual = "@raze__uuid__1_2_2//:uuid",
- tags = [
- "cargo-raze",
- "manual",
- ],
-)
-
-alias(
- name = "version_check",
- actual = "@raze__version_check__0_9_4//:version_check",
- tags = [
- "cargo-raze",
- "manual",
- ],
-)
-
-# Export file for Stardoc support
-exports_files(
- [
- "crates.bzl",
- ],
- visibility = ["//visibility:public"],
-)
diff --git a/third_party/cargo/Cargo.raze.lock b/third_party/cargo/Cargo.raze.lock
deleted file mode 100644
index 37bb02b..0000000
--- a/third_party/cargo/Cargo.raze.lock
+++ /dev/null
@@ -1,1403 +0,0 @@
-# This file is automatically @generated by Cargo.
-# It is not intended for manual editing.
-version = 3
-
-[[package]]
-name = "addr2line"
-version = "0.19.0"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "a76fd60b23679b7d19bd066031410fb7e458ccc5e958eb5c325888ce4baedc97"
-dependencies = [
- "gimli",
-]
-
-[[package]]
-name = "adler"
-version = "1.0.2"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "f26201604c87b1e01bd3d98f8d5d9a8fcbb815e8cedb41ffccbeb4bf593a35fe"
-
-[[package]]
-name = "ahash"
-version = "0.7.6"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "fcb51a0695d8f838b1ee009b3fbf66bda078cd64590202a864a8f3e8c4315c47"
-dependencies = [
- "getrandom",
- "once_cell",
- "version_check",
-]
-
-[[package]]
-name = "aho-corasick"
-version = "0.7.20"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "cc936419f96fa211c1b9166887b38e5e40b19958e5b895be7c1f93adec7071ac"
-dependencies = [
- "memchr",
-]
-
-[[package]]
-name = "ansi_term"
-version = "0.12.1"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "d52a9bb7ec0cf484c551830a7ce27bd20d67eac647e1befb56b0be4ee39a55d2"
-dependencies = [
- "winapi",
-]
-
-[[package]]
-name = "anyhow"
-version = "1.0.68"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "2cb2f989d18dd141ab8ae82f64d1a8cdd37e0840f73a406896cf5e99502fab61"
-
-[[package]]
-name = "aquamarine"
-version = "0.1.12"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "a941c39708478e8eea39243b5983f1c42d2717b3620ee91f4a52115fd02ac43f"
-dependencies = [
- "itertools 0.9.0",
- "proc-macro-error",
- "proc-macro2",
- "quote",
- "syn",
-]
-
-[[package]]
-name = "assert_cmd"
-version = "1.0.8"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "c98233c6673d8601ab23e77eb38f999c51100d46c5703b17288c57fddf3a1ffe"
-dependencies = [
- "bstr",
- "doc-comment",
- "predicates",
- "predicates-core",
- "predicates-tree",
- "wait-timeout",
-]
-
-[[package]]
-name = "atty"
-version = "0.2.14"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "d9b39be18770d11421cdb1b9947a45dd3f37e93092cbf377614828a319d5fee8"
-dependencies = [
- "hermit-abi",
- "libc",
- "winapi",
-]
-
-[[package]]
-name = "autocfg"
-version = "1.1.0"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "d468802bab17cbc0cc575e9b053f41e72aa36bfa6b7f55e3529ffa43161b97fa"
-
-[[package]]
-name = "autocxx"
-version = "0.22.3"
-dependencies = [
- "aquamarine",
- "autocxx-macro",
- "cxx",
- "moveit",
-]
-
-[[package]]
-name = "autocxx-bindgen"
-version = "0.59.17"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "f9a9a26dd38d385d23b1bf61bd231b77f690c4368aef4c77cee1b7a6da2e2042"
-dependencies = [
- "bitflags",
- "cexpr 0.6.0",
- "clang-sys",
- "clap 2.34.0",
- "env_logger 0.9.3",
- "itertools 0.10.5",
- "lazy_static",
- "lazycell",
- "log",
- "peeking_take_while",
- "proc-macro2",
- "quote",
- "regex",
- "rustc-hash",
- "shlex",
- "which 4.3.0",
-]
-
-[[package]]
-name = "autocxx-engine"
-version = "0.22.3"
-dependencies = [
- "aquamarine",
- "autocxx-bindgen",
- "autocxx-parser",
- "cc",
- "cxx-gen",
- "indexmap",
- "indoc",
- "itertools 0.10.5",
- "log",
- "miette",
- "once_cell",
- "proc-macro2",
- "quote",
- "regex",
- "serde_json",
- "strum_macros",
- "syn",
- "tempfile",
- "thiserror",
- "version_check",
-]
-
-[[package]]
-name = "autocxx-gen"
-version = "0.22.3"
-dependencies = [
- "assert_cmd",
- "autocxx",
- "autocxx-engine",
- "autocxx-integration-tests",
- "clap 3.2.23",
- "cxx",
- "env_logger 0.9.3",
- "indexmap",
- "itertools 0.10.5",
- "miette",
- "pathdiff",
- "proc-macro2",
- "tempfile",
-]
-
-[[package]]
-name = "autocxx-integration-tests"
-version = "0.22.3"
-dependencies = [
- "autocxx",
- "autocxx-engine",
- "cc",
- "cxx",
- "env_logger 0.9.3",
- "indoc",
- "itertools 0.10.5",
- "link-cplusplus",
- "log",
- "once_cell",
- "proc-macro2",
- "quote",
- "rust_info",
- "syn",
- "tempfile",
- "test-log",
- "trybuild",
-]
-
-[[package]]
-name = "autocxx-macro"
-version = "0.22.3"
-dependencies = [
- "autocxx-parser",
- "proc-macro-error",
- "proc-macro2",
- "quote",
- "syn",
-]
-
-[[package]]
-name = "autocxx-parser"
-version = "0.22.3"
-dependencies = [
- "indexmap",
- "itertools 0.10.5",
- "log",
- "once_cell",
- "proc-macro2",
- "quote",
- "serde",
- "serde_json",
- "syn",
- "thiserror",
-]
-
-[[package]]
-name = "backtrace"
-version = "0.3.67"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "233d376d6d185f2a3093e58f283f60f880315b6c60075b01f36b3b85154564ca"
-dependencies = [
- "addr2line",
- "cc",
- "cfg-if 1.0.0",
- "libc",
- "miniz_oxide",
- "object",
- "rustc-demangle",
-]
-
-[[package]]
-name = "bindgen"
-version = "0.58.1"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "0f8523b410d7187a43085e7e064416ea32ded16bd0a4e6fc025e21616d01258f"
-dependencies = [
- "bitflags",
- "cexpr 0.4.0",
- "clang-sys",
- "clap 2.34.0",
- "env_logger 0.8.4",
- "lazy_static",
- "lazycell",
- "log",
- "peeking_take_while",
- "proc-macro2",
- "quote",
- "regex",
- "rustc-hash",
- "shlex",
- "which 3.1.1",
-]
-
-[[package]]
-name = "bitflags"
-version = "1.3.2"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "bef38d45163c2f1dde094a7dfd33ccf595c92905c8f8f4fdc18d06fb1037718a"
-
-[[package]]
-name = "bstr"
-version = "0.2.17"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "ba3569f383e8f1598449f1a423e72e99569137b47740b1da11ef19af3d5c3223"
-dependencies = [
- "lazy_static",
- "memchr",
- "regex-automata",
-]
-
-[[package]]
-name = "cc"
-version = "1.0.78"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "a20104e2335ce8a659d6dd92a51a767a0c062599c73b343fd152cb401e828c3d"
-
-[[package]]
-name = "cexpr"
-version = "0.4.0"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "f4aedb84272dbe89af497cf81375129abda4fc0a9e7c5d317498c15cc30c0d27"
-dependencies = [
- "nom 5.1.2",
-]
-
-[[package]]
-name = "cexpr"
-version = "0.6.0"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "6fac387a98bb7c37292057cffc56d62ecb629900026402633ae9160df93a8766"
-dependencies = [
- "nom 7.1.1",
-]
-
-[[package]]
-name = "cfg-if"
-version = "0.1.10"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "4785bdd1c96b2a846b2bd7cc02e86b6b3dbf14e7e53446c4f54c92a361040822"
-
-[[package]]
-name = "cfg-if"
-version = "1.0.0"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "baf1de4339761588bc0619e3cbc0120ee582ebb74b53b4efbf79117bd2da40fd"
-
-[[package]]
-name = "clang-sys"
-version = "1.4.0"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "fa2e27ae6ab525c3d369ded447057bca5438d86dc3a68f6faafb8269ba82ebf3"
-dependencies = [
- "glob",
- "libc",
- "libloading 0.7.4",
-]
-
-[[package]]
-name = "clap"
-version = "2.34.0"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "a0610544180c38b88101fecf2dd634b174a62eef6946f84dfc6a7127512b381c"
-dependencies = [
- "ansi_term",
- "atty",
- "bitflags",
- "strsim 0.8.0",
- "textwrap 0.11.0",
- "unicode-width",
- "vec_map",
-]
-
-[[package]]
-name = "clap"
-version = "3.2.23"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "71655c45cb9845d3270c9d6df84ebe72b4dad3c2ba3f7023ad47c144e4e473a5"
-dependencies = [
- "atty",
- "bitflags",
- "clap_lex",
- "indexmap",
- "once_cell",
- "strsim 0.10.0",
- "termcolor",
- "textwrap 0.16.0",
-]
-
-[[package]]
-name = "clap_lex"
-version = "0.2.4"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "2850f2f5a82cbf437dd5af4d49848fbdfc27c157c3d010345776f952765261c5"
-dependencies = [
- "os_str_bytes",
-]
-
-[[package]]
-name = "codespan-reporting"
-version = "0.11.1"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "3538270d33cc669650c4b093848450d380def10c331d38c768e34cac80576e6e"
-dependencies = [
- "termcolor",
- "unicode-width",
-]
-
-[[package]]
-name = "compile_with_bazel"
-version = "0.0.0"
-dependencies = [
- "anyhow",
- "bindgen",
- "bitflags",
- "cxx",
- "cxxbridge-cmd",
- "cxxbridge-macro",
- "futures",
- "libloading 0.6.3",
- "link-cplusplus",
- "once_cell",
- "smallvec",
- "thiserror",
- "toml",
- "uuid",
-]
-
-[[package]]
-name = "cxx"
-version = "1.0.85"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "5add3fc1717409d029b20c5b6903fc0c0b02fa6741d820054f4a2efa5e5816fd"
-dependencies = [
- "cc",
- "cxxbridge-flags",
- "cxxbridge-macro",
- "link-cplusplus",
-]
-
-[[package]]
-name = "cxx-gen"
-version = "0.7.85"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "ccca653bd8a21c5cfe696cd5347729d43f651298459b22e57c60fbae1cd49fec"
-dependencies = [
- "codespan-reporting",
- "proc-macro2",
- "quote",
- "syn",
-]
-
-[[package]]
-name = "cxxbridge-cmd"
-version = "1.0.77"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "de38cfccf77ed5c524784e2bcbb8863287acd00af2f5d522370f27257ef86307"
-dependencies = [
- "clap 3.2.23",
- "codespan-reporting",
- "proc-macro2",
- "quote",
- "syn",
-]
-
-[[package]]
-name = "cxxbridge-flags"
-version = "1.0.85"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "69a3e162fde4e594ed2b07d0f83c6c67b745e7f28ce58c6df5e6b6bef99dfb59"
-
-[[package]]
-name = "cxxbridge-macro"
-version = "1.0.85"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "3e7e2adeb6a0d4a282e581096b06e1791532b7d576dcde5ccd9382acf55db8e6"
-dependencies = [
- "proc-macro2",
- "quote",
- "syn",
-]
-
-[[package]]
-name = "difflib"
-version = "0.4.0"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "6184e33543162437515c2e2b48714794e37845ec9851711914eec9d308f6ebe8"
-
-[[package]]
-name = "doc-comment"
-version = "0.3.3"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "fea41bba32d969b513997752735605054bc0dfa92b4c56bf1189f2e174be7a10"
-
-[[package]]
-name = "either"
-version = "1.8.0"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "90e5c1c8368803113bf0c9584fc495a58b86dc8a29edbf8fe877d21d9507e797"
-
-[[package]]
-name = "env_logger"
-version = "0.8.4"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "a19187fea3ac7e84da7dacf48de0c45d63c6a76f9490dae389aead16c243fce3"
-dependencies = [
- "atty",
- "humantime",
- "log",
- "regex",
- "termcolor",
-]
-
-[[package]]
-name = "env_logger"
-version = "0.9.3"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "a12e6657c4c97ebab115a42dcee77225f7f482cdd841cf7088c657a42e9e00e7"
-dependencies = [
- "atty",
- "humantime",
- "log",
- "regex",
- "termcolor",
-]
-
-[[package]]
-name = "fastrand"
-version = "1.8.0"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "a7a407cfaa3385c4ae6b23e84623d48c2798d06e3e6a1878f7f59f17b3f86499"
-dependencies = [
- "instant",
-]
-
-[[package]]
-name = "flatbuffers"
-version = "22.10.26"
-dependencies = [
- "bitflags",
- "rustc_version",
- "serde",
-]
-
-[[package]]
-name = "futures"
-version = "0.3.25"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "38390104763dc37a5145a53c29c63c1290b5d316d6086ec32c293f6736051bb0"
-dependencies = [
- "futures-channel",
- "futures-core",
- "futures-executor",
- "futures-io",
- "futures-sink",
- "futures-task",
- "futures-util",
-]
-
-[[package]]
-name = "futures-channel"
-version = "0.3.25"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "52ba265a92256105f45b719605a571ffe2d1f0fea3807304b522c1d778f79eed"
-dependencies = [
- "futures-core",
- "futures-sink",
-]
-
-[[package]]
-name = "futures-core"
-version = "0.3.25"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "04909a7a7e4633ae6c4a9ab280aeb86da1236243a77b694a49eacd659a4bd3ac"
-
-[[package]]
-name = "futures-executor"
-version = "0.3.25"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "7acc85df6714c176ab5edf386123fafe217be88c0840ec11f199441134a074e2"
-dependencies = [
- "futures-core",
- "futures-task",
- "futures-util",
-]
-
-[[package]]
-name = "futures-io"
-version = "0.3.25"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "00f5fb52a06bdcadeb54e8d3671f8888a39697dcb0b81b23b55174030427f4eb"
-
-[[package]]
-name = "futures-macro"
-version = "0.3.25"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "bdfb8ce053d86b91919aad980c220b1fb8401a9394410e1c289ed7e66b61835d"
-dependencies = [
- "proc-macro2",
- "quote",
- "syn",
-]
-
-[[package]]
-name = "futures-sink"
-version = "0.3.25"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "39c15cf1a4aa79df40f1bb462fb39676d0ad9e366c2a33b590d7c66f4f81fcf9"
-
-[[package]]
-name = "futures-task"
-version = "0.3.25"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "2ffb393ac5d9a6eaa9d3fdf37ae2776656b706e200c8e16b1bdb227f5198e6ea"
-
-[[package]]
-name = "futures-util"
-version = "0.3.25"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "197676987abd2f9cadff84926f410af1c183608d36641465df73ae8211dc65d6"
-dependencies = [
- "futures-channel",
- "futures-core",
- "futures-io",
- "futures-macro",
- "futures-sink",
- "futures-task",
- "memchr",
- "pin-project-lite",
- "pin-utils",
- "slab",
-]
-
-[[package]]
-name = "getrandom"
-version = "0.2.8"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "c05aeb6a22b8f62540c194aac980f2115af067bfe15a0734d7277a768d396b31"
-dependencies = [
- "cfg-if 1.0.0",
- "libc",
- "wasi",
-]
-
-[[package]]
-name = "gimli"
-version = "0.27.0"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "dec7af912d60cdbd3677c1af9352ebae6fb8394d165568a2234df0fa00f87793"
-
-[[package]]
-name = "glob"
-version = "0.3.0"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "9b919933a397b79c37e33b77bb2aa3dc8eb6e165ad809e58ff75bc7db2e34574"
-
-[[package]]
-name = "hashbrown"
-version = "0.12.3"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "8a9ee70c43aaf417c914396645a0fa852624801b24ebb7ae78fe8272889ac888"
-dependencies = [
- "ahash",
-]
-
-[[package]]
-name = "heck"
-version = "0.4.0"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "2540771e65fc8cb83cd6e8a237f70c319bd5c29f78ed1084ba5d50eeac86f7f9"
-
-[[package]]
-name = "hermit-abi"
-version = "0.1.19"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "62b467343b94ba476dcb2500d242dadbb39557df889310ac77c5d99100aaac33"
-dependencies = [
- "libc",
-]
-
-[[package]]
-name = "humantime"
-version = "2.1.0"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "9a3a5bfb195931eeb336b2a7b4d761daec841b97f947d34394601737a7bba5e4"
-
-[[package]]
-name = "indexmap"
-version = "1.9.2"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "1885e79c1fc4b10f0e172c475f458b7f7b93061064d98c3293e98c5ba0c8b399"
-dependencies = [
- "autocfg",
- "hashbrown",
- "serde",
-]
-
-[[package]]
-name = "indoc"
-version = "1.0.8"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "da2d6f23ffea9d7e76c53eee25dfb67bcd8fde7f1198b0855350698c9f07c780"
-
-[[package]]
-name = "instant"
-version = "0.1.12"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "7a5bbe824c507c5da5956355e86a746d82e0e1464f65d862cc5e71da70e94b2c"
-dependencies = [
- "cfg-if 1.0.0",
-]
-
-[[package]]
-name = "is_ci"
-version = "1.1.1"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "616cde7c720bb2bb5824a224687d8f77bfd38922027f01d825cd7453be5099fb"
-
-[[package]]
-name = "itertools"
-version = "0.9.0"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "284f18f85651fe11e8a991b2adb42cb078325c996ed026d994719efcfca1d54b"
-dependencies = [
- "either",
-]
-
-[[package]]
-name = "itertools"
-version = "0.10.5"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "b0fd2260e829bddf4cb6ea802289de2f86d6a7a690192fbe91b3f46e0f2c8473"
-dependencies = [
- "either",
-]
-
-[[package]]
-name = "itoa"
-version = "1.0.5"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "fad582f4b9e86b6caa621cabeb0963332d92eea04729ab12892c2533951e6440"
-
-[[package]]
-name = "lazy_static"
-version = "1.4.0"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "e2abad23fbc42b3700f2f279844dc832adb2b2eb069b2df918f455c4e18cc646"
-
-[[package]]
-name = "lazycell"
-version = "1.3.0"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "830d08ce1d1d941e6b30645f1a0eb5643013d835ce3779a5fc208261dbe10f55"
-
-[[package]]
-name = "libc"
-version = "0.2.138"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "db6d7e329c562c5dfab7a46a2afabc8b987ab9a4834c9d1ca04dc54c1546cef8"
-
-[[package]]
-name = "libloading"
-version = "0.6.3"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "2443d8f0478b16759158b2f66d525991a05491138bc05814ef52a250148ef4f9"
-dependencies = [
- "cfg-if 0.1.10",
- "winapi",
-]
-
-[[package]]
-name = "libloading"
-version = "0.7.4"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "b67380fd3b2fbe7527a606e18729d21c6f3951633d0500574c4dc22d2d638b9f"
-dependencies = [
- "cfg-if 1.0.0",
- "winapi",
-]
-
-[[package]]
-name = "link-cplusplus"
-version = "1.0.8"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "ecd207c9c713c34f95a097a5b029ac2ce6010530c7b49d7fea24d977dede04f5"
-dependencies = [
- "cc",
-]
-
-[[package]]
-name = "log"
-version = "0.4.17"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "abb12e687cfb44aa40f41fc3978ef76448f9b6038cad6aef4259d3c095a2382e"
-dependencies = [
- "cfg-if 1.0.0",
-]
-
-[[package]]
-name = "memchr"
-version = "2.5.0"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "2dffe52ecf27772e601905b7522cb4ef790d2cc203488bbd0e2fe85fcb74566d"
-
-[[package]]
-name = "miette"
-version = "4.7.1"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "1c90329e44f9208b55f45711f9558cec15d7ef8295cc65ecd6d4188ae8edc58c"
-dependencies = [
- "atty",
- "backtrace",
- "miette-derive",
- "once_cell",
- "owo-colors",
- "supports-color",
- "supports-hyperlinks",
- "supports-unicode",
- "terminal_size",
- "textwrap 0.15.2",
- "thiserror",
- "unicode-width",
-]
-
-[[package]]
-name = "miette-derive"
-version = "4.7.1"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "6b5bc45b761bcf1b5e6e6c4128cd93b84c218721a8d9b894aa0aff4ed180174c"
-dependencies = [
- "proc-macro2",
- "quote",
- "syn",
-]
-
-[[package]]
-name = "minimal-lexical"
-version = "0.2.1"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "68354c5c6bd36d73ff3feceb05efa59b6acb7626617f4962be322a825e61f79a"
-
-[[package]]
-name = "miniz_oxide"
-version = "0.6.2"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "b275950c28b37e794e8c55d88aeb5e139d0ce23fdbbeda68f8d7174abdf9e8fa"
-dependencies = [
- "adler",
-]
-
-[[package]]
-name = "moveit"
-version = "0.5.1"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "d7d756ffe4e38013507d35bf726a93fcdae2cae043ab5ce477f13857a335030d"
-dependencies = [
- "cxx",
-]
-
-[[package]]
-name = "nom"
-version = "5.1.2"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "ffb4262d26ed83a1c0a33a38fe2bb15797329c85770da05e6b828ddb782627af"
-dependencies = [
- "memchr",
- "version_check",
-]
-
-[[package]]
-name = "nom"
-version = "7.1.1"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "a8903e5a29a317527874d0402f867152a3d21c908bb0b933e416c65e301d4c36"
-dependencies = [
- "memchr",
- "minimal-lexical",
-]
-
-[[package]]
-name = "object"
-version = "0.30.0"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "239da7f290cfa979f43f85a8efeee9a8a76d0827c356d37f9d3d7254d6b537fb"
-dependencies = [
- "memchr",
-]
-
-[[package]]
-name = "once_cell"
-version = "1.16.0"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "86f0b0d4bf799edbc74508c1e8bf170ff5f41238e5f8225603ca7caaae2b7860"
-
-[[package]]
-name = "os_str_bytes"
-version = "6.4.1"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "9b7820b9daea5457c9f21c69448905d723fbd21136ccf521748f23fd49e723ee"
-
-[[package]]
-name = "owo-colors"
-version = "3.5.0"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "c1b04fb49957986fdce4d6ee7a65027d55d4b6d2265e5848bbb507b58ccfdb6f"
-
-[[package]]
-name = "pathdiff"
-version = "0.2.1"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "8835116a5c179084a830efb3adc117ab007512b535bc1a21c991d3b32a6b44dd"
-
-[[package]]
-name = "peeking_take_while"
-version = "0.1.2"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "19b17cddbe7ec3f8bc800887bab5e717348c95ea2ca0b1bf0837fb964dc67099"
-
-[[package]]
-name = "pin-project-lite"
-version = "0.2.9"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "e0a7ae3ac2f1173085d398531c705756c94a4c56843785df85a60c1a0afac116"
-
-[[package]]
-name = "pin-utils"
-version = "0.1.0"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "8b870d8c151b6f2fb93e84a13146138f05d02ed11c7e7c54f8826aaaf7c9f184"
-
-[[package]]
-name = "predicates"
-version = "2.1.1"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "a5aab5be6e4732b473071984b3164dbbfb7a3674d30ea5ff44410b6bcd960c3c"
-dependencies = [
- "difflib",
- "itertools 0.10.5",
- "predicates-core",
-]
-
-[[package]]
-name = "predicates-core"
-version = "1.0.5"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "72f883590242d3c6fc5bf50299011695fa6590c2c70eac95ee1bdb9a733ad1a2"
-
-[[package]]
-name = "predicates-tree"
-version = "1.0.7"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "54ff541861505aabf6ea722d2131ee980b8276e10a1297b94e896dd8b621850d"
-dependencies = [
- "predicates-core",
- "termtree",
-]
-
-[[package]]
-name = "proc-macro-error"
-version = "1.0.4"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "da25490ff9892aab3fcf7c36f08cfb902dd3e71ca0f9f9517bea02a73a5ce38c"
-dependencies = [
- "proc-macro-error-attr",
- "proc-macro2",
- "quote",
- "syn",
- "version_check",
-]
-
-[[package]]
-name = "proc-macro-error-attr"
-version = "1.0.4"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "a1be40180e52ecc98ad80b184934baf3d0d29f979574e439af5a55274b35f869"
-dependencies = [
- "proc-macro2",
- "quote",
- "version_check",
-]
-
-[[package]]
-name = "proc-macro2"
-version = "1.0.49"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "57a8eca9f9c4ffde41714334dee777596264c7825420f521abc92b5b5deb63a5"
-dependencies = [
- "unicode-ident",
-]
-
-[[package]]
-name = "quote"
-version = "1.0.23"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "8856d8364d252a14d474036ea1358d63c9e6965c8e5c1885c18f73d70bff9c7b"
-dependencies = [
- "proc-macro2",
-]
-
-[[package]]
-name = "redox_syscall"
-version = "0.2.16"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "fb5a58c1855b4b6819d59012155603f0b22ad30cad752600aadfcb695265519a"
-dependencies = [
- "bitflags",
-]
-
-[[package]]
-name = "regex"
-version = "1.7.0"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "e076559ef8e241f2ae3479e36f97bd5741c0330689e217ad51ce2c76808b868a"
-dependencies = [
- "aho-corasick",
- "memchr",
- "regex-syntax",
-]
-
-[[package]]
-name = "regex-automata"
-version = "0.1.10"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "6c230d73fb8d8c1b9c0b3135c5142a8acee3a0558fb8db5cf1cb65f8d7862132"
-
-[[package]]
-name = "regex-syntax"
-version = "0.6.28"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "456c603be3e8d448b072f410900c09faf164fbce2d480456f50eea6e25f9c848"
-
-[[package]]
-name = "remove_dir_all"
-version = "0.5.3"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "3acd125665422973a33ac9d3dd2df85edad0f4ae9b00dafb1a05e43a9f5ef8e7"
-dependencies = [
- "winapi",
-]
-
-[[package]]
-name = "rust_info"
-version = "0.3.2"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "821495e93d15e4433347b3a72e97005f1d8a620dc88d46637fecfcb16e98043d"
-
-[[package]]
-name = "rustc-demangle"
-version = "0.1.21"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "7ef03e0a2b150c7a90d01faf6254c9c48a41e95fb2a8c2ac1c6f0d2b9aefc342"
-
-[[package]]
-name = "rustc-hash"
-version = "1.1.0"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "08d43f7aa6b08d49f382cde6a7982047c3426db949b1424bc4b7ec9ae12c6ce2"
-
-[[package]]
-name = "rustc_version"
-version = "0.4.0"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "bfa0f585226d2e68097d4f95d113b15b83a82e819ab25717ec0590d9584ef366"
-dependencies = [
- "semver",
-]
-
-[[package]]
-name = "rustversion"
-version = "1.0.11"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "5583e89e108996506031660fe09baa5011b9dd0341b89029313006d1fb508d70"
-
-[[package]]
-name = "ryu"
-version = "1.0.12"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "7b4b9743ed687d4b4bcedf9ff5eaa7398495ae14e61cba0a295704edbc7decde"
-
-[[package]]
-name = "semver"
-version = "1.0.16"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "58bc9567378fc7690d6b2addae4e60ac2eeea07becb2c64b9f218b53865cba2a"
-
-[[package]]
-name = "serde"
-version = "1.0.151"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "97fed41fc1a24994d044e6db6935e69511a1153b52c15eb42493b26fa87feba0"
-dependencies = [
- "serde_derive",
-]
-
-[[package]]
-name = "serde_derive"
-version = "1.0.151"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "255abe9a125a985c05190d687b320c12f9b1f0b99445e608c21ba0782c719ad8"
-dependencies = [
- "proc-macro2",
- "quote",
- "syn",
-]
-
-[[package]]
-name = "serde_json"
-version = "1.0.91"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "877c235533714907a8c2464236f5c4b2a17262ef1bd71f38f35ea592c8da6883"
-dependencies = [
- "itoa",
- "ryu",
- "serde",
-]
-
-[[package]]
-name = "shlex"
-version = "1.1.0"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "43b2853a4d09f215c24cc5489c992ce46052d359b5109343cbafbf26bc62f8a3"
-
-[[package]]
-name = "slab"
-version = "0.4.7"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "4614a76b2a8be0058caa9dbbaf66d988527d86d003c11a94fbd335d7661edcef"
-dependencies = [
- "autocfg",
-]
-
-[[package]]
-name = "smallvec"
-version = "1.10.0"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "a507befe795404456341dfab10cef66ead4c041f62b8b11bbb92bffe5d0953e0"
-
-[[package]]
-name = "smawk"
-version = "0.3.1"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "f67ad224767faa3c7d8b6d91985b78e70a1324408abcb1cfcc2be4c06bc06043"
-
-[[package]]
-name = "strsim"
-version = "0.8.0"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "8ea5119cdb4c55b55d432abb513a0429384878c15dde60cc77b1c99de1a95a6a"
-
-[[package]]
-name = "strsim"
-version = "0.10.0"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "73473c0e59e6d5812c5dfe2a064a6444949f089e20eec9a2e5506596494e4623"
-
-[[package]]
-name = "strum_macros"
-version = "0.24.3"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "1e385be0d24f186b4ce2f9982191e7101bb737312ad61c1f2f984f34bcf85d59"
-dependencies = [
- "heck",
- "proc-macro2",
- "quote",
- "rustversion",
- "syn",
-]
-
-[[package]]
-name = "supports-color"
-version = "1.3.1"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "8ba6faf2ca7ee42fdd458f4347ae0a9bd6bcc445ad7cb57ad82b383f18870d6f"
-dependencies = [
- "atty",
- "is_ci",
-]
-
-[[package]]
-name = "supports-hyperlinks"
-version = "1.2.0"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "590b34f7c5f01ecc9d78dba4b3f445f31df750a67621cf31626f3b7441ce6406"
-dependencies = [
- "atty",
-]
-
-[[package]]
-name = "supports-unicode"
-version = "1.0.2"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "a8b945e45b417b125a8ec51f1b7df2f8df7920367700d1f98aedd21e5735f8b2"
-dependencies = [
- "atty",
-]
-
-[[package]]
-name = "syn"
-version = "1.0.107"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "1f4064b5b16e03ae50984a5a8ed5d4f8803e6bc1fd170a3cda91a1be4b18e3f5"
-dependencies = [
- "proc-macro2",
- "quote",
- "unicode-ident",
-]
-
-[[package]]
-name = "tempfile"
-version = "3.3.0"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "5cdb1ef4eaeeaddc8fbd371e5017057064af0911902ef36b39801f67cc6d79e4"
-dependencies = [
- "cfg-if 1.0.0",
- "fastrand",
- "libc",
- "redox_syscall",
- "remove_dir_all",
- "winapi",
-]
-
-[[package]]
-name = "termcolor"
-version = "1.1.3"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "bab24d30b911b2376f3a13cc2cd443142f0c81dda04c118693e35b3835757755"
-dependencies = [
- "winapi-util",
-]
-
-[[package]]
-name = "terminal_size"
-version = "0.1.17"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "633c1a546cee861a1a6d0dc69ebeca693bf4296661ba7852b9d21d159e0506df"
-dependencies = [
- "libc",
- "winapi",
-]
-
-[[package]]
-name = "termtree"
-version = "0.4.0"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "95059e91184749cb66be6dc994f67f182b6d897cb3df74a5bf66b5e709295fd8"
-
-[[package]]
-name = "test-log"
-version = "0.2.11"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "38f0c854faeb68a048f0f2dc410c5ddae3bf83854ef0e4977d58306a5edef50e"
-dependencies = [
- "proc-macro2",
- "quote",
- "syn",
-]
-
-[[package]]
-name = "textwrap"
-version = "0.11.0"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "d326610f408c7a4eb6f51c37c330e496b08506c9457c9d34287ecc38809fb060"
-dependencies = [
- "unicode-width",
-]
-
-[[package]]
-name = "textwrap"
-version = "0.15.2"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "b7b3e525a49ec206798b40326a44121291b530c963cfb01018f63e135bac543d"
-dependencies = [
- "smawk",
- "unicode-linebreak",
- "unicode-width",
-]
-
-[[package]]
-name = "textwrap"
-version = "0.16.0"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "222a222a5bfe1bba4a77b45ec488a741b3cb8872e5e499451fd7d0129c9c7c3d"
-
-[[package]]
-name = "thiserror"
-version = "1.0.38"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "6a9cd18aa97d5c45c6603caea1da6628790b37f7a34b6ca89522331c5180fed0"
-dependencies = [
- "thiserror-impl",
-]
-
-[[package]]
-name = "thiserror-impl"
-version = "1.0.38"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "1fb327af4685e4d03fa8cbcf1716380da910eeb2bb8be417e7f9fd3fb164f36f"
-dependencies = [
- "proc-macro2",
- "quote",
- "syn",
-]
-
-[[package]]
-name = "toml"
-version = "0.5.10"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "1333c76748e868a4d9d1017b5ab53171dfd095f70c712fdb4653a406547f598f"
-dependencies = [
- "serde",
-]
-
-[[package]]
-name = "trybuild"
-version = "1.0.73"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "ed01de3de062db82c0920b5cabe804f88d599a3f217932292597c678c903754d"
-dependencies = [
- "glob",
- "once_cell",
- "serde",
- "serde_derive",
- "serde_json",
- "termcolor",
- "toml",
-]
-
-[[package]]
-name = "unicode-ident"
-version = "1.0.6"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "84a22b9f218b40614adcb3f4ff08b703773ad44fa9423e4e0d346d5db86e4ebc"
-
-[[package]]
-name = "unicode-linebreak"
-version = "0.1.4"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "c5faade31a542b8b35855fff6e8def199853b2da8da256da52f52f1316ee3137"
-dependencies = [
- "hashbrown",
- "regex",
-]
-
-[[package]]
-name = "unicode-width"
-version = "0.1.10"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "c0edd1e5b14653f783770bce4a4dabb4a5108a5370a5f5d8cfe8710c361f6c8b"
-
-[[package]]
-name = "uuid"
-version = "1.2.2"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "422ee0de9031b5b948b97a8fc04e3aa35230001a722ddd27943e0be31564ce4c"
-
-[[package]]
-name = "vec_map"
-version = "0.8.2"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "f1bddf1187be692e79c5ffeab891132dfb0f236ed36a43c7ed39f1165ee20191"
-
-[[package]]
-name = "version_check"
-version = "0.9.4"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "49874b5167b65d7193b8aba1567f5c7d93d001cafc34600cee003eda787e483f"
-
-[[package]]
-name = "wait-timeout"
-version = "0.2.0"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "9f200f5b12eb75f8c1ed65abd4b2db8a6e1b138a20de009dacee265a2498f3f6"
-dependencies = [
- "libc",
-]
-
-[[package]]
-name = "wasi"
-version = "0.11.0+wasi-snapshot-preview1"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "9c8d87e72b64a3b4db28d11ce29237c246188f4f51057d65a7eab63b7987e423"
-
-[[package]]
-name = "which"
-version = "3.1.1"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "d011071ae14a2f6671d0b74080ae0cd8ebf3a6f8c9589a2cd45f23126fe29724"
-dependencies = [
- "libc",
-]
-
-[[package]]
-name = "which"
-version = "4.3.0"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "1c831fbbee9e129a8cf93e7747a82da9d95ba8e16621cae60ec2cdc849bacb7b"
-dependencies = [
- "either",
- "libc",
- "once_cell",
-]
-
-[[package]]
-name = "winapi"
-version = "0.3.9"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "5c839a674fcd7a98952e593242ea400abe93992746761e38641405d28b00f419"
-dependencies = [
- "winapi-i686-pc-windows-gnu",
- "winapi-x86_64-pc-windows-gnu",
-]
-
-[[package]]
-name = "winapi-i686-pc-windows-gnu"
-version = "0.4.0"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "ac3b87c63620426dd9b991e5ce0329eff545bccbbb34f3be09ff6fb6ab51b7b6"
-
-[[package]]
-name = "winapi-util"
-version = "0.1.5"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "70ec6ce85bb158151cae5e5c87f95a8e97d2c0c4b001223f33a334e3ce5de178"
-dependencies = [
- "winapi",
-]
-
-[[package]]
-name = "winapi-x86_64-pc-windows-gnu"
-version = "0.4.0"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "712e227841d057c1ee1cd2fb22fa7e5a5461ae8e48fa2ca79ec42cfc1931183f"
diff --git a/third_party/cargo/README.md b/third_party/cargo/README.md
index b6e78f3..3c37039 100644
--- a/third_party/cargo/README.md
+++ b/third_party/cargo/README.md
@@ -1,5 +1,2 @@
-This folder is largely generated by cargo-raze, based on configuration in
-`//:Cargo.toml`. See there for details.
-
-Hand-written files referenced by `//:Cargo.toml` are stored in subfolders for
-each crate they are used with.
+Hand-written files referenced by cargo and crates_universe are stored in
+subfolders for each crate they are used with.
diff --git a/third_party/cargo/crates.bzl b/third_party/cargo/crates.bzl
deleted file mode 100644
index a6841f1..0000000
--- a/third_party/cargo/crates.bzl
+++ /dev/null
@@ -1,1422 +0,0 @@
-"""
-@generated
-cargo-raze generated Bazel file.
-
-DO NOT EDIT! Replaced on runs of cargo-raze
-"""
-
-load("@bazel_tools//tools/build_defs/repo:git.bzl", "new_git_repository") # buildifier: disable=load
-load("@bazel_tools//tools/build_defs/repo:http.bzl", "http_archive") # buildifier: disable=load
-load("@bazel_tools//tools/build_defs/repo:utils.bzl", "maybe") # buildifier: disable=load
-
-def raze_fetch_remote_crates():
- """This function defines a collection of repos and should be called in a WORKSPACE file"""
- maybe(
- http_archive,
- name = "raze__addr2line__0_19_0",
- url = "https://crates.io/api/v1/crates/addr2line/0.19.0/download",
- type = "tar.gz",
- sha256 = "a76fd60b23679b7d19bd066031410fb7e458ccc5e958eb5c325888ce4baedc97",
- strip_prefix = "addr2line-0.19.0",
- build_file = Label("//third_party/cargo/remote:BUILD.addr2line-0.19.0.bazel"),
- )
-
- maybe(
- http_archive,
- name = "raze__adler__1_0_2",
- url = "https://crates.io/api/v1/crates/adler/1.0.2/download",
- type = "tar.gz",
- sha256 = "f26201604c87b1e01bd3d98f8d5d9a8fcbb815e8cedb41ffccbeb4bf593a35fe",
- strip_prefix = "adler-1.0.2",
- build_file = Label("//third_party/cargo/remote:BUILD.adler-1.0.2.bazel"),
- )
-
- maybe(
- http_archive,
- name = "raze__ahash__0_7_6",
- url = "https://crates.io/api/v1/crates/ahash/0.7.6/download",
- type = "tar.gz",
- sha256 = "fcb51a0695d8f838b1ee009b3fbf66bda078cd64590202a864a8f3e8c4315c47",
- strip_prefix = "ahash-0.7.6",
- build_file = Label("//third_party/cargo/remote:BUILD.ahash-0.7.6.bazel"),
- )
-
- maybe(
- http_archive,
- name = "raze__aho_corasick__0_7_20",
- url = "https://crates.io/api/v1/crates/aho-corasick/0.7.20/download",
- type = "tar.gz",
- sha256 = "cc936419f96fa211c1b9166887b38e5e40b19958e5b895be7c1f93adec7071ac",
- strip_prefix = "aho-corasick-0.7.20",
- build_file = Label("//third_party/cargo/remote:BUILD.aho-corasick-0.7.20.bazel"),
- )
-
- maybe(
- http_archive,
- name = "raze__ansi_term__0_12_1",
- url = "https://crates.io/api/v1/crates/ansi_term/0.12.1/download",
- type = "tar.gz",
- sha256 = "d52a9bb7ec0cf484c551830a7ce27bd20d67eac647e1befb56b0be4ee39a55d2",
- strip_prefix = "ansi_term-0.12.1",
- build_file = Label("//third_party/cargo/remote:BUILD.ansi_term-0.12.1.bazel"),
- )
-
- maybe(
- http_archive,
- name = "raze__anyhow__1_0_68",
- url = "https://crates.io/api/v1/crates/anyhow/1.0.68/download",
- type = "tar.gz",
- sha256 = "2cb2f989d18dd141ab8ae82f64d1a8cdd37e0840f73a406896cf5e99502fab61",
- strip_prefix = "anyhow-1.0.68",
- build_file = Label("//third_party/cargo/remote:BUILD.anyhow-1.0.68.bazel"),
- )
-
- maybe(
- http_archive,
- name = "raze__aquamarine__0_1_12",
- url = "https://crates.io/api/v1/crates/aquamarine/0.1.12/download",
- type = "tar.gz",
- sha256 = "a941c39708478e8eea39243b5983f1c42d2717b3620ee91f4a52115fd02ac43f",
- strip_prefix = "aquamarine-0.1.12",
- build_file = Label("//third_party/cargo/remote:BUILD.aquamarine-0.1.12.bazel"),
- )
-
- maybe(
- http_archive,
- name = "raze__assert_cmd__1_0_8",
- url = "https://crates.io/api/v1/crates/assert_cmd/1.0.8/download",
- type = "tar.gz",
- sha256 = "c98233c6673d8601ab23e77eb38f999c51100d46c5703b17288c57fddf3a1ffe",
- strip_prefix = "assert_cmd-1.0.8",
- build_file = Label("//third_party/cargo/remote:BUILD.assert_cmd-1.0.8.bazel"),
- )
-
- maybe(
- http_archive,
- name = "raze__atty__0_2_14",
- url = "https://crates.io/api/v1/crates/atty/0.2.14/download",
- type = "tar.gz",
- sha256 = "d9b39be18770d11421cdb1b9947a45dd3f37e93092cbf377614828a319d5fee8",
- strip_prefix = "atty-0.2.14",
- build_file = Label("//third_party/cargo/remote:BUILD.atty-0.2.14.bazel"),
- )
-
- maybe(
- http_archive,
- name = "raze__autocfg__1_1_0",
- url = "https://crates.io/api/v1/crates/autocfg/1.1.0/download",
- type = "tar.gz",
- sha256 = "d468802bab17cbc0cc575e9b053f41e72aa36bfa6b7f55e3529ffa43161b97fa",
- strip_prefix = "autocfg-1.1.0",
- build_file = Label("//third_party/cargo/remote:BUILD.autocfg-1.1.0.bazel"),
- )
-
- maybe(
- http_archive,
- name = "raze__autocxx_bindgen__0_59_17",
- url = "https://crates.io/api/v1/crates/autocxx-bindgen/0.59.17/download",
- type = "tar.gz",
- sha256 = "f9a9a26dd38d385d23b1bf61bd231b77f690c4368aef4c77cee1b7a6da2e2042",
- strip_prefix = "autocxx-bindgen-0.59.17",
- build_file = Label("//third_party/cargo/remote:BUILD.autocxx-bindgen-0.59.17.bazel"),
- )
-
- maybe(
- http_archive,
- name = "raze__backtrace__0_3_67",
- url = "https://crates.io/api/v1/crates/backtrace/0.3.67/download",
- type = "tar.gz",
- sha256 = "233d376d6d185f2a3093e58f283f60f880315b6c60075b01f36b3b85154564ca",
- strip_prefix = "backtrace-0.3.67",
- build_file = Label("//third_party/cargo/remote:BUILD.backtrace-0.3.67.bazel"),
- )
-
- maybe(
- http_archive,
- name = "raze__bindgen__0_58_1",
- url = "https://crates.io/api/v1/crates/bindgen/0.58.1/download",
- type = "tar.gz",
- sha256 = "0f8523b410d7187a43085e7e064416ea32ded16bd0a4e6fc025e21616d01258f",
- strip_prefix = "bindgen-0.58.1",
- build_file = Label("//third_party/cargo/remote:BUILD.bindgen-0.58.1.bazel"),
- )
-
- maybe(
- http_archive,
- name = "raze__bitflags__1_3_2",
- url = "https://crates.io/api/v1/crates/bitflags/1.3.2/download",
- type = "tar.gz",
- sha256 = "bef38d45163c2f1dde094a7dfd33ccf595c92905c8f8f4fdc18d06fb1037718a",
- strip_prefix = "bitflags-1.3.2",
- build_file = Label("//third_party/cargo/remote:BUILD.bitflags-1.3.2.bazel"),
- )
-
- maybe(
- http_archive,
- name = "raze__bstr__0_2_17",
- url = "https://crates.io/api/v1/crates/bstr/0.2.17/download",
- type = "tar.gz",
- sha256 = "ba3569f383e8f1598449f1a423e72e99569137b47740b1da11ef19af3d5c3223",
- strip_prefix = "bstr-0.2.17",
- build_file = Label("//third_party/cargo/remote:BUILD.bstr-0.2.17.bazel"),
- )
-
- maybe(
- http_archive,
- name = "raze__cc__1_0_78",
- url = "https://crates.io/api/v1/crates/cc/1.0.78/download",
- type = "tar.gz",
- sha256 = "a20104e2335ce8a659d6dd92a51a767a0c062599c73b343fd152cb401e828c3d",
- strip_prefix = "cc-1.0.78",
- build_file = Label("//third_party/cargo/remote:BUILD.cc-1.0.78.bazel"),
- )
-
- maybe(
- http_archive,
- name = "raze__cexpr__0_4_0",
- url = "https://crates.io/api/v1/crates/cexpr/0.4.0/download",
- type = "tar.gz",
- sha256 = "f4aedb84272dbe89af497cf81375129abda4fc0a9e7c5d317498c15cc30c0d27",
- strip_prefix = "cexpr-0.4.0",
- build_file = Label("//third_party/cargo/remote:BUILD.cexpr-0.4.0.bazel"),
- )
-
- maybe(
- http_archive,
- name = "raze__cexpr__0_6_0",
- url = "https://crates.io/api/v1/crates/cexpr/0.6.0/download",
- type = "tar.gz",
- sha256 = "6fac387a98bb7c37292057cffc56d62ecb629900026402633ae9160df93a8766",
- strip_prefix = "cexpr-0.6.0",
- build_file = Label("//third_party/cargo/remote:BUILD.cexpr-0.6.0.bazel"),
- )
-
- maybe(
- http_archive,
- name = "raze__cfg_if__0_1_10",
- url = "https://crates.io/api/v1/crates/cfg-if/0.1.10/download",
- type = "tar.gz",
- sha256 = "4785bdd1c96b2a846b2bd7cc02e86b6b3dbf14e7e53446c4f54c92a361040822",
- strip_prefix = "cfg-if-0.1.10",
- build_file = Label("//third_party/cargo/remote:BUILD.cfg-if-0.1.10.bazel"),
- )
-
- maybe(
- http_archive,
- name = "raze__cfg_if__1_0_0",
- url = "https://crates.io/api/v1/crates/cfg-if/1.0.0/download",
- type = "tar.gz",
- sha256 = "baf1de4339761588bc0619e3cbc0120ee582ebb74b53b4efbf79117bd2da40fd",
- strip_prefix = "cfg-if-1.0.0",
- build_file = Label("//third_party/cargo/remote:BUILD.cfg-if-1.0.0.bazel"),
- )
-
- maybe(
- http_archive,
- name = "raze__clang_sys__1_4_0",
- url = "https://crates.io/api/v1/crates/clang-sys/1.4.0/download",
- type = "tar.gz",
- sha256 = "fa2e27ae6ab525c3d369ded447057bca5438d86dc3a68f6faafb8269ba82ebf3",
- strip_prefix = "clang-sys-1.4.0",
- build_file = Label("//third_party/cargo/remote:BUILD.clang-sys-1.4.0.bazel"),
- )
-
- maybe(
- http_archive,
- name = "raze__clap__2_34_0",
- url = "https://crates.io/api/v1/crates/clap/2.34.0/download",
- type = "tar.gz",
- sha256 = "a0610544180c38b88101fecf2dd634b174a62eef6946f84dfc6a7127512b381c",
- strip_prefix = "clap-2.34.0",
- build_file = Label("//third_party/cargo/remote:BUILD.clap-2.34.0.bazel"),
- )
-
- maybe(
- http_archive,
- name = "raze__clap__3_2_23",
- url = "https://crates.io/api/v1/crates/clap/3.2.23/download",
- type = "tar.gz",
- sha256 = "71655c45cb9845d3270c9d6df84ebe72b4dad3c2ba3f7023ad47c144e4e473a5",
- strip_prefix = "clap-3.2.23",
- build_file = Label("//third_party/cargo/remote:BUILD.clap-3.2.23.bazel"),
- )
-
- maybe(
- http_archive,
- name = "raze__clap_lex__0_2_4",
- url = "https://crates.io/api/v1/crates/clap_lex/0.2.4/download",
- type = "tar.gz",
- sha256 = "2850f2f5a82cbf437dd5af4d49848fbdfc27c157c3d010345776f952765261c5",
- strip_prefix = "clap_lex-0.2.4",
- build_file = Label("//third_party/cargo/remote:BUILD.clap_lex-0.2.4.bazel"),
- )
-
- maybe(
- http_archive,
- name = "raze__codespan_reporting__0_11_1",
- url = "https://crates.io/api/v1/crates/codespan-reporting/0.11.1/download",
- type = "tar.gz",
- sha256 = "3538270d33cc669650c4b093848450d380def10c331d38c768e34cac80576e6e",
- strip_prefix = "codespan-reporting-0.11.1",
- build_file = Label("//third_party/cargo/remote:BUILD.codespan-reporting-0.11.1.bazel"),
- )
-
- maybe(
- http_archive,
- name = "raze__cxx__1_0_85",
- url = "https://crates.io/api/v1/crates/cxx/1.0.85/download",
- type = "tar.gz",
- sha256 = "5add3fc1717409d029b20c5b6903fc0c0b02fa6741d820054f4a2efa5e5816fd",
- strip_prefix = "cxx-1.0.85",
- build_file = Label("//third_party/cargo/remote:BUILD.cxx-1.0.85.bazel"),
- )
-
- maybe(
- http_archive,
- name = "raze__cxx_gen__0_7_85",
- url = "https://crates.io/api/v1/crates/cxx-gen/0.7.85/download",
- type = "tar.gz",
- sha256 = "ccca653bd8a21c5cfe696cd5347729d43f651298459b22e57c60fbae1cd49fec",
- strip_prefix = "cxx-gen-0.7.85",
- build_file = Label("//third_party/cargo/remote:BUILD.cxx-gen-0.7.85.bazel"),
- )
-
- maybe(
- http_archive,
- name = "raze__cxxbridge_cmd__1_0_77",
- url = "https://crates.io/api/v1/crates/cxxbridge-cmd/1.0.77/download",
- type = "tar.gz",
- sha256 = "de38cfccf77ed5c524784e2bcbb8863287acd00af2f5d522370f27257ef86307",
- strip_prefix = "cxxbridge-cmd-1.0.77",
- build_file = Label("//third_party/cargo/remote:BUILD.cxxbridge-cmd-1.0.77.bazel"),
- )
-
- maybe(
- http_archive,
- name = "raze__cxxbridge_flags__1_0_85",
- url = "https://crates.io/api/v1/crates/cxxbridge-flags/1.0.85/download",
- type = "tar.gz",
- sha256 = "69a3e162fde4e594ed2b07d0f83c6c67b745e7f28ce58c6df5e6b6bef99dfb59",
- strip_prefix = "cxxbridge-flags-1.0.85",
- build_file = Label("//third_party/cargo/remote:BUILD.cxxbridge-flags-1.0.85.bazel"),
- )
-
- maybe(
- http_archive,
- name = "raze__cxxbridge_macro__1_0_85",
- url = "https://crates.io/api/v1/crates/cxxbridge-macro/1.0.85/download",
- type = "tar.gz",
- sha256 = "3e7e2adeb6a0d4a282e581096b06e1791532b7d576dcde5ccd9382acf55db8e6",
- strip_prefix = "cxxbridge-macro-1.0.85",
- build_file = Label("//third_party/cargo/remote:BUILD.cxxbridge-macro-1.0.85.bazel"),
- )
-
- maybe(
- http_archive,
- name = "raze__difflib__0_4_0",
- url = "https://crates.io/api/v1/crates/difflib/0.4.0/download",
- type = "tar.gz",
- sha256 = "6184e33543162437515c2e2b48714794e37845ec9851711914eec9d308f6ebe8",
- strip_prefix = "difflib-0.4.0",
- build_file = Label("//third_party/cargo/remote:BUILD.difflib-0.4.0.bazel"),
- )
-
- maybe(
- http_archive,
- name = "raze__doc_comment__0_3_3",
- url = "https://crates.io/api/v1/crates/doc-comment/0.3.3/download",
- type = "tar.gz",
- sha256 = "fea41bba32d969b513997752735605054bc0dfa92b4c56bf1189f2e174be7a10",
- strip_prefix = "doc-comment-0.3.3",
- build_file = Label("//third_party/cargo/remote:BUILD.doc-comment-0.3.3.bazel"),
- )
-
- maybe(
- http_archive,
- name = "raze__either__1_8_0",
- url = "https://crates.io/api/v1/crates/either/1.8.0/download",
- type = "tar.gz",
- sha256 = "90e5c1c8368803113bf0c9584fc495a58b86dc8a29edbf8fe877d21d9507e797",
- strip_prefix = "either-1.8.0",
- build_file = Label("//third_party/cargo/remote:BUILD.either-1.8.0.bazel"),
- )
-
- maybe(
- http_archive,
- name = "raze__env_logger__0_8_4",
- url = "https://crates.io/api/v1/crates/env_logger/0.8.4/download",
- type = "tar.gz",
- sha256 = "a19187fea3ac7e84da7dacf48de0c45d63c6a76f9490dae389aead16c243fce3",
- strip_prefix = "env_logger-0.8.4",
- build_file = Label("//third_party/cargo/remote:BUILD.env_logger-0.8.4.bazel"),
- )
-
- maybe(
- http_archive,
- name = "raze__env_logger__0_9_3",
- url = "https://crates.io/api/v1/crates/env_logger/0.9.3/download",
- type = "tar.gz",
- sha256 = "a12e6657c4c97ebab115a42dcee77225f7f482cdd841cf7088c657a42e9e00e7",
- strip_prefix = "env_logger-0.9.3",
- build_file = Label("//third_party/cargo/remote:BUILD.env_logger-0.9.3.bazel"),
- )
-
- maybe(
- http_archive,
- name = "raze__fastrand__1_8_0",
- url = "https://crates.io/api/v1/crates/fastrand/1.8.0/download",
- type = "tar.gz",
- sha256 = "a7a407cfaa3385c4ae6b23e84623d48c2798d06e3e6a1878f7f59f17b3f86499",
- strip_prefix = "fastrand-1.8.0",
- build_file = Label("//third_party/cargo/remote:BUILD.fastrand-1.8.0.bazel"),
- )
-
- maybe(
- http_archive,
- name = "raze__futures__0_3_25",
- url = "https://crates.io/api/v1/crates/futures/0.3.25/download",
- type = "tar.gz",
- sha256 = "38390104763dc37a5145a53c29c63c1290b5d316d6086ec32c293f6736051bb0",
- strip_prefix = "futures-0.3.25",
- build_file = Label("//third_party/cargo/remote:BUILD.futures-0.3.25.bazel"),
- )
-
- maybe(
- http_archive,
- name = "raze__futures_channel__0_3_25",
- url = "https://crates.io/api/v1/crates/futures-channel/0.3.25/download",
- type = "tar.gz",
- sha256 = "52ba265a92256105f45b719605a571ffe2d1f0fea3807304b522c1d778f79eed",
- strip_prefix = "futures-channel-0.3.25",
- build_file = Label("//third_party/cargo/remote:BUILD.futures-channel-0.3.25.bazel"),
- )
-
- maybe(
- http_archive,
- name = "raze__futures_core__0_3_25",
- url = "https://crates.io/api/v1/crates/futures-core/0.3.25/download",
- type = "tar.gz",
- sha256 = "04909a7a7e4633ae6c4a9ab280aeb86da1236243a77b694a49eacd659a4bd3ac",
- strip_prefix = "futures-core-0.3.25",
- build_file = Label("//third_party/cargo/remote:BUILD.futures-core-0.3.25.bazel"),
- )
-
- maybe(
- http_archive,
- name = "raze__futures_executor__0_3_25",
- url = "https://crates.io/api/v1/crates/futures-executor/0.3.25/download",
- type = "tar.gz",
- sha256 = "7acc85df6714c176ab5edf386123fafe217be88c0840ec11f199441134a074e2",
- strip_prefix = "futures-executor-0.3.25",
- build_file = Label("//third_party/cargo/remote:BUILD.futures-executor-0.3.25.bazel"),
- )
-
- maybe(
- http_archive,
- name = "raze__futures_io__0_3_25",
- url = "https://crates.io/api/v1/crates/futures-io/0.3.25/download",
- type = "tar.gz",
- sha256 = "00f5fb52a06bdcadeb54e8d3671f8888a39697dcb0b81b23b55174030427f4eb",
- strip_prefix = "futures-io-0.3.25",
- build_file = Label("//third_party/cargo/remote:BUILD.futures-io-0.3.25.bazel"),
- )
-
- maybe(
- http_archive,
- name = "raze__futures_macro__0_3_25",
- url = "https://crates.io/api/v1/crates/futures-macro/0.3.25/download",
- type = "tar.gz",
- sha256 = "bdfb8ce053d86b91919aad980c220b1fb8401a9394410e1c289ed7e66b61835d",
- strip_prefix = "futures-macro-0.3.25",
- build_file = Label("//third_party/cargo/remote:BUILD.futures-macro-0.3.25.bazel"),
- )
-
- maybe(
- http_archive,
- name = "raze__futures_sink__0_3_25",
- url = "https://crates.io/api/v1/crates/futures-sink/0.3.25/download",
- type = "tar.gz",
- sha256 = "39c15cf1a4aa79df40f1bb462fb39676d0ad9e366c2a33b590d7c66f4f81fcf9",
- strip_prefix = "futures-sink-0.3.25",
- build_file = Label("//third_party/cargo/remote:BUILD.futures-sink-0.3.25.bazel"),
- )
-
- maybe(
- http_archive,
- name = "raze__futures_task__0_3_25",
- url = "https://crates.io/api/v1/crates/futures-task/0.3.25/download",
- type = "tar.gz",
- sha256 = "2ffb393ac5d9a6eaa9d3fdf37ae2776656b706e200c8e16b1bdb227f5198e6ea",
- strip_prefix = "futures-task-0.3.25",
- build_file = Label("//third_party/cargo/remote:BUILD.futures-task-0.3.25.bazel"),
- )
-
- maybe(
- http_archive,
- name = "raze__futures_util__0_3_25",
- url = "https://crates.io/api/v1/crates/futures-util/0.3.25/download",
- type = "tar.gz",
- sha256 = "197676987abd2f9cadff84926f410af1c183608d36641465df73ae8211dc65d6",
- strip_prefix = "futures-util-0.3.25",
- build_file = Label("//third_party/cargo/remote:BUILD.futures-util-0.3.25.bazel"),
- )
-
- maybe(
- http_archive,
- name = "raze__getrandom__0_2_8",
- url = "https://crates.io/api/v1/crates/getrandom/0.2.8/download",
- type = "tar.gz",
- sha256 = "c05aeb6a22b8f62540c194aac980f2115af067bfe15a0734d7277a768d396b31",
- strip_prefix = "getrandom-0.2.8",
- build_file = Label("//third_party/cargo/remote:BUILD.getrandom-0.2.8.bazel"),
- )
-
- maybe(
- http_archive,
- name = "raze__gimli__0_27_0",
- url = "https://crates.io/api/v1/crates/gimli/0.27.0/download",
- type = "tar.gz",
- sha256 = "dec7af912d60cdbd3677c1af9352ebae6fb8394d165568a2234df0fa00f87793",
- strip_prefix = "gimli-0.27.0",
- build_file = Label("//third_party/cargo/remote:BUILD.gimli-0.27.0.bazel"),
- )
-
- maybe(
- http_archive,
- name = "raze__glob__0_3_0",
- url = "https://crates.io/api/v1/crates/glob/0.3.0/download",
- type = "tar.gz",
- sha256 = "9b919933a397b79c37e33b77bb2aa3dc8eb6e165ad809e58ff75bc7db2e34574",
- strip_prefix = "glob-0.3.0",
- build_file = Label("//third_party/cargo/remote:BUILD.glob-0.3.0.bazel"),
- )
-
- maybe(
- http_archive,
- name = "raze__hashbrown__0_12_3",
- url = "https://crates.io/api/v1/crates/hashbrown/0.12.3/download",
- type = "tar.gz",
- sha256 = "8a9ee70c43aaf417c914396645a0fa852624801b24ebb7ae78fe8272889ac888",
- strip_prefix = "hashbrown-0.12.3",
- build_file = Label("//third_party/cargo/remote:BUILD.hashbrown-0.12.3.bazel"),
- )
-
- maybe(
- http_archive,
- name = "raze__heck__0_4_0",
- url = "https://crates.io/api/v1/crates/heck/0.4.0/download",
- type = "tar.gz",
- sha256 = "2540771e65fc8cb83cd6e8a237f70c319bd5c29f78ed1084ba5d50eeac86f7f9",
- strip_prefix = "heck-0.4.0",
- build_file = Label("//third_party/cargo/remote:BUILD.heck-0.4.0.bazel"),
- )
-
- maybe(
- http_archive,
- name = "raze__hermit_abi__0_1_19",
- url = "https://crates.io/api/v1/crates/hermit-abi/0.1.19/download",
- type = "tar.gz",
- sha256 = "62b467343b94ba476dcb2500d242dadbb39557df889310ac77c5d99100aaac33",
- strip_prefix = "hermit-abi-0.1.19",
- build_file = Label("//third_party/cargo/remote:BUILD.hermit-abi-0.1.19.bazel"),
- )
-
- maybe(
- http_archive,
- name = "raze__humantime__2_1_0",
- url = "https://crates.io/api/v1/crates/humantime/2.1.0/download",
- type = "tar.gz",
- sha256 = "9a3a5bfb195931eeb336b2a7b4d761daec841b97f947d34394601737a7bba5e4",
- strip_prefix = "humantime-2.1.0",
- build_file = Label("//third_party/cargo/remote:BUILD.humantime-2.1.0.bazel"),
- )
-
- maybe(
- http_archive,
- name = "raze__indexmap__1_9_2",
- url = "https://crates.io/api/v1/crates/indexmap/1.9.2/download",
- type = "tar.gz",
- sha256 = "1885e79c1fc4b10f0e172c475f458b7f7b93061064d98c3293e98c5ba0c8b399",
- strip_prefix = "indexmap-1.9.2",
- build_file = Label("//third_party/cargo/remote:BUILD.indexmap-1.9.2.bazel"),
- )
-
- maybe(
- http_archive,
- name = "raze__indoc__1_0_8",
- url = "https://crates.io/api/v1/crates/indoc/1.0.8/download",
- type = "tar.gz",
- sha256 = "da2d6f23ffea9d7e76c53eee25dfb67bcd8fde7f1198b0855350698c9f07c780",
- strip_prefix = "indoc-1.0.8",
- build_file = Label("//third_party/cargo/remote:BUILD.indoc-1.0.8.bazel"),
- )
-
- maybe(
- http_archive,
- name = "raze__instant__0_1_12",
- url = "https://crates.io/api/v1/crates/instant/0.1.12/download",
- type = "tar.gz",
- sha256 = "7a5bbe824c507c5da5956355e86a746d82e0e1464f65d862cc5e71da70e94b2c",
- strip_prefix = "instant-0.1.12",
- build_file = Label("//third_party/cargo/remote:BUILD.instant-0.1.12.bazel"),
- )
-
- maybe(
- http_archive,
- name = "raze__is_ci__1_1_1",
- url = "https://crates.io/api/v1/crates/is_ci/1.1.1/download",
- type = "tar.gz",
- sha256 = "616cde7c720bb2bb5824a224687d8f77bfd38922027f01d825cd7453be5099fb",
- strip_prefix = "is_ci-1.1.1",
- build_file = Label("//third_party/cargo/remote:BUILD.is_ci-1.1.1.bazel"),
- )
-
- maybe(
- http_archive,
- name = "raze__itertools__0_10_5",
- url = "https://crates.io/api/v1/crates/itertools/0.10.5/download",
- type = "tar.gz",
- sha256 = "b0fd2260e829bddf4cb6ea802289de2f86d6a7a690192fbe91b3f46e0f2c8473",
- strip_prefix = "itertools-0.10.5",
- build_file = Label("//third_party/cargo/remote:BUILD.itertools-0.10.5.bazel"),
- )
-
- maybe(
- http_archive,
- name = "raze__itertools__0_9_0",
- url = "https://crates.io/api/v1/crates/itertools/0.9.0/download",
- type = "tar.gz",
- sha256 = "284f18f85651fe11e8a991b2adb42cb078325c996ed026d994719efcfca1d54b",
- strip_prefix = "itertools-0.9.0",
- build_file = Label("//third_party/cargo/remote:BUILD.itertools-0.9.0.bazel"),
- )
-
- maybe(
- http_archive,
- name = "raze__itoa__1_0_5",
- url = "https://crates.io/api/v1/crates/itoa/1.0.5/download",
- type = "tar.gz",
- sha256 = "fad582f4b9e86b6caa621cabeb0963332d92eea04729ab12892c2533951e6440",
- strip_prefix = "itoa-1.0.5",
- build_file = Label("//third_party/cargo/remote:BUILD.itoa-1.0.5.bazel"),
- )
-
- maybe(
- http_archive,
- name = "raze__lazy_static__1_4_0",
- url = "https://crates.io/api/v1/crates/lazy_static/1.4.0/download",
- type = "tar.gz",
- sha256 = "e2abad23fbc42b3700f2f279844dc832adb2b2eb069b2df918f455c4e18cc646",
- strip_prefix = "lazy_static-1.4.0",
- build_file = Label("//third_party/cargo/remote:BUILD.lazy_static-1.4.0.bazel"),
- )
-
- maybe(
- http_archive,
- name = "raze__lazycell__1_3_0",
- url = "https://crates.io/api/v1/crates/lazycell/1.3.0/download",
- type = "tar.gz",
- sha256 = "830d08ce1d1d941e6b30645f1a0eb5643013d835ce3779a5fc208261dbe10f55",
- strip_prefix = "lazycell-1.3.0",
- build_file = Label("//third_party/cargo/remote:BUILD.lazycell-1.3.0.bazel"),
- )
-
- maybe(
- http_archive,
- name = "raze__libc__0_2_138",
- url = "https://crates.io/api/v1/crates/libc/0.2.138/download",
- type = "tar.gz",
- sha256 = "db6d7e329c562c5dfab7a46a2afabc8b987ab9a4834c9d1ca04dc54c1546cef8",
- strip_prefix = "libc-0.2.138",
- build_file = Label("//third_party/cargo/remote:BUILD.libc-0.2.138.bazel"),
- )
-
- maybe(
- http_archive,
- name = "raze__libloading__0_6_3",
- url = "https://crates.io/api/v1/crates/libloading/0.6.3/download",
- type = "tar.gz",
- sha256 = "2443d8f0478b16759158b2f66d525991a05491138bc05814ef52a250148ef4f9",
- strip_prefix = "libloading-0.6.3",
- build_file = Label("//third_party/cargo/remote:BUILD.libloading-0.6.3.bazel"),
- )
-
- maybe(
- http_archive,
- name = "raze__libloading__0_7_4",
- url = "https://crates.io/api/v1/crates/libloading/0.7.4/download",
- type = "tar.gz",
- sha256 = "b67380fd3b2fbe7527a606e18729d21c6f3951633d0500574c4dc22d2d638b9f",
- strip_prefix = "libloading-0.7.4",
- build_file = Label("//third_party/cargo/remote:BUILD.libloading-0.7.4.bazel"),
- )
-
- maybe(
- http_archive,
- name = "raze__link_cplusplus__1_0_8",
- url = "https://crates.io/api/v1/crates/link-cplusplus/1.0.8/download",
- type = "tar.gz",
- sha256 = "ecd207c9c713c34f95a097a5b029ac2ce6010530c7b49d7fea24d977dede04f5",
- strip_prefix = "link-cplusplus-1.0.8",
- build_file = Label("//third_party/cargo/remote:BUILD.link-cplusplus-1.0.8.bazel"),
- )
-
- maybe(
- http_archive,
- name = "raze__log__0_4_17",
- url = "https://crates.io/api/v1/crates/log/0.4.17/download",
- type = "tar.gz",
- sha256 = "abb12e687cfb44aa40f41fc3978ef76448f9b6038cad6aef4259d3c095a2382e",
- strip_prefix = "log-0.4.17",
- build_file = Label("//third_party/cargo/remote:BUILD.log-0.4.17.bazel"),
- )
-
- maybe(
- http_archive,
- name = "raze__memchr__2_5_0",
- url = "https://crates.io/api/v1/crates/memchr/2.5.0/download",
- type = "tar.gz",
- sha256 = "2dffe52ecf27772e601905b7522cb4ef790d2cc203488bbd0e2fe85fcb74566d",
- strip_prefix = "memchr-2.5.0",
- build_file = Label("//third_party/cargo/remote:BUILD.memchr-2.5.0.bazel"),
- )
-
- maybe(
- http_archive,
- name = "raze__miette__4_7_1",
- url = "https://crates.io/api/v1/crates/miette/4.7.1/download",
- type = "tar.gz",
- sha256 = "1c90329e44f9208b55f45711f9558cec15d7ef8295cc65ecd6d4188ae8edc58c",
- strip_prefix = "miette-4.7.1",
- build_file = Label("//third_party/cargo/remote:BUILD.miette-4.7.1.bazel"),
- )
-
- maybe(
- http_archive,
- name = "raze__miette_derive__4_7_1",
- url = "https://crates.io/api/v1/crates/miette-derive/4.7.1/download",
- type = "tar.gz",
- sha256 = "6b5bc45b761bcf1b5e6e6c4128cd93b84c218721a8d9b894aa0aff4ed180174c",
- strip_prefix = "miette-derive-4.7.1",
- build_file = Label("//third_party/cargo/remote:BUILD.miette-derive-4.7.1.bazel"),
- )
-
- maybe(
- http_archive,
- name = "raze__minimal_lexical__0_2_1",
- url = "https://crates.io/api/v1/crates/minimal-lexical/0.2.1/download",
- type = "tar.gz",
- sha256 = "68354c5c6bd36d73ff3feceb05efa59b6acb7626617f4962be322a825e61f79a",
- strip_prefix = "minimal-lexical-0.2.1",
- build_file = Label("//third_party/cargo/remote:BUILD.minimal-lexical-0.2.1.bazel"),
- )
-
- maybe(
- http_archive,
- name = "raze__miniz_oxide__0_6_2",
- url = "https://crates.io/api/v1/crates/miniz_oxide/0.6.2/download",
- type = "tar.gz",
- sha256 = "b275950c28b37e794e8c55d88aeb5e139d0ce23fdbbeda68f8d7174abdf9e8fa",
- strip_prefix = "miniz_oxide-0.6.2",
- build_file = Label("//third_party/cargo/remote:BUILD.miniz_oxide-0.6.2.bazel"),
- )
-
- maybe(
- http_archive,
- name = "raze__moveit__0_5_1",
- url = "https://crates.io/api/v1/crates/moveit/0.5.1/download",
- type = "tar.gz",
- sha256 = "d7d756ffe4e38013507d35bf726a93fcdae2cae043ab5ce477f13857a335030d",
- strip_prefix = "moveit-0.5.1",
- build_file = Label("//third_party/cargo/remote:BUILD.moveit-0.5.1.bazel"),
- )
-
- maybe(
- http_archive,
- name = "raze__nom__5_1_2",
- url = "https://crates.io/api/v1/crates/nom/5.1.2/download",
- type = "tar.gz",
- sha256 = "ffb4262d26ed83a1c0a33a38fe2bb15797329c85770da05e6b828ddb782627af",
- strip_prefix = "nom-5.1.2",
- build_file = Label("//third_party/cargo/remote:BUILD.nom-5.1.2.bazel"),
- )
-
- maybe(
- http_archive,
- name = "raze__nom__7_1_1",
- url = "https://crates.io/api/v1/crates/nom/7.1.1/download",
- type = "tar.gz",
- sha256 = "a8903e5a29a317527874d0402f867152a3d21c908bb0b933e416c65e301d4c36",
- strip_prefix = "nom-7.1.1",
- build_file = Label("//third_party/cargo/remote:BUILD.nom-7.1.1.bazel"),
- )
-
- maybe(
- http_archive,
- name = "raze__object__0_30_0",
- url = "https://crates.io/api/v1/crates/object/0.30.0/download",
- type = "tar.gz",
- sha256 = "239da7f290cfa979f43f85a8efeee9a8a76d0827c356d37f9d3d7254d6b537fb",
- strip_prefix = "object-0.30.0",
- build_file = Label("//third_party/cargo/remote:BUILD.object-0.30.0.bazel"),
- )
-
- maybe(
- http_archive,
- name = "raze__once_cell__1_16_0",
- url = "https://crates.io/api/v1/crates/once_cell/1.16.0/download",
- type = "tar.gz",
- sha256 = "86f0b0d4bf799edbc74508c1e8bf170ff5f41238e5f8225603ca7caaae2b7860",
- strip_prefix = "once_cell-1.16.0",
- build_file = Label("//third_party/cargo/remote:BUILD.once_cell-1.16.0.bazel"),
- )
-
- maybe(
- http_archive,
- name = "raze__os_str_bytes__6_4_1",
- url = "https://crates.io/api/v1/crates/os_str_bytes/6.4.1/download",
- type = "tar.gz",
- sha256 = "9b7820b9daea5457c9f21c69448905d723fbd21136ccf521748f23fd49e723ee",
- strip_prefix = "os_str_bytes-6.4.1",
- build_file = Label("//third_party/cargo/remote:BUILD.os_str_bytes-6.4.1.bazel"),
- )
-
- maybe(
- http_archive,
- name = "raze__owo_colors__3_5_0",
- url = "https://crates.io/api/v1/crates/owo-colors/3.5.0/download",
- type = "tar.gz",
- sha256 = "c1b04fb49957986fdce4d6ee7a65027d55d4b6d2265e5848bbb507b58ccfdb6f",
- strip_prefix = "owo-colors-3.5.0",
- build_file = Label("//third_party/cargo/remote:BUILD.owo-colors-3.5.0.bazel"),
- )
-
- maybe(
- http_archive,
- name = "raze__pathdiff__0_2_1",
- url = "https://crates.io/api/v1/crates/pathdiff/0.2.1/download",
- type = "tar.gz",
- sha256 = "8835116a5c179084a830efb3adc117ab007512b535bc1a21c991d3b32a6b44dd",
- strip_prefix = "pathdiff-0.2.1",
- build_file = Label("//third_party/cargo/remote:BUILD.pathdiff-0.2.1.bazel"),
- )
-
- maybe(
- http_archive,
- name = "raze__peeking_take_while__0_1_2",
- url = "https://crates.io/api/v1/crates/peeking_take_while/0.1.2/download",
- type = "tar.gz",
- sha256 = "19b17cddbe7ec3f8bc800887bab5e717348c95ea2ca0b1bf0837fb964dc67099",
- strip_prefix = "peeking_take_while-0.1.2",
- build_file = Label("//third_party/cargo/remote:BUILD.peeking_take_while-0.1.2.bazel"),
- )
-
- maybe(
- http_archive,
- name = "raze__pin_project_lite__0_2_9",
- url = "https://crates.io/api/v1/crates/pin-project-lite/0.2.9/download",
- type = "tar.gz",
- sha256 = "e0a7ae3ac2f1173085d398531c705756c94a4c56843785df85a60c1a0afac116",
- strip_prefix = "pin-project-lite-0.2.9",
- build_file = Label("//third_party/cargo/remote:BUILD.pin-project-lite-0.2.9.bazel"),
- )
-
- maybe(
- http_archive,
- name = "raze__pin_utils__0_1_0",
- url = "https://crates.io/api/v1/crates/pin-utils/0.1.0/download",
- type = "tar.gz",
- sha256 = "8b870d8c151b6f2fb93e84a13146138f05d02ed11c7e7c54f8826aaaf7c9f184",
- strip_prefix = "pin-utils-0.1.0",
- build_file = Label("//third_party/cargo/remote:BUILD.pin-utils-0.1.0.bazel"),
- )
-
- maybe(
- http_archive,
- name = "raze__predicates__2_1_1",
- url = "https://crates.io/api/v1/crates/predicates/2.1.1/download",
- type = "tar.gz",
- sha256 = "a5aab5be6e4732b473071984b3164dbbfb7a3674d30ea5ff44410b6bcd960c3c",
- strip_prefix = "predicates-2.1.1",
- build_file = Label("//third_party/cargo/remote:BUILD.predicates-2.1.1.bazel"),
- )
-
- maybe(
- http_archive,
- name = "raze__predicates_core__1_0_5",
- url = "https://crates.io/api/v1/crates/predicates-core/1.0.5/download",
- type = "tar.gz",
- sha256 = "72f883590242d3c6fc5bf50299011695fa6590c2c70eac95ee1bdb9a733ad1a2",
- strip_prefix = "predicates-core-1.0.5",
- build_file = Label("//third_party/cargo/remote:BUILD.predicates-core-1.0.5.bazel"),
- )
-
- maybe(
- http_archive,
- name = "raze__predicates_tree__1_0_7",
- url = "https://crates.io/api/v1/crates/predicates-tree/1.0.7/download",
- type = "tar.gz",
- sha256 = "54ff541861505aabf6ea722d2131ee980b8276e10a1297b94e896dd8b621850d",
- strip_prefix = "predicates-tree-1.0.7",
- build_file = Label("//third_party/cargo/remote:BUILD.predicates-tree-1.0.7.bazel"),
- )
-
- maybe(
- http_archive,
- name = "raze__proc_macro_error__1_0_4",
- url = "https://crates.io/api/v1/crates/proc-macro-error/1.0.4/download",
- type = "tar.gz",
- sha256 = "da25490ff9892aab3fcf7c36f08cfb902dd3e71ca0f9f9517bea02a73a5ce38c",
- strip_prefix = "proc-macro-error-1.0.4",
- build_file = Label("//third_party/cargo/remote:BUILD.proc-macro-error-1.0.4.bazel"),
- )
-
- maybe(
- http_archive,
- name = "raze__proc_macro_error_attr__1_0_4",
- url = "https://crates.io/api/v1/crates/proc-macro-error-attr/1.0.4/download",
- type = "tar.gz",
- sha256 = "a1be40180e52ecc98ad80b184934baf3d0d29f979574e439af5a55274b35f869",
- strip_prefix = "proc-macro-error-attr-1.0.4",
- build_file = Label("//third_party/cargo/remote:BUILD.proc-macro-error-attr-1.0.4.bazel"),
- )
-
- maybe(
- http_archive,
- name = "raze__proc_macro2__1_0_49",
- url = "https://crates.io/api/v1/crates/proc-macro2/1.0.49/download",
- type = "tar.gz",
- sha256 = "57a8eca9f9c4ffde41714334dee777596264c7825420f521abc92b5b5deb63a5",
- strip_prefix = "proc-macro2-1.0.49",
- build_file = Label("//third_party/cargo/remote:BUILD.proc-macro2-1.0.49.bazel"),
- )
-
- maybe(
- http_archive,
- name = "raze__quote__1_0_23",
- url = "https://crates.io/api/v1/crates/quote/1.0.23/download",
- type = "tar.gz",
- sha256 = "8856d8364d252a14d474036ea1358d63c9e6965c8e5c1885c18f73d70bff9c7b",
- strip_prefix = "quote-1.0.23",
- build_file = Label("//third_party/cargo/remote:BUILD.quote-1.0.23.bazel"),
- )
-
- maybe(
- http_archive,
- name = "raze__redox_syscall__0_2_16",
- url = "https://crates.io/api/v1/crates/redox_syscall/0.2.16/download",
- type = "tar.gz",
- sha256 = "fb5a58c1855b4b6819d59012155603f0b22ad30cad752600aadfcb695265519a",
- strip_prefix = "redox_syscall-0.2.16",
- build_file = Label("//third_party/cargo/remote:BUILD.redox_syscall-0.2.16.bazel"),
- )
-
- maybe(
- http_archive,
- name = "raze__regex__1_7_0",
- url = "https://crates.io/api/v1/crates/regex/1.7.0/download",
- type = "tar.gz",
- sha256 = "e076559ef8e241f2ae3479e36f97bd5741c0330689e217ad51ce2c76808b868a",
- strip_prefix = "regex-1.7.0",
- build_file = Label("//third_party/cargo/remote:BUILD.regex-1.7.0.bazel"),
- )
-
- maybe(
- http_archive,
- name = "raze__regex_automata__0_1_10",
- url = "https://crates.io/api/v1/crates/regex-automata/0.1.10/download",
- type = "tar.gz",
- sha256 = "6c230d73fb8d8c1b9c0b3135c5142a8acee3a0558fb8db5cf1cb65f8d7862132",
- strip_prefix = "regex-automata-0.1.10",
- build_file = Label("//third_party/cargo/remote:BUILD.regex-automata-0.1.10.bazel"),
- )
-
- maybe(
- http_archive,
- name = "raze__regex_syntax__0_6_28",
- url = "https://crates.io/api/v1/crates/regex-syntax/0.6.28/download",
- type = "tar.gz",
- sha256 = "456c603be3e8d448b072f410900c09faf164fbce2d480456f50eea6e25f9c848",
- strip_prefix = "regex-syntax-0.6.28",
- build_file = Label("//third_party/cargo/remote:BUILD.regex-syntax-0.6.28.bazel"),
- )
-
- maybe(
- http_archive,
- name = "raze__remove_dir_all__0_5_3",
- url = "https://crates.io/api/v1/crates/remove_dir_all/0.5.3/download",
- type = "tar.gz",
- sha256 = "3acd125665422973a33ac9d3dd2df85edad0f4ae9b00dafb1a05e43a9f5ef8e7",
- strip_prefix = "remove_dir_all-0.5.3",
- build_file = Label("//third_party/cargo/remote:BUILD.remove_dir_all-0.5.3.bazel"),
- )
-
- maybe(
- http_archive,
- name = "raze__rust_info__0_3_2",
- url = "https://crates.io/api/v1/crates/rust_info/0.3.2/download",
- type = "tar.gz",
- sha256 = "821495e93d15e4433347b3a72e97005f1d8a620dc88d46637fecfcb16e98043d",
- strip_prefix = "rust_info-0.3.2",
- build_file = Label("//third_party/cargo/remote:BUILD.rust_info-0.3.2.bazel"),
- )
-
- maybe(
- http_archive,
- name = "raze__rustc_demangle__0_1_21",
- url = "https://crates.io/api/v1/crates/rustc-demangle/0.1.21/download",
- type = "tar.gz",
- sha256 = "7ef03e0a2b150c7a90d01faf6254c9c48a41e95fb2a8c2ac1c6f0d2b9aefc342",
- strip_prefix = "rustc-demangle-0.1.21",
- build_file = Label("//third_party/cargo/remote:BUILD.rustc-demangle-0.1.21.bazel"),
- )
-
- maybe(
- http_archive,
- name = "raze__rustc_hash__1_1_0",
- url = "https://crates.io/api/v1/crates/rustc-hash/1.1.0/download",
- type = "tar.gz",
- sha256 = "08d43f7aa6b08d49f382cde6a7982047c3426db949b1424bc4b7ec9ae12c6ce2",
- strip_prefix = "rustc-hash-1.1.0",
- build_file = Label("//third_party/cargo/remote:BUILD.rustc-hash-1.1.0.bazel"),
- )
-
- maybe(
- http_archive,
- name = "raze__rustc_version__0_4_0",
- url = "https://crates.io/api/v1/crates/rustc_version/0.4.0/download",
- type = "tar.gz",
- sha256 = "bfa0f585226d2e68097d4f95d113b15b83a82e819ab25717ec0590d9584ef366",
- strip_prefix = "rustc_version-0.4.0",
- build_file = Label("//third_party/cargo/remote:BUILD.rustc_version-0.4.0.bazel"),
- )
-
- maybe(
- http_archive,
- name = "raze__rustversion__1_0_11",
- url = "https://crates.io/api/v1/crates/rustversion/1.0.11/download",
- type = "tar.gz",
- sha256 = "5583e89e108996506031660fe09baa5011b9dd0341b89029313006d1fb508d70",
- strip_prefix = "rustversion-1.0.11",
- build_file = Label("//third_party/cargo/remote:BUILD.rustversion-1.0.11.bazel"),
- )
-
- maybe(
- http_archive,
- name = "raze__ryu__1_0_12",
- url = "https://crates.io/api/v1/crates/ryu/1.0.12/download",
- type = "tar.gz",
- sha256 = "7b4b9743ed687d4b4bcedf9ff5eaa7398495ae14e61cba0a295704edbc7decde",
- strip_prefix = "ryu-1.0.12",
- build_file = Label("//third_party/cargo/remote:BUILD.ryu-1.0.12.bazel"),
- )
-
- maybe(
- http_archive,
- name = "raze__semver__1_0_16",
- url = "https://crates.io/api/v1/crates/semver/1.0.16/download",
- type = "tar.gz",
- sha256 = "58bc9567378fc7690d6b2addae4e60ac2eeea07becb2c64b9f218b53865cba2a",
- strip_prefix = "semver-1.0.16",
- build_file = Label("//third_party/cargo/remote:BUILD.semver-1.0.16.bazel"),
- )
-
- maybe(
- http_archive,
- name = "raze__serde__1_0_151",
- url = "https://crates.io/api/v1/crates/serde/1.0.151/download",
- type = "tar.gz",
- sha256 = "97fed41fc1a24994d044e6db6935e69511a1153b52c15eb42493b26fa87feba0",
- strip_prefix = "serde-1.0.151",
- build_file = Label("//third_party/cargo/remote:BUILD.serde-1.0.151.bazel"),
- )
-
- maybe(
- http_archive,
- name = "raze__serde_derive__1_0_151",
- url = "https://crates.io/api/v1/crates/serde_derive/1.0.151/download",
- type = "tar.gz",
- sha256 = "255abe9a125a985c05190d687b320c12f9b1f0b99445e608c21ba0782c719ad8",
- strip_prefix = "serde_derive-1.0.151",
- build_file = Label("//third_party/cargo/remote:BUILD.serde_derive-1.0.151.bazel"),
- )
-
- maybe(
- http_archive,
- name = "raze__serde_json__1_0_91",
- url = "https://crates.io/api/v1/crates/serde_json/1.0.91/download",
- type = "tar.gz",
- sha256 = "877c235533714907a8c2464236f5c4b2a17262ef1bd71f38f35ea592c8da6883",
- strip_prefix = "serde_json-1.0.91",
- build_file = Label("//third_party/cargo/remote:BUILD.serde_json-1.0.91.bazel"),
- )
-
- maybe(
- http_archive,
- name = "raze__shlex__1_1_0",
- url = "https://crates.io/api/v1/crates/shlex/1.1.0/download",
- type = "tar.gz",
- sha256 = "43b2853a4d09f215c24cc5489c992ce46052d359b5109343cbafbf26bc62f8a3",
- strip_prefix = "shlex-1.1.0",
- build_file = Label("//third_party/cargo/remote:BUILD.shlex-1.1.0.bazel"),
- )
-
- maybe(
- http_archive,
- name = "raze__slab__0_4_7",
- url = "https://crates.io/api/v1/crates/slab/0.4.7/download",
- type = "tar.gz",
- sha256 = "4614a76b2a8be0058caa9dbbaf66d988527d86d003c11a94fbd335d7661edcef",
- strip_prefix = "slab-0.4.7",
- build_file = Label("//third_party/cargo/remote:BUILD.slab-0.4.7.bazel"),
- )
-
- maybe(
- http_archive,
- name = "raze__smallvec__1_10_0",
- url = "https://crates.io/api/v1/crates/smallvec/1.10.0/download",
- type = "tar.gz",
- sha256 = "a507befe795404456341dfab10cef66ead4c041f62b8b11bbb92bffe5d0953e0",
- strip_prefix = "smallvec-1.10.0",
- build_file = Label("//third_party/cargo/remote:BUILD.smallvec-1.10.0.bazel"),
- )
-
- maybe(
- http_archive,
- name = "raze__smawk__0_3_1",
- url = "https://crates.io/api/v1/crates/smawk/0.3.1/download",
- type = "tar.gz",
- sha256 = "f67ad224767faa3c7d8b6d91985b78e70a1324408abcb1cfcc2be4c06bc06043",
- strip_prefix = "smawk-0.3.1",
- build_file = Label("//third_party/cargo/remote:BUILD.smawk-0.3.1.bazel"),
- )
-
- maybe(
- http_archive,
- name = "raze__strsim__0_10_0",
- url = "https://crates.io/api/v1/crates/strsim/0.10.0/download",
- type = "tar.gz",
- sha256 = "73473c0e59e6d5812c5dfe2a064a6444949f089e20eec9a2e5506596494e4623",
- strip_prefix = "strsim-0.10.0",
- build_file = Label("//third_party/cargo/remote:BUILD.strsim-0.10.0.bazel"),
- )
-
- maybe(
- http_archive,
- name = "raze__strsim__0_8_0",
- url = "https://crates.io/api/v1/crates/strsim/0.8.0/download",
- type = "tar.gz",
- sha256 = "8ea5119cdb4c55b55d432abb513a0429384878c15dde60cc77b1c99de1a95a6a",
- strip_prefix = "strsim-0.8.0",
- build_file = Label("//third_party/cargo/remote:BUILD.strsim-0.8.0.bazel"),
- )
-
- maybe(
- http_archive,
- name = "raze__strum_macros__0_24_3",
- url = "https://crates.io/api/v1/crates/strum_macros/0.24.3/download",
- type = "tar.gz",
- sha256 = "1e385be0d24f186b4ce2f9982191e7101bb737312ad61c1f2f984f34bcf85d59",
- strip_prefix = "strum_macros-0.24.3",
- build_file = Label("//third_party/cargo/remote:BUILD.strum_macros-0.24.3.bazel"),
- )
-
- maybe(
- http_archive,
- name = "raze__supports_color__1_3_1",
- url = "https://crates.io/api/v1/crates/supports-color/1.3.1/download",
- type = "tar.gz",
- sha256 = "8ba6faf2ca7ee42fdd458f4347ae0a9bd6bcc445ad7cb57ad82b383f18870d6f",
- strip_prefix = "supports-color-1.3.1",
- build_file = Label("//third_party/cargo/remote:BUILD.supports-color-1.3.1.bazel"),
- )
-
- maybe(
- http_archive,
- name = "raze__supports_hyperlinks__1_2_0",
- url = "https://crates.io/api/v1/crates/supports-hyperlinks/1.2.0/download",
- type = "tar.gz",
- sha256 = "590b34f7c5f01ecc9d78dba4b3f445f31df750a67621cf31626f3b7441ce6406",
- strip_prefix = "supports-hyperlinks-1.2.0",
- build_file = Label("//third_party/cargo/remote:BUILD.supports-hyperlinks-1.2.0.bazel"),
- )
-
- maybe(
- http_archive,
- name = "raze__supports_unicode__1_0_2",
- url = "https://crates.io/api/v1/crates/supports-unicode/1.0.2/download",
- type = "tar.gz",
- sha256 = "a8b945e45b417b125a8ec51f1b7df2f8df7920367700d1f98aedd21e5735f8b2",
- strip_prefix = "supports-unicode-1.0.2",
- build_file = Label("//third_party/cargo/remote:BUILD.supports-unicode-1.0.2.bazel"),
- )
-
- maybe(
- http_archive,
- name = "raze__syn__1_0_107",
- url = "https://crates.io/api/v1/crates/syn/1.0.107/download",
- type = "tar.gz",
- sha256 = "1f4064b5b16e03ae50984a5a8ed5d4f8803e6bc1fd170a3cda91a1be4b18e3f5",
- strip_prefix = "syn-1.0.107",
- build_file = Label("//third_party/cargo/remote:BUILD.syn-1.0.107.bazel"),
- )
-
- maybe(
- http_archive,
- name = "raze__tempfile__3_3_0",
- url = "https://crates.io/api/v1/crates/tempfile/3.3.0/download",
- type = "tar.gz",
- sha256 = "5cdb1ef4eaeeaddc8fbd371e5017057064af0911902ef36b39801f67cc6d79e4",
- strip_prefix = "tempfile-3.3.0",
- build_file = Label("//third_party/cargo/remote:BUILD.tempfile-3.3.0.bazel"),
- )
-
- maybe(
- http_archive,
- name = "raze__termcolor__1_1_3",
- url = "https://crates.io/api/v1/crates/termcolor/1.1.3/download",
- type = "tar.gz",
- sha256 = "bab24d30b911b2376f3a13cc2cd443142f0c81dda04c118693e35b3835757755",
- strip_prefix = "termcolor-1.1.3",
- build_file = Label("//third_party/cargo/remote:BUILD.termcolor-1.1.3.bazel"),
- )
-
- maybe(
- http_archive,
- name = "raze__terminal_size__0_1_17",
- url = "https://crates.io/api/v1/crates/terminal_size/0.1.17/download",
- type = "tar.gz",
- sha256 = "633c1a546cee861a1a6d0dc69ebeca693bf4296661ba7852b9d21d159e0506df",
- strip_prefix = "terminal_size-0.1.17",
- build_file = Label("//third_party/cargo/remote:BUILD.terminal_size-0.1.17.bazel"),
- )
-
- maybe(
- http_archive,
- name = "raze__termtree__0_4_0",
- url = "https://crates.io/api/v1/crates/termtree/0.4.0/download",
- type = "tar.gz",
- sha256 = "95059e91184749cb66be6dc994f67f182b6d897cb3df74a5bf66b5e709295fd8",
- strip_prefix = "termtree-0.4.0",
- build_file = Label("//third_party/cargo/remote:BUILD.termtree-0.4.0.bazel"),
- )
-
- maybe(
- http_archive,
- name = "raze__test_log__0_2_11",
- url = "https://crates.io/api/v1/crates/test-log/0.2.11/download",
- type = "tar.gz",
- sha256 = "38f0c854faeb68a048f0f2dc410c5ddae3bf83854ef0e4977d58306a5edef50e",
- strip_prefix = "test-log-0.2.11",
- build_file = Label("//third_party/cargo/remote:BUILD.test-log-0.2.11.bazel"),
- )
-
- maybe(
- http_archive,
- name = "raze__textwrap__0_11_0",
- url = "https://crates.io/api/v1/crates/textwrap/0.11.0/download",
- type = "tar.gz",
- sha256 = "d326610f408c7a4eb6f51c37c330e496b08506c9457c9d34287ecc38809fb060",
- strip_prefix = "textwrap-0.11.0",
- build_file = Label("//third_party/cargo/remote:BUILD.textwrap-0.11.0.bazel"),
- )
-
- maybe(
- http_archive,
- name = "raze__textwrap__0_15_2",
- url = "https://crates.io/api/v1/crates/textwrap/0.15.2/download",
- type = "tar.gz",
- sha256 = "b7b3e525a49ec206798b40326a44121291b530c963cfb01018f63e135bac543d",
- strip_prefix = "textwrap-0.15.2",
- build_file = Label("//third_party/cargo/remote:BUILD.textwrap-0.15.2.bazel"),
- )
-
- maybe(
- http_archive,
- name = "raze__textwrap__0_16_0",
- url = "https://crates.io/api/v1/crates/textwrap/0.16.0/download",
- type = "tar.gz",
- sha256 = "222a222a5bfe1bba4a77b45ec488a741b3cb8872e5e499451fd7d0129c9c7c3d",
- strip_prefix = "textwrap-0.16.0",
- build_file = Label("//third_party/cargo/remote:BUILD.textwrap-0.16.0.bazel"),
- )
-
- maybe(
- http_archive,
- name = "raze__thiserror__1_0_38",
- url = "https://crates.io/api/v1/crates/thiserror/1.0.38/download",
- type = "tar.gz",
- sha256 = "6a9cd18aa97d5c45c6603caea1da6628790b37f7a34b6ca89522331c5180fed0",
- strip_prefix = "thiserror-1.0.38",
- build_file = Label("//third_party/cargo/remote:BUILD.thiserror-1.0.38.bazel"),
- )
-
- maybe(
- http_archive,
- name = "raze__thiserror_impl__1_0_38",
- url = "https://crates.io/api/v1/crates/thiserror-impl/1.0.38/download",
- type = "tar.gz",
- sha256 = "1fb327af4685e4d03fa8cbcf1716380da910eeb2bb8be417e7f9fd3fb164f36f",
- strip_prefix = "thiserror-impl-1.0.38",
- build_file = Label("//third_party/cargo/remote:BUILD.thiserror-impl-1.0.38.bazel"),
- )
-
- maybe(
- http_archive,
- name = "raze__toml__0_5_10",
- url = "https://crates.io/api/v1/crates/toml/0.5.10/download",
- type = "tar.gz",
- sha256 = "1333c76748e868a4d9d1017b5ab53171dfd095f70c712fdb4653a406547f598f",
- strip_prefix = "toml-0.5.10",
- build_file = Label("//third_party/cargo/remote:BUILD.toml-0.5.10.bazel"),
- )
-
- maybe(
- http_archive,
- name = "raze__trybuild__1_0_73",
- url = "https://crates.io/api/v1/crates/trybuild/1.0.73/download",
- type = "tar.gz",
- sha256 = "ed01de3de062db82c0920b5cabe804f88d599a3f217932292597c678c903754d",
- strip_prefix = "trybuild-1.0.73",
- build_file = Label("//third_party/cargo/remote:BUILD.trybuild-1.0.73.bazel"),
- )
-
- maybe(
- http_archive,
- name = "raze__unicode_ident__1_0_6",
- url = "https://crates.io/api/v1/crates/unicode-ident/1.0.6/download",
- type = "tar.gz",
- sha256 = "84a22b9f218b40614adcb3f4ff08b703773ad44fa9423e4e0d346d5db86e4ebc",
- strip_prefix = "unicode-ident-1.0.6",
- build_file = Label("//third_party/cargo/remote:BUILD.unicode-ident-1.0.6.bazel"),
- )
-
- maybe(
- http_archive,
- name = "raze__unicode_linebreak__0_1_4",
- url = "https://crates.io/api/v1/crates/unicode-linebreak/0.1.4/download",
- type = "tar.gz",
- sha256 = "c5faade31a542b8b35855fff6e8def199853b2da8da256da52f52f1316ee3137",
- strip_prefix = "unicode-linebreak-0.1.4",
- build_file = Label("//third_party/cargo/remote:BUILD.unicode-linebreak-0.1.4.bazel"),
- )
-
- maybe(
- http_archive,
- name = "raze__unicode_width__0_1_10",
- url = "https://crates.io/api/v1/crates/unicode-width/0.1.10/download",
- type = "tar.gz",
- sha256 = "c0edd1e5b14653f783770bce4a4dabb4a5108a5370a5f5d8cfe8710c361f6c8b",
- strip_prefix = "unicode-width-0.1.10",
- build_file = Label("//third_party/cargo/remote:BUILD.unicode-width-0.1.10.bazel"),
- )
-
- maybe(
- http_archive,
- name = "raze__uuid__1_2_2",
- url = "https://crates.io/api/v1/crates/uuid/1.2.2/download",
- type = "tar.gz",
- sha256 = "422ee0de9031b5b948b97a8fc04e3aa35230001a722ddd27943e0be31564ce4c",
- strip_prefix = "uuid-1.2.2",
- build_file = Label("//third_party/cargo/remote:BUILD.uuid-1.2.2.bazel"),
- )
-
- maybe(
- http_archive,
- name = "raze__vec_map__0_8_2",
- url = "https://crates.io/api/v1/crates/vec_map/0.8.2/download",
- type = "tar.gz",
- sha256 = "f1bddf1187be692e79c5ffeab891132dfb0f236ed36a43c7ed39f1165ee20191",
- strip_prefix = "vec_map-0.8.2",
- build_file = Label("//third_party/cargo/remote:BUILD.vec_map-0.8.2.bazel"),
- )
-
- maybe(
- http_archive,
- name = "raze__version_check__0_9_4",
- url = "https://crates.io/api/v1/crates/version_check/0.9.4/download",
- type = "tar.gz",
- sha256 = "49874b5167b65d7193b8aba1567f5c7d93d001cafc34600cee003eda787e483f",
- strip_prefix = "version_check-0.9.4",
- build_file = Label("//third_party/cargo/remote:BUILD.version_check-0.9.4.bazel"),
- )
-
- maybe(
- http_archive,
- name = "raze__wait_timeout__0_2_0",
- url = "https://crates.io/api/v1/crates/wait-timeout/0.2.0/download",
- type = "tar.gz",
- sha256 = "9f200f5b12eb75f8c1ed65abd4b2db8a6e1b138a20de009dacee265a2498f3f6",
- strip_prefix = "wait-timeout-0.2.0",
- build_file = Label("//third_party/cargo/remote:BUILD.wait-timeout-0.2.0.bazel"),
- )
-
- maybe(
- http_archive,
- name = "raze__wasi__0_11_0_wasi_snapshot_preview1",
- url = "https://crates.io/api/v1/crates/wasi/0.11.0+wasi-snapshot-preview1/download",
- type = "tar.gz",
- sha256 = "9c8d87e72b64a3b4db28d11ce29237c246188f4f51057d65a7eab63b7987e423",
- strip_prefix = "wasi-0.11.0+wasi-snapshot-preview1",
- build_file = Label("//third_party/cargo/remote:BUILD.wasi-0.11.0+wasi-snapshot-preview1.bazel"),
- )
-
- maybe(
- http_archive,
- name = "raze__which__3_1_1",
- url = "https://crates.io/api/v1/crates/which/3.1.1/download",
- type = "tar.gz",
- sha256 = "d011071ae14a2f6671d0b74080ae0cd8ebf3a6f8c9589a2cd45f23126fe29724",
- strip_prefix = "which-3.1.1",
- build_file = Label("//third_party/cargo/remote:BUILD.which-3.1.1.bazel"),
- )
-
- maybe(
- http_archive,
- name = "raze__which__4_3_0",
- url = "https://crates.io/api/v1/crates/which/4.3.0/download",
- type = "tar.gz",
- sha256 = "1c831fbbee9e129a8cf93e7747a82da9d95ba8e16621cae60ec2cdc849bacb7b",
- strip_prefix = "which-4.3.0",
- build_file = Label("//third_party/cargo/remote:BUILD.which-4.3.0.bazel"),
- )
-
- maybe(
- http_archive,
- name = "raze__winapi__0_3_9",
- url = "https://crates.io/api/v1/crates/winapi/0.3.9/download",
- type = "tar.gz",
- sha256 = "5c839a674fcd7a98952e593242ea400abe93992746761e38641405d28b00f419",
- strip_prefix = "winapi-0.3.9",
- build_file = Label("//third_party/cargo/remote:BUILD.winapi-0.3.9.bazel"),
- )
-
- maybe(
- http_archive,
- name = "raze__winapi_i686_pc_windows_gnu__0_4_0",
- url = "https://crates.io/api/v1/crates/winapi-i686-pc-windows-gnu/0.4.0/download",
- type = "tar.gz",
- sha256 = "ac3b87c63620426dd9b991e5ce0329eff545bccbbb34f3be09ff6fb6ab51b7b6",
- strip_prefix = "winapi-i686-pc-windows-gnu-0.4.0",
- build_file = Label("//third_party/cargo/remote:BUILD.winapi-i686-pc-windows-gnu-0.4.0.bazel"),
- )
-
- maybe(
- http_archive,
- name = "raze__winapi_util__0_1_5",
- url = "https://crates.io/api/v1/crates/winapi-util/0.1.5/download",
- type = "tar.gz",
- sha256 = "70ec6ce85bb158151cae5e5c87f95a8e97d2c0c4b001223f33a334e3ce5de178",
- strip_prefix = "winapi-util-0.1.5",
- build_file = Label("//third_party/cargo/remote:BUILD.winapi-util-0.1.5.bazel"),
- )
-
- maybe(
- http_archive,
- name = "raze__winapi_x86_64_pc_windows_gnu__0_4_0",
- url = "https://crates.io/api/v1/crates/winapi-x86_64-pc-windows-gnu/0.4.0/download",
- type = "tar.gz",
- sha256 = "712e227841d057c1ee1cd2fb22fa7e5a5461ae8e48fa2ca79ec42cfc1931183f",
- strip_prefix = "winapi-x86_64-pc-windows-gnu-0.4.0",
- build_file = Label("//third_party/cargo/remote:BUILD.winapi-x86_64-pc-windows-gnu-0.4.0.bazel"),
- )
diff --git a/third_party/cargo/cxxbridge-cmd/Cargo.Bazel.lock b/third_party/cargo/cxxbridge-cmd/Cargo.Bazel.lock
new file mode 100644
index 0000000..a27da42
--- /dev/null
+++ b/third_party/cargo/cxxbridge-cmd/Cargo.Bazel.lock
@@ -0,0 +1,797 @@
+{
+ "checksum": "fdceea4595bd3f06a030c6dca9dcf3774382ad94e6a9f5d6cb8746bfd6f26d7b",
+ "crates": {
+ "anstyle 1.0.1": {
+ "name": "anstyle",
+ "version": "1.0.1",
+ "repository": {
+ "Http": {
+ "url": "https://crates.io/api/v1/crates/anstyle/1.0.1/download",
+ "sha256": "3a30da5c5f2d5e72842e00bcb57657162cdabef0931f40e2deb9b4140440cecd"
+ }
+ },
+ "targets": [
+ {
+ "Library": {
+ "crate_name": "anstyle",
+ "crate_root": "src/lib.rs",
+ "srcs": [
+ "**/*.rs"
+ ]
+ }
+ }
+ ],
+ "library_target_name": "anstyle",
+ "common_attrs": {
+ "compile_data_glob": [
+ "**"
+ ],
+ "crate_features": {
+ "common": [
+ "default",
+ "std"
+ ],
+ "selects": {}
+ },
+ "edition": "2021",
+ "version": "1.0.1"
+ },
+ "license": "MIT OR Apache-2.0"
+ },
+ "clap 4.3.11": {
+ "name": "clap",
+ "version": "4.3.11",
+ "repository": {
+ "Http": {
+ "url": "https://crates.io/api/v1/crates/clap/4.3.11/download",
+ "sha256": "1640e5cc7fb47dbb8338fd471b105e7ed6c3cb2aeb00c2e067127ffd3764a05d"
+ }
+ },
+ "targets": [
+ {
+ "Library": {
+ "crate_name": "clap",
+ "crate_root": "src/lib.rs",
+ "srcs": [
+ "**/*.rs"
+ ]
+ }
+ }
+ ],
+ "library_target_name": "clap",
+ "common_attrs": {
+ "compile_data_glob": [
+ "**"
+ ],
+ "crate_features": {
+ "common": [
+ "error-context",
+ "help",
+ "std",
+ "suggestions",
+ "usage"
+ ],
+ "selects": {}
+ },
+ "deps": {
+ "common": [
+ {
+ "id": "clap_builder 4.3.11",
+ "target": "clap_builder"
+ }
+ ],
+ "selects": {}
+ },
+ "edition": "2021",
+ "version": "4.3.11"
+ },
+ "license": "MIT OR Apache-2.0"
+ },
+ "clap_builder 4.3.11": {
+ "name": "clap_builder",
+ "version": "4.3.11",
+ "repository": {
+ "Http": {
+ "url": "https://crates.io/api/v1/crates/clap_builder/4.3.11/download",
+ "sha256": "98c59138d527eeaf9b53f35a77fcc1fad9d883116070c63d5de1c7dc7b00c72b"
+ }
+ },
+ "targets": [
+ {
+ "Library": {
+ "crate_name": "clap_builder",
+ "crate_root": "src/lib.rs",
+ "srcs": [
+ "**/*.rs"
+ ]
+ }
+ }
+ ],
+ "library_target_name": "clap_builder",
+ "common_attrs": {
+ "compile_data_glob": [
+ "**"
+ ],
+ "crate_features": {
+ "common": [
+ "error-context",
+ "help",
+ "std",
+ "suggestions",
+ "usage"
+ ],
+ "selects": {}
+ },
+ "deps": {
+ "common": [
+ {
+ "id": "anstyle 1.0.1",
+ "target": "anstyle"
+ },
+ {
+ "id": "clap_lex 0.5.0",
+ "target": "clap_lex"
+ },
+ {
+ "id": "strsim 0.10.0",
+ "target": "strsim"
+ }
+ ],
+ "selects": {}
+ },
+ "edition": "2021",
+ "version": "4.3.11"
+ },
+ "license": "MIT OR Apache-2.0"
+ },
+ "clap_lex 0.5.0": {
+ "name": "clap_lex",
+ "version": "0.5.0",
+ "repository": {
+ "Http": {
+ "url": "https://crates.io/api/v1/crates/clap_lex/0.5.0/download",
+ "sha256": "2da6da31387c7e4ef160ffab6d5e7f00c42626fe39aea70a7b0f1773f7dd6c1b"
+ }
+ },
+ "targets": [
+ {
+ "Library": {
+ "crate_name": "clap_lex",
+ "crate_root": "src/lib.rs",
+ "srcs": [
+ "**/*.rs"
+ ]
+ }
+ }
+ ],
+ "library_target_name": "clap_lex",
+ "common_attrs": {
+ "compile_data_glob": [
+ "**"
+ ],
+ "edition": "2021",
+ "version": "0.5.0"
+ },
+ "license": "MIT OR Apache-2.0"
+ },
+ "codespan-reporting 0.11.1": {
+ "name": "codespan-reporting",
+ "version": "0.11.1",
+ "repository": {
+ "Http": {
+ "url": "https://crates.io/api/v1/crates/codespan-reporting/0.11.1/download",
+ "sha256": "3538270d33cc669650c4b093848450d380def10c331d38c768e34cac80576e6e"
+ }
+ },
+ "targets": [
+ {
+ "Library": {
+ "crate_name": "codespan_reporting",
+ "crate_root": "src/lib.rs",
+ "srcs": [
+ "**/*.rs"
+ ]
+ }
+ }
+ ],
+ "library_target_name": "codespan_reporting",
+ "common_attrs": {
+ "compile_data_glob": [
+ "**"
+ ],
+ "deps": {
+ "common": [
+ {
+ "id": "termcolor 1.2.0",
+ "target": "termcolor"
+ },
+ {
+ "id": "unicode-width 0.1.10",
+ "target": "unicode_width"
+ }
+ ],
+ "selects": {}
+ },
+ "edition": "2018",
+ "version": "0.11.1"
+ },
+ "license": "Apache-2.0"
+ },
+ "cxxbridge-cmd 1.0.100": {
+ "name": "cxxbridge-cmd",
+ "version": "1.0.100",
+ "repository": null,
+ "targets": [],
+ "library_target_name": null,
+ "common_attrs": {
+ "compile_data_glob": [
+ "**"
+ ],
+ "deps": {
+ "common": [
+ {
+ "id": "clap 4.3.11",
+ "target": "clap"
+ },
+ {
+ "id": "codespan-reporting 0.11.1",
+ "target": "codespan_reporting"
+ },
+ {
+ "id": "proc-macro2 1.0.64",
+ "target": "proc_macro2"
+ },
+ {
+ "id": "quote 1.0.29",
+ "target": "quote"
+ },
+ {
+ "id": "syn 2.0.25",
+ "target": "syn"
+ }
+ ],
+ "selects": {}
+ },
+ "edition": "2021",
+ "version": "1.0.100"
+ },
+ "license": "MIT OR Apache-2.0"
+ },
+ "proc-macro2 1.0.64": {
+ "name": "proc-macro2",
+ "version": "1.0.64",
+ "repository": {
+ "Http": {
+ "url": "https://crates.io/api/v1/crates/proc-macro2/1.0.64/download",
+ "sha256": "78803b62cbf1f46fde80d7c0e803111524b9877184cfe7c3033659490ac7a7da"
+ }
+ },
+ "targets": [
+ {
+ "Library": {
+ "crate_name": "proc_macro2",
+ "crate_root": "src/lib.rs",
+ "srcs": [
+ "**/*.rs"
+ ]
+ }
+ },
+ {
+ "BuildScript": {
+ "crate_name": "build_script_build",
+ "crate_root": "build.rs",
+ "srcs": [
+ "**/*.rs"
+ ]
+ }
+ }
+ ],
+ "library_target_name": "proc_macro2",
+ "common_attrs": {
+ "compile_data_glob": [
+ "**"
+ ],
+ "crate_features": {
+ "common": [
+ "span-locations"
+ ],
+ "selects": {}
+ },
+ "deps": {
+ "common": [
+ {
+ "id": "proc-macro2 1.0.64",
+ "target": "build_script_build"
+ },
+ {
+ "id": "unicode-ident 1.0.10",
+ "target": "unicode_ident"
+ }
+ ],
+ "selects": {}
+ },
+ "edition": "2018",
+ "version": "1.0.64"
+ },
+ "build_script_attrs": {
+ "data_glob": [
+ "**"
+ ]
+ },
+ "license": "MIT OR Apache-2.0"
+ },
+ "quote 1.0.29": {
+ "name": "quote",
+ "version": "1.0.29",
+ "repository": {
+ "Http": {
+ "url": "https://crates.io/api/v1/crates/quote/1.0.29/download",
+ "sha256": "573015e8ab27661678357f27dc26460738fd2b6c86e46f386fde94cb5d913105"
+ }
+ },
+ "targets": [
+ {
+ "Library": {
+ "crate_name": "quote",
+ "crate_root": "src/lib.rs",
+ "srcs": [
+ "**/*.rs"
+ ]
+ }
+ },
+ {
+ "BuildScript": {
+ "crate_name": "build_script_build",
+ "crate_root": "build.rs",
+ "srcs": [
+ "**/*.rs"
+ ]
+ }
+ }
+ ],
+ "library_target_name": "quote",
+ "common_attrs": {
+ "compile_data_glob": [
+ "**"
+ ],
+ "deps": {
+ "common": [
+ {
+ "id": "proc-macro2 1.0.64",
+ "target": "proc_macro2"
+ },
+ {
+ "id": "quote 1.0.29",
+ "target": "build_script_build"
+ }
+ ],
+ "selects": {}
+ },
+ "edition": "2018",
+ "version": "1.0.29"
+ },
+ "build_script_attrs": {
+ "data_glob": [
+ "**"
+ ]
+ },
+ "license": "MIT OR Apache-2.0"
+ },
+ "strsim 0.10.0": {
+ "name": "strsim",
+ "version": "0.10.0",
+ "repository": {
+ "Http": {
+ "url": "https://crates.io/api/v1/crates/strsim/0.10.0/download",
+ "sha256": "73473c0e59e6d5812c5dfe2a064a6444949f089e20eec9a2e5506596494e4623"
+ }
+ },
+ "targets": [
+ {
+ "Library": {
+ "crate_name": "strsim",
+ "crate_root": "src/lib.rs",
+ "srcs": [
+ "**/*.rs"
+ ]
+ }
+ }
+ ],
+ "library_target_name": "strsim",
+ "common_attrs": {
+ "compile_data_glob": [
+ "**"
+ ],
+ "edition": "2015",
+ "version": "0.10.0"
+ },
+ "license": "MIT"
+ },
+ "syn 2.0.25": {
+ "name": "syn",
+ "version": "2.0.25",
+ "repository": {
+ "Http": {
+ "url": "https://crates.io/api/v1/crates/syn/2.0.25/download",
+ "sha256": "15e3fc8c0c74267e2df136e5e5fb656a464158aa57624053375eb9c8c6e25ae2"
+ }
+ },
+ "targets": [
+ {
+ "Library": {
+ "crate_name": "syn",
+ "crate_root": "src/lib.rs",
+ "srcs": [
+ "**/*.rs"
+ ]
+ }
+ }
+ ],
+ "library_target_name": "syn",
+ "common_attrs": {
+ "compile_data_glob": [
+ "**"
+ ],
+ "crate_features": {
+ "common": [
+ "clone-impls",
+ "full",
+ "parsing",
+ "printing",
+ "quote"
+ ],
+ "selects": {}
+ },
+ "deps": {
+ "common": [
+ {
+ "id": "proc-macro2 1.0.64",
+ "target": "proc_macro2"
+ },
+ {
+ "id": "quote 1.0.29",
+ "target": "quote"
+ },
+ {
+ "id": "unicode-ident 1.0.10",
+ "target": "unicode_ident"
+ }
+ ],
+ "selects": {}
+ },
+ "edition": "2021",
+ "version": "2.0.25"
+ },
+ "license": "MIT OR Apache-2.0"
+ },
+ "termcolor 1.2.0": {
+ "name": "termcolor",
+ "version": "1.2.0",
+ "repository": {
+ "Http": {
+ "url": "https://crates.io/api/v1/crates/termcolor/1.2.0/download",
+ "sha256": "be55cf8942feac5c765c2c993422806843c9a9a45d4d5c407ad6dd2ea95eb9b6"
+ }
+ },
+ "targets": [
+ {
+ "Library": {
+ "crate_name": "termcolor",
+ "crate_root": "src/lib.rs",
+ "srcs": [
+ "**/*.rs"
+ ]
+ }
+ }
+ ],
+ "library_target_name": "termcolor",
+ "common_attrs": {
+ "compile_data_glob": [
+ "**"
+ ],
+ "deps": {
+ "common": [],
+ "selects": {
+ "cfg(windows)": [
+ {
+ "id": "winapi-util 0.1.5",
+ "target": "winapi_util"
+ }
+ ]
+ }
+ },
+ "edition": "2018",
+ "version": "1.2.0"
+ },
+ "license": "Unlicense OR MIT"
+ },
+ "unicode-ident 1.0.10": {
+ "name": "unicode-ident",
+ "version": "1.0.10",
+ "repository": {
+ "Http": {
+ "url": "https://crates.io/api/v1/crates/unicode-ident/1.0.10/download",
+ "sha256": "22049a19f4a68748a168c0fc439f9516686aa045927ff767eca0a85101fb6e73"
+ }
+ },
+ "targets": [
+ {
+ "Library": {
+ "crate_name": "unicode_ident",
+ "crate_root": "src/lib.rs",
+ "srcs": [
+ "**/*.rs"
+ ]
+ }
+ }
+ ],
+ "library_target_name": "unicode_ident",
+ "common_attrs": {
+ "compile_data_glob": [
+ "**"
+ ],
+ "edition": "2018",
+ "version": "1.0.10"
+ },
+ "license": "(MIT OR Apache-2.0) AND Unicode-DFS-2016"
+ },
+ "unicode-width 0.1.10": {
+ "name": "unicode-width",
+ "version": "0.1.10",
+ "repository": {
+ "Http": {
+ "url": "https://crates.io/api/v1/crates/unicode-width/0.1.10/download",
+ "sha256": "c0edd1e5b14653f783770bce4a4dabb4a5108a5370a5f5d8cfe8710c361f6c8b"
+ }
+ },
+ "targets": [
+ {
+ "Library": {
+ "crate_name": "unicode_width",
+ "crate_root": "src/lib.rs",
+ "srcs": [
+ "**/*.rs"
+ ]
+ }
+ }
+ ],
+ "library_target_name": "unicode_width",
+ "common_attrs": {
+ "compile_data_glob": [
+ "**"
+ ],
+ "crate_features": {
+ "common": [
+ "default"
+ ],
+ "selects": {}
+ },
+ "edition": "2015",
+ "version": "0.1.10"
+ },
+ "license": "MIT/Apache-2.0"
+ },
+ "winapi 0.3.9": {
+ "name": "winapi",
+ "version": "0.3.9",
+ "repository": {
+ "Http": {
+ "url": "https://crates.io/api/v1/crates/winapi/0.3.9/download",
+ "sha256": "5c839a674fcd7a98952e593242ea400abe93992746761e38641405d28b00f419"
+ }
+ },
+ "targets": [
+ {
+ "Library": {
+ "crate_name": "winapi",
+ "crate_root": "src/lib.rs",
+ "srcs": [
+ "**/*.rs"
+ ]
+ }
+ },
+ {
+ "BuildScript": {
+ "crate_name": "build_script_build",
+ "crate_root": "build.rs",
+ "srcs": [
+ "**/*.rs"
+ ]
+ }
+ }
+ ],
+ "library_target_name": "winapi",
+ "common_attrs": {
+ "compile_data_glob": [
+ "**"
+ ],
+ "deps": {
+ "common": [
+ {
+ "id": "winapi 0.3.9",
+ "target": "build_script_build"
+ }
+ ],
+ "selects": {
+ "i686-pc-windows-gnu": [
+ {
+ "id": "winapi-i686-pc-windows-gnu 0.4.0",
+ "target": "winapi_i686_pc_windows_gnu"
+ }
+ ],
+ "x86_64-pc-windows-gnu": [
+ {
+ "id": "winapi-x86_64-pc-windows-gnu 0.4.0",
+ "target": "winapi_x86_64_pc_windows_gnu"
+ }
+ ]
+ }
+ },
+ "edition": "2015",
+ "version": "0.3.9"
+ },
+ "build_script_attrs": {
+ "data_glob": [
+ "**"
+ ]
+ },
+ "license": "MIT/Apache-2.0"
+ },
+ "winapi-i686-pc-windows-gnu 0.4.0": {
+ "name": "winapi-i686-pc-windows-gnu",
+ "version": "0.4.0",
+ "repository": {
+ "Http": {
+ "url": "https://crates.io/api/v1/crates/winapi-i686-pc-windows-gnu/0.4.0/download",
+ "sha256": "ac3b87c63620426dd9b991e5ce0329eff545bccbbb34f3be09ff6fb6ab51b7b6"
+ }
+ },
+ "targets": [
+ {
+ "Library": {
+ "crate_name": "winapi_i686_pc_windows_gnu",
+ "crate_root": "src/lib.rs",
+ "srcs": [
+ "**/*.rs"
+ ]
+ }
+ },
+ {
+ "BuildScript": {
+ "crate_name": "build_script_build",
+ "crate_root": "build.rs",
+ "srcs": [
+ "**/*.rs"
+ ]
+ }
+ }
+ ],
+ "library_target_name": "winapi_i686_pc_windows_gnu",
+ "common_attrs": {
+ "compile_data_glob": [
+ "**"
+ ],
+ "deps": {
+ "common": [
+ {
+ "id": "winapi-i686-pc-windows-gnu 0.4.0",
+ "target": "build_script_build"
+ }
+ ],
+ "selects": {}
+ },
+ "edition": "2015",
+ "version": "0.4.0"
+ },
+ "build_script_attrs": {
+ "data_glob": [
+ "**"
+ ]
+ },
+ "license": "MIT/Apache-2.0"
+ },
+ "winapi-util 0.1.5": {
+ "name": "winapi-util",
+ "version": "0.1.5",
+ "repository": {
+ "Http": {
+ "url": "https://crates.io/api/v1/crates/winapi-util/0.1.5/download",
+ "sha256": "70ec6ce85bb158151cae5e5c87f95a8e97d2c0c4b001223f33a334e3ce5de178"
+ }
+ },
+ "targets": [
+ {
+ "Library": {
+ "crate_name": "winapi_util",
+ "crate_root": "src/lib.rs",
+ "srcs": [
+ "**/*.rs"
+ ]
+ }
+ }
+ ],
+ "library_target_name": "winapi_util",
+ "common_attrs": {
+ "compile_data_glob": [
+ "**"
+ ],
+ "deps": {
+ "common": [],
+ "selects": {
+ "cfg(windows)": [
+ {
+ "id": "winapi 0.3.9",
+ "target": "winapi"
+ }
+ ]
+ }
+ },
+ "edition": "2018",
+ "version": "0.1.5"
+ },
+ "license": "Unlicense/MIT"
+ },
+ "winapi-x86_64-pc-windows-gnu 0.4.0": {
+ "name": "winapi-x86_64-pc-windows-gnu",
+ "version": "0.4.0",
+ "repository": {
+ "Http": {
+ "url": "https://crates.io/api/v1/crates/winapi-x86_64-pc-windows-gnu/0.4.0/download",
+ "sha256": "712e227841d057c1ee1cd2fb22fa7e5a5461ae8e48fa2ca79ec42cfc1931183f"
+ }
+ },
+ "targets": [
+ {
+ "Library": {
+ "crate_name": "winapi_x86_64_pc_windows_gnu",
+ "crate_root": "src/lib.rs",
+ "srcs": [
+ "**/*.rs"
+ ]
+ }
+ },
+ {
+ "BuildScript": {
+ "crate_name": "build_script_build",
+ "crate_root": "build.rs",
+ "srcs": [
+ "**/*.rs"
+ ]
+ }
+ }
+ ],
+ "library_target_name": "winapi_x86_64_pc_windows_gnu",
+ "common_attrs": {
+ "compile_data_glob": [
+ "**"
+ ],
+ "deps": {
+ "common": [
+ {
+ "id": "winapi-x86_64-pc-windows-gnu 0.4.0",
+ "target": "build_script_build"
+ }
+ ],
+ "selects": {}
+ },
+ "edition": "2015",
+ "version": "0.4.0"
+ },
+ "build_script_attrs": {
+ "data_glob": [
+ "**"
+ ]
+ },
+ "license": "MIT/Apache-2.0"
+ }
+ },
+ "binary_crates": [],
+ "workspace_members": {
+ "cxxbridge-cmd 1.0.100": ""
+ },
+ "conditions": {
+ "cfg(windows)": [],
+ "i686-pc-windows-gnu": [],
+ "x86_64-pc-windows-gnu": []
+ }
+}
diff --git a/third_party/cargo/cxxbridge-cmd/Cargo.lock b/third_party/cargo/cxxbridge-cmd/Cargo.lock
new file mode 100644
index 0000000..9d782dc
--- /dev/null
+++ b/third_party/cargo/cxxbridge-cmd/Cargo.lock
@@ -0,0 +1,143 @@
+# This file is automatically @generated by Cargo.
+# It is not intended for manual editing.
+version = 3
+
+[[package]]
+name = "anstyle"
+version = "1.0.1"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "3a30da5c5f2d5e72842e00bcb57657162cdabef0931f40e2deb9b4140440cecd"
+
+[[package]]
+name = "clap"
+version = "4.3.11"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "1640e5cc7fb47dbb8338fd471b105e7ed6c3cb2aeb00c2e067127ffd3764a05d"
+dependencies = [
+ "clap_builder",
+]
+
+[[package]]
+name = "clap_builder"
+version = "4.3.11"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "98c59138d527eeaf9b53f35a77fcc1fad9d883116070c63d5de1c7dc7b00c72b"
+dependencies = [
+ "anstyle",
+ "clap_lex",
+ "strsim",
+]
+
+[[package]]
+name = "clap_lex"
+version = "0.5.0"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "2da6da31387c7e4ef160ffab6d5e7f00c42626fe39aea70a7b0f1773f7dd6c1b"
+
+[[package]]
+name = "codespan-reporting"
+version = "0.11.1"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "3538270d33cc669650c4b093848450d380def10c331d38c768e34cac80576e6e"
+dependencies = [
+ "termcolor",
+ "unicode-width",
+]
+
+[[package]]
+name = "cxxbridge-cmd"
+version = "1.0.100"
+dependencies = [
+ "clap",
+ "codespan-reporting",
+ "proc-macro2",
+ "quote",
+ "syn",
+]
+
+[[package]]
+name = "proc-macro2"
+version = "1.0.64"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "78803b62cbf1f46fde80d7c0e803111524b9877184cfe7c3033659490ac7a7da"
+dependencies = [
+ "unicode-ident",
+]
+
+[[package]]
+name = "quote"
+version = "1.0.29"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "573015e8ab27661678357f27dc26460738fd2b6c86e46f386fde94cb5d913105"
+dependencies = [
+ "proc-macro2",
+]
+
+[[package]]
+name = "strsim"
+version = "0.10.0"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "73473c0e59e6d5812c5dfe2a064a6444949f089e20eec9a2e5506596494e4623"
+
+[[package]]
+name = "syn"
+version = "2.0.25"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "15e3fc8c0c74267e2df136e5e5fb656a464158aa57624053375eb9c8c6e25ae2"
+dependencies = [
+ "proc-macro2",
+ "quote",
+ "unicode-ident",
+]
+
+[[package]]
+name = "termcolor"
+version = "1.2.0"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "be55cf8942feac5c765c2c993422806843c9a9a45d4d5c407ad6dd2ea95eb9b6"
+dependencies = [
+ "winapi-util",
+]
+
+[[package]]
+name = "unicode-ident"
+version = "1.0.10"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "22049a19f4a68748a168c0fc439f9516686aa045927ff767eca0a85101fb6e73"
+
+[[package]]
+name = "unicode-width"
+version = "0.1.10"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "c0edd1e5b14653f783770bce4a4dabb4a5108a5370a5f5d8cfe8710c361f6c8b"
+
+[[package]]
+name = "winapi"
+version = "0.3.9"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "5c839a674fcd7a98952e593242ea400abe93992746761e38641405d28b00f419"
+dependencies = [
+ "winapi-i686-pc-windows-gnu",
+ "winapi-x86_64-pc-windows-gnu",
+]
+
+[[package]]
+name = "winapi-i686-pc-windows-gnu"
+version = "0.4.0"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "ac3b87c63620426dd9b991e5ce0329eff545bccbbb34f3be09ff6fb6ab51b7b6"
+
+[[package]]
+name = "winapi-util"
+version = "0.1.5"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "70ec6ce85bb158151cae5e5c87f95a8e97d2c0c4b001223f33a334e3ce5de178"
+dependencies = [
+ "winapi",
+]
+
+[[package]]
+name = "winapi-x86_64-pc-windows-gnu"
+version = "0.4.0"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "712e227841d057c1ee1cd2fb22fa7e5a5461ae8e48fa2ca79ec42cfc1931183f"
diff --git a/third_party/cargo/cxxbridge-cmd/include.BUILD.bazel b/third_party/cargo/cxxbridge-cmd/include.BUILD.bazel
new file mode 100644
index 0000000..c967bd0
--- /dev/null
+++ b/third_party/cargo/cxxbridge-cmd/include.BUILD.bazel
@@ -0,0 +1,16 @@
+load("@rules_rust//rust:defs.bzl", "rust_binary")
+load("@cxxbridge_cmd_deps//:defs.bzl", "aliases", "all_crate_deps")
+
+rust_binary(
+ name = "cxxbridge-cmd",
+ srcs = glob(["src/**/*.rs"]),
+ aliases = aliases(),
+ data = [
+ "src/gen/include/cxx.h",
+ ],
+ edition = "2021",
+ visibility = ["//visibility:public"],
+ deps = all_crate_deps(
+ normal = True,
+ ),
+)
diff --git a/third_party/cargo/remote/BUILD.addr2line-0.19.0.bazel b/third_party/cargo/remote/BUILD.addr2line-0.19.0.bazel
deleted file mode 100644
index de51038..0000000
--- a/third_party/cargo/remote/BUILD.addr2line-0.19.0.bazel
+++ /dev/null
@@ -1,63 +0,0 @@
-"""
-@generated
-cargo-raze crate build file.
-
-DO NOT EDIT! Replaced on runs of cargo-raze
-"""
-
-# buildifier: disable=load
-load("@bazel_skylib//lib:selects.bzl", "selects")
-
-# buildifier: disable=load
-load(
- "@rules_rust//rust:defs.bzl",
- "rust_binary",
- "rust_library",
- "rust_proc_macro",
- "rust_test",
-)
-
-package(default_visibility = [
- # Public for visibility by "@raze__crate__version//" targets.
- #
- # Prefer access through "//third_party/cargo", which limits external
- # visibility to explicit Cargo.toml dependencies.
- "//visibility:public",
-])
-
-licenses([
- "notice", # Apache-2.0 from expression "Apache-2.0 OR MIT"
-])
-
-# Generated Targets
-
-# Unsupported target "addr2line" with type "example" omitted
-
-rust_library(
- name = "addr2line",
- srcs = glob(["**/*.rs"]),
- crate_features = [
- ],
- crate_root = "src/lib.rs",
- data = [],
- edition = "2015",
- rustc_flags = [
- "--cap-lints=allow",
- ],
- tags = [
- "cargo-raze",
- "crate-name=addr2line",
- "manual",
- ],
- version = "0.19.0",
- # buildifier: leave-alone
- deps = [
- "@raze__gimli__0_27_0//:gimli",
- ],
-)
-
-# Unsupported target "correctness" with type "test" omitted
-
-# Unsupported target "output_equivalence" with type "test" omitted
-
-# Unsupported target "parse" with type "test" omitted
diff --git a/third_party/cargo/remote/BUILD.adler-1.0.2.bazel b/third_party/cargo/remote/BUILD.adler-1.0.2.bazel
deleted file mode 100644
index 4521d2d..0000000
--- a/third_party/cargo/remote/BUILD.adler-1.0.2.bazel
+++ /dev/null
@@ -1,56 +0,0 @@
-"""
-@generated
-cargo-raze crate build file.
-
-DO NOT EDIT! Replaced on runs of cargo-raze
-"""
-
-# buildifier: disable=load
-load("@bazel_skylib//lib:selects.bzl", "selects")
-
-# buildifier: disable=load
-load(
- "@rules_rust//rust:defs.bzl",
- "rust_binary",
- "rust_library",
- "rust_proc_macro",
- "rust_test",
-)
-
-package(default_visibility = [
- # Public for visibility by "@raze__crate__version//" targets.
- #
- # Prefer access through "//third_party/cargo", which limits external
- # visibility to explicit Cargo.toml dependencies.
- "//visibility:public",
-])
-
-licenses([
- "notice", # MIT from expression "0BSD OR (MIT OR Apache-2.0)"
-])
-
-# Generated Targets
-
-# Unsupported target "bench" with type "bench" omitted
-
-rust_library(
- name = "adler",
- srcs = glob(["**/*.rs"]),
- crate_features = [
- ],
- crate_root = "src/lib.rs",
- data = [],
- edition = "2015",
- rustc_flags = [
- "--cap-lints=allow",
- ],
- tags = [
- "cargo-raze",
- "crate-name=adler",
- "manual",
- ],
- version = "1.0.2",
- # buildifier: leave-alone
- deps = [
- ],
-)
diff --git a/third_party/cargo/remote/BUILD.ahash-0.7.6.bazel b/third_party/cargo/remote/BUILD.ahash-0.7.6.bazel
deleted file mode 100644
index a97afb0..0000000
--- a/third_party/cargo/remote/BUILD.ahash-0.7.6.bazel
+++ /dev/null
@@ -1,135 +0,0 @@
-"""
-@generated
-cargo-raze crate build file.
-
-DO NOT EDIT! Replaced on runs of cargo-raze
-"""
-
-# buildifier: disable=load
-load("@bazel_skylib//lib:selects.bzl", "selects")
-
-# buildifier: disable=load
-load(
- "@rules_rust//rust:defs.bzl",
- "rust_binary",
- "rust_library",
- "rust_proc_macro",
- "rust_test",
-)
-
-package(default_visibility = [
- # Public for visibility by "@raze__crate__version//" targets.
- #
- # Prefer access through "//third_party/cargo", which limits external
- # visibility to explicit Cargo.toml dependencies.
- "//visibility:public",
-])
-
-licenses([
- "notice", # MIT from expression "MIT OR Apache-2.0"
-])
-
-# Generated Targets
-# buildifier: disable=out-of-order-load
-# buildifier: disable=load-on-top
-load(
- "@rules_rust//cargo:cargo_build_script.bzl",
- "cargo_build_script",
-)
-
-cargo_build_script(
- name = "ahash_build_script",
- srcs = glob(["**/*.rs"]),
- build_script_env = {
- },
- crate_features = [
- ],
- crate_root = "build.rs",
- data = glob(["**"]),
- edition = "2018",
- rustc_flags = [
- "--cap-lints=allow",
- ],
- tags = [
- "cargo-raze",
- "manual",
- ],
- version = "0.7.6",
- visibility = ["//visibility:private"],
- deps = [
- "@raze__version_check__0_9_4//:version_check",
- ] + selects.with_or({
- # cfg(any(target_os = "linux", target_os = "android", target_os = "windows", target_os = "macos", target_os = "ios", target_os = "freebsd", target_os = "openbsd", target_os = "netbsd", target_os = "dragonfly", target_os = "solaris", target_os = "illumos", target_os = "fuchsia", target_os = "redox", target_os = "cloudabi", target_os = "haiku", target_os = "vxworks", target_os = "emscripten", target_os = "wasi"))
- (
- "@rules_rust//rust/platform:x86_64-unknown-linux-gnu",
- "@rules_rust//rust/platform:arm-unknown-linux-gnueabi",
- "@rules_rust//rust/platform:armv7-unknown-linux-gnueabihf",
- ): [
- ],
- "//conditions:default": [],
- }) + selects.with_or({
- # cfg(not(all(target_arch = "arm", target_os = "none")))
- (
- "@rules_rust//rust/platform:x86_64-unknown-linux-gnu",
- "@rules_rust//rust/platform:arm-unknown-linux-gnueabi",
- "@rules_rust//rust/platform:armv7-unknown-linux-gnueabihf",
- ): [
- ],
- "//conditions:default": [],
- }),
-)
-
-# Unsupported target "ahash" with type "bench" omitted
-
-# Unsupported target "map" with type "bench" omitted
-
-rust_library(
- name = "ahash",
- srcs = glob(["**/*.rs"]),
- aliases = {
- },
- crate_features = [
- ],
- crate_root = "src/lib.rs",
- data = [],
- edition = "2018",
- rustc_flags = [
- "--cap-lints=allow",
- ],
- tags = [
- "cargo-raze",
- "crate-name=ahash",
- "manual",
- ],
- version = "0.7.6",
- # buildifier: leave-alone
- deps = [
- ":ahash_build_script",
- ] + selects.with_or({
- # cfg(any(target_os = "linux", target_os = "android", target_os = "windows", target_os = "macos", target_os = "ios", target_os = "freebsd", target_os = "openbsd", target_os = "netbsd", target_os = "dragonfly", target_os = "solaris", target_os = "illumos", target_os = "fuchsia", target_os = "redox", target_os = "cloudabi", target_os = "haiku", target_os = "vxworks", target_os = "emscripten", target_os = "wasi"))
- (
- "@rules_rust//rust/platform:x86_64-unknown-linux-gnu",
- "@rules_rust//rust/platform:arm-unknown-linux-gnueabi",
- "@rules_rust//rust/platform:armv7-unknown-linux-gnueabihf",
- ): [
- "@raze__getrandom__0_2_8//:getrandom",
- ],
- "//conditions:default": [],
- }) + selects.with_or({
- # cfg(not(all(target_arch = "arm", target_os = "none")))
- (
- "@rules_rust//rust/platform:x86_64-unknown-linux-gnu",
- "@rules_rust//rust/platform:arm-unknown-linux-gnueabi",
- "@rules_rust//rust/platform:armv7-unknown-linux-gnueabihf",
- ): [
- "@raze__once_cell__1_16_0//:once_cell",
- ],
- "//conditions:default": [],
- }),
-)
-
-# Unsupported target "bench" with type "test" omitted
-
-# Unsupported target "map_tests" with type "test" omitted
-
-# Unsupported target "nopanic" with type "test" omitted
diff --git a/third_party/cargo/remote/BUILD.aho-corasick-0.7.20.bazel b/third_party/cargo/remote/BUILD.aho-corasick-0.7.20.bazel
deleted file mode 100644
index 2bb9eb5..0000000
--- a/third_party/cargo/remote/BUILD.aho-corasick-0.7.20.bazel
+++ /dev/null
@@ -1,57 +0,0 @@
-"""
-@generated
-cargo-raze crate build file.
-
-DO NOT EDIT! Replaced on runs of cargo-raze
-"""
-
-# buildifier: disable=load
-load("@bazel_skylib//lib:selects.bzl", "selects")
-
-# buildifier: disable=load
-load(
- "@rules_rust//rust:defs.bzl",
- "rust_binary",
- "rust_library",
- "rust_proc_macro",
- "rust_test",
-)
-
-package(default_visibility = [
- # Public for visibility by "@raze__crate__version//" targets.
- #
- # Prefer access through "//third_party/cargo", which limits external
- # visibility to explicit Cargo.toml dependencies.
- "//visibility:public",
-])
-
-licenses([
- "unencumbered", # Unlicense from expression "Unlicense OR MIT"
-])
-
-# Generated Targets
-
-rust_library(
- name = "aho_corasick",
- srcs = glob(["**/*.rs"]),
- crate_features = [
- "default",
- "std",
- ],
- crate_root = "src/lib.rs",
- data = [],
- edition = "2018",
- rustc_flags = [
- "--cap-lints=allow",
- ],
- tags = [
- "cargo-raze",
- "crate-name=aho_corasick",
- "manual",
- ],
- version = "0.7.20",
- # buildifier: leave-alone
- deps = [
- "@raze__memchr__2_5_0//:memchr",
- ],
-)
diff --git a/third_party/cargo/remote/BUILD.ansi_term-0.12.1.bazel b/third_party/cargo/remote/BUILD.ansi_term-0.12.1.bazel
deleted file mode 100644
index 0428026..0000000
--- a/third_party/cargo/remote/BUILD.ansi_term-0.12.1.bazel
+++ /dev/null
@@ -1,60 +0,0 @@
-"""
-@generated
-cargo-raze crate build file.
-
-DO NOT EDIT! Replaced on runs of cargo-raze
-"""
-
-# buildifier: disable=load
-load("@bazel_skylib//lib:selects.bzl", "selects")
-
-# buildifier: disable=load
-load(
- "@rules_rust//rust:defs.bzl",
- "rust_binary",
- "rust_library",
- "rust_proc_macro",
- "rust_test",
-)
-
-package(default_visibility = [
- # Public for visibility by "@raze__crate__version//" targets.
- #
- # Prefer access through "//third_party/cargo", which limits external
- # visibility to explicit Cargo.toml dependencies.
- "//visibility:public",
-])
-
-licenses([
- "notice", # MIT from expression "MIT"
-])
-
-# Generated Targets
-
-# Unsupported target "256_colours" with type "example" omitted
-
-# Unsupported target "basic_colours" with type "example" omitted
-
-# Unsupported target "rgb_colours" with type "example" omitted
-
-rust_library(
- name = "ansi_term",
- srcs = glob(["**/*.rs"]),
- crate_features = [
- ],
- crate_root = "src/lib.rs",
- data = [],
- edition = "2015",
- rustc_flags = [
- "--cap-lints=allow",
- ],
- tags = [
- "cargo-raze",
- "crate-name=ansi_term",
- "manual",
- ],
- version = "0.12.1",
- # buildifier: leave-alone
- deps = [
- ],
-)
diff --git a/third_party/cargo/remote/BUILD.anyhow-1.0.68.bazel b/third_party/cargo/remote/BUILD.anyhow-1.0.68.bazel
deleted file mode 100644
index 54092ca..0000000
--- a/third_party/cargo/remote/BUILD.anyhow-1.0.68.bazel
+++ /dev/null
@@ -1,116 +0,0 @@
-"""
-@generated
-cargo-raze crate build file.
-
-DO NOT EDIT! Replaced on runs of cargo-raze
-"""
-
-# buildifier: disable=load
-load("@bazel_skylib//lib:selects.bzl", "selects")
-
-# buildifier: disable=load
-load(
- "@rules_rust//rust:defs.bzl",
- "rust_binary",
- "rust_library",
- "rust_proc_macro",
- "rust_test",
-)
-
-package(default_visibility = [
- # Public for visibility by "@raze__crate__version//" targets.
- #
- # Prefer access through "//third_party/cargo", which limits external
- # visibility to explicit Cargo.toml dependencies.
- "//visibility:public",
-])
-
-licenses([
- "notice", # MIT from expression "MIT OR Apache-2.0"
-])
-
-# Generated Targets
-# buildifier: disable=out-of-order-load
-# buildifier: disable=load-on-top
-load(
- "@rules_rust//cargo:cargo_build_script.bzl",
- "cargo_build_script",
-)
-
-cargo_build_script(
- name = "anyhow_build_script",
- srcs = glob(["**/*.rs"]),
- build_script_env = {
- },
- crate_features = [
- "default",
- "std",
- ],
- crate_root = "build.rs",
- data = glob(["**"]),
- edition = "2018",
- rustc_flags = [
- "--cap-lints=allow",
- ],
- tags = [
- "cargo-raze",
- "manual",
- ],
- version = "1.0.68",
- visibility = ["//visibility:private"],
- deps = [
- ],
-)
-
-rust_library(
- name = "anyhow",
- srcs = glob(["**/*.rs"]),
- crate_features = [
- "default",
- "std",
- ],
- crate_root = "src/lib.rs",
- data = [],
- edition = "2018",
- rustc_flags = [
- "--cap-lints=allow",
- ],
- tags = [
- "cargo-raze",
- "crate-name=anyhow",
- "manual",
- ],
- version = "1.0.68",
- # 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_ensure" with type "test" omitted
-
-# Unsupported target "test_ffi" 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
diff --git a/third_party/cargo/remote/BUILD.aquamarine-0.1.12.bazel b/third_party/cargo/remote/BUILD.aquamarine-0.1.12.bazel
deleted file mode 100644
index f048a69..0000000
--- a/third_party/cargo/remote/BUILD.aquamarine-0.1.12.bazel
+++ /dev/null
@@ -1,59 +0,0 @@
-"""
-@generated
-cargo-raze crate build file.
-
-DO NOT EDIT! Replaced on runs of cargo-raze
-"""
-
-# buildifier: disable=load
-load("@bazel_skylib//lib:selects.bzl", "selects")
-
-# buildifier: disable=load
-load(
- "@rules_rust//rust:defs.bzl",
- "rust_binary",
- "rust_library",
- "rust_proc_macro",
- "rust_test",
-)
-
-package(default_visibility = [
- # Public for visibility by "@raze__crate__version//" targets.
- #
- # Prefer access through "//third_party/cargo", which limits external
- # visibility to explicit Cargo.toml dependencies.
- "//visibility:public",
-])
-
-licenses([
- "notice", # MIT from expression "MIT"
-])
-
-# Generated Targets
-
-rust_proc_macro(
- name = "aquamarine",
- srcs = glob(["**/*.rs"]),
- crate_features = [
- ],
- crate_root = "src/lib.rs",
- data = [],
- edition = "2018",
- rustc_flags = [
- "--cap-lints=allow",
- ],
- tags = [
- "cargo-raze",
- "crate-name=aquamarine",
- "manual",
- ],
- version = "0.1.12",
- # buildifier: leave-alone
- deps = [
- "@raze__itertools__0_9_0//:itertools",
- "@raze__proc_macro2__1_0_49//:proc_macro2",
- "@raze__proc_macro_error__1_0_4//:proc_macro_error",
- "@raze__quote__1_0_23//:quote",
- "@raze__syn__1_0_107//:syn",
- ],
-)
diff --git a/third_party/cargo/remote/BUILD.assert_cmd-1.0.8.bazel b/third_party/cargo/remote/BUILD.assert_cmd-1.0.8.bazel
deleted file mode 100644
index e671f63..0000000
--- a/third_party/cargo/remote/BUILD.assert_cmd-1.0.8.bazel
+++ /dev/null
@@ -1,99 +0,0 @@
-"""
-@generated
-cargo-raze crate build file.
-
-DO NOT EDIT! Replaced on runs of cargo-raze
-"""
-
-# buildifier: disable=load
-load("@bazel_skylib//lib:selects.bzl", "selects")
-
-# buildifier: disable=load
-load(
- "@rules_rust//rust:defs.bzl",
- "rust_binary",
- "rust_library",
- "rust_proc_macro",
- "rust_test",
-)
-
-package(default_visibility = [
- # Public for visibility by "@raze__crate__version//" targets.
- #
- # Prefer access through "//third_party/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_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_bin_fixture",
- srcs = glob(["**/*.rs"]),
- crate_features = [
- ],
- crate_root = "src/bin/bin_fixture.rs",
- data = [],
- edition = "2018",
- rustc_flags = [
- "--cap-lints=allow",
- ],
- tags = [
- "cargo-raze",
- "crate-name=bin_fixture",
- "manual",
- ],
- version = "1.0.8",
- # buildifier: leave-alone
- deps = [
- ":assert_cmd",
- "@raze__bstr__0_2_17//:bstr",
- "@raze__doc_comment__0_3_3//:doc_comment",
- "@raze__predicates__2_1_1//:predicates",
- "@raze__predicates_core__1_0_5//:predicates_core",
- "@raze__predicates_tree__1_0_7//:predicates_tree",
- "@raze__wait_timeout__0_2_0//:wait_timeout",
- ],
-)
-
-# Unsupported target "example_fixture" with type "example" omitted
-
-rust_library(
- name = "assert_cmd",
- srcs = glob(["**/*.rs"]),
- crate_features = [
- ],
- crate_root = "src/lib.rs",
- data = [],
- edition = "2018",
- rustc_flags = [
- "--cap-lints=allow",
- ],
- tags = [
- "cargo-raze",
- "crate-name=assert_cmd",
- "manual",
- ],
- version = "1.0.8",
- # buildifier: leave-alone
- deps = [
- "@raze__bstr__0_2_17//:bstr",
- "@raze__doc_comment__0_3_3//:doc_comment",
- "@raze__predicates__2_1_1//:predicates",
- "@raze__predicates_core__1_0_5//:predicates_core",
- "@raze__predicates_tree__1_0_7//:predicates_tree",
- "@raze__wait_timeout__0_2_0//:wait_timeout",
- ],
-)
-
-# Unsupported target "assert" with type "test" omitted
-
-# Unsupported target "cargo" with type "test" omitted
-
-# Unsupported target "examples" with type "test" omitted
diff --git a/third_party/cargo/remote/BUILD.atty-0.2.14.bazel b/third_party/cargo/remote/BUILD.atty-0.2.14.bazel
deleted file mode 100644
index 552e35c..0000000
--- a/third_party/cargo/remote/BUILD.atty-0.2.14.bazel
+++ /dev/null
@@ -1,68 +0,0 @@
-"""
-@generated
-cargo-raze crate build file.
-
-DO NOT EDIT! Replaced on runs of cargo-raze
-"""
-
-# buildifier: disable=load
-load("@bazel_skylib//lib:selects.bzl", "selects")
-
-# buildifier: disable=load
-load(
- "@rules_rust//rust:defs.bzl",
- "rust_binary",
- "rust_library",
- "rust_proc_macro",
- "rust_test",
-)
-
-package(default_visibility = [
- # Public for visibility by "@raze__crate__version//" targets.
- #
- # Prefer access through "//third_party/cargo", which limits external
- # visibility to explicit Cargo.toml dependencies.
- "//visibility:public",
-])
-
-licenses([
- "notice", # MIT from expression "MIT"
-])
-
-# Generated Targets
-
-# Unsupported target "atty" with type "example" omitted
-
-rust_library(
- name = "atty",
- srcs = glob(["**/*.rs"]),
- aliases = {
- },
- crate_features = [
- ],
- crate_root = "src/lib.rs",
- data = [],
- edition = "2015",
- rustc_flags = [
- "--cap-lints=allow",
- ],
- tags = [
- "cargo-raze",
- "crate-name=atty",
- "manual",
- ],
- version = "0.2.14",
- # buildifier: leave-alone
- deps = [
- ] + selects.with_or({
- # cfg(unix)
- (
- "@rules_rust//rust/platform:x86_64-unknown-linux-gnu",
- "@rules_rust//rust/platform:arm-unknown-linux-gnueabi",
- "@rules_rust//rust/platform:armv7-unknown-linux-gnueabihf",
- ): [
- "@raze__libc__0_2_138//:libc",
- ],
- "//conditions:default": [],
- }),
-)
diff --git a/third_party/cargo/remote/BUILD.autocfg-1.1.0.bazel b/third_party/cargo/remote/BUILD.autocfg-1.1.0.bazel
deleted file mode 100644
index 2be2324..0000000
--- a/third_party/cargo/remote/BUILD.autocfg-1.1.0.bazel
+++ /dev/null
@@ -1,64 +0,0 @@
-"""
-@generated
-cargo-raze crate build file.
-
-DO NOT EDIT! Replaced on runs of cargo-raze
-"""
-
-# buildifier: disable=load
-load("@bazel_skylib//lib:selects.bzl", "selects")
-
-# buildifier: disable=load
-load(
- "@rules_rust//rust:defs.bzl",
- "rust_binary",
- "rust_library",
- "rust_proc_macro",
- "rust_test",
-)
-
-package(default_visibility = [
- # Public for visibility by "@raze__crate__version//" targets.
- #
- # Prefer access through "//third_party/cargo", which limits external
- # visibility to explicit Cargo.toml dependencies.
- "//visibility:public",
-])
-
-licenses([
- "notice", # Apache-2.0 from expression "Apache-2.0 OR MIT"
-])
-
-# Generated Targets
-
-# Unsupported target "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
-
-rust_library(
- name = "autocfg",
- srcs = glob(["**/*.rs"]),
- crate_features = [
- ],
- crate_root = "src/lib.rs",
- data = [],
- edition = "2015",
- rustc_flags = [
- "--cap-lints=allow",
- ],
- tags = [
- "cargo-raze",
- "crate-name=autocfg",
- "manual",
- ],
- version = "1.1.0",
- # buildifier: leave-alone
- deps = [
- ],
-)
-
-# Unsupported target "rustflags" with type "test" omitted
diff --git a/third_party/cargo/remote/BUILD.autocxx-bindgen-0.59.17.bazel b/third_party/cargo/remote/BUILD.autocxx-bindgen-0.59.17.bazel
deleted file mode 100644
index 7b128af..0000000
--- a/third_party/cargo/remote/BUILD.autocxx-bindgen-0.59.17.bazel
+++ /dev/null
@@ -1,167 +0,0 @@
-"""
-@generated
-cargo-raze crate build file.
-
-DO NOT EDIT! Replaced on runs of cargo-raze
-"""
-
-# buildifier: disable=load
-load("@bazel_skylib//lib:selects.bzl", "selects")
-
-# buildifier: disable=load
-load(
- "@rules_rust//rust:defs.bzl",
- "rust_binary",
- "rust_library",
- "rust_proc_macro",
- "rust_test",
-)
-
-package(default_visibility = [
- # Public for visibility by "@raze__crate__version//" targets.
- #
- # Prefer access through "//third_party/cargo", which limits external
- # visibility to explicit Cargo.toml dependencies.
- "//visibility:public",
-])
-
-licenses([
- "notice", # BSD-3-Clause from expression "BSD-3-Clause"
-])
-
-# Generated Targets
-# buildifier: disable=out-of-order-load
-# buildifier: disable=load-on-top
-load(
- "@rules_rust//cargo:cargo_build_script.bzl",
- "cargo_build_script",
-)
-
-cargo_build_script(
- name = "autocxx_bindgen_build_script",
- srcs = glob(["**/*.rs"]),
- build_script_env = {
- },
- crate_features = [
- "clap",
- "default",
- "env_logger",
- "log",
- "logging",
- "runtime",
- "which",
- "which-rustfmt",
- ],
- crate_root = "build.rs",
- data = glob(["**"]),
- edition = "2018",
- rustc_flags = [
- "--cap-lints=allow",
- ],
- tags = [
- "cargo-raze",
- "manual",
- ],
- version = "0.59.17",
- visibility = ["//visibility:private"],
- deps = [
- "@raze__clang_sys__1_4_0//:clang_sys",
- ],
-)
-
-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_autocxx_bindgen",
- srcs = glob(["**/*.rs"]),
- crate_features = [
- "clap",
- "default",
- "env_logger",
- "log",
- "logging",
- "runtime",
- "which",
- "which-rustfmt",
- ],
- crate_root = "src/main.rs",
- data = [],
- edition = "2018",
- rustc_flags = [
- "--cap-lints=allow",
- ],
- tags = [
- "cargo-raze",
- "crate-name=autocxx-bindgen",
- "manual",
- ],
- version = "0.59.17",
- # buildifier: leave-alone
- deps = [
- ":autocxx_bindgen",
- ":autocxx_bindgen_build_script",
- "@raze__bitflags__1_3_2//:bitflags",
- "@raze__cexpr__0_6_0//:cexpr",
- "@raze__clang_sys__1_4_0//:clang_sys",
- "@raze__clap__2_34_0//:clap",
- "@raze__env_logger__0_9_3//:env_logger",
- "@raze__itertools__0_10_5//:itertools",
- "@raze__lazy_static__1_4_0//:lazy_static",
- "@raze__lazycell__1_3_0//:lazycell",
- "@raze__log__0_4_17//:log",
- "@raze__peeking_take_while__0_1_2//:peeking_take_while",
- "@raze__proc_macro2__1_0_49//:proc_macro2",
- "@raze__quote__1_0_23//:quote",
- "@raze__regex__1_7_0//:regex",
- "@raze__rustc_hash__1_1_0//:rustc_hash",
- "@raze__shlex__1_1_0//:shlex",
- "@raze__which__4_3_0//:which",
- ],
-)
-
-rust_library(
- name = "autocxx_bindgen",
- srcs = glob(["**/*.rs"]),
- crate_features = [
- "clap",
- "default",
- "env_logger",
- "log",
- "logging",
- "runtime",
- "which",
- "which-rustfmt",
- ],
- crate_root = "src/lib.rs",
- data = [],
- edition = "2018",
- rustc_flags = [
- "--cap-lints=allow",
- ],
- tags = [
- "cargo-raze",
- "crate-name=autocxx-bindgen",
- "manual",
- ],
- version = "0.59.17",
- # buildifier: leave-alone
- deps = [
- ":autocxx_bindgen_build_script",
- "@raze__bitflags__1_3_2//:bitflags",
- "@raze__cexpr__0_6_0//:cexpr",
- "@raze__clang_sys__1_4_0//:clang_sys",
- "@raze__clap__2_34_0//:clap",
- "@raze__env_logger__0_9_3//:env_logger",
- "@raze__itertools__0_10_5//:itertools",
- "@raze__lazy_static__1_4_0//:lazy_static",
- "@raze__lazycell__1_3_0//:lazycell",
- "@raze__log__0_4_17//:log",
- "@raze__peeking_take_while__0_1_2//:peeking_take_while",
- "@raze__proc_macro2__1_0_49//:proc_macro2",
- "@raze__quote__1_0_23//:quote",
- "@raze__regex__1_7_0//:regex",
- "@raze__rustc_hash__1_1_0//:rustc_hash",
- "@raze__shlex__1_1_0//:shlex",
- "@raze__which__4_3_0//:which",
- ],
-)
diff --git a/third_party/cargo/remote/BUILD.backtrace-0.3.67.bazel b/third_party/cargo/remote/BUILD.backtrace-0.3.67.bazel
deleted file mode 100644
index 034105a..0000000
--- a/third_party/cargo/remote/BUILD.backtrace-0.3.67.bazel
+++ /dev/null
@@ -1,113 +0,0 @@
-"""
-@generated
-cargo-raze crate build file.
-
-DO NOT EDIT! Replaced on runs of cargo-raze
-"""
-
-# buildifier: disable=load
-load("@bazel_skylib//lib:selects.bzl", "selects")
-
-# buildifier: disable=load
-load(
- "@rules_rust//rust:defs.bzl",
- "rust_binary",
- "rust_library",
- "rust_proc_macro",
- "rust_test",
-)
-
-package(default_visibility = [
- # Public for visibility by "@raze__crate__version//" targets.
- #
- # Prefer access through "//third_party/cargo", which limits external
- # visibility to explicit Cargo.toml dependencies.
- "//visibility:public",
-])
-
-licenses([
- "notice", # MIT from expression "MIT OR Apache-2.0"
-])
-
-# Generated Targets
-# buildifier: disable=out-of-order-load
-# buildifier: disable=load-on-top
-load(
- "@rules_rust//cargo:cargo_build_script.bzl",
- "cargo_build_script",
-)
-
-cargo_build_script(
- name = "backtrace_build_script",
- srcs = glob(["**/*.rs"]),
- build_script_env = {
- },
- crate_features = [
- "default",
- "std",
- ],
- crate_root = "build.rs",
- data = glob(["**"]),
- edition = "2018",
- rustc_flags = [
- "--cap-lints=allow",
- ],
- tags = [
- "cargo-raze",
- "manual",
- ],
- version = "0.3.67",
- visibility = ["//visibility:private"],
- deps = [
- "@raze__cc__1_0_78//:cc",
- ],
-)
-
-# Unsupported target "benchmarks" with type "bench" omitted
-
-# Unsupported target "backtrace" with type "example" omitted
-
-# Unsupported target "raw" with type "example" omitted
-
-rust_library(
- name = "backtrace",
- srcs = glob(["**/*.rs"]),
- crate_features = [
- "default",
- "std",
- ],
- crate_root = "src/lib.rs",
- data = [],
- edition = "2018",
- rustc_flags = [
- "--cap-lints=allow",
- ],
- tags = [
- "cargo-raze",
- "crate-name=backtrace",
- "manual",
- ],
- version = "0.3.67",
- # buildifier: leave-alone
- deps = [
- ":backtrace_build_script",
- "@raze__addr2line__0_19_0//:addr2line",
- "@raze__cfg_if__1_0_0//:cfg_if",
- "@raze__libc__0_2_138//:libc",
- "@raze__miniz_oxide__0_6_2//:miniz_oxide",
- "@raze__object__0_30_0//:object",
- "@raze__rustc_demangle__0_1_21//:rustc_demangle",
- ],
-)
-
-# Unsupported target "accuracy" with type "test" omitted
-
-# Unsupported target "concurrent-panics" with type "test" omitted
-
-# Unsupported target "current-exe-mismatch" with type "test" omitted
-
-# Unsupported target "long_fn_name" with type "test" omitted
-
-# Unsupported target "skip_inner_frames" with type "test" omitted
-
-# Unsupported target "smoke" with type "test" omitted
diff --git a/third_party/cargo/remote/BUILD.bazel b/third_party/cargo/remote/BUILD.bazel
deleted file mode 100644
index e69de29..0000000
--- a/third_party/cargo/remote/BUILD.bazel
+++ /dev/null
diff --git a/third_party/cargo/remote/BUILD.bindgen-0.58.1.bazel b/third_party/cargo/remote/BUILD.bindgen-0.58.1.bazel
deleted file mode 100644
index 2c78a38..0000000
--- a/third_party/cargo/remote/BUILD.bindgen-0.58.1.bazel
+++ /dev/null
@@ -1,165 +0,0 @@
-"""
-@generated
-cargo-raze crate build file.
-
-DO NOT EDIT! Replaced on runs of cargo-raze
-"""
-
-# buildifier: disable=load
-load("@bazel_skylib//lib:selects.bzl", "selects")
-
-# buildifier: disable=load
-load(
- "@rules_rust//rust:defs.bzl",
- "rust_binary",
- "rust_library",
- "rust_proc_macro",
- "rust_test",
-)
-
-package(default_visibility = [
- # Public for visibility by "@raze__crate__version//" targets.
- #
- # Prefer access through "//third_party/cargo", which limits external
- # visibility to explicit Cargo.toml dependencies.
- "//visibility:public",
-])
-
-licenses([
- "notice", # BSD-3-Clause from expression "BSD-3-Clause"
-])
-
-# Generated Targets
-# buildifier: disable=out-of-order-load
-# buildifier: disable=load-on-top
-load(
- "@rules_rust//cargo:cargo_build_script.bzl",
- "cargo_build_script",
-)
-
-cargo_build_script(
- name = "bindgen_build_script",
- srcs = glob(["**/*.rs"]),
- build_script_env = {
- },
- crate_features = [
- "clap",
- "default",
- "env_logger",
- "log",
- "logging",
- "runtime",
- "which",
- "which-rustfmt",
- ],
- crate_root = "build.rs",
- data = glob(["**"]),
- edition = "2018",
- rustc_flags = [
- "--cap-lints=allow",
- ],
- tags = [
- "cargo-raze",
- "manual",
- ],
- version = "0.58.1",
- visibility = ["//visibility:private"],
- deps = [
- "@raze__clang_sys__1_4_0//:clang_sys",
- ],
-)
-
-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_bindgen",
- srcs = glob(["**/*.rs"]),
- crate_features = [
- "clap",
- "default",
- "env_logger",
- "log",
- "logging",
- "runtime",
- "which",
- "which-rustfmt",
- ],
- crate_root = "src/main.rs",
- data = [],
- edition = "2018",
- rustc_flags = [
- "--cap-lints=allow",
- ],
- tags = [
- "cargo-raze",
- "crate-name=bindgen",
- "manual",
- ],
- version = "0.58.1",
- # buildifier: leave-alone
- deps = [
- ":bindgen",
- ":bindgen_build_script",
- "@raze__bitflags__1_3_2//:bitflags",
- "@raze__cexpr__0_4_0//:cexpr",
- "@raze__clang_sys__1_4_0//:clang_sys",
- "@raze__clap__2_34_0//:clap",
- "@raze__env_logger__0_8_4//:env_logger",
- "@raze__lazy_static__1_4_0//:lazy_static",
- "@raze__lazycell__1_3_0//:lazycell",
- "@raze__log__0_4_17//:log",
- "@raze__peeking_take_while__0_1_2//:peeking_take_while",
- "@raze__proc_macro2__1_0_49//:proc_macro2",
- "@raze__quote__1_0_23//:quote",
- "@raze__regex__1_7_0//:regex",
- "@raze__rustc_hash__1_1_0//:rustc_hash",
- "@raze__shlex__1_1_0//:shlex",
- "@raze__which__3_1_1//:which",
- ],
-)
-
-rust_library(
- name = "bindgen",
- srcs = glob(["**/*.rs"]),
- crate_features = [
- "clap",
- "default",
- "env_logger",
- "log",
- "logging",
- "runtime",
- "which",
- "which-rustfmt",
- ],
- crate_root = "src/lib.rs",
- data = [],
- edition = "2018",
- rustc_flags = [
- "--cap-lints=allow",
- ],
- tags = [
- "cargo-raze",
- "crate-name=bindgen",
- "manual",
- ],
- version = "0.58.1",
- # buildifier: leave-alone
- deps = [
- ":bindgen_build_script",
- "@raze__bitflags__1_3_2//:bitflags",
- "@raze__cexpr__0_4_0//:cexpr",
- "@raze__clang_sys__1_4_0//:clang_sys",
- "@raze__clap__2_34_0//:clap",
- "@raze__env_logger__0_8_4//:env_logger",
- "@raze__lazy_static__1_4_0//:lazy_static",
- "@raze__lazycell__1_3_0//:lazycell",
- "@raze__log__0_4_17//:log",
- "@raze__peeking_take_while__0_1_2//:peeking_take_while",
- "@raze__proc_macro2__1_0_49//:proc_macro2",
- "@raze__quote__1_0_23//:quote",
- "@raze__regex__1_7_0//:regex",
- "@raze__rustc_hash__1_1_0//:rustc_hash",
- "@raze__shlex__1_1_0//:shlex",
- "@raze__which__3_1_1//:which",
- ],
-)
diff --git a/third_party/cargo/remote/BUILD.bitflags-1.3.2.bazel b/third_party/cargo/remote/BUILD.bitflags-1.3.2.bazel
deleted file mode 100644
index e5ae410..0000000
--- a/third_party/cargo/remote/BUILD.bitflags-1.3.2.bazel
+++ /dev/null
@@ -1,59 +0,0 @@
-"""
-@generated
-cargo-raze crate build file.
-
-DO NOT EDIT! Replaced on runs of cargo-raze
-"""
-
-# buildifier: disable=load
-load("@bazel_skylib//lib:selects.bzl", "selects")
-
-# buildifier: disable=load
-load(
- "@rules_rust//rust:defs.bzl",
- "rust_binary",
- "rust_library",
- "rust_proc_macro",
- "rust_test",
-)
-
-package(default_visibility = [
- # Public for visibility by "@raze__crate__version//" targets.
- #
- # Prefer access through "//third_party/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 = "bitflags",
- srcs = glob(["**/*.rs"]),
- crate_features = [
- "default",
- ],
- crate_root = "src/lib.rs",
- data = [],
- edition = "2018",
- rustc_flags = [
- "--cap-lints=allow",
- ],
- tags = [
- "cargo-raze",
- "crate-name=bitflags",
- "manual",
- ],
- version = "1.3.2",
- # buildifier: leave-alone
- deps = [
- ],
-)
-
-# Unsupported target "basic" with type "test" omitted
-
-# Unsupported target "compile" with type "test" omitted
diff --git a/third_party/cargo/remote/BUILD.bstr-0.2.17.bazel b/third_party/cargo/remote/BUILD.bstr-0.2.17.bazel
deleted file mode 100644
index 414c224..0000000
--- a/third_party/cargo/remote/BUILD.bstr-0.2.17.bazel
+++ /dev/null
@@ -1,78 +0,0 @@
-"""
-@generated
-cargo-raze crate build file.
-
-DO NOT EDIT! Replaced on runs of cargo-raze
-"""
-
-# buildifier: disable=load
-load("@bazel_skylib//lib:selects.bzl", "selects")
-
-# buildifier: disable=load
-load(
- "@rules_rust//rust:defs.bzl",
- "rust_binary",
- "rust_library",
- "rust_proc_macro",
- "rust_test",
-)
-
-package(default_visibility = [
- # Public for visibility by "@raze__crate__version//" targets.
- #
- # Prefer access through "//third_party/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 "graphemes" with type "example" omitted
-
-# Unsupported target "graphemes-std" with type "example" omitted
-
-# Unsupported target "lines" with type "example" omitted
-
-# Unsupported target "lines-std" with type "example" omitted
-
-# Unsupported target "uppercase" with type "example" omitted
-
-# Unsupported target "uppercase-std" with type "example" omitted
-
-# Unsupported target "words" with type "example" omitted
-
-# Unsupported target "words-std" with type "example" omitted
-
-rust_library(
- name = "bstr",
- srcs = glob(["**/*.rs"]),
- crate_features = [
- "default",
- "lazy_static",
- "regex-automata",
- "std",
- "unicode",
- ],
- crate_root = "src/lib.rs",
- data = [],
- edition = "2018",
- rustc_flags = [
- "--cap-lints=allow",
- ],
- tags = [
- "cargo-raze",
- "crate-name=bstr",
- "manual",
- ],
- version = "0.2.17",
- # buildifier: leave-alone
- deps = [
- "@raze__lazy_static__1_4_0//:lazy_static",
- "@raze__memchr__2_5_0//:memchr",
- "@raze__regex_automata__0_1_10//:regex_automata",
- ],
-)
diff --git a/third_party/cargo/remote/BUILD.cc-1.0.78.bazel b/third_party/cargo/remote/BUILD.cc-1.0.78.bazel
deleted file mode 100644
index 8477d46..0000000
--- a/third_party/cargo/remote/BUILD.cc-1.0.78.bazel
+++ /dev/null
@@ -1,87 +0,0 @@
-"""
-@generated
-cargo-raze crate build file.
-
-DO NOT EDIT! Replaced on runs of cargo-raze
-"""
-
-# buildifier: disable=load
-load("@bazel_skylib//lib:selects.bzl", "selects")
-
-# buildifier: disable=load
-load(
- "@rules_rust//rust:defs.bzl",
- "rust_binary",
- "rust_library",
- "rust_proc_macro",
- "rust_test",
-)
-
-package(default_visibility = [
- # Public for visibility by "@raze__crate__version//" targets.
- #
- # Prefer access through "//third_party/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_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",
- srcs = glob(["**/*.rs"]),
- crate_features = [
- ],
- crate_root = "src/bin/gcc-shim.rs",
- data = [],
- edition = "2018",
- rustc_flags = [
- "--cap-lints=allow",
- ],
- tags = [
- "cargo-raze",
- "crate-name=gcc-shim",
- "manual",
- ],
- version = "1.0.78",
- # buildifier: leave-alone
- deps = [
- ":cc",
- ],
-)
-
-rust_library(
- name = "cc",
- srcs = glob(["**/*.rs"]),
- crate_features = [
- ],
- crate_root = "src/lib.rs",
- data = [],
- edition = "2018",
- rustc_flags = [
- "--cap-lints=allow",
- ],
- tags = [
- "cargo-raze",
- "crate-name=cc",
- "manual",
- ],
- version = "1.0.78",
- # 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
diff --git a/third_party/cargo/remote/BUILD.cexpr-0.4.0.bazel b/third_party/cargo/remote/BUILD.cexpr-0.4.0.bazel
deleted file mode 100644
index 24a40e4..0000000
--- a/third_party/cargo/remote/BUILD.cexpr-0.4.0.bazel
+++ /dev/null
@@ -1,57 +0,0 @@
-"""
-@generated
-cargo-raze crate build file.
-
-DO NOT EDIT! Replaced on runs of cargo-raze
-"""
-
-# buildifier: disable=load
-load("@bazel_skylib//lib:selects.bzl", "selects")
-
-# buildifier: disable=load
-load(
- "@rules_rust//rust:defs.bzl",
- "rust_binary",
- "rust_library",
- "rust_proc_macro",
- "rust_test",
-)
-
-package(default_visibility = [
- # Public for visibility by "@raze__crate__version//" targets.
- #
- # Prefer access through "//third_party/cargo", which limits external
- # visibility to explicit Cargo.toml dependencies.
- "//visibility:public",
-])
-
-licenses([
- "notice", # Apache-2.0 from expression "Apache-2.0 OR MIT"
-])
-
-# Generated Targets
-
-rust_library(
- name = "cexpr",
- srcs = glob(["**/*.rs"]),
- crate_features = [
- ],
- crate_root = "src/lib.rs",
- data = [],
- edition = "2018",
- rustc_flags = [
- "--cap-lints=allow",
- ],
- tags = [
- "cargo-raze",
- "crate-name=cexpr",
- "manual",
- ],
- version = "0.4.0",
- # buildifier: leave-alone
- deps = [
- "@raze__nom__5_1_2//:nom",
- ],
-)
-
-# Unsupported target "clang" with type "test" omitted
diff --git a/third_party/cargo/remote/BUILD.cexpr-0.6.0.bazel b/third_party/cargo/remote/BUILD.cexpr-0.6.0.bazel
deleted file mode 100644
index e3e8523..0000000
--- a/third_party/cargo/remote/BUILD.cexpr-0.6.0.bazel
+++ /dev/null
@@ -1,57 +0,0 @@
-"""
-@generated
-cargo-raze crate build file.
-
-DO NOT EDIT! Replaced on runs of cargo-raze
-"""
-
-# buildifier: disable=load
-load("@bazel_skylib//lib:selects.bzl", "selects")
-
-# buildifier: disable=load
-load(
- "@rules_rust//rust:defs.bzl",
- "rust_binary",
- "rust_library",
- "rust_proc_macro",
- "rust_test",
-)
-
-package(default_visibility = [
- # Public for visibility by "@raze__crate__version//" targets.
- #
- # Prefer access through "//third_party/cargo", which limits external
- # visibility to explicit Cargo.toml dependencies.
- "//visibility:public",
-])
-
-licenses([
- "notice", # Apache-2.0 from expression "Apache-2.0 OR MIT"
-])
-
-# Generated Targets
-
-rust_library(
- name = "cexpr",
- srcs = glob(["**/*.rs"]),
- crate_features = [
- ],
- crate_root = "src/lib.rs",
- data = [],
- edition = "2018",
- rustc_flags = [
- "--cap-lints=allow",
- ],
- tags = [
- "cargo-raze",
- "crate-name=cexpr",
- "manual",
- ],
- version = "0.6.0",
- # buildifier: leave-alone
- deps = [
- "@raze__nom__7_1_1//:nom",
- ],
-)
-
-# Unsupported target "clang" with type "test" omitted
diff --git a/third_party/cargo/remote/BUILD.cfg-if-0.1.10.bazel b/third_party/cargo/remote/BUILD.cfg-if-0.1.10.bazel
deleted file mode 100644
index fe9b88d..0000000
--- a/third_party/cargo/remote/BUILD.cfg-if-0.1.10.bazel
+++ /dev/null
@@ -1,56 +0,0 @@
-"""
-@generated
-cargo-raze crate build file.
-
-DO NOT EDIT! Replaced on runs of cargo-raze
-"""
-
-# buildifier: disable=load
-load("@bazel_skylib//lib:selects.bzl", "selects")
-
-# buildifier: disable=load
-load(
- "@rules_rust//rust:defs.bzl",
- "rust_binary",
- "rust_library",
- "rust_proc_macro",
- "rust_test",
-)
-
-package(default_visibility = [
- # Public for visibility by "@raze__crate__version//" targets.
- #
- # Prefer access through "//third_party/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 = "cfg_if",
- srcs = glob(["**/*.rs"]),
- crate_features = [
- ],
- crate_root = "src/lib.rs",
- data = [],
- edition = "2018",
- rustc_flags = [
- "--cap-lints=allow",
- ],
- tags = [
- "cargo-raze",
- "crate-name=cfg-if",
- "manual",
- ],
- version = "0.1.10",
- # buildifier: leave-alone
- deps = [
- ],
-)
-
-# Unsupported target "xcrate" with type "test" omitted
diff --git a/third_party/cargo/remote/BUILD.cfg-if-1.0.0.bazel b/third_party/cargo/remote/BUILD.cfg-if-1.0.0.bazel
deleted file mode 100644
index 3550887..0000000
--- a/third_party/cargo/remote/BUILD.cfg-if-1.0.0.bazel
+++ /dev/null
@@ -1,56 +0,0 @@
-"""
-@generated
-cargo-raze crate build file.
-
-DO NOT EDIT! Replaced on runs of cargo-raze
-"""
-
-# buildifier: disable=load
-load("@bazel_skylib//lib:selects.bzl", "selects")
-
-# buildifier: disable=load
-load(
- "@rules_rust//rust:defs.bzl",
- "rust_binary",
- "rust_library",
- "rust_proc_macro",
- "rust_test",
-)
-
-package(default_visibility = [
- # Public for visibility by "@raze__crate__version//" targets.
- #
- # Prefer access through "//third_party/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 = "cfg_if",
- srcs = glob(["**/*.rs"]),
- crate_features = [
- ],
- crate_root = "src/lib.rs",
- data = [],
- edition = "2018",
- rustc_flags = [
- "--cap-lints=allow",
- ],
- tags = [
- "cargo-raze",
- "crate-name=cfg-if",
- "manual",
- ],
- version = "1.0.0",
- # buildifier: leave-alone
- deps = [
- ],
-)
-
-# Unsupported target "xcrate" with type "test" omitted
diff --git a/third_party/cargo/remote/BUILD.clang-sys-1.4.0.bazel b/third_party/cargo/remote/BUILD.clang-sys-1.4.0.bazel
deleted file mode 100644
index e49e467..0000000
--- a/third_party/cargo/remote/BUILD.clang-sys-1.4.0.bazel
+++ /dev/null
@@ -1,111 +0,0 @@
-"""
-@generated
-cargo-raze crate build file.
-
-DO NOT EDIT! Replaced on runs of cargo-raze
-"""
-
-# buildifier: disable=load
-load("@bazel_skylib//lib:selects.bzl", "selects")
-
-# buildifier: disable=load
-load(
- "@rules_rust//rust:defs.bzl",
- "rust_binary",
- "rust_library",
- "rust_proc_macro",
- "rust_test",
-)
-
-package(default_visibility = [
- # Public for visibility by "@raze__crate__version//" targets.
- #
- # Prefer access through "//third_party/cargo", which limits external
- # visibility to explicit Cargo.toml dependencies.
- "//visibility:public",
-])
-
-licenses([
- "notice", # Apache-2.0 from expression "Apache-2.0"
-])
-
-# Generated Targets
-# buildifier: disable=out-of-order-load
-# buildifier: disable=load-on-top
-load(
- "@rules_rust//cargo:cargo_build_script.bzl",
- "cargo_build_script",
-)
-
-cargo_build_script(
- name = "clang_sys_build_script",
- srcs = glob(["**/*.rs"]),
- build_script_env = {
- },
- crate_features = [
- "clang_3_5",
- "clang_3_6",
- "clang_3_7",
- "clang_3_8",
- "clang_3_9",
- "clang_4_0",
- "clang_5_0",
- "clang_6_0",
- "libloading",
- "runtime",
- ],
- crate_root = "build.rs",
- data = glob(["**"]),
- edition = "2015",
- links = "clang",
- rustc_flags = [
- "--cap-lints=allow",
- ],
- tags = [
- "cargo-raze",
- "manual",
- ],
- version = "1.4.0",
- visibility = ["//visibility:private"],
- deps = [
- "@raze__glob__0_3_0//:glob",
- ],
-)
-
-rust_library(
- name = "clang_sys",
- srcs = glob(["**/*.rs"]),
- crate_features = [
- "clang_3_5",
- "clang_3_6",
- "clang_3_7",
- "clang_3_8",
- "clang_3_9",
- "clang_4_0",
- "clang_5_0",
- "clang_6_0",
- "libloading",
- "runtime",
- ],
- crate_root = "src/lib.rs",
- data = [],
- edition = "2015",
- rustc_flags = [
- "--cap-lints=allow",
- ],
- tags = [
- "cargo-raze",
- "crate-name=clang-sys",
- "manual",
- ],
- version = "1.4.0",
- # buildifier: leave-alone
- deps = [
- ":clang_sys_build_script",
- "@raze__glob__0_3_0//:glob",
- "@raze__libc__0_2_138//:libc",
- "@raze__libloading__0_7_4//:libloading",
- ],
-)
-
-# Unsupported target "lib" with type "test" omitted
diff --git a/third_party/cargo/remote/BUILD.clap-2.34.0.bazel b/third_party/cargo/remote/BUILD.clap-2.34.0.bazel
deleted file mode 100644
index 1b6e9cd..0000000
--- a/third_party/cargo/remote/BUILD.clap-2.34.0.bazel
+++ /dev/null
@@ -1,79 +0,0 @@
-"""
-@generated
-cargo-raze crate build file.
-
-DO NOT EDIT! Replaced on runs of cargo-raze
-"""
-
-# buildifier: disable=load
-load("@bazel_skylib//lib:selects.bzl", "selects")
-
-# buildifier: disable=load
-load(
- "@rules_rust//rust:defs.bzl",
- "rust_binary",
- "rust_library",
- "rust_proc_macro",
- "rust_test",
-)
-
-package(default_visibility = [
- # Public for visibility by "@raze__crate__version//" targets.
- #
- # Prefer access through "//third_party/cargo", which limits external
- # visibility to explicit Cargo.toml dependencies.
- "//visibility:public",
-])
-
-licenses([
- "notice", # MIT from expression "MIT"
-])
-
-# Generated Targets
-
-rust_library(
- name = "clap",
- srcs = glob(["**/*.rs"]),
- aliases = {
- },
- crate_features = [
- "ansi_term",
- "atty",
- "color",
- "default",
- "strsim",
- "suggestions",
- "vec_map",
- ],
- crate_root = "src/lib.rs",
- data = [],
- edition = "2018",
- rustc_flags = [
- "--cap-lints=allow",
- ],
- tags = [
- "cargo-raze",
- "crate-name=clap",
- "manual",
- ],
- version = "2.34.0",
- # buildifier: leave-alone
- deps = [
- "@raze__atty__0_2_14//:atty",
- "@raze__bitflags__1_3_2//:bitflags",
- "@raze__strsim__0_8_0//:strsim",
- "@raze__textwrap__0_11_0//:textwrap",
- "@raze__unicode_width__0_1_10//:unicode_width",
- "@raze__vec_map__0_8_2//:vec_map",
- ] + selects.with_or({
- # cfg(not(windows))
- (
- "@rules_rust//rust/platform:x86_64-unknown-linux-gnu",
- "@rules_rust//rust/platform:arm-unknown-linux-gnueabi",
- "@rules_rust//rust/platform:armv7-unknown-linux-gnueabihf",
- ): [
- "@raze__ansi_term__0_12_1//:ansi_term",
- ],
- "//conditions:default": [],
- }),
-)
diff --git a/third_party/cargo/remote/BUILD.clap-3.2.23.bazel b/third_party/cargo/remote/BUILD.clap-3.2.23.bazel
deleted file mode 100644
index d4764a1..0000000
--- a/third_party/cargo/remote/BUILD.clap-3.2.23.bazel
+++ /dev/null
@@ -1,217 +0,0 @@
-"""
-@generated
-cargo-raze crate build file.
-
-DO NOT EDIT! Replaced on runs of cargo-raze
-"""
-
-# buildifier: disable=load
-load("@bazel_skylib//lib:selects.bzl", "selects")
-
-# buildifier: disable=load
-load(
- "@rules_rust//rust:defs.bzl",
- "rust_binary",
- "rust_library",
- "rust_proc_macro",
- "rust_test",
-)
-
-package(default_visibility = [
- # Public for visibility by "@raze__crate__version//" targets.
- #
- # Prefer access through "//third_party/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_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_stdio_fixture",
- srcs = glob(["**/*.rs"]),
- crate_features = [
- "atty",
- "cargo",
- "color",
- "default",
- "once_cell",
- "std",
- "strsim",
- "suggestions",
- "termcolor",
- ],
- crate_root = "src/bin/stdio-fixture.rs",
- data = [],
- compile_data = ["examples/demo.md"],
- edition = "2021",
- rustc_flags = [
- "--cap-lints=allow",
- ],
- tags = [
- "cargo-raze",
- "crate-name=stdio-fixture",
- "manual",
- ],
- version = "3.2.23",
- # buildifier: leave-alone
- deps = [
- ":clap",
- "@raze__atty__0_2_14//:atty",
- "@raze__bitflags__1_3_2//:bitflags",
- "@raze__clap_lex__0_2_4//:clap_lex",
- "@raze__indexmap__1_9_2//:indexmap",
- "@raze__once_cell__1_16_0//:once_cell",
- "@raze__strsim__0_10_0//:strsim",
- "@raze__termcolor__1_1_3//:termcolor",
- "@raze__textwrap__0_16_0//:textwrap",
- ],
-)
-
-# Unsupported target "01_quick" with type "example" omitted
-
-# Unsupported target "01_quick_derive" with type "example" omitted
-
-# Unsupported target "02_app_settings" with type "example" omitted
-
-# Unsupported target "02_app_settings_derive" with type "example" omitted
-
-# Unsupported target "02_apps" with type "example" omitted
-
-# Unsupported target "02_apps_derive" with type "example" omitted
-
-# Unsupported target "02_crate" with type "example" omitted
-
-# Unsupported target "02_crate_derive" with type "example" omitted
-
-# Unsupported target "03_01_flag_bool" with type "example" omitted
-
-# Unsupported target "03_01_flag_bool_derive" with type "example" omitted
-
-# Unsupported target "03_01_flag_count" with type "example" omitted
-
-# Unsupported target "03_01_flag_count_derive" with type "example" omitted
-
-# Unsupported target "03_02_option" with type "example" omitted
-
-# Unsupported target "03_02_option_derive" with type "example" omitted
-
-# Unsupported target "03_03_positional" with type "example" omitted
-
-# Unsupported target "03_03_positional_derive" with type "example" omitted
-
-# Unsupported target "03_04_subcommands" with type "example" omitted
-
-# Unsupported target "03_04_subcommands_alt_derive" with type "example" omitted
-
-# Unsupported target "03_04_subcommands_derive" with type "example" omitted
-
-# Unsupported target "03_05_default_values" with type "example" omitted
-
-# Unsupported target "03_05_default_values_derive" with type "example" omitted
-
-# Unsupported target "04_01_enum" with type "example" omitted
-
-# Unsupported target "04_01_enum_derive" with type "example" omitted
-
-# Unsupported target "04_01_possible" with type "example" omitted
-
-# Unsupported target "04_02_parse" with type "example" omitted
-
-# Unsupported target "04_02_parse_derive" with type "example" omitted
-
-# Unsupported target "04_02_validate" with type "example" omitted
-
-# Unsupported target "04_02_validate_derive" with type "example" omitted
-
-# Unsupported target "04_03_relations" with type "example" omitted
-
-# Unsupported target "04_03_relations_derive" with type "example" omitted
-
-# Unsupported target "04_04_custom" with type "example" omitted
-
-# Unsupported target "04_04_custom_derive" with type "example" omitted
-
-# Unsupported target "05_01_assert" with type "example" omitted
-
-# Unsupported target "05_01_assert_derive" with type "example" omitted
-
-# Unsupported target "busybox" with type "example" omitted
-
-# Unsupported target "cargo-example" with type "example" omitted
-
-# Unsupported target "cargo-example-derive" with type "example" omitted
-
-# Unsupported target "custom-bool" with type "example" omitted
-
-# Unsupported target "demo" with type "example" omitted
-
-# Unsupported target "escaped-positional" with type "example" omitted
-
-# Unsupported target "escaped-positional-derive" with type "example" omitted
-
-# Unsupported target "git" with type "example" omitted
-
-# Unsupported target "git-derive" with type "example" omitted
-
-# Unsupported target "hostname" with type "example" omitted
-
-# Unsupported target "interop_augment_args" with type "example" omitted
-
-# Unsupported target "interop_augment_subcommands" with type "example" omitted
-
-# Unsupported target "interop_flatten_hand_args" with type "example" omitted
-
-# Unsupported target "interop_hand_subcommand" with type "example" omitted
-
-# Unsupported target "pacman" with type "example" omitted
-
-# Unsupported target "repl" with type "example" omitted
-
-# Unsupported target "typed-derive" with type "example" omitted
-
-rust_library(
- name = "clap",
- srcs = glob(["**/*.rs"]),
- crate_features = [
- "atty",
- "cargo",
- "color",
- "default",
- "once_cell",
- "std",
- "strsim",
- "suggestions",
- "termcolor",
- ],
- crate_root = "src/lib.rs",
- data = [],
- compile_data = ["examples/demo.md"],
- edition = "2021",
- rustc_flags = [
- "--cap-lints=allow",
- ],
- tags = [
- "cargo-raze",
- "crate-name=clap",
- "manual",
- ],
- version = "3.2.23",
- # buildifier: leave-alone
- deps = [
- "@raze__atty__0_2_14//:atty",
- "@raze__bitflags__1_3_2//:bitflags",
- "@raze__clap_lex__0_2_4//:clap_lex",
- "@raze__indexmap__1_9_2//:indexmap",
- "@raze__once_cell__1_16_0//:once_cell",
- "@raze__strsim__0_10_0//:strsim",
- "@raze__termcolor__1_1_3//:termcolor",
- "@raze__textwrap__0_16_0//:textwrap",
- ],
-)
diff --git a/third_party/cargo/remote/BUILD.clap_lex-0.2.4.bazel b/third_party/cargo/remote/BUILD.clap_lex-0.2.4.bazel
deleted file mode 100644
index f7a6600..0000000
--- a/third_party/cargo/remote/BUILD.clap_lex-0.2.4.bazel
+++ /dev/null
@@ -1,55 +0,0 @@
-"""
-@generated
-cargo-raze crate build file.
-
-DO NOT EDIT! Replaced on runs of cargo-raze
-"""
-
-# buildifier: disable=load
-load("@bazel_skylib//lib:selects.bzl", "selects")
-
-# buildifier: disable=load
-load(
- "@rules_rust//rust:defs.bzl",
- "rust_binary",
- "rust_library",
- "rust_proc_macro",
- "rust_test",
-)
-
-package(default_visibility = [
- # Public for visibility by "@raze__crate__version//" targets.
- #
- # Prefer access through "//third_party/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 = "clap_lex",
- srcs = glob(["**/*.rs"]),
- crate_features = [
- ],
- crate_root = "src/lib.rs",
- data = [],
- edition = "2021",
- rustc_flags = [
- "--cap-lints=allow",
- ],
- tags = [
- "cargo-raze",
- "crate-name=clap_lex",
- "manual",
- ],
- version = "0.2.4",
- # buildifier: leave-alone
- deps = [
- "@raze__os_str_bytes__6_4_1//:os_str_bytes",
- ],
-)
diff --git a/third_party/cargo/remote/BUILD.codespan-reporting-0.11.1.bazel b/third_party/cargo/remote/BUILD.codespan-reporting-0.11.1.bazel
deleted file mode 100644
index 0ed368b..0000000
--- a/third_party/cargo/remote/BUILD.codespan-reporting-0.11.1.bazel
+++ /dev/null
@@ -1,68 +0,0 @@
-"""
-@generated
-cargo-raze crate build file.
-
-DO NOT EDIT! Replaced on runs of cargo-raze
-"""
-
-# buildifier: disable=load
-load("@bazel_skylib//lib:selects.bzl", "selects")
-
-# buildifier: disable=load
-load(
- "@rules_rust//rust:defs.bzl",
- "rust_binary",
- "rust_library",
- "rust_proc_macro",
- "rust_test",
-)
-
-package(default_visibility = [
- # Public for visibility by "@raze__crate__version//" targets.
- #
- # Prefer access through "//third_party/cargo", which limits external
- # visibility to explicit Cargo.toml dependencies.
- "//visibility:public",
-])
-
-licenses([
- "notice", # Apache-2.0 from expression "Apache-2.0"
-])
-
-# Generated Targets
-
-# Unsupported target "custom_files" with type "example" omitted
-
-# Unsupported target "peg_calculator" with type "example" omitted
-
-# Unsupported target "readme_preview" with type "example" omitted
-
-# Unsupported target "reusable_diagnostic" with type "example" omitted
-
-# Unsupported target "term" with type "example" omitted
-
-rust_library(
- name = "codespan_reporting",
- srcs = glob(["**/*.rs"]),
- crate_features = [
- ],
- crate_root = "src/lib.rs",
- data = [],
- edition = "2018",
- rustc_flags = [
- "--cap-lints=allow",
- ],
- tags = [
- "cargo-raze",
- "crate-name=codespan-reporting",
- "manual",
- ],
- version = "0.11.1",
- # buildifier: leave-alone
- deps = [
- "@raze__termcolor__1_1_3//:termcolor",
- "@raze__unicode_width__0_1_10//:unicode_width",
- ],
-)
-
-# Unsupported target "term" with type "test" omitted
diff --git a/third_party/cargo/remote/BUILD.cxx-1.0.85.bazel b/third_party/cargo/remote/BUILD.cxx-1.0.85.bazel
deleted file mode 100644
index b3381fc..0000000
--- a/third_party/cargo/remote/BUILD.cxx-1.0.85.bazel
+++ /dev/null
@@ -1,85 +0,0 @@
-"""
-@generated
-cargo-raze crate build file.
-
-DO NOT EDIT! Replaced on runs of cargo-raze
-"""
-
-# buildifier: disable=load
-load("@bazel_skylib//lib:selects.bzl", "selects")
-
-# buildifier: disable=load
-load(
- "@rules_rust//rust:defs.bzl",
- "rust_binary",
- "rust_library",
- "rust_proc_macro",
- "rust_test",
-)
-
-package(default_visibility = [
- # Public for visibility by "@raze__crate__version//" targets.
- #
- # Prefer access through "//third_party/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 "build-script-build" with type "custom-build" omitted
-
-rust_library(
- name = "cxx",
- srcs = glob(["**/*.rs"]),
- crate_features = [
- "alloc",
- "default",
- "std",
- ],
- crate_root = "src/lib.rs",
- data = [],
- edition = "2018",
- proc_macro_deps = [
- "@raze__cxxbridge_macro__1_0_85//:cxxbridge_macro",
- ],
- rustc_flags = [
- "--cap-lints=allow",
- ],
- tags = [
- "cargo-raze",
- "crate-name=cxx",
- "manual",
- ],
- version = "1.0.85",
- # buildifier: leave-alone
- deps = [
- "@raze__link_cplusplus__1_0_8//:link_cplusplus",
- ],
-)
-
-# Unsupported target "compiletest" with type "test" omitted
-
-# Unsupported target "cxx_gen" with type "test" omitted
-
-# Unsupported target "cxx_string" with type "test" omitted
-
-# Unsupported target "test" with type "test" omitted
-
-# Unsupported target "unique_ptr" with type "test" omitted
-
-# Additional content from third_party/cargo/cxx/include.BUILD.bazel
-# This file is included in the BUILD for the cxx crate, to export its header
-# file for C++ code to depend on.
-cc_library(
- name = "cxx_cc",
- visibility = ["//visibility:public"],
- hdrs = ["include/cxx.h"],
- srcs = ["src/cxx.cc"],
- includes = ["include"],
- target_compatible_with = ["@//tools/platforms/rust:has_support"],
-)
diff --git a/third_party/cargo/remote/BUILD.cxx-gen-0.7.85.bazel b/third_party/cargo/remote/BUILD.cxx-gen-0.7.85.bazel
deleted file mode 100644
index af1f683..0000000
--- a/third_party/cargo/remote/BUILD.cxx-gen-0.7.85.bazel
+++ /dev/null
@@ -1,61 +0,0 @@
-"""
-@generated
-cargo-raze crate build file.
-
-DO NOT EDIT! Replaced on runs of cargo-raze
-"""
-
-# buildifier: disable=load
-load("@bazel_skylib//lib:selects.bzl", "selects")
-
-# buildifier: disable=load
-load(
- "@rules_rust//rust:defs.bzl",
- "rust_binary",
- "rust_library",
- "rust_proc_macro",
- "rust_test",
-)
-
-package(default_visibility = [
- # Public for visibility by "@raze__crate__version//" targets.
- #
- # Prefer access through "//third_party/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 = "cxx_gen",
- srcs = glob(["**/*.rs"]),
- crate_features = [
- ],
- crate_root = "src/lib.rs",
- data = [],
- compile_data = ["src/gen/include/cxx.h"],
- edition = "2018",
- rustc_flags = [
- "--cap-lints=allow",
- ],
- tags = [
- "cargo-raze",
- "crate-name=cxx-gen",
- "manual",
- ],
- version = "0.7.85",
- # buildifier: leave-alone
- deps = [
- "@raze__codespan_reporting__0_11_1//:codespan_reporting",
- "@raze__proc_macro2__1_0_49//:proc_macro2",
- "@raze__quote__1_0_23//:quote",
- "@raze__syn__1_0_107//:syn",
- ],
-)
-
-# Unsupported target "test" with type "test" omitted
diff --git a/third_party/cargo/remote/BUILD.cxxbridge-cmd-1.0.77.bazel b/third_party/cargo/remote/BUILD.cxxbridge-cmd-1.0.77.bazel
deleted file mode 100644
index a578c0a..0000000
--- a/third_party/cargo/remote/BUILD.cxxbridge-cmd-1.0.77.bazel
+++ /dev/null
@@ -1,91 +0,0 @@
-"""
-@generated
-cargo-raze crate build file.
-
-DO NOT EDIT! Replaced on runs of cargo-raze
-"""
-
-# buildifier: disable=load
-load("@bazel_skylib//lib:selects.bzl", "selects")
-
-# buildifier: disable=load
-load(
- "@rules_rust//rust:defs.bzl",
- "rust_binary",
- "rust_library",
- "rust_proc_macro",
- "rust_test",
-)
-
-package(default_visibility = [
- # Public for visibility by "@raze__crate__version//" targets.
- #
- # Prefer access through "//third_party/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_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_cxxbridge",
- srcs = glob(["**/*.rs"]),
- crate_features = [
- ],
- crate_root = "src/main.rs",
- data = [],
- compile_data = ["src/gen/include/cxx.h"],
- edition = "2018",
- rustc_flags = [
- "--cap-lints=allow",
- ],
- tags = [
- "cargo-raze",
- "crate-name=cxxbridge",
- "manual",
- ],
- version = "1.0.77",
- # buildifier: leave-alone
- deps = [
- ":cxxbridge_cmd",
- "@raze__clap__3_2_23//:clap",
- "@raze__codespan_reporting__0_11_1//:codespan_reporting",
- "@raze__proc_macro2__1_0_49//:proc_macro2",
- "@raze__quote__1_0_23//:quote",
- "@raze__syn__1_0_107//:syn",
- ],
-)
-
-rust_library(
- name = "cxxbridge_cmd",
- srcs = glob(["**/*.rs"]),
- crate_features = [
- ],
- crate_root = "src/lib.rs",
- data = [],
- compile_data = ["src/gen/include/cxx.h"],
- edition = "2018",
- rustc_flags = [
- "--cap-lints=allow",
- ],
- tags = [
- "cargo-raze",
- "crate-name=cxxbridge-cmd",
- "manual",
- ],
- version = "1.0.77",
- # buildifier: leave-alone
- deps = [
- "@raze__clap__3_2_23//:clap",
- "@raze__codespan_reporting__0_11_1//:codespan_reporting",
- "@raze__proc_macro2__1_0_49//:proc_macro2",
- "@raze__quote__1_0_23//:quote",
- "@raze__syn__1_0_107//:syn",
- ],
-)
diff --git a/third_party/cargo/remote/BUILD.cxxbridge-flags-1.0.85.bazel b/third_party/cargo/remote/BUILD.cxxbridge-flags-1.0.85.bazel
deleted file mode 100644
index 8d4a85b..0000000
--- a/third_party/cargo/remote/BUILD.cxxbridge-flags-1.0.85.bazel
+++ /dev/null
@@ -1,55 +0,0 @@
-"""
-@generated
-cargo-raze crate build file.
-
-DO NOT EDIT! Replaced on runs of cargo-raze
-"""
-
-# buildifier: disable=load
-load("@bazel_skylib//lib:selects.bzl", "selects")
-
-# buildifier: disable=load
-load(
- "@rules_rust//rust:defs.bzl",
- "rust_binary",
- "rust_library",
- "rust_proc_macro",
- "rust_test",
-)
-
-package(default_visibility = [
- # Public for visibility by "@raze__crate__version//" targets.
- #
- # Prefer access through "//third_party/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 = "cxxbridge_flags",
- srcs = glob(["**/*.rs"]),
- crate_features = [
- "default",
- ],
- crate_root = "src/lib.rs",
- data = [],
- edition = "2018",
- rustc_flags = [
- "--cap-lints=allow",
- ],
- tags = [
- "cargo-raze",
- "crate-name=cxxbridge-flags",
- "manual",
- ],
- version = "1.0.85",
- # buildifier: leave-alone
- deps = [
- ],
-)
diff --git a/third_party/cargo/remote/BUILD.cxxbridge-macro-1.0.85.bazel b/third_party/cargo/remote/BUILD.cxxbridge-macro-1.0.85.bazel
deleted file mode 100644
index 79d8c95..0000000
--- a/third_party/cargo/remote/BUILD.cxxbridge-macro-1.0.85.bazel
+++ /dev/null
@@ -1,57 +0,0 @@
-"""
-@generated
-cargo-raze crate build file.
-
-DO NOT EDIT! Replaced on runs of cargo-raze
-"""
-
-# buildifier: disable=load
-load("@bazel_skylib//lib:selects.bzl", "selects")
-
-# buildifier: disable=load
-load(
- "@rules_rust//rust:defs.bzl",
- "rust_binary",
- "rust_library",
- "rust_proc_macro",
- "rust_test",
-)
-
-package(default_visibility = [
- # Public for visibility by "@raze__crate__version//" targets.
- #
- # Prefer access through "//third_party/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_proc_macro(
- name = "cxxbridge_macro",
- srcs = glob(["**/*.rs"]),
- crate_features = [
- ],
- crate_root = "src/lib.rs",
- data = [],
- edition = "2018",
- rustc_flags = [
- "--cap-lints=allow",
- ],
- tags = [
- "cargo-raze",
- "crate-name=cxxbridge-macro",
- "manual",
- ],
- version = "1.0.85",
- # buildifier: leave-alone
- deps = [
- "@raze__proc_macro2__1_0_49//:proc_macro2",
- "@raze__quote__1_0_23//:quote",
- "@raze__syn__1_0_107//:syn",
- ],
-)
diff --git a/third_party/cargo/remote/BUILD.difflib-0.4.0.bazel b/third_party/cargo/remote/BUILD.difflib-0.4.0.bazel
deleted file mode 100644
index e869b6f..0000000
--- a/third_party/cargo/remote/BUILD.difflib-0.4.0.bazel
+++ /dev/null
@@ -1,58 +0,0 @@
-"""
-@generated
-cargo-raze crate build file.
-
-DO NOT EDIT! Replaced on runs of cargo-raze
-"""
-
-# buildifier: disable=load
-load("@bazel_skylib//lib:selects.bzl", "selects")
-
-# buildifier: disable=load
-load(
- "@rules_rust//rust:defs.bzl",
- "rust_binary",
- "rust_library",
- "rust_proc_macro",
- "rust_test",
-)
-
-package(default_visibility = [
- # Public for visibility by "@raze__crate__version//" targets.
- #
- # Prefer access through "//third_party/cargo", which limits external
- # visibility to explicit Cargo.toml dependencies.
- "//visibility:public",
-])
-
-licenses([
- "notice", # MIT from expression "MIT"
-])
-
-# Generated Targets
-
-# Unsupported target "example" with type "example" omitted
-
-rust_library(
- name = "difflib",
- srcs = glob(["**/*.rs"]),
- crate_features = [
- ],
- crate_root = "src/lib.rs",
- data = [],
- edition = "2015",
- rustc_flags = [
- "--cap-lints=allow",
- ],
- tags = [
- "cargo-raze",
- "crate-name=difflib",
- "manual",
- ],
- version = "0.4.0",
- # buildifier: leave-alone
- deps = [
- ],
-)
-
-# Unsupported target "tests" with type "test" omitted
diff --git a/third_party/cargo/remote/BUILD.doc-comment-0.3.3.bazel b/third_party/cargo/remote/BUILD.doc-comment-0.3.3.bazel
deleted file mode 100644
index beefca4..0000000
--- a/third_party/cargo/remote/BUILD.doc-comment-0.3.3.bazel
+++ /dev/null
@@ -1,84 +0,0 @@
-"""
-@generated
-cargo-raze crate build file.
-
-DO NOT EDIT! Replaced on runs of cargo-raze
-"""
-
-# buildifier: disable=load
-load("@bazel_skylib//lib:selects.bzl", "selects")
-
-# buildifier: disable=load
-load(
- "@rules_rust//rust:defs.bzl",
- "rust_binary",
- "rust_library",
- "rust_proc_macro",
- "rust_test",
-)
-
-package(default_visibility = [
- # Public for visibility by "@raze__crate__version//" targets.
- #
- # Prefer access through "//third_party/cargo", which limits external
- # visibility to explicit Cargo.toml dependencies.
- "//visibility:public",
-])
-
-licenses([
- "notice", # MIT from expression "MIT"
-])
-
-# Generated Targets
-# buildifier: disable=out-of-order-load
-# buildifier: disable=load-on-top
-load(
- "@rules_rust//cargo:cargo_build_script.bzl",
- "cargo_build_script",
-)
-
-cargo_build_script(
- name = "doc_comment_build_script",
- srcs = glob(["**/*.rs"]),
- build_script_env = {
- },
- crate_features = [
- ],
- crate_root = "build.rs",
- data = glob(["**"]),
- edition = "2015",
- rustc_flags = [
- "--cap-lints=allow",
- ],
- tags = [
- "cargo-raze",
- "manual",
- ],
- version = "0.3.3",
- visibility = ["//visibility:private"],
- deps = [
- ],
-)
-
-rust_library(
- name = "doc_comment",
- srcs = glob(["**/*.rs"]),
- crate_features = [
- ],
- crate_root = "src/lib.rs",
- data = [],
- edition = "2015",
- rustc_flags = [
- "--cap-lints=allow",
- ],
- tags = [
- "cargo-raze",
- "crate-name=doc_comment",
- "manual",
- ],
- version = "0.3.3",
- # buildifier: leave-alone
- deps = [
- ":doc_comment_build_script",
- ],
-)
diff --git a/third_party/cargo/remote/BUILD.either-1.8.0.bazel b/third_party/cargo/remote/BUILD.either-1.8.0.bazel
deleted file mode 100644
index 382f8da..0000000
--- a/third_party/cargo/remote/BUILD.either-1.8.0.bazel
+++ /dev/null
@@ -1,56 +0,0 @@
-"""
-@generated
-cargo-raze crate build file.
-
-DO NOT EDIT! Replaced on runs of cargo-raze
-"""
-
-# buildifier: disable=load
-load("@bazel_skylib//lib:selects.bzl", "selects")
-
-# buildifier: disable=load
-load(
- "@rules_rust//rust:defs.bzl",
- "rust_binary",
- "rust_library",
- "rust_proc_macro",
- "rust_test",
-)
-
-package(default_visibility = [
- # Public for visibility by "@raze__crate__version//" targets.
- #
- # Prefer access through "//third_party/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 = "either",
- srcs = glob(["**/*.rs"]),
- crate_features = [
- "default",
- "use_std",
- ],
- crate_root = "src/lib.rs",
- data = [],
- edition = "2018",
- rustc_flags = [
- "--cap-lints=allow",
- ],
- tags = [
- "cargo-raze",
- "crate-name=either",
- "manual",
- ],
- version = "1.8.0",
- # buildifier: leave-alone
- deps = [
- ],
-)
diff --git a/third_party/cargo/remote/BUILD.env_logger-0.8.4.bazel b/third_party/cargo/remote/BUILD.env_logger-0.8.4.bazel
deleted file mode 100644
index 8d9f86f..0000000
--- a/third_party/cargo/remote/BUILD.env_logger-0.8.4.bazel
+++ /dev/null
@@ -1,72 +0,0 @@
-"""
-@generated
-cargo-raze crate build file.
-
-DO NOT EDIT! Replaced on runs of cargo-raze
-"""
-
-# buildifier: disable=load
-load("@bazel_skylib//lib:selects.bzl", "selects")
-
-# buildifier: disable=load
-load(
- "@rules_rust//rust:defs.bzl",
- "rust_binary",
- "rust_library",
- "rust_proc_macro",
- "rust_test",
-)
-
-package(default_visibility = [
- # Public for visibility by "@raze__crate__version//" targets.
- #
- # Prefer access through "//third_party/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 = "env_logger",
- srcs = glob(["**/*.rs"]),
- crate_features = [
- "atty",
- "default",
- "humantime",
- "regex",
- "termcolor",
- ],
- crate_root = "src/lib.rs",
- data = [],
- edition = "2018",
- rustc_flags = [
- "--cap-lints=allow",
- ],
- tags = [
- "cargo-raze",
- "crate-name=env_logger",
- "manual",
- ],
- version = "0.8.4",
- # buildifier: leave-alone
- deps = [
- "@raze__atty__0_2_14//:atty",
- "@raze__humantime__2_1_0//:humantime",
- "@raze__log__0_4_17//:log",
- "@raze__regex__1_7_0//:regex",
- "@raze__termcolor__1_1_3//:termcolor",
- ],
-)
-
-# 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
diff --git a/third_party/cargo/remote/BUILD.env_logger-0.9.3.bazel b/third_party/cargo/remote/BUILD.env_logger-0.9.3.bazel
deleted file mode 100644
index 2c89f39..0000000
--- a/third_party/cargo/remote/BUILD.env_logger-0.9.3.bazel
+++ /dev/null
@@ -1,72 +0,0 @@
-"""
-@generated
-cargo-raze crate build file.
-
-DO NOT EDIT! Replaced on runs of cargo-raze
-"""
-
-# buildifier: disable=load
-load("@bazel_skylib//lib:selects.bzl", "selects")
-
-# buildifier: disable=load
-load(
- "@rules_rust//rust:defs.bzl",
- "rust_binary",
- "rust_library",
- "rust_proc_macro",
- "rust_test",
-)
-
-package(default_visibility = [
- # Public for visibility by "@raze__crate__version//" targets.
- #
- # Prefer access through "//third_party/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 = "env_logger",
- srcs = glob(["**/*.rs"]),
- crate_features = [
- "atty",
- "default",
- "humantime",
- "regex",
- "termcolor",
- ],
- crate_root = "src/lib.rs",
- data = [],
- edition = "2018",
- rustc_flags = [
- "--cap-lints=allow",
- ],
- tags = [
- "cargo-raze",
- "crate-name=env_logger",
- "manual",
- ],
- version = "0.9.3",
- # buildifier: leave-alone
- deps = [
- "@raze__atty__0_2_14//:atty",
- "@raze__humantime__2_1_0//:humantime",
- "@raze__log__0_4_17//:log",
- "@raze__regex__1_7_0//:regex",
- "@raze__termcolor__1_1_3//:termcolor",
- ],
-)
-
-# 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
diff --git a/third_party/cargo/remote/BUILD.fastrand-1.8.0.bazel b/third_party/cargo/remote/BUILD.fastrand-1.8.0.bazel
deleted file mode 100644
index 55c9c24..0000000
--- a/third_party/cargo/remote/BUILD.fastrand-1.8.0.bazel
+++ /dev/null
@@ -1,60 +0,0 @@
-"""
-@generated
-cargo-raze crate build file.
-
-DO NOT EDIT! Replaced on runs of cargo-raze
-"""
-
-# buildifier: disable=load
-load("@bazel_skylib//lib:selects.bzl", "selects")
-
-# buildifier: disable=load
-load(
- "@rules_rust//rust:defs.bzl",
- "rust_binary",
- "rust_library",
- "rust_proc_macro",
- "rust_test",
-)
-
-package(default_visibility = [
- # Public for visibility by "@raze__crate__version//" targets.
- #
- # Prefer access through "//third_party/cargo", which limits external
- # visibility to explicit Cargo.toml dependencies.
- "//visibility:public",
-])
-
-licenses([
- "notice", # Apache-2.0 from expression "Apache-2.0 OR MIT"
-])
-
-# Generated Targets
-
-# Unsupported target "bench" with type "bench" omitted
-
-rust_library(
- name = "fastrand",
- srcs = glob(["**/*.rs"]),
- crate_features = [
- ],
- crate_root = "src/lib.rs",
- data = [],
- edition = "2018",
- rustc_flags = [
- "--cap-lints=allow",
- ],
- tags = [
- "cargo-raze",
- "crate-name=fastrand",
- "manual",
- ],
- version = "1.8.0",
- # buildifier: leave-alone
- deps = [
- ],
-)
-
-# Unsupported target "char" with type "test" omitted
-
-# Unsupported target "smoke" with type "test" omitted
diff --git a/third_party/cargo/remote/BUILD.futures-0.3.25.bazel b/third_party/cargo/remote/BUILD.futures-0.3.25.bazel
deleted file mode 100644
index 60329cf..0000000
--- a/third_party/cargo/remote/BUILD.futures-0.3.25.bazel
+++ /dev/null
@@ -1,179 +0,0 @@
-"""
-@generated
-cargo-raze crate build file.
-
-DO NOT EDIT! Replaced on runs of cargo-raze
-"""
-
-# buildifier: disable=load
-load("@bazel_skylib//lib:selects.bzl", "selects")
-
-# buildifier: disable=load
-load(
- "@rules_rust//rust:defs.bzl",
- "rust_binary",
- "rust_library",
- "rust_proc_macro",
- "rust_test",
-)
-
-package(default_visibility = [
- # Public for visibility by "@raze__crate__version//" targets.
- #
- # Prefer access through "//third_party/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 = "futures",
- srcs = glob(["**/*.rs"]),
- crate_features = [
- "alloc",
- "async-await",
- "default",
- "executor",
- "futures-executor",
- "std",
- ],
- crate_root = "src/lib.rs",
- data = [],
- edition = "2018",
- rustc_flags = [
- "--cap-lints=allow",
- ],
- tags = [
- "cargo-raze",
- "crate-name=futures",
- "manual",
- ],
- version = "0.3.25",
- # buildifier: leave-alone
- deps = [
- "@raze__futures_channel__0_3_25//:futures_channel",
- "@raze__futures_core__0_3_25//:futures_core",
- "@raze__futures_executor__0_3_25//:futures_executor",
- "@raze__futures_io__0_3_25//:futures_io",
- "@raze__futures_sink__0_3_25//:futures_sink",
- "@raze__futures_task__0_3_25//:futures_task",
- "@raze__futures_util__0_3_25//:futures_util",
- ],
-)
-
-# Unsupported target "_require_features" with type "test" omitted
-
-# Unsupported target "async_await_macros" with type "test" omitted
-
-# Unsupported target "auto_traits" 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 "future_abortable" with type "test" omitted
-
-# Unsupported target "future_basic_combinators" with type "test" omitted
-
-# Unsupported target "future_fuse" with type "test" omitted
-
-# Unsupported target "future_inspect" with type "test" omitted
-
-# Unsupported target "future_join" with type "test" omitted
-
-# Unsupported target "future_join_all" with type "test" omitted
-
-# Unsupported target "future_obj" with type "test" omitted
-
-# Unsupported target "future_select_all" with type "test" omitted
-
-# Unsupported target "future_select_ok" with type "test" omitted
-
-# Unsupported target "future_shared" with type "test" omitted
-
-# Unsupported target "future_try_flatten_stream" with type "test" omitted
-
-# Unsupported target "future_try_join_all" 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_line_writer" 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_end" 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 "lock_mutex" with type "test" omitted
-
-# Unsupported target "macro_comma_support" 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 "sink" with type "test" omitted
-
-# Unsupported target "sink_fanout" with type "test" omitted
-
-# Unsupported target "stream" with type "test" omitted
-
-# Unsupported target "stream_abortable" with type "test" omitted
-
-# Unsupported target "stream_buffer_unordered" with type "test" omitted
-
-# Unsupported target "stream_catch_unwind" with type "test" omitted
-
-# Unsupported target "stream_futures_ordered" with type "test" omitted
-
-# Unsupported target "stream_futures_unordered" 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 "stream_split" with type "test" omitted
-
-# Unsupported target "stream_try_stream" with type "test" omitted
-
-# Unsupported target "stream_unfold" with type "test" omitted
-
-# Unsupported target "task_arc_wake" with type "test" omitted
-
-# Unsupported target "task_atomic_waker" with type "test" omitted
-
-# Unsupported target "test_macro" with type "test" omitted
-
-# Unsupported target "try_join" with type "test" omitted
diff --git a/third_party/cargo/remote/BUILD.futures-channel-0.3.25.bazel b/third_party/cargo/remote/BUILD.futures-channel-0.3.25.bazel
deleted file mode 100644
index de52622..0000000
--- a/third_party/cargo/remote/BUILD.futures-channel-0.3.25.bazel
+++ /dev/null
@@ -1,104 +0,0 @@
-"""
-@generated
-cargo-raze crate build file.
-
-DO NOT EDIT! Replaced on runs of cargo-raze
-"""
-
-# buildifier: disable=load
-load("@bazel_skylib//lib:selects.bzl", "selects")
-
-# buildifier: disable=load
-load(
- "@rules_rust//rust:defs.bzl",
- "rust_binary",
- "rust_library",
- "rust_proc_macro",
- "rust_test",
-)
-
-package(default_visibility = [
- # Public for visibility by "@raze__crate__version//" targets.
- #
- # Prefer access through "//third_party/cargo", which limits external
- # visibility to explicit Cargo.toml dependencies.
- "//visibility:public",
-])
-
-licenses([
- "notice", # MIT from expression "MIT OR Apache-2.0"
-])
-
-# Generated Targets
-# buildifier: disable=out-of-order-load
-# buildifier: disable=load-on-top
-load(
- "@rules_rust//cargo:cargo_build_script.bzl",
- "cargo_build_script",
-)
-
-cargo_build_script(
- name = "futures_channel_build_script",
- srcs = glob(["**/*.rs"]),
- build_script_env = {
- },
- crate_features = [
- "alloc",
- "futures-sink",
- "sink",
- "std",
- ],
- crate_root = "build.rs",
- data = glob(["**"]),
- edition = "2018",
- rustc_flags = [
- "--cap-lints=allow",
- ],
- tags = [
- "cargo-raze",
- "manual",
- ],
- version = "0.3.25",
- visibility = ["//visibility:private"],
- deps = [
- ],
-)
-
-# Unsupported target "sync_mpsc" with type "bench" omitted
-
-rust_library(
- name = "futures_channel",
- srcs = glob(["**/*.rs"]),
- crate_features = [
- "alloc",
- "futures-sink",
- "sink",
- "std",
- ],
- crate_root = "src/lib.rs",
- data = [],
- edition = "2018",
- rustc_flags = [
- "--cap-lints=allow",
- ],
- tags = [
- "cargo-raze",
- "crate-name=futures-channel",
- "manual",
- ],
- version = "0.3.25",
- # buildifier: leave-alone
- deps = [
- ":futures_channel_build_script",
- "@raze__futures_core__0_3_25//:futures_core",
- "@raze__futures_sink__0_3_25//: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
diff --git a/third_party/cargo/remote/BUILD.futures-core-0.3.25.bazel b/third_party/cargo/remote/BUILD.futures-core-0.3.25.bazel
deleted file mode 100644
index f7779e3..0000000
--- a/third_party/cargo/remote/BUILD.futures-core-0.3.25.bazel
+++ /dev/null
@@ -1,88 +0,0 @@
-"""
-@generated
-cargo-raze crate build file.
-
-DO NOT EDIT! Replaced on runs of cargo-raze
-"""
-
-# buildifier: disable=load
-load("@bazel_skylib//lib:selects.bzl", "selects")
-
-# buildifier: disable=load
-load(
- "@rules_rust//rust:defs.bzl",
- "rust_binary",
- "rust_library",
- "rust_proc_macro",
- "rust_test",
-)
-
-package(default_visibility = [
- # Public for visibility by "@raze__crate__version//" targets.
- #
- # Prefer access through "//third_party/cargo", which limits external
- # visibility to explicit Cargo.toml dependencies.
- "//visibility:public",
-])
-
-licenses([
- "notice", # MIT from expression "MIT OR Apache-2.0"
-])
-
-# Generated Targets
-# buildifier: disable=out-of-order-load
-# buildifier: disable=load-on-top
-load(
- "@rules_rust//cargo:cargo_build_script.bzl",
- "cargo_build_script",
-)
-
-cargo_build_script(
- name = "futures_core_build_script",
- srcs = glob(["**/*.rs"]),
- build_script_env = {
- },
- crate_features = [
- "alloc",
- "std",
- ],
- crate_root = "build.rs",
- data = glob(["**"]),
- edition = "2018",
- rustc_flags = [
- "--cap-lints=allow",
- ],
- tags = [
- "cargo-raze",
- "manual",
- ],
- version = "0.3.25",
- visibility = ["//visibility:private"],
- deps = [
- ],
-)
-
-rust_library(
- name = "futures_core",
- srcs = glob(["**/*.rs"]),
- crate_features = [
- "alloc",
- "std",
- ],
- crate_root = "src/lib.rs",
- data = [],
- edition = "2018",
- rustc_flags = [
- "--cap-lints=allow",
- ],
- tags = [
- "cargo-raze",
- "crate-name=futures-core",
- "manual",
- ],
- version = "0.3.25",
- # buildifier: leave-alone
- deps = [
- ":futures_core_build_script",
- ],
-)
diff --git a/third_party/cargo/remote/BUILD.futures-executor-0.3.25.bazel b/third_party/cargo/remote/BUILD.futures-executor-0.3.25.bazel
deleted file mode 100644
index 4f3d527..0000000
--- a/third_party/cargo/remote/BUILD.futures-executor-0.3.25.bazel
+++ /dev/null
@@ -1,62 +0,0 @@
-"""
-@generated
-cargo-raze crate build file.
-
-DO NOT EDIT! Replaced on runs of cargo-raze
-"""
-
-# buildifier: disable=load
-load("@bazel_skylib//lib:selects.bzl", "selects")
-
-# buildifier: disable=load
-load(
- "@rules_rust//rust:defs.bzl",
- "rust_binary",
- "rust_library",
- "rust_proc_macro",
- "rust_test",
-)
-
-package(default_visibility = [
- # Public for visibility by "@raze__crate__version//" targets.
- #
- # Prefer access through "//third_party/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 "thread_notify" with type "bench" omitted
-
-rust_library(
- name = "futures_executor",
- srcs = glob(["**/*.rs"]),
- crate_features = [
- "std",
- ],
- crate_root = "src/lib.rs",
- data = [],
- edition = "2018",
- rustc_flags = [
- "--cap-lints=allow",
- ],
- tags = [
- "cargo-raze",
- "crate-name=futures-executor",
- "manual",
- ],
- version = "0.3.25",
- # buildifier: leave-alone
- deps = [
- "@raze__futures_core__0_3_25//:futures_core",
- "@raze__futures_task__0_3_25//:futures_task",
- "@raze__futures_util__0_3_25//:futures_util",
- ],
-)
-
-# Unsupported target "local_pool" with type "test" omitted
diff --git a/third_party/cargo/remote/BUILD.futures-io-0.3.25.bazel b/third_party/cargo/remote/BUILD.futures-io-0.3.25.bazel
deleted file mode 100644
index 65f2ebe..0000000
--- a/third_party/cargo/remote/BUILD.futures-io-0.3.25.bazel
+++ /dev/null
@@ -1,55 +0,0 @@
-"""
-@generated
-cargo-raze crate build file.
-
-DO NOT EDIT! Replaced on runs of cargo-raze
-"""
-
-# buildifier: disable=load
-load("@bazel_skylib//lib:selects.bzl", "selects")
-
-# buildifier: disable=load
-load(
- "@rules_rust//rust:defs.bzl",
- "rust_binary",
- "rust_library",
- "rust_proc_macro",
- "rust_test",
-)
-
-package(default_visibility = [
- # Public for visibility by "@raze__crate__version//" targets.
- #
- # Prefer access through "//third_party/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 = "futures_io",
- srcs = glob(["**/*.rs"]),
- crate_features = [
- "std",
- ],
- crate_root = "src/lib.rs",
- data = [],
- edition = "2018",
- rustc_flags = [
- "--cap-lints=allow",
- ],
- tags = [
- "cargo-raze",
- "crate-name=futures-io",
- "manual",
- ],
- version = "0.3.25",
- # buildifier: leave-alone
- deps = [
- ],
-)
diff --git a/third_party/cargo/remote/BUILD.futures-macro-0.3.25.bazel b/third_party/cargo/remote/BUILD.futures-macro-0.3.25.bazel
deleted file mode 100644
index 3a4aefc..0000000
--- a/third_party/cargo/remote/BUILD.futures-macro-0.3.25.bazel
+++ /dev/null
@@ -1,57 +0,0 @@
-"""
-@generated
-cargo-raze crate build file.
-
-DO NOT EDIT! Replaced on runs of cargo-raze
-"""
-
-# buildifier: disable=load
-load("@bazel_skylib//lib:selects.bzl", "selects")
-
-# buildifier: disable=load
-load(
- "@rules_rust//rust:defs.bzl",
- "rust_binary",
- "rust_library",
- "rust_proc_macro",
- "rust_test",
-)
-
-package(default_visibility = [
- # Public for visibility by "@raze__crate__version//" targets.
- #
- # Prefer access through "//third_party/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_proc_macro(
- name = "futures_macro",
- srcs = glob(["**/*.rs"]),
- crate_features = [
- ],
- crate_root = "src/lib.rs",
- data = [],
- edition = "2018",
- rustc_flags = [
- "--cap-lints=allow",
- ],
- tags = [
- "cargo-raze",
- "crate-name=futures-macro",
- "manual",
- ],
- version = "0.3.25",
- # buildifier: leave-alone
- deps = [
- "@raze__proc_macro2__1_0_49//:proc_macro2",
- "@raze__quote__1_0_23//:quote",
- "@raze__syn__1_0_107//:syn",
- ],
-)
diff --git a/third_party/cargo/remote/BUILD.futures-sink-0.3.25.bazel b/third_party/cargo/remote/BUILD.futures-sink-0.3.25.bazel
deleted file mode 100644
index 5fa1451..0000000
--- a/third_party/cargo/remote/BUILD.futures-sink-0.3.25.bazel
+++ /dev/null
@@ -1,56 +0,0 @@
-"""
-@generated
-cargo-raze crate build file.
-
-DO NOT EDIT! Replaced on runs of cargo-raze
-"""
-
-# buildifier: disable=load
-load("@bazel_skylib//lib:selects.bzl", "selects")
-
-# buildifier: disable=load
-load(
- "@rules_rust//rust:defs.bzl",
- "rust_binary",
- "rust_library",
- "rust_proc_macro",
- "rust_test",
-)
-
-package(default_visibility = [
- # Public for visibility by "@raze__crate__version//" targets.
- #
- # Prefer access through "//third_party/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 = "futures_sink",
- srcs = glob(["**/*.rs"]),
- crate_features = [
- "alloc",
- "std",
- ],
- crate_root = "src/lib.rs",
- data = [],
- edition = "2018",
- rustc_flags = [
- "--cap-lints=allow",
- ],
- tags = [
- "cargo-raze",
- "crate-name=futures-sink",
- "manual",
- ],
- version = "0.3.25",
- # buildifier: leave-alone
- deps = [
- ],
-)
diff --git a/third_party/cargo/remote/BUILD.futures-task-0.3.25.bazel b/third_party/cargo/remote/BUILD.futures-task-0.3.25.bazel
deleted file mode 100644
index 919a8d7..0000000
--- a/third_party/cargo/remote/BUILD.futures-task-0.3.25.bazel
+++ /dev/null
@@ -1,88 +0,0 @@
-"""
-@generated
-cargo-raze crate build file.
-
-DO NOT EDIT! Replaced on runs of cargo-raze
-"""
-
-# buildifier: disable=load
-load("@bazel_skylib//lib:selects.bzl", "selects")
-
-# buildifier: disable=load
-load(
- "@rules_rust//rust:defs.bzl",
- "rust_binary",
- "rust_library",
- "rust_proc_macro",
- "rust_test",
-)
-
-package(default_visibility = [
- # Public for visibility by "@raze__crate__version//" targets.
- #
- # Prefer access through "//third_party/cargo", which limits external
- # visibility to explicit Cargo.toml dependencies.
- "//visibility:public",
-])
-
-licenses([
- "notice", # MIT from expression "MIT OR Apache-2.0"
-])
-
-# Generated Targets
-# buildifier: disable=out-of-order-load
-# buildifier: disable=load-on-top
-load(
- "@rules_rust//cargo:cargo_build_script.bzl",
- "cargo_build_script",
-)
-
-cargo_build_script(
- name = "futures_task_build_script",
- srcs = glob(["**/*.rs"]),
- build_script_env = {
- },
- crate_features = [
- "alloc",
- "std",
- ],
- crate_root = "build.rs",
- data = glob(["**"]),
- edition = "2018",
- rustc_flags = [
- "--cap-lints=allow",
- ],
- tags = [
- "cargo-raze",
- "manual",
- ],
- version = "0.3.25",
- visibility = ["//visibility:private"],
- deps = [
- ],
-)
-
-rust_library(
- name = "futures_task",
- srcs = glob(["**/*.rs"]),
- crate_features = [
- "alloc",
- "std",
- ],
- crate_root = "src/lib.rs",
- data = [],
- edition = "2018",
- rustc_flags = [
- "--cap-lints=allow",
- ],
- tags = [
- "cargo-raze",
- "crate-name=futures-task",
- "manual",
- ],
- version = "0.3.25",
- # buildifier: leave-alone
- deps = [
- ":futures_task_build_script",
- ],
-)
diff --git a/third_party/cargo/remote/BUILD.futures-util-0.3.25.bazel b/third_party/cargo/remote/BUILD.futures-util-0.3.25.bazel
deleted file mode 100644
index 0f0e1ab..0000000
--- a/third_party/cargo/remote/BUILD.futures-util-0.3.25.bazel
+++ /dev/null
@@ -1,128 +0,0 @@
-"""
-@generated
-cargo-raze crate build file.
-
-DO NOT EDIT! Replaced on runs of cargo-raze
-"""
-
-# buildifier: disable=load
-load("@bazel_skylib//lib:selects.bzl", "selects")
-
-# buildifier: disable=load
-load(
- "@rules_rust//rust:defs.bzl",
- "rust_binary",
- "rust_library",
- "rust_proc_macro",
- "rust_test",
-)
-
-package(default_visibility = [
- # Public for visibility by "@raze__crate__version//" targets.
- #
- # Prefer access through "//third_party/cargo", which limits external
- # visibility to explicit Cargo.toml dependencies.
- "//visibility:public",
-])
-
-licenses([
- "notice", # MIT from expression "MIT OR Apache-2.0"
-])
-
-# Generated Targets
-# buildifier: disable=out-of-order-load
-# buildifier: disable=load-on-top
-load(
- "@rules_rust//cargo:cargo_build_script.bzl",
- "cargo_build_script",
-)
-
-cargo_build_script(
- name = "futures_util_build_script",
- srcs = glob(["**/*.rs"]),
- build_script_env = {
- },
- crate_features = [
- "alloc",
- "async-await",
- "async-await-macro",
- "channel",
- "futures-channel",
- "futures-io",
- "futures-macro",
- "futures-sink",
- "io",
- "memchr",
- "sink",
- "slab",
- "std",
- ],
- crate_root = "build.rs",
- data = glob(["**"]),
- edition = "2018",
- rustc_flags = [
- "--cap-lints=allow",
- ],
- tags = [
- "cargo-raze",
- "manual",
- ],
- version = "0.3.25",
- visibility = ["//visibility:private"],
- deps = [
- ],
-)
-
-# Unsupported target "flatten_unordered" with type "bench" omitted
-
-# Unsupported target "futures_unordered" with type "bench" omitted
-
-# Unsupported target "select" with type "bench" omitted
-
-rust_library(
- name = "futures_util",
- srcs = glob(["**/*.rs"]),
- crate_features = [
- "alloc",
- "async-await",
- "async-await-macro",
- "channel",
- "futures-channel",
- "futures-io",
- "futures-macro",
- "futures-sink",
- "io",
- "memchr",
- "sink",
- "slab",
- "std",
- ],
- crate_root = "src/lib.rs",
- data = [],
- edition = "2018",
- proc_macro_deps = [
- "@raze__futures_macro__0_3_25//:futures_macro",
- ],
- rustc_flags = [
- "--cap-lints=allow",
- ],
- tags = [
- "cargo-raze",
- "crate-name=futures-util",
- "manual",
- ],
- version = "0.3.25",
- # buildifier: leave-alone
- deps = [
- ":futures_util_build_script",
- "@raze__futures_channel__0_3_25//:futures_channel",
- "@raze__futures_core__0_3_25//:futures_core",
- "@raze__futures_io__0_3_25//:futures_io",
- "@raze__futures_sink__0_3_25//:futures_sink",
- "@raze__futures_task__0_3_25//:futures_task",
- "@raze__memchr__2_5_0//:memchr",
- "@raze__pin_project_lite__0_2_9//:pin_project_lite",
- "@raze__pin_utils__0_1_0//:pin_utils",
- "@raze__slab__0_4_7//:slab",
- ],
-)
diff --git a/third_party/cargo/remote/BUILD.getrandom-0.2.8.bazel b/third_party/cargo/remote/BUILD.getrandom-0.2.8.bazel
deleted file mode 100644
index 9b595c4..0000000
--- a/third_party/cargo/remote/BUILD.getrandom-0.2.8.bazel
+++ /dev/null
@@ -1,75 +0,0 @@
-"""
-@generated
-cargo-raze crate build file.
-
-DO NOT EDIT! Replaced on runs of cargo-raze
-"""
-
-# buildifier: disable=load
-load("@bazel_skylib//lib:selects.bzl", "selects")
-
-# buildifier: disable=load
-load(
- "@rules_rust//rust:defs.bzl",
- "rust_binary",
- "rust_library",
- "rust_proc_macro",
- "rust_test",
-)
-
-package(default_visibility = [
- # Public for visibility by "@raze__crate__version//" targets.
- #
- # Prefer access through "//third_party/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 "mod" with type "bench" omitted
-
-rust_library(
- name = "getrandom",
- srcs = glob(["**/*.rs"]),
- aliases = {
- },
- crate_features = [
- ],
- crate_root = "src/lib.rs",
- data = [],
- edition = "2018",
- rustc_flags = [
- "--cap-lints=allow",
- ],
- tags = [
- "cargo-raze",
- "crate-name=getrandom",
- "manual",
- ],
- version = "0.2.8",
- # buildifier: leave-alone
- deps = [
- "@raze__cfg_if__1_0_0//:cfg_if",
- ] + selects.with_or({
- # cfg(unix)
- (
- "@rules_rust//rust/platform:x86_64-unknown-linux-gnu",
- "@rules_rust//rust/platform:arm-unknown-linux-gnueabi",
- "@rules_rust//rust/platform:armv7-unknown-linux-gnueabihf",
- ): [
- "@raze__libc__0_2_138//:libc",
- ],
- "//conditions:default": [],
- }),
-)
-
-# Unsupported target "custom" with type "test" omitted
-
-# Unsupported target "normal" with type "test" omitted
-
-# Unsupported target "rdrand" with type "test" omitted
diff --git a/third_party/cargo/remote/BUILD.gimli-0.27.0.bazel b/third_party/cargo/remote/BUILD.gimli-0.27.0.bazel
deleted file mode 100644
index 401e116..0000000
--- a/third_party/cargo/remote/BUILD.gimli-0.27.0.bazel
+++ /dev/null
@@ -1,70 +0,0 @@
-"""
-@generated
-cargo-raze crate build file.
-
-DO NOT EDIT! Replaced on runs of cargo-raze
-"""
-
-# buildifier: disable=load
-load("@bazel_skylib//lib:selects.bzl", "selects")
-
-# buildifier: disable=load
-load(
- "@rules_rust//rust:defs.bzl",
- "rust_binary",
- "rust_library",
- "rust_proc_macro",
- "rust_test",
-)
-
-package(default_visibility = [
- # Public for visibility by "@raze__crate__version//" targets.
- #
- # Prefer access through "//third_party/cargo", which limits external
- # visibility to explicit Cargo.toml dependencies.
- "//visibility:public",
-])
-
-licenses([
- "notice", # MIT from expression "MIT OR Apache-2.0"
-])
-
-# Generated Targets
-
-# Unsupported target "bench" with type "bench" omitted
-
-# Unsupported target "dwarf-validate" with type "example" omitted
-
-# Unsupported target "dwarfdump" with type "example" omitted
-
-# Unsupported target "simple" with type "example" omitted
-
-# Unsupported target "simple_line" with type "example" omitted
-
-rust_library(
- name = "gimli",
- srcs = glob(["**/*.rs"]),
- crate_features = [
- "read",
- "read-core",
- ],
- crate_root = "src/lib.rs",
- data = [],
- edition = "2018",
- rustc_flags = [
- "--cap-lints=allow",
- ],
- tags = [
- "cargo-raze",
- "crate-name=gimli",
- "manual",
- ],
- version = "0.27.0",
- # buildifier: leave-alone
- deps = [
- ],
-)
-
-# Unsupported target "convert_self" with type "test" omitted
-
-# Unsupported target "parse_self" with type "test" omitted
diff --git a/third_party/cargo/remote/BUILD.glob-0.3.0.bazel b/third_party/cargo/remote/BUILD.glob-0.3.0.bazel
deleted file mode 100644
index 099f6c7..0000000
--- a/third_party/cargo/remote/BUILD.glob-0.3.0.bazel
+++ /dev/null
@@ -1,56 +0,0 @@
-"""
-@generated
-cargo-raze crate build file.
-
-DO NOT EDIT! Replaced on runs of cargo-raze
-"""
-
-# buildifier: disable=load
-load("@bazel_skylib//lib:selects.bzl", "selects")
-
-# buildifier: disable=load
-load(
- "@rules_rust//rust:defs.bzl",
- "rust_binary",
- "rust_library",
- "rust_proc_macro",
- "rust_test",
-)
-
-package(default_visibility = [
- # Public for visibility by "@raze__crate__version//" targets.
- #
- # Prefer access through "//third_party/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 = "glob",
- srcs = glob(["**/*.rs"]),
- crate_features = [
- ],
- crate_root = "src/lib.rs",
- data = [],
- edition = "2015",
- rustc_flags = [
- "--cap-lints=allow",
- ],
- tags = [
- "cargo-raze",
- "crate-name=glob",
- "manual",
- ],
- version = "0.3.0",
- # buildifier: leave-alone
- deps = [
- ],
-)
-
-# Unsupported target "glob-std" with type "test" omitted
diff --git a/third_party/cargo/remote/BUILD.hashbrown-0.12.3.bazel b/third_party/cargo/remote/BUILD.hashbrown-0.12.3.bazel
deleted file mode 100644
index 7532af0..0000000
--- a/third_party/cargo/remote/BUILD.hashbrown-0.12.3.bazel
+++ /dev/null
@@ -1,71 +0,0 @@
-"""
-@generated
-cargo-raze crate build file.
-
-DO NOT EDIT! Replaced on runs of cargo-raze
-"""
-
-# buildifier: disable=load
-load("@bazel_skylib//lib:selects.bzl", "selects")
-
-# buildifier: disable=load
-load(
- "@rules_rust//rust:defs.bzl",
- "rust_binary",
- "rust_library",
- "rust_proc_macro",
- "rust_test",
-)
-
-package(default_visibility = [
- # Public for visibility by "@raze__crate__version//" targets.
- #
- # Prefer access through "//third_party/cargo", which limits external
- # visibility to explicit Cargo.toml dependencies.
- "//visibility:public",
-])
-
-licenses([
- "notice", # MIT from expression "MIT OR Apache-2.0"
-])
-
-# Generated Targets
-
-# Unsupported target "bench" with type "bench" omitted
-
-# Unsupported target "insert_unique_unchecked" with type "bench" omitted
-
-rust_library(
- name = "hashbrown",
- srcs = glob(["**/*.rs"]),
- crate_features = [
- "ahash",
- "default",
- "inline-more",
- "raw",
- ],
- crate_root = "src/lib.rs",
- data = [],
- edition = "2021",
- rustc_flags = [
- "--cap-lints=allow",
- ],
- tags = [
- "cargo-raze",
- "crate-name=hashbrown",
- "manual",
- ],
- version = "0.12.3",
- # buildifier: leave-alone
- deps = [
- "@raze__ahash__0_7_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
diff --git a/third_party/cargo/remote/BUILD.heck-0.4.0.bazel b/third_party/cargo/remote/BUILD.heck-0.4.0.bazel
deleted file mode 100644
index 648dac1..0000000
--- a/third_party/cargo/remote/BUILD.heck-0.4.0.bazel
+++ /dev/null
@@ -1,55 +0,0 @@
-"""
-@generated
-cargo-raze crate build file.
-
-DO NOT EDIT! Replaced on runs of cargo-raze
-"""
-
-# buildifier: disable=load
-load("@bazel_skylib//lib:selects.bzl", "selects")
-
-# buildifier: disable=load
-load(
- "@rules_rust//rust:defs.bzl",
- "rust_binary",
- "rust_library",
- "rust_proc_macro",
- "rust_test",
-)
-
-package(default_visibility = [
- # Public for visibility by "@raze__crate__version//" targets.
- #
- # Prefer access through "//third_party/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 = "heck",
- srcs = glob(["**/*.rs"]),
- crate_features = [
- "default",
- ],
- crate_root = "src/lib.rs",
- data = [],
- edition = "2018",
- rustc_flags = [
- "--cap-lints=allow",
- ],
- tags = [
- "cargo-raze",
- "crate-name=heck",
- "manual",
- ],
- version = "0.4.0",
- # buildifier: leave-alone
- deps = [
- ],
-)
diff --git a/third_party/cargo/remote/BUILD.hermit-abi-0.1.19.bazel b/third_party/cargo/remote/BUILD.hermit-abi-0.1.19.bazel
deleted file mode 100644
index 5b532b4..0000000
--- a/third_party/cargo/remote/BUILD.hermit-abi-0.1.19.bazel
+++ /dev/null
@@ -1,56 +0,0 @@
-"""
-@generated
-cargo-raze crate build file.
-
-DO NOT EDIT! Replaced on runs of cargo-raze
-"""
-
-# buildifier: disable=load
-load("@bazel_skylib//lib:selects.bzl", "selects")
-
-# buildifier: disable=load
-load(
- "@rules_rust//rust:defs.bzl",
- "rust_binary",
- "rust_library",
- "rust_proc_macro",
- "rust_test",
-)
-
-package(default_visibility = [
- # Public for visibility by "@raze__crate__version//" targets.
- #
- # Prefer access through "//third_party/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 = "hermit_abi",
- srcs = glob(["**/*.rs"]),
- crate_features = [
- "default",
- ],
- crate_root = "src/lib.rs",
- data = [],
- edition = "2018",
- rustc_flags = [
- "--cap-lints=allow",
- ],
- tags = [
- "cargo-raze",
- "crate-name=hermit-abi",
- "manual",
- ],
- version = "0.1.19",
- # buildifier: leave-alone
- deps = [
- "@raze__libc__0_2_138//:libc",
- ],
-)
diff --git a/third_party/cargo/remote/BUILD.humantime-2.1.0.bazel b/third_party/cargo/remote/BUILD.humantime-2.1.0.bazel
deleted file mode 100644
index 81c1611..0000000
--- a/third_party/cargo/remote/BUILD.humantime-2.1.0.bazel
+++ /dev/null
@@ -1,58 +0,0 @@
-"""
-@generated
-cargo-raze crate build file.
-
-DO NOT EDIT! Replaced on runs of cargo-raze
-"""
-
-# buildifier: disable=load
-load("@bazel_skylib//lib:selects.bzl", "selects")
-
-# buildifier: disable=load
-load(
- "@rules_rust//rust:defs.bzl",
- "rust_binary",
- "rust_library",
- "rust_proc_macro",
- "rust_test",
-)
-
-package(default_visibility = [
- # Public for visibility by "@raze__crate__version//" targets.
- #
- # Prefer access through "//third_party/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 "datetime_format" with type "bench" omitted
-
-# Unsupported target "datetime_parse" with type "bench" omitted
-
-rust_library(
- name = "humantime",
- srcs = glob(["**/*.rs"]),
- crate_features = [
- ],
- crate_root = "src/lib.rs",
- data = [],
- edition = "2018",
- rustc_flags = [
- "--cap-lints=allow",
- ],
- tags = [
- "cargo-raze",
- "crate-name=humantime",
- "manual",
- ],
- version = "2.1.0",
- # buildifier: leave-alone
- deps = [
- ],
-)
diff --git a/third_party/cargo/remote/BUILD.indexmap-1.9.2.bazel b/third_party/cargo/remote/BUILD.indexmap-1.9.2.bazel
deleted file mode 100644
index 1c0fb92..0000000
--- a/third_party/cargo/remote/BUILD.indexmap-1.9.2.bazel
+++ /dev/null
@@ -1,103 +0,0 @@
-"""
-@generated
-cargo-raze crate build file.
-
-DO NOT EDIT! Replaced on runs of cargo-raze
-"""
-
-# buildifier: disable=load
-load("@bazel_skylib//lib:selects.bzl", "selects")
-
-# buildifier: disable=load
-load(
- "@rules_rust//rust:defs.bzl",
- "rust_binary",
- "rust_library",
- "rust_proc_macro",
- "rust_test",
-)
-
-package(default_visibility = [
- # Public for visibility by "@raze__crate__version//" targets.
- #
- # Prefer access through "//third_party/cargo", which limits external
- # visibility to explicit Cargo.toml dependencies.
- "//visibility:public",
-])
-
-licenses([
- "notice", # Apache-2.0 from expression "Apache-2.0 OR MIT"
-])
-
-# Generated Targets
-# buildifier: disable=out-of-order-load
-# buildifier: disable=load-on-top
-load(
- "@rules_rust//cargo:cargo_build_script.bzl",
- "cargo_build_script",
-)
-
-cargo_build_script(
- name = "indexmap_build_script",
- srcs = glob(["**/*.rs"]),
- build_script_env = {
- },
- crate_features = [
- "serde",
- "std",
- ],
- crate_root = "build.rs",
- data = glob(["**"]),
- edition = "2021",
- rustc_flags = [
- "--cap-lints=allow",
- ],
- tags = [
- "cargo-raze",
- "manual",
- ],
- version = "1.9.2",
- visibility = ["//visibility:private"],
- deps = [
- "@raze__autocfg__1_1_0//:autocfg",
- ],
-)
-
-# Unsupported target "bench" with type "bench" omitted
-
-# Unsupported target "faststring" with type "bench" omitted
-
-rust_library(
- name = "indexmap",
- srcs = glob(["**/*.rs"]),
- crate_features = [
- "serde",
- "std",
- ],
- crate_root = "src/lib.rs",
- data = [],
- edition = "2021",
- rustc_flags = [
- "--cap-lints=allow",
- ],
- tags = [
- "cargo-raze",
- "crate-name=indexmap",
- "manual",
- ],
- version = "1.9.2",
- # buildifier: leave-alone
- deps = [
- ":indexmap_build_script",
- "@raze__hashbrown__0_12_3//:hashbrown",
- "@raze__serde__1_0_151//:serde",
- ],
-)
-
-# Unsupported target "equivalent_trait" with type "test" omitted
-
-# Unsupported target "macros_full_path" with type "test" omitted
-
-# Unsupported target "quick" with type "test" omitted
-
-# Unsupported target "tests" with type "test" omitted
diff --git a/third_party/cargo/remote/BUILD.indoc-1.0.8.bazel b/third_party/cargo/remote/BUILD.indoc-1.0.8.bazel
deleted file mode 100644
index 318ea30..0000000
--- a/third_party/cargo/remote/BUILD.indoc-1.0.8.bazel
+++ /dev/null
@@ -1,64 +0,0 @@
-"""
-@generated
-cargo-raze crate build file.
-
-DO NOT EDIT! Replaced on runs of cargo-raze
-"""
-
-# buildifier: disable=load
-load("@bazel_skylib//lib:selects.bzl", "selects")
-
-# buildifier: disable=load
-load(
- "@rules_rust//rust:defs.bzl",
- "rust_binary",
- "rust_library",
- "rust_proc_macro",
- "rust_test",
-)
-
-package(default_visibility = [
- # Public for visibility by "@raze__crate__version//" targets.
- #
- # Prefer access through "//third_party/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_proc_macro(
- name = "indoc",
- srcs = glob(["**/*.rs"]),
- crate_features = [
- ],
- crate_root = "src/lib.rs",
- data = [],
- edition = "2018",
- rustc_flags = [
- "--cap-lints=allow",
- ],
- tags = [
- "cargo-raze",
- "crate-name=indoc",
- "manual",
- ],
- version = "1.0.8",
- # buildifier: leave-alone
- deps = [
- ],
-)
-
-# Unsupported target "compiletest" with type "test" omitted
-
-# Unsupported target "test_formatdoc" with type "test" omitted
-
-# Unsupported target "test_indoc" with type "test" omitted
-
-# Unsupported target "test_unindent" with type "test" omitted
-
-# Unsupported target "test_writedoc" with type "test" omitted
diff --git a/third_party/cargo/remote/BUILD.instant-0.1.12.bazel b/third_party/cargo/remote/BUILD.instant-0.1.12.bazel
deleted file mode 100644
index ba75588..0000000
--- a/third_party/cargo/remote/BUILD.instant-0.1.12.bazel
+++ /dev/null
@@ -1,57 +0,0 @@
-"""
-@generated
-cargo-raze crate build file.
-
-DO NOT EDIT! Replaced on runs of cargo-raze
-"""
-
-# buildifier: disable=load
-load("@bazel_skylib//lib:selects.bzl", "selects")
-
-# buildifier: disable=load
-load(
- "@rules_rust//rust:defs.bzl",
- "rust_binary",
- "rust_library",
- "rust_proc_macro",
- "rust_test",
-)
-
-package(default_visibility = [
- # Public for visibility by "@raze__crate__version//" targets.
- #
- # Prefer access through "//third_party/cargo", which limits external
- # visibility to explicit Cargo.toml dependencies.
- "//visibility:public",
-])
-
-licenses([
- "notice", # BSD-3-Clause from expression "BSD-3-Clause"
-])
-
-# Generated Targets
-
-rust_library(
- name = "instant",
- srcs = glob(["**/*.rs"]),
- crate_features = [
- ],
- crate_root = "src/lib.rs",
- data = [],
- edition = "2018",
- rustc_flags = [
- "--cap-lints=allow",
- ],
- tags = [
- "cargo-raze",
- "crate-name=instant",
- "manual",
- ],
- version = "0.1.12",
- # buildifier: leave-alone
- deps = [
- "@raze__cfg_if__1_0_0//:cfg_if",
- ],
-)
-
-# Unsupported target "wasm" with type "test" omitted
diff --git a/third_party/cargo/remote/BUILD.is_ci-1.1.1.bazel b/third_party/cargo/remote/BUILD.is_ci-1.1.1.bazel
deleted file mode 100644
index 98d0d81..0000000
--- a/third_party/cargo/remote/BUILD.is_ci-1.1.1.bazel
+++ /dev/null
@@ -1,54 +0,0 @@
-"""
-@generated
-cargo-raze crate build file.
-
-DO NOT EDIT! Replaced on runs of cargo-raze
-"""
-
-# buildifier: disable=load
-load("@bazel_skylib//lib:selects.bzl", "selects")
-
-# buildifier: disable=load
-load(
- "@rules_rust//rust:defs.bzl",
- "rust_binary",
- "rust_library",
- "rust_proc_macro",
- "rust_test",
-)
-
-package(default_visibility = [
- # Public for visibility by "@raze__crate__version//" targets.
- #
- # Prefer access through "//third_party/cargo", which limits external
- # visibility to explicit Cargo.toml dependencies.
- "//visibility:public",
-])
-
-licenses([
- "notice", # ISC from expression "ISC"
-])
-
-# Generated Targets
-
-rust_library(
- name = "is_ci",
- srcs = glob(["**/*.rs"]),
- crate_features = [
- ],
- crate_root = "src/lib.rs",
- data = [],
- edition = "2018",
- rustc_flags = [
- "--cap-lints=allow",
- ],
- tags = [
- "cargo-raze",
- "crate-name=is_ci",
- "manual",
- ],
- version = "1.1.1",
- # buildifier: leave-alone
- deps = [
- ],
-)
diff --git a/third_party/cargo/remote/BUILD.itertools-0.10.5.bazel b/third_party/cargo/remote/BUILD.itertools-0.10.5.bazel
deleted file mode 100644
index 980682d..0000000
--- a/third_party/cargo/remote/BUILD.itertools-0.10.5.bazel
+++ /dev/null
@@ -1,98 +0,0 @@
-"""
-@generated
-cargo-raze crate build file.
-
-DO NOT EDIT! Replaced on runs of cargo-raze
-"""
-
-# buildifier: disable=load
-load("@bazel_skylib//lib:selects.bzl", "selects")
-
-# buildifier: disable=load
-load(
- "@rules_rust//rust:defs.bzl",
- "rust_binary",
- "rust_library",
- "rust_proc_macro",
- "rust_test",
-)
-
-package(default_visibility = [
- # Public for visibility by "@raze__crate__version//" targets.
- #
- # Prefer access through "//third_party/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 "bench1" with type "bench" omitted
-
-# Unsupported target "combinations" with type "bench" omitted
-
-# Unsupported target "combinations_with_replacement" with type "bench" omitted
-
-# Unsupported target "fold_specialization" with type "bench" omitted
-
-# Unsupported target "powerset" with type "bench" omitted
-
-# Unsupported target "tree_fold1" with type "bench" omitted
-
-# Unsupported target "tuple_combinations" with type "bench" omitted
-
-# Unsupported target "tuples" with type "bench" omitted
-
-# Unsupported target "iris" with type "example" omitted
-
-rust_library(
- name = "itertools",
- srcs = glob(["**/*.rs"]),
- crate_features = [
- "default",
- "use_alloc",
- "use_std",
- ],
- crate_root = "src/lib.rs",
- data = [],
- edition = "2018",
- rustc_flags = [
- "--cap-lints=allow",
- ],
- tags = [
- "cargo-raze",
- "crate-name=itertools",
- "manual",
- ],
- version = "0.10.5",
- # buildifier: leave-alone
- deps = [
- "@raze__either__1_8_0//:either",
- ],
-)
-
-# Unsupported target "adaptors_no_collect" with type "test" omitted
-
-# Unsupported target "flatten_ok" with type "test" omitted
-
-# Unsupported target "macros_hygiene" with type "test" omitted
-
-# Unsupported target "merge_join" with type "test" omitted
-
-# Unsupported target "peeking_take_while" with type "test" omitted
-
-# Unsupported target "quick" with type "test" omitted
-
-# Unsupported target "specializations" with type "test" omitted
-
-# Unsupported target "test_core" with type "test" omitted
-
-# Unsupported target "test_std" with type "test" omitted
-
-# Unsupported target "tuples" with type "test" omitted
-
-# Unsupported target "zip" with type "test" omitted
diff --git a/third_party/cargo/remote/BUILD.itertools-0.9.0.bazel b/third_party/cargo/remote/BUILD.itertools-0.9.0.bazel
deleted file mode 100644
index 6895a62..0000000
--- a/third_party/cargo/remote/BUILD.itertools-0.9.0.bazel
+++ /dev/null
@@ -1,91 +0,0 @@
-"""
-@generated
-cargo-raze crate build file.
-
-DO NOT EDIT! Replaced on runs of cargo-raze
-"""
-
-# buildifier: disable=load
-load("@bazel_skylib//lib:selects.bzl", "selects")
-
-# buildifier: disable=load
-load(
- "@rules_rust//rust:defs.bzl",
- "rust_binary",
- "rust_library",
- "rust_proc_macro",
- "rust_test",
-)
-
-package(default_visibility = [
- # Public for visibility by "@raze__crate__version//" targets.
- #
- # Prefer access through "//third_party/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 "bench1" with type "bench" omitted
-
-# Unsupported target "combinations_with_replacement" with type "bench" omitted
-
-# Unsupported target "fold_specialization" with type "bench" omitted
-
-# Unsupported target "tree_fold1" with type "bench" omitted
-
-# Unsupported target "tuple_combinations" with type "bench" omitted
-
-# Unsupported target "tuples" with type "bench" omitted
-
-# Unsupported target "iris" with type "example" omitted
-
-rust_library(
- name = "itertools",
- srcs = glob(["**/*.rs"]),
- crate_features = [
- "default",
- "use_std",
- ],
- crate_root = "src/lib.rs",
- data = [],
- edition = "2018",
- rustc_flags = [
- "--cap-lints=allow",
- ],
- tags = [
- "cargo-raze",
- "crate-name=itertools",
- "manual",
- ],
- version = "0.9.0",
- # buildifier: leave-alone
- deps = [
- "@raze__either__1_8_0//:either",
- ],
-)
-
-# Unsupported target "adaptors_no_collect" with type "test" omitted
-
-# Unsupported target "fold_specialization" with type "test" omitted
-
-# Unsupported target "merge_join" with type "test" omitted
-
-# Unsupported target "peeking_take_while" with type "test" omitted
-
-# Unsupported target "quick" with type "test" omitted
-
-# Unsupported target "specializations" with type "test" omitted
-
-# Unsupported target "test_core" with type "test" omitted
-
-# Unsupported target "test_std" with type "test" omitted
-
-# Unsupported target "tuples" with type "test" omitted
-
-# Unsupported target "zip" with type "test" omitted
diff --git a/third_party/cargo/remote/BUILD.itoa-1.0.5.bazel b/third_party/cargo/remote/BUILD.itoa-1.0.5.bazel
deleted file mode 100644
index a9d1458..0000000
--- a/third_party/cargo/remote/BUILD.itoa-1.0.5.bazel
+++ /dev/null
@@ -1,58 +0,0 @@
-"""
-@generated
-cargo-raze crate build file.
-
-DO NOT EDIT! Replaced on runs of cargo-raze
-"""
-
-# buildifier: disable=load
-load("@bazel_skylib//lib:selects.bzl", "selects")
-
-# buildifier: disable=load
-load(
- "@rules_rust//rust:defs.bzl",
- "rust_binary",
- "rust_library",
- "rust_proc_macro",
- "rust_test",
-)
-
-package(default_visibility = [
- # Public for visibility by "@raze__crate__version//" targets.
- #
- # Prefer access through "//third_party/cargo", which limits external
- # visibility to explicit Cargo.toml dependencies.
- "//visibility:public",
-])
-
-licenses([
- "notice", # MIT from expression "MIT OR Apache-2.0"
-])
-
-# Generated Targets
-
-# Unsupported target "bench" with type "bench" omitted
-
-rust_library(
- name = "itoa",
- srcs = glob(["**/*.rs"]),
- crate_features = [
- ],
- crate_root = "src/lib.rs",
- data = [],
- edition = "2018",
- rustc_flags = [
- "--cap-lints=allow",
- ],
- tags = [
- "cargo-raze",
- "crate-name=itoa",
- "manual",
- ],
- version = "1.0.5",
- # buildifier: leave-alone
- deps = [
- ],
-)
-
-# Unsupported target "test" with type "test" omitted
diff --git a/third_party/cargo/remote/BUILD.lazy_static-1.4.0.bazel b/third_party/cargo/remote/BUILD.lazy_static-1.4.0.bazel
deleted file mode 100644
index a70bb41..0000000
--- a/third_party/cargo/remote/BUILD.lazy_static-1.4.0.bazel
+++ /dev/null
@@ -1,58 +0,0 @@
-"""
-@generated
-cargo-raze crate build file.
-
-DO NOT EDIT! Replaced on runs of cargo-raze
-"""
-
-# buildifier: disable=load
-load("@bazel_skylib//lib:selects.bzl", "selects")
-
-# buildifier: disable=load
-load(
- "@rules_rust//rust:defs.bzl",
- "rust_binary",
- "rust_library",
- "rust_proc_macro",
- "rust_test",
-)
-
-package(default_visibility = [
- # Public for visibility by "@raze__crate__version//" targets.
- #
- # Prefer access through "//third_party/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 = "lazy_static",
- srcs = glob(["**/*.rs"]),
- crate_features = [
- ],
- crate_root = "src/lib.rs",
- data = [],
- edition = "2015",
- rustc_flags = [
- "--cap-lints=allow",
- ],
- tags = [
- "cargo-raze",
- "crate-name=lazy_static",
- "manual",
- ],
- version = "1.4.0",
- # buildifier: leave-alone
- deps = [
- ],
-)
-
-# Unsupported target "no_std" with type "test" omitted
-
-# Unsupported target "test" with type "test" omitted
diff --git a/third_party/cargo/remote/BUILD.lazycell-1.3.0.bazel b/third_party/cargo/remote/BUILD.lazycell-1.3.0.bazel
deleted file mode 100644
index dfb23d9..0000000
--- a/third_party/cargo/remote/BUILD.lazycell-1.3.0.bazel
+++ /dev/null
@@ -1,54 +0,0 @@
-"""
-@generated
-cargo-raze crate build file.
-
-DO NOT EDIT! Replaced on runs of cargo-raze
-"""
-
-# buildifier: disable=load
-load("@bazel_skylib//lib:selects.bzl", "selects")
-
-# buildifier: disable=load
-load(
- "@rules_rust//rust:defs.bzl",
- "rust_binary",
- "rust_library",
- "rust_proc_macro",
- "rust_test",
-)
-
-package(default_visibility = [
- # Public for visibility by "@raze__crate__version//" targets.
- #
- # Prefer access through "//third_party/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 = "lazycell",
- srcs = glob(["**/*.rs"]),
- crate_features = [
- ],
- crate_root = "src/lib.rs",
- data = [],
- edition = "2015",
- rustc_flags = [
- "--cap-lints=allow",
- ],
- tags = [
- "cargo-raze",
- "crate-name=lazycell",
- "manual",
- ],
- version = "1.3.0",
- # buildifier: leave-alone
- deps = [
- ],
-)
diff --git a/third_party/cargo/remote/BUILD.libc-0.2.138.bazel b/third_party/cargo/remote/BUILD.libc-0.2.138.bazel
deleted file mode 100644
index a7c7830..0000000
--- a/third_party/cargo/remote/BUILD.libc-0.2.138.bazel
+++ /dev/null
@@ -1,90 +0,0 @@
-"""
-@generated
-cargo-raze crate build file.
-
-DO NOT EDIT! Replaced on runs of cargo-raze
-"""
-
-# buildifier: disable=load
-load("@bazel_skylib//lib:selects.bzl", "selects")
-
-# buildifier: disable=load
-load(
- "@rules_rust//rust:defs.bzl",
- "rust_binary",
- "rust_library",
- "rust_proc_macro",
- "rust_test",
-)
-
-package(default_visibility = [
- # Public for visibility by "@raze__crate__version//" targets.
- #
- # Prefer access through "//third_party/cargo", which limits external
- # visibility to explicit Cargo.toml dependencies.
- "//visibility:public",
-])
-
-licenses([
- "notice", # MIT from expression "MIT OR Apache-2.0"
-])
-
-# Generated Targets
-# buildifier: disable=out-of-order-load
-# buildifier: disable=load-on-top
-load(
- "@rules_rust//cargo:cargo_build_script.bzl",
- "cargo_build_script",
-)
-
-cargo_build_script(
- name = "libc_build_script",
- srcs = glob(["**/*.rs"]),
- build_script_env = {
- },
- crate_features = [
- "default",
- "std",
- ],
- crate_root = "build.rs",
- data = glob(["**"]),
- edition = "2015",
- rustc_flags = [
- "--cap-lints=allow",
- ],
- tags = [
- "cargo-raze",
- "manual",
- ],
- version = "0.2.138",
- visibility = ["//visibility:private"],
- deps = [
- ],
-)
-
-rust_library(
- name = "libc",
- srcs = glob(["**/*.rs"]),
- crate_features = [
- "default",
- "std",
- ],
- crate_root = "src/lib.rs",
- data = [],
- edition = "2015",
- rustc_flags = [
- "--cap-lints=allow",
- ],
- tags = [
- "cargo-raze",
- "crate-name=libc",
- "manual",
- ],
- version = "0.2.138",
- # buildifier: leave-alone
- deps = [
- ":libc_build_script",
- ],
-)
-
-# Unsupported target "const_fn" with type "test" omitted
diff --git a/third_party/cargo/remote/BUILD.libloading-0.6.3.bazel b/third_party/cargo/remote/BUILD.libloading-0.6.3.bazel
deleted file mode 100644
index 837227d..0000000
--- a/third_party/cargo/remote/BUILD.libloading-0.6.3.bazel
+++ /dev/null
@@ -1,115 +0,0 @@
-"""
-@generated
-cargo-raze crate build file.
-
-DO NOT EDIT! Replaced on runs of cargo-raze
-"""
-
-# buildifier: disable=load
-load("@bazel_skylib//lib:selects.bzl", "selects")
-
-# buildifier: disable=load
-load(
- "@rules_rust//rust:defs.bzl",
- "rust_binary",
- "rust_library",
- "rust_proc_macro",
- "rust_test",
-)
-
-package(default_visibility = [
- # Public for visibility by "@raze__crate__version//" targets.
- #
- # Prefer access through "//third_party/cargo", which limits external
- # visibility to explicit Cargo.toml dependencies.
- "//visibility:public",
-])
-
-licenses([
- "notice", # ISC from expression "ISC"
-])
-
-# Generated Targets
-# buildifier: disable=out-of-order-load
-# buildifier: disable=load-on-top
-load(
- "@rules_rust//cargo:cargo_build_script.bzl",
- "cargo_build_script",
-)
-
-cargo_build_script(
- name = "libloading_build_script",
- srcs = glob(["**/*.rs"]),
- build_script_env = {
- },
- crate_features = [
- ],
- crate_root = "build.rs",
- data = glob(["**"]),
- edition = "2015",
- rustc_flags = [
- "--cap-lints=allow",
- ],
- tags = [
- "cargo-raze",
- "manual",
- ],
- version = "0.6.3",
- visibility = ["//visibility:private"],
- deps = [
- ] + selects.with_or({
- # cfg(unix)
- (
- "@rules_rust//rust/platform:x86_64-unknown-linux-gnu",
- "@rules_rust//rust/platform:arm-unknown-linux-gnueabi",
- "@rules_rust//rust/platform:armv7-unknown-linux-gnueabihf",
- ): [
- ],
- "//conditions:default": [],
- }),
-)
-
-rust_library(
- name = "libloading",
- srcs = glob(["**/*.rs"]),
- aliases = {
- },
- crate_features = [
- ],
- crate_root = "src/lib.rs",
- data = [],
- edition = "2015",
- rustc_flags = [
- "--cap-lints=allow",
- ],
- tags = [
- "cargo-raze",
- "crate-name=libloading",
- "manual",
- ],
- version = "0.6.3",
- # buildifier: leave-alone
- deps = [
- ":libloading_build_script",
- ] + selects.with_or({
- # cfg(unix)
- (
- "@rules_rust//rust/platform:x86_64-unknown-linux-gnu",
- "@rules_rust//rust/platform:arm-unknown-linux-gnueabi",
- "@rules_rust//rust/platform:armv7-unknown-linux-gnueabihf",
- ): [
- "@raze__cfg_if__0_1_10//:cfg_if",
- ],
- "//conditions:default": [],
- }),
-)
-
-# Unsupported target "constants" with type "test" omitted
-
-# Unsupported target "functions" with type "test" omitted
-
-# Unsupported target "library_filename" with type "test" omitted
-
-# Unsupported target "markers" with type "test" omitted
-
-# Unsupported target "windows" with type "test" omitted
diff --git a/third_party/cargo/remote/BUILD.libloading-0.7.4.bazel b/third_party/cargo/remote/BUILD.libloading-0.7.4.bazel
deleted file mode 100644
index cfc6760..0000000
--- a/third_party/cargo/remote/BUILD.libloading-0.7.4.bazel
+++ /dev/null
@@ -1,76 +0,0 @@
-"""
-@generated
-cargo-raze crate build file.
-
-DO NOT EDIT! Replaced on runs of cargo-raze
-"""
-
-# buildifier: disable=load
-load("@bazel_skylib//lib:selects.bzl", "selects")
-
-# buildifier: disable=load
-load(
- "@rules_rust//rust:defs.bzl",
- "rust_binary",
- "rust_library",
- "rust_proc_macro",
- "rust_test",
-)
-
-package(default_visibility = [
- # Public for visibility by "@raze__crate__version//" targets.
- #
- # Prefer access through "//third_party/cargo", which limits external
- # visibility to explicit Cargo.toml dependencies.
- "//visibility:public",
-])
-
-licenses([
- "notice", # ISC from expression "ISC"
-])
-
-# Generated Targets
-
-rust_library(
- name = "libloading",
- srcs = glob(["**/*.rs"]),
- aliases = {
- },
- crate_features = [
- ],
- crate_root = "src/lib.rs",
- data = [],
- edition = "2015",
- rustc_flags = [
- "--cap-lints=allow",
- ],
- tags = [
- "cargo-raze",
- "crate-name=libloading",
- "manual",
- ],
- version = "0.7.4",
- # buildifier: leave-alone
- deps = [
- ] + selects.with_or({
- # cfg(unix)
- (
- "@rules_rust//rust/platform:x86_64-unknown-linux-gnu",
- "@rules_rust//rust/platform:arm-unknown-linux-gnueabi",
- "@rules_rust//rust/platform:armv7-unknown-linux-gnueabihf",
- ): [
- "@raze__cfg_if__1_0_0//:cfg_if",
- ],
- "//conditions:default": [],
- }),
-)
-
-# Unsupported target "constants" with type "test" omitted
-
-# Unsupported target "functions" with type "test" omitted
-
-# Unsupported target "library_filename" with type "test" omitted
-
-# Unsupported target "markers" with type "test" omitted
-
-# Unsupported target "windows" with type "test" omitted
diff --git a/third_party/cargo/remote/BUILD.link-cplusplus-1.0.8.bazel b/third_party/cargo/remote/BUILD.link-cplusplus-1.0.8.bazel
deleted file mode 100644
index f19d5fc..0000000
--- a/third_party/cargo/remote/BUILD.link-cplusplus-1.0.8.bazel
+++ /dev/null
@@ -1,90 +0,0 @@
-"""
-@generated
-cargo-raze crate build file.
-
-DO NOT EDIT! Replaced on runs of cargo-raze
-"""
-
-# buildifier: disable=load
-load("@bazel_skylib//lib:selects.bzl", "selects")
-
-# buildifier: disable=load
-load(
- "@rules_rust//rust:defs.bzl",
- "rust_binary",
- "rust_library",
- "rust_proc_macro",
- "rust_test",
-)
-
-package(default_visibility = [
- # Public for visibility by "@raze__crate__version//" targets.
- #
- # Prefer access through "//third_party/cargo", which limits external
- # visibility to explicit Cargo.toml dependencies.
- "//visibility:public",
-])
-
-licenses([
- "notice", # MIT from expression "MIT OR Apache-2.0"
-])
-
-# Generated Targets
-# buildifier: disable=out-of-order-load
-# buildifier: disable=load-on-top
-load(
- "@rules_rust//cargo:cargo_build_script.bzl",
- "cargo_build_script",
-)
-
-cargo_build_script(
- name = "link_cplusplus_build_script",
- srcs = glob(["**/*.rs"]),
- build_script_env = {
- },
- crate_features = [
- "default",
- "nothing",
- ],
- crate_root = "build.rs",
- data = glob(["**"]),
- edition = "2018",
- links = "cplusplus",
- rustc_flags = [
- "--cap-lints=allow",
- ],
- tags = [
- "cargo-raze",
- "manual",
- ],
- version = "1.0.8",
- visibility = ["//visibility:private"],
- deps = [
- "@raze__cc__1_0_78//:cc",
- ],
-)
-
-rust_library(
- name = "link_cplusplus",
- srcs = glob(["**/*.rs"]),
- crate_features = [
- "default",
- "nothing",
- ],
- crate_root = "src/lib.rs",
- data = [],
- edition = "2018",
- rustc_flags = [
- "--cap-lints=allow",
- ],
- tags = [
- "cargo-raze",
- "crate-name=link-cplusplus",
- "manual",
- ],
- version = "1.0.8",
- # buildifier: leave-alone
- deps = [
- ":link_cplusplus_build_script",
- ],
-)
diff --git a/third_party/cargo/remote/BUILD.log-0.4.17.bazel b/third_party/cargo/remote/BUILD.log-0.4.17.bazel
deleted file mode 100644
index 56612ea..0000000
--- a/third_party/cargo/remote/BUILD.log-0.4.17.bazel
+++ /dev/null
@@ -1,95 +0,0 @@
-"""
-@generated
-cargo-raze crate build file.
-
-DO NOT EDIT! Replaced on runs of cargo-raze
-"""
-
-# buildifier: disable=load
-load("@bazel_skylib//lib:selects.bzl", "selects")
-
-# buildifier: disable=load
-load(
- "@rules_rust//rust:defs.bzl",
- "rust_binary",
- "rust_library",
- "rust_proc_macro",
- "rust_test",
-)
-
-package(default_visibility = [
- # Public for visibility by "@raze__crate__version//" targets.
- #
- # Prefer access through "//third_party/cargo", which limits external
- # visibility to explicit Cargo.toml dependencies.
- "//visibility:public",
-])
-
-licenses([
- "notice", # MIT from expression "MIT OR Apache-2.0"
-])
-
-# Generated Targets
-# buildifier: disable=out-of-order-load
-# buildifier: disable=load-on-top
-load(
- "@rules_rust//cargo:cargo_build_script.bzl",
- "cargo_build_script",
-)
-
-cargo_build_script(
- name = "log_build_script",
- srcs = glob(["**/*.rs"]),
- build_script_env = {
- },
- crate_features = [
- "std",
- ],
- crate_root = "build.rs",
- data = glob(["**"]),
- edition = "2015",
- rustc_flags = [
- "--cap-lints=allow",
- "--cfg=atomic_cas",
- ],
- tags = [
- "cargo-raze",
- "manual",
- ],
- version = "0.4.17",
- visibility = ["//visibility:private"],
- deps = [
- ],
-)
-
-# Unsupported target "value" with type "bench" omitted
-
-rust_library(
- name = "log",
- srcs = glob(["**/*.rs"]),
- crate_features = [
- "std",
- ],
- crate_root = "src/lib.rs",
- data = [],
- edition = "2015",
- rustc_flags = [
- "--cap-lints=allow",
- "--cfg=atomic_cas",
- ],
- tags = [
- "cargo-raze",
- "crate-name=log",
- "manual",
- ],
- version = "0.4.17",
- # buildifier: leave-alone
- deps = [
- ":log_build_script",
- "@raze__cfg_if__1_0_0//:cfg_if",
- ],
-)
-
-# Unsupported target "filters" with type "test" omitted
-
-# Unsupported target "macros" with type "test" omitted
diff --git a/third_party/cargo/remote/BUILD.memchr-2.5.0.bazel b/third_party/cargo/remote/BUILD.memchr-2.5.0.bazel
deleted file mode 100644
index 09173b7..0000000
--- a/third_party/cargo/remote/BUILD.memchr-2.5.0.bazel
+++ /dev/null
@@ -1,90 +0,0 @@
-"""
-@generated
-cargo-raze crate build file.
-
-DO NOT EDIT! Replaced on runs of cargo-raze
-"""
-
-# buildifier: disable=load
-load("@bazel_skylib//lib:selects.bzl", "selects")
-
-# buildifier: disable=load
-load(
- "@rules_rust//rust:defs.bzl",
- "rust_binary",
- "rust_library",
- "rust_proc_macro",
- "rust_test",
-)
-
-package(default_visibility = [
- # Public for visibility by "@raze__crate__version//" targets.
- #
- # Prefer access through "//third_party/cargo", which limits external
- # visibility to explicit Cargo.toml dependencies.
- "//visibility:public",
-])
-
-licenses([
- "unencumbered", # Unlicense from expression "Unlicense OR MIT"
-])
-
-# Generated Targets
-# buildifier: disable=out-of-order-load
-# buildifier: disable=load-on-top
-load(
- "@rules_rust//cargo:cargo_build_script.bzl",
- "cargo_build_script",
-)
-
-cargo_build_script(
- name = "memchr_build_script",
- srcs = glob(["**/*.rs"]),
- build_script_env = {
- },
- crate_features = [
- "default",
- "std",
- "use_std",
- ],
- crate_root = "build.rs",
- data = glob(["**"]),
- edition = "2018",
- rustc_flags = [
- "--cap-lints=allow",
- ],
- tags = [
- "cargo-raze",
- "manual",
- ],
- version = "2.5.0",
- visibility = ["//visibility:private"],
- deps = [
- ],
-)
-
-rust_library(
- name = "memchr",
- srcs = glob(["**/*.rs"]),
- crate_features = [
- "default",
- "std",
- "use_std",
- ],
- crate_root = "src/lib.rs",
- data = [],
- edition = "2018",
- rustc_flags = [
- "--cap-lints=allow",
- ],
- tags = [
- "cargo-raze",
- "crate-name=memchr",
- "manual",
- ],
- version = "2.5.0",
- # buildifier: leave-alone
- deps = [
- ":memchr_build_script",
- ],
-)
diff --git a/third_party/cargo/remote/BUILD.miette-4.7.1.bazel b/third_party/cargo/remote/BUILD.miette-4.7.1.bazel
deleted file mode 100644
index 2ef789e..0000000
--- a/third_party/cargo/remote/BUILD.miette-4.7.1.bazel
+++ /dev/null
@@ -1,79 +0,0 @@
-"""
-@generated
-cargo-raze crate build file.
-
-DO NOT EDIT! Replaced on runs of cargo-raze
-"""
-
-# buildifier: disable=load
-load("@bazel_skylib//lib:selects.bzl", "selects")
-
-# buildifier: disable=load
-load(
- "@rules_rust//rust:defs.bzl",
- "rust_binary",
- "rust_library",
- "rust_proc_macro",
- "rust_test",
-)
-
-package(default_visibility = [
- # Public for visibility by "@raze__crate__version//" targets.
- #
- # Prefer access through "//third_party/cargo", which limits external
- # visibility to explicit Cargo.toml dependencies.
- "//visibility:public",
-])
-
-licenses([
- "notice", # Apache-2.0 from expression "Apache-2.0"
-])
-
-# Generated Targets
-
-rust_library(
- name = "miette",
- srcs = glob(["**/*.rs"]),
- crate_features = [
- "atty",
- "backtrace",
- "default",
- "fancy",
- "fancy-no-backtrace",
- "owo-colors",
- "supports-color",
- "supports-hyperlinks",
- "supports-unicode",
- "terminal_size",
- "textwrap",
- ],
- crate_root = "src/lib.rs",
- data = [],
- edition = "2018",
- proc_macro_deps = [
- "@raze__miette_derive__4_7_1//:miette_derive",
- ],
- rustc_flags = [
- "--cap-lints=allow",
- ],
- tags = [
- "cargo-raze",
- "crate-name=miette",
- "manual",
- ],
- version = "4.7.1",
- # buildifier: leave-alone
- deps = [
- "@raze__atty__0_2_14//:atty",
- "@raze__backtrace__0_3_67//:backtrace",
- "@raze__once_cell__1_16_0//:once_cell",
- "@raze__owo_colors__3_5_0//:owo_colors",
- "@raze__supports_color__1_3_1//:supports_color",
- "@raze__supports_hyperlinks__1_2_0//:supports_hyperlinks",
- "@raze__supports_unicode__1_0_2//:supports_unicode",
- "@raze__terminal_size__0_1_17//:terminal_size",
- "@raze__textwrap__0_15_2//:textwrap",
- "@raze__thiserror__1_0_38//:thiserror",
- "@raze__unicode_width__0_1_10//:unicode_width",
- ],
-)
diff --git a/third_party/cargo/remote/BUILD.miette-derive-4.7.1.bazel b/third_party/cargo/remote/BUILD.miette-derive-4.7.1.bazel
deleted file mode 100644
index a6689b9..0000000
--- a/third_party/cargo/remote/BUILD.miette-derive-4.7.1.bazel
+++ /dev/null
@@ -1,57 +0,0 @@
-"""
-@generated
-cargo-raze crate build file.
-
-DO NOT EDIT! Replaced on runs of cargo-raze
-"""
-
-# buildifier: disable=load
-load("@bazel_skylib//lib:selects.bzl", "selects")
-
-# buildifier: disable=load
-load(
- "@rules_rust//rust:defs.bzl",
- "rust_binary",
- "rust_library",
- "rust_proc_macro",
- "rust_test",
-)
-
-package(default_visibility = [
- # Public for visibility by "@raze__crate__version//" targets.
- #
- # Prefer access through "//third_party/cargo", which limits external
- # visibility to explicit Cargo.toml dependencies.
- "//visibility:public",
-])
-
-licenses([
- "notice", # Apache-2.0 from expression "Apache-2.0"
-])
-
-# Generated Targets
-
-rust_proc_macro(
- name = "miette_derive",
- srcs = glob(["**/*.rs"]),
- crate_features = [
- ],
- crate_root = "src/lib.rs",
- data = [],
- edition = "2018",
- rustc_flags = [
- "--cap-lints=allow",
- ],
- tags = [
- "cargo-raze",
- "crate-name=miette-derive",
- "manual",
- ],
- version = "4.7.1",
- # buildifier: leave-alone
- deps = [
- "@raze__proc_macro2__1_0_49//:proc_macro2",
- "@raze__quote__1_0_23//:quote",
- "@raze__syn__1_0_107//:syn",
- ],
-)
diff --git a/third_party/cargo/remote/BUILD.minimal-lexical-0.2.1.bazel b/third_party/cargo/remote/BUILD.minimal-lexical-0.2.1.bazel
deleted file mode 100644
index 924de28..0000000
--- a/third_party/cargo/remote/BUILD.minimal-lexical-0.2.1.bazel
+++ /dev/null
@@ -1,79 +0,0 @@
-"""
-@generated
-cargo-raze crate build file.
-
-DO NOT EDIT! Replaced on runs of cargo-raze
-"""
-
-# buildifier: disable=load
-load("@bazel_skylib//lib:selects.bzl", "selects")
-
-# buildifier: disable=load
-load(
- "@rules_rust//rust:defs.bzl",
- "rust_binary",
- "rust_library",
- "rust_proc_macro",
- "rust_test",
-)
-
-package(default_visibility = [
- # Public for visibility by "@raze__crate__version//" targets.
- #
- # Prefer access through "//third_party/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 = "minimal_lexical",
- srcs = glob(["**/*.rs"]),
- crate_features = [
- "std",
- ],
- crate_root = "src/lib.rs",
- data = [],
- edition = "2018",
- rustc_flags = [
- "--cap-lints=allow",
- ],
- tags = [
- "cargo-raze",
- "crate-name=minimal-lexical",
- "manual",
- ],
- version = "0.2.1",
- # buildifier: leave-alone
- deps = [
- ],
-)
-
-# Unsupported target "bellerophon" with type "test" omitted
-
-# Unsupported target "bellerophon_tests" with type "test" omitted
-
-# Unsupported target "integration_tests" with type "test" omitted
-
-# Unsupported target "lemire_tests" with type "test" omitted
-
-# Unsupported target "libm_tests" with type "test" omitted
-
-# Unsupported target "mask_tests" with type "test" omitted
-
-# Unsupported target "number_tests" with type "test" omitted
-
-# Unsupported target "parse_tests" with type "test" omitted
-
-# Unsupported target "rounding_tests" with type "test" omitted
-
-# Unsupported target "slow_tests" with type "test" omitted
-
-# Unsupported target "stackvec" with type "test" omitted
-
-# Unsupported target "vec_tests" with type "test" omitted
diff --git a/third_party/cargo/remote/BUILD.miniz_oxide-0.6.2.bazel b/third_party/cargo/remote/BUILD.miniz_oxide-0.6.2.bazel
deleted file mode 100644
index 5e61703..0000000
--- a/third_party/cargo/remote/BUILD.miniz_oxide-0.6.2.bazel
+++ /dev/null
@@ -1,55 +0,0 @@
-"""
-@generated
-cargo-raze crate build file.
-
-DO NOT EDIT! Replaced on runs of cargo-raze
-"""
-
-# buildifier: disable=load
-load("@bazel_skylib//lib:selects.bzl", "selects")
-
-# buildifier: disable=load
-load(
- "@rules_rust//rust:defs.bzl",
- "rust_binary",
- "rust_library",
- "rust_proc_macro",
- "rust_test",
-)
-
-package(default_visibility = [
- # Public for visibility by "@raze__crate__version//" targets.
- #
- # Prefer access through "//third_party/cargo", which limits external
- # visibility to explicit Cargo.toml dependencies.
- "//visibility:public",
-])
-
-licenses([
- "notice", # MIT from expression "MIT OR (Zlib OR Apache-2.0)"
-])
-
-# Generated Targets
-
-rust_library(
- name = "miniz_oxide",
- srcs = glob(["**/*.rs"]),
- crate_features = [
- ],
- crate_root = "src/lib.rs",
- data = [],
- edition = "2018",
- rustc_flags = [
- "--cap-lints=allow",
- ],
- tags = [
- "cargo-raze",
- "crate-name=miniz_oxide",
- "manual",
- ],
- version = "0.6.2",
- # buildifier: leave-alone
- deps = [
- "@raze__adler__1_0_2//:adler",
- ],
-)
diff --git a/third_party/cargo/remote/BUILD.moveit-0.5.1.bazel b/third_party/cargo/remote/BUILD.moveit-0.5.1.bazel
deleted file mode 100644
index 5645c15..0000000
--- a/third_party/cargo/remote/BUILD.moveit-0.5.1.bazel
+++ /dev/null
@@ -1,58 +0,0 @@
-"""
-@generated
-cargo-raze crate build file.
-
-DO NOT EDIT! Replaced on runs of cargo-raze
-"""
-
-# buildifier: disable=load
-load("@bazel_skylib//lib:selects.bzl", "selects")
-
-# buildifier: disable=load
-load(
- "@rules_rust//rust:defs.bzl",
- "rust_binary",
- "rust_library",
- "rust_proc_macro",
- "rust_test",
-)
-
-package(default_visibility = [
- # Public for visibility by "@raze__crate__version//" targets.
- #
- # Prefer access through "//third_party/cargo", which limits external
- # visibility to explicit Cargo.toml dependencies.
- "//visibility:public",
-])
-
-licenses([
- "notice", # Apache-2.0 from expression "Apache-2.0 OR MIT"
-])
-
-# Generated Targets
-
-rust_library(
- name = "moveit",
- srcs = glob(["**/*.rs"]),
- crate_features = [
- "alloc",
- "cxx",
- "default",
- ],
- crate_root = "src/lib.rs",
- data = [],
- edition = "2018",
- rustc_flags = [
- "--cap-lints=allow",
- ],
- tags = [
- "cargo-raze",
- "crate-name=moveit",
- "manual",
- ],
- version = "0.5.1",
- # buildifier: leave-alone
- deps = [
- "@raze__cxx__1_0_85//:cxx",
- ],
-)
diff --git a/third_party/cargo/remote/BUILD.nom-5.1.2.bazel b/third_party/cargo/remote/BUILD.nom-5.1.2.bazel
deleted file mode 100644
index baa775f..0000000
--- a/third_party/cargo/remote/BUILD.nom-5.1.2.bazel
+++ /dev/null
@@ -1,144 +0,0 @@
-"""
-@generated
-cargo-raze crate build file.
-
-DO NOT EDIT! Replaced on runs of cargo-raze
-"""
-
-# buildifier: disable=load
-load("@bazel_skylib//lib:selects.bzl", "selects")
-
-# buildifier: disable=load
-load(
- "@rules_rust//rust:defs.bzl",
- "rust_binary",
- "rust_library",
- "rust_proc_macro",
- "rust_test",
-)
-
-package(default_visibility = [
- # Public for visibility by "@raze__crate__version//" targets.
- #
- # Prefer access through "//third_party/cargo", which limits external
- # visibility to explicit Cargo.toml dependencies.
- "//visibility:public",
-])
-
-licenses([
- "notice", # MIT from expression "MIT"
-])
-
-# Generated Targets
-# buildifier: disable=out-of-order-load
-# buildifier: disable=load-on-top
-load(
- "@rules_rust//cargo:cargo_build_script.bzl",
- "cargo_build_script",
-)
-
-cargo_build_script(
- name = "nom_build_script",
- srcs = glob(["**/*.rs"]),
- build_script_env = {
- },
- crate_features = [
- "alloc",
- "std",
- ],
- crate_root = "build.rs",
- data = glob(["**"]),
- edition = "2018",
- rustc_flags = [
- "--cap-lints=allow",
- ],
- tags = [
- "cargo-raze",
- "manual",
- ],
- version = "5.1.2",
- visibility = ["//visibility:private"],
- deps = [
- "@raze__version_check__0_9_4//:version_check",
- ],
-)
-
-# Unsupported target "arithmetic" with type "bench" omitted
-
-# Unsupported target "http" with type "bench" omitted
-
-# Unsupported target "ini" with type "bench" omitted
-
-# Unsupported target "ini_complete" with type "bench" omitted
-
-# Unsupported target "ini_str" with type "bench" omitted
-
-# Unsupported target "json" with type "bench" omitted
-
-# Unsupported target "json" with type "example" omitted
-
-# Unsupported target "s_expression" with type "example" omitted
-
-# Unsupported target "string" with type "example" omitted
-
-rust_library(
- name = "nom",
- srcs = glob(["**/*.rs"]),
- crate_features = [
- "alloc",
- "std",
- ],
- crate_root = "src/lib.rs",
- data = [],
- edition = "2018",
- rustc_flags = [
- "--cap-lints=allow",
- ],
- tags = [
- "cargo-raze",
- "crate-name=nom",
- "manual",
- ],
- version = "5.1.2",
- # buildifier: leave-alone
- deps = [
- ":nom_build_script",
- "@raze__memchr__2_5_0//:memchr",
- ],
-)
-
-# Unsupported target "arithmetic" with type "test" omitted
-
-# Unsupported target "arithmetic_ast" with type "test" omitted
-
-# Unsupported target "blockbuf-arithmetic" with type "test" omitted
-
-# Unsupported target "css" with type "test" omitted
-
-# Unsupported target "custom_errors" with type "test" omitted
-
-# Unsupported target "escaped" with type "test" omitted
-
-# Unsupported target "float" with type "test" omitted
-
-# Unsupported target "inference" with type "test" omitted
-
-# Unsupported target "ini" with type "test" omitted
-
-# Unsupported target "ini_str" with type "test" omitted
-
-# Unsupported target "issues" with type "test" omitted
-
-# Unsupported target "json" with type "test" omitted
-
-# Unsupported target "mp4" with type "test" omitted
-
-# Unsupported target "multiline" with type "test" omitted
-
-# Unsupported target "named_args" with type "test" omitted
-
-# Unsupported target "overflow" with type "test" omitted
-
-# Unsupported target "reborrow_fold" with type "test" omitted
-
-# Unsupported target "test1" with type "test" omitted
diff --git a/third_party/cargo/remote/BUILD.nom-7.1.1.bazel b/third_party/cargo/remote/BUILD.nom-7.1.1.bazel
deleted file mode 100644
index 26fd8ef..0000000
--- a/third_party/cargo/remote/BUILD.nom-7.1.1.bazel
+++ /dev/null
@@ -1,96 +0,0 @@
-"""
-@generated
-cargo-raze crate build file.
-
-DO NOT EDIT! Replaced on runs of cargo-raze
-"""
-
-# buildifier: disable=load
-load("@bazel_skylib//lib:selects.bzl", "selects")
-
-# buildifier: disable=load
-load(
- "@rules_rust//rust:defs.bzl",
- "rust_binary",
- "rust_library",
- "rust_proc_macro",
- "rust_test",
-)
-
-package(default_visibility = [
- # Public for visibility by "@raze__crate__version//" targets.
- #
- # Prefer access through "//third_party/cargo", which limits external
- # visibility to explicit Cargo.toml dependencies.
- "//visibility:public",
-])
-
-licenses([
- "notice", # MIT from expression "MIT"
-])
-
-# Generated Targets
-
-# Unsupported target "iterator" with type "example" omitted
-
-# Unsupported target "json" with type "example" omitted
-
-# Unsupported target "s_expression" with type "example" omitted
-
-# Unsupported target "string" with type "example" omitted
-
-rust_library(
- name = "nom",
- srcs = glob(["**/*.rs"]),
- crate_features = [
- "alloc",
- "std",
- ],
- crate_root = "src/lib.rs",
- data = [],
- edition = "2018",
- rustc_flags = [
- "--cap-lints=allow",
- ],
- tags = [
- "cargo-raze",
- "crate-name=nom",
- "manual",
- ],
- version = "7.1.1",
- # buildifier: leave-alone
- deps = [
- "@raze__memchr__2_5_0//:memchr",
- "@raze__minimal_lexical__0_2_1//:minimal_lexical",
- ],
-)
-
-# Unsupported target "arithmetic" with type "test" omitted
-
-# Unsupported target "arithmetic_ast" with type "test" omitted
-
-# Unsupported target "css" with type "test" omitted
-
-# Unsupported target "custom_errors" with type "test" omitted
-
-# Unsupported target "escaped" with type "test" omitted
-
-# Unsupported target "float" with type "test" omitted
-
-# Unsupported target "fnmut" with type "test" omitted
-
-# Unsupported target "ini" with type "test" omitted
-
-# Unsupported target "ini_str" with type "test" omitted
-
-# Unsupported target "issues" with type "test" omitted
-
-# Unsupported target "json" with type "test" omitted
-
-# Unsupported target "mp4" with type "test" omitted
-
-# Unsupported target "multiline" with type "test" omitted
-
-# Unsupported target "overflow" with type "test" omitted
-
-# Unsupported target "reborrow_fold" with type "test" omitted
diff --git a/third_party/cargo/remote/BUILD.object-0.30.0.bazel b/third_party/cargo/remote/BUILD.object-0.30.0.bazel
deleted file mode 100644
index ff630a4..0000000
--- a/third_party/cargo/remote/BUILD.object-0.30.0.bazel
+++ /dev/null
@@ -1,66 +0,0 @@
-"""
-@generated
-cargo-raze crate build file.
-
-DO NOT EDIT! Replaced on runs of cargo-raze
-"""
-
-# buildifier: disable=load
-load("@bazel_skylib//lib:selects.bzl", "selects")
-
-# buildifier: disable=load
-load(
- "@rules_rust//rust:defs.bzl",
- "rust_binary",
- "rust_library",
- "rust_proc_macro",
- "rust_test",
-)
-
-package(default_visibility = [
- # Public for visibility by "@raze__crate__version//" targets.
- #
- # Prefer access through "//third_party/cargo", which limits external
- # visibility to explicit Cargo.toml dependencies.
- "//visibility:public",
-])
-
-licenses([
- "notice", # Apache-2.0 from expression "Apache-2.0 OR MIT"
-])
-
-# Generated Targets
-
-rust_library(
- name = "object",
- srcs = glob(["**/*.rs"]),
- crate_features = [
- "archive",
- "coff",
- "elf",
- "macho",
- "pe",
- "read_core",
- "unaligned",
- ],
- crate_root = "src/lib.rs",
- data = [],
- edition = "2018",
- rustc_flags = [
- "--cap-lints=allow",
- ],
- tags = [
- "cargo-raze",
- "crate-name=object",
- "manual",
- ],
- version = "0.30.0",
- # buildifier: leave-alone
- deps = [
- "@raze__memchr__2_5_0//:memchr",
- ],
-)
-
-# Unsupported target "integration" with type "test" omitted
-
-# Unsupported target "parse_self" with type "test" omitted
diff --git a/third_party/cargo/remote/BUILD.once_cell-1.16.0.bazel b/third_party/cargo/remote/BUILD.once_cell-1.16.0.bazel
deleted file mode 100644
index d3961ff..0000000
--- a/third_party/cargo/remote/BUILD.once_cell-1.16.0.bazel
+++ /dev/null
@@ -1,74 +0,0 @@
-"""
-@generated
-cargo-raze crate build file.
-
-DO NOT EDIT! Replaced on runs of cargo-raze
-"""
-
-# buildifier: disable=load
-load("@bazel_skylib//lib:selects.bzl", "selects")
-
-# buildifier: disable=load
-load(
- "@rules_rust//rust:defs.bzl",
- "rust_binary",
- "rust_library",
- "rust_proc_macro",
- "rust_test",
-)
-
-package(default_visibility = [
- # Public for visibility by "@raze__crate__version//" targets.
- #
- # Prefer access through "//third_party/cargo", which limits external
- # visibility to explicit Cargo.toml dependencies.
- "//visibility:public",
-])
-
-licenses([
- "notice", # MIT from expression "MIT OR Apache-2.0"
-])
-
-# Generated Targets
-
-# Unsupported target "bench" with type "example" omitted
-
-# Unsupported target "bench_acquire" with type "example" omitted
-
-# Unsupported target "bench_vs_lazy_static" with type "example" omitted
-
-# Unsupported target "lazy_static" with type "example" omitted
-
-# Unsupported target "reentrant_init_deadlocks" with type "example" omitted
-
-# Unsupported target "regex" with type "example" omitted
-
-# Unsupported target "test_synchronization" with type "example" omitted
-
-rust_library(
- name = "once_cell",
- srcs = glob(["**/*.rs"]),
- crate_features = [
- "alloc",
- "default",
- "race",
- "std",
- ],
- crate_root = "src/lib.rs",
- data = [],
- edition = "2021",
- rustc_flags = [
- "--cap-lints=allow",
- ],
- tags = [
- "cargo-raze",
- "crate-name=once_cell",
- "manual",
- ],
- version = "1.16.0",
- # buildifier: leave-alone
- deps = [
- ],
-)
-
-# Unsupported target "it" with type "test" omitted
diff --git a/third_party/cargo/remote/BUILD.os_str_bytes-6.4.1.bazel b/third_party/cargo/remote/BUILD.os_str_bytes-6.4.1.bazel
deleted file mode 100644
index 9aad342..0000000
--- a/third_party/cargo/remote/BUILD.os_str_bytes-6.4.1.bazel
+++ /dev/null
@@ -1,55 +0,0 @@
-"""
-@generated
-cargo-raze crate build file.
-
-DO NOT EDIT! Replaced on runs of cargo-raze
-"""
-
-# buildifier: disable=load
-load("@bazel_skylib//lib:selects.bzl", "selects")
-
-# buildifier: disable=load
-load(
- "@rules_rust//rust:defs.bzl",
- "rust_binary",
- "rust_library",
- "rust_proc_macro",
- "rust_test",
-)
-
-package(default_visibility = [
- # Public for visibility by "@raze__crate__version//" targets.
- #
- # Prefer access through "//third_party/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 = "os_str_bytes",
- srcs = glob(["**/*.rs"]),
- crate_features = [
- "raw_os_str",
- ],
- crate_root = "src/lib.rs",
- data = [],
- edition = "2021",
- rustc_flags = [
- "--cap-lints=allow",
- ],
- tags = [
- "cargo-raze",
- "crate-name=os_str_bytes",
- "manual",
- ],
- version = "6.4.1",
- # buildifier: leave-alone
- deps = [
- ],
-)
diff --git a/third_party/cargo/remote/BUILD.owo-colors-3.5.0.bazel b/third_party/cargo/remote/BUILD.owo-colors-3.5.0.bazel
deleted file mode 100644
index 8a7ac04..0000000
--- a/third_party/cargo/remote/BUILD.owo-colors-3.5.0.bazel
+++ /dev/null
@@ -1,70 +0,0 @@
-"""
-@generated
-cargo-raze crate build file.
-
-DO NOT EDIT! Replaced on runs of cargo-raze
-"""
-
-# buildifier: disable=load
-load("@bazel_skylib//lib:selects.bzl", "selects")
-
-# buildifier: disable=load
-load(
- "@rules_rust//rust:defs.bzl",
- "rust_binary",
- "rust_library",
- "rust_proc_macro",
- "rust_test",
-)
-
-package(default_visibility = [
- # Public for visibility by "@raze__crate__version//" targets.
- #
- # Prefer access through "//third_party/cargo", which limits external
- # visibility to explicit Cargo.toml dependencies.
- "//visibility:public",
-])
-
-licenses([
- "notice", # MIT from expression "MIT"
-])
-
-# Generated Targets
-
-# Unsupported target "all_xterm_colors" with type "example" omitted
-
-# Unsupported target "banner" with type "example" omitted
-
-# Unsupported target "colors" with type "example" omitted
-
-# Unsupported target "custom_colors" with type "example" omitted
-
-# Unsupported target "dyn_colors" with type "example" omitted
-
-# Unsupported target "extra_colors" with type "example" omitted
-
-# Unsupported target "override" with type "example" omitted
-
-# Unsupported target "supports_color" with type "example" omitted
-
-rust_library(
- name = "owo_colors",
- srcs = glob(["**/*.rs"]),
- crate_features = [
- ],
- crate_root = "src/lib.rs",
- data = [],
- edition = "2018",
- rustc_flags = [
- "--cap-lints=allow",
- ],
- tags = [
- "cargo-raze",
- "crate-name=owo-colors",
- "manual",
- ],
- version = "3.5.0",
- # buildifier: leave-alone
- deps = [
- ],
-)
diff --git a/third_party/cargo/remote/BUILD.pathdiff-0.2.1.bazel b/third_party/cargo/remote/BUILD.pathdiff-0.2.1.bazel
deleted file mode 100644
index da1ca3f..0000000
--- a/third_party/cargo/remote/BUILD.pathdiff-0.2.1.bazel
+++ /dev/null
@@ -1,54 +0,0 @@
-"""
-@generated
-cargo-raze crate build file.
-
-DO NOT EDIT! Replaced on runs of cargo-raze
-"""
-
-# buildifier: disable=load
-load("@bazel_skylib//lib:selects.bzl", "selects")
-
-# buildifier: disable=load
-load(
- "@rules_rust//rust:defs.bzl",
- "rust_binary",
- "rust_library",
- "rust_proc_macro",
- "rust_test",
-)
-
-package(default_visibility = [
- # Public for visibility by "@raze__crate__version//" targets.
- #
- # Prefer access through "//third_party/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 = "pathdiff",
- srcs = glob(["**/*.rs"]),
- crate_features = [
- ],
- crate_root = "src/lib.rs",
- data = [],
- edition = "2018",
- rustc_flags = [
- "--cap-lints=allow",
- ],
- tags = [
- "cargo-raze",
- "crate-name=pathdiff",
- "manual",
- ],
- version = "0.2.1",
- # buildifier: leave-alone
- deps = [
- ],
-)
diff --git a/third_party/cargo/remote/BUILD.peeking_take_while-0.1.2.bazel b/third_party/cargo/remote/BUILD.peeking_take_while-0.1.2.bazel
deleted file mode 100644
index 93ef8b9..0000000
--- a/third_party/cargo/remote/BUILD.peeking_take_while-0.1.2.bazel
+++ /dev/null
@@ -1,54 +0,0 @@
-"""
-@generated
-cargo-raze crate build file.
-
-DO NOT EDIT! Replaced on runs of cargo-raze
-"""
-
-# buildifier: disable=load
-load("@bazel_skylib//lib:selects.bzl", "selects")
-
-# buildifier: disable=load
-load(
- "@rules_rust//rust:defs.bzl",
- "rust_binary",
- "rust_library",
- "rust_proc_macro",
- "rust_test",
-)
-
-package(default_visibility = [
- # Public for visibility by "@raze__crate__version//" targets.
- #
- # Prefer access through "//third_party/cargo", which limits external
- # visibility to explicit Cargo.toml dependencies.
- "//visibility:public",
-])
-
-licenses([
- "notice", # Apache-2.0 from expression "Apache-2.0 OR MIT"
-])
-
-# Generated Targets
-
-rust_library(
- name = "peeking_take_while",
- srcs = glob(["**/*.rs"]),
- crate_features = [
- ],
- crate_root = "src/lib.rs",
- data = [],
- edition = "2015",
- rustc_flags = [
- "--cap-lints=allow",
- ],
- tags = [
- "cargo-raze",
- "crate-name=peeking_take_while",
- "manual",
- ],
- version = "0.1.2",
- # buildifier: leave-alone
- deps = [
- ],
-)
diff --git a/third_party/cargo/remote/BUILD.pin-project-lite-0.2.9.bazel b/third_party/cargo/remote/BUILD.pin-project-lite-0.2.9.bazel
deleted file mode 100644
index 4a952bc..0000000
--- a/third_party/cargo/remote/BUILD.pin-project-lite-0.2.9.bazel
+++ /dev/null
@@ -1,66 +0,0 @@
-"""
-@generated
-cargo-raze crate build file.
-
-DO NOT EDIT! Replaced on runs of cargo-raze
-"""
-
-# buildifier: disable=load
-load("@bazel_skylib//lib:selects.bzl", "selects")
-
-# buildifier: disable=load
-load(
- "@rules_rust//rust:defs.bzl",
- "rust_binary",
- "rust_library",
- "rust_proc_macro",
- "rust_test",
-)
-
-package(default_visibility = [
- # Public for visibility by "@raze__crate__version//" targets.
- #
- # Prefer access through "//third_party/cargo", which limits external
- # visibility to explicit Cargo.toml dependencies.
- "//visibility:public",
-])
-
-licenses([
- "notice", # Apache-2.0 from expression "Apache-2.0 OR MIT"
-])
-
-# Generated Targets
-
-rust_library(
- name = "pin_project_lite",
- srcs = glob(["**/*.rs"]),
- crate_features = [
- ],
- crate_root = "src/lib.rs",
- data = [],
- edition = "2018",
- rustc_flags = [
- "--cap-lints=allow",
- ],
- tags = [
- "cargo-raze",
- "crate-name=pin-project-lite",
- "manual",
- ],
- version = "0.2.9",
- # buildifier: leave-alone
- deps = [
- ],
-)
-
-# Unsupported target "compiletest" with type "test" omitted
-
-# Unsupported target "drop_order" with type "test" omitted
-
-# Unsupported target "expandtest" with type "test" omitted
-
-# Unsupported target "lint" with type "test" omitted
-
-# Unsupported target "proper_unpin" with type "test" omitted
-
-# Unsupported target "test" with type "test" omitted
diff --git a/third_party/cargo/remote/BUILD.pin-utils-0.1.0.bazel b/third_party/cargo/remote/BUILD.pin-utils-0.1.0.bazel
deleted file mode 100644
index f3852e0..0000000
--- a/third_party/cargo/remote/BUILD.pin-utils-0.1.0.bazel
+++ /dev/null
@@ -1,58 +0,0 @@
-"""
-@generated
-cargo-raze crate build file.
-
-DO NOT EDIT! Replaced on runs of cargo-raze
-"""
-
-# buildifier: disable=load
-load("@bazel_skylib//lib:selects.bzl", "selects")
-
-# buildifier: disable=load
-load(
- "@rules_rust//rust:defs.bzl",
- "rust_binary",
- "rust_library",
- "rust_proc_macro",
- "rust_test",
-)
-
-package(default_visibility = [
- # Public for visibility by "@raze__crate__version//" targets.
- #
- # Prefer access through "//third_party/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 = "pin_utils",
- srcs = glob(["**/*.rs"]),
- crate_features = [
- ],
- crate_root = "src/lib.rs",
- data = [],
- edition = "2018",
- rustc_flags = [
- "--cap-lints=allow",
- ],
- tags = [
- "cargo-raze",
- "crate-name=pin-utils",
- "manual",
- ],
- version = "0.1.0",
- # buildifier: leave-alone
- deps = [
- ],
-)
-
-# Unsupported target "projection" with type "test" omitted
-
-# Unsupported target "stack_pin" with type "test" omitted
diff --git a/third_party/cargo/remote/BUILD.predicates-2.1.1.bazel b/third_party/cargo/remote/BUILD.predicates-2.1.1.bazel
deleted file mode 100644
index 23bd17a..0000000
--- a/third_party/cargo/remote/BUILD.predicates-2.1.1.bazel
+++ /dev/null
@@ -1,61 +0,0 @@
-"""
-@generated
-cargo-raze crate build file.
-
-DO NOT EDIT! Replaced on runs of cargo-raze
-"""
-
-# buildifier: disable=load
-load("@bazel_skylib//lib:selects.bzl", "selects")
-
-# buildifier: disable=load
-load(
- "@rules_rust//rust:defs.bzl",
- "rust_binary",
- "rust_library",
- "rust_proc_macro",
- "rust_test",
-)
-
-package(default_visibility = [
- # Public for visibility by "@raze__crate__version//" targets.
- #
- # Prefer access through "//third_party/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 "case_tree" with type "example" omitted
-
-rust_library(
- name = "predicates",
- srcs = glob(["**/*.rs"]),
- crate_features = [
- "diff",
- "difflib",
- ],
- crate_root = "src/lib.rs",
- data = [],
- edition = "2018",
- rustc_flags = [
- "--cap-lints=allow",
- ],
- tags = [
- "cargo-raze",
- "crate-name=predicates",
- "manual",
- ],
- version = "2.1.1",
- # buildifier: leave-alone
- deps = [
- "@raze__difflib__0_4_0//:difflib",
- "@raze__itertools__0_10_5//:itertools",
- "@raze__predicates_core__1_0_5//:predicates_core",
- ],
-)
diff --git a/third_party/cargo/remote/BUILD.predicates-core-1.0.5.bazel b/third_party/cargo/remote/BUILD.predicates-core-1.0.5.bazel
deleted file mode 100644
index 442eb14..0000000
--- a/third_party/cargo/remote/BUILD.predicates-core-1.0.5.bazel
+++ /dev/null
@@ -1,54 +0,0 @@
-"""
-@generated
-cargo-raze crate build file.
-
-DO NOT EDIT! Replaced on runs of cargo-raze
-"""
-
-# buildifier: disable=load
-load("@bazel_skylib//lib:selects.bzl", "selects")
-
-# buildifier: disable=load
-load(
- "@rules_rust//rust:defs.bzl",
- "rust_binary",
- "rust_library",
- "rust_proc_macro",
- "rust_test",
-)
-
-package(default_visibility = [
- # Public for visibility by "@raze__crate__version//" targets.
- #
- # Prefer access through "//third_party/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 = "predicates_core",
- srcs = glob(["**/*.rs"]),
- crate_features = [
- ],
- crate_root = "src/lib.rs",
- data = [],
- edition = "2021",
- rustc_flags = [
- "--cap-lints=allow",
- ],
- tags = [
- "cargo-raze",
- "crate-name=predicates-core",
- "manual",
- ],
- version = "1.0.5",
- # buildifier: leave-alone
- deps = [
- ],
-)
diff --git a/third_party/cargo/remote/BUILD.predicates-tree-1.0.7.bazel b/third_party/cargo/remote/BUILD.predicates-tree-1.0.7.bazel
deleted file mode 100644
index e7ecbcf..0000000
--- a/third_party/cargo/remote/BUILD.predicates-tree-1.0.7.bazel
+++ /dev/null
@@ -1,58 +0,0 @@
-"""
-@generated
-cargo-raze crate build file.
-
-DO NOT EDIT! Replaced on runs of cargo-raze
-"""
-
-# buildifier: disable=load
-load("@bazel_skylib//lib:selects.bzl", "selects")
-
-# buildifier: disable=load
-load(
- "@rules_rust//rust:defs.bzl",
- "rust_binary",
- "rust_library",
- "rust_proc_macro",
- "rust_test",
-)
-
-package(default_visibility = [
- # Public for visibility by "@raze__crate__version//" targets.
- #
- # Prefer access through "//third_party/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 "failures" with type "example" omitted
-
-rust_library(
- name = "predicates_tree",
- srcs = glob(["**/*.rs"]),
- crate_features = [
- ],
- crate_root = "src/lib.rs",
- data = [],
- edition = "2021",
- rustc_flags = [
- "--cap-lints=allow",
- ],
- tags = [
- "cargo-raze",
- "crate-name=predicates-tree",
- "manual",
- ],
- version = "1.0.7",
- # buildifier: leave-alone
- deps = [
- "@raze__predicates_core__1_0_5//:predicates_core",
- "@raze__termtree__0_4_0//:termtree",
- ],
-)
diff --git a/third_party/cargo/remote/BUILD.proc-macro-error-1.0.4.bazel b/third_party/cargo/remote/BUILD.proc-macro-error-1.0.4.bazel
deleted file mode 100644
index 2a0ad18..0000000
--- a/third_party/cargo/remote/BUILD.proc-macro-error-1.0.4.bazel
+++ /dev/null
@@ -1,103 +0,0 @@
-"""
-@generated
-cargo-raze crate build file.
-
-DO NOT EDIT! Replaced on runs of cargo-raze
-"""
-
-# buildifier: disable=load
-load("@bazel_skylib//lib:selects.bzl", "selects")
-
-# buildifier: disable=load
-load(
- "@rules_rust//rust:defs.bzl",
- "rust_binary",
- "rust_library",
- "rust_proc_macro",
- "rust_test",
-)
-
-package(default_visibility = [
- # Public for visibility by "@raze__crate__version//" targets.
- #
- # Prefer access through "//third_party/cargo", which limits external
- # visibility to explicit Cargo.toml dependencies.
- "//visibility:public",
-])
-
-licenses([
- "notice", # MIT from expression "MIT OR Apache-2.0"
-])
-
-# Generated Targets
-# buildifier: disable=out-of-order-load
-# buildifier: disable=load-on-top
-load(
- "@rules_rust//cargo:cargo_build_script.bzl",
- "cargo_build_script",
-)
-
-cargo_build_script(
- name = "proc_macro_error_build_script",
- srcs = glob(["**/*.rs"]),
- build_script_env = {
- },
- crate_features = [
- "default",
- "syn",
- "syn-error",
- ],
- crate_root = "build.rs",
- data = glob(["**"]),
- edition = "2018",
- rustc_flags = [
- "--cap-lints=allow",
- ],
- tags = [
- "cargo-raze",
- "manual",
- ],
- version = "1.0.4",
- visibility = ["//visibility:private"],
- deps = [
- "@raze__version_check__0_9_4//:version_check",
- ],
-)
-
-rust_library(
- name = "proc_macro_error",
- srcs = glob(["**/*.rs"]),
- crate_features = [
- "default",
- "syn",
- "syn-error",
- ],
- crate_root = "src/lib.rs",
- data = [],
- edition = "2018",
- proc_macro_deps = [
- "@raze__proc_macro_error_attr__1_0_4//:proc_macro_error_attr",
- ],
- rustc_flags = [
- "--cap-lints=allow",
- ],
- tags = [
- "cargo-raze",
- "crate-name=proc-macro-error",
- "manual",
- ],
- version = "1.0.4",
- # buildifier: leave-alone
- deps = [
- ":proc_macro_error_build_script",
- "@raze__proc_macro2__1_0_49//:proc_macro2",
- "@raze__quote__1_0_23//:quote",
- "@raze__syn__1_0_107//:syn",
- ],
-)
-
-# Unsupported target "macro-errors" with type "test" omitted
-
-# Unsupported target "ok" with type "test" omitted
-
-# Unsupported target "runtime-errors" with type "test" omitted
diff --git a/third_party/cargo/remote/BUILD.proc-macro-error-attr-1.0.4.bazel b/third_party/cargo/remote/BUILD.proc-macro-error-attr-1.0.4.bazel
deleted file mode 100644
index 67d51f8..0000000
--- a/third_party/cargo/remote/BUILD.proc-macro-error-attr-1.0.4.bazel
+++ /dev/null
@@ -1,87 +0,0 @@
-"""
-@generated
-cargo-raze crate build file.
-
-DO NOT EDIT! Replaced on runs of cargo-raze
-"""
-
-# buildifier: disable=load
-load("@bazel_skylib//lib:selects.bzl", "selects")
-
-# buildifier: disable=load
-load(
- "@rules_rust//rust:defs.bzl",
- "rust_binary",
- "rust_library",
- "rust_proc_macro",
- "rust_test",
-)
-
-package(default_visibility = [
- # Public for visibility by "@raze__crate__version//" targets.
- #
- # Prefer access through "//third_party/cargo", which limits external
- # visibility to explicit Cargo.toml dependencies.
- "//visibility:public",
-])
-
-licenses([
- "notice", # MIT from expression "MIT OR Apache-2.0"
-])
-
-# Generated Targets
-# buildifier: disable=out-of-order-load
-# buildifier: disable=load-on-top
-load(
- "@rules_rust//cargo:cargo_build_script.bzl",
- "cargo_build_script",
-)
-
-cargo_build_script(
- name = "proc_macro_error_attr_build_script",
- srcs = glob(["**/*.rs"]),
- build_script_env = {
- },
- crate_features = [
- ],
- crate_root = "build.rs",
- data = glob(["**"]),
- edition = "2018",
- rustc_flags = [
- "--cap-lints=allow",
- ],
- tags = [
- "cargo-raze",
- "manual",
- ],
- version = "1.0.4",
- visibility = ["//visibility:private"],
- deps = [
- "@raze__version_check__0_9_4//:version_check",
- ],
-)
-
-rust_proc_macro(
- name = "proc_macro_error_attr",
- srcs = glob(["**/*.rs"]),
- crate_features = [
- ],
- crate_root = "src/lib.rs",
- data = [],
- edition = "2018",
- rustc_flags = [
- "--cap-lints=allow",
- ],
- tags = [
- "cargo-raze",
- "crate-name=proc-macro-error-attr",
- "manual",
- ],
- version = "1.0.4",
- # buildifier: leave-alone
- deps = [
- ":proc_macro_error_attr_build_script",
- "@raze__proc_macro2__1_0_49//:proc_macro2",
- "@raze__quote__1_0_23//:quote",
- ],
-)
diff --git a/third_party/cargo/remote/BUILD.proc-macro2-1.0.49.bazel b/third_party/cargo/remote/BUILD.proc-macro2-1.0.49.bazel
deleted file mode 100644
index 6e6d0d6..0000000
--- a/third_party/cargo/remote/BUILD.proc-macro2-1.0.49.bazel
+++ /dev/null
@@ -1,101 +0,0 @@
-"""
-@generated
-cargo-raze crate build file.
-
-DO NOT EDIT! Replaced on runs of cargo-raze
-"""
-
-# buildifier: disable=load
-load("@bazel_skylib//lib:selects.bzl", "selects")
-
-# buildifier: disable=load
-load(
- "@rules_rust//rust:defs.bzl",
- "rust_binary",
- "rust_library",
- "rust_proc_macro",
- "rust_test",
-)
-
-package(default_visibility = [
- # Public for visibility by "@raze__crate__version//" targets.
- #
- # Prefer access through "//third_party/cargo", which limits external
- # visibility to explicit Cargo.toml dependencies.
- "//visibility:public",
-])
-
-licenses([
- "notice", # MIT from expression "MIT OR Apache-2.0"
-])
-
-# Generated Targets
-# buildifier: disable=out-of-order-load
-# buildifier: disable=load-on-top
-load(
- "@rules_rust//cargo:cargo_build_script.bzl",
- "cargo_build_script",
-)
-
-cargo_build_script(
- name = "proc_macro2_build_script",
- srcs = glob(["**/*.rs"]),
- build_script_env = {
- },
- crate_features = [
- "default",
- "proc-macro",
- "span-locations",
- ],
- crate_root = "build.rs",
- data = glob(["**"]),
- edition = "2018",
- rustc_flags = [
- "--cap-lints=allow",
- ],
- tags = [
- "cargo-raze",
- "manual",
- ],
- version = "1.0.49",
- visibility = ["//visibility:private"],
- deps = [
- ],
-)
-
-rust_library(
- name = "proc_macro2",
- srcs = glob(["**/*.rs"]),
- crate_features = [
- "default",
- "proc-macro",
- "span-locations",
- ],
- crate_root = "src/lib.rs",
- data = [],
- edition = "2018",
- rustc_flags = [
- "--cap-lints=allow",
- ],
- tags = [
- "cargo-raze",
- "crate-name=proc-macro2",
- "manual",
- ],
- version = "1.0.49",
- # buildifier: leave-alone
- deps = [
- ":proc_macro2_build_script",
- "@raze__unicode_ident__1_0_6//:unicode_ident",
- ],
-)
-
-# Unsupported target "comments" with type "test" omitted
-
-# Unsupported target "features" with type "test" omitted
-
-# Unsupported target "marker" with type "test" omitted
-
-# Unsupported target "test" with type "test" omitted
-
-# Unsupported target "test_fmt" with type "test" omitted
diff --git a/third_party/cargo/remote/BUILD.quote-1.0.23.bazel b/third_party/cargo/remote/BUILD.quote-1.0.23.bazel
deleted file mode 100644
index 3d602eb..0000000
--- a/third_party/cargo/remote/BUILD.quote-1.0.23.bazel
+++ /dev/null
@@ -1,93 +0,0 @@
-"""
-@generated
-cargo-raze crate build file.
-
-DO NOT EDIT! Replaced on runs of cargo-raze
-"""
-
-# buildifier: disable=load
-load("@bazel_skylib//lib:selects.bzl", "selects")
-
-# buildifier: disable=load
-load(
- "@rules_rust//rust:defs.bzl",
- "rust_binary",
- "rust_library",
- "rust_proc_macro",
- "rust_test",
-)
-
-package(default_visibility = [
- # Public for visibility by "@raze__crate__version//" targets.
- #
- # Prefer access through "//third_party/cargo", which limits external
- # visibility to explicit Cargo.toml dependencies.
- "//visibility:public",
-])
-
-licenses([
- "notice", # MIT from expression "MIT OR Apache-2.0"
-])
-
-# Generated Targets
-# buildifier: disable=out-of-order-load
-# buildifier: disable=load-on-top
-load(
- "@rules_rust//cargo:cargo_build_script.bzl",
- "cargo_build_script",
-)
-
-cargo_build_script(
- name = "quote_build_script",
- srcs = glob(["**/*.rs"]),
- build_script_env = {
- },
- crate_features = [
- "default",
- "proc-macro",
- ],
- crate_root = "build.rs",
- data = glob(["**"]),
- edition = "2018",
- rustc_flags = [
- "--cap-lints=allow",
- ],
- tags = [
- "cargo-raze",
- "manual",
- ],
- version = "1.0.23",
- visibility = ["//visibility:private"],
- deps = [
- ],
-)
-
-rust_library(
- name = "quote",
- srcs = glob(["**/*.rs"]),
- crate_features = [
- "default",
- "proc-macro",
- ],
- crate_root = "src/lib.rs",
- data = [],
- edition = "2018",
- rustc_flags = [
- "--cap-lints=allow",
- ],
- tags = [
- "cargo-raze",
- "crate-name=quote",
- "manual",
- ],
- version = "1.0.23",
- # buildifier: leave-alone
- deps = [
- ":quote_build_script",
- "@raze__proc_macro2__1_0_49//:proc_macro2",
- ],
-)
-
-# Unsupported target "compiletest" with type "test" omitted
-
-# Unsupported target "test" with type "test" omitted
diff --git a/third_party/cargo/remote/BUILD.redox_syscall-0.2.16.bazel b/third_party/cargo/remote/BUILD.redox_syscall-0.2.16.bazel
deleted file mode 100644
index 9fbd5ae..0000000
--- a/third_party/cargo/remote/BUILD.redox_syscall-0.2.16.bazel
+++ /dev/null
@@ -1,64 +0,0 @@
-"""
-@generated
-cargo-raze crate build file.
-
-DO NOT EDIT! Replaced on runs of cargo-raze
-"""
-
-# buildifier: disable=load
-load("@bazel_skylib//lib:selects.bzl", "selects")
-
-# buildifier: disable=load
-load(
- "@rules_rust//rust:defs.bzl",
- "rust_binary",
- "rust_library",
- "rust_proc_macro",
- "rust_test",
-)
-
-package(default_visibility = [
- # Public for visibility by "@raze__crate__version//" targets.
- #
- # Prefer access through "//third_party/cargo", which limits external
- # visibility to explicit Cargo.toml dependencies.
- "//visibility:public",
-])
-
-licenses([
- "notice", # MIT from expression "MIT"
-])
-
-# Generated Targets
-
-alias(
- name = "redox_syscall",
- actual = ":syscall",
- tags = [
- "cargo-raze",
- "manual",
- ],
-)
-
-rust_library(
- name = "syscall",
- srcs = glob(["**/*.rs"]),
- crate_features = [
- ],
- crate_root = "src/lib.rs",
- data = [],
- edition = "2018",
- rustc_flags = [
- "--cap-lints=allow",
- ],
- tags = [
- "cargo-raze",
- "crate-name=syscall",
- "manual",
- ],
- version = "0.2.16",
- # buildifier: leave-alone
- deps = [
- "@raze__bitflags__1_3_2//:bitflags",
- ],
-)
diff --git a/third_party/cargo/remote/BUILD.regex-1.7.0.bazel b/third_party/cargo/remote/BUILD.regex-1.7.0.bazel
deleted file mode 100644
index 2cdec2e..0000000
--- a/third_party/cargo/remote/BUILD.regex-1.7.0.bazel
+++ /dev/null
@@ -1,104 +0,0 @@
-"""
-@generated
-cargo-raze crate build file.
-
-DO NOT EDIT! Replaced on runs of cargo-raze
-"""
-
-# buildifier: disable=load
-load("@bazel_skylib//lib:selects.bzl", "selects")
-
-# buildifier: disable=load
-load(
- "@rules_rust//rust:defs.bzl",
- "rust_binary",
- "rust_library",
- "rust_proc_macro",
- "rust_test",
-)
-
-package(default_visibility = [
- # Public for visibility by "@raze__crate__version//" targets.
- #
- # Prefer access through "//third_party/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 "shootout-regex-dna" with type "example" omitted
-
-# Unsupported target "shootout-regex-dna-bytes" with type "example" omitted
-
-# Unsupported target "shootout-regex-dna-cheat" with type "example" omitted
-
-# Unsupported target "shootout-regex-dna-replace" with type "example" omitted
-
-# Unsupported target "shootout-regex-dna-single" with type "example" omitted
-
-# Unsupported target "shootout-regex-dna-single-cheat" with type "example" omitted
-
-rust_library(
- name = "regex",
- srcs = glob(["**/*.rs"]),
- crate_features = [
- "aho-corasick",
- "default",
- "memchr",
- "perf",
- "perf-cache",
- "perf-dfa",
- "perf-inline",
- "perf-literal",
- "std",
- "unicode",
- "unicode-age",
- "unicode-bool",
- "unicode-case",
- "unicode-gencat",
- "unicode-perl",
- "unicode-script",
- "unicode-segment",
- ],
- crate_root = "src/lib.rs",
- data = [],
- edition = "2018",
- rustc_flags = [
- "--cap-lints=allow",
- ],
- tags = [
- "cargo-raze",
- "crate-name=regex",
- "manual",
- ],
- version = "1.7.0",
- # buildifier: leave-alone
- deps = [
- "@raze__aho_corasick__0_7_20//:aho_corasick",
- "@raze__memchr__2_5_0//:memchr",
- "@raze__regex_syntax__0_6_28//:regex_syntax",
- ],
-)
-
-# Unsupported target "backtrack" with type "test" omitted
-
-# Unsupported target "backtrack-bytes" with type "test" omitted
-
-# Unsupported target "backtrack-utf8bytes" with type "test" omitted
-
-# Unsupported target "crates-regex" with type "test" omitted
-
-# Unsupported target "default" with type "test" omitted
-
-# Unsupported target "default-bytes" with type "test" omitted
-
-# Unsupported target "nfa" with type "test" omitted
-
-# Unsupported target "nfa-bytes" with type "test" omitted
-
-# Unsupported target "nfa-utf8bytes" with type "test" omitted
diff --git a/third_party/cargo/remote/BUILD.regex-automata-0.1.10.bazel b/third_party/cargo/remote/BUILD.regex-automata-0.1.10.bazel
deleted file mode 100644
index a6bd797..0000000
--- a/third_party/cargo/remote/BUILD.regex-automata-0.1.10.bazel
+++ /dev/null
@@ -1,56 +0,0 @@
-"""
-@generated
-cargo-raze crate build file.
-
-DO NOT EDIT! Replaced on runs of cargo-raze
-"""
-
-# buildifier: disable=load
-load("@bazel_skylib//lib:selects.bzl", "selects")
-
-# buildifier: disable=load
-load(
- "@rules_rust//rust:defs.bzl",
- "rust_binary",
- "rust_library",
- "rust_proc_macro",
- "rust_test",
-)
-
-package(default_visibility = [
- # Public for visibility by "@raze__crate__version//" targets.
- #
- # Prefer access through "//third_party/cargo", which limits external
- # visibility to explicit Cargo.toml dependencies.
- "//visibility:public",
-])
-
-licenses([
- "unencumbered", # Unlicense from expression "Unlicense OR MIT"
-])
-
-# Generated Targets
-
-rust_library(
- name = "regex_automata",
- srcs = glob(["**/*.rs"]),
- crate_features = [
- ],
- crate_root = "src/lib.rs",
- data = [],
- edition = "2015",
- rustc_flags = [
- "--cap-lints=allow",
- ],
- tags = [
- "cargo-raze",
- "crate-name=regex-automata",
- "manual",
- ],
- version = "0.1.10",
- # buildifier: leave-alone
- deps = [
- ],
-)
-
-# Unsupported target "default" with type "test" omitted
diff --git a/third_party/cargo/remote/BUILD.regex-syntax-0.6.28.bazel b/third_party/cargo/remote/BUILD.regex-syntax-0.6.28.bazel
deleted file mode 100644
index a6e3857..0000000
--- a/third_party/cargo/remote/BUILD.regex-syntax-0.6.28.bazel
+++ /dev/null
@@ -1,65 +0,0 @@
-"""
-@generated
-cargo-raze crate build file.
-
-DO NOT EDIT! Replaced on runs of cargo-raze
-"""
-
-# buildifier: disable=load
-load("@bazel_skylib//lib:selects.bzl", "selects")
-
-# buildifier: disable=load
-load(
- "@rules_rust//rust:defs.bzl",
- "rust_binary",
- "rust_library",
- "rust_proc_macro",
- "rust_test",
-)
-
-package(default_visibility = [
- # Public for visibility by "@raze__crate__version//" targets.
- #
- # Prefer access through "//third_party/cargo", which limits external
- # visibility to explicit Cargo.toml dependencies.
- "//visibility:public",
-])
-
-licenses([
- "notice", # MIT from expression "MIT OR Apache-2.0"
-])
-
-# Generated Targets
-
-# Unsupported target "bench" with type "bench" omitted
-
-rust_library(
- name = "regex_syntax",
- srcs = glob(["**/*.rs"]),
- crate_features = [
- "default",
- "unicode",
- "unicode-age",
- "unicode-bool",
- "unicode-case",
- "unicode-gencat",
- "unicode-perl",
- "unicode-script",
- "unicode-segment",
- ],
- crate_root = "src/lib.rs",
- data = [],
- edition = "2018",
- rustc_flags = [
- "--cap-lints=allow",
- ],
- tags = [
- "cargo-raze",
- "crate-name=regex-syntax",
- "manual",
- ],
- version = "0.6.28",
- # buildifier: leave-alone
- deps = [
- ],
-)
diff --git a/third_party/cargo/remote/BUILD.remove_dir_all-0.5.3.bazel b/third_party/cargo/remote/BUILD.remove_dir_all-0.5.3.bazel
deleted file mode 100644
index 753c11c..0000000
--- a/third_party/cargo/remote/BUILD.remove_dir_all-0.5.3.bazel
+++ /dev/null
@@ -1,54 +0,0 @@
-"""
-@generated
-cargo-raze crate build file.
-
-DO NOT EDIT! Replaced on runs of cargo-raze
-"""
-
-# buildifier: disable=load
-load("@bazel_skylib//lib:selects.bzl", "selects")
-
-# buildifier: disable=load
-load(
- "@rules_rust//rust:defs.bzl",
- "rust_binary",
- "rust_library",
- "rust_proc_macro",
- "rust_test",
-)
-
-package(default_visibility = [
- # Public for visibility by "@raze__crate__version//" targets.
- #
- # Prefer access through "//third_party/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 = "remove_dir_all",
- srcs = glob(["**/*.rs"]),
- crate_features = [
- ],
- crate_root = "src/lib.rs",
- data = [],
- edition = "2015",
- rustc_flags = [
- "--cap-lints=allow",
- ],
- tags = [
- "cargo-raze",
- "crate-name=remove_dir_all",
- "manual",
- ],
- version = "0.5.3",
- # buildifier: leave-alone
- deps = [
- ],
-)
diff --git a/third_party/cargo/remote/BUILD.rust_info-0.3.2.bazel b/third_party/cargo/remote/BUILD.rust_info-0.3.2.bazel
deleted file mode 100644
index 54e0f2b..0000000
--- a/third_party/cargo/remote/BUILD.rust_info-0.3.2.bazel
+++ /dev/null
@@ -1,62 +0,0 @@
-"""
-@generated
-cargo-raze crate build file.
-
-DO NOT EDIT! Replaced on runs of cargo-raze
-"""
-
-# buildifier: disable=load
-load("@bazel_skylib//lib:selects.bzl", "selects")
-
-# buildifier: disable=load
-load(
- "@rules_rust//rust:defs.bzl",
- "rust_binary",
- "rust_library",
- "rust_proc_macro",
- "rust_test",
-)
-
-package(default_visibility = [
- # Public for visibility by "@raze__crate__version//" targets.
- #
- # Prefer access through "//third_party/cargo", which limits external
- # visibility to explicit Cargo.toml dependencies.
- "//visibility:public",
-])
-
-licenses([
- "notice", # Apache-2.0 from expression "Apache-2.0"
-])
-
-# Generated Targets
-
-# Unsupported target "bench_get" with type "bench" omitted
-
-# Unsupported target "example" with type "example" omitted
-
-rust_library(
- name = "rust_info",
- srcs = glob(["**/*.rs"]),
- crate_features = [
- ],
- crate_root = "src/lib.rs",
- data = [],
- edition = "2018",
- rustc_flags = [
- "--cap-lints=allow",
- ],
- tags = [
- "cargo-raze",
- "crate-name=rust_info",
- "manual",
- ],
- version = "0.3.2",
- # buildifier: leave-alone
- deps = [
- ],
-)
-
-# Unsupported target "get_option_test" with type "test" omitted
-
-# Unsupported target "get_test" with type "test" omitted
diff --git a/third_party/cargo/remote/BUILD.rustc-demangle-0.1.21.bazel b/third_party/cargo/remote/BUILD.rustc-demangle-0.1.21.bazel
deleted file mode 100644
index c0397fc..0000000
--- a/third_party/cargo/remote/BUILD.rustc-demangle-0.1.21.bazel
+++ /dev/null
@@ -1,54 +0,0 @@
-"""
-@generated
-cargo-raze crate build file.
-
-DO NOT EDIT! Replaced on runs of cargo-raze
-"""
-
-# buildifier: disable=load
-load("@bazel_skylib//lib:selects.bzl", "selects")
-
-# buildifier: disable=load
-load(
- "@rules_rust//rust:defs.bzl",
- "rust_binary",
- "rust_library",
- "rust_proc_macro",
- "rust_test",
-)
-
-package(default_visibility = [
- # Public for visibility by "@raze__crate__version//" targets.
- #
- # Prefer access through "//third_party/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 = "rustc_demangle",
- srcs = glob(["**/*.rs"]),
- crate_features = [
- ],
- crate_root = "src/lib.rs",
- data = [],
- edition = "2015",
- rustc_flags = [
- "--cap-lints=allow",
- ],
- tags = [
- "cargo-raze",
- "crate-name=rustc-demangle",
- "manual",
- ],
- version = "0.1.21",
- # buildifier: leave-alone
- deps = [
- ],
-)
diff --git a/third_party/cargo/remote/BUILD.rustc-hash-1.1.0.bazel b/third_party/cargo/remote/BUILD.rustc-hash-1.1.0.bazel
deleted file mode 100644
index 1c15146..0000000
--- a/third_party/cargo/remote/BUILD.rustc-hash-1.1.0.bazel
+++ /dev/null
@@ -1,56 +0,0 @@
-"""
-@generated
-cargo-raze crate build file.
-
-DO NOT EDIT! Replaced on runs of cargo-raze
-"""
-
-# buildifier: disable=load
-load("@bazel_skylib//lib:selects.bzl", "selects")
-
-# buildifier: disable=load
-load(
- "@rules_rust//rust:defs.bzl",
- "rust_binary",
- "rust_library",
- "rust_proc_macro",
- "rust_test",
-)
-
-package(default_visibility = [
- # Public for visibility by "@raze__crate__version//" targets.
- #
- # Prefer access through "//third_party/cargo", which limits external
- # visibility to explicit Cargo.toml dependencies.
- "//visibility:public",
-])
-
-licenses([
- "notice", # Apache-2.0 from expression "Apache-2.0 OR MIT"
-])
-
-# Generated Targets
-
-rust_library(
- name = "rustc_hash",
- srcs = glob(["**/*.rs"]),
- crate_features = [
- "default",
- "std",
- ],
- crate_root = "src/lib.rs",
- data = [],
- edition = "2015",
- rustc_flags = [
- "--cap-lints=allow",
- ],
- tags = [
- "cargo-raze",
- "crate-name=rustc-hash",
- "manual",
- ],
- version = "1.1.0",
- # buildifier: leave-alone
- deps = [
- ],
-)
diff --git a/third_party/cargo/remote/BUILD.rustc_version-0.4.0.bazel b/third_party/cargo/remote/BUILD.rustc_version-0.4.0.bazel
deleted file mode 100644
index 5dd62c1..0000000
--- a/third_party/cargo/remote/BUILD.rustc_version-0.4.0.bazel
+++ /dev/null
@@ -1,57 +0,0 @@
-"""
-@generated
-cargo-raze crate build file.
-
-DO NOT EDIT! Replaced on runs of cargo-raze
-"""
-
-# buildifier: disable=load
-load("@bazel_skylib//lib:selects.bzl", "selects")
-
-# buildifier: disable=load
-load(
- "@rules_rust//rust:defs.bzl",
- "rust_binary",
- "rust_library",
- "rust_proc_macro",
- "rust_test",
-)
-
-package(default_visibility = [
- # Public for visibility by "@raze__crate__version//" targets.
- #
- # Prefer access through "//third_party/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 = "rustc_version",
- srcs = glob(["**/*.rs"]),
- crate_features = [
- ],
- crate_root = "src/lib.rs",
- data = [],
- edition = "2018",
- rustc_flags = [
- "--cap-lints=allow",
- ],
- tags = [
- "cargo-raze",
- "crate-name=rustc_version",
- "manual",
- ],
- version = "0.4.0",
- # buildifier: leave-alone
- deps = [
- "@raze__semver__1_0_16//:semver",
- ],
-)
-
-# Unsupported target "all" with type "test" omitted
diff --git a/third_party/cargo/remote/BUILD.rustversion-1.0.11.bazel b/third_party/cargo/remote/BUILD.rustversion-1.0.11.bazel
deleted file mode 100644
index 15c50f0..0000000
--- a/third_party/cargo/remote/BUILD.rustversion-1.0.11.bazel
+++ /dev/null
@@ -1,92 +0,0 @@
-"""
-@generated
-cargo-raze crate build file.
-
-DO NOT EDIT! Replaced on runs of cargo-raze
-"""
-
-# buildifier: disable=load
-load("@bazel_skylib//lib:selects.bzl", "selects")
-
-# buildifier: disable=load
-load(
- "@rules_rust//rust:defs.bzl",
- "rust_binary",
- "rust_library",
- "rust_proc_macro",
- "rust_test",
-)
-
-package(default_visibility = [
- # Public for visibility by "@raze__crate__version//" targets.
- #
- # Prefer access through "//third_party/cargo", which limits external
- # visibility to explicit Cargo.toml dependencies.
- "//visibility:public",
-])
-
-licenses([
- "notice", # MIT from expression "MIT OR Apache-2.0"
-])
-
-# Generated Targets
-# buildifier: disable=out-of-order-load
-# buildifier: disable=load-on-top
-load(
- "@rules_rust//cargo:cargo_build_script.bzl",
- "cargo_build_script",
-)
-
-cargo_build_script(
- name = "rustversion_build_script",
- srcs = glob(["**/*.rs"]),
- build_script_env = {
- },
- crate_features = [
- ],
- crate_root = "build/build.rs",
- data = glob(["**"]),
- edition = "2018",
- rustc_flags = [
- "--cap-lints=allow",
- ],
- tags = [
- "cargo-raze",
- "manual",
- ],
- version = "1.0.11",
- visibility = ["//visibility:private"],
- deps = [
- ],
-)
-
-rust_proc_macro(
- name = "rustversion",
- srcs = glob(["**/*.rs"]),
- crate_features = [
- ],
- crate_root = "src/lib.rs",
- data = [],
- edition = "2018",
- rustc_flags = [
- "--cap-lints=allow",
- ],
- tags = [
- "cargo-raze",
- "crate-name=rustversion",
- "manual",
- ],
- version = "1.0.11",
- # buildifier: leave-alone
- deps = [
- ":rustversion_build_script",
- ],
-)
-
-# Unsupported target "compiletest" with type "test" omitted
-
-# Unsupported target "test_const" with type "test" omitted
-
-# Unsupported target "test_eval" with type "test" omitted
-
-# Unsupported target "test_parse" with type "test" omitted
diff --git a/third_party/cargo/remote/BUILD.ryu-1.0.12.bazel b/third_party/cargo/remote/BUILD.ryu-1.0.12.bazel
deleted file mode 100644
index c206bb2..0000000
--- a/third_party/cargo/remote/BUILD.ryu-1.0.12.bazel
+++ /dev/null
@@ -1,72 +0,0 @@
-"""
-@generated
-cargo-raze crate build file.
-
-DO NOT EDIT! Replaced on runs of cargo-raze
-"""
-
-# buildifier: disable=load
-load("@bazel_skylib//lib:selects.bzl", "selects")
-
-# buildifier: disable=load
-load(
- "@rules_rust//rust:defs.bzl",
- "rust_binary",
- "rust_library",
- "rust_proc_macro",
- "rust_test",
-)
-
-package(default_visibility = [
- # Public for visibility by "@raze__crate__version//" targets.
- #
- # Prefer access through "//third_party/cargo", which limits external
- # visibility to explicit Cargo.toml dependencies.
- "//visibility:public",
-])
-
-licenses([
- "notice", # Apache-2.0 from expression "Apache-2.0 OR BSL-1.0"
-])
-
-# Generated Targets
-
-# Unsupported target "bench" with type "bench" omitted
-
-# Unsupported target "upstream_benchmark" with type "example" omitted
-
-rust_library(
- name = "ryu",
- srcs = glob(["**/*.rs"]),
- crate_features = [
- ],
- crate_root = "src/lib.rs",
- data = [],
- edition = "2018",
- rustc_flags = [
- "--cap-lints=allow",
- ],
- tags = [
- "cargo-raze",
- "crate-name=ryu",
- "manual",
- ],
- version = "1.0.12",
- # buildifier: leave-alone
- deps = [
- ],
-)
-
-# Unsupported target "common_test" with type "test" omitted
-
-# Unsupported target "d2s_table_test" with type "test" omitted
-
-# Unsupported target "d2s_test" with type "test" omitted
-
-# Unsupported target "exhaustive" with type "test" omitted
-
-# Unsupported target "f2s_test" with type "test" omitted
-
-# Unsupported target "s2d_test" with type "test" omitted
-
-# Unsupported target "s2f_test" with type "test" omitted
diff --git a/third_party/cargo/remote/BUILD.semver-1.0.16.bazel b/third_party/cargo/remote/BUILD.semver-1.0.16.bazel
deleted file mode 100644
index 0845689..0000000
--- a/third_party/cargo/remote/BUILD.semver-1.0.16.bazel
+++ /dev/null
@@ -1,98 +0,0 @@
-"""
-@generated
-cargo-raze crate build file.
-
-DO NOT EDIT! Replaced on runs of cargo-raze
-"""
-
-# buildifier: disable=load
-load("@bazel_skylib//lib:selects.bzl", "selects")
-
-# buildifier: disable=load
-load(
- "@rules_rust//rust:defs.bzl",
- "rust_binary",
- "rust_library",
- "rust_proc_macro",
- "rust_test",
-)
-
-package(default_visibility = [
- # Public for visibility by "@raze__crate__version//" targets.
- #
- # Prefer access through "//third_party/cargo", which limits external
- # visibility to explicit Cargo.toml dependencies.
- "//visibility:public",
-])
-
-licenses([
- "notice", # MIT from expression "MIT OR Apache-2.0"
-])
-
-# Generated Targets
-# buildifier: disable=out-of-order-load
-# buildifier: disable=load-on-top
-load(
- "@rules_rust//cargo:cargo_build_script.bzl",
- "cargo_build_script",
-)
-
-cargo_build_script(
- name = "semver_build_script",
- srcs = glob(["**/*.rs"]),
- build_script_env = {
- },
- crate_features = [
- "default",
- "std",
- ],
- crate_root = "build.rs",
- data = glob(["**"]),
- edition = "2018",
- rustc_flags = [
- "--cap-lints=allow",
- ],
- tags = [
- "cargo-raze",
- "manual",
- ],
- version = "1.0.16",
- visibility = ["//visibility:private"],
- deps = [
- ],
-)
-
-# Unsupported target "parse" with type "bench" omitted
-
-rust_library(
- name = "semver",
- srcs = glob(["**/*.rs"]),
- crate_features = [
- "default",
- "std",
- ],
- crate_root = "src/lib.rs",
- data = [],
- edition = "2018",
- rustc_flags = [
- "--cap-lints=allow",
- ],
- tags = [
- "cargo-raze",
- "crate-name=semver",
- "manual",
- ],
- version = "1.0.16",
- # buildifier: leave-alone
- deps = [
- ":semver_build_script",
- ],
-)
-
-# Unsupported target "test_autotrait" with type "test" omitted
-
-# Unsupported target "test_identifier" with type "test" omitted
-
-# Unsupported target "test_version" with type "test" omitted
-
-# Unsupported target "test_version_req" with type "test" omitted
diff --git a/third_party/cargo/remote/BUILD.serde-1.0.151.bazel b/third_party/cargo/remote/BUILD.serde-1.0.151.bazel
deleted file mode 100644
index 1b274c7..0000000
--- a/third_party/cargo/remote/BUILD.serde-1.0.151.bazel
+++ /dev/null
@@ -1,95 +0,0 @@
-"""
-@generated
-cargo-raze crate build file.
-
-DO NOT EDIT! Replaced on runs of cargo-raze
-"""
-
-# buildifier: disable=load
-load("@bazel_skylib//lib:selects.bzl", "selects")
-
-# buildifier: disable=load
-load(
- "@rules_rust//rust:defs.bzl",
- "rust_binary",
- "rust_library",
- "rust_proc_macro",
- "rust_test",
-)
-
-package(default_visibility = [
- # Public for visibility by "@raze__crate__version//" targets.
- #
- # Prefer access through "//third_party/cargo", which limits external
- # visibility to explicit Cargo.toml dependencies.
- "//visibility:public",
-])
-
-licenses([
- "notice", # MIT from expression "MIT OR Apache-2.0"
-])
-
-# Generated Targets
-# buildifier: disable=out-of-order-load
-# buildifier: disable=load-on-top
-load(
- "@rules_rust//cargo:cargo_build_script.bzl",
- "cargo_build_script",
-)
-
-cargo_build_script(
- name = "serde_build_script",
- srcs = glob(["**/*.rs"]),
- build_script_env = {
- },
- crate_features = [
- "default",
- "derive",
- "serde_derive",
- "std",
- ],
- crate_root = "build.rs",
- data = glob(["**"]),
- edition = "2015",
- rustc_flags = [
- "--cap-lints=allow",
- ],
- tags = [
- "cargo-raze",
- "manual",
- ],
- version = "1.0.151",
- visibility = ["//visibility:private"],
- deps = [
- ],
-)
-
-rust_library(
- name = "serde",
- srcs = glob(["**/*.rs"]),
- crate_features = [
- "default",
- "derive",
- "serde_derive",
- "std",
- ],
- crate_root = "src/lib.rs",
- data = [],
- edition = "2015",
- proc_macro_deps = [
- "@raze__serde_derive__1_0_151//:serde_derive",
- ],
- rustc_flags = [
- "--cap-lints=allow",
- ],
- tags = [
- "cargo-raze",
- "crate-name=serde",
- "manual",
- ],
- version = "1.0.151",
- # buildifier: leave-alone
- deps = [
- ":serde_build_script",
- ],
-)
diff --git a/third_party/cargo/remote/BUILD.serde_derive-1.0.151.bazel b/third_party/cargo/remote/BUILD.serde_derive-1.0.151.bazel
deleted file mode 100644
index 8c9aec6..0000000
--- a/third_party/cargo/remote/BUILD.serde_derive-1.0.151.bazel
+++ /dev/null
@@ -1,89 +0,0 @@
-"""
-@generated
-cargo-raze crate build file.
-
-DO NOT EDIT! Replaced on runs of cargo-raze
-"""
-
-# buildifier: disable=load
-load("@bazel_skylib//lib:selects.bzl", "selects")
-
-# buildifier: disable=load
-load(
- "@rules_rust//rust:defs.bzl",
- "rust_binary",
- "rust_library",
- "rust_proc_macro",
- "rust_test",
-)
-
-package(default_visibility = [
- # Public for visibility by "@raze__crate__version//" targets.
- #
- # Prefer access through "//third_party/cargo", which limits external
- # visibility to explicit Cargo.toml dependencies.
- "//visibility:public",
-])
-
-licenses([
- "notice", # MIT from expression "MIT OR Apache-2.0"
-])
-
-# Generated Targets
-# buildifier: disable=out-of-order-load
-# buildifier: disable=load-on-top
-load(
- "@rules_rust//cargo:cargo_build_script.bzl",
- "cargo_build_script",
-)
-
-cargo_build_script(
- name = "serde_derive_build_script",
- srcs = glob(["**/*.rs"]),
- build_script_env = {
- },
- crate_features = [
- "default",
- ],
- crate_root = "build.rs",
- data = glob(["**"]),
- edition = "2015",
- rustc_flags = [
- "--cap-lints=allow",
- ],
- tags = [
- "cargo-raze",
- "manual",
- ],
- version = "1.0.151",
- visibility = ["//visibility:private"],
- deps = [
- ],
-)
-
-rust_proc_macro(
- name = "serde_derive",
- srcs = glob(["**/*.rs"]),
- crate_features = [
- "default",
- ],
- crate_root = "src/lib.rs",
- data = [],
- edition = "2015",
- rustc_flags = [
- "--cap-lints=allow",
- ],
- tags = [
- "cargo-raze",
- "crate-name=serde_derive",
- "manual",
- ],
- version = "1.0.151",
- # buildifier: leave-alone
- deps = [
- ":serde_derive_build_script",
- "@raze__proc_macro2__1_0_49//:proc_macro2",
- "@raze__quote__1_0_23//:quote",
- "@raze__syn__1_0_107//:syn",
- ],
-)
diff --git a/third_party/cargo/remote/BUILD.serde_json-1.0.91.bazel b/third_party/cargo/remote/BUILD.serde_json-1.0.91.bazel
deleted file mode 100644
index 06a80b0..0000000
--- a/third_party/cargo/remote/BUILD.serde_json-1.0.91.bazel
+++ /dev/null
@@ -1,105 +0,0 @@
-"""
-@generated
-cargo-raze crate build file.
-
-DO NOT EDIT! Replaced on runs of cargo-raze
-"""
-
-# buildifier: disable=load
-load("@bazel_skylib//lib:selects.bzl", "selects")
-
-# buildifier: disable=load
-load(
- "@rules_rust//rust:defs.bzl",
- "rust_binary",
- "rust_library",
- "rust_proc_macro",
- "rust_test",
-)
-
-package(default_visibility = [
- # Public for visibility by "@raze__crate__version//" targets.
- #
- # Prefer access through "//third_party/cargo", which limits external
- # visibility to explicit Cargo.toml dependencies.
- "//visibility:public",
-])
-
-licenses([
- "notice", # MIT from expression "MIT OR Apache-2.0"
-])
-
-# Generated Targets
-# buildifier: disable=out-of-order-load
-# buildifier: disable=load-on-top
-load(
- "@rules_rust//cargo:cargo_build_script.bzl",
- "cargo_build_script",
-)
-
-cargo_build_script(
- name = "serde_json_build_script",
- srcs = glob(["**/*.rs"]),
- build_script_env = {
- },
- crate_features = [
- "default",
- "std",
- ],
- crate_root = "build.rs",
- data = glob(["**"]),
- edition = "2018",
- rustc_flags = [
- "--cap-lints=allow",
- ],
- tags = [
- "cargo-raze",
- "manual",
- ],
- version = "1.0.91",
- visibility = ["//visibility:private"],
- deps = [
- ],
-)
-
-rust_library(
- name = "serde_json",
- srcs = glob(["**/*.rs"]),
- crate_features = [
- "default",
- "std",
- ],
- crate_root = "src/lib.rs",
- data = [],
- edition = "2018",
- rustc_flags = [
- "--cap-lints=allow",
- ],
- tags = [
- "cargo-raze",
- "crate-name=serde_json",
- "manual",
- ],
- version = "1.0.91",
- # buildifier: leave-alone
- deps = [
- ":serde_json_build_script",
- "@raze__itoa__1_0_5//:itoa",
- "@raze__ryu__1_0_12//:ryu",
- "@raze__serde__1_0_151//:serde",
- ],
-)
-
-# Unsupported target "compiletest" with type "test" omitted
-
-# Unsupported target "debug" with type "test" omitted
-
-# Unsupported target "lexical" with type "test" omitted
-
-# Unsupported target "map" with type "test" omitted
-
-# Unsupported target "regression" with type "test" omitted
-
-# Unsupported target "stream" with type "test" omitted
-
-# Unsupported target "test" with type "test" omitted
diff --git a/third_party/cargo/remote/BUILD.shlex-1.1.0.bazel b/third_party/cargo/remote/BUILD.shlex-1.1.0.bazel
deleted file mode 100644
index 65b1dc8..0000000
--- a/third_party/cargo/remote/BUILD.shlex-1.1.0.bazel
+++ /dev/null
@@ -1,56 +0,0 @@
-"""
-@generated
-cargo-raze crate build file.
-
-DO NOT EDIT! Replaced on runs of cargo-raze
-"""
-
-# buildifier: disable=load
-load("@bazel_skylib//lib:selects.bzl", "selects")
-
-# buildifier: disable=load
-load(
- "@rules_rust//rust:defs.bzl",
- "rust_binary",
- "rust_library",
- "rust_proc_macro",
- "rust_test",
-)
-
-package(default_visibility = [
- # Public for visibility by "@raze__crate__version//" targets.
- #
- # Prefer access through "//third_party/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 = "shlex",
- srcs = glob(["**/*.rs"]),
- crate_features = [
- "default",
- "std",
- ],
- crate_root = "src/lib.rs",
- data = [],
- edition = "2015",
- rustc_flags = [
- "--cap-lints=allow",
- ],
- tags = [
- "cargo-raze",
- "crate-name=shlex",
- "manual",
- ],
- version = "1.1.0",
- # buildifier: leave-alone
- deps = [
- ],
-)
diff --git a/third_party/cargo/remote/BUILD.slab-0.4.7.bazel b/third_party/cargo/remote/BUILD.slab-0.4.7.bazel
deleted file mode 100644
index 506e6fc..0000000
--- a/third_party/cargo/remote/BUILD.slab-0.4.7.bazel
+++ /dev/null
@@ -1,93 +0,0 @@
-"""
-@generated
-cargo-raze crate build file.
-
-DO NOT EDIT! Replaced on runs of cargo-raze
-"""
-
-# buildifier: disable=load
-load("@bazel_skylib//lib:selects.bzl", "selects")
-
-# buildifier: disable=load
-load(
- "@rules_rust//rust:defs.bzl",
- "rust_binary",
- "rust_library",
- "rust_proc_macro",
- "rust_test",
-)
-
-package(default_visibility = [
- # Public for visibility by "@raze__crate__version//" targets.
- #
- # Prefer access through "//third_party/cargo", which limits external
- # visibility to explicit Cargo.toml dependencies.
- "//visibility:public",
-])
-
-licenses([
- "notice", # MIT from expression "MIT"
-])
-
-# Generated Targets
-# buildifier: disable=out-of-order-load
-# buildifier: disable=load-on-top
-load(
- "@rules_rust//cargo:cargo_build_script.bzl",
- "cargo_build_script",
-)
-
-cargo_build_script(
- name = "slab_build_script",
- srcs = glob(["**/*.rs"]),
- build_script_env = {
- },
- crate_features = [
- "default",
- "std",
- ],
- crate_root = "build.rs",
- data = glob(["**"]),
- edition = "2018",
- rustc_flags = [
- "--cap-lints=allow",
- ],
- tags = [
- "cargo-raze",
- "manual",
- ],
- version = "0.4.7",
- visibility = ["//visibility:private"],
- deps = [
- "@raze__autocfg__1_1_0//:autocfg",
- ],
-)
-
-rust_library(
- name = "slab",
- srcs = glob(["**/*.rs"]),
- crate_features = [
- "default",
- "std",
- ],
- crate_root = "src/lib.rs",
- data = [],
- edition = "2018",
- rustc_flags = [
- "--cap-lints=allow",
- ],
- tags = [
- "cargo-raze",
- "crate-name=slab",
- "manual",
- ],
- version = "0.4.7",
- # buildifier: leave-alone
- deps = [
- ":slab_build_script",
- ],
-)
-
-# Unsupported target "serde" with type "test" omitted
-
-# Unsupported target "slab" with type "test" omitted
diff --git a/third_party/cargo/remote/BUILD.smallvec-1.10.0.bazel b/third_party/cargo/remote/BUILD.smallvec-1.10.0.bazel
deleted file mode 100644
index bc16952..0000000
--- a/third_party/cargo/remote/BUILD.smallvec-1.10.0.bazel
+++ /dev/null
@@ -1,60 +0,0 @@
-"""
-@generated
-cargo-raze crate build file.
-
-DO NOT EDIT! Replaced on runs of cargo-raze
-"""
-
-# buildifier: disable=load
-load("@bazel_skylib//lib:selects.bzl", "selects")
-
-# buildifier: disable=load
-load(
- "@rules_rust//rust:defs.bzl",
- "rust_binary",
- "rust_library",
- "rust_proc_macro",
- "rust_test",
-)
-
-package(default_visibility = [
- # Public for visibility by "@raze__crate__version//" targets.
- #
- # Prefer access through "//third_party/cargo", which limits external
- # visibility to explicit Cargo.toml dependencies.
- "//visibility:public",
-])
-
-licenses([
- "notice", # MIT from expression "MIT OR Apache-2.0"
-])
-
-# Generated Targets
-
-# Unsupported target "bench" with type "bench" omitted
-
-rust_library(
- name = "smallvec",
- srcs = glob(["**/*.rs"]),
- crate_features = [
- ],
- crate_root = "src/lib.rs",
- data = [],
- edition = "2018",
- rustc_flags = [
- "--cap-lints=allow",
- ],
- tags = [
- "cargo-raze",
- "crate-name=smallvec",
- "manual",
- ],
- version = "1.10.0",
- # buildifier: leave-alone
- deps = [
- ],
-)
-
-# Unsupported target "debugger_visualizer" with type "test" omitted
-
-# Unsupported target "macro" with type "test" omitted
diff --git a/third_party/cargo/remote/BUILD.smawk-0.3.1.bazel b/third_party/cargo/remote/BUILD.smawk-0.3.1.bazel
deleted file mode 100644
index 3d692dc..0000000
--- a/third_party/cargo/remote/BUILD.smawk-0.3.1.bazel
+++ /dev/null
@@ -1,62 +0,0 @@
-"""
-@generated
-cargo-raze crate build file.
-
-DO NOT EDIT! Replaced on runs of cargo-raze
-"""
-
-# buildifier: disable=load
-load("@bazel_skylib//lib:selects.bzl", "selects")
-
-# buildifier: disable=load
-load(
- "@rules_rust//rust:defs.bzl",
- "rust_binary",
- "rust_library",
- "rust_proc_macro",
- "rust_test",
-)
-
-package(default_visibility = [
- # Public for visibility by "@raze__crate__version//" targets.
- #
- # Prefer access through "//third_party/cargo", which limits external
- # visibility to explicit Cargo.toml dependencies.
- "//visibility:public",
-])
-
-licenses([
- "notice", # MIT from expression "MIT"
-])
-
-# Generated Targets
-
-rust_library(
- name = "smawk",
- srcs = glob(["**/*.rs"]),
- crate_features = [
- ],
- crate_root = "src/lib.rs",
- data = [],
- edition = "2018",
- rustc_flags = [
- "--cap-lints=allow",
- ],
- tags = [
- "cargo-raze",
- "crate-name=smawk",
- "manual",
- ],
- version = "0.3.1",
- # buildifier: leave-alone
- deps = [
- ],
-)
-
-# Unsupported target "agreement" with type "test" omitted
-
-# Unsupported target "complexity" with type "test" omitted
-
-# Unsupported target "monge" with type "test" omitted
-
-# Unsupported target "version-numbers" with type "test" omitted
diff --git a/third_party/cargo/remote/BUILD.strsim-0.10.0.bazel b/third_party/cargo/remote/BUILD.strsim-0.10.0.bazel
deleted file mode 100644
index cc8a8a8..0000000
--- a/third_party/cargo/remote/BUILD.strsim-0.10.0.bazel
+++ /dev/null
@@ -1,58 +0,0 @@
-"""
-@generated
-cargo-raze crate build file.
-
-DO NOT EDIT! Replaced on runs of cargo-raze
-"""
-
-# buildifier: disable=load
-load("@bazel_skylib//lib:selects.bzl", "selects")
-
-# buildifier: disable=load
-load(
- "@rules_rust//rust:defs.bzl",
- "rust_binary",
- "rust_library",
- "rust_proc_macro",
- "rust_test",
-)
-
-package(default_visibility = [
- # Public for visibility by "@raze__crate__version//" targets.
- #
- # Prefer access through "//third_party/cargo", which limits external
- # visibility to explicit Cargo.toml dependencies.
- "//visibility:public",
-])
-
-licenses([
- "notice", # MIT from expression "MIT"
-])
-
-# Generated Targets
-
-# Unsupported target "benches" with type "bench" omitted
-
-rust_library(
- name = "strsim",
- srcs = glob(["**/*.rs"]),
- crate_features = [
- ],
- crate_root = "src/lib.rs",
- data = [],
- edition = "2015",
- rustc_flags = [
- "--cap-lints=allow",
- ],
- tags = [
- "cargo-raze",
- "crate-name=strsim",
- "manual",
- ],
- version = "0.10.0",
- # buildifier: leave-alone
- deps = [
- ],
-)
-
-# Unsupported target "lib" with type "test" omitted
diff --git a/third_party/cargo/remote/BUILD.strsim-0.8.0.bazel b/third_party/cargo/remote/BUILD.strsim-0.8.0.bazel
deleted file mode 100644
index efd0df5..0000000
--- a/third_party/cargo/remote/BUILD.strsim-0.8.0.bazel
+++ /dev/null
@@ -1,58 +0,0 @@
-"""
-@generated
-cargo-raze crate build file.
-
-DO NOT EDIT! Replaced on runs of cargo-raze
-"""
-
-# buildifier: disable=load
-load("@bazel_skylib//lib:selects.bzl", "selects")
-
-# buildifier: disable=load
-load(
- "@rules_rust//rust:defs.bzl",
- "rust_binary",
- "rust_library",
- "rust_proc_macro",
- "rust_test",
-)
-
-package(default_visibility = [
- # Public for visibility by "@raze__crate__version//" targets.
- #
- # Prefer access through "//third_party/cargo", which limits external
- # visibility to explicit Cargo.toml dependencies.
- "//visibility:public",
-])
-
-licenses([
- "notice", # MIT from expression "MIT"
-])
-
-# Generated Targets
-
-# Unsupported target "benches" with type "bench" omitted
-
-rust_library(
- name = "strsim",
- srcs = glob(["**/*.rs"]),
- crate_features = [
- ],
- crate_root = "src/lib.rs",
- data = [],
- edition = "2015",
- rustc_flags = [
- "--cap-lints=allow",
- ],
- tags = [
- "cargo-raze",
- "crate-name=strsim",
- "manual",
- ],
- version = "0.8.0",
- # buildifier: leave-alone
- deps = [
- ],
-)
-
-# Unsupported target "lib" with type "test" omitted
diff --git a/third_party/cargo/remote/BUILD.strum_macros-0.24.3.bazel b/third_party/cargo/remote/BUILD.strum_macros-0.24.3.bazel
deleted file mode 100644
index 76d48f7..0000000
--- a/third_party/cargo/remote/BUILD.strum_macros-0.24.3.bazel
+++ /dev/null
@@ -1,61 +0,0 @@
-"""
-@generated
-cargo-raze crate build file.
-
-DO NOT EDIT! Replaced on runs of cargo-raze
-"""
-
-# buildifier: disable=load
-load("@bazel_skylib//lib:selects.bzl", "selects")
-
-# buildifier: disable=load
-load(
- "@rules_rust//rust:defs.bzl",
- "rust_binary",
- "rust_library",
- "rust_proc_macro",
- "rust_test",
-)
-
-package(default_visibility = [
- # Public for visibility by "@raze__crate__version//" targets.
- #
- # Prefer access through "//third_party/cargo", which limits external
- # visibility to explicit Cargo.toml dependencies.
- "//visibility:public",
-])
-
-licenses([
- "notice", # MIT from expression "MIT"
-])
-
-# Generated Targets
-
-rust_proc_macro(
- name = "strum_macros",
- srcs = glob(["**/*.rs"]),
- crate_features = [
- ],
- crate_root = "src/lib.rs",
- data = [],
- edition = "2018",
- proc_macro_deps = [
- "@raze__rustversion__1_0_11//:rustversion",
- ],
- rustc_flags = [
- "--cap-lints=allow",
- ],
- tags = [
- "cargo-raze",
- "crate-name=strum_macros",
- "manual",
- ],
- version = "0.24.3",
- # buildifier: leave-alone
- deps = [
- "@raze__heck__0_4_0//:heck",
- "@raze__proc_macro2__1_0_49//:proc_macro2",
- "@raze__quote__1_0_23//:quote",
- "@raze__syn__1_0_107//:syn",
- ],
-)
diff --git a/third_party/cargo/remote/BUILD.supports-color-1.3.1.bazel b/third_party/cargo/remote/BUILD.supports-color-1.3.1.bazel
deleted file mode 100644
index 9176bdd..0000000
--- a/third_party/cargo/remote/BUILD.supports-color-1.3.1.bazel
+++ /dev/null
@@ -1,58 +0,0 @@
-"""
-@generated
-cargo-raze crate build file.
-
-DO NOT EDIT! Replaced on runs of cargo-raze
-"""
-
-# buildifier: disable=load
-load("@bazel_skylib//lib:selects.bzl", "selects")
-
-# buildifier: disable=load
-load(
- "@rules_rust//rust:defs.bzl",
- "rust_binary",
- "rust_library",
- "rust_proc_macro",
- "rust_test",
-)
-
-package(default_visibility = [
- # Public for visibility by "@raze__crate__version//" targets.
- #
- # Prefer access through "//third_party/cargo", which limits external
- # visibility to explicit Cargo.toml dependencies.
- "//visibility:public",
-])
-
-licenses([
- "notice", # Apache-2.0 from expression "Apache-2.0"
-])
-
-# Generated Targets
-
-rust_library(
- name = "supports_color",
- srcs = glob(["**/*.rs"]),
- crate_features = [
- ],
- crate_root = "src/lib.rs",
- data = [],
- edition = "2018",
- rustc_flags = [
- "--cap-lints=allow",
- ],
- tags = [
- "cargo-raze",
- "crate-name=supports-color",
- "manual",
- ],
- version = "1.3.1",
- # buildifier: leave-alone
- deps = [
- "@raze__atty__0_2_14//:atty",
- "@raze__is_ci__1_1_1//:is_ci",
- ],
-)
-
-# Unsupported target "cached" with type "test" omitted
diff --git a/third_party/cargo/remote/BUILD.supports-hyperlinks-1.2.0.bazel b/third_party/cargo/remote/BUILD.supports-hyperlinks-1.2.0.bazel
deleted file mode 100644
index 91019e1..0000000
--- a/third_party/cargo/remote/BUILD.supports-hyperlinks-1.2.0.bazel
+++ /dev/null
@@ -1,56 +0,0 @@
-"""
-@generated
-cargo-raze crate build file.
-
-DO NOT EDIT! Replaced on runs of cargo-raze
-"""
-
-# buildifier: disable=load
-load("@bazel_skylib//lib:selects.bzl", "selects")
-
-# buildifier: disable=load
-load(
- "@rules_rust//rust:defs.bzl",
- "rust_binary",
- "rust_library",
- "rust_proc_macro",
- "rust_test",
-)
-
-package(default_visibility = [
- # Public for visibility by "@raze__crate__version//" targets.
- #
- # Prefer access through "//third_party/cargo", which limits external
- # visibility to explicit Cargo.toml dependencies.
- "//visibility:public",
-])
-
-licenses([
- "notice", # Apache-2.0 from expression "Apache-2.0"
-])
-
-# Generated Targets
-
-rust_library(
- name = "supports_hyperlinks",
- srcs = glob(["**/*.rs"]),
- crate_features = [
- ],
- crate_root = "src/lib.rs",
- data = [],
- compile_data = ["README.md"],
- edition = "2018",
- rustc_flags = [
- "--cap-lints=allow",
- ],
- tags = [
- "cargo-raze",
- "crate-name=supports-hyperlinks",
- "manual",
- ],
- version = "1.2.0",
- # buildifier: leave-alone
- deps = [
- "@raze__atty__0_2_14//:atty",
- ],
-)
diff --git a/third_party/cargo/remote/BUILD.supports-unicode-1.0.2.bazel b/third_party/cargo/remote/BUILD.supports-unicode-1.0.2.bazel
deleted file mode 100644
index 66fd764..0000000
--- a/third_party/cargo/remote/BUILD.supports-unicode-1.0.2.bazel
+++ /dev/null
@@ -1,56 +0,0 @@
-"""
-@generated
-cargo-raze crate build file.
-
-DO NOT EDIT! Replaced on runs of cargo-raze
-"""
-
-# buildifier: disable=load
-load("@bazel_skylib//lib:selects.bzl", "selects")
-
-# buildifier: disable=load
-load(
- "@rules_rust//rust:defs.bzl",
- "rust_binary",
- "rust_library",
- "rust_proc_macro",
- "rust_test",
-)
-
-package(default_visibility = [
- # Public for visibility by "@raze__crate__version//" targets.
- #
- # Prefer access through "//third_party/cargo", which limits external
- # visibility to explicit Cargo.toml dependencies.
- "//visibility:public",
-])
-
-licenses([
- "notice", # Apache-2.0 from expression "Apache-2.0"
-])
-
-# Generated Targets
-
-rust_library(
- name = "supports_unicode",
- srcs = glob(["**/*.rs"]),
- crate_features = [
- ],
- crate_root = "src/lib.rs",
- data = [],
- compile_data = ["README.md"],
- edition = "2018",
- rustc_flags = [
- "--cap-lints=allow",
- ],
- tags = [
- "cargo-raze",
- "crate-name=supports-unicode",
- "manual",
- ],
- version = "1.0.2",
- # buildifier: leave-alone
- deps = [
- "@raze__atty__0_2_14//:atty",
- ],
-)
diff --git a/third_party/cargo/remote/BUILD.syn-1.0.107.bazel b/third_party/cargo/remote/BUILD.syn-1.0.107.bazel
deleted file mode 100644
index f92de71..0000000
--- a/third_party/cargo/remote/BUILD.syn-1.0.107.bazel
+++ /dev/null
@@ -1,163 +0,0 @@
-"""
-@generated
-cargo-raze crate build file.
-
-DO NOT EDIT! Replaced on runs of cargo-raze
-"""
-
-# buildifier: disable=load
-load("@bazel_skylib//lib:selects.bzl", "selects")
-
-# buildifier: disable=load
-load(
- "@rules_rust//rust:defs.bzl",
- "rust_binary",
- "rust_library",
- "rust_proc_macro",
- "rust_test",
-)
-
-package(default_visibility = [
- # Public for visibility by "@raze__crate__version//" targets.
- #
- # Prefer access through "//third_party/cargo", which limits external
- # visibility to explicit Cargo.toml dependencies.
- "//visibility:public",
-])
-
-licenses([
- "notice", # MIT from expression "MIT OR Apache-2.0"
-])
-
-# Generated Targets
-# buildifier: disable=out-of-order-load
-# buildifier: disable=load-on-top
-load(
- "@rules_rust//cargo:cargo_build_script.bzl",
- "cargo_build_script",
-)
-
-cargo_build_script(
- name = "syn_build_script",
- srcs = glob(["**/*.rs"]),
- build_script_env = {
- },
- crate_features = [
- "clone-impls",
- "default",
- "derive",
- "extra-traits",
- "full",
- "parsing",
- "printing",
- "proc-macro",
- "quote",
- ],
- crate_root = "build.rs",
- data = glob(["**"]),
- edition = "2018",
- rustc_flags = [
- "--cap-lints=allow",
- ],
- tags = [
- "cargo-raze",
- "manual",
- ],
- version = "1.0.107",
- visibility = ["//visibility:private"],
- deps = [
- ],
-)
-
-# Unsupported target "file" with type "bench" omitted
-
-# Unsupported target "rust" with type "bench" omitted
-
-rust_library(
- name = "syn",
- srcs = glob(["**/*.rs"]),
- crate_features = [
- "clone-impls",
- "default",
- "derive",
- "extra-traits",
- "full",
- "parsing",
- "printing",
- "proc-macro",
- "quote",
- ],
- crate_root = "src/lib.rs",
- data = [],
- edition = "2018",
- rustc_flags = [
- "--cap-lints=allow",
- ],
- tags = [
- "cargo-raze",
- "crate-name=syn",
- "manual",
- ],
- version = "1.0.107",
- # buildifier: leave-alone
- deps = [
- ":syn_build_script",
- "@raze__proc_macro2__1_0_49//:proc_macro2",
- "@raze__quote__1_0_23//:quote",
- "@raze__unicode_ident__1_0_6//:unicode_ident",
- ],
-)
-
-# Unsupported target "regression" with type "test" omitted
-
-# Unsupported target "test_asyncness" with type "test" omitted
-
-# Unsupported target "test_attribute" with type "test" omitted
-
-# Unsupported target "test_derive_input" with type "test" omitted
-
-# Unsupported target "test_expr" with type "test" omitted
-
-# Unsupported target "test_generics" with type "test" omitted
-
-# Unsupported target "test_grouping" with type "test" omitted
-
-# Unsupported target "test_ident" with type "test" omitted
-
-# Unsupported target "test_item" with type "test" omitted
-
-# Unsupported target "test_iterators" with type "test" omitted
-
-# Unsupported target "test_lit" with type "test" omitted
-
-# Unsupported target "test_meta" with type "test" omitted
-
-# Unsupported target "test_parse_buffer" with type "test" omitted
-
-# Unsupported target "test_parse_stream" with type "test" omitted
-
-# Unsupported target "test_pat" with type "test" omitted
-
-# Unsupported target "test_path" with type "test" omitted
-
-# Unsupported target "test_precedence" with type "test" omitted
-
-# Unsupported target "test_receiver" with type "test" omitted
-
-# Unsupported target "test_round_trip" with type "test" omitted
-
-# Unsupported target "test_shebang" with type "test" omitted
-
-# Unsupported target "test_should_parse" with type "test" omitted
-
-# Unsupported target "test_size" with type "test" omitted
-
-# Unsupported target "test_stmt" with type "test" omitted
-
-# Unsupported target "test_token_trees" with type "test" omitted
-
-# Unsupported target "test_ty" with type "test" omitted
-
-# Unsupported target "test_visibility" with type "test" omitted
-
-# Unsupported target "zzz_stable" with type "test" omitted
diff --git a/third_party/cargo/remote/BUILD.tempfile-3.3.0.bazel b/third_party/cargo/remote/BUILD.tempfile-3.3.0.bazel
deleted file mode 100644
index 99b4a87..0000000
--- a/third_party/cargo/remote/BUILD.tempfile-3.3.0.bazel
+++ /dev/null
@@ -1,77 +0,0 @@
-"""
-@generated
-cargo-raze crate build file.
-
-DO NOT EDIT! Replaced on runs of cargo-raze
-"""
-
-# buildifier: disable=load
-load("@bazel_skylib//lib:selects.bzl", "selects")
-
-# buildifier: disable=load
-load(
- "@rules_rust//rust:defs.bzl",
- "rust_binary",
- "rust_library",
- "rust_proc_macro",
- "rust_test",
-)
-
-package(default_visibility = [
- # Public for visibility by "@raze__crate__version//" targets.
- #
- # Prefer access through "//third_party/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 = "tempfile",
- srcs = glob(["**/*.rs"]),
- aliases = {
- },
- crate_features = [
- ],
- crate_root = "src/lib.rs",
- data = [],
- edition = "2018",
- rustc_flags = [
- "--cap-lints=allow",
- ],
- tags = [
- "cargo-raze",
- "crate-name=tempfile",
- "manual",
- ],
- version = "3.3.0",
- # buildifier: leave-alone
- deps = [
- "@raze__cfg_if__1_0_0//:cfg_if",
- "@raze__fastrand__1_8_0//:fastrand",
- "@raze__remove_dir_all__0_5_3//:remove_dir_all",
- ] + selects.with_or({
- # cfg(any(unix, target_os = "wasi"))
- (
- "@rules_rust//rust/platform:x86_64-unknown-linux-gnu",
- "@rules_rust//rust/platform:arm-unknown-linux-gnueabi",
- "@rules_rust//rust/platform:armv7-unknown-linux-gnueabihf",
- ): [
- "@raze__libc__0_2_138//:libc",
- ],
- "//conditions:default": [],
- }),
-)
-
-# Unsupported target "namedtempfile" with type "test" omitted
-
-# Unsupported target "spooled" with type "test" omitted
-
-# Unsupported target "tempdir" with type "test" omitted
-
-# Unsupported target "tempfile" with type "test" omitted
diff --git a/third_party/cargo/remote/BUILD.termcolor-1.1.3.bazel b/third_party/cargo/remote/BUILD.termcolor-1.1.3.bazel
deleted file mode 100644
index 46b0e30..0000000
--- a/third_party/cargo/remote/BUILD.termcolor-1.1.3.bazel
+++ /dev/null
@@ -1,54 +0,0 @@
-"""
-@generated
-cargo-raze crate build file.
-
-DO NOT EDIT! Replaced on runs of cargo-raze
-"""
-
-# buildifier: disable=load
-load("@bazel_skylib//lib:selects.bzl", "selects")
-
-# buildifier: disable=load
-load(
- "@rules_rust//rust:defs.bzl",
- "rust_binary",
- "rust_library",
- "rust_proc_macro",
- "rust_test",
-)
-
-package(default_visibility = [
- # Public for visibility by "@raze__crate__version//" targets.
- #
- # Prefer access through "//third_party/cargo", which limits external
- # visibility to explicit Cargo.toml dependencies.
- "//visibility:public",
-])
-
-licenses([
- "unencumbered", # Unlicense from expression "Unlicense OR MIT"
-])
-
-# Generated Targets
-
-rust_library(
- name = "termcolor",
- srcs = glob(["**/*.rs"]),
- crate_features = [
- ],
- crate_root = "src/lib.rs",
- data = [],
- edition = "2018",
- rustc_flags = [
- "--cap-lints=allow",
- ],
- tags = [
- "cargo-raze",
- "crate-name=termcolor",
- "manual",
- ],
- version = "1.1.3",
- # buildifier: leave-alone
- deps = [
- ],
-)
diff --git a/third_party/cargo/remote/BUILD.terminal_size-0.1.17.bazel b/third_party/cargo/remote/BUILD.terminal_size-0.1.17.bazel
deleted file mode 100644
index 8e369c5..0000000
--- a/third_party/cargo/remote/BUILD.terminal_size-0.1.17.bazel
+++ /dev/null
@@ -1,68 +0,0 @@
-"""
-@generated
-cargo-raze crate build file.
-
-DO NOT EDIT! Replaced on runs of cargo-raze
-"""
-
-# buildifier: disable=load
-load("@bazel_skylib//lib:selects.bzl", "selects")
-
-# buildifier: disable=load
-load(
- "@rules_rust//rust:defs.bzl",
- "rust_binary",
- "rust_library",
- "rust_proc_macro",
- "rust_test",
-)
-
-package(default_visibility = [
- # Public for visibility by "@raze__crate__version//" targets.
- #
- # Prefer access through "//third_party/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 "get_size" with type "example" omitted
-
-rust_library(
- name = "terminal_size",
- srcs = glob(["**/*.rs"]),
- aliases = {
- },
- crate_features = [
- ],
- crate_root = "src/lib.rs",
- data = [],
- edition = "2018",
- rustc_flags = [
- "--cap-lints=allow",
- ],
- tags = [
- "cargo-raze",
- "crate-name=terminal_size",
- "manual",
- ],
- version = "0.1.17",
- # buildifier: leave-alone
- deps = [
- ] + selects.with_or({
- # cfg(not(windows))
- (
- "@rules_rust//rust/platform:x86_64-unknown-linux-gnu",
- "@rules_rust//rust/platform:arm-unknown-linux-gnueabi",
- "@rules_rust//rust/platform:armv7-unknown-linux-gnueabihf",
- ): [
- "@raze__libc__0_2_138//:libc",
- ],
- "//conditions:default": [],
- }),
-)
diff --git a/third_party/cargo/remote/BUILD.termtree-0.4.0.bazel b/third_party/cargo/remote/BUILD.termtree-0.4.0.bazel
deleted file mode 100644
index 729c894..0000000
--- a/third_party/cargo/remote/BUILD.termtree-0.4.0.bazel
+++ /dev/null
@@ -1,56 +0,0 @@
-"""
-@generated
-cargo-raze crate build file.
-
-DO NOT EDIT! Replaced on runs of cargo-raze
-"""
-
-# buildifier: disable=load
-load("@bazel_skylib//lib:selects.bzl", "selects")
-
-# buildifier: disable=load
-load(
- "@rules_rust//rust:defs.bzl",
- "rust_binary",
- "rust_library",
- "rust_proc_macro",
- "rust_test",
-)
-
-package(default_visibility = [
- # Public for visibility by "@raze__crate__version//" targets.
- #
- # Prefer access through "//third_party/cargo", which limits external
- # visibility to explicit Cargo.toml dependencies.
- "//visibility:public",
-])
-
-licenses([
- "notice", # MIT from expression "MIT"
-])
-
-# Generated Targets
-
-# Unsupported target "tree" with type "example" omitted
-
-rust_library(
- name = "termtree",
- srcs = glob(["**/*.rs"]),
- crate_features = [
- ],
- crate_root = "src/lib.rs",
- data = [],
- edition = "2018",
- rustc_flags = [
- "--cap-lints=allow",
- ],
- tags = [
- "cargo-raze",
- "crate-name=termtree",
- "manual",
- ],
- version = "0.4.0",
- # buildifier: leave-alone
- deps = [
- ],
-)
diff --git a/third_party/cargo/remote/BUILD.test-log-0.2.11.bazel b/third_party/cargo/remote/BUILD.test-log-0.2.11.bazel
deleted file mode 100644
index c113c36..0000000
--- a/third_party/cargo/remote/BUILD.test-log-0.2.11.bazel
+++ /dev/null
@@ -1,59 +0,0 @@
-"""
-@generated
-cargo-raze crate build file.
-
-DO NOT EDIT! Replaced on runs of cargo-raze
-"""
-
-# buildifier: disable=load
-load("@bazel_skylib//lib:selects.bzl", "selects")
-
-# buildifier: disable=load
-load(
- "@rules_rust//rust:defs.bzl",
- "rust_binary",
- "rust_library",
- "rust_proc_macro",
- "rust_test",
-)
-
-package(default_visibility = [
- # Public for visibility by "@raze__crate__version//" targets.
- #
- # Prefer access through "//third_party/cargo", which limits external
- # visibility to explicit Cargo.toml dependencies.
- "//visibility:public",
-])
-
-licenses([
- "notice", # Apache-2.0 from expression "Apache-2.0 OR MIT"
-])
-
-# Generated Targets
-
-rust_proc_macro(
- name = "test_log",
- srcs = glob(["**/*.rs"]),
- crate_features = [
- "default",
- "log",
- ],
- crate_root = "src/lib.rs",
- data = [],
- edition = "2018",
- rustc_flags = [
- "--cap-lints=allow",
- ],
- tags = [
- "cargo-raze",
- "crate-name=test-log",
- "manual",
- ],
- version = "0.2.11",
- # buildifier: leave-alone
- deps = [
- "@raze__proc_macro2__1_0_49//:proc_macro2",
- "@raze__quote__1_0_23//:quote",
- "@raze__syn__1_0_107//:syn",
- ],
-)
diff --git a/third_party/cargo/remote/BUILD.textwrap-0.11.0.bazel b/third_party/cargo/remote/BUILD.textwrap-0.11.0.bazel
deleted file mode 100644
index 301b2f5..0000000
--- a/third_party/cargo/remote/BUILD.textwrap-0.11.0.bazel
+++ /dev/null
@@ -1,63 +0,0 @@
-"""
-@generated
-cargo-raze crate build file.
-
-DO NOT EDIT! Replaced on runs of cargo-raze
-"""
-
-# buildifier: disable=load
-load("@bazel_skylib//lib:selects.bzl", "selects")
-
-# buildifier: disable=load
-load(
- "@rules_rust//rust:defs.bzl",
- "rust_binary",
- "rust_library",
- "rust_proc_macro",
- "rust_test",
-)
-
-package(default_visibility = [
- # Public for visibility by "@raze__crate__version//" targets.
- #
- # Prefer access through "//third_party/cargo", which limits external
- # visibility to explicit Cargo.toml dependencies.
- "//visibility:public",
-])
-
-licenses([
- "notice", # MIT from expression "MIT"
-])
-
-# Generated Targets
-
-# Unsupported target "linear" with type "bench" omitted
-
-# Unsupported target "layout" with type "example" omitted
-
-# Unsupported target "termwidth" with type "example" omitted
-
-rust_library(
- name = "textwrap",
- srcs = glob(["**/*.rs"]),
- crate_features = [
- ],
- crate_root = "src/lib.rs",
- data = [],
- edition = "2015",
- rustc_flags = [
- "--cap-lints=allow",
- ],
- tags = [
- "cargo-raze",
- "crate-name=textwrap",
- "manual",
- ],
- version = "0.11.0",
- # buildifier: leave-alone
- deps = [
- "@raze__unicode_width__0_1_10//:unicode_width",
- ],
-)
-
-# Unsupported target "version-numbers" with type "test" omitted
diff --git a/third_party/cargo/remote/BUILD.textwrap-0.15.2.bazel b/third_party/cargo/remote/BUILD.textwrap-0.15.2.bazel
deleted file mode 100644
index a6ffdb5..0000000
--- a/third_party/cargo/remote/BUILD.textwrap-0.15.2.bazel
+++ /dev/null
@@ -1,73 +0,0 @@
-"""
-@generated
-cargo-raze crate build file.
-
-DO NOT EDIT! Replaced on runs of cargo-raze
-"""
-
-# buildifier: disable=load
-load("@bazel_skylib//lib:selects.bzl", "selects")
-
-# buildifier: disable=load
-load(
- "@rules_rust//rust:defs.bzl",
- "rust_binary",
- "rust_library",
- "rust_proc_macro",
- "rust_test",
-)
-
-package(default_visibility = [
- # Public for visibility by "@raze__crate__version//" targets.
- #
- # Prefer access through "//third_party/cargo", which limits external
- # visibility to explicit Cargo.toml dependencies.
- "//visibility:public",
-])
-
-licenses([
- "notice", # MIT from expression "MIT"
-])
-
-# Generated Targets
-
-# Unsupported target "indent" with type "bench" omitted
-
-# Unsupported target "linear" with type "bench" omitted
-
-# Unsupported target "hyphenation" with type "example" omitted
-
-# Unsupported target "termwidth" with type "example" omitted
-
-rust_library(
- name = "textwrap",
- srcs = glob(["**/*.rs"]),
- crate_features = [
- "default",
- "smawk",
- "unicode-linebreak",
- "unicode-width",
- ],
- crate_root = "src/lib.rs",
- data = [],
- edition = "2018",
- rustc_flags = [
- "--cap-lints=allow",
- ],
- tags = [
- "cargo-raze",
- "crate-name=textwrap",
- "manual",
- ],
- version = "0.15.2",
- # buildifier: leave-alone
- deps = [
- "@raze__smawk__0_3_1//:smawk",
- "@raze__unicode_linebreak__0_1_4//:unicode_linebreak",
- "@raze__unicode_width__0_1_10//:unicode_width",
- ],
-)
-
-# Unsupported target "indent" with type "test" omitted
-
-# Unsupported target "version-numbers" with type "test" omitted
diff --git a/third_party/cargo/remote/BUILD.textwrap-0.16.0.bazel b/third_party/cargo/remote/BUILD.textwrap-0.16.0.bazel
deleted file mode 100644
index 63bc5ce..0000000
--- a/third_party/cargo/remote/BUILD.textwrap-0.16.0.bazel
+++ /dev/null
@@ -1,62 +0,0 @@
-"""
-@generated
-cargo-raze crate build file.
-
-DO NOT EDIT! Replaced on runs of cargo-raze
-"""
-
-# buildifier: disable=load
-load("@bazel_skylib//lib:selects.bzl", "selects")
-
-# buildifier: disable=load
-load(
- "@rules_rust//rust:defs.bzl",
- "rust_binary",
- "rust_library",
- "rust_proc_macro",
- "rust_test",
-)
-
-package(default_visibility = [
- # Public for visibility by "@raze__crate__version//" targets.
- #
- # Prefer access through "//third_party/cargo", which limits external
- # visibility to explicit Cargo.toml dependencies.
- "//visibility:public",
-])
-
-licenses([
- "notice", # MIT from expression "MIT"
-])
-
-# Generated Targets
-
-# Unsupported target "hyphenation" with type "example" omitted
-
-# Unsupported target "termwidth" with type "example" omitted
-
-rust_library(
- name = "textwrap",
- srcs = glob(["**/*.rs"]),
- crate_features = [
- ],
- crate_root = "src/lib.rs",
- data = [],
- edition = "2021",
- rustc_flags = [
- "--cap-lints=allow",
- ],
- tags = [
- "cargo-raze",
- "crate-name=textwrap",
- "manual",
- ],
- version = "0.16.0",
- # buildifier: leave-alone
- deps = [
- ],
-)
-
-# Unsupported target "indent" with type "test" omitted
-
-# Unsupported target "version-numbers" with type "test" omitted
diff --git a/third_party/cargo/remote/BUILD.thiserror-1.0.38.bazel b/third_party/cargo/remote/BUILD.thiserror-1.0.38.bazel
deleted file mode 100644
index 013f92c..0000000
--- a/third_party/cargo/remote/BUILD.thiserror-1.0.38.bazel
+++ /dev/null
@@ -1,113 +0,0 @@
-"""
-@generated
-cargo-raze crate build file.
-
-DO NOT EDIT! Replaced on runs of cargo-raze
-"""
-
-# buildifier: disable=load
-load("@bazel_skylib//lib:selects.bzl", "selects")
-
-# buildifier: disable=load
-load(
- "@rules_rust//rust:defs.bzl",
- "rust_binary",
- "rust_library",
- "rust_proc_macro",
- "rust_test",
-)
-
-package(default_visibility = [
- # Public for visibility by "@raze__crate__version//" targets.
- #
- # Prefer access through "//third_party/cargo", which limits external
- # visibility to explicit Cargo.toml dependencies.
- "//visibility:public",
-])
-
-licenses([
- "notice", # MIT from expression "MIT OR Apache-2.0"
-])
-
-# Generated Targets
-# buildifier: disable=out-of-order-load
-# buildifier: disable=load-on-top
-load(
- "@rules_rust//cargo:cargo_build_script.bzl",
- "cargo_build_script",
-)
-
-cargo_build_script(
- name = "thiserror_build_script",
- srcs = glob(["**/*.rs"]),
- build_script_env = {
- },
- crate_features = [
- ],
- crate_root = "build.rs",
- data = glob(["**"]),
- edition = "2018",
- rustc_flags = [
- "--cap-lints=allow",
- ],
- tags = [
- "cargo-raze",
- "manual",
- ],
- version = "1.0.38",
- visibility = ["//visibility:private"],
- deps = [
- ],
-)
-
-rust_library(
- name = "thiserror",
- srcs = glob(["**/*.rs"]),
- crate_features = [
- ],
- crate_root = "src/lib.rs",
- data = [],
- edition = "2018",
- proc_macro_deps = [
- "@raze__thiserror_impl__1_0_38//:thiserror_impl",
- ],
- rustc_flags = [
- "--cap-lints=allow",
- ],
- tags = [
- "cargo-raze",
- "crate-name=thiserror",
- "manual",
- ],
- version = "1.0.38",
- # buildifier: leave-alone
- deps = [
- ":thiserror_build_script",
- ],
-)
-
-# Unsupported target "compiletest" with type "test" omitted
-
-# Unsupported target "test_backtrace" with type "test" omitted
-
-# Unsupported target "test_deprecated" with type "test" omitted
-
-# Unsupported target "test_display" with type "test" omitted
-
-# Unsupported target "test_error" with type "test" omitted
-
-# Unsupported target "test_expr" with type "test" omitted
-
-# Unsupported target "test_from" with type "test" omitted
-
-# Unsupported target "test_generics" with type "test" omitted
-
-# Unsupported target "test_lints" with type "test" omitted
-
-# Unsupported target "test_option" with type "test" omitted
-
-# Unsupported target "test_path" with type "test" omitted
-
-# Unsupported target "test_source" with type "test" omitted
-
-# Unsupported target "test_transparent" with type "test" omitted
diff --git a/third_party/cargo/remote/BUILD.thiserror-impl-1.0.38.bazel b/third_party/cargo/remote/BUILD.thiserror-impl-1.0.38.bazel
deleted file mode 100644
index 9b034f0..0000000
--- a/third_party/cargo/remote/BUILD.thiserror-impl-1.0.38.bazel
+++ /dev/null
@@ -1,57 +0,0 @@
-"""
-@generated
-cargo-raze crate build file.
-
-DO NOT EDIT! Replaced on runs of cargo-raze
-"""
-
-# buildifier: disable=load
-load("@bazel_skylib//lib:selects.bzl", "selects")
-
-# buildifier: disable=load
-load(
- "@rules_rust//rust:defs.bzl",
- "rust_binary",
- "rust_library",
- "rust_proc_macro",
- "rust_test",
-)
-
-package(default_visibility = [
- # Public for visibility by "@raze__crate__version//" targets.
- #
- # Prefer access through "//third_party/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_proc_macro(
- name = "thiserror_impl",
- srcs = glob(["**/*.rs"]),
- crate_features = [
- ],
- crate_root = "src/lib.rs",
- data = [],
- edition = "2018",
- rustc_flags = [
- "--cap-lints=allow",
- ],
- tags = [
- "cargo-raze",
- "crate-name=thiserror-impl",
- "manual",
- ],
- version = "1.0.38",
- # buildifier: leave-alone
- deps = [
- "@raze__proc_macro2__1_0_49//:proc_macro2",
- "@raze__quote__1_0_23//:quote",
- "@raze__syn__1_0_107//:syn",
- ],
-)
diff --git a/third_party/cargo/remote/BUILD.toml-0.5.10.bazel b/third_party/cargo/remote/BUILD.toml-0.5.10.bazel
deleted file mode 100644
index 0978c8f..0000000
--- a/third_party/cargo/remote/BUILD.toml-0.5.10.bazel
+++ /dev/null
@@ -1,64 +0,0 @@
-"""
-@generated
-cargo-raze crate build file.
-
-DO NOT EDIT! Replaced on runs of cargo-raze
-"""
-
-# buildifier: disable=load
-load("@bazel_skylib//lib:selects.bzl", "selects")
-
-# buildifier: disable=load
-load(
- "@rules_rust//rust:defs.bzl",
- "rust_binary",
- "rust_library",
- "rust_proc_macro",
- "rust_test",
-)
-
-package(default_visibility = [
- # Public for visibility by "@raze__crate__version//" targets.
- #
- # Prefer access through "//third_party/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 "decode" with type "example" omitted
-
-# Unsupported target "enum_external" with type "example" omitted
-
-# Unsupported target "toml2json" with type "example" omitted
-
-rust_library(
- name = "toml",
- srcs = glob(["**/*.rs"]),
- crate_features = [
- "default",
- ],
- crate_root = "src/lib.rs",
- data = [],
- edition = "2018",
- rustc_flags = [
- "--cap-lints=allow",
- ],
- tags = [
- "cargo-raze",
- "crate-name=toml",
- "manual",
- ],
- version = "0.5.10",
- # buildifier: leave-alone
- deps = [
- "@raze__serde__1_0_151//:serde",
- ],
-)
-
-# Unsupported target "enum_external_deserialize" with type "test" omitted
diff --git a/third_party/cargo/remote/BUILD.trybuild-1.0.73.bazel b/third_party/cargo/remote/BUILD.trybuild-1.0.73.bazel
deleted file mode 100644
index 5abe878..0000000
--- a/third_party/cargo/remote/BUILD.trybuild-1.0.73.bazel
+++ /dev/null
@@ -1,95 +0,0 @@
-"""
-@generated
-cargo-raze crate build file.
-
-DO NOT EDIT! Replaced on runs of cargo-raze
-"""
-
-# buildifier: disable=load
-load("@bazel_skylib//lib:selects.bzl", "selects")
-
-# buildifier: disable=load
-load(
- "@rules_rust//rust:defs.bzl",
- "rust_binary",
- "rust_library",
- "rust_proc_macro",
- "rust_test",
-)
-
-package(default_visibility = [
- # Public for visibility by "@raze__crate__version//" targets.
- #
- # Prefer access through "//third_party/cargo", which limits external
- # visibility to explicit Cargo.toml dependencies.
- "//visibility:public",
-])
-
-licenses([
- "notice", # MIT from expression "MIT OR Apache-2.0"
-])
-
-# Generated Targets
-# buildifier: disable=out-of-order-load
-# buildifier: disable=load-on-top
-load(
- "@rules_rust//cargo:cargo_build_script.bzl",
- "cargo_build_script",
-)
-
-cargo_build_script(
- name = "trybuild_build_script",
- srcs = glob(["**/*.rs"]),
- build_script_env = {
- },
- crate_features = [
- ],
- crate_root = "build.rs",
- data = glob(["**"]),
- edition = "2018",
- rustc_flags = [
- "--cap-lints=allow",
- ],
- tags = [
- "cargo-raze",
- "manual",
- ],
- version = "1.0.73",
- visibility = ["//visibility:private"],
- deps = [
- ],
-)
-
-rust_library(
- name = "trybuild",
- srcs = glob(["**/*.rs"]),
- crate_features = [
- ],
- crate_root = "src/lib.rs",
- data = [],
- edition = "2018",
- proc_macro_deps = [
- "@raze__serde_derive__1_0_151//:serde_derive",
- ],
- rustc_flags = [
- "--cap-lints=allow",
- ],
- tags = [
- "cargo-raze",
- "crate-name=trybuild",
- "manual",
- ],
- version = "1.0.73",
- # buildifier: leave-alone
- deps = [
- ":trybuild_build_script",
- "@raze__glob__0_3_0//:glob",
- "@raze__once_cell__1_16_0//:once_cell",
- "@raze__serde__1_0_151//:serde",
- "@raze__serde_json__1_0_91//:serde_json",
- "@raze__termcolor__1_1_3//:termcolor",
- "@raze__toml__0_5_10//:toml",
- ],
-)
-
-# Unsupported target "test" with type "test" omitted
diff --git a/third_party/cargo/remote/BUILD.unicode-ident-1.0.6.bazel b/third_party/cargo/remote/BUILD.unicode-ident-1.0.6.bazel
deleted file mode 100644
index 54a29e5..0000000
--- a/third_party/cargo/remote/BUILD.unicode-ident-1.0.6.bazel
+++ /dev/null
@@ -1,60 +0,0 @@
-"""
-@generated
-cargo-raze crate build file.
-
-DO NOT EDIT! Replaced on runs of cargo-raze
-"""
-
-# buildifier: disable=load
-load("@bazel_skylib//lib:selects.bzl", "selects")
-
-# buildifier: disable=load
-load(
- "@rules_rust//rust:defs.bzl",
- "rust_binary",
- "rust_library",
- "rust_proc_macro",
- "rust_test",
-)
-
-package(default_visibility = [
- # Public for visibility by "@raze__crate__version//" targets.
- #
- # Prefer access through "//third_party/cargo", which limits external
- # visibility to explicit Cargo.toml dependencies.
- "//visibility:public",
-])
-
-licenses([
- "notice", # MIT from expression "(MIT OR Apache-2.0) AND Unicode-DFS-2016"
-])
-
-# Generated Targets
-
-# Unsupported target "xid" with type "bench" omitted
-
-rust_library(
- name = "unicode_ident",
- srcs = glob(["**/*.rs"]),
- crate_features = [
- ],
- crate_root = "src/lib.rs",
- data = [],
- edition = "2018",
- rustc_flags = [
- "--cap-lints=allow",
- ],
- tags = [
- "cargo-raze",
- "crate-name=unicode-ident",
- "manual",
- ],
- version = "1.0.6",
- # buildifier: leave-alone
- deps = [
- ],
-)
-
-# Unsupported target "compare" with type "test" omitted
-
-# Unsupported target "static_size" with type "test" omitted
diff --git a/third_party/cargo/remote/BUILD.unicode-linebreak-0.1.4.bazel b/third_party/cargo/remote/BUILD.unicode-linebreak-0.1.4.bazel
deleted file mode 100644
index 4e16df0..0000000
--- a/third_party/cargo/remote/BUILD.unicode-linebreak-0.1.4.bazel
+++ /dev/null
@@ -1,86 +0,0 @@
-"""
-@generated
-cargo-raze crate build file.
-
-DO NOT EDIT! Replaced on runs of cargo-raze
-"""
-
-# buildifier: disable=load
-load("@bazel_skylib//lib:selects.bzl", "selects")
-
-# buildifier: disable=load
-load(
- "@rules_rust//rust:defs.bzl",
- "rust_binary",
- "rust_library",
- "rust_proc_macro",
- "rust_test",
-)
-
-package(default_visibility = [
- # Public for visibility by "@raze__crate__version//" targets.
- #
- # Prefer access through "//third_party/cargo", which limits external
- # visibility to explicit Cargo.toml dependencies.
- "//visibility:public",
-])
-
-licenses([
- "notice", # Apache-2.0 from expression "Apache-2.0"
-])
-
-# Generated Targets
-# buildifier: disable=out-of-order-load
-# buildifier: disable=load-on-top
-load(
- "@rules_rust//cargo:cargo_build_script.bzl",
- "cargo_build_script",
-)
-
-cargo_build_script(
- name = "unicode_linebreak_build_script",
- srcs = glob(["**/*.rs"]),
- build_script_env = {
- },
- crate_features = [
- ],
- crate_root = "build.rs",
- data = glob(["**"]),
- edition = "2021",
- rustc_flags = [
- "--cap-lints=allow",
- ],
- tags = [
- "cargo-raze",
- "manual",
- ],
- version = "0.1.4",
- visibility = ["//visibility:private"],
- deps = [
- "@raze__hashbrown__0_12_3//:hashbrown",
- "@raze__regex__1_7_0//:regex",
- ],
-)
-
-rust_library(
- name = "unicode_linebreak",
- srcs = glob(["**/*.rs"]),
- crate_features = [
- ],
- crate_root = "src/lib.rs",
- data = [],
- edition = "2021",
- rustc_flags = [
- "--cap-lints=allow",
- ],
- tags = [
- "cargo-raze",
- "crate-name=unicode-linebreak",
- "manual",
- ],
- version = "0.1.4",
- # buildifier: leave-alone
- deps = [
- ":unicode_linebreak_build_script",
- ],
-)
diff --git a/third_party/cargo/remote/BUILD.unicode-width-0.1.10.bazel b/third_party/cargo/remote/BUILD.unicode-width-0.1.10.bazel
deleted file mode 100644
index b233c2d..0000000
--- a/third_party/cargo/remote/BUILD.unicode-width-0.1.10.bazel
+++ /dev/null
@@ -1,55 +0,0 @@
-"""
-@generated
-cargo-raze crate build file.
-
-DO NOT EDIT! Replaced on runs of cargo-raze
-"""
-
-# buildifier: disable=load
-load("@bazel_skylib//lib:selects.bzl", "selects")
-
-# buildifier: disable=load
-load(
- "@rules_rust//rust:defs.bzl",
- "rust_binary",
- "rust_library",
- "rust_proc_macro",
- "rust_test",
-)
-
-package(default_visibility = [
- # Public for visibility by "@raze__crate__version//" targets.
- #
- # Prefer access through "//third_party/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 = "unicode_width",
- srcs = glob(["**/*.rs"]),
- crate_features = [
- "default",
- ],
- crate_root = "src/lib.rs",
- data = [],
- edition = "2015",
- rustc_flags = [
- "--cap-lints=allow",
- ],
- tags = [
- "cargo-raze",
- "crate-name=unicode-width",
- "manual",
- ],
- version = "0.1.10",
- # buildifier: leave-alone
- deps = [
- ],
-)
diff --git a/third_party/cargo/remote/BUILD.uuid-1.2.2.bazel b/third_party/cargo/remote/BUILD.uuid-1.2.2.bazel
deleted file mode 100644
index f735a51..0000000
--- a/third_party/cargo/remote/BUILD.uuid-1.2.2.bazel
+++ /dev/null
@@ -1,72 +0,0 @@
-"""
-@generated
-cargo-raze crate build file.
-
-DO NOT EDIT! Replaced on runs of cargo-raze
-"""
-
-# buildifier: disable=load
-load("@bazel_skylib//lib:selects.bzl", "selects")
-
-# buildifier: disable=load
-load(
- "@rules_rust//rust:defs.bzl",
- "rust_binary",
- "rust_library",
- "rust_proc_macro",
- "rust_test",
-)
-
-package(default_visibility = [
- # Public for visibility by "@raze__crate__version//" targets.
- #
- # Prefer access through "//third_party/cargo", which limits external
- # visibility to explicit Cargo.toml dependencies.
- "//visibility:public",
-])
-
-licenses([
- "notice", # Apache-2.0 from expression "Apache-2.0 OR MIT"
-])
-
-# Generated Targets
-
-# Unsupported target "format_str" with type "bench" omitted
-
-# Unsupported target "parse_str" with type "bench" omitted
-
-# Unsupported target "v4" with type "bench" omitted
-
-# Unsupported target "random_uuid" with type "example" omitted
-
-# Unsupported target "sortable_uuid" with type "example" omitted
-
-# Unsupported target "uuid_macro" with type "example" omitted
-
-# Unsupported target "windows_guid" with type "example" omitted
-
-rust_library(
- name = "uuid",
- srcs = glob(["**/*.rs"]),
- crate_features = [
- "default",
- "std",
- ],
- crate_root = "src/lib.rs",
- data = [],
- edition = "2018",
- rustc_flags = [
- "--cap-lints=allow",
- ],
- tags = [
- "cargo-raze",
- "crate-name=uuid",
- "manual",
- ],
- version = "1.2.2",
- # buildifier: leave-alone
- deps = [
- ],
-)
-
-# Unsupported target "macros" with type "test" omitted
diff --git a/third_party/cargo/remote/BUILD.vec_map-0.8.2.bazel b/third_party/cargo/remote/BUILD.vec_map-0.8.2.bazel
deleted file mode 100644
index 5c0c33c..0000000
--- a/third_party/cargo/remote/BUILD.vec_map-0.8.2.bazel
+++ /dev/null
@@ -1,54 +0,0 @@
-"""
-@generated
-cargo-raze crate build file.
-
-DO NOT EDIT! Replaced on runs of cargo-raze
-"""
-
-# buildifier: disable=load
-load("@bazel_skylib//lib:selects.bzl", "selects")
-
-# buildifier: disable=load
-load(
- "@rules_rust//rust:defs.bzl",
- "rust_binary",
- "rust_library",
- "rust_proc_macro",
- "rust_test",
-)
-
-package(default_visibility = [
- # Public for visibility by "@raze__crate__version//" targets.
- #
- # Prefer access through "//third_party/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 = "vec_map",
- srcs = glob(["**/*.rs"]),
- crate_features = [
- ],
- crate_root = "src/lib.rs",
- data = [],
- edition = "2015",
- rustc_flags = [
- "--cap-lints=allow",
- ],
- tags = [
- "cargo-raze",
- "crate-name=vec_map",
- "manual",
- ],
- version = "0.8.2",
- # buildifier: leave-alone
- deps = [
- ],
-)
diff --git a/third_party/cargo/remote/BUILD.version_check-0.9.4.bazel b/third_party/cargo/remote/BUILD.version_check-0.9.4.bazel
deleted file mode 100644
index a41e836..0000000
--- a/third_party/cargo/remote/BUILD.version_check-0.9.4.bazel
+++ /dev/null
@@ -1,54 +0,0 @@
-"""
-@generated
-cargo-raze crate build file.
-
-DO NOT EDIT! Replaced on runs of cargo-raze
-"""
-
-# buildifier: disable=load
-load("@bazel_skylib//lib:selects.bzl", "selects")
-
-# buildifier: disable=load
-load(
- "@rules_rust//rust:defs.bzl",
- "rust_binary",
- "rust_library",
- "rust_proc_macro",
- "rust_test",
-)
-
-package(default_visibility = [
- # Public for visibility by "@raze__crate__version//" targets.
- #
- # Prefer access through "//third_party/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 = "version_check",
- srcs = glob(["**/*.rs"]),
- crate_features = [
- ],
- crate_root = "src/lib.rs",
- data = [],
- edition = "2015",
- rustc_flags = [
- "--cap-lints=allow",
- ],
- tags = [
- "cargo-raze",
- "crate-name=version_check",
- "manual",
- ],
- version = "0.9.4",
- # buildifier: leave-alone
- deps = [
- ],
-)
diff --git a/third_party/cargo/remote/BUILD.wait-timeout-0.2.0.bazel b/third_party/cargo/remote/BUILD.wait-timeout-0.2.0.bazel
deleted file mode 100644
index 97a43fa..0000000
--- a/third_party/cargo/remote/BUILD.wait-timeout-0.2.0.bazel
+++ /dev/null
@@ -1,179 +0,0 @@
-"""
-@generated
-cargo-raze crate build file.
-
-DO NOT EDIT! Replaced on runs of cargo-raze
-"""
-
-# buildifier: disable=load
-load("@bazel_skylib//lib:selects.bzl", "selects")
-
-# buildifier: disable=load
-load(
- "@rules_rust//rust:defs.bzl",
- "rust_binary",
- "rust_library",
- "rust_proc_macro",
- "rust_test",
-)
-
-package(default_visibility = [
- # Public for visibility by "@raze__crate__version//" targets.
- #
- # Prefer access through "//third_party/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_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_exit",
- srcs = glob(["**/*.rs"]),
- aliases = {
- },
- crate_features = [
- ],
- crate_root = "src/bin/exit.rs",
- data = [],
- edition = "2015",
- rustc_flags = [
- "--cap-lints=allow",
- ],
- tags = [
- "cargo-raze",
- "crate-name=exit",
- "manual",
- ],
- version = "0.2.0",
- # buildifier: leave-alone
- deps = [
- ":wait_timeout",
- ] + selects.with_or({
- # cfg(unix)
- (
- "@rules_rust//rust/platform:x86_64-unknown-linux-gnu",
- "@rules_rust//rust/platform:arm-unknown-linux-gnueabi",
- "@rules_rust//rust/platform:armv7-unknown-linux-gnueabihf",
- ): [
- "@raze__libc__0_2_138//:libc",
- ],
- "//conditions:default": [],
- }),
-)
-
-rust_binary(
- # Prefix bin name to disambiguate from (probable) collision with lib name
- # N.B.: The exact form of this is subject to change.
- name = "cargo_bin_reader",
- srcs = glob(["**/*.rs"]),
- aliases = {
- },
- crate_features = [
- ],
- crate_root = "src/bin/reader.rs",
- data = [],
- edition = "2015",
- rustc_flags = [
- "--cap-lints=allow",
- ],
- tags = [
- "cargo-raze",
- "crate-name=reader",
- "manual",
- ],
- version = "0.2.0",
- # buildifier: leave-alone
- deps = [
- ":wait_timeout",
- ] + selects.with_or({
- # cfg(unix)
- (
- "@rules_rust//rust/platform:x86_64-unknown-linux-gnu",
- "@rules_rust//rust/platform:arm-unknown-linux-gnueabi",
- "@rules_rust//rust/platform:armv7-unknown-linux-gnueabihf",
- ): [
- "@raze__libc__0_2_138//:libc",
- ],
- "//conditions:default": [],
- }),
-)
-
-rust_binary(
- # Prefix bin name to disambiguate from (probable) collision with lib name
- # N.B.: The exact form of this is subject to change.
- name = "cargo_bin_sleep",
- srcs = glob(["**/*.rs"]),
- aliases = {
- },
- crate_features = [
- ],
- crate_root = "src/bin/sleep.rs",
- data = [],
- edition = "2015",
- rustc_flags = [
- "--cap-lints=allow",
- ],
- tags = [
- "cargo-raze",
- "crate-name=sleep",
- "manual",
- ],
- version = "0.2.0",
- # buildifier: leave-alone
- deps = [
- ":wait_timeout",
- ] + selects.with_or({
- # cfg(unix)
- (
- "@rules_rust//rust/platform:x86_64-unknown-linux-gnu",
- "@rules_rust//rust/platform:arm-unknown-linux-gnueabi",
- "@rules_rust//rust/platform:armv7-unknown-linux-gnueabihf",
- ): [
- "@raze__libc__0_2_138//:libc",
- ],
- "//conditions:default": [],
- }),
-)
-
-rust_library(
- name = "wait_timeout",
- srcs = glob(["**/*.rs"]),
- aliases = {
- },
- crate_features = [
- ],
- crate_root = "src/lib.rs",
- data = [],
- edition = "2015",
- rustc_flags = [
- "--cap-lints=allow",
- ],
- tags = [
- "cargo-raze",
- "crate-name=wait-timeout",
- "manual",
- ],
- version = "0.2.0",
- # buildifier: leave-alone
- deps = [
- ] + selects.with_or({
- # cfg(unix)
- (
- "@rules_rust//rust/platform:x86_64-unknown-linux-gnu",
- "@rules_rust//rust/platform:arm-unknown-linux-gnueabi",
- "@rules_rust//rust/platform:armv7-unknown-linux-gnueabihf",
- ): [
- "@raze__libc__0_2_138//:libc",
- ],
- "//conditions:default": [],
- }),
-)
-
-# Unsupported target "smoke" with type "test" omitted
diff --git a/third_party/cargo/remote/BUILD.wasi-0.11.0+wasi-snapshot-preview1.bazel b/third_party/cargo/remote/BUILD.wasi-0.11.0+wasi-snapshot-preview1.bazel
deleted file mode 100644
index 595feff..0000000
--- a/third_party/cargo/remote/BUILD.wasi-0.11.0+wasi-snapshot-preview1.bazel
+++ /dev/null
@@ -1,56 +0,0 @@
-"""
-@generated
-cargo-raze crate build file.
-
-DO NOT EDIT! Replaced on runs of cargo-raze
-"""
-
-# buildifier: disable=load
-load("@bazel_skylib//lib:selects.bzl", "selects")
-
-# buildifier: disable=load
-load(
- "@rules_rust//rust:defs.bzl",
- "rust_binary",
- "rust_library",
- "rust_proc_macro",
- "rust_test",
-)
-
-package(default_visibility = [
- # Public for visibility by "@raze__crate__version//" targets.
- #
- # Prefer access through "//third_party/cargo", which limits external
- # visibility to explicit Cargo.toml dependencies.
- "//visibility:public",
-])
-
-licenses([
- "notice", # Apache-2.0 from expression "Apache-2.0 OR (Apache-2.0 OR MIT)"
-])
-
-# Generated Targets
-
-rust_library(
- name = "wasi",
- srcs = glob(["**/*.rs"]),
- crate_features = [
- "default",
- "std",
- ],
- crate_root = "src/lib.rs",
- data = [],
- edition = "2018",
- rustc_flags = [
- "--cap-lints=allow",
- ],
- tags = [
- "cargo-raze",
- "crate-name=wasi",
- "manual",
- ],
- version = "0.11.0+wasi-snapshot-preview1",
- # buildifier: leave-alone
- deps = [
- ],
-)
diff --git a/third_party/cargo/remote/BUILD.which-3.1.1.bazel b/third_party/cargo/remote/BUILD.which-3.1.1.bazel
deleted file mode 100644
index b59b68b..0000000
--- a/third_party/cargo/remote/BUILD.which-3.1.1.bazel
+++ /dev/null
@@ -1,57 +0,0 @@
-"""
-@generated
-cargo-raze crate build file.
-
-DO NOT EDIT! Replaced on runs of cargo-raze
-"""
-
-# buildifier: disable=load
-load("@bazel_skylib//lib:selects.bzl", "selects")
-
-# buildifier: disable=load
-load(
- "@rules_rust//rust:defs.bzl",
- "rust_binary",
- "rust_library",
- "rust_proc_macro",
- "rust_test",
-)
-
-package(default_visibility = [
- # Public for visibility by "@raze__crate__version//" targets.
- #
- # Prefer access through "//third_party/cargo", which limits external
- # visibility to explicit Cargo.toml dependencies.
- "//visibility:public",
-])
-
-licenses([
- "notice", # MIT from expression "MIT"
-])
-
-# Generated Targets
-
-rust_library(
- name = "which",
- srcs = glob(["**/*.rs"]),
- crate_features = [
- ],
- crate_root = "src/lib.rs",
- data = [],
- edition = "2015",
- rustc_flags = [
- "--cap-lints=allow",
- ],
- tags = [
- "cargo-raze",
- "crate-name=which",
- "manual",
- ],
- version = "3.1.1",
- # buildifier: leave-alone
- deps = [
- "@raze__libc__0_2_138//:libc",
- ],
-)
-
-# Unsupported target "basic" with type "test" omitted
diff --git a/third_party/cargo/remote/BUILD.which-4.3.0.bazel b/third_party/cargo/remote/BUILD.which-4.3.0.bazel
deleted file mode 100644
index e4703a8..0000000
--- a/third_party/cargo/remote/BUILD.which-4.3.0.bazel
+++ /dev/null
@@ -1,58 +0,0 @@
-"""
-@generated
-cargo-raze crate build file.
-
-DO NOT EDIT! Replaced on runs of cargo-raze
-"""
-
-# buildifier: disable=load
-load("@bazel_skylib//lib:selects.bzl", "selects")
-
-# buildifier: disable=load
-load(
- "@rules_rust//rust:defs.bzl",
- "rust_binary",
- "rust_library",
- "rust_proc_macro",
- "rust_test",
-)
-
-package(default_visibility = [
- # Public for visibility by "@raze__crate__version//" targets.
- #
- # Prefer access through "//third_party/cargo", which limits external
- # visibility to explicit Cargo.toml dependencies.
- "//visibility:public",
-])
-
-licenses([
- "notice", # MIT from expression "MIT"
-])
-
-# Generated Targets
-
-rust_library(
- name = "which",
- srcs = glob(["**/*.rs"]),
- crate_features = [
- ],
- crate_root = "src/lib.rs",
- data = [],
- edition = "2018",
- rustc_flags = [
- "--cap-lints=allow",
- ],
- tags = [
- "cargo-raze",
- "crate-name=which",
- "manual",
- ],
- version = "4.3.0",
- # buildifier: leave-alone
- deps = [
- "@raze__either__1_8_0//:either",
- "@raze__libc__0_2_138//:libc",
- ],
-)
-
-# Unsupported target "basic" with type "test" omitted
diff --git a/third_party/cargo/remote/BUILD.winapi-0.3.9.bazel b/third_party/cargo/remote/BUILD.winapi-0.3.9.bazel
deleted file mode 100644
index b162b5d..0000000
--- a/third_party/cargo/remote/BUILD.winapi-0.3.9.bazel
+++ /dev/null
@@ -1,110 +0,0 @@
-"""
-@generated
-cargo-raze crate build file.
-
-DO NOT EDIT! Replaced on runs of cargo-raze
-"""
-
-# buildifier: disable=load
-load("@bazel_skylib//lib:selects.bzl", "selects")
-
-# buildifier: disable=load
-load(
- "@rules_rust//rust:defs.bzl",
- "rust_binary",
- "rust_library",
- "rust_proc_macro",
- "rust_test",
-)
-
-package(default_visibility = [
- # Public for visibility by "@raze__crate__version//" targets.
- #
- # Prefer access through "//third_party/cargo", which limits external
- # visibility to explicit Cargo.toml dependencies.
- "//visibility:public",
-])
-
-licenses([
- "notice", # MIT from expression "MIT OR Apache-2.0"
-])
-
-# Generated Targets
-# buildifier: disable=out-of-order-load
-# buildifier: disable=load-on-top
-load(
- "@rules_rust//cargo:cargo_build_script.bzl",
- "cargo_build_script",
-)
-
-cargo_build_script(
- name = "winapi_build_script",
- srcs = glob(["**/*.rs"]),
- build_script_env = {
- },
- crate_features = [
- "consoleapi",
- "errhandlingapi",
- "fileapi",
- "handleapi",
- "libloaderapi",
- "minwinbase",
- "minwindef",
- "processenv",
- "std",
- "winbase",
- "wincon",
- "winerror",
- "winnt",
- ],
- crate_root = "build.rs",
- data = glob(["**"]),
- edition = "2015",
- rustc_flags = [
- "--cap-lints=allow",
- ],
- tags = [
- "cargo-raze",
- "manual",
- ],
- version = "0.3.9",
- visibility = ["//visibility:private"],
- deps = [
- ],
-)
-
-rust_library(
- name = "winapi",
- srcs = glob(["**/*.rs"]),
- crate_features = [
- "consoleapi",
- "errhandlingapi",
- "fileapi",
- "handleapi",
- "libloaderapi",
- "minwinbase",
- "minwindef",
- "processenv",
- "std",
- "winbase",
- "wincon",
- "winerror",
- "winnt",
- ],
- crate_root = "src/lib.rs",
- data = [],
- edition = "2015",
- rustc_flags = [
- "--cap-lints=allow",
- ],
- tags = [
- "cargo-raze",
- "crate-name=winapi",
- "manual",
- ],
- version = "0.3.9",
- # buildifier: leave-alone
- deps = [
- ":winapi_build_script",
- ],
-)
diff --git a/third_party/cargo/remote/BUILD.winapi-i686-pc-windows-gnu-0.4.0.bazel b/third_party/cargo/remote/BUILD.winapi-i686-pc-windows-gnu-0.4.0.bazel
deleted file mode 100644
index bc84b8a..0000000
--- a/third_party/cargo/remote/BUILD.winapi-i686-pc-windows-gnu-0.4.0.bazel
+++ /dev/null
@@ -1,84 +0,0 @@
-"""
-@generated
-cargo-raze crate build file.
-
-DO NOT EDIT! Replaced on runs of cargo-raze
-"""
-
-# buildifier: disable=load
-load("@bazel_skylib//lib:selects.bzl", "selects")
-
-# buildifier: disable=load
-load(
- "@rules_rust//rust:defs.bzl",
- "rust_binary",
- "rust_library",
- "rust_proc_macro",
- "rust_test",
-)
-
-package(default_visibility = [
- # Public for visibility by "@raze__crate__version//" targets.
- #
- # Prefer access through "//third_party/cargo", which limits external
- # visibility to explicit Cargo.toml dependencies.
- "//visibility:public",
-])
-
-licenses([
- "notice", # MIT from expression "MIT OR Apache-2.0"
-])
-
-# Generated Targets
-# buildifier: disable=out-of-order-load
-# buildifier: disable=load-on-top
-load(
- "@rules_rust//cargo:cargo_build_script.bzl",
- "cargo_build_script",
-)
-
-cargo_build_script(
- name = "winapi_i686_pc_windows_gnu_build_script",
- srcs = glob(["**/*.rs"]),
- build_script_env = {
- },
- crate_features = [
- ],
- crate_root = "build.rs",
- data = glob(["**"]),
- edition = "2015",
- rustc_flags = [
- "--cap-lints=allow",
- ],
- tags = [
- "cargo-raze",
- "manual",
- ],
- version = "0.4.0",
- visibility = ["//visibility:private"],
- deps = [
- ],
-)
-
-rust_library(
- name = "winapi_i686_pc_windows_gnu",
- srcs = glob(["**/*.rs"]),
- crate_features = [
- ],
- crate_root = "src/lib.rs",
- data = [],
- edition = "2015",
- rustc_flags = [
- "--cap-lints=allow",
- ],
- tags = [
- "cargo-raze",
- "crate-name=winapi-i686-pc-windows-gnu",
- "manual",
- ],
- version = "0.4.0",
- # buildifier: leave-alone
- deps = [
- ":winapi_i686_pc_windows_gnu_build_script",
- ],
-)
diff --git a/third_party/cargo/remote/BUILD.winapi-util-0.1.5.bazel b/third_party/cargo/remote/BUILD.winapi-util-0.1.5.bazel
deleted file mode 100644
index f07b9d0..0000000
--- a/third_party/cargo/remote/BUILD.winapi-util-0.1.5.bazel
+++ /dev/null
@@ -1,54 +0,0 @@
-"""
-@generated
-cargo-raze crate build file.
-
-DO NOT EDIT! Replaced on runs of cargo-raze
-"""
-
-# buildifier: disable=load
-load("@bazel_skylib//lib:selects.bzl", "selects")
-
-# buildifier: disable=load
-load(
- "@rules_rust//rust:defs.bzl",
- "rust_binary",
- "rust_library",
- "rust_proc_macro",
- "rust_test",
-)
-
-package(default_visibility = [
- # Public for visibility by "@raze__crate__version//" targets.
- #
- # Prefer access through "//third_party/cargo", which limits external
- # visibility to explicit Cargo.toml dependencies.
- "//visibility:public",
-])
-
-licenses([
- "unencumbered", # Unlicense from expression "Unlicense OR MIT"
-])
-
-# Generated Targets
-
-rust_library(
- name = "winapi_util",
- srcs = glob(["**/*.rs"]),
- crate_features = [
- ],
- crate_root = "src/lib.rs",
- data = [],
- edition = "2018",
- rustc_flags = [
- "--cap-lints=allow",
- ],
- tags = [
- "cargo-raze",
- "crate-name=winapi-util",
- "manual",
- ],
- version = "0.1.5",
- # buildifier: leave-alone
- deps = [
- ],
-)
diff --git a/third_party/cargo/remote/BUILD.winapi-x86_64-pc-windows-gnu-0.4.0.bazel b/third_party/cargo/remote/BUILD.winapi-x86_64-pc-windows-gnu-0.4.0.bazel
deleted file mode 100644
index 3c8a01b..0000000
--- a/third_party/cargo/remote/BUILD.winapi-x86_64-pc-windows-gnu-0.4.0.bazel
+++ /dev/null
@@ -1,84 +0,0 @@
-"""
-@generated
-cargo-raze crate build file.
-
-DO NOT EDIT! Replaced on runs of cargo-raze
-"""
-
-# buildifier: disable=load
-load("@bazel_skylib//lib:selects.bzl", "selects")
-
-# buildifier: disable=load
-load(
- "@rules_rust//rust:defs.bzl",
- "rust_binary",
- "rust_library",
- "rust_proc_macro",
- "rust_test",
-)
-
-package(default_visibility = [
- # Public for visibility by "@raze__crate__version//" targets.
- #
- # Prefer access through "//third_party/cargo", which limits external
- # visibility to explicit Cargo.toml dependencies.
- "//visibility:public",
-])
-
-licenses([
- "notice", # MIT from expression "MIT OR Apache-2.0"
-])
-
-# Generated Targets
-# buildifier: disable=out-of-order-load
-# buildifier: disable=load-on-top
-load(
- "@rules_rust//cargo:cargo_build_script.bzl",
- "cargo_build_script",
-)
-
-cargo_build_script(
- name = "winapi_x86_64_pc_windows_gnu_build_script",
- srcs = glob(["**/*.rs"]),
- build_script_env = {
- },
- crate_features = [
- ],
- crate_root = "build.rs",
- data = glob(["**"]),
- edition = "2015",
- rustc_flags = [
- "--cap-lints=allow",
- ],
- tags = [
- "cargo-raze",
- "manual",
- ],
- version = "0.4.0",
- visibility = ["//visibility:private"],
- deps = [
- ],
-)
-
-rust_library(
- name = "winapi_x86_64_pc_windows_gnu",
- srcs = glob(["**/*.rs"]),
- crate_features = [
- ],
- crate_root = "src/lib.rs",
- data = [],
- edition = "2015",
- rustc_flags = [
- "--cap-lints=allow",
- ],
- tags = [
- "cargo-raze",
- "crate-name=winapi-x86_64-pc-windows-gnu",
- "manual",
- ],
- version = "0.4.0",
- # buildifier: leave-alone
- deps = [
- ":winapi_x86_64_pc_windows_gnu_build_script",
- ],
-)