Brian Silverman | 547eda0 | 2022-05-19 23:14:08 -0700 | [diff] [blame] | 1 | """ |
| 2 | @generated |
| 3 | cargo-raze generated Bazel file. |
| 4 | |
| 5 | DO NOT EDIT! Replaced on runs of cargo-raze |
| 6 | """ |
| 7 | |
| 8 | load("@bazel_tools//tools/build_defs/repo:git.bzl", "new_git_repository") # buildifier: disable=load |
| 9 | load("@bazel_tools//tools/build_defs/repo:http.bzl", "http_archive") # buildifier: disable=load |
| 10 | load("@bazel_tools//tools/build_defs/repo:utils.bzl", "maybe") # buildifier: disable=load |
| 11 | |
| 12 | def raze_fetch_remote_crates(): |
| 13 | """This function defines a collection of repos and should be called in a WORKSPACE file""" |
| 14 | maybe( |
| 15 | http_archive, |
Brian Silverman | a7ba251 | 2022-12-19 19:13:52 -0800 | [diff] [blame] | 16 | name = "raze__addr2line__0_19_0", |
| 17 | url = "https://crates.io/api/v1/crates/addr2line/0.19.0/download", |
Brian Silverman | 547eda0 | 2022-05-19 23:14:08 -0700 | [diff] [blame] | 18 | type = "tar.gz", |
Brian Silverman | a7ba251 | 2022-12-19 19:13:52 -0800 | [diff] [blame] | 19 | sha256 = "a76fd60b23679b7d19bd066031410fb7e458ccc5e958eb5c325888ce4baedc97", |
| 20 | strip_prefix = "addr2line-0.19.0", |
| 21 | build_file = Label("//third_party/cargo/remote:BUILD.addr2line-0.19.0.bazel"), |
Brian Silverman | 547eda0 | 2022-05-19 23:14:08 -0700 | [diff] [blame] | 22 | ) |
| 23 | |
| 24 | maybe( |
| 25 | http_archive, |
| 26 | name = "raze__adler__1_0_2", |
| 27 | url = "https://crates.io/api/v1/crates/adler/1.0.2/download", |
| 28 | type = "tar.gz", |
| 29 | sha256 = "f26201604c87b1e01bd3d98f8d5d9a8fcbb815e8cedb41ffccbeb4bf593a35fe", |
| 30 | strip_prefix = "adler-1.0.2", |
| 31 | build_file = Label("//third_party/cargo/remote:BUILD.adler-1.0.2.bazel"), |
| 32 | ) |
| 33 | |
| 34 | maybe( |
| 35 | http_archive, |
Brian Silverman | a7ba251 | 2022-12-19 19:13:52 -0800 | [diff] [blame] | 36 | name = "raze__ahash__0_7_6", |
| 37 | url = "https://crates.io/api/v1/crates/ahash/0.7.6/download", |
Brian Silverman | 547eda0 | 2022-05-19 23:14:08 -0700 | [diff] [blame] | 38 | type = "tar.gz", |
Brian Silverman | a7ba251 | 2022-12-19 19:13:52 -0800 | [diff] [blame] | 39 | sha256 = "fcb51a0695d8f838b1ee009b3fbf66bda078cd64590202a864a8f3e8c4315c47", |
| 40 | strip_prefix = "ahash-0.7.6", |
| 41 | build_file = Label("//third_party/cargo/remote:BUILD.ahash-0.7.6.bazel"), |
| 42 | ) |
| 43 | |
| 44 | maybe( |
| 45 | http_archive, |
| 46 | name = "raze__aho_corasick__0_7_20", |
| 47 | url = "https://crates.io/api/v1/crates/aho-corasick/0.7.20/download", |
| 48 | type = "tar.gz", |
| 49 | sha256 = "cc936419f96fa211c1b9166887b38e5e40b19958e5b895be7c1f93adec7071ac", |
| 50 | strip_prefix = "aho-corasick-0.7.20", |
| 51 | build_file = Label("//third_party/cargo/remote:BUILD.aho-corasick-0.7.20.bazel"), |
Brian Silverman | 547eda0 | 2022-05-19 23:14:08 -0700 | [diff] [blame] | 52 | ) |
| 53 | |
| 54 | maybe( |
| 55 | http_archive, |
| 56 | name = "raze__ansi_term__0_12_1", |
| 57 | url = "https://crates.io/api/v1/crates/ansi_term/0.12.1/download", |
| 58 | type = "tar.gz", |
| 59 | sha256 = "d52a9bb7ec0cf484c551830a7ce27bd20d67eac647e1befb56b0be4ee39a55d2", |
| 60 | strip_prefix = "ansi_term-0.12.1", |
| 61 | build_file = Label("//third_party/cargo/remote:BUILD.ansi_term-0.12.1.bazel"), |
| 62 | ) |
| 63 | |
| 64 | maybe( |
| 65 | http_archive, |
Brian Silverman | a7ba251 | 2022-12-19 19:13:52 -0800 | [diff] [blame] | 66 | name = "raze__anyhow__1_0_68", |
| 67 | url = "https://crates.io/api/v1/crates/anyhow/1.0.68/download", |
Brian Silverman | 547eda0 | 2022-05-19 23:14:08 -0700 | [diff] [blame] | 68 | type = "tar.gz", |
Brian Silverman | a7ba251 | 2022-12-19 19:13:52 -0800 | [diff] [blame] | 69 | sha256 = "2cb2f989d18dd141ab8ae82f64d1a8cdd37e0840f73a406896cf5e99502fab61", |
| 70 | strip_prefix = "anyhow-1.0.68", |
| 71 | build_file = Label("//third_party/cargo/remote:BUILD.anyhow-1.0.68.bazel"), |
Brian Silverman | 547eda0 | 2022-05-19 23:14:08 -0700 | [diff] [blame] | 72 | ) |
| 73 | |
| 74 | maybe( |
| 75 | http_archive, |
Brian Silverman | a7ba251 | 2022-12-19 19:13:52 -0800 | [diff] [blame] | 76 | name = "raze__aquamarine__0_1_12", |
| 77 | url = "https://crates.io/api/v1/crates/aquamarine/0.1.12/download", |
Brian Silverman | 547eda0 | 2022-05-19 23:14:08 -0700 | [diff] [blame] | 78 | type = "tar.gz", |
Brian Silverman | a7ba251 | 2022-12-19 19:13:52 -0800 | [diff] [blame] | 79 | sha256 = "a941c39708478e8eea39243b5983f1c42d2717b3620ee91f4a52115fd02ac43f", |
| 80 | strip_prefix = "aquamarine-0.1.12", |
| 81 | build_file = Label("//third_party/cargo/remote:BUILD.aquamarine-0.1.12.bazel"), |
Brian Silverman | 547eda0 | 2022-05-19 23:14:08 -0700 | [diff] [blame] | 82 | ) |
| 83 | |
| 84 | maybe( |
| 85 | http_archive, |
| 86 | name = "raze__assert_cmd__1_0_8", |
| 87 | url = "https://crates.io/api/v1/crates/assert_cmd/1.0.8/download", |
| 88 | type = "tar.gz", |
| 89 | sha256 = "c98233c6673d8601ab23e77eb38f999c51100d46c5703b17288c57fddf3a1ffe", |
| 90 | strip_prefix = "assert_cmd-1.0.8", |
| 91 | build_file = Label("//third_party/cargo/remote:BUILD.assert_cmd-1.0.8.bazel"), |
| 92 | ) |
| 93 | |
| 94 | maybe( |
| 95 | http_archive, |
| 96 | name = "raze__atty__0_2_14", |
| 97 | url = "https://crates.io/api/v1/crates/atty/0.2.14/download", |
| 98 | type = "tar.gz", |
| 99 | sha256 = "d9b39be18770d11421cdb1b9947a45dd3f37e93092cbf377614828a319d5fee8", |
| 100 | strip_prefix = "atty-0.2.14", |
| 101 | build_file = Label("//third_party/cargo/remote:BUILD.atty-0.2.14.bazel"), |
| 102 | ) |
| 103 | |
| 104 | maybe( |
| 105 | http_archive, |
| 106 | name = "raze__autocfg__1_1_0", |
| 107 | url = "https://crates.io/api/v1/crates/autocfg/1.1.0/download", |
| 108 | type = "tar.gz", |
| 109 | sha256 = "d468802bab17cbc0cc575e9b053f41e72aa36bfa6b7f55e3529ffa43161b97fa", |
| 110 | strip_prefix = "autocfg-1.1.0", |
| 111 | build_file = Label("//third_party/cargo/remote:BUILD.autocfg-1.1.0.bazel"), |
| 112 | ) |
| 113 | |
| 114 | maybe( |
| 115 | http_archive, |
Brian Silverman | 6d3374a | 2022-07-13 20:10:47 -0700 | [diff] [blame] | 116 | name = "raze__autocxx_bindgen__0_59_17", |
| 117 | url = "https://crates.io/api/v1/crates/autocxx-bindgen/0.59.17/download", |
Brian Silverman | 547eda0 | 2022-05-19 23:14:08 -0700 | [diff] [blame] | 118 | type = "tar.gz", |
Brian Silverman | 6d3374a | 2022-07-13 20:10:47 -0700 | [diff] [blame] | 119 | sha256 = "f9a9a26dd38d385d23b1bf61bd231b77f690c4368aef4c77cee1b7a6da2e2042", |
| 120 | strip_prefix = "autocxx-bindgen-0.59.17", |
| 121 | build_file = Label("//third_party/cargo/remote:BUILD.autocxx-bindgen-0.59.17.bazel"), |
Brian Silverman | 547eda0 | 2022-05-19 23:14:08 -0700 | [diff] [blame] | 122 | ) |
| 123 | |
| 124 | maybe( |
| 125 | http_archive, |
Brian Silverman | a7ba251 | 2022-12-19 19:13:52 -0800 | [diff] [blame] | 126 | name = "raze__backtrace__0_3_67", |
| 127 | url = "https://crates.io/api/v1/crates/backtrace/0.3.67/download", |
Brian Silverman | 547eda0 | 2022-05-19 23:14:08 -0700 | [diff] [blame] | 128 | type = "tar.gz", |
Brian Silverman | a7ba251 | 2022-12-19 19:13:52 -0800 | [diff] [blame] | 129 | sha256 = "233d376d6d185f2a3093e58f283f60f880315b6c60075b01f36b3b85154564ca", |
| 130 | strip_prefix = "backtrace-0.3.67", |
| 131 | build_file = Label("//third_party/cargo/remote:BUILD.backtrace-0.3.67.bazel"), |
Brian Silverman | 547eda0 | 2022-05-19 23:14:08 -0700 | [diff] [blame] | 132 | ) |
| 133 | |
| 134 | maybe( |
| 135 | http_archive, |
| 136 | name = "raze__bindgen__0_58_1", |
| 137 | url = "https://crates.io/api/v1/crates/bindgen/0.58.1/download", |
| 138 | type = "tar.gz", |
| 139 | sha256 = "0f8523b410d7187a43085e7e064416ea32ded16bd0a4e6fc025e21616d01258f", |
| 140 | strip_prefix = "bindgen-0.58.1", |
| 141 | build_file = Label("//third_party/cargo/remote:BUILD.bindgen-0.58.1.bazel"), |
| 142 | ) |
| 143 | |
| 144 | maybe( |
| 145 | http_archive, |
| 146 | name = "raze__bitflags__1_3_2", |
| 147 | url = "https://crates.io/api/v1/crates/bitflags/1.3.2/download", |
| 148 | type = "tar.gz", |
| 149 | sha256 = "bef38d45163c2f1dde094a7dfd33ccf595c92905c8f8f4fdc18d06fb1037718a", |
| 150 | strip_prefix = "bitflags-1.3.2", |
| 151 | build_file = Label("//third_party/cargo/remote:BUILD.bitflags-1.3.2.bazel"), |
| 152 | ) |
| 153 | |
| 154 | maybe( |
| 155 | http_archive, |
| 156 | name = "raze__bstr__0_2_17", |
| 157 | url = "https://crates.io/api/v1/crates/bstr/0.2.17/download", |
| 158 | type = "tar.gz", |
| 159 | sha256 = "ba3569f383e8f1598449f1a423e72e99569137b47740b1da11ef19af3d5c3223", |
| 160 | strip_prefix = "bstr-0.2.17", |
| 161 | build_file = Label("//third_party/cargo/remote:BUILD.bstr-0.2.17.bazel"), |
| 162 | ) |
| 163 | |
| 164 | maybe( |
| 165 | http_archive, |
Brian Silverman | a7ba251 | 2022-12-19 19:13:52 -0800 | [diff] [blame] | 166 | name = "raze__cc__1_0_78", |
| 167 | url = "https://crates.io/api/v1/crates/cc/1.0.78/download", |
Brian Silverman | 547eda0 | 2022-05-19 23:14:08 -0700 | [diff] [blame] | 168 | type = "tar.gz", |
Brian Silverman | a7ba251 | 2022-12-19 19:13:52 -0800 | [diff] [blame] | 169 | sha256 = "a20104e2335ce8a659d6dd92a51a767a0c062599c73b343fd152cb401e828c3d", |
| 170 | strip_prefix = "cc-1.0.78", |
| 171 | build_file = Label("//third_party/cargo/remote:BUILD.cc-1.0.78.bazel"), |
Brian Silverman | 547eda0 | 2022-05-19 23:14:08 -0700 | [diff] [blame] | 172 | ) |
| 173 | |
| 174 | maybe( |
| 175 | http_archive, |
| 176 | name = "raze__cexpr__0_4_0", |
| 177 | url = "https://crates.io/api/v1/crates/cexpr/0.4.0/download", |
| 178 | type = "tar.gz", |
| 179 | sha256 = "f4aedb84272dbe89af497cf81375129abda4fc0a9e7c5d317498c15cc30c0d27", |
| 180 | strip_prefix = "cexpr-0.4.0", |
| 181 | build_file = Label("//third_party/cargo/remote:BUILD.cexpr-0.4.0.bazel"), |
| 182 | ) |
| 183 | |
| 184 | maybe( |
| 185 | http_archive, |
| 186 | name = "raze__cexpr__0_6_0", |
| 187 | url = "https://crates.io/api/v1/crates/cexpr/0.6.0/download", |
| 188 | type = "tar.gz", |
| 189 | sha256 = "6fac387a98bb7c37292057cffc56d62ecb629900026402633ae9160df93a8766", |
| 190 | strip_prefix = "cexpr-0.6.0", |
| 191 | build_file = Label("//third_party/cargo/remote:BUILD.cexpr-0.6.0.bazel"), |
| 192 | ) |
| 193 | |
| 194 | maybe( |
| 195 | http_archive, |
| 196 | name = "raze__cfg_if__0_1_10", |
| 197 | url = "https://crates.io/api/v1/crates/cfg-if/0.1.10/download", |
| 198 | type = "tar.gz", |
| 199 | sha256 = "4785bdd1c96b2a846b2bd7cc02e86b6b3dbf14e7e53446c4f54c92a361040822", |
| 200 | strip_prefix = "cfg-if-0.1.10", |
| 201 | build_file = Label("//third_party/cargo/remote:BUILD.cfg-if-0.1.10.bazel"), |
| 202 | ) |
| 203 | |
| 204 | maybe( |
| 205 | http_archive, |
| 206 | name = "raze__cfg_if__1_0_0", |
| 207 | url = "https://crates.io/api/v1/crates/cfg-if/1.0.0/download", |
| 208 | type = "tar.gz", |
| 209 | sha256 = "baf1de4339761588bc0619e3cbc0120ee582ebb74b53b4efbf79117bd2da40fd", |
| 210 | strip_prefix = "cfg-if-1.0.0", |
| 211 | build_file = Label("//third_party/cargo/remote:BUILD.cfg-if-1.0.0.bazel"), |
| 212 | ) |
| 213 | |
| 214 | maybe( |
| 215 | http_archive, |
Brian Silverman | a7ba251 | 2022-12-19 19:13:52 -0800 | [diff] [blame] | 216 | name = "raze__clang_sys__1_4_0", |
| 217 | url = "https://crates.io/api/v1/crates/clang-sys/1.4.0/download", |
Brian Silverman | 547eda0 | 2022-05-19 23:14:08 -0700 | [diff] [blame] | 218 | type = "tar.gz", |
Brian Silverman | a7ba251 | 2022-12-19 19:13:52 -0800 | [diff] [blame] | 219 | sha256 = "fa2e27ae6ab525c3d369ded447057bca5438d86dc3a68f6faafb8269ba82ebf3", |
| 220 | strip_prefix = "clang-sys-1.4.0", |
| 221 | build_file = Label("//third_party/cargo/remote:BUILD.clang-sys-1.4.0.bazel"), |
Brian Silverman | 547eda0 | 2022-05-19 23:14:08 -0700 | [diff] [blame] | 222 | ) |
| 223 | |
| 224 | maybe( |
| 225 | http_archive, |
| 226 | name = "raze__clap__2_34_0", |
| 227 | url = "https://crates.io/api/v1/crates/clap/2.34.0/download", |
| 228 | type = "tar.gz", |
| 229 | sha256 = "a0610544180c38b88101fecf2dd634b174a62eef6946f84dfc6a7127512b381c", |
| 230 | strip_prefix = "clap-2.34.0", |
| 231 | build_file = Label("//third_party/cargo/remote:BUILD.clap-2.34.0.bazel"), |
| 232 | ) |
| 233 | |
| 234 | maybe( |
| 235 | http_archive, |
Brian Silverman | a7ba251 | 2022-12-19 19:13:52 -0800 | [diff] [blame] | 236 | name = "raze__clap__3_2_23", |
| 237 | url = "https://crates.io/api/v1/crates/clap/3.2.23/download", |
Brian Silverman | 547eda0 | 2022-05-19 23:14:08 -0700 | [diff] [blame] | 238 | type = "tar.gz", |
Brian Silverman | a7ba251 | 2022-12-19 19:13:52 -0800 | [diff] [blame] | 239 | sha256 = "71655c45cb9845d3270c9d6df84ebe72b4dad3c2ba3f7023ad47c144e4e473a5", |
| 240 | strip_prefix = "clap-3.2.23", |
| 241 | build_file = Label("//third_party/cargo/remote:BUILD.clap-3.2.23.bazel"), |
Brian Silverman | 547eda0 | 2022-05-19 23:14:08 -0700 | [diff] [blame] | 242 | ) |
| 243 | |
| 244 | maybe( |
| 245 | http_archive, |
Brian Silverman | 6d3374a | 2022-07-13 20:10:47 -0700 | [diff] [blame] | 246 | name = "raze__clap_lex__0_2_4", |
| 247 | url = "https://crates.io/api/v1/crates/clap_lex/0.2.4/download", |
Brian Silverman | 547eda0 | 2022-05-19 23:14:08 -0700 | [diff] [blame] | 248 | type = "tar.gz", |
Brian Silverman | 6d3374a | 2022-07-13 20:10:47 -0700 | [diff] [blame] | 249 | sha256 = "2850f2f5a82cbf437dd5af4d49848fbdfc27c157c3d010345776f952765261c5", |
| 250 | strip_prefix = "clap_lex-0.2.4", |
| 251 | build_file = Label("//third_party/cargo/remote:BUILD.clap_lex-0.2.4.bazel"), |
Brian Silverman | 547eda0 | 2022-05-19 23:14:08 -0700 | [diff] [blame] | 252 | ) |
| 253 | |
| 254 | maybe( |
| 255 | http_archive, |
| 256 | name = "raze__codespan_reporting__0_11_1", |
| 257 | url = "https://crates.io/api/v1/crates/codespan-reporting/0.11.1/download", |
| 258 | type = "tar.gz", |
| 259 | sha256 = "3538270d33cc669650c4b093848450d380def10c331d38c768e34cac80576e6e", |
| 260 | strip_prefix = "codespan-reporting-0.11.1", |
| 261 | build_file = Label("//third_party/cargo/remote:BUILD.codespan-reporting-0.11.1.bazel"), |
| 262 | ) |
| 263 | |
| 264 | maybe( |
| 265 | http_archive, |
Brian Silverman | a7ba251 | 2022-12-19 19:13:52 -0800 | [diff] [blame] | 266 | name = "raze__cxx__1_0_85", |
| 267 | url = "https://crates.io/api/v1/crates/cxx/1.0.85/download", |
Brian Silverman | 547eda0 | 2022-05-19 23:14:08 -0700 | [diff] [blame] | 268 | type = "tar.gz", |
Brian Silverman | a7ba251 | 2022-12-19 19:13:52 -0800 | [diff] [blame] | 269 | sha256 = "5add3fc1717409d029b20c5b6903fc0c0b02fa6741d820054f4a2efa5e5816fd", |
| 270 | strip_prefix = "cxx-1.0.85", |
| 271 | build_file = Label("//third_party/cargo/remote:BUILD.cxx-1.0.85.bazel"), |
Brian Silverman | 547eda0 | 2022-05-19 23:14:08 -0700 | [diff] [blame] | 272 | ) |
| 273 | |
| 274 | maybe( |
| 275 | http_archive, |
Brian Silverman | a7ba251 | 2022-12-19 19:13:52 -0800 | [diff] [blame] | 276 | name = "raze__cxx_gen__0_7_85", |
| 277 | url = "https://crates.io/api/v1/crates/cxx-gen/0.7.85/download", |
Brian Silverman | 547eda0 | 2022-05-19 23:14:08 -0700 | [diff] [blame] | 278 | type = "tar.gz", |
Brian Silverman | a7ba251 | 2022-12-19 19:13:52 -0800 | [diff] [blame] | 279 | sha256 = "ccca653bd8a21c5cfe696cd5347729d43f651298459b22e57c60fbae1cd49fec", |
| 280 | strip_prefix = "cxx-gen-0.7.85", |
| 281 | build_file = Label("//third_party/cargo/remote:BUILD.cxx-gen-0.7.85.bazel"), |
Brian Silverman | 547eda0 | 2022-05-19 23:14:08 -0700 | [diff] [blame] | 282 | ) |
| 283 | |
| 284 | maybe( |
| 285 | http_archive, |
Brian Silverman | a7ba251 | 2022-12-19 19:13:52 -0800 | [diff] [blame] | 286 | name = "raze__cxxbridge_cmd__1_0_77", |
| 287 | url = "https://crates.io/api/v1/crates/cxxbridge-cmd/1.0.77/download", |
Brian Silverman | 547eda0 | 2022-05-19 23:14:08 -0700 | [diff] [blame] | 288 | type = "tar.gz", |
Brian Silverman | a7ba251 | 2022-12-19 19:13:52 -0800 | [diff] [blame] | 289 | sha256 = "de38cfccf77ed5c524784e2bcbb8863287acd00af2f5d522370f27257ef86307", |
| 290 | strip_prefix = "cxxbridge-cmd-1.0.77", |
| 291 | build_file = Label("//third_party/cargo/remote:BUILD.cxxbridge-cmd-1.0.77.bazel"), |
Brian Silverman | 547eda0 | 2022-05-19 23:14:08 -0700 | [diff] [blame] | 292 | ) |
| 293 | |
| 294 | maybe( |
| 295 | http_archive, |
Brian Silverman | a7ba251 | 2022-12-19 19:13:52 -0800 | [diff] [blame] | 296 | name = "raze__cxxbridge_flags__1_0_85", |
| 297 | url = "https://crates.io/api/v1/crates/cxxbridge-flags/1.0.85/download", |
Brian Silverman | 547eda0 | 2022-05-19 23:14:08 -0700 | [diff] [blame] | 298 | type = "tar.gz", |
Brian Silverman | a7ba251 | 2022-12-19 19:13:52 -0800 | [diff] [blame] | 299 | sha256 = "69a3e162fde4e594ed2b07d0f83c6c67b745e7f28ce58c6df5e6b6bef99dfb59", |
| 300 | strip_prefix = "cxxbridge-flags-1.0.85", |
| 301 | build_file = Label("//third_party/cargo/remote:BUILD.cxxbridge-flags-1.0.85.bazel"), |
Brian Silverman | 547eda0 | 2022-05-19 23:14:08 -0700 | [diff] [blame] | 302 | ) |
| 303 | |
| 304 | maybe( |
| 305 | http_archive, |
Brian Silverman | a7ba251 | 2022-12-19 19:13:52 -0800 | [diff] [blame] | 306 | name = "raze__cxxbridge_macro__1_0_85", |
| 307 | url = "https://crates.io/api/v1/crates/cxxbridge-macro/1.0.85/download", |
Brian Silverman | 547eda0 | 2022-05-19 23:14:08 -0700 | [diff] [blame] | 308 | type = "tar.gz", |
Brian Silverman | a7ba251 | 2022-12-19 19:13:52 -0800 | [diff] [blame] | 309 | sha256 = "3e7e2adeb6a0d4a282e581096b06e1791532b7d576dcde5ccd9382acf55db8e6", |
| 310 | strip_prefix = "cxxbridge-macro-1.0.85", |
| 311 | build_file = Label("//third_party/cargo/remote:BUILD.cxxbridge-macro-1.0.85.bazel"), |
Brian Silverman | 547eda0 | 2022-05-19 23:14:08 -0700 | [diff] [blame] | 312 | ) |
| 313 | |
| 314 | maybe( |
| 315 | http_archive, |
| 316 | name = "raze__difflib__0_4_0", |
| 317 | url = "https://crates.io/api/v1/crates/difflib/0.4.0/download", |
| 318 | type = "tar.gz", |
| 319 | sha256 = "6184e33543162437515c2e2b48714794e37845ec9851711914eec9d308f6ebe8", |
| 320 | strip_prefix = "difflib-0.4.0", |
| 321 | build_file = Label("//third_party/cargo/remote:BUILD.difflib-0.4.0.bazel"), |
| 322 | ) |
| 323 | |
| 324 | maybe( |
| 325 | http_archive, |
| 326 | name = "raze__doc_comment__0_3_3", |
| 327 | url = "https://crates.io/api/v1/crates/doc-comment/0.3.3/download", |
| 328 | type = "tar.gz", |
| 329 | sha256 = "fea41bba32d969b513997752735605054bc0dfa92b4c56bf1189f2e174be7a10", |
| 330 | strip_prefix = "doc-comment-0.3.3", |
| 331 | build_file = Label("//third_party/cargo/remote:BUILD.doc-comment-0.3.3.bazel"), |
| 332 | ) |
| 333 | |
| 334 | maybe( |
| 335 | http_archive, |
Brian Silverman | a7ba251 | 2022-12-19 19:13:52 -0800 | [diff] [blame] | 336 | name = "raze__either__1_8_0", |
| 337 | url = "https://crates.io/api/v1/crates/either/1.8.0/download", |
Brian Silverman | 547eda0 | 2022-05-19 23:14:08 -0700 | [diff] [blame] | 338 | type = "tar.gz", |
Brian Silverman | a7ba251 | 2022-12-19 19:13:52 -0800 | [diff] [blame] | 339 | sha256 = "90e5c1c8368803113bf0c9584fc495a58b86dc8a29edbf8fe877d21d9507e797", |
| 340 | strip_prefix = "either-1.8.0", |
| 341 | build_file = Label("//third_party/cargo/remote:BUILD.either-1.8.0.bazel"), |
Brian Silverman | 547eda0 | 2022-05-19 23:14:08 -0700 | [diff] [blame] | 342 | ) |
| 343 | |
| 344 | maybe( |
| 345 | http_archive, |
| 346 | name = "raze__env_logger__0_8_4", |
| 347 | url = "https://crates.io/api/v1/crates/env_logger/0.8.4/download", |
| 348 | type = "tar.gz", |
| 349 | sha256 = "a19187fea3ac7e84da7dacf48de0c45d63c6a76f9490dae389aead16c243fce3", |
| 350 | strip_prefix = "env_logger-0.8.4", |
| 351 | build_file = Label("//third_party/cargo/remote:BUILD.env_logger-0.8.4.bazel"), |
| 352 | ) |
| 353 | |
| 354 | maybe( |
| 355 | http_archive, |
Brian Silverman | a7ba251 | 2022-12-19 19:13:52 -0800 | [diff] [blame] | 356 | name = "raze__env_logger__0_9_3", |
| 357 | url = "https://crates.io/api/v1/crates/env_logger/0.9.3/download", |
Brian Silverman | 547eda0 | 2022-05-19 23:14:08 -0700 | [diff] [blame] | 358 | type = "tar.gz", |
Brian Silverman | a7ba251 | 2022-12-19 19:13:52 -0800 | [diff] [blame] | 359 | sha256 = "a12e6657c4c97ebab115a42dcee77225f7f482cdd841cf7088c657a42e9e00e7", |
| 360 | strip_prefix = "env_logger-0.9.3", |
| 361 | build_file = Label("//third_party/cargo/remote:BUILD.env_logger-0.9.3.bazel"), |
Brian Silverman | 547eda0 | 2022-05-19 23:14:08 -0700 | [diff] [blame] | 362 | ) |
| 363 | |
| 364 | maybe( |
| 365 | http_archive, |
Brian Silverman | a7ba251 | 2022-12-19 19:13:52 -0800 | [diff] [blame] | 366 | name = "raze__fastrand__1_8_0", |
| 367 | url = "https://crates.io/api/v1/crates/fastrand/1.8.0/download", |
Brian Silverman | 547eda0 | 2022-05-19 23:14:08 -0700 | [diff] [blame] | 368 | type = "tar.gz", |
Brian Silverman | a7ba251 | 2022-12-19 19:13:52 -0800 | [diff] [blame] | 369 | sha256 = "a7a407cfaa3385c4ae6b23e84623d48c2798d06e3e6a1878f7f59f17b3f86499", |
| 370 | strip_prefix = "fastrand-1.8.0", |
| 371 | build_file = Label("//third_party/cargo/remote:BUILD.fastrand-1.8.0.bazel"), |
Brian Silverman | 547eda0 | 2022-05-19 23:14:08 -0700 | [diff] [blame] | 372 | ) |
| 373 | |
| 374 | maybe( |
| 375 | http_archive, |
Brian Silverman | a7ba251 | 2022-12-19 19:13:52 -0800 | [diff] [blame] | 376 | name = "raze__futures__0_3_25", |
| 377 | url = "https://crates.io/api/v1/crates/futures/0.3.25/download", |
Brian Silverman | 53b0cfb | 2022-07-23 16:38:26 -0700 | [diff] [blame] | 378 | type = "tar.gz", |
Brian Silverman | a7ba251 | 2022-12-19 19:13:52 -0800 | [diff] [blame] | 379 | sha256 = "38390104763dc37a5145a53c29c63c1290b5d316d6086ec32c293f6736051bb0", |
| 380 | strip_prefix = "futures-0.3.25", |
| 381 | build_file = Label("//third_party/cargo/remote:BUILD.futures-0.3.25.bazel"), |
Brian Silverman | 53b0cfb | 2022-07-23 16:38:26 -0700 | [diff] [blame] | 382 | ) |
| 383 | |
| 384 | maybe( |
| 385 | http_archive, |
Brian Silverman | a7ba251 | 2022-12-19 19:13:52 -0800 | [diff] [blame] | 386 | name = "raze__futures_channel__0_3_25", |
| 387 | url = "https://crates.io/api/v1/crates/futures-channel/0.3.25/download", |
Brian Silverman | 53b0cfb | 2022-07-23 16:38:26 -0700 | [diff] [blame] | 388 | type = "tar.gz", |
Brian Silverman | a7ba251 | 2022-12-19 19:13:52 -0800 | [diff] [blame] | 389 | sha256 = "52ba265a92256105f45b719605a571ffe2d1f0fea3807304b522c1d778f79eed", |
| 390 | strip_prefix = "futures-channel-0.3.25", |
| 391 | build_file = Label("//third_party/cargo/remote:BUILD.futures-channel-0.3.25.bazel"), |
Brian Silverman | 53b0cfb | 2022-07-23 16:38:26 -0700 | [diff] [blame] | 392 | ) |
| 393 | |
| 394 | maybe( |
| 395 | http_archive, |
Brian Silverman | a7ba251 | 2022-12-19 19:13:52 -0800 | [diff] [blame] | 396 | name = "raze__futures_core__0_3_25", |
| 397 | url = "https://crates.io/api/v1/crates/futures-core/0.3.25/download", |
Brian Silverman | 53b0cfb | 2022-07-23 16:38:26 -0700 | [diff] [blame] | 398 | type = "tar.gz", |
Brian Silverman | a7ba251 | 2022-12-19 19:13:52 -0800 | [diff] [blame] | 399 | sha256 = "04909a7a7e4633ae6c4a9ab280aeb86da1236243a77b694a49eacd659a4bd3ac", |
| 400 | strip_prefix = "futures-core-0.3.25", |
| 401 | build_file = Label("//third_party/cargo/remote:BUILD.futures-core-0.3.25.bazel"), |
Brian Silverman | 53b0cfb | 2022-07-23 16:38:26 -0700 | [diff] [blame] | 402 | ) |
| 403 | |
| 404 | maybe( |
| 405 | http_archive, |
Brian Silverman | a7ba251 | 2022-12-19 19:13:52 -0800 | [diff] [blame] | 406 | name = "raze__futures_executor__0_3_25", |
| 407 | url = "https://crates.io/api/v1/crates/futures-executor/0.3.25/download", |
Brian Silverman | 53b0cfb | 2022-07-23 16:38:26 -0700 | [diff] [blame] | 408 | type = "tar.gz", |
Brian Silverman | a7ba251 | 2022-12-19 19:13:52 -0800 | [diff] [blame] | 409 | sha256 = "7acc85df6714c176ab5edf386123fafe217be88c0840ec11f199441134a074e2", |
| 410 | strip_prefix = "futures-executor-0.3.25", |
| 411 | build_file = Label("//third_party/cargo/remote:BUILD.futures-executor-0.3.25.bazel"), |
Brian Silverman | 53b0cfb | 2022-07-23 16:38:26 -0700 | [diff] [blame] | 412 | ) |
| 413 | |
| 414 | maybe( |
| 415 | http_archive, |
Brian Silverman | a7ba251 | 2022-12-19 19:13:52 -0800 | [diff] [blame] | 416 | name = "raze__futures_io__0_3_25", |
| 417 | url = "https://crates.io/api/v1/crates/futures-io/0.3.25/download", |
Brian Silverman | 53b0cfb | 2022-07-23 16:38:26 -0700 | [diff] [blame] | 418 | type = "tar.gz", |
Brian Silverman | a7ba251 | 2022-12-19 19:13:52 -0800 | [diff] [blame] | 419 | sha256 = "00f5fb52a06bdcadeb54e8d3671f8888a39697dcb0b81b23b55174030427f4eb", |
| 420 | strip_prefix = "futures-io-0.3.25", |
| 421 | build_file = Label("//third_party/cargo/remote:BUILD.futures-io-0.3.25.bazel"), |
Brian Silverman | 53b0cfb | 2022-07-23 16:38:26 -0700 | [diff] [blame] | 422 | ) |
| 423 | |
| 424 | maybe( |
| 425 | http_archive, |
Brian Silverman | a7ba251 | 2022-12-19 19:13:52 -0800 | [diff] [blame] | 426 | name = "raze__futures_macro__0_3_25", |
| 427 | url = "https://crates.io/api/v1/crates/futures-macro/0.3.25/download", |
Brian Silverman | 53b0cfb | 2022-07-23 16:38:26 -0700 | [diff] [blame] | 428 | type = "tar.gz", |
Brian Silverman | a7ba251 | 2022-12-19 19:13:52 -0800 | [diff] [blame] | 429 | sha256 = "bdfb8ce053d86b91919aad980c220b1fb8401a9394410e1c289ed7e66b61835d", |
| 430 | strip_prefix = "futures-macro-0.3.25", |
| 431 | build_file = Label("//third_party/cargo/remote:BUILD.futures-macro-0.3.25.bazel"), |
Brian Silverman | 53b0cfb | 2022-07-23 16:38:26 -0700 | [diff] [blame] | 432 | ) |
| 433 | |
| 434 | maybe( |
| 435 | http_archive, |
Brian Silverman | a7ba251 | 2022-12-19 19:13:52 -0800 | [diff] [blame] | 436 | name = "raze__futures_sink__0_3_25", |
| 437 | url = "https://crates.io/api/v1/crates/futures-sink/0.3.25/download", |
Brian Silverman | 53b0cfb | 2022-07-23 16:38:26 -0700 | [diff] [blame] | 438 | type = "tar.gz", |
Brian Silverman | a7ba251 | 2022-12-19 19:13:52 -0800 | [diff] [blame] | 439 | sha256 = "39c15cf1a4aa79df40f1bb462fb39676d0ad9e366c2a33b590d7c66f4f81fcf9", |
| 440 | strip_prefix = "futures-sink-0.3.25", |
| 441 | build_file = Label("//third_party/cargo/remote:BUILD.futures-sink-0.3.25.bazel"), |
Brian Silverman | 53b0cfb | 2022-07-23 16:38:26 -0700 | [diff] [blame] | 442 | ) |
| 443 | |
| 444 | maybe( |
| 445 | http_archive, |
Brian Silverman | a7ba251 | 2022-12-19 19:13:52 -0800 | [diff] [blame] | 446 | name = "raze__futures_task__0_3_25", |
| 447 | url = "https://crates.io/api/v1/crates/futures-task/0.3.25/download", |
Brian Silverman | 53b0cfb | 2022-07-23 16:38:26 -0700 | [diff] [blame] | 448 | type = "tar.gz", |
Brian Silverman | a7ba251 | 2022-12-19 19:13:52 -0800 | [diff] [blame] | 449 | sha256 = "2ffb393ac5d9a6eaa9d3fdf37ae2776656b706e200c8e16b1bdb227f5198e6ea", |
| 450 | strip_prefix = "futures-task-0.3.25", |
| 451 | build_file = Label("//third_party/cargo/remote:BUILD.futures-task-0.3.25.bazel"), |
Brian Silverman | 53b0cfb | 2022-07-23 16:38:26 -0700 | [diff] [blame] | 452 | ) |
| 453 | |
| 454 | maybe( |
| 455 | http_archive, |
Brian Silverman | a7ba251 | 2022-12-19 19:13:52 -0800 | [diff] [blame] | 456 | name = "raze__futures_util__0_3_25", |
| 457 | url = "https://crates.io/api/v1/crates/futures-util/0.3.25/download", |
Brian Silverman | 53b0cfb | 2022-07-23 16:38:26 -0700 | [diff] [blame] | 458 | type = "tar.gz", |
Brian Silverman | a7ba251 | 2022-12-19 19:13:52 -0800 | [diff] [blame] | 459 | sha256 = "197676987abd2f9cadff84926f410af1c183608d36641465df73ae8211dc65d6", |
| 460 | strip_prefix = "futures-util-0.3.25", |
| 461 | build_file = Label("//third_party/cargo/remote:BUILD.futures-util-0.3.25.bazel"), |
Brian Silverman | 53b0cfb | 2022-07-23 16:38:26 -0700 | [diff] [blame] | 462 | ) |
| 463 | |
| 464 | maybe( |
| 465 | http_archive, |
Brian Silverman | a7ba251 | 2022-12-19 19:13:52 -0800 | [diff] [blame] | 466 | name = "raze__getrandom__0_2_8", |
| 467 | url = "https://crates.io/api/v1/crates/getrandom/0.2.8/download", |
Brian Silverman | 547eda0 | 2022-05-19 23:14:08 -0700 | [diff] [blame] | 468 | type = "tar.gz", |
Brian Silverman | a7ba251 | 2022-12-19 19:13:52 -0800 | [diff] [blame] | 469 | sha256 = "c05aeb6a22b8f62540c194aac980f2115af067bfe15a0734d7277a768d396b31", |
| 470 | strip_prefix = "getrandom-0.2.8", |
| 471 | build_file = Label("//third_party/cargo/remote:BUILD.getrandom-0.2.8.bazel"), |
| 472 | ) |
| 473 | |
| 474 | maybe( |
| 475 | http_archive, |
| 476 | name = "raze__gimli__0_27_0", |
| 477 | url = "https://crates.io/api/v1/crates/gimli/0.27.0/download", |
| 478 | type = "tar.gz", |
| 479 | sha256 = "dec7af912d60cdbd3677c1af9352ebae6fb8394d165568a2234df0fa00f87793", |
| 480 | strip_prefix = "gimli-0.27.0", |
| 481 | build_file = Label("//third_party/cargo/remote:BUILD.gimli-0.27.0.bazel"), |
Brian Silverman | 547eda0 | 2022-05-19 23:14:08 -0700 | [diff] [blame] | 482 | ) |
| 483 | |
| 484 | maybe( |
| 485 | http_archive, |
| 486 | name = "raze__glob__0_3_0", |
| 487 | url = "https://crates.io/api/v1/crates/glob/0.3.0/download", |
| 488 | type = "tar.gz", |
| 489 | sha256 = "9b919933a397b79c37e33b77bb2aa3dc8eb6e165ad809e58ff75bc7db2e34574", |
| 490 | strip_prefix = "glob-0.3.0", |
| 491 | build_file = Label("//third_party/cargo/remote:BUILD.glob-0.3.0.bazel"), |
| 492 | ) |
| 493 | |
| 494 | maybe( |
| 495 | http_archive, |
Brian Silverman | a7ba251 | 2022-12-19 19:13:52 -0800 | [diff] [blame] | 496 | name = "raze__hashbrown__0_12_3", |
| 497 | url = "https://crates.io/api/v1/crates/hashbrown/0.12.3/download", |
Brian Silverman | 547eda0 | 2022-05-19 23:14:08 -0700 | [diff] [blame] | 498 | type = "tar.gz", |
Brian Silverman | a7ba251 | 2022-12-19 19:13:52 -0800 | [diff] [blame] | 499 | sha256 = "8a9ee70c43aaf417c914396645a0fa852624801b24ebb7ae78fe8272889ac888", |
| 500 | strip_prefix = "hashbrown-0.12.3", |
| 501 | build_file = Label("//third_party/cargo/remote:BUILD.hashbrown-0.12.3.bazel"), |
Brian Silverman | 547eda0 | 2022-05-19 23:14:08 -0700 | [diff] [blame] | 502 | ) |
| 503 | |
| 504 | maybe( |
| 505 | http_archive, |
| 506 | name = "raze__heck__0_4_0", |
| 507 | url = "https://crates.io/api/v1/crates/heck/0.4.0/download", |
| 508 | type = "tar.gz", |
| 509 | sha256 = "2540771e65fc8cb83cd6e8a237f70c319bd5c29f78ed1084ba5d50eeac86f7f9", |
| 510 | strip_prefix = "heck-0.4.0", |
| 511 | build_file = Label("//third_party/cargo/remote:BUILD.heck-0.4.0.bazel"), |
| 512 | ) |
| 513 | |
| 514 | maybe( |
| 515 | http_archive, |
| 516 | name = "raze__hermit_abi__0_1_19", |
| 517 | url = "https://crates.io/api/v1/crates/hermit-abi/0.1.19/download", |
| 518 | type = "tar.gz", |
| 519 | sha256 = "62b467343b94ba476dcb2500d242dadbb39557df889310ac77c5d99100aaac33", |
| 520 | strip_prefix = "hermit-abi-0.1.19", |
| 521 | build_file = Label("//third_party/cargo/remote:BUILD.hermit-abi-0.1.19.bazel"), |
| 522 | ) |
| 523 | |
| 524 | maybe( |
| 525 | http_archive, |
| 526 | name = "raze__humantime__2_1_0", |
| 527 | url = "https://crates.io/api/v1/crates/humantime/2.1.0/download", |
| 528 | type = "tar.gz", |
| 529 | sha256 = "9a3a5bfb195931eeb336b2a7b4d761daec841b97f947d34394601737a7bba5e4", |
| 530 | strip_prefix = "humantime-2.1.0", |
| 531 | build_file = Label("//third_party/cargo/remote:BUILD.humantime-2.1.0.bazel"), |
| 532 | ) |
| 533 | |
| 534 | maybe( |
| 535 | http_archive, |
Brian Silverman | a7ba251 | 2022-12-19 19:13:52 -0800 | [diff] [blame] | 536 | name = "raze__indexmap__1_9_2", |
| 537 | url = "https://crates.io/api/v1/crates/indexmap/1.9.2/download", |
Brian Silverman | 547eda0 | 2022-05-19 23:14:08 -0700 | [diff] [blame] | 538 | type = "tar.gz", |
Brian Silverman | a7ba251 | 2022-12-19 19:13:52 -0800 | [diff] [blame] | 539 | sha256 = "1885e79c1fc4b10f0e172c475f458b7f7b93061064d98c3293e98c5ba0c8b399", |
| 540 | strip_prefix = "indexmap-1.9.2", |
| 541 | build_file = Label("//third_party/cargo/remote:BUILD.indexmap-1.9.2.bazel"), |
Brian Silverman | 547eda0 | 2022-05-19 23:14:08 -0700 | [diff] [blame] | 542 | ) |
| 543 | |
| 544 | maybe( |
| 545 | http_archive, |
Brian Silverman | a7ba251 | 2022-12-19 19:13:52 -0800 | [diff] [blame] | 546 | name = "raze__indoc__1_0_8", |
| 547 | url = "https://crates.io/api/v1/crates/indoc/1.0.8/download", |
Brian Silverman | 547eda0 | 2022-05-19 23:14:08 -0700 | [diff] [blame] | 548 | type = "tar.gz", |
Brian Silverman | a7ba251 | 2022-12-19 19:13:52 -0800 | [diff] [blame] | 549 | sha256 = "da2d6f23ffea9d7e76c53eee25dfb67bcd8fde7f1198b0855350698c9f07c780", |
| 550 | strip_prefix = "indoc-1.0.8", |
| 551 | build_file = Label("//third_party/cargo/remote:BUILD.indoc-1.0.8.bazel"), |
Brian Silverman | 547eda0 | 2022-05-19 23:14:08 -0700 | [diff] [blame] | 552 | ) |
| 553 | |
| 554 | maybe( |
| 555 | http_archive, |
| 556 | name = "raze__instant__0_1_12", |
| 557 | url = "https://crates.io/api/v1/crates/instant/0.1.12/download", |
| 558 | type = "tar.gz", |
| 559 | sha256 = "7a5bbe824c507c5da5956355e86a746d82e0e1464f65d862cc5e71da70e94b2c", |
| 560 | strip_prefix = "instant-0.1.12", |
| 561 | build_file = Label("//third_party/cargo/remote:BUILD.instant-0.1.12.bazel"), |
| 562 | ) |
| 563 | |
| 564 | maybe( |
| 565 | http_archive, |
| 566 | name = "raze__is_ci__1_1_1", |
| 567 | url = "https://crates.io/api/v1/crates/is_ci/1.1.1/download", |
| 568 | type = "tar.gz", |
| 569 | sha256 = "616cde7c720bb2bb5824a224687d8f77bfd38922027f01d825cd7453be5099fb", |
| 570 | strip_prefix = "is_ci-1.1.1", |
| 571 | build_file = Label("//third_party/cargo/remote:BUILD.is_ci-1.1.1.bazel"), |
| 572 | ) |
| 573 | |
| 574 | maybe( |
| 575 | http_archive, |
Brian Silverman | a7ba251 | 2022-12-19 19:13:52 -0800 | [diff] [blame] | 576 | name = "raze__itertools__0_10_5", |
| 577 | url = "https://crates.io/api/v1/crates/itertools/0.10.5/download", |
Brian Silverman | 547eda0 | 2022-05-19 23:14:08 -0700 | [diff] [blame] | 578 | type = "tar.gz", |
Brian Silverman | a7ba251 | 2022-12-19 19:13:52 -0800 | [diff] [blame] | 579 | sha256 = "b0fd2260e829bddf4cb6ea802289de2f86d6a7a690192fbe91b3f46e0f2c8473", |
| 580 | strip_prefix = "itertools-0.10.5", |
| 581 | build_file = Label("//third_party/cargo/remote:BUILD.itertools-0.10.5.bazel"), |
Brian Silverman | 547eda0 | 2022-05-19 23:14:08 -0700 | [diff] [blame] | 582 | ) |
| 583 | |
| 584 | maybe( |
| 585 | http_archive, |
| 586 | name = "raze__itertools__0_9_0", |
| 587 | url = "https://crates.io/api/v1/crates/itertools/0.9.0/download", |
| 588 | type = "tar.gz", |
| 589 | sha256 = "284f18f85651fe11e8a991b2adb42cb078325c996ed026d994719efcfca1d54b", |
| 590 | strip_prefix = "itertools-0.9.0", |
| 591 | build_file = Label("//third_party/cargo/remote:BUILD.itertools-0.9.0.bazel"), |
| 592 | ) |
| 593 | |
| 594 | maybe( |
| 595 | http_archive, |
Brian Silverman | a7ba251 | 2022-12-19 19:13:52 -0800 | [diff] [blame] | 596 | name = "raze__itoa__1_0_5", |
| 597 | url = "https://crates.io/api/v1/crates/itoa/1.0.5/download", |
Brian Silverman | 547eda0 | 2022-05-19 23:14:08 -0700 | [diff] [blame] | 598 | type = "tar.gz", |
Brian Silverman | a7ba251 | 2022-12-19 19:13:52 -0800 | [diff] [blame] | 599 | sha256 = "fad582f4b9e86b6caa621cabeb0963332d92eea04729ab12892c2533951e6440", |
| 600 | strip_prefix = "itoa-1.0.5", |
| 601 | build_file = Label("//third_party/cargo/remote:BUILD.itoa-1.0.5.bazel"), |
Brian Silverman | 547eda0 | 2022-05-19 23:14:08 -0700 | [diff] [blame] | 602 | ) |
| 603 | |
| 604 | maybe( |
| 605 | http_archive, |
| 606 | name = "raze__lazy_static__1_4_0", |
| 607 | url = "https://crates.io/api/v1/crates/lazy_static/1.4.0/download", |
| 608 | type = "tar.gz", |
| 609 | sha256 = "e2abad23fbc42b3700f2f279844dc832adb2b2eb069b2df918f455c4e18cc646", |
| 610 | strip_prefix = "lazy_static-1.4.0", |
| 611 | build_file = Label("//third_party/cargo/remote:BUILD.lazy_static-1.4.0.bazel"), |
| 612 | ) |
| 613 | |
| 614 | maybe( |
| 615 | http_archive, |
| 616 | name = "raze__lazycell__1_3_0", |
| 617 | url = "https://crates.io/api/v1/crates/lazycell/1.3.0/download", |
| 618 | type = "tar.gz", |
| 619 | sha256 = "830d08ce1d1d941e6b30645f1a0eb5643013d835ce3779a5fc208261dbe10f55", |
| 620 | strip_prefix = "lazycell-1.3.0", |
| 621 | build_file = Label("//third_party/cargo/remote:BUILD.lazycell-1.3.0.bazel"), |
| 622 | ) |
| 623 | |
| 624 | maybe( |
| 625 | http_archive, |
Brian Silverman | a7ba251 | 2022-12-19 19:13:52 -0800 | [diff] [blame] | 626 | name = "raze__libc__0_2_138", |
| 627 | url = "https://crates.io/api/v1/crates/libc/0.2.138/download", |
Brian Silverman | 547eda0 | 2022-05-19 23:14:08 -0700 | [diff] [blame] | 628 | type = "tar.gz", |
Brian Silverman | a7ba251 | 2022-12-19 19:13:52 -0800 | [diff] [blame] | 629 | sha256 = "db6d7e329c562c5dfab7a46a2afabc8b987ab9a4834c9d1ca04dc54c1546cef8", |
| 630 | strip_prefix = "libc-0.2.138", |
| 631 | build_file = Label("//third_party/cargo/remote:BUILD.libc-0.2.138.bazel"), |
Brian Silverman | 547eda0 | 2022-05-19 23:14:08 -0700 | [diff] [blame] | 632 | ) |
| 633 | |
| 634 | maybe( |
| 635 | http_archive, |
| 636 | name = "raze__libloading__0_6_3", |
| 637 | url = "https://crates.io/api/v1/crates/libloading/0.6.3/download", |
| 638 | type = "tar.gz", |
| 639 | sha256 = "2443d8f0478b16759158b2f66d525991a05491138bc05814ef52a250148ef4f9", |
| 640 | strip_prefix = "libloading-0.6.3", |
| 641 | build_file = Label("//third_party/cargo/remote:BUILD.libloading-0.6.3.bazel"), |
| 642 | ) |
| 643 | |
| 644 | maybe( |
| 645 | http_archive, |
Brian Silverman | a7ba251 | 2022-12-19 19:13:52 -0800 | [diff] [blame] | 646 | name = "raze__libloading__0_7_4", |
| 647 | url = "https://crates.io/api/v1/crates/libloading/0.7.4/download", |
Brian Silverman | 547eda0 | 2022-05-19 23:14:08 -0700 | [diff] [blame] | 648 | type = "tar.gz", |
Brian Silverman | a7ba251 | 2022-12-19 19:13:52 -0800 | [diff] [blame] | 649 | sha256 = "b67380fd3b2fbe7527a606e18729d21c6f3951633d0500574c4dc22d2d638b9f", |
| 650 | strip_prefix = "libloading-0.7.4", |
| 651 | build_file = Label("//third_party/cargo/remote:BUILD.libloading-0.7.4.bazel"), |
Brian Silverman | 547eda0 | 2022-05-19 23:14:08 -0700 | [diff] [blame] | 652 | ) |
| 653 | |
| 654 | maybe( |
| 655 | http_archive, |
Brian Silverman | a7ba251 | 2022-12-19 19:13:52 -0800 | [diff] [blame] | 656 | name = "raze__link_cplusplus__1_0_8", |
| 657 | url = "https://crates.io/api/v1/crates/link-cplusplus/1.0.8/download", |
Brian Silverman | 547eda0 | 2022-05-19 23:14:08 -0700 | [diff] [blame] | 658 | type = "tar.gz", |
Brian Silverman | a7ba251 | 2022-12-19 19:13:52 -0800 | [diff] [blame] | 659 | sha256 = "ecd207c9c713c34f95a097a5b029ac2ce6010530c7b49d7fea24d977dede04f5", |
| 660 | strip_prefix = "link-cplusplus-1.0.8", |
| 661 | build_file = Label("//third_party/cargo/remote:BUILD.link-cplusplus-1.0.8.bazel"), |
Brian Silverman | 547eda0 | 2022-05-19 23:14:08 -0700 | [diff] [blame] | 662 | ) |
| 663 | |
| 664 | maybe( |
| 665 | http_archive, |
| 666 | name = "raze__log__0_4_17", |
| 667 | url = "https://crates.io/api/v1/crates/log/0.4.17/download", |
| 668 | type = "tar.gz", |
| 669 | sha256 = "abb12e687cfb44aa40f41fc3978ef76448f9b6038cad6aef4259d3c095a2382e", |
| 670 | strip_prefix = "log-0.4.17", |
| 671 | build_file = Label("//third_party/cargo/remote:BUILD.log-0.4.17.bazel"), |
| 672 | ) |
| 673 | |
| 674 | maybe( |
| 675 | http_archive, |
| 676 | name = "raze__memchr__2_5_0", |
| 677 | url = "https://crates.io/api/v1/crates/memchr/2.5.0/download", |
| 678 | type = "tar.gz", |
| 679 | sha256 = "2dffe52ecf27772e601905b7522cb4ef790d2cc203488bbd0e2fe85fcb74566d", |
| 680 | strip_prefix = "memchr-2.5.0", |
| 681 | build_file = Label("//third_party/cargo/remote:BUILD.memchr-2.5.0.bazel"), |
| 682 | ) |
| 683 | |
| 684 | maybe( |
| 685 | http_archive, |
| 686 | name = "raze__miette__4_7_1", |
| 687 | url = "https://crates.io/api/v1/crates/miette/4.7.1/download", |
| 688 | type = "tar.gz", |
| 689 | sha256 = "1c90329e44f9208b55f45711f9558cec15d7ef8295cc65ecd6d4188ae8edc58c", |
| 690 | strip_prefix = "miette-4.7.1", |
| 691 | build_file = Label("//third_party/cargo/remote:BUILD.miette-4.7.1.bazel"), |
| 692 | ) |
| 693 | |
| 694 | maybe( |
| 695 | http_archive, |
| 696 | name = "raze__miette_derive__4_7_1", |
| 697 | url = "https://crates.io/api/v1/crates/miette-derive/4.7.1/download", |
| 698 | type = "tar.gz", |
| 699 | sha256 = "6b5bc45b761bcf1b5e6e6c4128cd93b84c218721a8d9b894aa0aff4ed180174c", |
| 700 | strip_prefix = "miette-derive-4.7.1", |
| 701 | build_file = Label("//third_party/cargo/remote:BUILD.miette-derive-4.7.1.bazel"), |
| 702 | ) |
| 703 | |
| 704 | maybe( |
| 705 | http_archive, |
| 706 | name = "raze__minimal_lexical__0_2_1", |
| 707 | url = "https://crates.io/api/v1/crates/minimal-lexical/0.2.1/download", |
| 708 | type = "tar.gz", |
| 709 | sha256 = "68354c5c6bd36d73ff3feceb05efa59b6acb7626617f4962be322a825e61f79a", |
| 710 | strip_prefix = "minimal-lexical-0.2.1", |
| 711 | build_file = Label("//third_party/cargo/remote:BUILD.minimal-lexical-0.2.1.bazel"), |
| 712 | ) |
| 713 | |
| 714 | maybe( |
| 715 | http_archive, |
Brian Silverman | a7ba251 | 2022-12-19 19:13:52 -0800 | [diff] [blame] | 716 | name = "raze__miniz_oxide__0_6_2", |
| 717 | url = "https://crates.io/api/v1/crates/miniz_oxide/0.6.2/download", |
Brian Silverman | 547eda0 | 2022-05-19 23:14:08 -0700 | [diff] [blame] | 718 | type = "tar.gz", |
Brian Silverman | a7ba251 | 2022-12-19 19:13:52 -0800 | [diff] [blame] | 719 | sha256 = "b275950c28b37e794e8c55d88aeb5e139d0ce23fdbbeda68f8d7174abdf9e8fa", |
| 720 | strip_prefix = "miniz_oxide-0.6.2", |
| 721 | build_file = Label("//third_party/cargo/remote:BUILD.miniz_oxide-0.6.2.bazel"), |
Brian Silverman | 547eda0 | 2022-05-19 23:14:08 -0700 | [diff] [blame] | 722 | ) |
| 723 | |
| 724 | maybe( |
| 725 | http_archive, |
Brian Silverman | a7ba251 | 2022-12-19 19:13:52 -0800 | [diff] [blame] | 726 | name = "raze__moveit__0_5_1", |
| 727 | url = "https://crates.io/api/v1/crates/moveit/0.5.1/download", |
Brian Silverman | 547eda0 | 2022-05-19 23:14:08 -0700 | [diff] [blame] | 728 | type = "tar.gz", |
Brian Silverman | a7ba251 | 2022-12-19 19:13:52 -0800 | [diff] [blame] | 729 | sha256 = "d7d756ffe4e38013507d35bf726a93fcdae2cae043ab5ce477f13857a335030d", |
| 730 | strip_prefix = "moveit-0.5.1", |
| 731 | build_file = Label("//third_party/cargo/remote:BUILD.moveit-0.5.1.bazel"), |
Brian Silverman | 547eda0 | 2022-05-19 23:14:08 -0700 | [diff] [blame] | 732 | ) |
| 733 | |
| 734 | maybe( |
| 735 | http_archive, |
| 736 | name = "raze__nom__5_1_2", |
| 737 | url = "https://crates.io/api/v1/crates/nom/5.1.2/download", |
| 738 | type = "tar.gz", |
| 739 | sha256 = "ffb4262d26ed83a1c0a33a38fe2bb15797329c85770da05e6b828ddb782627af", |
| 740 | strip_prefix = "nom-5.1.2", |
| 741 | build_file = Label("//third_party/cargo/remote:BUILD.nom-5.1.2.bazel"), |
| 742 | ) |
| 743 | |
| 744 | maybe( |
| 745 | http_archive, |
| 746 | name = "raze__nom__7_1_1", |
| 747 | url = "https://crates.io/api/v1/crates/nom/7.1.1/download", |
| 748 | type = "tar.gz", |
| 749 | sha256 = "a8903e5a29a317527874d0402f867152a3d21c908bb0b933e416c65e301d4c36", |
| 750 | strip_prefix = "nom-7.1.1", |
| 751 | build_file = Label("//third_party/cargo/remote:BUILD.nom-7.1.1.bazel"), |
| 752 | ) |
| 753 | |
| 754 | maybe( |
| 755 | http_archive, |
Brian Silverman | a7ba251 | 2022-12-19 19:13:52 -0800 | [diff] [blame] | 756 | name = "raze__object__0_30_0", |
| 757 | url = "https://crates.io/api/v1/crates/object/0.30.0/download", |
Brian Silverman | 547eda0 | 2022-05-19 23:14:08 -0700 | [diff] [blame] | 758 | type = "tar.gz", |
Brian Silverman | a7ba251 | 2022-12-19 19:13:52 -0800 | [diff] [blame] | 759 | sha256 = "239da7f290cfa979f43f85a8efeee9a8a76d0827c356d37f9d3d7254d6b537fb", |
| 760 | strip_prefix = "object-0.30.0", |
| 761 | build_file = Label("//third_party/cargo/remote:BUILD.object-0.30.0.bazel"), |
Brian Silverman | 547eda0 | 2022-05-19 23:14:08 -0700 | [diff] [blame] | 762 | ) |
| 763 | |
| 764 | maybe( |
| 765 | http_archive, |
Brian Silverman | a7ba251 | 2022-12-19 19:13:52 -0800 | [diff] [blame] | 766 | name = "raze__once_cell__1_16_0", |
| 767 | url = "https://crates.io/api/v1/crates/once_cell/1.16.0/download", |
Brian Silverman | 547eda0 | 2022-05-19 23:14:08 -0700 | [diff] [blame] | 768 | type = "tar.gz", |
Brian Silverman | a7ba251 | 2022-12-19 19:13:52 -0800 | [diff] [blame] | 769 | sha256 = "86f0b0d4bf799edbc74508c1e8bf170ff5f41238e5f8225603ca7caaae2b7860", |
| 770 | strip_prefix = "once_cell-1.16.0", |
| 771 | build_file = Label("//third_party/cargo/remote:BUILD.once_cell-1.16.0.bazel"), |
Brian Silverman | 547eda0 | 2022-05-19 23:14:08 -0700 | [diff] [blame] | 772 | ) |
| 773 | |
| 774 | maybe( |
| 775 | http_archive, |
Brian Silverman | a7ba251 | 2022-12-19 19:13:52 -0800 | [diff] [blame] | 776 | name = "raze__os_str_bytes__6_4_1", |
| 777 | url = "https://crates.io/api/v1/crates/os_str_bytes/6.4.1/download", |
Brian Silverman | 547eda0 | 2022-05-19 23:14:08 -0700 | [diff] [blame] | 778 | type = "tar.gz", |
Brian Silverman | a7ba251 | 2022-12-19 19:13:52 -0800 | [diff] [blame] | 779 | sha256 = "9b7820b9daea5457c9f21c69448905d723fbd21136ccf521748f23fd49e723ee", |
| 780 | strip_prefix = "os_str_bytes-6.4.1", |
| 781 | build_file = Label("//third_party/cargo/remote:BUILD.os_str_bytes-6.4.1.bazel"), |
Brian Silverman | 547eda0 | 2022-05-19 23:14:08 -0700 | [diff] [blame] | 782 | ) |
| 783 | |
| 784 | maybe( |
| 785 | http_archive, |
Brian Silverman | a7ba251 | 2022-12-19 19:13:52 -0800 | [diff] [blame] | 786 | name = "raze__owo_colors__3_5_0", |
| 787 | url = "https://crates.io/api/v1/crates/owo-colors/3.5.0/download", |
Brian Silverman | 547eda0 | 2022-05-19 23:14:08 -0700 | [diff] [blame] | 788 | type = "tar.gz", |
Brian Silverman | a7ba251 | 2022-12-19 19:13:52 -0800 | [diff] [blame] | 789 | sha256 = "c1b04fb49957986fdce4d6ee7a65027d55d4b6d2265e5848bbb507b58ccfdb6f", |
| 790 | strip_prefix = "owo-colors-3.5.0", |
| 791 | build_file = Label("//third_party/cargo/remote:BUILD.owo-colors-3.5.0.bazel"), |
Brian Silverman | 547eda0 | 2022-05-19 23:14:08 -0700 | [diff] [blame] | 792 | ) |
| 793 | |
| 794 | maybe( |
| 795 | http_archive, |
| 796 | name = "raze__pathdiff__0_2_1", |
| 797 | url = "https://crates.io/api/v1/crates/pathdiff/0.2.1/download", |
| 798 | type = "tar.gz", |
| 799 | sha256 = "8835116a5c179084a830efb3adc117ab007512b535bc1a21c991d3b32a6b44dd", |
| 800 | strip_prefix = "pathdiff-0.2.1", |
| 801 | build_file = Label("//third_party/cargo/remote:BUILD.pathdiff-0.2.1.bazel"), |
| 802 | ) |
| 803 | |
| 804 | maybe( |
| 805 | http_archive, |
| 806 | name = "raze__peeking_take_while__0_1_2", |
| 807 | url = "https://crates.io/api/v1/crates/peeking_take_while/0.1.2/download", |
| 808 | type = "tar.gz", |
| 809 | sha256 = "19b17cddbe7ec3f8bc800887bab5e717348c95ea2ca0b1bf0837fb964dc67099", |
| 810 | strip_prefix = "peeking_take_while-0.1.2", |
| 811 | build_file = Label("//third_party/cargo/remote:BUILD.peeking_take_while-0.1.2.bazel"), |
| 812 | ) |
| 813 | |
| 814 | maybe( |
| 815 | http_archive, |
Brian Silverman | 53b0cfb | 2022-07-23 16:38:26 -0700 | [diff] [blame] | 816 | name = "raze__pin_project_lite__0_2_9", |
| 817 | url = "https://crates.io/api/v1/crates/pin-project-lite/0.2.9/download", |
| 818 | type = "tar.gz", |
| 819 | sha256 = "e0a7ae3ac2f1173085d398531c705756c94a4c56843785df85a60c1a0afac116", |
| 820 | strip_prefix = "pin-project-lite-0.2.9", |
| 821 | build_file = Label("//third_party/cargo/remote:BUILD.pin-project-lite-0.2.9.bazel"), |
| 822 | ) |
| 823 | |
| 824 | maybe( |
| 825 | http_archive, |
| 826 | name = "raze__pin_utils__0_1_0", |
| 827 | url = "https://crates.io/api/v1/crates/pin-utils/0.1.0/download", |
| 828 | type = "tar.gz", |
| 829 | sha256 = "8b870d8c151b6f2fb93e84a13146138f05d02ed11c7e7c54f8826aaaf7c9f184", |
| 830 | strip_prefix = "pin-utils-0.1.0", |
| 831 | build_file = Label("//third_party/cargo/remote:BUILD.pin-utils-0.1.0.bazel"), |
| 832 | ) |
| 833 | |
| 834 | maybe( |
| 835 | http_archive, |
Brian Silverman | 547eda0 | 2022-05-19 23:14:08 -0700 | [diff] [blame] | 836 | name = "raze__predicates__2_1_1", |
| 837 | url = "https://crates.io/api/v1/crates/predicates/2.1.1/download", |
| 838 | type = "tar.gz", |
| 839 | sha256 = "a5aab5be6e4732b473071984b3164dbbfb7a3674d30ea5ff44410b6bcd960c3c", |
| 840 | strip_prefix = "predicates-2.1.1", |
| 841 | build_file = Label("//third_party/cargo/remote:BUILD.predicates-2.1.1.bazel"), |
| 842 | ) |
| 843 | |
| 844 | maybe( |
| 845 | http_archive, |
Brian Silverman | a7ba251 | 2022-12-19 19:13:52 -0800 | [diff] [blame] | 846 | name = "raze__predicates_core__1_0_5", |
| 847 | url = "https://crates.io/api/v1/crates/predicates-core/1.0.5/download", |
Brian Silverman | 547eda0 | 2022-05-19 23:14:08 -0700 | [diff] [blame] | 848 | type = "tar.gz", |
Brian Silverman | a7ba251 | 2022-12-19 19:13:52 -0800 | [diff] [blame] | 849 | sha256 = "72f883590242d3c6fc5bf50299011695fa6590c2c70eac95ee1bdb9a733ad1a2", |
| 850 | strip_prefix = "predicates-core-1.0.5", |
| 851 | build_file = Label("//third_party/cargo/remote:BUILD.predicates-core-1.0.5.bazel"), |
Brian Silverman | 547eda0 | 2022-05-19 23:14:08 -0700 | [diff] [blame] | 852 | ) |
| 853 | |
| 854 | maybe( |
| 855 | http_archive, |
Brian Silverman | a7ba251 | 2022-12-19 19:13:52 -0800 | [diff] [blame] | 856 | name = "raze__predicates_tree__1_0_7", |
| 857 | url = "https://crates.io/api/v1/crates/predicates-tree/1.0.7/download", |
Brian Silverman | 547eda0 | 2022-05-19 23:14:08 -0700 | [diff] [blame] | 858 | type = "tar.gz", |
Brian Silverman | a7ba251 | 2022-12-19 19:13:52 -0800 | [diff] [blame] | 859 | sha256 = "54ff541861505aabf6ea722d2131ee980b8276e10a1297b94e896dd8b621850d", |
| 860 | strip_prefix = "predicates-tree-1.0.7", |
| 861 | build_file = Label("//third_party/cargo/remote:BUILD.predicates-tree-1.0.7.bazel"), |
Brian Silverman | 547eda0 | 2022-05-19 23:14:08 -0700 | [diff] [blame] | 862 | ) |
| 863 | |
| 864 | maybe( |
| 865 | http_archive, |
| 866 | name = "raze__proc_macro_error__1_0_4", |
| 867 | url = "https://crates.io/api/v1/crates/proc-macro-error/1.0.4/download", |
| 868 | type = "tar.gz", |
| 869 | sha256 = "da25490ff9892aab3fcf7c36f08cfb902dd3e71ca0f9f9517bea02a73a5ce38c", |
| 870 | strip_prefix = "proc-macro-error-1.0.4", |
| 871 | build_file = Label("//third_party/cargo/remote:BUILD.proc-macro-error-1.0.4.bazel"), |
| 872 | ) |
| 873 | |
| 874 | maybe( |
| 875 | http_archive, |
| 876 | name = "raze__proc_macro_error_attr__1_0_4", |
| 877 | url = "https://crates.io/api/v1/crates/proc-macro-error-attr/1.0.4/download", |
| 878 | type = "tar.gz", |
| 879 | sha256 = "a1be40180e52ecc98ad80b184934baf3d0d29f979574e439af5a55274b35f869", |
| 880 | strip_prefix = "proc-macro-error-attr-1.0.4", |
| 881 | build_file = Label("//third_party/cargo/remote:BUILD.proc-macro-error-attr-1.0.4.bazel"), |
| 882 | ) |
| 883 | |
| 884 | maybe( |
| 885 | http_archive, |
Brian Silverman | a7ba251 | 2022-12-19 19:13:52 -0800 | [diff] [blame] | 886 | name = "raze__proc_macro2__1_0_49", |
| 887 | url = "https://crates.io/api/v1/crates/proc-macro2/1.0.49/download", |
Brian Silverman | 547eda0 | 2022-05-19 23:14:08 -0700 | [diff] [blame] | 888 | type = "tar.gz", |
Brian Silverman | a7ba251 | 2022-12-19 19:13:52 -0800 | [diff] [blame] | 889 | sha256 = "57a8eca9f9c4ffde41714334dee777596264c7825420f521abc92b5b5deb63a5", |
| 890 | strip_prefix = "proc-macro2-1.0.49", |
| 891 | build_file = Label("//third_party/cargo/remote:BUILD.proc-macro2-1.0.49.bazel"), |
Brian Silverman | 547eda0 | 2022-05-19 23:14:08 -0700 | [diff] [blame] | 892 | ) |
| 893 | |
| 894 | maybe( |
| 895 | http_archive, |
Brian Silverman | a7ba251 | 2022-12-19 19:13:52 -0800 | [diff] [blame] | 896 | name = "raze__quote__1_0_23", |
| 897 | url = "https://crates.io/api/v1/crates/quote/1.0.23/download", |
Brian Silverman | 547eda0 | 2022-05-19 23:14:08 -0700 | [diff] [blame] | 898 | type = "tar.gz", |
Brian Silverman | a7ba251 | 2022-12-19 19:13:52 -0800 | [diff] [blame] | 899 | sha256 = "8856d8364d252a14d474036ea1358d63c9e6965c8e5c1885c18f73d70bff9c7b", |
| 900 | strip_prefix = "quote-1.0.23", |
| 901 | build_file = Label("//third_party/cargo/remote:BUILD.quote-1.0.23.bazel"), |
Brian Silverman | 547eda0 | 2022-05-19 23:14:08 -0700 | [diff] [blame] | 902 | ) |
| 903 | |
| 904 | maybe( |
| 905 | http_archive, |
Brian Silverman | a7ba251 | 2022-12-19 19:13:52 -0800 | [diff] [blame] | 906 | name = "raze__redox_syscall__0_2_16", |
| 907 | url = "https://crates.io/api/v1/crates/redox_syscall/0.2.16/download", |
Brian Silverman | 547eda0 | 2022-05-19 23:14:08 -0700 | [diff] [blame] | 908 | type = "tar.gz", |
Brian Silverman | a7ba251 | 2022-12-19 19:13:52 -0800 | [diff] [blame] | 909 | sha256 = "fb5a58c1855b4b6819d59012155603f0b22ad30cad752600aadfcb695265519a", |
| 910 | strip_prefix = "redox_syscall-0.2.16", |
| 911 | build_file = Label("//third_party/cargo/remote:BUILD.redox_syscall-0.2.16.bazel"), |
Brian Silverman | 547eda0 | 2022-05-19 23:14:08 -0700 | [diff] [blame] | 912 | ) |
| 913 | |
| 914 | maybe( |
| 915 | http_archive, |
Brian Silverman | a7ba251 | 2022-12-19 19:13:52 -0800 | [diff] [blame] | 916 | name = "raze__regex__1_7_0", |
| 917 | url = "https://crates.io/api/v1/crates/regex/1.7.0/download", |
Brian Silverman | 547eda0 | 2022-05-19 23:14:08 -0700 | [diff] [blame] | 918 | type = "tar.gz", |
Brian Silverman | a7ba251 | 2022-12-19 19:13:52 -0800 | [diff] [blame] | 919 | sha256 = "e076559ef8e241f2ae3479e36f97bd5741c0330689e217ad51ce2c76808b868a", |
| 920 | strip_prefix = "regex-1.7.0", |
| 921 | build_file = Label("//third_party/cargo/remote:BUILD.regex-1.7.0.bazel"), |
Brian Silverman | 547eda0 | 2022-05-19 23:14:08 -0700 | [diff] [blame] | 922 | ) |
| 923 | |
| 924 | maybe( |
| 925 | http_archive, |
| 926 | name = "raze__regex_automata__0_1_10", |
| 927 | url = "https://crates.io/api/v1/crates/regex-automata/0.1.10/download", |
| 928 | type = "tar.gz", |
| 929 | sha256 = "6c230d73fb8d8c1b9c0b3135c5142a8acee3a0558fb8db5cf1cb65f8d7862132", |
| 930 | strip_prefix = "regex-automata-0.1.10", |
| 931 | build_file = Label("//third_party/cargo/remote:BUILD.regex-automata-0.1.10.bazel"), |
| 932 | ) |
| 933 | |
| 934 | maybe( |
| 935 | http_archive, |
Brian Silverman | a7ba251 | 2022-12-19 19:13:52 -0800 | [diff] [blame] | 936 | name = "raze__regex_syntax__0_6_28", |
| 937 | url = "https://crates.io/api/v1/crates/regex-syntax/0.6.28/download", |
Brian Silverman | 547eda0 | 2022-05-19 23:14:08 -0700 | [diff] [blame] | 938 | type = "tar.gz", |
Brian Silverman | a7ba251 | 2022-12-19 19:13:52 -0800 | [diff] [blame] | 939 | sha256 = "456c603be3e8d448b072f410900c09faf164fbce2d480456f50eea6e25f9c848", |
| 940 | strip_prefix = "regex-syntax-0.6.28", |
| 941 | build_file = Label("//third_party/cargo/remote:BUILD.regex-syntax-0.6.28.bazel"), |
Brian Silverman | 547eda0 | 2022-05-19 23:14:08 -0700 | [diff] [blame] | 942 | ) |
| 943 | |
| 944 | maybe( |
| 945 | http_archive, |
| 946 | name = "raze__remove_dir_all__0_5_3", |
| 947 | url = "https://crates.io/api/v1/crates/remove_dir_all/0.5.3/download", |
| 948 | type = "tar.gz", |
| 949 | sha256 = "3acd125665422973a33ac9d3dd2df85edad0f4ae9b00dafb1a05e43a9f5ef8e7", |
| 950 | strip_prefix = "remove_dir_all-0.5.3", |
| 951 | build_file = Label("//third_party/cargo/remote:BUILD.remove_dir_all-0.5.3.bazel"), |
| 952 | ) |
| 953 | |
| 954 | maybe( |
| 955 | http_archive, |
| 956 | name = "raze__rust_info__0_3_2", |
| 957 | url = "https://crates.io/api/v1/crates/rust_info/0.3.2/download", |
| 958 | type = "tar.gz", |
| 959 | sha256 = "821495e93d15e4433347b3a72e97005f1d8a620dc88d46637fecfcb16e98043d", |
| 960 | strip_prefix = "rust_info-0.3.2", |
| 961 | build_file = Label("//third_party/cargo/remote:BUILD.rust_info-0.3.2.bazel"), |
| 962 | ) |
| 963 | |
| 964 | maybe( |
| 965 | http_archive, |
| 966 | name = "raze__rustc_demangle__0_1_21", |
| 967 | url = "https://crates.io/api/v1/crates/rustc-demangle/0.1.21/download", |
| 968 | type = "tar.gz", |
| 969 | sha256 = "7ef03e0a2b150c7a90d01faf6254c9c48a41e95fb2a8c2ac1c6f0d2b9aefc342", |
| 970 | strip_prefix = "rustc-demangle-0.1.21", |
| 971 | build_file = Label("//third_party/cargo/remote:BUILD.rustc-demangle-0.1.21.bazel"), |
| 972 | ) |
| 973 | |
| 974 | maybe( |
| 975 | http_archive, |
| 976 | name = "raze__rustc_hash__1_1_0", |
| 977 | url = "https://crates.io/api/v1/crates/rustc-hash/1.1.0/download", |
| 978 | type = "tar.gz", |
| 979 | sha256 = "08d43f7aa6b08d49f382cde6a7982047c3426db949b1424bc4b7ec9ae12c6ce2", |
| 980 | strip_prefix = "rustc-hash-1.1.0", |
| 981 | build_file = Label("//third_party/cargo/remote:BUILD.rustc-hash-1.1.0.bazel"), |
| 982 | ) |
| 983 | |
| 984 | maybe( |
| 985 | http_archive, |
James Kuszmaul | 65541cb | 2022-11-08 14:53:47 -0800 | [diff] [blame] | 986 | name = "raze__rustc_version__0_4_0", |
| 987 | url = "https://crates.io/api/v1/crates/rustc_version/0.4.0/download", |
| 988 | type = "tar.gz", |
Brian Silverman | a7ba251 | 2022-12-19 19:13:52 -0800 | [diff] [blame] | 989 | sha256 = "bfa0f585226d2e68097d4f95d113b15b83a82e819ab25717ec0590d9584ef366", |
James Kuszmaul | 65541cb | 2022-11-08 14:53:47 -0800 | [diff] [blame] | 990 | strip_prefix = "rustc_version-0.4.0", |
| 991 | build_file = Label("//third_party/cargo/remote:BUILD.rustc_version-0.4.0.bazel"), |
| 992 | ) |
| 993 | |
| 994 | maybe( |
| 995 | http_archive, |
Brian Silverman | a7ba251 | 2022-12-19 19:13:52 -0800 | [diff] [blame] | 996 | name = "raze__rustversion__1_0_11", |
| 997 | url = "https://crates.io/api/v1/crates/rustversion/1.0.11/download", |
Brian Silverman | 547eda0 | 2022-05-19 23:14:08 -0700 | [diff] [blame] | 998 | type = "tar.gz", |
Brian Silverman | a7ba251 | 2022-12-19 19:13:52 -0800 | [diff] [blame] | 999 | sha256 = "5583e89e108996506031660fe09baa5011b9dd0341b89029313006d1fb508d70", |
| 1000 | strip_prefix = "rustversion-1.0.11", |
| 1001 | build_file = Label("//third_party/cargo/remote:BUILD.rustversion-1.0.11.bazel"), |
Brian Silverman | 547eda0 | 2022-05-19 23:14:08 -0700 | [diff] [blame] | 1002 | ) |
| 1003 | |
| 1004 | maybe( |
| 1005 | http_archive, |
Brian Silverman | a7ba251 | 2022-12-19 19:13:52 -0800 | [diff] [blame] | 1006 | name = "raze__ryu__1_0_12", |
| 1007 | url = "https://crates.io/api/v1/crates/ryu/1.0.12/download", |
Brian Silverman | 547eda0 | 2022-05-19 23:14:08 -0700 | [diff] [blame] | 1008 | type = "tar.gz", |
Brian Silverman | a7ba251 | 2022-12-19 19:13:52 -0800 | [diff] [blame] | 1009 | sha256 = "7b4b9743ed687d4b4bcedf9ff5eaa7398495ae14e61cba0a295704edbc7decde", |
| 1010 | strip_prefix = "ryu-1.0.12", |
| 1011 | build_file = Label("//third_party/cargo/remote:BUILD.ryu-1.0.12.bazel"), |
Brian Silverman | 547eda0 | 2022-05-19 23:14:08 -0700 | [diff] [blame] | 1012 | ) |
| 1013 | |
| 1014 | maybe( |
| 1015 | http_archive, |
Philipp Schrader | 3eaca7e | 2022-12-19 18:33:50 -0800 | [diff] [blame] | 1016 | name = "raze__semver__1_0_16", |
| 1017 | url = "https://crates.io/api/v1/crates/semver/1.0.16/download", |
James Kuszmaul | 65541cb | 2022-11-08 14:53:47 -0800 | [diff] [blame] | 1018 | type = "tar.gz", |
Brian Silverman | a7ba251 | 2022-12-19 19:13:52 -0800 | [diff] [blame] | 1019 | sha256 = "58bc9567378fc7690d6b2addae4e60ac2eeea07becb2c64b9f218b53865cba2a", |
Philipp Schrader | 3eaca7e | 2022-12-19 18:33:50 -0800 | [diff] [blame] | 1020 | strip_prefix = "semver-1.0.16", |
| 1021 | build_file = Label("//third_party/cargo/remote:BUILD.semver-1.0.16.bazel"), |
James Kuszmaul | 65541cb | 2022-11-08 14:53:47 -0800 | [diff] [blame] | 1022 | ) |
| 1023 | |
| 1024 | maybe( |
| 1025 | http_archive, |
Brian Silverman | a7ba251 | 2022-12-19 19:13:52 -0800 | [diff] [blame] | 1026 | name = "raze__serde__1_0_151", |
| 1027 | url = "https://crates.io/api/v1/crates/serde/1.0.151/download", |
Brian Silverman | 547eda0 | 2022-05-19 23:14:08 -0700 | [diff] [blame] | 1028 | type = "tar.gz", |
Brian Silverman | a7ba251 | 2022-12-19 19:13:52 -0800 | [diff] [blame] | 1029 | sha256 = "97fed41fc1a24994d044e6db6935e69511a1153b52c15eb42493b26fa87feba0", |
| 1030 | strip_prefix = "serde-1.0.151", |
| 1031 | build_file = Label("//third_party/cargo/remote:BUILD.serde-1.0.151.bazel"), |
Brian Silverman | 547eda0 | 2022-05-19 23:14:08 -0700 | [diff] [blame] | 1032 | ) |
| 1033 | |
| 1034 | maybe( |
| 1035 | http_archive, |
Brian Silverman | a7ba251 | 2022-12-19 19:13:52 -0800 | [diff] [blame] | 1036 | name = "raze__serde_derive__1_0_151", |
| 1037 | url = "https://crates.io/api/v1/crates/serde_derive/1.0.151/download", |
Brian Silverman | 547eda0 | 2022-05-19 23:14:08 -0700 | [diff] [blame] | 1038 | type = "tar.gz", |
Brian Silverman | a7ba251 | 2022-12-19 19:13:52 -0800 | [diff] [blame] | 1039 | sha256 = "255abe9a125a985c05190d687b320c12f9b1f0b99445e608c21ba0782c719ad8", |
| 1040 | strip_prefix = "serde_derive-1.0.151", |
| 1041 | build_file = Label("//third_party/cargo/remote:BUILD.serde_derive-1.0.151.bazel"), |
Brian Silverman | 547eda0 | 2022-05-19 23:14:08 -0700 | [diff] [blame] | 1042 | ) |
| 1043 | |
| 1044 | maybe( |
| 1045 | http_archive, |
Brian Silverman | a7ba251 | 2022-12-19 19:13:52 -0800 | [diff] [blame] | 1046 | name = "raze__serde_json__1_0_91", |
| 1047 | url = "https://crates.io/api/v1/crates/serde_json/1.0.91/download", |
Brian Silverman | 547eda0 | 2022-05-19 23:14:08 -0700 | [diff] [blame] | 1048 | type = "tar.gz", |
Brian Silverman | a7ba251 | 2022-12-19 19:13:52 -0800 | [diff] [blame] | 1049 | sha256 = "877c235533714907a8c2464236f5c4b2a17262ef1bd71f38f35ea592c8da6883", |
| 1050 | strip_prefix = "serde_json-1.0.91", |
| 1051 | build_file = Label("//third_party/cargo/remote:BUILD.serde_json-1.0.91.bazel"), |
Brian Silverman | 547eda0 | 2022-05-19 23:14:08 -0700 | [diff] [blame] | 1052 | ) |
| 1053 | |
| 1054 | maybe( |
| 1055 | http_archive, |
| 1056 | name = "raze__shlex__1_1_0", |
| 1057 | url = "https://crates.io/api/v1/crates/shlex/1.1.0/download", |
| 1058 | type = "tar.gz", |
| 1059 | sha256 = "43b2853a4d09f215c24cc5489c992ce46052d359b5109343cbafbf26bc62f8a3", |
| 1060 | strip_prefix = "shlex-1.1.0", |
| 1061 | build_file = Label("//third_party/cargo/remote:BUILD.shlex-1.1.0.bazel"), |
| 1062 | ) |
| 1063 | |
| 1064 | maybe( |
| 1065 | http_archive, |
Brian Silverman | a7ba251 | 2022-12-19 19:13:52 -0800 | [diff] [blame] | 1066 | name = "raze__slab__0_4_7", |
| 1067 | url = "https://crates.io/api/v1/crates/slab/0.4.7/download", |
Brian Silverman | 53b0cfb | 2022-07-23 16:38:26 -0700 | [diff] [blame] | 1068 | type = "tar.gz", |
Brian Silverman | a7ba251 | 2022-12-19 19:13:52 -0800 | [diff] [blame] | 1069 | sha256 = "4614a76b2a8be0058caa9dbbaf66d988527d86d003c11a94fbd335d7661edcef", |
| 1070 | strip_prefix = "slab-0.4.7", |
| 1071 | build_file = Label("//third_party/cargo/remote:BUILD.slab-0.4.7.bazel"), |
Brian Silverman | 53b0cfb | 2022-07-23 16:38:26 -0700 | [diff] [blame] | 1072 | ) |
| 1073 | |
| 1074 | maybe( |
| 1075 | http_archive, |
Brian Silverman | a7ba251 | 2022-12-19 19:13:52 -0800 | [diff] [blame] | 1076 | name = "raze__smallvec__1_10_0", |
| 1077 | url = "https://crates.io/api/v1/crates/smallvec/1.10.0/download", |
Brian Silverman | 547eda0 | 2022-05-19 23:14:08 -0700 | [diff] [blame] | 1078 | type = "tar.gz", |
Brian Silverman | a7ba251 | 2022-12-19 19:13:52 -0800 | [diff] [blame] | 1079 | sha256 = "a507befe795404456341dfab10cef66ead4c041f62b8b11bbb92bffe5d0953e0", |
| 1080 | strip_prefix = "smallvec-1.10.0", |
| 1081 | build_file = Label("//third_party/cargo/remote:BUILD.smallvec-1.10.0.bazel"), |
Brian Silverman | 547eda0 | 2022-05-19 23:14:08 -0700 | [diff] [blame] | 1082 | ) |
| 1083 | |
| 1084 | maybe( |
| 1085 | http_archive, |
| 1086 | name = "raze__smawk__0_3_1", |
| 1087 | url = "https://crates.io/api/v1/crates/smawk/0.3.1/download", |
| 1088 | type = "tar.gz", |
| 1089 | sha256 = "f67ad224767faa3c7d8b6d91985b78e70a1324408abcb1cfcc2be4c06bc06043", |
| 1090 | strip_prefix = "smawk-0.3.1", |
| 1091 | build_file = Label("//third_party/cargo/remote:BUILD.smawk-0.3.1.bazel"), |
| 1092 | ) |
| 1093 | |
| 1094 | maybe( |
| 1095 | http_archive, |
| 1096 | name = "raze__strsim__0_10_0", |
| 1097 | url = "https://crates.io/api/v1/crates/strsim/0.10.0/download", |
| 1098 | type = "tar.gz", |
| 1099 | sha256 = "73473c0e59e6d5812c5dfe2a064a6444949f089e20eec9a2e5506596494e4623", |
| 1100 | strip_prefix = "strsim-0.10.0", |
| 1101 | build_file = Label("//third_party/cargo/remote:BUILD.strsim-0.10.0.bazel"), |
| 1102 | ) |
| 1103 | |
| 1104 | maybe( |
| 1105 | http_archive, |
| 1106 | name = "raze__strsim__0_8_0", |
| 1107 | url = "https://crates.io/api/v1/crates/strsim/0.8.0/download", |
| 1108 | type = "tar.gz", |
| 1109 | sha256 = "8ea5119cdb4c55b55d432abb513a0429384878c15dde60cc77b1c99de1a95a6a", |
| 1110 | strip_prefix = "strsim-0.8.0", |
| 1111 | build_file = Label("//third_party/cargo/remote:BUILD.strsim-0.8.0.bazel"), |
| 1112 | ) |
| 1113 | |
| 1114 | maybe( |
| 1115 | http_archive, |
Brian Silverman | a7ba251 | 2022-12-19 19:13:52 -0800 | [diff] [blame] | 1116 | name = "raze__strum_macros__0_24_3", |
| 1117 | url = "https://crates.io/api/v1/crates/strum_macros/0.24.3/download", |
Brian Silverman | 547eda0 | 2022-05-19 23:14:08 -0700 | [diff] [blame] | 1118 | type = "tar.gz", |
Brian Silverman | a7ba251 | 2022-12-19 19:13:52 -0800 | [diff] [blame] | 1119 | sha256 = "1e385be0d24f186b4ce2f9982191e7101bb737312ad61c1f2f984f34bcf85d59", |
| 1120 | strip_prefix = "strum_macros-0.24.3", |
| 1121 | build_file = Label("//third_party/cargo/remote:BUILD.strum_macros-0.24.3.bazel"), |
Brian Silverman | 547eda0 | 2022-05-19 23:14:08 -0700 | [diff] [blame] | 1122 | ) |
| 1123 | |
| 1124 | maybe( |
| 1125 | http_archive, |
Brian Silverman | a7ba251 | 2022-12-19 19:13:52 -0800 | [diff] [blame] | 1126 | name = "raze__supports_color__1_3_1", |
| 1127 | url = "https://crates.io/api/v1/crates/supports-color/1.3.1/download", |
Brian Silverman | 547eda0 | 2022-05-19 23:14:08 -0700 | [diff] [blame] | 1128 | type = "tar.gz", |
Brian Silverman | a7ba251 | 2022-12-19 19:13:52 -0800 | [diff] [blame] | 1129 | sha256 = "8ba6faf2ca7ee42fdd458f4347ae0a9bd6bcc445ad7cb57ad82b383f18870d6f", |
| 1130 | strip_prefix = "supports-color-1.3.1", |
| 1131 | build_file = Label("//third_party/cargo/remote:BUILD.supports-color-1.3.1.bazel"), |
Brian Silverman | 547eda0 | 2022-05-19 23:14:08 -0700 | [diff] [blame] | 1132 | ) |
| 1133 | |
| 1134 | maybe( |
| 1135 | http_archive, |
| 1136 | name = "raze__supports_hyperlinks__1_2_0", |
| 1137 | url = "https://crates.io/api/v1/crates/supports-hyperlinks/1.2.0/download", |
| 1138 | type = "tar.gz", |
| 1139 | sha256 = "590b34f7c5f01ecc9d78dba4b3f445f31df750a67621cf31626f3b7441ce6406", |
| 1140 | strip_prefix = "supports-hyperlinks-1.2.0", |
| 1141 | build_file = Label("//third_party/cargo/remote:BUILD.supports-hyperlinks-1.2.0.bazel"), |
| 1142 | ) |
| 1143 | |
| 1144 | maybe( |
| 1145 | http_archive, |
| 1146 | name = "raze__supports_unicode__1_0_2", |
| 1147 | url = "https://crates.io/api/v1/crates/supports-unicode/1.0.2/download", |
| 1148 | type = "tar.gz", |
| 1149 | sha256 = "a8b945e45b417b125a8ec51f1b7df2f8df7920367700d1f98aedd21e5735f8b2", |
| 1150 | strip_prefix = "supports-unicode-1.0.2", |
| 1151 | build_file = Label("//third_party/cargo/remote:BUILD.supports-unicode-1.0.2.bazel"), |
| 1152 | ) |
| 1153 | |
| 1154 | maybe( |
| 1155 | http_archive, |
Brian Silverman | a7ba251 | 2022-12-19 19:13:52 -0800 | [diff] [blame] | 1156 | name = "raze__syn__1_0_107", |
| 1157 | url = "https://crates.io/api/v1/crates/syn/1.0.107/download", |
Brian Silverman | 547eda0 | 2022-05-19 23:14:08 -0700 | [diff] [blame] | 1158 | type = "tar.gz", |
Brian Silverman | a7ba251 | 2022-12-19 19:13:52 -0800 | [diff] [blame] | 1159 | sha256 = "1f4064b5b16e03ae50984a5a8ed5d4f8803e6bc1fd170a3cda91a1be4b18e3f5", |
| 1160 | strip_prefix = "syn-1.0.107", |
| 1161 | build_file = Label("//third_party/cargo/remote:BUILD.syn-1.0.107.bazel"), |
Brian Silverman | 547eda0 | 2022-05-19 23:14:08 -0700 | [diff] [blame] | 1162 | ) |
| 1163 | |
| 1164 | maybe( |
| 1165 | http_archive, |
| 1166 | name = "raze__tempfile__3_3_0", |
| 1167 | url = "https://crates.io/api/v1/crates/tempfile/3.3.0/download", |
| 1168 | type = "tar.gz", |
| 1169 | sha256 = "5cdb1ef4eaeeaddc8fbd371e5017057064af0911902ef36b39801f67cc6d79e4", |
| 1170 | strip_prefix = "tempfile-3.3.0", |
| 1171 | build_file = Label("//third_party/cargo/remote:BUILD.tempfile-3.3.0.bazel"), |
| 1172 | ) |
| 1173 | |
| 1174 | maybe( |
| 1175 | http_archive, |
| 1176 | name = "raze__termcolor__1_1_3", |
| 1177 | url = "https://crates.io/api/v1/crates/termcolor/1.1.3/download", |
| 1178 | type = "tar.gz", |
| 1179 | sha256 = "bab24d30b911b2376f3a13cc2cd443142f0c81dda04c118693e35b3835757755", |
| 1180 | strip_prefix = "termcolor-1.1.3", |
| 1181 | build_file = Label("//third_party/cargo/remote:BUILD.termcolor-1.1.3.bazel"), |
| 1182 | ) |
| 1183 | |
| 1184 | maybe( |
| 1185 | http_archive, |
| 1186 | name = "raze__terminal_size__0_1_17", |
| 1187 | url = "https://crates.io/api/v1/crates/terminal_size/0.1.17/download", |
| 1188 | type = "tar.gz", |
| 1189 | sha256 = "633c1a546cee861a1a6d0dc69ebeca693bf4296661ba7852b9d21d159e0506df", |
| 1190 | strip_prefix = "terminal_size-0.1.17", |
| 1191 | build_file = Label("//third_party/cargo/remote:BUILD.terminal_size-0.1.17.bazel"), |
| 1192 | ) |
| 1193 | |
| 1194 | maybe( |
| 1195 | http_archive, |
Brian Silverman | a7ba251 | 2022-12-19 19:13:52 -0800 | [diff] [blame] | 1196 | name = "raze__termtree__0_4_0", |
| 1197 | url = "https://crates.io/api/v1/crates/termtree/0.4.0/download", |
Brian Silverman | 547eda0 | 2022-05-19 23:14:08 -0700 | [diff] [blame] | 1198 | type = "tar.gz", |
Brian Silverman | a7ba251 | 2022-12-19 19:13:52 -0800 | [diff] [blame] | 1199 | sha256 = "95059e91184749cb66be6dc994f67f182b6d897cb3df74a5bf66b5e709295fd8", |
| 1200 | strip_prefix = "termtree-0.4.0", |
| 1201 | build_file = Label("//third_party/cargo/remote:BUILD.termtree-0.4.0.bazel"), |
Brian Silverman | 547eda0 | 2022-05-19 23:14:08 -0700 | [diff] [blame] | 1202 | ) |
| 1203 | |
| 1204 | maybe( |
| 1205 | http_archive, |
Brian Silverman | a7ba251 | 2022-12-19 19:13:52 -0800 | [diff] [blame] | 1206 | name = "raze__test_log__0_2_11", |
| 1207 | url = "https://crates.io/api/v1/crates/test-log/0.2.11/download", |
Brian Silverman | 547eda0 | 2022-05-19 23:14:08 -0700 | [diff] [blame] | 1208 | type = "tar.gz", |
Brian Silverman | a7ba251 | 2022-12-19 19:13:52 -0800 | [diff] [blame] | 1209 | sha256 = "38f0c854faeb68a048f0f2dc410c5ddae3bf83854ef0e4977d58306a5edef50e", |
| 1210 | strip_prefix = "test-log-0.2.11", |
| 1211 | build_file = Label("//third_party/cargo/remote:BUILD.test-log-0.2.11.bazel"), |
Brian Silverman | 547eda0 | 2022-05-19 23:14:08 -0700 | [diff] [blame] | 1212 | ) |
| 1213 | |
| 1214 | maybe( |
| 1215 | http_archive, |
| 1216 | name = "raze__textwrap__0_11_0", |
| 1217 | url = "https://crates.io/api/v1/crates/textwrap/0.11.0/download", |
| 1218 | type = "tar.gz", |
| 1219 | sha256 = "d326610f408c7a4eb6f51c37c330e496b08506c9457c9d34287ecc38809fb060", |
| 1220 | strip_prefix = "textwrap-0.11.0", |
| 1221 | build_file = Label("//third_party/cargo/remote:BUILD.textwrap-0.11.0.bazel"), |
| 1222 | ) |
| 1223 | |
| 1224 | maybe( |
| 1225 | http_archive, |
Brian Silverman | a7ba251 | 2022-12-19 19:13:52 -0800 | [diff] [blame] | 1226 | name = "raze__textwrap__0_15_2", |
| 1227 | url = "https://crates.io/api/v1/crates/textwrap/0.15.2/download", |
Brian Silverman | 547eda0 | 2022-05-19 23:14:08 -0700 | [diff] [blame] | 1228 | type = "tar.gz", |
Brian Silverman | a7ba251 | 2022-12-19 19:13:52 -0800 | [diff] [blame] | 1229 | sha256 = "b7b3e525a49ec206798b40326a44121291b530c963cfb01018f63e135bac543d", |
| 1230 | strip_prefix = "textwrap-0.15.2", |
| 1231 | build_file = Label("//third_party/cargo/remote:BUILD.textwrap-0.15.2.bazel"), |
Brian Silverman | 547eda0 | 2022-05-19 23:14:08 -0700 | [diff] [blame] | 1232 | ) |
| 1233 | |
| 1234 | maybe( |
| 1235 | http_archive, |
Brian Silverman | a7ba251 | 2022-12-19 19:13:52 -0800 | [diff] [blame] | 1236 | name = "raze__textwrap__0_16_0", |
| 1237 | url = "https://crates.io/api/v1/crates/textwrap/0.16.0/download", |
Brian Silverman | 547eda0 | 2022-05-19 23:14:08 -0700 | [diff] [blame] | 1238 | type = "tar.gz", |
Brian Silverman | a7ba251 | 2022-12-19 19:13:52 -0800 | [diff] [blame] | 1239 | sha256 = "222a222a5bfe1bba4a77b45ec488a741b3cb8872e5e499451fd7d0129c9c7c3d", |
| 1240 | strip_prefix = "textwrap-0.16.0", |
| 1241 | build_file = Label("//third_party/cargo/remote:BUILD.textwrap-0.16.0.bazel"), |
Brian Silverman | 547eda0 | 2022-05-19 23:14:08 -0700 | [diff] [blame] | 1242 | ) |
| 1243 | |
| 1244 | maybe( |
| 1245 | http_archive, |
Brian Silverman | a7ba251 | 2022-12-19 19:13:52 -0800 | [diff] [blame] | 1246 | name = "raze__thiserror__1_0_38", |
| 1247 | url = "https://crates.io/api/v1/crates/thiserror/1.0.38/download", |
Brian Silverman | 547eda0 | 2022-05-19 23:14:08 -0700 | [diff] [blame] | 1248 | type = "tar.gz", |
Brian Silverman | a7ba251 | 2022-12-19 19:13:52 -0800 | [diff] [blame] | 1249 | sha256 = "6a9cd18aa97d5c45c6603caea1da6628790b37f7a34b6ca89522331c5180fed0", |
| 1250 | strip_prefix = "thiserror-1.0.38", |
| 1251 | build_file = Label("//third_party/cargo/remote:BUILD.thiserror-1.0.38.bazel"), |
Brian Silverman | 547eda0 | 2022-05-19 23:14:08 -0700 | [diff] [blame] | 1252 | ) |
| 1253 | |
| 1254 | maybe( |
| 1255 | http_archive, |
Brian Silverman | a7ba251 | 2022-12-19 19:13:52 -0800 | [diff] [blame] | 1256 | name = "raze__thiserror_impl__1_0_38", |
| 1257 | url = "https://crates.io/api/v1/crates/thiserror-impl/1.0.38/download", |
Brian Silverman | 547eda0 | 2022-05-19 23:14:08 -0700 | [diff] [blame] | 1258 | type = "tar.gz", |
Brian Silverman | a7ba251 | 2022-12-19 19:13:52 -0800 | [diff] [blame] | 1259 | sha256 = "1fb327af4685e4d03fa8cbcf1716380da910eeb2bb8be417e7f9fd3fb164f36f", |
| 1260 | strip_prefix = "thiserror-impl-1.0.38", |
| 1261 | build_file = Label("//third_party/cargo/remote:BUILD.thiserror-impl-1.0.38.bazel"), |
Brian Silverman | 547eda0 | 2022-05-19 23:14:08 -0700 | [diff] [blame] | 1262 | ) |
| 1263 | |
| 1264 | maybe( |
| 1265 | http_archive, |
Brian Silverman | a7ba251 | 2022-12-19 19:13:52 -0800 | [diff] [blame] | 1266 | name = "raze__toml__0_5_10", |
| 1267 | url = "https://crates.io/api/v1/crates/toml/0.5.10/download", |
Brian Silverman | 547eda0 | 2022-05-19 23:14:08 -0700 | [diff] [blame] | 1268 | type = "tar.gz", |
Brian Silverman | a7ba251 | 2022-12-19 19:13:52 -0800 | [diff] [blame] | 1269 | sha256 = "1333c76748e868a4d9d1017b5ab53171dfd095f70c712fdb4653a406547f598f", |
| 1270 | strip_prefix = "toml-0.5.10", |
| 1271 | build_file = Label("//third_party/cargo/remote:BUILD.toml-0.5.10.bazel"), |
Brian Silverman | 547eda0 | 2022-05-19 23:14:08 -0700 | [diff] [blame] | 1272 | ) |
| 1273 | |
| 1274 | maybe( |
| 1275 | http_archive, |
Brian Silverman | a7ba251 | 2022-12-19 19:13:52 -0800 | [diff] [blame] | 1276 | name = "raze__trybuild__1_0_73", |
| 1277 | url = "https://crates.io/api/v1/crates/trybuild/1.0.73/download", |
Brian Silverman | 547eda0 | 2022-05-19 23:14:08 -0700 | [diff] [blame] | 1278 | type = "tar.gz", |
Brian Silverman | a7ba251 | 2022-12-19 19:13:52 -0800 | [diff] [blame] | 1279 | sha256 = "ed01de3de062db82c0920b5cabe804f88d599a3f217932292597c678c903754d", |
| 1280 | strip_prefix = "trybuild-1.0.73", |
| 1281 | build_file = Label("//third_party/cargo/remote:BUILD.trybuild-1.0.73.bazel"), |
Brian Silverman | 547eda0 | 2022-05-19 23:14:08 -0700 | [diff] [blame] | 1282 | ) |
| 1283 | |
| 1284 | maybe( |
| 1285 | http_archive, |
Brian Silverman | a7ba251 | 2022-12-19 19:13:52 -0800 | [diff] [blame] | 1286 | name = "raze__unicode_ident__1_0_6", |
| 1287 | url = "https://crates.io/api/v1/crates/unicode-ident/1.0.6/download", |
Brian Silverman | 547eda0 | 2022-05-19 23:14:08 -0700 | [diff] [blame] | 1288 | type = "tar.gz", |
Brian Silverman | a7ba251 | 2022-12-19 19:13:52 -0800 | [diff] [blame] | 1289 | sha256 = "84a22b9f218b40614adcb3f4ff08b703773ad44fa9423e4e0d346d5db86e4ebc", |
| 1290 | strip_prefix = "unicode-ident-1.0.6", |
| 1291 | build_file = Label("//third_party/cargo/remote:BUILD.unicode-ident-1.0.6.bazel"), |
Brian Silverman | 547eda0 | 2022-05-19 23:14:08 -0700 | [diff] [blame] | 1292 | ) |
| 1293 | |
| 1294 | maybe( |
| 1295 | http_archive, |
Brian Silverman | a7ba251 | 2022-12-19 19:13:52 -0800 | [diff] [blame] | 1296 | name = "raze__unicode_linebreak__0_1_4", |
| 1297 | url = "https://crates.io/api/v1/crates/unicode-linebreak/0.1.4/download", |
Brian Silverman | 547eda0 | 2022-05-19 23:14:08 -0700 | [diff] [blame] | 1298 | type = "tar.gz", |
Brian Silverman | a7ba251 | 2022-12-19 19:13:52 -0800 | [diff] [blame] | 1299 | sha256 = "c5faade31a542b8b35855fff6e8def199853b2da8da256da52f52f1316ee3137", |
| 1300 | strip_prefix = "unicode-linebreak-0.1.4", |
| 1301 | build_file = Label("//third_party/cargo/remote:BUILD.unicode-linebreak-0.1.4.bazel"), |
Brian Silverman | 547eda0 | 2022-05-19 23:14:08 -0700 | [diff] [blame] | 1302 | ) |
| 1303 | |
| 1304 | maybe( |
| 1305 | http_archive, |
Brian Silverman | a7ba251 | 2022-12-19 19:13:52 -0800 | [diff] [blame] | 1306 | name = "raze__unicode_width__0_1_10", |
| 1307 | url = "https://crates.io/api/v1/crates/unicode-width/0.1.10/download", |
Brian Silverman | 547eda0 | 2022-05-19 23:14:08 -0700 | [diff] [blame] | 1308 | type = "tar.gz", |
Brian Silverman | a7ba251 | 2022-12-19 19:13:52 -0800 | [diff] [blame] | 1309 | sha256 = "c0edd1e5b14653f783770bce4a4dabb4a5108a5370a5f5d8cfe8710c361f6c8b", |
| 1310 | strip_prefix = "unicode-width-0.1.10", |
| 1311 | build_file = Label("//third_party/cargo/remote:BUILD.unicode-width-0.1.10.bazel"), |
| 1312 | ) |
| 1313 | |
| 1314 | maybe( |
| 1315 | http_archive, |
| 1316 | name = "raze__uuid__1_2_2", |
| 1317 | url = "https://crates.io/api/v1/crates/uuid/1.2.2/download", |
| 1318 | type = "tar.gz", |
| 1319 | sha256 = "422ee0de9031b5b948b97a8fc04e3aa35230001a722ddd27943e0be31564ce4c", |
| 1320 | strip_prefix = "uuid-1.2.2", |
| 1321 | build_file = Label("//third_party/cargo/remote:BUILD.uuid-1.2.2.bazel"), |
Brian Silverman | 547eda0 | 2022-05-19 23:14:08 -0700 | [diff] [blame] | 1322 | ) |
| 1323 | |
| 1324 | maybe( |
| 1325 | http_archive, |
| 1326 | name = "raze__vec_map__0_8_2", |
| 1327 | url = "https://crates.io/api/v1/crates/vec_map/0.8.2/download", |
| 1328 | type = "tar.gz", |
| 1329 | sha256 = "f1bddf1187be692e79c5ffeab891132dfb0f236ed36a43c7ed39f1165ee20191", |
| 1330 | strip_prefix = "vec_map-0.8.2", |
| 1331 | build_file = Label("//third_party/cargo/remote:BUILD.vec_map-0.8.2.bazel"), |
| 1332 | ) |
| 1333 | |
| 1334 | maybe( |
| 1335 | http_archive, |
| 1336 | name = "raze__version_check__0_9_4", |
| 1337 | url = "https://crates.io/api/v1/crates/version_check/0.9.4/download", |
| 1338 | type = "tar.gz", |
| 1339 | sha256 = "49874b5167b65d7193b8aba1567f5c7d93d001cafc34600cee003eda787e483f", |
| 1340 | strip_prefix = "version_check-0.9.4", |
| 1341 | build_file = Label("//third_party/cargo/remote:BUILD.version_check-0.9.4.bazel"), |
| 1342 | ) |
| 1343 | |
| 1344 | maybe( |
| 1345 | http_archive, |
| 1346 | name = "raze__wait_timeout__0_2_0", |
| 1347 | url = "https://crates.io/api/v1/crates/wait-timeout/0.2.0/download", |
| 1348 | type = "tar.gz", |
| 1349 | sha256 = "9f200f5b12eb75f8c1ed65abd4b2db8a6e1b138a20de009dacee265a2498f3f6", |
| 1350 | strip_prefix = "wait-timeout-0.2.0", |
| 1351 | build_file = Label("//third_party/cargo/remote:BUILD.wait-timeout-0.2.0.bazel"), |
| 1352 | ) |
| 1353 | |
| 1354 | maybe( |
| 1355 | http_archive, |
Brian Silverman | a7ba251 | 2022-12-19 19:13:52 -0800 | [diff] [blame] | 1356 | name = "raze__wasi__0_11_0_wasi_snapshot_preview1", |
| 1357 | url = "https://crates.io/api/v1/crates/wasi/0.11.0+wasi-snapshot-preview1/download", |
| 1358 | type = "tar.gz", |
| 1359 | sha256 = "9c8d87e72b64a3b4db28d11ce29237c246188f4f51057d65a7eab63b7987e423", |
| 1360 | strip_prefix = "wasi-0.11.0+wasi-snapshot-preview1", |
| 1361 | build_file = Label("//third_party/cargo/remote:BUILD.wasi-0.11.0+wasi-snapshot-preview1.bazel"), |
| 1362 | ) |
| 1363 | |
| 1364 | maybe( |
| 1365 | http_archive, |
Brian Silverman | 547eda0 | 2022-05-19 23:14:08 -0700 | [diff] [blame] | 1366 | name = "raze__which__3_1_1", |
| 1367 | url = "https://crates.io/api/v1/crates/which/3.1.1/download", |
| 1368 | type = "tar.gz", |
| 1369 | sha256 = "d011071ae14a2f6671d0b74080ae0cd8ebf3a6f8c9589a2cd45f23126fe29724", |
| 1370 | strip_prefix = "which-3.1.1", |
| 1371 | build_file = Label("//third_party/cargo/remote:BUILD.which-3.1.1.bazel"), |
| 1372 | ) |
| 1373 | |
| 1374 | maybe( |
| 1375 | http_archive, |
Brian Silverman | a7ba251 | 2022-12-19 19:13:52 -0800 | [diff] [blame] | 1376 | name = "raze__which__4_3_0", |
| 1377 | url = "https://crates.io/api/v1/crates/which/4.3.0/download", |
Brian Silverman | 547eda0 | 2022-05-19 23:14:08 -0700 | [diff] [blame] | 1378 | type = "tar.gz", |
Brian Silverman | a7ba251 | 2022-12-19 19:13:52 -0800 | [diff] [blame] | 1379 | sha256 = "1c831fbbee9e129a8cf93e7747a82da9d95ba8e16621cae60ec2cdc849bacb7b", |
| 1380 | strip_prefix = "which-4.3.0", |
| 1381 | build_file = Label("//third_party/cargo/remote:BUILD.which-4.3.0.bazel"), |
Brian Silverman | 547eda0 | 2022-05-19 23:14:08 -0700 | [diff] [blame] | 1382 | ) |
| 1383 | |
| 1384 | maybe( |
| 1385 | http_archive, |
| 1386 | name = "raze__winapi__0_3_9", |
| 1387 | url = "https://crates.io/api/v1/crates/winapi/0.3.9/download", |
| 1388 | type = "tar.gz", |
| 1389 | sha256 = "5c839a674fcd7a98952e593242ea400abe93992746761e38641405d28b00f419", |
| 1390 | strip_prefix = "winapi-0.3.9", |
| 1391 | build_file = Label("//third_party/cargo/remote:BUILD.winapi-0.3.9.bazel"), |
| 1392 | ) |
| 1393 | |
| 1394 | maybe( |
| 1395 | http_archive, |
| 1396 | name = "raze__winapi_i686_pc_windows_gnu__0_4_0", |
| 1397 | url = "https://crates.io/api/v1/crates/winapi-i686-pc-windows-gnu/0.4.0/download", |
| 1398 | type = "tar.gz", |
| 1399 | sha256 = "ac3b87c63620426dd9b991e5ce0329eff545bccbbb34f3be09ff6fb6ab51b7b6", |
| 1400 | strip_prefix = "winapi-i686-pc-windows-gnu-0.4.0", |
| 1401 | build_file = Label("//third_party/cargo/remote:BUILD.winapi-i686-pc-windows-gnu-0.4.0.bazel"), |
| 1402 | ) |
| 1403 | |
| 1404 | maybe( |
| 1405 | http_archive, |
| 1406 | name = "raze__winapi_util__0_1_5", |
| 1407 | url = "https://crates.io/api/v1/crates/winapi-util/0.1.5/download", |
| 1408 | type = "tar.gz", |
| 1409 | sha256 = "70ec6ce85bb158151cae5e5c87f95a8e97d2c0c4b001223f33a334e3ce5de178", |
| 1410 | strip_prefix = "winapi-util-0.1.5", |
| 1411 | build_file = Label("//third_party/cargo/remote:BUILD.winapi-util-0.1.5.bazel"), |
| 1412 | ) |
| 1413 | |
| 1414 | maybe( |
| 1415 | http_archive, |
| 1416 | name = "raze__winapi_x86_64_pc_windows_gnu__0_4_0", |
| 1417 | url = "https://crates.io/api/v1/crates/winapi-x86_64-pc-windows-gnu/0.4.0/download", |
| 1418 | type = "tar.gz", |
| 1419 | sha256 = "712e227841d057c1ee1cd2fb22fa7e5a5461ae8e48fa2ca79ec42cfc1931183f", |
| 1420 | strip_prefix = "winapi-x86_64-pc-windows-gnu-0.4.0", |
| 1421 | build_file = Label("//third_party/cargo/remote:BUILD.winapi-x86_64-pc-windows-gnu-0.4.0.bazel"), |
| 1422 | ) |