Brian Silverman | cc09f18 | 2022-03-09 15:40:20 -0800 | [diff] [blame^] | 1 | """This module provides a single place for all aspects, rules, and macros that are meant |
| 2 | to have stardoc generated documentation. |
| 3 | """ |
| 4 | |
| 5 | load( |
| 6 | "@rules_rust//bindgen:bindgen.bzl", |
| 7 | _rust_bindgen = "rust_bindgen", |
| 8 | _rust_bindgen_library = "rust_bindgen_library", |
| 9 | _rust_bindgen_toolchain = "rust_bindgen_toolchain", |
| 10 | ) |
| 11 | load( |
| 12 | "@rules_rust//bindgen:repositories.bzl", |
| 13 | _rust_bindgen_repositories = "rust_bindgen_repositories", |
| 14 | ) |
| 15 | load( |
| 16 | "@rules_rust//cargo:defs.bzl", |
| 17 | _cargo_bootstrap_repository = "cargo_bootstrap_repository", |
| 18 | _cargo_build_script = "cargo_build_script", |
| 19 | _cargo_env = "cargo_env", |
| 20 | ) |
| 21 | load( |
| 22 | "@rules_rust//crate_universe:defs.bzl", |
| 23 | _crate = "crate", |
| 24 | _crates_repository = "crates_repository", |
| 25 | _crates_vendor = "crates_vendor", |
| 26 | ) |
| 27 | load( |
| 28 | "@rules_rust//proto:proto.bzl", |
| 29 | _rust_grpc_library = "rust_grpc_library", |
| 30 | _rust_proto_library = "rust_proto_library", |
| 31 | ) |
| 32 | load( |
| 33 | "@rules_rust//proto:repositories.bzl", |
| 34 | _rust_proto_repositories = "rust_proto_repositories", |
| 35 | ) |
| 36 | load( |
| 37 | "@rules_rust//proto:toolchain.bzl", |
| 38 | _rust_proto_toolchain = "rust_proto_toolchain", |
| 39 | ) |
| 40 | load( |
| 41 | "@rules_rust//proto:transitive_repositories.bzl", |
| 42 | _rust_proto_transitive_repositories = "rust_proto_transitive_repositories", |
| 43 | ) |
| 44 | load( |
| 45 | "@rules_rust//rust:defs.bzl", |
| 46 | _capture_clippy_output = "capture_clippy_output", |
| 47 | _error_format = "error_format", |
| 48 | _extra_rustc_flags = "extra_rustc_flags", |
| 49 | _rust_analyzer = "rust_analyzer", |
| 50 | _rust_analyzer_aspect = "rust_analyzer_aspect", |
| 51 | _rust_binary = "rust_binary", |
| 52 | _rust_clippy = "rust_clippy", |
| 53 | _rust_clippy_aspect = "rust_clippy_aspect", |
| 54 | _rust_doc = "rust_doc", |
| 55 | _rust_doc_test = "rust_doc_test", |
| 56 | _rust_library = "rust_library", |
| 57 | _rust_proc_macro = "rust_proc_macro", |
| 58 | _rust_shared_library = "rust_shared_library", |
| 59 | _rust_static_library = "rust_static_library", |
| 60 | _rust_test = "rust_test", |
| 61 | _rust_test_suite = "rust_test_suite", |
| 62 | _rustfmt_aspect = "rustfmt_aspect", |
| 63 | _rustfmt_test = "rustfmt_test", |
| 64 | ) |
| 65 | load( |
| 66 | "@rules_rust//rust:repositories.bzl", |
| 67 | _rust_repositories = "rust_repositories", |
| 68 | _rust_repository_set = "rust_repository_set", |
| 69 | _rust_toolchain_repository = "rust_toolchain_repository", |
| 70 | _rust_toolchain_repository_proxy = "rust_toolchain_repository_proxy", |
| 71 | ) |
| 72 | load( |
| 73 | "@rules_rust//rust:toolchain.bzl", |
| 74 | _rust_stdlib_filegroup = "rust_stdlib_filegroup", |
| 75 | _rust_toolchain = "rust_toolchain", |
| 76 | ) |
| 77 | |
| 78 | # buildifier: disable=bzl-visibility |
| 79 | load( |
| 80 | "@rules_rust//rust/private:providers.bzl", |
| 81 | _CrateInfo = "CrateInfo", |
| 82 | _DepInfo = "DepInfo", |
| 83 | _StdLibInfo = "StdLibInfo", |
| 84 | ) |
| 85 | load( |
| 86 | "@rules_rust//rust/settings:incompatible.bzl", |
| 87 | _incompatible_flag = "incompatible_flag", |
| 88 | ) |
| 89 | load( |
| 90 | "@rules_rust//wasm_bindgen:repositories.bzl", |
| 91 | _rust_wasm_bindgen_repositories = "rust_wasm_bindgen_repositories", |
| 92 | ) |
| 93 | load( |
| 94 | "@rules_rust//wasm_bindgen:wasm_bindgen.bzl", |
| 95 | _rust_wasm_bindgen = "rust_wasm_bindgen", |
| 96 | _rust_wasm_bindgen_toolchain = "rust_wasm_bindgen_toolchain", |
| 97 | ) |
| 98 | |
| 99 | rust_binary = _rust_binary |
| 100 | rust_library = _rust_library |
| 101 | rust_static_library = _rust_static_library |
| 102 | rust_shared_library = _rust_shared_library |
| 103 | rust_proc_macro = _rust_proc_macro |
| 104 | rust_test = _rust_test |
| 105 | rust_test_suite = _rust_test_suite |
| 106 | rust_doc = _rust_doc |
| 107 | rust_doc_test = _rust_doc_test |
| 108 | |
| 109 | rust_proto_library = _rust_proto_library |
| 110 | rust_grpc_library = _rust_grpc_library |
| 111 | |
| 112 | rust_bindgen_toolchain = _rust_bindgen_toolchain |
| 113 | rust_bindgen = _rust_bindgen |
| 114 | rust_bindgen_library = _rust_bindgen_library |
| 115 | rust_bindgen_repositories = _rust_bindgen_repositories |
| 116 | |
| 117 | rust_toolchain = _rust_toolchain |
| 118 | rust_proto_toolchain = _rust_proto_toolchain |
| 119 | rust_proto_repositories = _rust_proto_repositories |
| 120 | rust_stdlib_filegroup = _rust_stdlib_filegroup |
| 121 | rust_proto_transitive_repositories = _rust_proto_transitive_repositories |
| 122 | |
| 123 | cargo_build_script = _cargo_build_script |
| 124 | cargo_bootstrap_repository = _cargo_bootstrap_repository |
| 125 | cargo_env = _cargo_env |
| 126 | |
| 127 | rust_wasm_bindgen = _rust_wasm_bindgen |
| 128 | rust_wasm_bindgen_toolchain = _rust_wasm_bindgen_toolchain |
| 129 | rust_wasm_bindgen_repositories = _rust_wasm_bindgen_repositories |
| 130 | |
| 131 | rust_repositories = _rust_repositories |
| 132 | rust_repository_set = _rust_repository_set |
| 133 | rust_toolchain_repository = _rust_toolchain_repository |
| 134 | rust_toolchain_repository_proxy = _rust_toolchain_repository_proxy |
| 135 | |
| 136 | rust_clippy = _rust_clippy |
| 137 | rust_clippy_aspect = _rust_clippy_aspect |
| 138 | rust_analyzer = _rust_analyzer |
| 139 | rust_analyzer_aspect = _rust_analyzer_aspect |
| 140 | |
| 141 | crate = _crate |
| 142 | crates_repository = _crates_repository |
| 143 | crates_vendor = _crates_vendor |
| 144 | |
| 145 | rustfmt_aspect = _rustfmt_aspect |
| 146 | rustfmt_test = _rustfmt_test |
| 147 | |
| 148 | error_format = _error_format |
| 149 | extra_rustc_flags = _extra_rustc_flags |
| 150 | incompatible_flag = _incompatible_flag |
| 151 | capture_clippy_output = _capture_clippy_output |
| 152 | |
| 153 | CrateInfo = _CrateInfo |
| 154 | DepInfo = _DepInfo |
| 155 | StdLibInfo = _StdLibInfo |