Serge Bazanski | cbf1fa9 | 2021-07-02 17:28:50 +0200 | [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, |
Leopold | 2aa8b18 | 2023-01-14 23:31:43 +0100 | [diff] [blame^] | 16 | name = "raze__aho_corasick__0_7_20", |
| 17 | url = "https://crates.io/api/v1/crates/aho-corasick/0.7.20/download", |
Serge Bazanski | cbf1fa9 | 2021-07-02 17:28:50 +0200 | [diff] [blame] | 18 | type = "tar.gz", |
Leopold | 2aa8b18 | 2023-01-14 23:31:43 +0100 | [diff] [blame^] | 19 | sha256 = "cc936419f96fa211c1b9166887b38e5e40b19958e5b895be7c1f93adec7071ac", |
| 20 | strip_prefix = "aho-corasick-0.7.20", |
| 21 | build_file = Label("//third_party/rust/cargo/remote:BUILD.aho-corasick-0.7.20.bazel"), |
Serge Bazanski | cbf1fa9 | 2021-07-02 17:28:50 +0200 | [diff] [blame] | 22 | ) |
| 23 | |
| 24 | maybe( |
| 25 | http_archive, |
Leopold | 2aa8b18 | 2023-01-14 23:31:43 +0100 | [diff] [blame^] | 26 | name = "raze__ammonia__3_3_0", |
| 27 | url = "https://crates.io/api/v1/crates/ammonia/3.3.0/download", |
Serge Bazanski | cbf1fa9 | 2021-07-02 17:28:50 +0200 | [diff] [blame] | 28 | type = "tar.gz", |
Leopold | 2aa8b18 | 2023-01-14 23:31:43 +0100 | [diff] [blame^] | 29 | sha256 = "64e6d1c7838db705c9b756557ee27c384ce695a1c51a6fe528784cb1c6840170", |
| 30 | strip_prefix = "ammonia-3.3.0", |
| 31 | build_file = Label("//third_party/rust/cargo/remote:BUILD.ammonia-3.3.0.bazel"), |
Serge Bazanski | cbf1fa9 | 2021-07-02 17:28:50 +0200 | [diff] [blame] | 32 | ) |
| 33 | |
| 34 | maybe( |
| 35 | http_archive, |
Leopold | 2aa8b18 | 2023-01-14 23:31:43 +0100 | [diff] [blame^] | 36 | name = "raze__android_system_properties__0_1_5", |
| 37 | url = "https://crates.io/api/v1/crates/android_system_properties/0.1.5/download", |
Serge Bazanski | cbf1fa9 | 2021-07-02 17:28:50 +0200 | [diff] [blame] | 38 | type = "tar.gz", |
Leopold | 2aa8b18 | 2023-01-14 23:31:43 +0100 | [diff] [blame^] | 39 | sha256 = "819e7219dbd41043ac279b19830f2efc897156490d7fd6ea916720117ee66311", |
| 40 | strip_prefix = "android_system_properties-0.1.5", |
| 41 | build_file = Label("//third_party/rust/cargo/remote:BUILD.android_system_properties-0.1.5.bazel"), |
Serge Bazanski | cbf1fa9 | 2021-07-02 17:28:50 +0200 | [diff] [blame] | 42 | ) |
| 43 | |
| 44 | maybe( |
| 45 | http_archive, |
Leopold | 2aa8b18 | 2023-01-14 23:31:43 +0100 | [diff] [blame^] | 46 | name = "raze__anyhow__1_0_68", |
| 47 | url = "https://crates.io/api/v1/crates/anyhow/1.0.68/download", |
Serge Bazanski | cbf1fa9 | 2021-07-02 17:28:50 +0200 | [diff] [blame] | 48 | type = "tar.gz", |
Leopold | 2aa8b18 | 2023-01-14 23:31:43 +0100 | [diff] [blame^] | 49 | sha256 = "2cb2f989d18dd141ab8ae82f64d1a8cdd37e0840f73a406896cf5e99502fab61", |
| 50 | strip_prefix = "anyhow-1.0.68", |
| 51 | build_file = Label("//third_party/rust/cargo/remote:BUILD.anyhow-1.0.68.bazel"), |
Serge Bazanski | cbf1fa9 | 2021-07-02 17:28:50 +0200 | [diff] [blame] | 52 | ) |
| 53 | |
| 54 | maybe( |
| 55 | http_archive, |
| 56 | name = "raze__atty__0_2_14", |
| 57 | url = "https://crates.io/api/v1/crates/atty/0.2.14/download", |
| 58 | type = "tar.gz", |
| 59 | sha256 = "d9b39be18770d11421cdb1b9947a45dd3f37e93092cbf377614828a319d5fee8", |
| 60 | strip_prefix = "atty-0.2.14", |
| 61 | build_file = Label("//third_party/rust/cargo/remote:BUILD.atty-0.2.14.bazel"), |
| 62 | ) |
| 63 | |
| 64 | maybe( |
| 65 | http_archive, |
Leopold | 2aa8b18 | 2023-01-14 23:31:43 +0100 | [diff] [blame^] | 66 | name = "raze__autocfg__1_1_0", |
| 67 | url = "https://crates.io/api/v1/crates/autocfg/1.1.0/download", |
Serge Bazanski | cbf1fa9 | 2021-07-02 17:28:50 +0200 | [diff] [blame] | 68 | type = "tar.gz", |
Leopold | 2aa8b18 | 2023-01-14 23:31:43 +0100 | [diff] [blame^] | 69 | sha256 = "d468802bab17cbc0cc575e9b053f41e72aa36bfa6b7f55e3529ffa43161b97fa", |
| 70 | strip_prefix = "autocfg-1.1.0", |
| 71 | build_file = Label("//third_party/rust/cargo/remote:BUILD.autocfg-1.1.0.bazel"), |
Serge Bazanski | cbf1fa9 | 2021-07-02 17:28:50 +0200 | [diff] [blame] | 72 | ) |
| 73 | |
| 74 | maybe( |
| 75 | http_archive, |
Leopold | 2aa8b18 | 2023-01-14 23:31:43 +0100 | [diff] [blame^] | 76 | name = "raze__base64__0_13_1", |
| 77 | url = "https://crates.io/api/v1/crates/base64/0.13.1/download", |
Serge Bazanski | cbf1fa9 | 2021-07-02 17:28:50 +0200 | [diff] [blame] | 78 | type = "tar.gz", |
Leopold | 2aa8b18 | 2023-01-14 23:31:43 +0100 | [diff] [blame^] | 79 | sha256 = "9e1b586273c5702936fe7b7d6896644d8be71e6314cfe09d3167c95f712589e8", |
| 80 | strip_prefix = "base64-0.13.1", |
| 81 | build_file = Label("//third_party/rust/cargo/remote:BUILD.base64-0.13.1.bazel"), |
Serge Bazanski | cbf1fa9 | 2021-07-02 17:28:50 +0200 | [diff] [blame] | 82 | ) |
| 83 | |
| 84 | maybe( |
| 85 | http_archive, |
Leopold | 2aa8b18 | 2023-01-14 23:31:43 +0100 | [diff] [blame^] | 86 | name = "raze__bitflags__1_3_2", |
| 87 | url = "https://crates.io/api/v1/crates/bitflags/1.3.2/download", |
Serge Bazanski | cbf1fa9 | 2021-07-02 17:28:50 +0200 | [diff] [blame] | 88 | type = "tar.gz", |
Leopold | 2aa8b18 | 2023-01-14 23:31:43 +0100 | [diff] [blame^] | 89 | sha256 = "bef38d45163c2f1dde094a7dfd33ccf595c92905c8f8f4fdc18d06fb1037718a", |
| 90 | strip_prefix = "bitflags-1.3.2", |
| 91 | build_file = Label("//third_party/rust/cargo/remote:BUILD.bitflags-1.3.2.bazel"), |
Serge Bazanski | cbf1fa9 | 2021-07-02 17:28:50 +0200 | [diff] [blame] | 92 | ) |
| 93 | |
| 94 | maybe( |
| 95 | http_archive, |
Leopold | 2aa8b18 | 2023-01-14 23:31:43 +0100 | [diff] [blame^] | 96 | name = "raze__block_buffer__0_10_3", |
| 97 | url = "https://crates.io/api/v1/crates/block-buffer/0.10.3/download", |
Serge Bazanski | cbf1fa9 | 2021-07-02 17:28:50 +0200 | [diff] [blame] | 98 | type = "tar.gz", |
Leopold | 2aa8b18 | 2023-01-14 23:31:43 +0100 | [diff] [blame^] | 99 | sha256 = "69cce20737498f97b993470a6e536b8523f0af7892a4f928cceb1ac5e52ebe7e", |
| 100 | strip_prefix = "block-buffer-0.10.3", |
| 101 | build_file = Label("//third_party/rust/cargo/remote:BUILD.block-buffer-0.10.3.bazel"), |
Serge Bazanski | cbf1fa9 | 2021-07-02 17:28:50 +0200 | [diff] [blame] | 102 | ) |
| 103 | |
| 104 | maybe( |
| 105 | http_archive, |
Leopold | 2aa8b18 | 2023-01-14 23:31:43 +0100 | [diff] [blame^] | 106 | name = "raze__bstr__0_2_17", |
| 107 | url = "https://crates.io/api/v1/crates/bstr/0.2.17/download", |
Serge Bazanski | cbf1fa9 | 2021-07-02 17:28:50 +0200 | [diff] [blame] | 108 | type = "tar.gz", |
Leopold | 2aa8b18 | 2023-01-14 23:31:43 +0100 | [diff] [blame^] | 109 | sha256 = "ba3569f383e8f1598449f1a423e72e99569137b47740b1da11ef19af3d5c3223", |
| 110 | strip_prefix = "bstr-0.2.17", |
| 111 | build_file = Label("//third_party/rust/cargo/remote:BUILD.bstr-0.2.17.bazel"), |
Serge Bazanski | cbf1fa9 | 2021-07-02 17:28:50 +0200 | [diff] [blame] | 112 | ) |
| 113 | |
| 114 | maybe( |
| 115 | http_archive, |
Leopold | 2aa8b18 | 2023-01-14 23:31:43 +0100 | [diff] [blame^] | 116 | name = "raze__bumpalo__3_11_1", |
| 117 | url = "https://crates.io/api/v1/crates/bumpalo/3.11.1/download", |
Serge Bazanski | cbf1fa9 | 2021-07-02 17:28:50 +0200 | [diff] [blame] | 118 | type = "tar.gz", |
Leopold | 2aa8b18 | 2023-01-14 23:31:43 +0100 | [diff] [blame^] | 119 | sha256 = "572f695136211188308f16ad2ca5c851a712c464060ae6974944458eb83880ba", |
| 120 | strip_prefix = "bumpalo-3.11.1", |
| 121 | build_file = Label("//third_party/rust/cargo/remote:BUILD.bumpalo-3.11.1.bazel"), |
Serge Bazanski | cbf1fa9 | 2021-07-02 17:28:50 +0200 | [diff] [blame] | 122 | ) |
| 123 | |
| 124 | maybe( |
| 125 | http_archive, |
| 126 | name = "raze__byteorder__1_4_3", |
| 127 | url = "https://crates.io/api/v1/crates/byteorder/1.4.3/download", |
| 128 | type = "tar.gz", |
| 129 | sha256 = "14c189c53d098945499cdfa7ecc63567cf3886b3332b312a5b4585d8d3a6a610", |
| 130 | strip_prefix = "byteorder-1.4.3", |
| 131 | build_file = Label("//third_party/rust/cargo/remote:BUILD.byteorder-1.4.3.bazel"), |
| 132 | ) |
| 133 | |
| 134 | maybe( |
| 135 | http_archive, |
Leopold | 2aa8b18 | 2023-01-14 23:31:43 +0100 | [diff] [blame^] | 136 | name = "raze__bytes__1_3_0", |
| 137 | url = "https://crates.io/api/v1/crates/bytes/1.3.0/download", |
Serge Bazanski | cbf1fa9 | 2021-07-02 17:28:50 +0200 | [diff] [blame] | 138 | type = "tar.gz", |
Leopold | 2aa8b18 | 2023-01-14 23:31:43 +0100 | [diff] [blame^] | 139 | sha256 = "dfb24e866b15a1af2a1b663f10c6b6b8f397a84aadb828f12e5b289ec23a3a3c", |
| 140 | strip_prefix = "bytes-1.3.0", |
| 141 | build_file = Label("//third_party/rust/cargo/remote:BUILD.bytes-1.3.0.bazel"), |
Serge Bazanski | cbf1fa9 | 2021-07-02 17:28:50 +0200 | [diff] [blame] | 142 | ) |
| 143 | |
| 144 | maybe( |
| 145 | http_archive, |
Leopold | 2aa8b18 | 2023-01-14 23:31:43 +0100 | [diff] [blame^] | 146 | name = "raze__cc__1_0_78", |
| 147 | url = "https://crates.io/api/v1/crates/cc/1.0.78/download", |
Serge Bazanski | cbf1fa9 | 2021-07-02 17:28:50 +0200 | [diff] [blame] | 148 | type = "tar.gz", |
Leopold | 2aa8b18 | 2023-01-14 23:31:43 +0100 | [diff] [blame^] | 149 | sha256 = "a20104e2335ce8a659d6dd92a51a767a0c062599c73b343fd152cb401e828c3d", |
| 150 | strip_prefix = "cc-1.0.78", |
| 151 | build_file = Label("//third_party/rust/cargo/remote:BUILD.cc-1.0.78.bazel"), |
Serge Bazanski | cbf1fa9 | 2021-07-02 17:28:50 +0200 | [diff] [blame] | 152 | ) |
| 153 | |
| 154 | maybe( |
| 155 | http_archive, |
| 156 | name = "raze__cfg_if__0_1_10", |
| 157 | url = "https://crates.io/api/v1/crates/cfg-if/0.1.10/download", |
| 158 | type = "tar.gz", |
| 159 | sha256 = "4785bdd1c96b2a846b2bd7cc02e86b6b3dbf14e7e53446c4f54c92a361040822", |
| 160 | strip_prefix = "cfg-if-0.1.10", |
| 161 | build_file = Label("//third_party/rust/cargo/remote:BUILD.cfg-if-0.1.10.bazel"), |
| 162 | ) |
| 163 | |
| 164 | maybe( |
| 165 | http_archive, |
| 166 | name = "raze__cfg_if__1_0_0", |
| 167 | url = "https://crates.io/api/v1/crates/cfg-if/1.0.0/download", |
| 168 | type = "tar.gz", |
| 169 | sha256 = "baf1de4339761588bc0619e3cbc0120ee582ebb74b53b4efbf79117bd2da40fd", |
| 170 | strip_prefix = "cfg-if-1.0.0", |
| 171 | build_file = Label("//third_party/rust/cargo/remote:BUILD.cfg-if-1.0.0.bazel"), |
| 172 | ) |
| 173 | |
| 174 | maybe( |
| 175 | http_archive, |
Leopold | 2aa8b18 | 2023-01-14 23:31:43 +0100 | [diff] [blame^] | 176 | name = "raze__chrono__0_4_23", |
| 177 | url = "https://crates.io/api/v1/crates/chrono/0.4.23/download", |
Serge Bazanski | cbf1fa9 | 2021-07-02 17:28:50 +0200 | [diff] [blame] | 178 | type = "tar.gz", |
Leopold | 2aa8b18 | 2023-01-14 23:31:43 +0100 | [diff] [blame^] | 179 | sha256 = "16b0a3d9ed01224b22057780a37bb8c5dbfe1be8ba48678e7bf57ec4b385411f", |
| 180 | strip_prefix = "chrono-0.4.23", |
| 181 | build_file = Label("//third_party/rust/cargo/remote:BUILD.chrono-0.4.23.bazel"), |
Serge Bazanski | cbf1fa9 | 2021-07-02 17:28:50 +0200 | [diff] [blame] | 182 | ) |
| 183 | |
| 184 | maybe( |
| 185 | http_archive, |
Leopold | 2aa8b18 | 2023-01-14 23:31:43 +0100 | [diff] [blame^] | 186 | name = "raze__clap__3_2_23", |
| 187 | url = "https://crates.io/api/v1/crates/clap/3.2.23/download", |
Serge Bazanski | cbf1fa9 | 2021-07-02 17:28:50 +0200 | [diff] [blame] | 188 | type = "tar.gz", |
Leopold | 2aa8b18 | 2023-01-14 23:31:43 +0100 | [diff] [blame^] | 189 | sha256 = "71655c45cb9845d3270c9d6df84ebe72b4dad3c2ba3f7023ad47c144e4e473a5", |
| 190 | strip_prefix = "clap-3.2.23", |
| 191 | build_file = Label("//third_party/rust/cargo/remote:BUILD.clap-3.2.23.bazel"), |
Serge Bazanski | cbf1fa9 | 2021-07-02 17:28:50 +0200 | [diff] [blame] | 192 | ) |
| 193 | |
| 194 | maybe( |
| 195 | http_archive, |
Leopold | 2aa8b18 | 2023-01-14 23:31:43 +0100 | [diff] [blame^] | 196 | name = "raze__clap_complete__3_2_5", |
| 197 | url = "https://crates.io/api/v1/crates/clap_complete/3.2.5/download", |
Serge Bazanski | cbf1fa9 | 2021-07-02 17:28:50 +0200 | [diff] [blame] | 198 | type = "tar.gz", |
Leopold | 2aa8b18 | 2023-01-14 23:31:43 +0100 | [diff] [blame^] | 199 | sha256 = "3f7a2e0a962c45ce25afce14220bc24f9dade0a1787f185cecf96bfba7847cd8", |
| 200 | strip_prefix = "clap_complete-3.2.5", |
| 201 | build_file = Label("//third_party/rust/cargo/remote:BUILD.clap_complete-3.2.5.bazel"), |
Serge Bazanski | cbf1fa9 | 2021-07-02 17:28:50 +0200 | [diff] [blame] | 202 | ) |
| 203 | |
| 204 | maybe( |
| 205 | http_archive, |
Leopold | 2aa8b18 | 2023-01-14 23:31:43 +0100 | [diff] [blame^] | 206 | name = "raze__clap_lex__0_2_4", |
| 207 | url = "https://crates.io/api/v1/crates/clap_lex/0.2.4/download", |
Serge Bazanski | cbf1fa9 | 2021-07-02 17:28:50 +0200 | [diff] [blame] | 208 | type = "tar.gz", |
Leopold | 2aa8b18 | 2023-01-14 23:31:43 +0100 | [diff] [blame^] | 209 | sha256 = "2850f2f5a82cbf437dd5af4d49848fbdfc27c157c3d010345776f952765261c5", |
| 210 | strip_prefix = "clap_lex-0.2.4", |
| 211 | build_file = Label("//third_party/rust/cargo/remote:BUILD.clap_lex-0.2.4.bazel"), |
Serge Bazanski | cbf1fa9 | 2021-07-02 17:28:50 +0200 | [diff] [blame] | 212 | ) |
| 213 | |
| 214 | maybe( |
| 215 | http_archive, |
Leopold | 2aa8b18 | 2023-01-14 23:31:43 +0100 | [diff] [blame^] | 216 | name = "raze__codespan_reporting__0_11_1", |
| 217 | url = "https://crates.io/api/v1/crates/codespan-reporting/0.11.1/download", |
Serge Bazanski | cbf1fa9 | 2021-07-02 17:28:50 +0200 | [diff] [blame] | 218 | type = "tar.gz", |
Leopold | 2aa8b18 | 2023-01-14 23:31:43 +0100 | [diff] [blame^] | 219 | sha256 = "3538270d33cc669650c4b093848450d380def10c331d38c768e34cac80576e6e", |
| 220 | strip_prefix = "codespan-reporting-0.11.1", |
| 221 | build_file = Label("//third_party/rust/cargo/remote:BUILD.codespan-reporting-0.11.1.bazel"), |
Serge Bazanski | cbf1fa9 | 2021-07-02 17:28:50 +0200 | [diff] [blame] | 222 | ) |
| 223 | |
| 224 | maybe( |
| 225 | http_archive, |
Leopold | 2aa8b18 | 2023-01-14 23:31:43 +0100 | [diff] [blame^] | 226 | name = "raze__core_foundation_sys__0_8_3", |
| 227 | url = "https://crates.io/api/v1/crates/core-foundation-sys/0.8.3/download", |
Serge Bazanski | cbf1fa9 | 2021-07-02 17:28:50 +0200 | [diff] [blame] | 228 | type = "tar.gz", |
Leopold | 2aa8b18 | 2023-01-14 23:31:43 +0100 | [diff] [blame^] | 229 | sha256 = "5827cebf4670468b8772dd191856768aedcb1b0278a04f989f7766351917b9dc", |
| 230 | strip_prefix = "core-foundation-sys-0.8.3", |
| 231 | build_file = Label("//third_party/rust/cargo/remote:BUILD.core-foundation-sys-0.8.3.bazel"), |
Serge Bazanski | cbf1fa9 | 2021-07-02 17:28:50 +0200 | [diff] [blame] | 232 | ) |
| 233 | |
| 234 | maybe( |
| 235 | http_archive, |
Leopold | 2aa8b18 | 2023-01-14 23:31:43 +0100 | [diff] [blame^] | 236 | name = "raze__cpufeatures__0_2_5", |
| 237 | url = "https://crates.io/api/v1/crates/cpufeatures/0.2.5/download", |
Serge Bazanski | cbf1fa9 | 2021-07-02 17:28:50 +0200 | [diff] [blame] | 238 | type = "tar.gz", |
Leopold | 2aa8b18 | 2023-01-14 23:31:43 +0100 | [diff] [blame^] | 239 | sha256 = "28d997bd5e24a5928dd43e46dc529867e207907fe0b239c3477d924f7f2ca320", |
| 240 | strip_prefix = "cpufeatures-0.2.5", |
| 241 | build_file = Label("//third_party/rust/cargo/remote:BUILD.cpufeatures-0.2.5.bazel"), |
Serge Bazanski | cbf1fa9 | 2021-07-02 17:28:50 +0200 | [diff] [blame] | 242 | ) |
| 243 | |
| 244 | maybe( |
| 245 | http_archive, |
Leopold | 2aa8b18 | 2023-01-14 23:31:43 +0100 | [diff] [blame^] | 246 | name = "raze__crypto_common__0_1_6", |
| 247 | url = "https://crates.io/api/v1/crates/crypto-common/0.1.6/download", |
Serge Bazanski | cbf1fa9 | 2021-07-02 17:28:50 +0200 | [diff] [blame] | 248 | type = "tar.gz", |
Leopold | 2aa8b18 | 2023-01-14 23:31:43 +0100 | [diff] [blame^] | 249 | sha256 = "1bfb12502f3fc46cca1bb51ac28df9d618d813cdc3d2f25b9fe775a34af26bb3", |
| 250 | strip_prefix = "crypto-common-0.1.6", |
| 251 | build_file = Label("//third_party/rust/cargo/remote:BUILD.crypto-common-0.1.6.bazel"), |
Serge Bazanski | cbf1fa9 | 2021-07-02 17:28:50 +0200 | [diff] [blame] | 252 | ) |
| 253 | |
| 254 | maybe( |
| 255 | http_archive, |
Leopold | 2aa8b18 | 2023-01-14 23:31:43 +0100 | [diff] [blame^] | 256 | name = "raze__cxx__1_0_86", |
| 257 | url = "https://crates.io/api/v1/crates/cxx/1.0.86/download", |
Serge Bazanski | cbf1fa9 | 2021-07-02 17:28:50 +0200 | [diff] [blame] | 258 | type = "tar.gz", |
Leopold | 2aa8b18 | 2023-01-14 23:31:43 +0100 | [diff] [blame^] | 259 | sha256 = "51d1075c37807dcf850c379432f0df05ba52cc30f279c5cfc43cc221ce7f8579", |
| 260 | strip_prefix = "cxx-1.0.86", |
| 261 | build_file = Label("//third_party/rust/cargo/remote:BUILD.cxx-1.0.86.bazel"), |
Serge Bazanski | cbf1fa9 | 2021-07-02 17:28:50 +0200 | [diff] [blame] | 262 | ) |
| 263 | |
| 264 | maybe( |
| 265 | http_archive, |
Leopold | 2aa8b18 | 2023-01-14 23:31:43 +0100 | [diff] [blame^] | 266 | name = "raze__cxx_build__1_0_86", |
| 267 | url = "https://crates.io/api/v1/crates/cxx-build/1.0.86/download", |
Serge Bazanski | cbf1fa9 | 2021-07-02 17:28:50 +0200 | [diff] [blame] | 268 | type = "tar.gz", |
Leopold | 2aa8b18 | 2023-01-14 23:31:43 +0100 | [diff] [blame^] | 269 | sha256 = "5044281f61b27bc598f2f6647d480aed48d2bf52d6eb0b627d84c0361b17aa70", |
| 270 | strip_prefix = "cxx-build-1.0.86", |
| 271 | build_file = Label("//third_party/rust/cargo/remote:BUILD.cxx-build-1.0.86.bazel"), |
Serge Bazanski | cbf1fa9 | 2021-07-02 17:28:50 +0200 | [diff] [blame] | 272 | ) |
| 273 | |
| 274 | maybe( |
| 275 | http_archive, |
Leopold | 2aa8b18 | 2023-01-14 23:31:43 +0100 | [diff] [blame^] | 276 | name = "raze__cxxbridge_flags__1_0_86", |
| 277 | url = "https://crates.io/api/v1/crates/cxxbridge-flags/1.0.86/download", |
Serge Bazanski | cbf1fa9 | 2021-07-02 17:28:50 +0200 | [diff] [blame] | 278 | type = "tar.gz", |
Leopold | 2aa8b18 | 2023-01-14 23:31:43 +0100 | [diff] [blame^] | 279 | sha256 = "61b50bc93ba22c27b0d31128d2d130a0a6b3d267ae27ef7e4fae2167dfe8781c", |
| 280 | strip_prefix = "cxxbridge-flags-1.0.86", |
| 281 | build_file = Label("//third_party/rust/cargo/remote:BUILD.cxxbridge-flags-1.0.86.bazel"), |
| 282 | ) |
| 283 | |
| 284 | maybe( |
| 285 | http_archive, |
| 286 | name = "raze__cxxbridge_macro__1_0_86", |
| 287 | url = "https://crates.io/api/v1/crates/cxxbridge-macro/1.0.86/download", |
| 288 | type = "tar.gz", |
| 289 | sha256 = "39e61fda7e62115119469c7b3591fd913ecca96fb766cfd3f2e2502ab7bc87a5", |
| 290 | strip_prefix = "cxxbridge-macro-1.0.86", |
| 291 | build_file = Label("//third_party/rust/cargo/remote:BUILD.cxxbridge-macro-1.0.86.bazel"), |
| 292 | ) |
| 293 | |
| 294 | maybe( |
| 295 | http_archive, |
| 296 | name = "raze__digest__0_10_6", |
| 297 | url = "https://crates.io/api/v1/crates/digest/0.10.6/download", |
| 298 | type = "tar.gz", |
| 299 | sha256 = "8168378f4e5023e7218c89c891c0fd8ecdb5e5e4f18cb78f38cf245dd021e76f", |
| 300 | strip_prefix = "digest-0.10.6", |
| 301 | build_file = Label("//third_party/rust/cargo/remote:BUILD.digest-0.10.6.bazel"), |
| 302 | ) |
| 303 | |
| 304 | maybe( |
| 305 | http_archive, |
| 306 | name = "raze__elasticlunr_rs__3_0_1", |
| 307 | url = "https://crates.io/api/v1/crates/elasticlunr-rs/3.0.1/download", |
| 308 | type = "tar.gz", |
| 309 | sha256 = "b94d9c8df0fe6879ca12e7633fdfe467c503722cc981fc463703472d2b876448", |
| 310 | strip_prefix = "elasticlunr-rs-3.0.1", |
| 311 | build_file = Label("//third_party/rust/cargo/remote:BUILD.elasticlunr-rs-3.0.1.bazel"), |
| 312 | ) |
| 313 | |
| 314 | maybe( |
| 315 | http_archive, |
| 316 | name = "raze__env_logger__0_9_3", |
| 317 | url = "https://crates.io/api/v1/crates/env_logger/0.9.3/download", |
| 318 | type = "tar.gz", |
| 319 | sha256 = "a12e6657c4c97ebab115a42dcee77225f7f482cdd841cf7088c657a42e9e00e7", |
| 320 | strip_prefix = "env_logger-0.9.3", |
| 321 | build_file = Label("//third_party/rust/cargo/remote:BUILD.env_logger-0.9.3.bazel"), |
| 322 | ) |
| 323 | |
| 324 | maybe( |
| 325 | http_archive, |
| 326 | name = "raze__fastrand__1_8_0", |
| 327 | url = "https://crates.io/api/v1/crates/fastrand/1.8.0/download", |
| 328 | type = "tar.gz", |
| 329 | sha256 = "a7a407cfaa3385c4ae6b23e84623d48c2798d06e3e6a1878f7f59f17b3f86499", |
| 330 | strip_prefix = "fastrand-1.8.0", |
| 331 | build_file = Label("//third_party/rust/cargo/remote:BUILD.fastrand-1.8.0.bazel"), |
| 332 | ) |
| 333 | |
| 334 | maybe( |
| 335 | http_archive, |
| 336 | name = "raze__filetime__0_2_19", |
| 337 | url = "https://crates.io/api/v1/crates/filetime/0.2.19/download", |
| 338 | type = "tar.gz", |
| 339 | sha256 = "4e884668cd0c7480504233e951174ddc3b382f7c2666e3b7310b5c4e7b0c37f9", |
| 340 | strip_prefix = "filetime-0.2.19", |
| 341 | build_file = Label("//third_party/rust/cargo/remote:BUILD.filetime-0.2.19.bazel"), |
Serge Bazanski | cbf1fa9 | 2021-07-02 17:28:50 +0200 | [diff] [blame] | 342 | ) |
| 343 | |
| 344 | maybe( |
| 345 | http_archive, |
| 346 | name = "raze__fnv__1_0_7", |
| 347 | url = "https://crates.io/api/v1/crates/fnv/1.0.7/download", |
| 348 | type = "tar.gz", |
| 349 | sha256 = "3f9eec918d3f24069decb9af1554cad7c880e2da24a9afd88aca000531ab82c1", |
| 350 | strip_prefix = "fnv-1.0.7", |
| 351 | build_file = Label("//third_party/rust/cargo/remote:BUILD.fnv-1.0.7.bazel"), |
| 352 | ) |
| 353 | |
| 354 | maybe( |
| 355 | http_archive, |
Leopold | 2aa8b18 | 2023-01-14 23:31:43 +0100 | [diff] [blame^] | 356 | name = "raze__form_urlencoded__1_1_0", |
| 357 | url = "https://crates.io/api/v1/crates/form_urlencoded/1.1.0/download", |
Serge Bazanski | cbf1fa9 | 2021-07-02 17:28:50 +0200 | [diff] [blame] | 358 | type = "tar.gz", |
Leopold | 2aa8b18 | 2023-01-14 23:31:43 +0100 | [diff] [blame^] | 359 | sha256 = "a9c384f161156f5260c24a097c56119f9be8c798586aecc13afbcbe7b7e26bf8", |
| 360 | strip_prefix = "form_urlencoded-1.1.0", |
| 361 | build_file = Label("//third_party/rust/cargo/remote:BUILD.form_urlencoded-1.1.0.bazel"), |
Serge Bazanski | cbf1fa9 | 2021-07-02 17:28:50 +0200 | [diff] [blame] | 362 | ) |
| 363 | |
| 364 | maybe( |
| 365 | http_archive, |
| 366 | name = "raze__fsevent__0_4_0", |
| 367 | url = "https://crates.io/api/v1/crates/fsevent/0.4.0/download", |
| 368 | type = "tar.gz", |
| 369 | sha256 = "5ab7d1bd1bd33cc98b0889831b72da23c0aa4df9cec7e0702f46ecea04b35db6", |
| 370 | strip_prefix = "fsevent-0.4.0", |
| 371 | build_file = Label("//third_party/rust/cargo/remote:BUILD.fsevent-0.4.0.bazel"), |
| 372 | ) |
| 373 | |
| 374 | maybe( |
| 375 | http_archive, |
| 376 | name = "raze__fsevent_sys__2_0_1", |
| 377 | url = "https://crates.io/api/v1/crates/fsevent-sys/2.0.1/download", |
| 378 | type = "tar.gz", |
| 379 | sha256 = "f41b048a94555da0f42f1d632e2e19510084fb8e303b0daa2816e733fb3644a0", |
| 380 | strip_prefix = "fsevent-sys-2.0.1", |
| 381 | build_file = Label("//third_party/rust/cargo/remote:BUILD.fsevent-sys-2.0.1.bazel"), |
| 382 | ) |
| 383 | |
| 384 | maybe( |
| 385 | http_archive, |
| 386 | name = "raze__fuchsia_zircon__0_3_3", |
| 387 | url = "https://crates.io/api/v1/crates/fuchsia-zircon/0.3.3/download", |
| 388 | type = "tar.gz", |
| 389 | sha256 = "2e9763c69ebaae630ba35f74888db465e49e259ba1bc0eda7d06f4a067615d82", |
| 390 | strip_prefix = "fuchsia-zircon-0.3.3", |
| 391 | build_file = Label("//third_party/rust/cargo/remote:BUILD.fuchsia-zircon-0.3.3.bazel"), |
| 392 | ) |
| 393 | |
| 394 | maybe( |
| 395 | http_archive, |
| 396 | name = "raze__fuchsia_zircon_sys__0_3_3", |
| 397 | url = "https://crates.io/api/v1/crates/fuchsia-zircon-sys/0.3.3/download", |
| 398 | type = "tar.gz", |
| 399 | sha256 = "3dcaa9ae7725d12cdb85b3ad99a434db70b468c09ded17e012d86b5c1010f7a7", |
| 400 | strip_prefix = "fuchsia-zircon-sys-0.3.3", |
| 401 | build_file = Label("//third_party/rust/cargo/remote:BUILD.fuchsia-zircon-sys-0.3.3.bazel"), |
| 402 | ) |
| 403 | |
| 404 | maybe( |
| 405 | http_archive, |
Leopold | 2aa8b18 | 2023-01-14 23:31:43 +0100 | [diff] [blame^] | 406 | name = "raze__futf__0_1_5", |
| 407 | url = "https://crates.io/api/v1/crates/futf/0.1.5/download", |
Serge Bazanski | cbf1fa9 | 2021-07-02 17:28:50 +0200 | [diff] [blame] | 408 | type = "tar.gz", |
Leopold | 2aa8b18 | 2023-01-14 23:31:43 +0100 | [diff] [blame^] | 409 | sha256 = "df420e2e84819663797d1ec6544b13c5be84629e7bb00dc960d6917db2987843", |
| 410 | strip_prefix = "futf-0.1.5", |
| 411 | build_file = Label("//third_party/rust/cargo/remote:BUILD.futf-0.1.5.bazel"), |
Serge Bazanski | cbf1fa9 | 2021-07-02 17:28:50 +0200 | [diff] [blame] | 412 | ) |
| 413 | |
| 414 | maybe( |
| 415 | http_archive, |
Leopold | 2aa8b18 | 2023-01-14 23:31:43 +0100 | [diff] [blame^] | 416 | name = "raze__futures_channel__0_3_25", |
| 417 | url = "https://crates.io/api/v1/crates/futures-channel/0.3.25/download", |
Serge Bazanski | cbf1fa9 | 2021-07-02 17:28:50 +0200 | [diff] [blame] | 418 | type = "tar.gz", |
Leopold | 2aa8b18 | 2023-01-14 23:31:43 +0100 | [diff] [blame^] | 419 | sha256 = "52ba265a92256105f45b719605a571ffe2d1f0fea3807304b522c1d778f79eed", |
| 420 | strip_prefix = "futures-channel-0.3.25", |
| 421 | build_file = Label("//third_party/rust/cargo/remote:BUILD.futures-channel-0.3.25.bazel"), |
Serge Bazanski | cbf1fa9 | 2021-07-02 17:28:50 +0200 | [diff] [blame] | 422 | ) |
| 423 | |
| 424 | maybe( |
| 425 | http_archive, |
Leopold | 2aa8b18 | 2023-01-14 23:31:43 +0100 | [diff] [blame^] | 426 | name = "raze__futures_core__0_3_25", |
| 427 | url = "https://crates.io/api/v1/crates/futures-core/0.3.25/download", |
Serge Bazanski | cbf1fa9 | 2021-07-02 17:28:50 +0200 | [diff] [blame] | 428 | type = "tar.gz", |
Leopold | 2aa8b18 | 2023-01-14 23:31:43 +0100 | [diff] [blame^] | 429 | sha256 = "04909a7a7e4633ae6c4a9ab280aeb86da1236243a77b694a49eacd659a4bd3ac", |
| 430 | strip_prefix = "futures-core-0.3.25", |
| 431 | build_file = Label("//third_party/rust/cargo/remote:BUILD.futures-core-0.3.25.bazel"), |
Serge Bazanski | cbf1fa9 | 2021-07-02 17:28:50 +0200 | [diff] [blame] | 432 | ) |
| 433 | |
| 434 | maybe( |
| 435 | http_archive, |
Leopold | 2aa8b18 | 2023-01-14 23:31:43 +0100 | [diff] [blame^] | 436 | name = "raze__futures_macro__0_3_25", |
| 437 | url = "https://crates.io/api/v1/crates/futures-macro/0.3.25/download", |
Serge Bazanski | cbf1fa9 | 2021-07-02 17:28:50 +0200 | [diff] [blame] | 438 | type = "tar.gz", |
Leopold | 2aa8b18 | 2023-01-14 23:31:43 +0100 | [diff] [blame^] | 439 | sha256 = "bdfb8ce053d86b91919aad980c220b1fb8401a9394410e1c289ed7e66b61835d", |
| 440 | strip_prefix = "futures-macro-0.3.25", |
| 441 | build_file = Label("//third_party/rust/cargo/remote:BUILD.futures-macro-0.3.25.bazel"), |
Serge Bazanski | cbf1fa9 | 2021-07-02 17:28:50 +0200 | [diff] [blame] | 442 | ) |
| 443 | |
| 444 | maybe( |
| 445 | http_archive, |
Leopold | 2aa8b18 | 2023-01-14 23:31:43 +0100 | [diff] [blame^] | 446 | name = "raze__futures_sink__0_3_25", |
| 447 | url = "https://crates.io/api/v1/crates/futures-sink/0.3.25/download", |
Serge Bazanski | cbf1fa9 | 2021-07-02 17:28:50 +0200 | [diff] [blame] | 448 | type = "tar.gz", |
Leopold | 2aa8b18 | 2023-01-14 23:31:43 +0100 | [diff] [blame^] | 449 | sha256 = "39c15cf1a4aa79df40f1bb462fb39676d0ad9e366c2a33b590d7c66f4f81fcf9", |
| 450 | strip_prefix = "futures-sink-0.3.25", |
| 451 | build_file = Label("//third_party/rust/cargo/remote:BUILD.futures-sink-0.3.25.bazel"), |
Serge Bazanski | cbf1fa9 | 2021-07-02 17:28:50 +0200 | [diff] [blame] | 452 | ) |
| 453 | |
| 454 | maybe( |
| 455 | http_archive, |
Leopold | 2aa8b18 | 2023-01-14 23:31:43 +0100 | [diff] [blame^] | 456 | name = "raze__futures_task__0_3_25", |
| 457 | url = "https://crates.io/api/v1/crates/futures-task/0.3.25/download", |
Serge Bazanski | cbf1fa9 | 2021-07-02 17:28:50 +0200 | [diff] [blame] | 458 | type = "tar.gz", |
Leopold | 2aa8b18 | 2023-01-14 23:31:43 +0100 | [diff] [blame^] | 459 | sha256 = "2ffb393ac5d9a6eaa9d3fdf37ae2776656b706e200c8e16b1bdb227f5198e6ea", |
| 460 | strip_prefix = "futures-task-0.3.25", |
| 461 | build_file = Label("//third_party/rust/cargo/remote:BUILD.futures-task-0.3.25.bazel"), |
Serge Bazanski | cbf1fa9 | 2021-07-02 17:28:50 +0200 | [diff] [blame] | 462 | ) |
| 463 | |
| 464 | maybe( |
| 465 | http_archive, |
Leopold | 2aa8b18 | 2023-01-14 23:31:43 +0100 | [diff] [blame^] | 466 | name = "raze__futures_util__0_3_25", |
| 467 | url = "https://crates.io/api/v1/crates/futures-util/0.3.25/download", |
Serge Bazanski | cbf1fa9 | 2021-07-02 17:28:50 +0200 | [diff] [blame] | 468 | type = "tar.gz", |
Leopold | 2aa8b18 | 2023-01-14 23:31:43 +0100 | [diff] [blame^] | 469 | sha256 = "197676987abd2f9cadff84926f410af1c183608d36641465df73ae8211dc65d6", |
| 470 | strip_prefix = "futures-util-0.3.25", |
| 471 | build_file = Label("//third_party/rust/cargo/remote:BUILD.futures-util-0.3.25.bazel"), |
Serge Bazanski | cbf1fa9 | 2021-07-02 17:28:50 +0200 | [diff] [blame] | 472 | ) |
| 473 | |
| 474 | maybe( |
| 475 | http_archive, |
Leopold | 2aa8b18 | 2023-01-14 23:31:43 +0100 | [diff] [blame^] | 476 | name = "raze__generic_array__0_14_6", |
| 477 | url = "https://crates.io/api/v1/crates/generic-array/0.14.6/download", |
Serge Bazanski | cbf1fa9 | 2021-07-02 17:28:50 +0200 | [diff] [blame] | 478 | type = "tar.gz", |
Leopold | 2aa8b18 | 2023-01-14 23:31:43 +0100 | [diff] [blame^] | 479 | sha256 = "bff49e947297f3312447abdca79f45f4738097cc82b06e72054d2223f601f1b9", |
| 480 | strip_prefix = "generic-array-0.14.6", |
| 481 | build_file = Label("//third_party/rust/cargo/remote:BUILD.generic-array-0.14.6.bazel"), |
Serge Bazanski | cbf1fa9 | 2021-07-02 17:28:50 +0200 | [diff] [blame] | 482 | ) |
| 483 | |
| 484 | maybe( |
| 485 | http_archive, |
Leopold | 2aa8b18 | 2023-01-14 23:31:43 +0100 | [diff] [blame^] | 486 | name = "raze__getrandom__0_2_8", |
| 487 | url = "https://crates.io/api/v1/crates/getrandom/0.2.8/download", |
Serge Bazanski | cbf1fa9 | 2021-07-02 17:28:50 +0200 | [diff] [blame] | 488 | type = "tar.gz", |
Leopold | 2aa8b18 | 2023-01-14 23:31:43 +0100 | [diff] [blame^] | 489 | sha256 = "c05aeb6a22b8f62540c194aac980f2115af067bfe15a0734d7277a768d396b31", |
| 490 | strip_prefix = "getrandom-0.2.8", |
| 491 | build_file = Label("//third_party/rust/cargo/remote:BUILD.getrandom-0.2.8.bazel"), |
Serge Bazanski | cbf1fa9 | 2021-07-02 17:28:50 +0200 | [diff] [blame] | 492 | ) |
| 493 | |
| 494 | maybe( |
| 495 | http_archive, |
| 496 | name = "raze__gitignore__1_0_7", |
| 497 | url = "https://crates.io/api/v1/crates/gitignore/1.0.7/download", |
| 498 | type = "tar.gz", |
| 499 | sha256 = "78aa90e4620c1498ac434c06ba6e521b525794bbdacf085d490cc794b4a2f9a4", |
| 500 | strip_prefix = "gitignore-1.0.7", |
| 501 | build_file = Label("//third_party/rust/cargo/remote:BUILD.gitignore-1.0.7.bazel"), |
| 502 | ) |
| 503 | |
| 504 | maybe( |
| 505 | http_archive, |
Leopold | 2aa8b18 | 2023-01-14 23:31:43 +0100 | [diff] [blame^] | 506 | name = "raze__glob__0_3_1", |
| 507 | url = "https://crates.io/api/v1/crates/glob/0.3.1/download", |
Serge Bazanski | cbf1fa9 | 2021-07-02 17:28:50 +0200 | [diff] [blame] | 508 | type = "tar.gz", |
Leopold | 2aa8b18 | 2023-01-14 23:31:43 +0100 | [diff] [blame^] | 509 | sha256 = "d2fabcfbdc87f4758337ca535fb41a6d701b65693ce38287d856d1674551ec9b", |
| 510 | strip_prefix = "glob-0.3.1", |
| 511 | build_file = Label("//third_party/rust/cargo/remote:BUILD.glob-0.3.1.bazel"), |
Serge Bazanski | cbf1fa9 | 2021-07-02 17:28:50 +0200 | [diff] [blame] | 512 | ) |
| 513 | |
| 514 | maybe( |
| 515 | http_archive, |
Leopold | 2aa8b18 | 2023-01-14 23:31:43 +0100 | [diff] [blame^] | 516 | name = "raze__h2__0_3_15", |
| 517 | url = "https://crates.io/api/v1/crates/h2/0.3.15/download", |
Serge Bazanski | cbf1fa9 | 2021-07-02 17:28:50 +0200 | [diff] [blame] | 518 | type = "tar.gz", |
Leopold | 2aa8b18 | 2023-01-14 23:31:43 +0100 | [diff] [blame^] | 519 | sha256 = "5f9f29bc9dda355256b2916cf526ab02ce0aeaaaf2bad60d65ef3f12f11dd0f4", |
| 520 | strip_prefix = "h2-0.3.15", |
| 521 | build_file = Label("//third_party/rust/cargo/remote:BUILD.h2-0.3.15.bazel"), |
Serge Bazanski | cbf1fa9 | 2021-07-02 17:28:50 +0200 | [diff] [blame] | 522 | ) |
| 523 | |
| 524 | maybe( |
| 525 | http_archive, |
Leopold | 2aa8b18 | 2023-01-14 23:31:43 +0100 | [diff] [blame^] | 526 | name = "raze__handlebars__4_3_6", |
| 527 | url = "https://crates.io/api/v1/crates/handlebars/4.3.6/download", |
Serge Bazanski | cbf1fa9 | 2021-07-02 17:28:50 +0200 | [diff] [blame] | 528 | type = "tar.gz", |
Leopold | 2aa8b18 | 2023-01-14 23:31:43 +0100 | [diff] [blame^] | 529 | sha256 = "035ef95d03713f2c347a72547b7cd38cbc9af7cd51e6099fb62d586d4a6dee3a", |
| 530 | strip_prefix = "handlebars-4.3.6", |
| 531 | build_file = Label("//third_party/rust/cargo/remote:BUILD.handlebars-4.3.6.bazel"), |
Serge Bazanski | cbf1fa9 | 2021-07-02 17:28:50 +0200 | [diff] [blame] | 532 | ) |
| 533 | |
| 534 | maybe( |
| 535 | http_archive, |
Leopold | 2aa8b18 | 2023-01-14 23:31:43 +0100 | [diff] [blame^] | 536 | name = "raze__hashbrown__0_12_3", |
| 537 | url = "https://crates.io/api/v1/crates/hashbrown/0.12.3/download", |
Serge Bazanski | cbf1fa9 | 2021-07-02 17:28:50 +0200 | [diff] [blame] | 538 | type = "tar.gz", |
Leopold | 2aa8b18 | 2023-01-14 23:31:43 +0100 | [diff] [blame^] | 539 | sha256 = "8a9ee70c43aaf417c914396645a0fa852624801b24ebb7ae78fe8272889ac888", |
| 540 | strip_prefix = "hashbrown-0.12.3", |
| 541 | build_file = Label("//third_party/rust/cargo/remote:BUILD.hashbrown-0.12.3.bazel"), |
Serge Bazanski | cbf1fa9 | 2021-07-02 17:28:50 +0200 | [diff] [blame] | 542 | ) |
| 543 | |
| 544 | maybe( |
| 545 | http_archive, |
Leopold | 2aa8b18 | 2023-01-14 23:31:43 +0100 | [diff] [blame^] | 546 | name = "raze__headers__0_3_8", |
| 547 | url = "https://crates.io/api/v1/crates/headers/0.3.8/download", |
Serge Bazanski | cbf1fa9 | 2021-07-02 17:28:50 +0200 | [diff] [blame] | 548 | type = "tar.gz", |
Leopold | 2aa8b18 | 2023-01-14 23:31:43 +0100 | [diff] [blame^] | 549 | sha256 = "f3e372db8e5c0d213e0cd0b9be18be2aca3d44cf2fe30a9d46a65581cd454584", |
| 550 | strip_prefix = "headers-0.3.8", |
| 551 | build_file = Label("//third_party/rust/cargo/remote:BUILD.headers-0.3.8.bazel"), |
Serge Bazanski | cbf1fa9 | 2021-07-02 17:28:50 +0200 | [diff] [blame] | 552 | ) |
| 553 | |
| 554 | maybe( |
| 555 | http_archive, |
| 556 | name = "raze__headers_core__0_2_0", |
| 557 | url = "https://crates.io/api/v1/crates/headers-core/0.2.0/download", |
| 558 | type = "tar.gz", |
| 559 | sha256 = "e7f66481bfee273957b1f20485a4ff3362987f85b2c236580d81b4eb7a326429", |
| 560 | strip_prefix = "headers-core-0.2.0", |
| 561 | build_file = Label("//third_party/rust/cargo/remote:BUILD.headers-core-0.2.0.bazel"), |
| 562 | ) |
| 563 | |
| 564 | maybe( |
| 565 | http_archive, |
Serge Bazanski | cbf1fa9 | 2021-07-02 17:28:50 +0200 | [diff] [blame] | 566 | name = "raze__hermit_abi__0_1_19", |
| 567 | url = "https://crates.io/api/v1/crates/hermit-abi/0.1.19/download", |
| 568 | type = "tar.gz", |
| 569 | sha256 = "62b467343b94ba476dcb2500d242dadbb39557df889310ac77c5d99100aaac33", |
| 570 | strip_prefix = "hermit-abi-0.1.19", |
| 571 | build_file = Label("//third_party/rust/cargo/remote:BUILD.hermit-abi-0.1.19.bazel"), |
| 572 | ) |
| 573 | |
| 574 | maybe( |
| 575 | http_archive, |
Leopold | 2aa8b18 | 2023-01-14 23:31:43 +0100 | [diff] [blame^] | 576 | name = "raze__hermit_abi__0_2_6", |
| 577 | url = "https://crates.io/api/v1/crates/hermit-abi/0.2.6/download", |
Serge Bazanski | cbf1fa9 | 2021-07-02 17:28:50 +0200 | [diff] [blame] | 578 | type = "tar.gz", |
Leopold | 2aa8b18 | 2023-01-14 23:31:43 +0100 | [diff] [blame^] | 579 | sha256 = "ee512640fe35acbfb4bb779db6f0d80704c2cacfa2e39b601ef3e3f47d1ae4c7", |
| 580 | strip_prefix = "hermit-abi-0.2.6", |
| 581 | build_file = Label("//third_party/rust/cargo/remote:BUILD.hermit-abi-0.2.6.bazel"), |
Serge Bazanski | cbf1fa9 | 2021-07-02 17:28:50 +0200 | [diff] [blame] | 582 | ) |
| 583 | |
| 584 | maybe( |
| 585 | http_archive, |
Leopold | 2aa8b18 | 2023-01-14 23:31:43 +0100 | [diff] [blame^] | 586 | name = "raze__html5ever__0_26_0", |
| 587 | url = "https://crates.io/api/v1/crates/html5ever/0.26.0/download", |
Serge Bazanski | cbf1fa9 | 2021-07-02 17:28:50 +0200 | [diff] [blame] | 588 | type = "tar.gz", |
Leopold | 2aa8b18 | 2023-01-14 23:31:43 +0100 | [diff] [blame^] | 589 | sha256 = "bea68cab48b8459f17cf1c944c67ddc572d272d9f2b274140f223ecb1da4a3b7", |
| 590 | strip_prefix = "html5ever-0.26.0", |
| 591 | build_file = Label("//third_party/rust/cargo/remote:BUILD.html5ever-0.26.0.bazel"), |
Serge Bazanski | cbf1fa9 | 2021-07-02 17:28:50 +0200 | [diff] [blame] | 592 | ) |
| 593 | |
| 594 | maybe( |
| 595 | http_archive, |
Leopold | 2aa8b18 | 2023-01-14 23:31:43 +0100 | [diff] [blame^] | 596 | name = "raze__http__0_2_8", |
| 597 | url = "https://crates.io/api/v1/crates/http/0.2.8/download", |
Serge Bazanski | cbf1fa9 | 2021-07-02 17:28:50 +0200 | [diff] [blame] | 598 | type = "tar.gz", |
Leopold | 2aa8b18 | 2023-01-14 23:31:43 +0100 | [diff] [blame^] | 599 | sha256 = "75f43d41e26995c17e71ee126451dd3941010b0514a81a9d11f3b341debc2399", |
| 600 | strip_prefix = "http-0.2.8", |
| 601 | build_file = Label("//third_party/rust/cargo/remote:BUILD.http-0.2.8.bazel"), |
Serge Bazanski | cbf1fa9 | 2021-07-02 17:28:50 +0200 | [diff] [blame] | 602 | ) |
| 603 | |
| 604 | maybe( |
| 605 | http_archive, |
Leopold | 2aa8b18 | 2023-01-14 23:31:43 +0100 | [diff] [blame^] | 606 | name = "raze__http_body__0_4_5", |
| 607 | url = "https://crates.io/api/v1/crates/http-body/0.4.5/download", |
Serge Bazanski | cbf1fa9 | 2021-07-02 17:28:50 +0200 | [diff] [blame] | 608 | type = "tar.gz", |
Leopold | 2aa8b18 | 2023-01-14 23:31:43 +0100 | [diff] [blame^] | 609 | sha256 = "d5f38f16d184e36f2408a55281cd658ecbd3ca05cce6d6510a176eca393e26d1", |
| 610 | strip_prefix = "http-body-0.4.5", |
| 611 | build_file = Label("//third_party/rust/cargo/remote:BUILD.http-body-0.4.5.bazel"), |
Serge Bazanski | cbf1fa9 | 2021-07-02 17:28:50 +0200 | [diff] [blame] | 612 | ) |
| 613 | |
| 614 | maybe( |
| 615 | http_archive, |
Leopold | 2aa8b18 | 2023-01-14 23:31:43 +0100 | [diff] [blame^] | 616 | name = "raze__httparse__1_8_0", |
| 617 | url = "https://crates.io/api/v1/crates/httparse/1.8.0/download", |
Serge Bazanski | cbf1fa9 | 2021-07-02 17:28:50 +0200 | [diff] [blame] | 618 | type = "tar.gz", |
Leopold | 2aa8b18 | 2023-01-14 23:31:43 +0100 | [diff] [blame^] | 619 | sha256 = "d897f394bad6a705d5f4104762e116a75639e470d80901eed05a860a95cb1904", |
| 620 | strip_prefix = "httparse-1.8.0", |
| 621 | build_file = Label("//third_party/rust/cargo/remote:BUILD.httparse-1.8.0.bazel"), |
Serge Bazanski | cbf1fa9 | 2021-07-02 17:28:50 +0200 | [diff] [blame] | 622 | ) |
| 623 | |
| 624 | maybe( |
| 625 | http_archive, |
Leopold | 2aa8b18 | 2023-01-14 23:31:43 +0100 | [diff] [blame^] | 626 | name = "raze__httpdate__1_0_2", |
| 627 | url = "https://crates.io/api/v1/crates/httpdate/1.0.2/download", |
Serge Bazanski | cbf1fa9 | 2021-07-02 17:28:50 +0200 | [diff] [blame] | 628 | type = "tar.gz", |
Leopold | 2aa8b18 | 2023-01-14 23:31:43 +0100 | [diff] [blame^] | 629 | sha256 = "c4a1e36c821dbe04574f602848a19f742f4fb3c98d40449f11bcad18d6b17421", |
| 630 | strip_prefix = "httpdate-1.0.2", |
| 631 | build_file = Label("//third_party/rust/cargo/remote:BUILD.httpdate-1.0.2.bazel"), |
Serge Bazanski | cbf1fa9 | 2021-07-02 17:28:50 +0200 | [diff] [blame] | 632 | ) |
| 633 | |
| 634 | maybe( |
| 635 | http_archive, |
Leopold | 2aa8b18 | 2023-01-14 23:31:43 +0100 | [diff] [blame^] | 636 | name = "raze__humantime__2_1_0", |
| 637 | url = "https://crates.io/api/v1/crates/humantime/2.1.0/download", |
Serge Bazanski | cbf1fa9 | 2021-07-02 17:28:50 +0200 | [diff] [blame] | 638 | type = "tar.gz", |
Leopold | 2aa8b18 | 2023-01-14 23:31:43 +0100 | [diff] [blame^] | 639 | sha256 = "9a3a5bfb195931eeb336b2a7b4d761daec841b97f947d34394601737a7bba5e4", |
| 640 | strip_prefix = "humantime-2.1.0", |
| 641 | build_file = Label("//third_party/rust/cargo/remote:BUILD.humantime-2.1.0.bazel"), |
Serge Bazanski | cbf1fa9 | 2021-07-02 17:28:50 +0200 | [diff] [blame] | 642 | ) |
| 643 | |
| 644 | maybe( |
| 645 | http_archive, |
Leopold | 2aa8b18 | 2023-01-14 23:31:43 +0100 | [diff] [blame^] | 646 | name = "raze__hyper__0_14_23", |
| 647 | url = "https://crates.io/api/v1/crates/hyper/0.14.23/download", |
Serge Bazanski | cbf1fa9 | 2021-07-02 17:28:50 +0200 | [diff] [blame] | 648 | type = "tar.gz", |
Leopold | 2aa8b18 | 2023-01-14 23:31:43 +0100 | [diff] [blame^] | 649 | sha256 = "034711faac9d2166cb1baf1a2fb0b60b1f277f8492fd72176c17f3515e1abd3c", |
| 650 | strip_prefix = "hyper-0.14.23", |
| 651 | build_file = Label("//third_party/rust/cargo/remote:BUILD.hyper-0.14.23.bazel"), |
Serge Bazanski | cbf1fa9 | 2021-07-02 17:28:50 +0200 | [diff] [blame] | 652 | ) |
| 653 | |
| 654 | maybe( |
| 655 | http_archive, |
Leopold | 2aa8b18 | 2023-01-14 23:31:43 +0100 | [diff] [blame^] | 656 | name = "raze__iana_time_zone__0_1_53", |
| 657 | url = "https://crates.io/api/v1/crates/iana-time-zone/0.1.53/download", |
Serge Bazanski | cbf1fa9 | 2021-07-02 17:28:50 +0200 | [diff] [blame] | 658 | type = "tar.gz", |
Leopold | 2aa8b18 | 2023-01-14 23:31:43 +0100 | [diff] [blame^] | 659 | sha256 = "64c122667b287044802d6ce17ee2ddf13207ed924c712de9a66a5814d5b64765", |
| 660 | strip_prefix = "iana-time-zone-0.1.53", |
| 661 | build_file = Label("//third_party/rust/cargo/remote:BUILD.iana-time-zone-0.1.53.bazel"), |
| 662 | ) |
| 663 | |
| 664 | maybe( |
| 665 | http_archive, |
| 666 | name = "raze__iana_time_zone_haiku__0_1_1", |
| 667 | url = "https://crates.io/api/v1/crates/iana-time-zone-haiku/0.1.1/download", |
| 668 | type = "tar.gz", |
| 669 | sha256 = "0703ae284fc167426161c2e3f1da3ea71d94b21bedbcc9494e92b28e334e3dca", |
| 670 | strip_prefix = "iana-time-zone-haiku-0.1.1", |
| 671 | build_file = Label("//third_party/rust/cargo/remote:BUILD.iana-time-zone-haiku-0.1.1.bazel"), |
| 672 | ) |
| 673 | |
| 674 | maybe( |
| 675 | http_archive, |
| 676 | name = "raze__idna__0_3_0", |
| 677 | url = "https://crates.io/api/v1/crates/idna/0.3.0/download", |
| 678 | type = "tar.gz", |
| 679 | sha256 = "e14ddfc70884202db2244c223200c204c2bda1bc6e0998d11b5e024d657209e6", |
| 680 | strip_prefix = "idna-0.3.0", |
| 681 | build_file = Label("//third_party/rust/cargo/remote:BUILD.idna-0.3.0.bazel"), |
| 682 | ) |
| 683 | |
| 684 | maybe( |
| 685 | http_archive, |
| 686 | name = "raze__indexmap__1_9_2", |
| 687 | url = "https://crates.io/api/v1/crates/indexmap/1.9.2/download", |
| 688 | type = "tar.gz", |
| 689 | sha256 = "1885e79c1fc4b10f0e172c475f458b7f7b93061064d98c3293e98c5ba0c8b399", |
| 690 | strip_prefix = "indexmap-1.9.2", |
| 691 | build_file = Label("//third_party/rust/cargo/remote:BUILD.indexmap-1.9.2.bazel"), |
Serge Bazanski | cbf1fa9 | 2021-07-02 17:28:50 +0200 | [diff] [blame] | 692 | ) |
| 693 | |
| 694 | maybe( |
| 695 | http_archive, |
| 696 | name = "raze__inotify__0_7_1", |
| 697 | url = "https://crates.io/api/v1/crates/inotify/0.7.1/download", |
| 698 | type = "tar.gz", |
| 699 | sha256 = "4816c66d2c8ae673df83366c18341538f234a26d65a9ecea5c348b453ac1d02f", |
| 700 | strip_prefix = "inotify-0.7.1", |
| 701 | build_file = Label("//third_party/rust/cargo/remote:BUILD.inotify-0.7.1.bazel"), |
| 702 | ) |
| 703 | |
| 704 | maybe( |
| 705 | http_archive, |
| 706 | name = "raze__inotify_sys__0_1_5", |
| 707 | url = "https://crates.io/api/v1/crates/inotify-sys/0.1.5/download", |
| 708 | type = "tar.gz", |
| 709 | sha256 = "e05c02b5e89bff3b946cedeca278abc628fe811e604f027c45a8aa3cf793d0eb", |
| 710 | strip_prefix = "inotify-sys-0.1.5", |
| 711 | build_file = Label("//third_party/rust/cargo/remote:BUILD.inotify-sys-0.1.5.bazel"), |
| 712 | ) |
| 713 | |
| 714 | maybe( |
| 715 | http_archive, |
Leopold | 2aa8b18 | 2023-01-14 23:31:43 +0100 | [diff] [blame^] | 716 | name = "raze__instant__0_1_12", |
| 717 | url = "https://crates.io/api/v1/crates/instant/0.1.12/download", |
Serge Bazanski | cbf1fa9 | 2021-07-02 17:28:50 +0200 | [diff] [blame] | 718 | type = "tar.gz", |
Leopold | 2aa8b18 | 2023-01-14 23:31:43 +0100 | [diff] [blame^] | 719 | sha256 = "7a5bbe824c507c5da5956355e86a746d82e0e1464f65d862cc5e71da70e94b2c", |
| 720 | strip_prefix = "instant-0.1.12", |
| 721 | build_file = Label("//third_party/rust/cargo/remote:BUILD.instant-0.1.12.bazel"), |
Serge Bazanski | cbf1fa9 | 2021-07-02 17:28:50 +0200 | [diff] [blame] | 722 | ) |
| 723 | |
| 724 | maybe( |
| 725 | http_archive, |
| 726 | name = "raze__iovec__0_1_4", |
| 727 | url = "https://crates.io/api/v1/crates/iovec/0.1.4/download", |
| 728 | type = "tar.gz", |
| 729 | sha256 = "b2b3ea6ff95e175473f8ffe6a7eb7c00d054240321b84c57051175fe3c1e075e", |
| 730 | strip_prefix = "iovec-0.1.4", |
| 731 | build_file = Label("//third_party/rust/cargo/remote:BUILD.iovec-0.1.4.bazel"), |
| 732 | ) |
| 733 | |
| 734 | maybe( |
| 735 | http_archive, |
Leopold | 2aa8b18 | 2023-01-14 23:31:43 +0100 | [diff] [blame^] | 736 | name = "raze__itoa__1_0_5", |
| 737 | url = "https://crates.io/api/v1/crates/itoa/1.0.5/download", |
Serge Bazanski | cbf1fa9 | 2021-07-02 17:28:50 +0200 | [diff] [blame] | 738 | type = "tar.gz", |
Leopold | 2aa8b18 | 2023-01-14 23:31:43 +0100 | [diff] [blame^] | 739 | sha256 = "fad582f4b9e86b6caa621cabeb0963332d92eea04729ab12892c2533951e6440", |
| 740 | strip_prefix = "itoa-1.0.5", |
| 741 | build_file = Label("//third_party/rust/cargo/remote:BUILD.itoa-1.0.5.bazel"), |
| 742 | ) |
| 743 | |
| 744 | maybe( |
| 745 | http_archive, |
| 746 | name = "raze__js_sys__0_3_60", |
| 747 | url = "https://crates.io/api/v1/crates/js-sys/0.3.60/download", |
| 748 | type = "tar.gz", |
| 749 | sha256 = "49409df3e3bf0856b916e2ceaca09ee28e6871cf7d9ce97a692cacfdb2a25a47", |
| 750 | strip_prefix = "js-sys-0.3.60", |
| 751 | build_file = Label("//third_party/rust/cargo/remote:BUILD.js-sys-0.3.60.bazel"), |
Serge Bazanski | cbf1fa9 | 2021-07-02 17:28:50 +0200 | [diff] [blame] | 752 | ) |
| 753 | |
| 754 | maybe( |
| 755 | http_archive, |
| 756 | name = "raze__kernel32_sys__0_2_2", |
| 757 | url = "https://crates.io/api/v1/crates/kernel32-sys/0.2.2/download", |
| 758 | type = "tar.gz", |
| 759 | sha256 = "7507624b29483431c0ba2d82aece8ca6cdba9382bff4ddd0f7490560c056098d", |
| 760 | strip_prefix = "kernel32-sys-0.2.2", |
| 761 | build_file = Label("//third_party/rust/cargo/remote:BUILD.kernel32-sys-0.2.2.bazel"), |
| 762 | ) |
| 763 | |
| 764 | maybe( |
| 765 | http_archive, |
| 766 | name = "raze__lazy_static__1_4_0", |
| 767 | url = "https://crates.io/api/v1/crates/lazy_static/1.4.0/download", |
| 768 | type = "tar.gz", |
| 769 | sha256 = "e2abad23fbc42b3700f2f279844dc832adb2b2eb069b2df918f455c4e18cc646", |
| 770 | strip_prefix = "lazy_static-1.4.0", |
| 771 | build_file = Label("//third_party/rust/cargo/remote:BUILD.lazy_static-1.4.0.bazel"), |
| 772 | ) |
| 773 | |
| 774 | maybe( |
| 775 | http_archive, |
| 776 | name = "raze__lazycell__1_3_0", |
| 777 | url = "https://crates.io/api/v1/crates/lazycell/1.3.0/download", |
| 778 | type = "tar.gz", |
| 779 | sha256 = "830d08ce1d1d941e6b30645f1a0eb5643013d835ce3779a5fc208261dbe10f55", |
| 780 | strip_prefix = "lazycell-1.3.0", |
| 781 | build_file = Label("//third_party/rust/cargo/remote:BUILD.lazycell-1.3.0.bazel"), |
| 782 | ) |
| 783 | |
| 784 | maybe( |
| 785 | http_archive, |
Leopold | 2aa8b18 | 2023-01-14 23:31:43 +0100 | [diff] [blame^] | 786 | name = "raze__libc__0_2_139", |
| 787 | url = "https://crates.io/api/v1/crates/libc/0.2.139/download", |
Serge Bazanski | cbf1fa9 | 2021-07-02 17:28:50 +0200 | [diff] [blame] | 788 | type = "tar.gz", |
Leopold | 2aa8b18 | 2023-01-14 23:31:43 +0100 | [diff] [blame^] | 789 | sha256 = "201de327520df007757c1f0adce6e827fe8562fbc28bfd9c15571c66ca1f5f79", |
| 790 | strip_prefix = "libc-0.2.139", |
| 791 | build_file = Label("//third_party/rust/cargo/remote:BUILD.libc-0.2.139.bazel"), |
Serge Bazanski | cbf1fa9 | 2021-07-02 17:28:50 +0200 | [diff] [blame] | 792 | ) |
| 793 | |
| 794 | maybe( |
| 795 | http_archive, |
Leopold | 2aa8b18 | 2023-01-14 23:31:43 +0100 | [diff] [blame^] | 796 | name = "raze__link_cplusplus__1_0_8", |
| 797 | url = "https://crates.io/api/v1/crates/link-cplusplus/1.0.8/download", |
Serge Bazanski | cbf1fa9 | 2021-07-02 17:28:50 +0200 | [diff] [blame] | 798 | type = "tar.gz", |
Leopold | 2aa8b18 | 2023-01-14 23:31:43 +0100 | [diff] [blame^] | 799 | sha256 = "ecd207c9c713c34f95a097a5b029ac2ce6010530c7b49d7fea24d977dede04f5", |
| 800 | strip_prefix = "link-cplusplus-1.0.8", |
| 801 | build_file = Label("//third_party/rust/cargo/remote:BUILD.link-cplusplus-1.0.8.bazel"), |
| 802 | ) |
| 803 | |
| 804 | maybe( |
| 805 | http_archive, |
| 806 | name = "raze__lock_api__0_4_9", |
| 807 | url = "https://crates.io/api/v1/crates/lock_api/0.4.9/download", |
| 808 | type = "tar.gz", |
| 809 | sha256 = "435011366fe56583b16cf956f9df0095b405b82d76425bc8981c0e22e60ec4df", |
| 810 | strip_prefix = "lock_api-0.4.9", |
| 811 | build_file = Label("//third_party/rust/cargo/remote:BUILD.lock_api-0.4.9.bazel"), |
| 812 | ) |
| 813 | |
| 814 | maybe( |
| 815 | http_archive, |
| 816 | name = "raze__log__0_4_17", |
| 817 | url = "https://crates.io/api/v1/crates/log/0.4.17/download", |
| 818 | type = "tar.gz", |
| 819 | sha256 = "abb12e687cfb44aa40f41fc3978ef76448f9b6038cad6aef4259d3c095a2382e", |
| 820 | strip_prefix = "log-0.4.17", |
| 821 | build_file = Label("//third_party/rust/cargo/remote:BUILD.log-0.4.17.bazel"), |
Serge Bazanski | cbf1fa9 | 2021-07-02 17:28:50 +0200 | [diff] [blame] | 822 | ) |
| 823 | |
| 824 | maybe( |
| 825 | http_archive, |
| 826 | name = "raze__mac__0_1_1", |
| 827 | url = "https://crates.io/api/v1/crates/mac/0.1.1/download", |
| 828 | type = "tar.gz", |
| 829 | sha256 = "c41e0c4fef86961ac6d6f8a82609f55f31b05e4fce149ac5710e439df7619ba4", |
| 830 | strip_prefix = "mac-0.1.1", |
| 831 | build_file = Label("//third_party/rust/cargo/remote:BUILD.mac-0.1.1.bazel"), |
| 832 | ) |
| 833 | |
| 834 | maybe( |
| 835 | http_archive, |
| 836 | name = "raze__maplit__1_0_2", |
| 837 | url = "https://crates.io/api/v1/crates/maplit/1.0.2/download", |
| 838 | type = "tar.gz", |
| 839 | sha256 = "3e2e65a1a2e43cfcb47a895c4c8b10d1f4a61097f9f254f183aee60cad9c651d", |
| 840 | strip_prefix = "maplit-1.0.2", |
| 841 | build_file = Label("//third_party/rust/cargo/remote:BUILD.maplit-1.0.2.bazel"), |
| 842 | ) |
| 843 | |
| 844 | maybe( |
| 845 | http_archive, |
Leopold | 2aa8b18 | 2023-01-14 23:31:43 +0100 | [diff] [blame^] | 846 | name = "raze__markup5ever__0_11_0", |
| 847 | url = "https://crates.io/api/v1/crates/markup5ever/0.11.0/download", |
Serge Bazanski | cbf1fa9 | 2021-07-02 17:28:50 +0200 | [diff] [blame] | 848 | type = "tar.gz", |
Leopold | 2aa8b18 | 2023-01-14 23:31:43 +0100 | [diff] [blame^] | 849 | sha256 = "7a2629bb1404f3d34c2e921f21fd34ba00b206124c81f65c50b43b6aaefeb016", |
| 850 | strip_prefix = "markup5ever-0.11.0", |
| 851 | build_file = Label("//third_party/rust/cargo/remote:BUILD.markup5ever-0.11.0.bazel"), |
Serge Bazanski | cbf1fa9 | 2021-07-02 17:28:50 +0200 | [diff] [blame] | 852 | ) |
| 853 | |
| 854 | maybe( |
| 855 | http_archive, |
Leopold | 2aa8b18 | 2023-01-14 23:31:43 +0100 | [diff] [blame^] | 856 | name = "raze__mdbook__0_4_22", |
| 857 | url = "https://crates.io/api/v1/crates/mdbook/0.4.22/download", |
Serge Bazanski | cbf1fa9 | 2021-07-02 17:28:50 +0200 | [diff] [blame] | 858 | type = "tar.gz", |
Leopold | 2aa8b18 | 2023-01-14 23:31:43 +0100 | [diff] [blame^] | 859 | sha256 = "6b61566b406cbd75d81c634763d6c90779ca9db80202921c884348d172ada70d", |
| 860 | strip_prefix = "mdbook-0.4.22", |
| 861 | build_file = Label("//third_party/rust/cargo/remote:BUILD.mdbook-0.4.22.bazel"), |
Serge Bazanski | cbf1fa9 | 2021-07-02 17:28:50 +0200 | [diff] [blame] | 862 | ) |
| 863 | |
| 864 | maybe( |
| 865 | http_archive, |
Leopold | 2aa8b18 | 2023-01-14 23:31:43 +0100 | [diff] [blame^] | 866 | name = "raze__memchr__2_5_0", |
| 867 | url = "https://crates.io/api/v1/crates/memchr/2.5.0/download", |
Serge Bazanski | cbf1fa9 | 2021-07-02 17:28:50 +0200 | [diff] [blame] | 868 | type = "tar.gz", |
Leopold | 2aa8b18 | 2023-01-14 23:31:43 +0100 | [diff] [blame^] | 869 | sha256 = "2dffe52ecf27772e601905b7522cb4ef790d2cc203488bbd0e2fe85fcb74566d", |
| 870 | strip_prefix = "memchr-2.5.0", |
| 871 | build_file = Label("//third_party/rust/cargo/remote:BUILD.memchr-2.5.0.bazel"), |
Serge Bazanski | cbf1fa9 | 2021-07-02 17:28:50 +0200 | [diff] [blame] | 872 | ) |
| 873 | |
| 874 | maybe( |
| 875 | http_archive, |
| 876 | name = "raze__mime__0_3_16", |
| 877 | url = "https://crates.io/api/v1/crates/mime/0.3.16/download", |
| 878 | type = "tar.gz", |
| 879 | sha256 = "2a60c7ce501c71e03a9c9c0d35b861413ae925bd979cc7a4e30d060069aaac8d", |
| 880 | strip_prefix = "mime-0.3.16", |
| 881 | build_file = Label("//third_party/rust/cargo/remote:BUILD.mime-0.3.16.bazel"), |
| 882 | ) |
| 883 | |
| 884 | maybe( |
| 885 | http_archive, |
Leopold | 2aa8b18 | 2023-01-14 23:31:43 +0100 | [diff] [blame^] | 886 | name = "raze__mime_guess__2_0_4", |
| 887 | url = "https://crates.io/api/v1/crates/mime_guess/2.0.4/download", |
Serge Bazanski | cbf1fa9 | 2021-07-02 17:28:50 +0200 | [diff] [blame] | 888 | type = "tar.gz", |
Leopold | 2aa8b18 | 2023-01-14 23:31:43 +0100 | [diff] [blame^] | 889 | sha256 = "4192263c238a5f0d0c6bfd21f336a313a4ce1c450542449ca191bb657b4642ef", |
| 890 | strip_prefix = "mime_guess-2.0.4", |
| 891 | build_file = Label("//third_party/rust/cargo/remote:BUILD.mime_guess-2.0.4.bazel"), |
Serge Bazanski | cbf1fa9 | 2021-07-02 17:28:50 +0200 | [diff] [blame] | 892 | ) |
| 893 | |
| 894 | maybe( |
| 895 | http_archive, |
| 896 | name = "raze__mio__0_6_23", |
| 897 | url = "https://crates.io/api/v1/crates/mio/0.6.23/download", |
| 898 | type = "tar.gz", |
| 899 | sha256 = "4afd66f5b91bf2a3bc13fad0e21caedac168ca4c707504e75585648ae80e4cc4", |
| 900 | strip_prefix = "mio-0.6.23", |
| 901 | build_file = Label("//third_party/rust/cargo/remote:BUILD.mio-0.6.23.bazel"), |
| 902 | ) |
| 903 | |
| 904 | maybe( |
| 905 | http_archive, |
Leopold | 2aa8b18 | 2023-01-14 23:31:43 +0100 | [diff] [blame^] | 906 | name = "raze__mio__0_8_5", |
| 907 | url = "https://crates.io/api/v1/crates/mio/0.8.5/download", |
| 908 | type = "tar.gz", |
| 909 | sha256 = "e5d732bc30207a6423068df043e3d02e0735b155ad7ce1a6f76fe2baa5b158de", |
| 910 | strip_prefix = "mio-0.8.5", |
| 911 | build_file = Label("//third_party/rust/cargo/remote:BUILD.mio-0.8.5.bazel"), |
| 912 | ) |
| 913 | |
| 914 | maybe( |
| 915 | http_archive, |
Serge Bazanski | cbf1fa9 | 2021-07-02 17:28:50 +0200 | [diff] [blame] | 916 | name = "raze__mio_extras__2_0_6", |
| 917 | url = "https://crates.io/api/v1/crates/mio-extras/2.0.6/download", |
| 918 | type = "tar.gz", |
| 919 | sha256 = "52403fe290012ce777c4626790c8951324a2b9e3316b3143779c72b029742f19", |
| 920 | strip_prefix = "mio-extras-2.0.6", |
| 921 | build_file = Label("//third_party/rust/cargo/remote:BUILD.mio-extras-2.0.6.bazel"), |
| 922 | ) |
| 923 | |
| 924 | maybe( |
| 925 | http_archive, |
| 926 | name = "raze__miow__0_2_2", |
| 927 | url = "https://crates.io/api/v1/crates/miow/0.2.2/download", |
| 928 | type = "tar.gz", |
| 929 | sha256 = "ebd808424166322d4a38da87083bfddd3ac4c131334ed55856112eb06d46944d", |
| 930 | strip_prefix = "miow-0.2.2", |
| 931 | build_file = Label("//third_party/rust/cargo/remote:BUILD.miow-0.2.2.bazel"), |
| 932 | ) |
| 933 | |
| 934 | maybe( |
| 935 | http_archive, |
Leopold | 2aa8b18 | 2023-01-14 23:31:43 +0100 | [diff] [blame^] | 936 | name = "raze__net2__0_2_38", |
| 937 | url = "https://crates.io/api/v1/crates/net2/0.2.38/download", |
Serge Bazanski | cbf1fa9 | 2021-07-02 17:28:50 +0200 | [diff] [blame] | 938 | type = "tar.gz", |
Leopold | 2aa8b18 | 2023-01-14 23:31:43 +0100 | [diff] [blame^] | 939 | sha256 = "74d0df99cfcd2530b2e694f6e17e7f37b8e26bb23983ac530c0c97408837c631", |
| 940 | strip_prefix = "net2-0.2.38", |
| 941 | build_file = Label("//third_party/rust/cargo/remote:BUILD.net2-0.2.38.bazel"), |
Serge Bazanski | cbf1fa9 | 2021-07-02 17:28:50 +0200 | [diff] [blame] | 942 | ) |
| 943 | |
| 944 | maybe( |
| 945 | http_archive, |
| 946 | name = "raze__new_debug_unreachable__1_0_4", |
| 947 | url = "https://crates.io/api/v1/crates/new_debug_unreachable/1.0.4/download", |
| 948 | type = "tar.gz", |
| 949 | sha256 = "e4a24736216ec316047a1fc4252e27dabb04218aa4a3f37c6e7ddbf1f9782b54", |
| 950 | strip_prefix = "new_debug_unreachable-1.0.4", |
| 951 | build_file = Label("//third_party/rust/cargo/remote:BUILD.new_debug_unreachable-1.0.4.bazel"), |
| 952 | ) |
| 953 | |
| 954 | maybe( |
| 955 | http_archive, |
| 956 | name = "raze__notify__4_0_17", |
| 957 | url = "https://crates.io/api/v1/crates/notify/4.0.17/download", |
| 958 | type = "tar.gz", |
| 959 | sha256 = "ae03c8c853dba7bfd23e571ff0cff7bc9dceb40a4cd684cd1681824183f45257", |
| 960 | strip_prefix = "notify-4.0.17", |
| 961 | build_file = Label("//third_party/rust/cargo/remote:BUILD.notify-4.0.17.bazel"), |
| 962 | ) |
| 963 | |
| 964 | maybe( |
| 965 | http_archive, |
Leopold | 2aa8b18 | 2023-01-14 23:31:43 +0100 | [diff] [blame^] | 966 | name = "raze__num_integer__0_1_45", |
| 967 | url = "https://crates.io/api/v1/crates/num-integer/0.1.45/download", |
Serge Bazanski | cbf1fa9 | 2021-07-02 17:28:50 +0200 | [diff] [blame] | 968 | type = "tar.gz", |
Leopold | 2aa8b18 | 2023-01-14 23:31:43 +0100 | [diff] [blame^] | 969 | sha256 = "225d3389fb3509a24c93f5c29eb6bde2586b98d9f016636dff58d7c6f7569cd9", |
| 970 | strip_prefix = "num-integer-0.1.45", |
| 971 | build_file = Label("//third_party/rust/cargo/remote:BUILD.num-integer-0.1.45.bazel"), |
Serge Bazanski | cbf1fa9 | 2021-07-02 17:28:50 +0200 | [diff] [blame] | 972 | ) |
| 973 | |
| 974 | maybe( |
| 975 | http_archive, |
Leopold | 2aa8b18 | 2023-01-14 23:31:43 +0100 | [diff] [blame^] | 976 | name = "raze__num_traits__0_2_15", |
| 977 | url = "https://crates.io/api/v1/crates/num-traits/0.2.15/download", |
Serge Bazanski | cbf1fa9 | 2021-07-02 17:28:50 +0200 | [diff] [blame] | 978 | type = "tar.gz", |
Leopold | 2aa8b18 | 2023-01-14 23:31:43 +0100 | [diff] [blame^] | 979 | sha256 = "578ede34cf02f8924ab9447f50c28075b4d3e5b269972345e7e0372b38c6cdcd", |
| 980 | strip_prefix = "num-traits-0.2.15", |
| 981 | build_file = Label("//third_party/rust/cargo/remote:BUILD.num-traits-0.2.15.bazel"), |
Serge Bazanski | cbf1fa9 | 2021-07-02 17:28:50 +0200 | [diff] [blame] | 982 | ) |
| 983 | |
| 984 | maybe( |
| 985 | http_archive, |
Leopold | 2aa8b18 | 2023-01-14 23:31:43 +0100 | [diff] [blame^] | 986 | name = "raze__num_cpus__1_15_0", |
| 987 | url = "https://crates.io/api/v1/crates/num_cpus/1.15.0/download", |
Serge Bazanski | cbf1fa9 | 2021-07-02 17:28:50 +0200 | [diff] [blame] | 988 | type = "tar.gz", |
Leopold | 2aa8b18 | 2023-01-14 23:31:43 +0100 | [diff] [blame^] | 989 | sha256 = "0fac9e2da13b5eb447a6ce3d392f23a29d8694bff781bf03a16cd9ac8697593b", |
| 990 | strip_prefix = "num_cpus-1.15.0", |
| 991 | build_file = Label("//third_party/rust/cargo/remote:BUILD.num_cpus-1.15.0.bazel"), |
Serge Bazanski | cbf1fa9 | 2021-07-02 17:28:50 +0200 | [diff] [blame] | 992 | ) |
| 993 | |
| 994 | maybe( |
| 995 | http_archive, |
Leopold | 2aa8b18 | 2023-01-14 23:31:43 +0100 | [diff] [blame^] | 996 | name = "raze__once_cell__1_17_0", |
| 997 | url = "https://crates.io/api/v1/crates/once_cell/1.17.0/download", |
Serge Bazanski | cbf1fa9 | 2021-07-02 17:28:50 +0200 | [diff] [blame] | 998 | type = "tar.gz", |
Leopold | 2aa8b18 | 2023-01-14 23:31:43 +0100 | [diff] [blame^] | 999 | sha256 = "6f61fba1741ea2b3d6a1e3178721804bb716a68a6aeba1149b5d52e3d464ea66", |
| 1000 | strip_prefix = "once_cell-1.17.0", |
| 1001 | build_file = Label("//third_party/rust/cargo/remote:BUILD.once_cell-1.17.0.bazel"), |
Serge Bazanski | cbf1fa9 | 2021-07-02 17:28:50 +0200 | [diff] [blame] | 1002 | ) |
| 1003 | |
| 1004 | maybe( |
| 1005 | http_archive, |
Leopold | 2aa8b18 | 2023-01-14 23:31:43 +0100 | [diff] [blame^] | 1006 | name = "raze__opener__0_5_0", |
| 1007 | url = "https://crates.io/api/v1/crates/opener/0.5.0/download", |
Serge Bazanski | cbf1fa9 | 2021-07-02 17:28:50 +0200 | [diff] [blame] | 1008 | type = "tar.gz", |
Leopold | 2aa8b18 | 2023-01-14 23:31:43 +0100 | [diff] [blame^] | 1009 | sha256 = "4ea3ebcd72a54701f56345f16785a6d3ac2df7e986d273eb4395c0b01db17952", |
| 1010 | strip_prefix = "opener-0.5.0", |
| 1011 | build_file = Label("//third_party/rust/cargo/remote:BUILD.opener-0.5.0.bazel"), |
Serge Bazanski | cbf1fa9 | 2021-07-02 17:28:50 +0200 | [diff] [blame] | 1012 | ) |
| 1013 | |
| 1014 | maybe( |
| 1015 | http_archive, |
Leopold | 2aa8b18 | 2023-01-14 23:31:43 +0100 | [diff] [blame^] | 1016 | name = "raze__os_str_bytes__6_4_1", |
| 1017 | url = "https://crates.io/api/v1/crates/os_str_bytes/6.4.1/download", |
Serge Bazanski | cbf1fa9 | 2021-07-02 17:28:50 +0200 | [diff] [blame] | 1018 | type = "tar.gz", |
Leopold | 2aa8b18 | 2023-01-14 23:31:43 +0100 | [diff] [blame^] | 1019 | sha256 = "9b7820b9daea5457c9f21c69448905d723fbd21136ccf521748f23fd49e723ee", |
| 1020 | strip_prefix = "os_str_bytes-6.4.1", |
| 1021 | build_file = Label("//third_party/rust/cargo/remote:BUILD.os_str_bytes-6.4.1.bazel"), |
Serge Bazanski | cbf1fa9 | 2021-07-02 17:28:50 +0200 | [diff] [blame] | 1022 | ) |
| 1023 | |
| 1024 | maybe( |
| 1025 | http_archive, |
Leopold | 2aa8b18 | 2023-01-14 23:31:43 +0100 | [diff] [blame^] | 1026 | name = "raze__parking_lot__0_12_1", |
| 1027 | url = "https://crates.io/api/v1/crates/parking_lot/0.12.1/download", |
Serge Bazanski | cbf1fa9 | 2021-07-02 17:28:50 +0200 | [diff] [blame] | 1028 | type = "tar.gz", |
Leopold | 2aa8b18 | 2023-01-14 23:31:43 +0100 | [diff] [blame^] | 1029 | sha256 = "3742b2c103b9f06bc9fff0a37ff4912935851bee6d36f3c02bcc755bcfec228f", |
| 1030 | strip_prefix = "parking_lot-0.12.1", |
| 1031 | build_file = Label("//third_party/rust/cargo/remote:BUILD.parking_lot-0.12.1.bazel"), |
Serge Bazanski | cbf1fa9 | 2021-07-02 17:28:50 +0200 | [diff] [blame] | 1032 | ) |
| 1033 | |
| 1034 | maybe( |
| 1035 | http_archive, |
Leopold | 2aa8b18 | 2023-01-14 23:31:43 +0100 | [diff] [blame^] | 1036 | name = "raze__parking_lot_core__0_9_6", |
| 1037 | url = "https://crates.io/api/v1/crates/parking_lot_core/0.9.6/download", |
Serge Bazanski | cbf1fa9 | 2021-07-02 17:28:50 +0200 | [diff] [blame] | 1038 | type = "tar.gz", |
Leopold | 2aa8b18 | 2023-01-14 23:31:43 +0100 | [diff] [blame^] | 1039 | sha256 = "ba1ef8814b5c993410bb3adfad7a5ed269563e4a2f90c41f5d85be7fb47133bf", |
| 1040 | strip_prefix = "parking_lot_core-0.9.6", |
| 1041 | build_file = Label("//third_party/rust/cargo/remote:BUILD.parking_lot_core-0.9.6.bazel"), |
Serge Bazanski | cbf1fa9 | 2021-07-02 17:28:50 +0200 | [diff] [blame] | 1042 | ) |
| 1043 | |
| 1044 | maybe( |
| 1045 | http_archive, |
Leopold | 2aa8b18 | 2023-01-14 23:31:43 +0100 | [diff] [blame^] | 1046 | name = "raze__percent_encoding__2_2_0", |
| 1047 | url = "https://crates.io/api/v1/crates/percent-encoding/2.2.0/download", |
Serge Bazanski | cbf1fa9 | 2021-07-02 17:28:50 +0200 | [diff] [blame] | 1048 | type = "tar.gz", |
Leopold | 2aa8b18 | 2023-01-14 23:31:43 +0100 | [diff] [blame^] | 1049 | sha256 = "478c572c3d73181ff3c2539045f6eb99e5491218eae919370993b890cdbdd98e", |
| 1050 | strip_prefix = "percent-encoding-2.2.0", |
| 1051 | build_file = Label("//third_party/rust/cargo/remote:BUILD.percent-encoding-2.2.0.bazel"), |
Serge Bazanski | cbf1fa9 | 2021-07-02 17:28:50 +0200 | [diff] [blame] | 1052 | ) |
| 1053 | |
| 1054 | maybe( |
| 1055 | http_archive, |
Leopold | 2aa8b18 | 2023-01-14 23:31:43 +0100 | [diff] [blame^] | 1056 | name = "raze__pest__2_5_3", |
| 1057 | url = "https://crates.io/api/v1/crates/pest/2.5.3/download", |
Serge Bazanski | cbf1fa9 | 2021-07-02 17:28:50 +0200 | [diff] [blame] | 1058 | type = "tar.gz", |
Leopold | 2aa8b18 | 2023-01-14 23:31:43 +0100 | [diff] [blame^] | 1059 | sha256 = "4257b4a04d91f7e9e6290be5d3da4804dd5784fafde3a497d73eb2b4a158c30a", |
| 1060 | strip_prefix = "pest-2.5.3", |
| 1061 | build_file = Label("//third_party/rust/cargo/remote:BUILD.pest-2.5.3.bazel"), |
Serge Bazanski | cbf1fa9 | 2021-07-02 17:28:50 +0200 | [diff] [blame] | 1062 | ) |
| 1063 | |
| 1064 | maybe( |
| 1065 | http_archive, |
Leopold | 2aa8b18 | 2023-01-14 23:31:43 +0100 | [diff] [blame^] | 1066 | name = "raze__pest_derive__2_5_3", |
| 1067 | url = "https://crates.io/api/v1/crates/pest_derive/2.5.3/download", |
Serge Bazanski | cbf1fa9 | 2021-07-02 17:28:50 +0200 | [diff] [blame] | 1068 | type = "tar.gz", |
Leopold | 2aa8b18 | 2023-01-14 23:31:43 +0100 | [diff] [blame^] | 1069 | sha256 = "241cda393b0cdd65e62e07e12454f1f25d57017dcc514b1514cd3c4645e3a0a6", |
| 1070 | strip_prefix = "pest_derive-2.5.3", |
| 1071 | build_file = Label("//third_party/rust/cargo/remote:BUILD.pest_derive-2.5.3.bazel"), |
Serge Bazanski | cbf1fa9 | 2021-07-02 17:28:50 +0200 | [diff] [blame] | 1072 | ) |
| 1073 | |
| 1074 | maybe( |
| 1075 | http_archive, |
Leopold | 2aa8b18 | 2023-01-14 23:31:43 +0100 | [diff] [blame^] | 1076 | name = "raze__pest_generator__2_5_3", |
| 1077 | url = "https://crates.io/api/v1/crates/pest_generator/2.5.3/download", |
Serge Bazanski | cbf1fa9 | 2021-07-02 17:28:50 +0200 | [diff] [blame] | 1078 | type = "tar.gz", |
Leopold | 2aa8b18 | 2023-01-14 23:31:43 +0100 | [diff] [blame^] | 1079 | sha256 = "46b53634d8c8196302953c74d5352f33d0c512a9499bd2ce468fc9f4128fa27c", |
| 1080 | strip_prefix = "pest_generator-2.5.3", |
| 1081 | build_file = Label("//third_party/rust/cargo/remote:BUILD.pest_generator-2.5.3.bazel"), |
Serge Bazanski | cbf1fa9 | 2021-07-02 17:28:50 +0200 | [diff] [blame] | 1082 | ) |
| 1083 | |
| 1084 | maybe( |
| 1085 | http_archive, |
Leopold | 2aa8b18 | 2023-01-14 23:31:43 +0100 | [diff] [blame^] | 1086 | name = "raze__pest_meta__2_5_3", |
| 1087 | url = "https://crates.io/api/v1/crates/pest_meta/2.5.3/download", |
Serge Bazanski | cbf1fa9 | 2021-07-02 17:28:50 +0200 | [diff] [blame] | 1088 | type = "tar.gz", |
Leopold | 2aa8b18 | 2023-01-14 23:31:43 +0100 | [diff] [blame^] | 1089 | sha256 = "0ef4f1332a8d4678b41966bb4cc1d0676880e84183a1ecc3f4b69f03e99c7a51", |
| 1090 | strip_prefix = "pest_meta-2.5.3", |
| 1091 | build_file = Label("//third_party/rust/cargo/remote:BUILD.pest_meta-2.5.3.bazel"), |
Serge Bazanski | cbf1fa9 | 2021-07-02 17:28:50 +0200 | [diff] [blame] | 1092 | ) |
| 1093 | |
| 1094 | maybe( |
| 1095 | http_archive, |
Leopold | 2aa8b18 | 2023-01-14 23:31:43 +0100 | [diff] [blame^] | 1096 | name = "raze__phf__0_10_1", |
| 1097 | url = "https://crates.io/api/v1/crates/phf/0.10.1/download", |
Serge Bazanski | cbf1fa9 | 2021-07-02 17:28:50 +0200 | [diff] [blame] | 1098 | type = "tar.gz", |
Leopold | 2aa8b18 | 2023-01-14 23:31:43 +0100 | [diff] [blame^] | 1099 | sha256 = "fabbf1ead8a5bcbc20f5f8b939ee3f5b0f6f281b6ad3468b84656b658b455259", |
| 1100 | strip_prefix = "phf-0.10.1", |
| 1101 | build_file = Label("//third_party/rust/cargo/remote:BUILD.phf-0.10.1.bazel"), |
Serge Bazanski | cbf1fa9 | 2021-07-02 17:28:50 +0200 | [diff] [blame] | 1102 | ) |
| 1103 | |
| 1104 | maybe( |
| 1105 | http_archive, |
Leopold | 2aa8b18 | 2023-01-14 23:31:43 +0100 | [diff] [blame^] | 1106 | name = "raze__phf_codegen__0_10_0", |
| 1107 | url = "https://crates.io/api/v1/crates/phf_codegen/0.10.0/download", |
Serge Bazanski | cbf1fa9 | 2021-07-02 17:28:50 +0200 | [diff] [blame] | 1108 | type = "tar.gz", |
Leopold | 2aa8b18 | 2023-01-14 23:31:43 +0100 | [diff] [blame^] | 1109 | sha256 = "4fb1c3a8bc4dd4e5cfce29b44ffc14bedd2ee294559a294e2a4d4c9e9a6a13cd", |
| 1110 | strip_prefix = "phf_codegen-0.10.0", |
| 1111 | build_file = Label("//third_party/rust/cargo/remote:BUILD.phf_codegen-0.10.0.bazel"), |
Serge Bazanski | cbf1fa9 | 2021-07-02 17:28:50 +0200 | [diff] [blame] | 1112 | ) |
| 1113 | |
| 1114 | maybe( |
| 1115 | http_archive, |
Leopold | 2aa8b18 | 2023-01-14 23:31:43 +0100 | [diff] [blame^] | 1116 | name = "raze__phf_generator__0_10_0", |
| 1117 | url = "https://crates.io/api/v1/crates/phf_generator/0.10.0/download", |
Serge Bazanski | cbf1fa9 | 2021-07-02 17:28:50 +0200 | [diff] [blame] | 1118 | type = "tar.gz", |
Leopold | 2aa8b18 | 2023-01-14 23:31:43 +0100 | [diff] [blame^] | 1119 | sha256 = "5d5285893bb5eb82e6aaf5d59ee909a06a16737a8970984dd7746ba9283498d6", |
| 1120 | strip_prefix = "phf_generator-0.10.0", |
| 1121 | build_file = Label("//third_party/rust/cargo/remote:BUILD.phf_generator-0.10.0.bazel"), |
Serge Bazanski | cbf1fa9 | 2021-07-02 17:28:50 +0200 | [diff] [blame] | 1122 | ) |
| 1123 | |
| 1124 | maybe( |
| 1125 | http_archive, |
Leopold | 2aa8b18 | 2023-01-14 23:31:43 +0100 | [diff] [blame^] | 1126 | name = "raze__phf_shared__0_10_0", |
| 1127 | url = "https://crates.io/api/v1/crates/phf_shared/0.10.0/download", |
Serge Bazanski | cbf1fa9 | 2021-07-02 17:28:50 +0200 | [diff] [blame] | 1128 | type = "tar.gz", |
Leopold | 2aa8b18 | 2023-01-14 23:31:43 +0100 | [diff] [blame^] | 1129 | sha256 = "b6796ad771acdc0123d2a88dc428b5e38ef24456743ddb1744ed628f9815c096", |
| 1130 | strip_prefix = "phf_shared-0.10.0", |
| 1131 | build_file = Label("//third_party/rust/cargo/remote:BUILD.phf_shared-0.10.0.bazel"), |
Serge Bazanski | cbf1fa9 | 2021-07-02 17:28:50 +0200 | [diff] [blame] | 1132 | ) |
| 1133 | |
| 1134 | maybe( |
| 1135 | http_archive, |
Leopold | 2aa8b18 | 2023-01-14 23:31:43 +0100 | [diff] [blame^] | 1136 | name = "raze__pin_project__1_0_12", |
| 1137 | url = "https://crates.io/api/v1/crates/pin-project/1.0.12/download", |
Serge Bazanski | cbf1fa9 | 2021-07-02 17:28:50 +0200 | [diff] [blame] | 1138 | type = "tar.gz", |
Leopold | 2aa8b18 | 2023-01-14 23:31:43 +0100 | [diff] [blame^] | 1139 | sha256 = "ad29a609b6bcd67fee905812e544992d216af9d755757c05ed2d0e15a74c6ecc", |
| 1140 | strip_prefix = "pin-project-1.0.12", |
| 1141 | build_file = Label("//third_party/rust/cargo/remote:BUILD.pin-project-1.0.12.bazel"), |
Serge Bazanski | cbf1fa9 | 2021-07-02 17:28:50 +0200 | [diff] [blame] | 1142 | ) |
| 1143 | |
| 1144 | maybe( |
| 1145 | http_archive, |
Leopold | 2aa8b18 | 2023-01-14 23:31:43 +0100 | [diff] [blame^] | 1146 | name = "raze__pin_project_internal__1_0_12", |
| 1147 | url = "https://crates.io/api/v1/crates/pin-project-internal/1.0.12/download", |
Serge Bazanski | cbf1fa9 | 2021-07-02 17:28:50 +0200 | [diff] [blame] | 1148 | type = "tar.gz", |
Leopold | 2aa8b18 | 2023-01-14 23:31:43 +0100 | [diff] [blame^] | 1149 | sha256 = "069bdb1e05adc7a8990dce9cc75370895fbe4e3d58b9b73bf1aee56359344a55", |
| 1150 | strip_prefix = "pin-project-internal-1.0.12", |
| 1151 | build_file = Label("//third_party/rust/cargo/remote:BUILD.pin-project-internal-1.0.12.bazel"), |
Serge Bazanski | cbf1fa9 | 2021-07-02 17:28:50 +0200 | [diff] [blame] | 1152 | ) |
| 1153 | |
| 1154 | maybe( |
| 1155 | http_archive, |
Leopold | 2aa8b18 | 2023-01-14 23:31:43 +0100 | [diff] [blame^] | 1156 | name = "raze__pin_project_lite__0_2_9", |
| 1157 | url = "https://crates.io/api/v1/crates/pin-project-lite/0.2.9/download", |
Serge Bazanski | cbf1fa9 | 2021-07-02 17:28:50 +0200 | [diff] [blame] | 1158 | type = "tar.gz", |
Leopold | 2aa8b18 | 2023-01-14 23:31:43 +0100 | [diff] [blame^] | 1159 | sha256 = "e0a7ae3ac2f1173085d398531c705756c94a4c56843785df85a60c1a0afac116", |
| 1160 | strip_prefix = "pin-project-lite-0.2.9", |
| 1161 | build_file = Label("//third_party/rust/cargo/remote:BUILD.pin-project-lite-0.2.9.bazel"), |
Serge Bazanski | cbf1fa9 | 2021-07-02 17:28:50 +0200 | [diff] [blame] | 1162 | ) |
| 1163 | |
| 1164 | maybe( |
| 1165 | http_archive, |
| 1166 | name = "raze__pin_utils__0_1_0", |
| 1167 | url = "https://crates.io/api/v1/crates/pin-utils/0.1.0/download", |
| 1168 | type = "tar.gz", |
| 1169 | sha256 = "8b870d8c151b6f2fb93e84a13146138f05d02ed11c7e7c54f8826aaaf7c9f184", |
| 1170 | strip_prefix = "pin-utils-0.1.0", |
| 1171 | build_file = Label("//third_party/rust/cargo/remote:BUILD.pin-utils-0.1.0.bazel"), |
| 1172 | ) |
| 1173 | |
| 1174 | maybe( |
| 1175 | http_archive, |
Leopold | 2aa8b18 | 2023-01-14 23:31:43 +0100 | [diff] [blame^] | 1176 | name = "raze__ppv_lite86__0_2_17", |
| 1177 | url = "https://crates.io/api/v1/crates/ppv-lite86/0.2.17/download", |
Serge Bazanski | cbf1fa9 | 2021-07-02 17:28:50 +0200 | [diff] [blame] | 1178 | type = "tar.gz", |
Leopold | 2aa8b18 | 2023-01-14 23:31:43 +0100 | [diff] [blame^] | 1179 | sha256 = "5b40af805b3121feab8a3c29f04d8ad262fa8e0561883e7653e024ae4479e6de", |
| 1180 | strip_prefix = "ppv-lite86-0.2.17", |
| 1181 | build_file = Label("//third_party/rust/cargo/remote:BUILD.ppv-lite86-0.2.17.bazel"), |
Serge Bazanski | cbf1fa9 | 2021-07-02 17:28:50 +0200 | [diff] [blame] | 1182 | ) |
| 1183 | |
| 1184 | maybe( |
| 1185 | http_archive, |
| 1186 | name = "raze__precomputed_hash__0_1_1", |
| 1187 | url = "https://crates.io/api/v1/crates/precomputed-hash/0.1.1/download", |
| 1188 | type = "tar.gz", |
| 1189 | sha256 = "925383efa346730478fb4838dbe9137d2a47675ad789c546d150a6e1dd4ab31c", |
| 1190 | strip_prefix = "precomputed-hash-0.1.1", |
| 1191 | build_file = Label("//third_party/rust/cargo/remote:BUILD.precomputed-hash-0.1.1.bazel"), |
| 1192 | ) |
| 1193 | |
| 1194 | maybe( |
| 1195 | http_archive, |
Leopold | 2aa8b18 | 2023-01-14 23:31:43 +0100 | [diff] [blame^] | 1196 | name = "raze__proc_macro2__1_0_49", |
| 1197 | url = "https://crates.io/api/v1/crates/proc-macro2/1.0.49/download", |
Serge Bazanski | cbf1fa9 | 2021-07-02 17:28:50 +0200 | [diff] [blame] | 1198 | type = "tar.gz", |
Leopold | 2aa8b18 | 2023-01-14 23:31:43 +0100 | [diff] [blame^] | 1199 | sha256 = "57a8eca9f9c4ffde41714334dee777596264c7825420f521abc92b5b5deb63a5", |
| 1200 | strip_prefix = "proc-macro2-1.0.49", |
| 1201 | build_file = Label("//third_party/rust/cargo/remote:BUILD.proc-macro2-1.0.49.bazel"), |
Serge Bazanski | cbf1fa9 | 2021-07-02 17:28:50 +0200 | [diff] [blame] | 1202 | ) |
| 1203 | |
| 1204 | maybe( |
| 1205 | http_archive, |
Leopold | 2aa8b18 | 2023-01-14 23:31:43 +0100 | [diff] [blame^] | 1206 | name = "raze__pulldown_cmark__0_9_2", |
| 1207 | url = "https://crates.io/api/v1/crates/pulldown-cmark/0.9.2/download", |
Serge Bazanski | cbf1fa9 | 2021-07-02 17:28:50 +0200 | [diff] [blame] | 1208 | type = "tar.gz", |
Leopold | 2aa8b18 | 2023-01-14 23:31:43 +0100 | [diff] [blame^] | 1209 | sha256 = "2d9cc634bc78768157b5cbfe988ffcd1dcba95cd2b2f03a88316c08c6d00ed63", |
| 1210 | strip_prefix = "pulldown-cmark-0.9.2", |
| 1211 | build_file = Label("//third_party/rust/cargo/remote:BUILD.pulldown-cmark-0.9.2.bazel"), |
Serge Bazanski | cbf1fa9 | 2021-07-02 17:28:50 +0200 | [diff] [blame] | 1212 | ) |
| 1213 | |
| 1214 | maybe( |
| 1215 | http_archive, |
Leopold | 2aa8b18 | 2023-01-14 23:31:43 +0100 | [diff] [blame^] | 1216 | name = "raze__quote__1_0_23", |
| 1217 | url = "https://crates.io/api/v1/crates/quote/1.0.23/download", |
Serge Bazanski | cbf1fa9 | 2021-07-02 17:28:50 +0200 | [diff] [blame] | 1218 | type = "tar.gz", |
Leopold | 2aa8b18 | 2023-01-14 23:31:43 +0100 | [diff] [blame^] | 1219 | sha256 = "8856d8364d252a14d474036ea1358d63c9e6965c8e5c1885c18f73d70bff9c7b", |
| 1220 | strip_prefix = "quote-1.0.23", |
| 1221 | build_file = Label("//third_party/rust/cargo/remote:BUILD.quote-1.0.23.bazel"), |
Serge Bazanski | cbf1fa9 | 2021-07-02 17:28:50 +0200 | [diff] [blame] | 1222 | ) |
| 1223 | |
| 1224 | maybe( |
| 1225 | http_archive, |
Leopold | 2aa8b18 | 2023-01-14 23:31:43 +0100 | [diff] [blame^] | 1226 | name = "raze__rand__0_8_5", |
| 1227 | url = "https://crates.io/api/v1/crates/rand/0.8.5/download", |
Serge Bazanski | cbf1fa9 | 2021-07-02 17:28:50 +0200 | [diff] [blame] | 1228 | type = "tar.gz", |
Leopold | 2aa8b18 | 2023-01-14 23:31:43 +0100 | [diff] [blame^] | 1229 | sha256 = "34af8d1a0e25924bc5b7c43c079c942339d8f0a8b57c39049bef581b46327404", |
| 1230 | strip_prefix = "rand-0.8.5", |
| 1231 | build_file = Label("//third_party/rust/cargo/remote:BUILD.rand-0.8.5.bazel"), |
Serge Bazanski | cbf1fa9 | 2021-07-02 17:28:50 +0200 | [diff] [blame] | 1232 | ) |
| 1233 | |
| 1234 | maybe( |
| 1235 | http_archive, |
| 1236 | name = "raze__rand_chacha__0_3_1", |
| 1237 | url = "https://crates.io/api/v1/crates/rand_chacha/0.3.1/download", |
| 1238 | type = "tar.gz", |
| 1239 | sha256 = "e6c10a63a0fa32252be49d21e7709d4d4baf8d231c2dbce1eaa8141b9b127d88", |
| 1240 | strip_prefix = "rand_chacha-0.3.1", |
| 1241 | build_file = Label("//third_party/rust/cargo/remote:BUILD.rand_chacha-0.3.1.bazel"), |
| 1242 | ) |
| 1243 | |
| 1244 | maybe( |
| 1245 | http_archive, |
Leopold | 2aa8b18 | 2023-01-14 23:31:43 +0100 | [diff] [blame^] | 1246 | name = "raze__rand_core__0_6_4", |
| 1247 | url = "https://crates.io/api/v1/crates/rand_core/0.6.4/download", |
Serge Bazanski | cbf1fa9 | 2021-07-02 17:28:50 +0200 | [diff] [blame] | 1248 | type = "tar.gz", |
Leopold | 2aa8b18 | 2023-01-14 23:31:43 +0100 | [diff] [blame^] | 1249 | sha256 = "ec0be4795e2f6a28069bec0b5ff3e2ac9bafc99e6a9a7dc3547996c5c816922c", |
| 1250 | strip_prefix = "rand_core-0.6.4", |
| 1251 | build_file = Label("//third_party/rust/cargo/remote:BUILD.rand_core-0.6.4.bazel"), |
Serge Bazanski | cbf1fa9 | 2021-07-02 17:28:50 +0200 | [diff] [blame] | 1252 | ) |
| 1253 | |
| 1254 | maybe( |
| 1255 | http_archive, |
Leopold | 2aa8b18 | 2023-01-14 23:31:43 +0100 | [diff] [blame^] | 1256 | name = "raze__redox_syscall__0_2_16", |
| 1257 | url = "https://crates.io/api/v1/crates/redox_syscall/0.2.16/download", |
Serge Bazanski | cbf1fa9 | 2021-07-02 17:28:50 +0200 | [diff] [blame] | 1258 | type = "tar.gz", |
Leopold | 2aa8b18 | 2023-01-14 23:31:43 +0100 | [diff] [blame^] | 1259 | sha256 = "fb5a58c1855b4b6819d59012155603f0b22ad30cad752600aadfcb695265519a", |
| 1260 | strip_prefix = "redox_syscall-0.2.16", |
| 1261 | build_file = Label("//third_party/rust/cargo/remote:BUILD.redox_syscall-0.2.16.bazel"), |
Serge Bazanski | cbf1fa9 | 2021-07-02 17:28:50 +0200 | [diff] [blame] | 1262 | ) |
| 1263 | |
| 1264 | maybe( |
| 1265 | http_archive, |
Leopold | 2aa8b18 | 2023-01-14 23:31:43 +0100 | [diff] [blame^] | 1266 | name = "raze__regex__1_7_1", |
| 1267 | url = "https://crates.io/api/v1/crates/regex/1.7.1/download", |
Serge Bazanski | cbf1fa9 | 2021-07-02 17:28:50 +0200 | [diff] [blame] | 1268 | type = "tar.gz", |
Leopold | 2aa8b18 | 2023-01-14 23:31:43 +0100 | [diff] [blame^] | 1269 | sha256 = "48aaa5748ba571fb95cd2c85c09f629215d3a6ece942baa100950af03a34f733", |
| 1270 | strip_prefix = "regex-1.7.1", |
| 1271 | build_file = Label("//third_party/rust/cargo/remote:BUILD.regex-1.7.1.bazel"), |
Serge Bazanski | cbf1fa9 | 2021-07-02 17:28:50 +0200 | [diff] [blame] | 1272 | ) |
| 1273 | |
| 1274 | maybe( |
| 1275 | http_archive, |
Leopold | 2aa8b18 | 2023-01-14 23:31:43 +0100 | [diff] [blame^] | 1276 | name = "raze__regex_automata__0_1_10", |
| 1277 | url = "https://crates.io/api/v1/crates/regex-automata/0.1.10/download", |
Serge Bazanski | cbf1fa9 | 2021-07-02 17:28:50 +0200 | [diff] [blame] | 1278 | type = "tar.gz", |
Leopold | 2aa8b18 | 2023-01-14 23:31:43 +0100 | [diff] [blame^] | 1279 | sha256 = "6c230d73fb8d8c1b9c0b3135c5142a8acee3a0558fb8db5cf1cb65f8d7862132", |
| 1280 | strip_prefix = "regex-automata-0.1.10", |
| 1281 | build_file = Label("//third_party/rust/cargo/remote:BUILD.regex-automata-0.1.10.bazel"), |
Serge Bazanski | cbf1fa9 | 2021-07-02 17:28:50 +0200 | [diff] [blame] | 1282 | ) |
| 1283 | |
| 1284 | maybe( |
| 1285 | http_archive, |
Leopold | 2aa8b18 | 2023-01-14 23:31:43 +0100 | [diff] [blame^] | 1286 | name = "raze__regex_syntax__0_6_28", |
| 1287 | url = "https://crates.io/api/v1/crates/regex-syntax/0.6.28/download", |
Serge Bazanski | cbf1fa9 | 2021-07-02 17:28:50 +0200 | [diff] [blame] | 1288 | type = "tar.gz", |
Leopold | 2aa8b18 | 2023-01-14 23:31:43 +0100 | [diff] [blame^] | 1289 | sha256 = "456c603be3e8d448b072f410900c09faf164fbce2d480456f50eea6e25f9c848", |
| 1290 | strip_prefix = "regex-syntax-0.6.28", |
| 1291 | build_file = Label("//third_party/rust/cargo/remote:BUILD.regex-syntax-0.6.28.bazel"), |
Serge Bazanski | cbf1fa9 | 2021-07-02 17:28:50 +0200 | [diff] [blame] | 1292 | ) |
| 1293 | |
| 1294 | maybe( |
| 1295 | http_archive, |
| 1296 | name = "raze__remove_dir_all__0_5_3", |
| 1297 | url = "https://crates.io/api/v1/crates/remove_dir_all/0.5.3/download", |
| 1298 | type = "tar.gz", |
| 1299 | sha256 = "3acd125665422973a33ac9d3dd2df85edad0f4ae9b00dafb1a05e43a9f5ef8e7", |
| 1300 | strip_prefix = "remove_dir_all-0.5.3", |
| 1301 | build_file = Label("//third_party/rust/cargo/remote:BUILD.remove_dir_all-0.5.3.bazel"), |
| 1302 | ) |
| 1303 | |
| 1304 | maybe( |
| 1305 | http_archive, |
Leopold | 2aa8b18 | 2023-01-14 23:31:43 +0100 | [diff] [blame^] | 1306 | name = "raze__rustls_pemfile__0_2_1", |
| 1307 | url = "https://crates.io/api/v1/crates/rustls-pemfile/0.2.1/download", |
Serge Bazanski | cbf1fa9 | 2021-07-02 17:28:50 +0200 | [diff] [blame] | 1308 | type = "tar.gz", |
Leopold | 2aa8b18 | 2023-01-14 23:31:43 +0100 | [diff] [blame^] | 1309 | sha256 = "5eebeaeb360c87bfb72e84abdb3447159c0eaececf1bef2aecd65a8be949d1c9", |
| 1310 | strip_prefix = "rustls-pemfile-0.2.1", |
| 1311 | build_file = Label("//third_party/rust/cargo/remote:BUILD.rustls-pemfile-0.2.1.bazel"), |
| 1312 | ) |
| 1313 | |
| 1314 | maybe( |
| 1315 | http_archive, |
| 1316 | name = "raze__ryu__1_0_12", |
| 1317 | url = "https://crates.io/api/v1/crates/ryu/1.0.12/download", |
| 1318 | type = "tar.gz", |
| 1319 | sha256 = "7b4b9743ed687d4b4bcedf9ff5eaa7398495ae14e61cba0a295704edbc7decde", |
| 1320 | strip_prefix = "ryu-1.0.12", |
| 1321 | build_file = Label("//third_party/rust/cargo/remote:BUILD.ryu-1.0.12.bazel"), |
Serge Bazanski | cbf1fa9 | 2021-07-02 17:28:50 +0200 | [diff] [blame] | 1322 | ) |
| 1323 | |
| 1324 | maybe( |
| 1325 | http_archive, |
| 1326 | name = "raze__same_file__1_0_6", |
| 1327 | url = "https://crates.io/api/v1/crates/same-file/1.0.6/download", |
| 1328 | type = "tar.gz", |
| 1329 | sha256 = "93fc1dc3aaa9bfed95e02e6eadabb4baf7e3078b0bd1b4d7b6b0b68378900502", |
| 1330 | strip_prefix = "same-file-1.0.6", |
| 1331 | build_file = Label("//third_party/rust/cargo/remote:BUILD.same-file-1.0.6.bazel"), |
| 1332 | ) |
| 1333 | |
| 1334 | maybe( |
| 1335 | http_archive, |
Leopold | 2aa8b18 | 2023-01-14 23:31:43 +0100 | [diff] [blame^] | 1336 | name = "raze__scoped_tls__1_0_1", |
| 1337 | url = "https://crates.io/api/v1/crates/scoped-tls/1.0.1/download", |
Serge Bazanski | cbf1fa9 | 2021-07-02 17:28:50 +0200 | [diff] [blame] | 1338 | type = "tar.gz", |
Leopold | 2aa8b18 | 2023-01-14 23:31:43 +0100 | [diff] [blame^] | 1339 | sha256 = "e1cf6437eb19a8f4a6cc0f7dca544973b0b78843adbfeb3683d1a94a0024a294", |
| 1340 | strip_prefix = "scoped-tls-1.0.1", |
| 1341 | build_file = Label("//third_party/rust/cargo/remote:BUILD.scoped-tls-1.0.1.bazel"), |
Serge Bazanski | cbf1fa9 | 2021-07-02 17:28:50 +0200 | [diff] [blame] | 1342 | ) |
| 1343 | |
| 1344 | maybe( |
| 1345 | http_archive, |
Leopold | 2aa8b18 | 2023-01-14 23:31:43 +0100 | [diff] [blame^] | 1346 | name = "raze__scopeguard__1_1_0", |
| 1347 | url = "https://crates.io/api/v1/crates/scopeguard/1.1.0/download", |
Serge Bazanski | cbf1fa9 | 2021-07-02 17:28:50 +0200 | [diff] [blame] | 1348 | type = "tar.gz", |
Leopold | 2aa8b18 | 2023-01-14 23:31:43 +0100 | [diff] [blame^] | 1349 | sha256 = "d29ab0c6d3fc0ee92fe66e2d99f700eab17a8d57d1c1d3b748380fb20baa78cd", |
| 1350 | strip_prefix = "scopeguard-1.1.0", |
| 1351 | build_file = Label("//third_party/rust/cargo/remote:BUILD.scopeguard-1.1.0.bazel"), |
Serge Bazanski | cbf1fa9 | 2021-07-02 17:28:50 +0200 | [diff] [blame] | 1352 | ) |
| 1353 | |
| 1354 | maybe( |
| 1355 | http_archive, |
Leopold | 2aa8b18 | 2023-01-14 23:31:43 +0100 | [diff] [blame^] | 1356 | name = "raze__scratch__1_0_3", |
| 1357 | url = "https://crates.io/api/v1/crates/scratch/1.0.3/download", |
Serge Bazanski | cbf1fa9 | 2021-07-02 17:28:50 +0200 | [diff] [blame] | 1358 | type = "tar.gz", |
Leopold | 2aa8b18 | 2023-01-14 23:31:43 +0100 | [diff] [blame^] | 1359 | sha256 = "ddccb15bcce173023b3fedd9436f882a0739b8dfb45e4f6b6002bee5929f61b2", |
| 1360 | strip_prefix = "scratch-1.0.3", |
| 1361 | build_file = Label("//third_party/rust/cargo/remote:BUILD.scratch-1.0.3.bazel"), |
Serge Bazanski | cbf1fa9 | 2021-07-02 17:28:50 +0200 | [diff] [blame] | 1362 | ) |
| 1363 | |
| 1364 | maybe( |
| 1365 | http_archive, |
Leopold | 2aa8b18 | 2023-01-14 23:31:43 +0100 | [diff] [blame^] | 1366 | name = "raze__serde__1_0_152", |
| 1367 | url = "https://crates.io/api/v1/crates/serde/1.0.152/download", |
Serge Bazanski | cbf1fa9 | 2021-07-02 17:28:50 +0200 | [diff] [blame] | 1368 | type = "tar.gz", |
Leopold | 2aa8b18 | 2023-01-14 23:31:43 +0100 | [diff] [blame^] | 1369 | sha256 = "bb7d1f0d3021d347a83e556fc4683dea2ea09d87bccdf88ff5c12545d89d5efb", |
| 1370 | strip_prefix = "serde-1.0.152", |
| 1371 | build_file = Label("//third_party/rust/cargo/remote:BUILD.serde-1.0.152.bazel"), |
Serge Bazanski | cbf1fa9 | 2021-07-02 17:28:50 +0200 | [diff] [blame] | 1372 | ) |
| 1373 | |
| 1374 | maybe( |
| 1375 | http_archive, |
Leopold | 2aa8b18 | 2023-01-14 23:31:43 +0100 | [diff] [blame^] | 1376 | name = "raze__serde_derive__1_0_152", |
| 1377 | url = "https://crates.io/api/v1/crates/serde_derive/1.0.152/download", |
Serge Bazanski | cbf1fa9 | 2021-07-02 17:28:50 +0200 | [diff] [blame] | 1378 | type = "tar.gz", |
Leopold | 2aa8b18 | 2023-01-14 23:31:43 +0100 | [diff] [blame^] | 1379 | sha256 = "af487d118eecd09402d70a5d72551860e788df87b464af30e5ea6a38c75c541e", |
| 1380 | strip_prefix = "serde_derive-1.0.152", |
| 1381 | build_file = Label("//third_party/rust/cargo/remote:BUILD.serde_derive-1.0.152.bazel"), |
Serge Bazanski | cbf1fa9 | 2021-07-02 17:28:50 +0200 | [diff] [blame] | 1382 | ) |
| 1383 | |
| 1384 | maybe( |
| 1385 | http_archive, |
Leopold | 2aa8b18 | 2023-01-14 23:31:43 +0100 | [diff] [blame^] | 1386 | name = "raze__serde_json__1_0_91", |
| 1387 | url = "https://crates.io/api/v1/crates/serde_json/1.0.91/download", |
Serge Bazanski | cbf1fa9 | 2021-07-02 17:28:50 +0200 | [diff] [blame] | 1388 | type = "tar.gz", |
Leopold | 2aa8b18 | 2023-01-14 23:31:43 +0100 | [diff] [blame^] | 1389 | sha256 = "877c235533714907a8c2464236f5c4b2a17262ef1bd71f38f35ea592c8da6883", |
| 1390 | strip_prefix = "serde_json-1.0.91", |
| 1391 | build_file = Label("//third_party/rust/cargo/remote:BUILD.serde_json-1.0.91.bazel"), |
Serge Bazanski | cbf1fa9 | 2021-07-02 17:28:50 +0200 | [diff] [blame] | 1392 | ) |
| 1393 | |
| 1394 | maybe( |
| 1395 | http_archive, |
Leopold | 2aa8b18 | 2023-01-14 23:31:43 +0100 | [diff] [blame^] | 1396 | name = "raze__serde_urlencoded__0_7_1", |
| 1397 | url = "https://crates.io/api/v1/crates/serde_urlencoded/0.7.1/download", |
Serge Bazanski | cbf1fa9 | 2021-07-02 17:28:50 +0200 | [diff] [blame] | 1398 | type = "tar.gz", |
Leopold | 2aa8b18 | 2023-01-14 23:31:43 +0100 | [diff] [blame^] | 1399 | sha256 = "d3491c14715ca2294c4d6a88f15e84739788c1d030eed8c110436aafdaa2f3fd", |
| 1400 | strip_prefix = "serde_urlencoded-0.7.1", |
| 1401 | build_file = Label("//third_party/rust/cargo/remote:BUILD.serde_urlencoded-0.7.1.bazel"), |
Serge Bazanski | cbf1fa9 | 2021-07-02 17:28:50 +0200 | [diff] [blame] | 1402 | ) |
| 1403 | |
| 1404 | maybe( |
| 1405 | http_archive, |
Leopold | 2aa8b18 | 2023-01-14 23:31:43 +0100 | [diff] [blame^] | 1406 | name = "raze__sha_1__0_10_1", |
| 1407 | url = "https://crates.io/api/v1/crates/sha-1/0.10.1/download", |
Serge Bazanski | cbf1fa9 | 2021-07-02 17:28:50 +0200 | [diff] [blame] | 1408 | type = "tar.gz", |
Leopold | 2aa8b18 | 2023-01-14 23:31:43 +0100 | [diff] [blame^] | 1409 | sha256 = "f5058ada175748e33390e40e872bd0fe59a19f265d0158daa551c5a88a76009c", |
| 1410 | strip_prefix = "sha-1-0.10.1", |
| 1411 | build_file = Label("//third_party/rust/cargo/remote:BUILD.sha-1-0.10.1.bazel"), |
Serge Bazanski | cbf1fa9 | 2021-07-02 17:28:50 +0200 | [diff] [blame] | 1412 | ) |
| 1413 | |
| 1414 | maybe( |
| 1415 | http_archive, |
Leopold | 2aa8b18 | 2023-01-14 23:31:43 +0100 | [diff] [blame^] | 1416 | name = "raze__sha1__0_10_5", |
| 1417 | url = "https://crates.io/api/v1/crates/sha1/0.10.5/download", |
Serge Bazanski | cbf1fa9 | 2021-07-02 17:28:50 +0200 | [diff] [blame] | 1418 | type = "tar.gz", |
Leopold | 2aa8b18 | 2023-01-14 23:31:43 +0100 | [diff] [blame^] | 1419 | sha256 = "f04293dc80c3993519f2d7f6f511707ee7094fe0c6d3406feb330cdb3540eba3", |
| 1420 | strip_prefix = "sha1-0.10.5", |
| 1421 | build_file = Label("//third_party/rust/cargo/remote:BUILD.sha1-0.10.5.bazel"), |
Serge Bazanski | cbf1fa9 | 2021-07-02 17:28:50 +0200 | [diff] [blame] | 1422 | ) |
| 1423 | |
| 1424 | maybe( |
| 1425 | http_archive, |
Leopold | 2aa8b18 | 2023-01-14 23:31:43 +0100 | [diff] [blame^] | 1426 | name = "raze__sha2__0_10_6", |
| 1427 | url = "https://crates.io/api/v1/crates/sha2/0.10.6/download", |
Serge Bazanski | cbf1fa9 | 2021-07-02 17:28:50 +0200 | [diff] [blame] | 1428 | type = "tar.gz", |
Leopold | 2aa8b18 | 2023-01-14 23:31:43 +0100 | [diff] [blame^] | 1429 | sha256 = "82e6b795fe2e3b1e845bafcb27aa35405c4d47cdfc92af5fc8d3002f76cebdc0", |
| 1430 | strip_prefix = "sha2-0.10.6", |
| 1431 | build_file = Label("//third_party/rust/cargo/remote:BUILD.sha2-0.10.6.bazel"), |
Serge Bazanski | cbf1fa9 | 2021-07-02 17:28:50 +0200 | [diff] [blame] | 1432 | ) |
| 1433 | |
| 1434 | maybe( |
| 1435 | http_archive, |
Leopold | 2aa8b18 | 2023-01-14 23:31:43 +0100 | [diff] [blame^] | 1436 | name = "raze__shlex__1_1_0", |
| 1437 | url = "https://crates.io/api/v1/crates/shlex/1.1.0/download", |
Serge Bazanski | cbf1fa9 | 2021-07-02 17:28:50 +0200 | [diff] [blame] | 1438 | type = "tar.gz", |
Leopold | 2aa8b18 | 2023-01-14 23:31:43 +0100 | [diff] [blame^] | 1439 | sha256 = "43b2853a4d09f215c24cc5489c992ce46052d359b5109343cbafbf26bc62f8a3", |
| 1440 | strip_prefix = "shlex-1.1.0", |
| 1441 | build_file = Label("//third_party/rust/cargo/remote:BUILD.shlex-1.1.0.bazel"), |
Serge Bazanski | cbf1fa9 | 2021-07-02 17:28:50 +0200 | [diff] [blame] | 1442 | ) |
| 1443 | |
| 1444 | maybe( |
| 1445 | http_archive, |
Leopold | 2aa8b18 | 2023-01-14 23:31:43 +0100 | [diff] [blame^] | 1446 | name = "raze__siphasher__0_3_10", |
| 1447 | url = "https://crates.io/api/v1/crates/siphasher/0.3.10/download", |
Serge Bazanski | cbf1fa9 | 2021-07-02 17:28:50 +0200 | [diff] [blame] | 1448 | type = "tar.gz", |
Leopold | 2aa8b18 | 2023-01-14 23:31:43 +0100 | [diff] [blame^] | 1449 | sha256 = "7bd3e3206899af3f8b12af284fafc038cc1dc2b41d1b89dd17297221c5d225de", |
| 1450 | strip_prefix = "siphasher-0.3.10", |
| 1451 | build_file = Label("//third_party/rust/cargo/remote:BUILD.siphasher-0.3.10.bazel"), |
Serge Bazanski | cbf1fa9 | 2021-07-02 17:28:50 +0200 | [diff] [blame] | 1452 | ) |
| 1453 | |
| 1454 | maybe( |
| 1455 | http_archive, |
Leopold | 2aa8b18 | 2023-01-14 23:31:43 +0100 | [diff] [blame^] | 1456 | name = "raze__slab__0_4_7", |
| 1457 | url = "https://crates.io/api/v1/crates/slab/0.4.7/download", |
Serge Bazanski | cbf1fa9 | 2021-07-02 17:28:50 +0200 | [diff] [blame] | 1458 | type = "tar.gz", |
Leopold | 2aa8b18 | 2023-01-14 23:31:43 +0100 | [diff] [blame^] | 1459 | sha256 = "4614a76b2a8be0058caa9dbbaf66d988527d86d003c11a94fbd335d7661edcef", |
| 1460 | strip_prefix = "slab-0.4.7", |
| 1461 | build_file = Label("//third_party/rust/cargo/remote:BUILD.slab-0.4.7.bazel"), |
Serge Bazanski | cbf1fa9 | 2021-07-02 17:28:50 +0200 | [diff] [blame] | 1462 | ) |
| 1463 | |
| 1464 | maybe( |
| 1465 | http_archive, |
Leopold | 2aa8b18 | 2023-01-14 23:31:43 +0100 | [diff] [blame^] | 1466 | name = "raze__smallvec__1_10_0", |
| 1467 | url = "https://crates.io/api/v1/crates/smallvec/1.10.0/download", |
Serge Bazanski | cbf1fa9 | 2021-07-02 17:28:50 +0200 | [diff] [blame] | 1468 | type = "tar.gz", |
Leopold | 2aa8b18 | 2023-01-14 23:31:43 +0100 | [diff] [blame^] | 1469 | sha256 = "a507befe795404456341dfab10cef66ead4c041f62b8b11bbb92bffe5d0953e0", |
| 1470 | strip_prefix = "smallvec-1.10.0", |
| 1471 | build_file = Label("//third_party/rust/cargo/remote:BUILD.smallvec-1.10.0.bazel"), |
Serge Bazanski | cbf1fa9 | 2021-07-02 17:28:50 +0200 | [diff] [blame] | 1472 | ) |
| 1473 | |
| 1474 | maybe( |
| 1475 | http_archive, |
Leopold | 2aa8b18 | 2023-01-14 23:31:43 +0100 | [diff] [blame^] | 1476 | name = "raze__socket2__0_4_7", |
| 1477 | url = "https://crates.io/api/v1/crates/socket2/0.4.7/download", |
Serge Bazanski | cbf1fa9 | 2021-07-02 17:28:50 +0200 | [diff] [blame] | 1478 | type = "tar.gz", |
Leopold | 2aa8b18 | 2023-01-14 23:31:43 +0100 | [diff] [blame^] | 1479 | sha256 = "02e2d2db9033d13a1567121ddd7a095ee144db4e1ca1b1bda3419bc0da294ebd", |
| 1480 | strip_prefix = "socket2-0.4.7", |
| 1481 | build_file = Label("//third_party/rust/cargo/remote:BUILD.socket2-0.4.7.bazel"), |
Serge Bazanski | cbf1fa9 | 2021-07-02 17:28:50 +0200 | [diff] [blame] | 1482 | ) |
| 1483 | |
| 1484 | maybe( |
| 1485 | http_archive, |
Leopold | 2aa8b18 | 2023-01-14 23:31:43 +0100 | [diff] [blame^] | 1486 | name = "raze__string_cache__0_8_4", |
| 1487 | url = "https://crates.io/api/v1/crates/string_cache/0.8.4/download", |
Serge Bazanski | cbf1fa9 | 2021-07-02 17:28:50 +0200 | [diff] [blame] | 1488 | type = "tar.gz", |
Leopold | 2aa8b18 | 2023-01-14 23:31:43 +0100 | [diff] [blame^] | 1489 | sha256 = "213494b7a2b503146286049378ce02b482200519accc31872ee8be91fa820a08", |
| 1490 | strip_prefix = "string_cache-0.8.4", |
| 1491 | build_file = Label("//third_party/rust/cargo/remote:BUILD.string_cache-0.8.4.bazel"), |
Serge Bazanski | cbf1fa9 | 2021-07-02 17:28:50 +0200 | [diff] [blame] | 1492 | ) |
| 1493 | |
| 1494 | maybe( |
| 1495 | http_archive, |
Leopold | 2aa8b18 | 2023-01-14 23:31:43 +0100 | [diff] [blame^] | 1496 | name = "raze__string_cache_codegen__0_5_2", |
| 1497 | url = "https://crates.io/api/v1/crates/string_cache_codegen/0.5.2/download", |
Serge Bazanski | cbf1fa9 | 2021-07-02 17:28:50 +0200 | [diff] [blame] | 1498 | type = "tar.gz", |
Leopold | 2aa8b18 | 2023-01-14 23:31:43 +0100 | [diff] [blame^] | 1499 | sha256 = "6bb30289b722be4ff74a408c3cc27edeaad656e06cb1fe8fa9231fa59c728988", |
| 1500 | strip_prefix = "string_cache_codegen-0.5.2", |
| 1501 | build_file = Label("//third_party/rust/cargo/remote:BUILD.string_cache_codegen-0.5.2.bazel"), |
Serge Bazanski | cbf1fa9 | 2021-07-02 17:28:50 +0200 | [diff] [blame] | 1502 | ) |
| 1503 | |
| 1504 | maybe( |
| 1505 | http_archive, |
Leopold | 2aa8b18 | 2023-01-14 23:31:43 +0100 | [diff] [blame^] | 1506 | name = "raze__strsim__0_10_0", |
| 1507 | url = "https://crates.io/api/v1/crates/strsim/0.10.0/download", |
Serge Bazanski | cbf1fa9 | 2021-07-02 17:28:50 +0200 | [diff] [blame] | 1508 | type = "tar.gz", |
Leopold | 2aa8b18 | 2023-01-14 23:31:43 +0100 | [diff] [blame^] | 1509 | sha256 = "73473c0e59e6d5812c5dfe2a064a6444949f089e20eec9a2e5506596494e4623", |
| 1510 | strip_prefix = "strsim-0.10.0", |
| 1511 | build_file = Label("//third_party/rust/cargo/remote:BUILD.strsim-0.10.0.bazel"), |
Serge Bazanski | cbf1fa9 | 2021-07-02 17:28:50 +0200 | [diff] [blame] | 1512 | ) |
| 1513 | |
| 1514 | maybe( |
| 1515 | http_archive, |
Leopold | 2aa8b18 | 2023-01-14 23:31:43 +0100 | [diff] [blame^] | 1516 | name = "raze__syn__1_0_107", |
| 1517 | url = "https://crates.io/api/v1/crates/syn/1.0.107/download", |
Serge Bazanski | cbf1fa9 | 2021-07-02 17:28:50 +0200 | [diff] [blame] | 1518 | type = "tar.gz", |
Leopold | 2aa8b18 | 2023-01-14 23:31:43 +0100 | [diff] [blame^] | 1519 | sha256 = "1f4064b5b16e03ae50984a5a8ed5d4f8803e6bc1fd170a3cda91a1be4b18e3f5", |
| 1520 | strip_prefix = "syn-1.0.107", |
| 1521 | build_file = Label("//third_party/rust/cargo/remote:BUILD.syn-1.0.107.bazel"), |
Serge Bazanski | cbf1fa9 | 2021-07-02 17:28:50 +0200 | [diff] [blame] | 1522 | ) |
| 1523 | |
| 1524 | maybe( |
| 1525 | http_archive, |
Leopold | 2aa8b18 | 2023-01-14 23:31:43 +0100 | [diff] [blame^] | 1526 | name = "raze__tempfile__3_3_0", |
| 1527 | url = "https://crates.io/api/v1/crates/tempfile/3.3.0/download", |
Serge Bazanski | cbf1fa9 | 2021-07-02 17:28:50 +0200 | [diff] [blame] | 1528 | type = "tar.gz", |
Leopold | 2aa8b18 | 2023-01-14 23:31:43 +0100 | [diff] [blame^] | 1529 | sha256 = "5cdb1ef4eaeeaddc8fbd371e5017057064af0911902ef36b39801f67cc6d79e4", |
| 1530 | strip_prefix = "tempfile-3.3.0", |
| 1531 | build_file = Label("//third_party/rust/cargo/remote:BUILD.tempfile-3.3.0.bazel"), |
Serge Bazanski | cbf1fa9 | 2021-07-02 17:28:50 +0200 | [diff] [blame] | 1532 | ) |
| 1533 | |
| 1534 | maybe( |
| 1535 | http_archive, |
Leopold | 2aa8b18 | 2023-01-14 23:31:43 +0100 | [diff] [blame^] | 1536 | name = "raze__tendril__0_4_3", |
| 1537 | url = "https://crates.io/api/v1/crates/tendril/0.4.3/download", |
Serge Bazanski | cbf1fa9 | 2021-07-02 17:28:50 +0200 | [diff] [blame] | 1538 | type = "tar.gz", |
Leopold | 2aa8b18 | 2023-01-14 23:31:43 +0100 | [diff] [blame^] | 1539 | sha256 = "d24a120c5fc464a3458240ee02c299ebcb9d67b5249c8848b09d639dca8d7bb0", |
| 1540 | strip_prefix = "tendril-0.4.3", |
| 1541 | build_file = Label("//third_party/rust/cargo/remote:BUILD.tendril-0.4.3.bazel"), |
Serge Bazanski | cbf1fa9 | 2021-07-02 17:28:50 +0200 | [diff] [blame] | 1542 | ) |
| 1543 | |
| 1544 | maybe( |
| 1545 | http_archive, |
Leopold | 2aa8b18 | 2023-01-14 23:31:43 +0100 | [diff] [blame^] | 1546 | name = "raze__termcolor__1_1_3", |
| 1547 | url = "https://crates.io/api/v1/crates/termcolor/1.1.3/download", |
Serge Bazanski | cbf1fa9 | 2021-07-02 17:28:50 +0200 | [diff] [blame] | 1548 | type = "tar.gz", |
Leopold | 2aa8b18 | 2023-01-14 23:31:43 +0100 | [diff] [blame^] | 1549 | sha256 = "bab24d30b911b2376f3a13cc2cd443142f0c81dda04c118693e35b3835757755", |
| 1550 | strip_prefix = "termcolor-1.1.3", |
| 1551 | build_file = Label("//third_party/rust/cargo/remote:BUILD.termcolor-1.1.3.bazel"), |
Serge Bazanski | cbf1fa9 | 2021-07-02 17:28:50 +0200 | [diff] [blame] | 1552 | ) |
| 1553 | |
| 1554 | maybe( |
| 1555 | http_archive, |
Leopold | 2aa8b18 | 2023-01-14 23:31:43 +0100 | [diff] [blame^] | 1556 | name = "raze__textwrap__0_16_0", |
| 1557 | url = "https://crates.io/api/v1/crates/textwrap/0.16.0/download", |
Serge Bazanski | cbf1fa9 | 2021-07-02 17:28:50 +0200 | [diff] [blame] | 1558 | type = "tar.gz", |
Leopold | 2aa8b18 | 2023-01-14 23:31:43 +0100 | [diff] [blame^] | 1559 | sha256 = "222a222a5bfe1bba4a77b45ec488a741b3cb8872e5e499451fd7d0129c9c7c3d", |
| 1560 | strip_prefix = "textwrap-0.16.0", |
| 1561 | build_file = Label("//third_party/rust/cargo/remote:BUILD.textwrap-0.16.0.bazel"), |
| 1562 | ) |
| 1563 | |
| 1564 | maybe( |
| 1565 | http_archive, |
| 1566 | name = "raze__thiserror__1_0_38", |
| 1567 | url = "https://crates.io/api/v1/crates/thiserror/1.0.38/download", |
| 1568 | type = "tar.gz", |
| 1569 | sha256 = "6a9cd18aa97d5c45c6603caea1da6628790b37f7a34b6ca89522331c5180fed0", |
| 1570 | strip_prefix = "thiserror-1.0.38", |
| 1571 | build_file = Label("//third_party/rust/cargo/remote:BUILD.thiserror-1.0.38.bazel"), |
| 1572 | ) |
| 1573 | |
| 1574 | maybe( |
| 1575 | http_archive, |
| 1576 | name = "raze__thiserror_impl__1_0_38", |
| 1577 | url = "https://crates.io/api/v1/crates/thiserror-impl/1.0.38/download", |
| 1578 | type = "tar.gz", |
| 1579 | sha256 = "1fb327af4685e4d03fa8cbcf1716380da910eeb2bb8be417e7f9fd3fb164f36f", |
| 1580 | strip_prefix = "thiserror-impl-1.0.38", |
| 1581 | build_file = Label("//third_party/rust/cargo/remote:BUILD.thiserror-impl-1.0.38.bazel"), |
| 1582 | ) |
| 1583 | |
| 1584 | maybe( |
| 1585 | http_archive, |
| 1586 | name = "raze__time__0_1_45", |
| 1587 | url = "https://crates.io/api/v1/crates/time/0.1.45/download", |
| 1588 | type = "tar.gz", |
| 1589 | sha256 = "1b797afad3f312d1c66a56d11d0316f916356d11bd158fbc6ca6389ff6bf805a", |
| 1590 | strip_prefix = "time-0.1.45", |
| 1591 | build_file = Label("//third_party/rust/cargo/remote:BUILD.time-0.1.45.bazel"), |
| 1592 | ) |
| 1593 | |
| 1594 | maybe( |
| 1595 | http_archive, |
| 1596 | name = "raze__tinyvec__1_6_0", |
| 1597 | url = "https://crates.io/api/v1/crates/tinyvec/1.6.0/download", |
| 1598 | type = "tar.gz", |
| 1599 | sha256 = "87cc5ceb3875bb20c2890005a4e226a4651264a5c75edb2421b52861a0a0cb50", |
| 1600 | strip_prefix = "tinyvec-1.6.0", |
| 1601 | build_file = Label("//third_party/rust/cargo/remote:BUILD.tinyvec-1.6.0.bazel"), |
Serge Bazanski | cbf1fa9 | 2021-07-02 17:28:50 +0200 | [diff] [blame] | 1602 | ) |
| 1603 | |
| 1604 | maybe( |
| 1605 | http_archive, |
| 1606 | name = "raze__tinyvec_macros__0_1_0", |
| 1607 | url = "https://crates.io/api/v1/crates/tinyvec_macros/0.1.0/download", |
| 1608 | type = "tar.gz", |
| 1609 | sha256 = "cda74da7e1a664f795bb1f8a87ec406fb89a02522cf6e50620d016add6dbbf5c", |
| 1610 | strip_prefix = "tinyvec_macros-0.1.0", |
| 1611 | build_file = Label("//third_party/rust/cargo/remote:BUILD.tinyvec_macros-0.1.0.bazel"), |
| 1612 | ) |
| 1613 | |
| 1614 | maybe( |
| 1615 | http_archive, |
Leopold | 2aa8b18 | 2023-01-14 23:31:43 +0100 | [diff] [blame^] | 1616 | name = "raze__tokio__1_24_1", |
| 1617 | url = "https://crates.io/api/v1/crates/tokio/1.24.1/download", |
Serge Bazanski | cbf1fa9 | 2021-07-02 17:28:50 +0200 | [diff] [blame] | 1618 | type = "tar.gz", |
Leopold | 2aa8b18 | 2023-01-14 23:31:43 +0100 | [diff] [blame^] | 1619 | sha256 = "1d9f76183f91ecfb55e1d7d5602bd1d979e38a3a522fe900241cf195624d67ae", |
| 1620 | strip_prefix = "tokio-1.24.1", |
| 1621 | build_file = Label("//third_party/rust/cargo/remote:BUILD.tokio-1.24.1.bazel"), |
Serge Bazanski | cbf1fa9 | 2021-07-02 17:28:50 +0200 | [diff] [blame] | 1622 | ) |
| 1623 | |
| 1624 | maybe( |
| 1625 | http_archive, |
Leopold | 2aa8b18 | 2023-01-14 23:31:43 +0100 | [diff] [blame^] | 1626 | name = "raze__tokio_macros__1_8_2", |
| 1627 | url = "https://crates.io/api/v1/crates/tokio-macros/1.8.2/download", |
Serge Bazanski | cbf1fa9 | 2021-07-02 17:28:50 +0200 | [diff] [blame] | 1628 | type = "tar.gz", |
Leopold | 2aa8b18 | 2023-01-14 23:31:43 +0100 | [diff] [blame^] | 1629 | sha256 = "d266c00fde287f55d3f1c3e96c500c362a2b8c695076ec180f27918820bc6df8", |
| 1630 | strip_prefix = "tokio-macros-1.8.2", |
| 1631 | build_file = Label("//third_party/rust/cargo/remote:BUILD.tokio-macros-1.8.2.bazel"), |
Serge Bazanski | cbf1fa9 | 2021-07-02 17:28:50 +0200 | [diff] [blame] | 1632 | ) |
| 1633 | |
| 1634 | maybe( |
| 1635 | http_archive, |
Leopold | 2aa8b18 | 2023-01-14 23:31:43 +0100 | [diff] [blame^] | 1636 | name = "raze__tokio_stream__0_1_11", |
| 1637 | url = "https://crates.io/api/v1/crates/tokio-stream/0.1.11/download", |
Serge Bazanski | cbf1fa9 | 2021-07-02 17:28:50 +0200 | [diff] [blame] | 1638 | type = "tar.gz", |
Leopold | 2aa8b18 | 2023-01-14 23:31:43 +0100 | [diff] [blame^] | 1639 | sha256 = "d660770404473ccd7bc9f8b28494a811bc18542b915c0855c51e8f419d5223ce", |
| 1640 | strip_prefix = "tokio-stream-0.1.11", |
| 1641 | build_file = Label("//third_party/rust/cargo/remote:BUILD.tokio-stream-0.1.11.bazel"), |
Serge Bazanski | cbf1fa9 | 2021-07-02 17:28:50 +0200 | [diff] [blame] | 1642 | ) |
| 1643 | |
| 1644 | maybe( |
| 1645 | http_archive, |
Leopold | 2aa8b18 | 2023-01-14 23:31:43 +0100 | [diff] [blame^] | 1646 | name = "raze__tokio_tungstenite__0_17_2", |
| 1647 | url = "https://crates.io/api/v1/crates/tokio-tungstenite/0.17.2/download", |
Serge Bazanski | cbf1fa9 | 2021-07-02 17:28:50 +0200 | [diff] [blame] | 1648 | type = "tar.gz", |
Leopold | 2aa8b18 | 2023-01-14 23:31:43 +0100 | [diff] [blame^] | 1649 | sha256 = "f714dd15bead90401d77e04243611caec13726c2408afd5b31901dfcdcb3b181", |
| 1650 | strip_prefix = "tokio-tungstenite-0.17.2", |
| 1651 | build_file = Label("//third_party/rust/cargo/remote:BUILD.tokio-tungstenite-0.17.2.bazel"), |
Serge Bazanski | cbf1fa9 | 2021-07-02 17:28:50 +0200 | [diff] [blame] | 1652 | ) |
| 1653 | |
| 1654 | maybe( |
| 1655 | http_archive, |
Leopold | 2aa8b18 | 2023-01-14 23:31:43 +0100 | [diff] [blame^] | 1656 | name = "raze__tokio_util__0_7_4", |
| 1657 | url = "https://crates.io/api/v1/crates/tokio-util/0.7.4/download", |
Serge Bazanski | cbf1fa9 | 2021-07-02 17:28:50 +0200 | [diff] [blame] | 1658 | type = "tar.gz", |
Leopold | 2aa8b18 | 2023-01-14 23:31:43 +0100 | [diff] [blame^] | 1659 | sha256 = "0bb2e075f03b3d66d8d8785356224ba688d2906a371015e225beeb65ca92c740", |
| 1660 | strip_prefix = "tokio-util-0.7.4", |
| 1661 | build_file = Label("//third_party/rust/cargo/remote:BUILD.tokio-util-0.7.4.bazel"), |
Serge Bazanski | cbf1fa9 | 2021-07-02 17:28:50 +0200 | [diff] [blame] | 1662 | ) |
| 1663 | |
| 1664 | maybe( |
| 1665 | http_archive, |
Leopold | 2aa8b18 | 2023-01-14 23:31:43 +0100 | [diff] [blame^] | 1666 | name = "raze__toml__0_5_10", |
| 1667 | url = "https://crates.io/api/v1/crates/toml/0.5.10/download", |
Serge Bazanski | cbf1fa9 | 2021-07-02 17:28:50 +0200 | [diff] [blame] | 1668 | type = "tar.gz", |
Leopold | 2aa8b18 | 2023-01-14 23:31:43 +0100 | [diff] [blame^] | 1669 | sha256 = "1333c76748e868a4d9d1017b5ab53171dfd095f70c712fdb4653a406547f598f", |
| 1670 | strip_prefix = "toml-0.5.10", |
| 1671 | build_file = Label("//third_party/rust/cargo/remote:BUILD.toml-0.5.10.bazel"), |
Serge Bazanski | cbf1fa9 | 2021-07-02 17:28:50 +0200 | [diff] [blame] | 1672 | ) |
| 1673 | |
| 1674 | maybe( |
| 1675 | http_archive, |
Leopold | 2aa8b18 | 2023-01-14 23:31:43 +0100 | [diff] [blame^] | 1676 | name = "raze__topological_sort__0_1_0", |
| 1677 | url = "https://crates.io/api/v1/crates/topological-sort/0.1.0/download", |
Serge Bazanski | cbf1fa9 | 2021-07-02 17:28:50 +0200 | [diff] [blame] | 1678 | type = "tar.gz", |
Leopold | 2aa8b18 | 2023-01-14 23:31:43 +0100 | [diff] [blame^] | 1679 | sha256 = "aa7c7f42dea4b1b99439786f5633aeb9c14c1b53f75e282803c2ec2ad545873c", |
| 1680 | strip_prefix = "topological-sort-0.1.0", |
| 1681 | build_file = Label("//third_party/rust/cargo/remote:BUILD.topological-sort-0.1.0.bazel"), |
Serge Bazanski | cbf1fa9 | 2021-07-02 17:28:50 +0200 | [diff] [blame] | 1682 | ) |
| 1683 | |
| 1684 | maybe( |
| 1685 | http_archive, |
Leopold | 2aa8b18 | 2023-01-14 23:31:43 +0100 | [diff] [blame^] | 1686 | name = "raze__tower_service__0_3_2", |
| 1687 | url = "https://crates.io/api/v1/crates/tower-service/0.3.2/download", |
Serge Bazanski | cbf1fa9 | 2021-07-02 17:28:50 +0200 | [diff] [blame] | 1688 | type = "tar.gz", |
Leopold | 2aa8b18 | 2023-01-14 23:31:43 +0100 | [diff] [blame^] | 1689 | sha256 = "b6bc1c9ce2b5135ac7f93c72918fc37feb872bdc6a5533a8b85eb4b86bfdae52", |
| 1690 | strip_prefix = "tower-service-0.3.2", |
| 1691 | build_file = Label("//third_party/rust/cargo/remote:BUILD.tower-service-0.3.2.bazel"), |
Serge Bazanski | cbf1fa9 | 2021-07-02 17:28:50 +0200 | [diff] [blame] | 1692 | ) |
| 1693 | |
| 1694 | maybe( |
| 1695 | http_archive, |
Leopold | 2aa8b18 | 2023-01-14 23:31:43 +0100 | [diff] [blame^] | 1696 | name = "raze__tracing__0_1_37", |
| 1697 | url = "https://crates.io/api/v1/crates/tracing/0.1.37/download", |
Serge Bazanski | cbf1fa9 | 2021-07-02 17:28:50 +0200 | [diff] [blame] | 1698 | type = "tar.gz", |
Leopold | 2aa8b18 | 2023-01-14 23:31:43 +0100 | [diff] [blame^] | 1699 | sha256 = "8ce8c33a8d48bd45d624a6e523445fd21ec13d3653cd51f681abf67418f54eb8", |
| 1700 | strip_prefix = "tracing-0.1.37", |
| 1701 | build_file = Label("//third_party/rust/cargo/remote:BUILD.tracing-0.1.37.bazel"), |
Serge Bazanski | cbf1fa9 | 2021-07-02 17:28:50 +0200 | [diff] [blame] | 1702 | ) |
| 1703 | |
| 1704 | maybe( |
| 1705 | http_archive, |
Leopold | 2aa8b18 | 2023-01-14 23:31:43 +0100 | [diff] [blame^] | 1706 | name = "raze__tracing_core__0_1_30", |
| 1707 | url = "https://crates.io/api/v1/crates/tracing-core/0.1.30/download", |
Serge Bazanski | cbf1fa9 | 2021-07-02 17:28:50 +0200 | [diff] [blame] | 1708 | type = "tar.gz", |
Leopold | 2aa8b18 | 2023-01-14 23:31:43 +0100 | [diff] [blame^] | 1709 | sha256 = "24eb03ba0eab1fd845050058ce5e616558e8f8d8fca633e6b163fe25c797213a", |
| 1710 | strip_prefix = "tracing-core-0.1.30", |
| 1711 | build_file = Label("//third_party/rust/cargo/remote:BUILD.tracing-core-0.1.30.bazel"), |
Serge Bazanski | cbf1fa9 | 2021-07-02 17:28:50 +0200 | [diff] [blame] | 1712 | ) |
| 1713 | |
| 1714 | maybe( |
| 1715 | http_archive, |
Leopold | 2aa8b18 | 2023-01-14 23:31:43 +0100 | [diff] [blame^] | 1716 | name = "raze__try_lock__0_2_4", |
| 1717 | url = "https://crates.io/api/v1/crates/try-lock/0.2.4/download", |
Serge Bazanski | cbf1fa9 | 2021-07-02 17:28:50 +0200 | [diff] [blame] | 1718 | type = "tar.gz", |
Leopold | 2aa8b18 | 2023-01-14 23:31:43 +0100 | [diff] [blame^] | 1719 | sha256 = "3528ecfd12c466c6f163363caf2d02a71161dd5e1cc6ae7b34207ea2d42d81ed", |
| 1720 | strip_prefix = "try-lock-0.2.4", |
| 1721 | build_file = Label("//third_party/rust/cargo/remote:BUILD.try-lock-0.2.4.bazel"), |
Serge Bazanski | cbf1fa9 | 2021-07-02 17:28:50 +0200 | [diff] [blame] | 1722 | ) |
| 1723 | |
| 1724 | maybe( |
| 1725 | http_archive, |
Leopold | 2aa8b18 | 2023-01-14 23:31:43 +0100 | [diff] [blame^] | 1726 | name = "raze__tungstenite__0_17_3", |
| 1727 | url = "https://crates.io/api/v1/crates/tungstenite/0.17.3/download", |
Serge Bazanski | cbf1fa9 | 2021-07-02 17:28:50 +0200 | [diff] [blame] | 1728 | type = "tar.gz", |
Leopold | 2aa8b18 | 2023-01-14 23:31:43 +0100 | [diff] [blame^] | 1729 | sha256 = "e27992fd6a8c29ee7eef28fc78349aa244134e10ad447ce3b9f0ac0ed0fa4ce0", |
| 1730 | strip_prefix = "tungstenite-0.17.3", |
| 1731 | build_file = Label("//third_party/rust/cargo/remote:BUILD.tungstenite-0.17.3.bazel"), |
Serge Bazanski | cbf1fa9 | 2021-07-02 17:28:50 +0200 | [diff] [blame] | 1732 | ) |
| 1733 | |
| 1734 | maybe( |
| 1735 | http_archive, |
Leopold | 2aa8b18 | 2023-01-14 23:31:43 +0100 | [diff] [blame^] | 1736 | name = "raze__typenum__1_16_0", |
| 1737 | url = "https://crates.io/api/v1/crates/typenum/1.16.0/download", |
Serge Bazanski | cbf1fa9 | 2021-07-02 17:28:50 +0200 | [diff] [blame] | 1738 | type = "tar.gz", |
Leopold | 2aa8b18 | 2023-01-14 23:31:43 +0100 | [diff] [blame^] | 1739 | sha256 = "497961ef93d974e23eb6f433eb5fe1b7930b659f06d12dec6fc44a8f554c0bba", |
| 1740 | strip_prefix = "typenum-1.16.0", |
| 1741 | build_file = Label("//third_party/rust/cargo/remote:BUILD.typenum-1.16.0.bazel"), |
| 1742 | ) |
| 1743 | |
| 1744 | maybe( |
| 1745 | http_archive, |
| 1746 | name = "raze__ucd_trie__0_1_5", |
| 1747 | url = "https://crates.io/api/v1/crates/ucd-trie/0.1.5/download", |
| 1748 | type = "tar.gz", |
| 1749 | sha256 = "9e79c4d996edb816c91e4308506774452e55e95c3c9de07b6729e17e15a5ef81", |
| 1750 | strip_prefix = "ucd-trie-0.1.5", |
| 1751 | build_file = Label("//third_party/rust/cargo/remote:BUILD.ucd-trie-0.1.5.bazel"), |
Serge Bazanski | cbf1fa9 | 2021-07-02 17:28:50 +0200 | [diff] [blame] | 1752 | ) |
| 1753 | |
| 1754 | maybe( |
| 1755 | http_archive, |
| 1756 | name = "raze__unicase__2_6_0", |
| 1757 | url = "https://crates.io/api/v1/crates/unicase/2.6.0/download", |
| 1758 | type = "tar.gz", |
| 1759 | sha256 = "50f37be617794602aabbeee0be4f259dc1778fabe05e2d67ee8f79326d5cb4f6", |
| 1760 | strip_prefix = "unicase-2.6.0", |
| 1761 | build_file = Label("//third_party/rust/cargo/remote:BUILD.unicase-2.6.0.bazel"), |
| 1762 | ) |
| 1763 | |
| 1764 | maybe( |
| 1765 | http_archive, |
Leopold | 2aa8b18 | 2023-01-14 23:31:43 +0100 | [diff] [blame^] | 1766 | name = "raze__unicode_bidi__0_3_8", |
| 1767 | url = "https://crates.io/api/v1/crates/unicode-bidi/0.3.8/download", |
Serge Bazanski | cbf1fa9 | 2021-07-02 17:28:50 +0200 | [diff] [blame] | 1768 | type = "tar.gz", |
Leopold | 2aa8b18 | 2023-01-14 23:31:43 +0100 | [diff] [blame^] | 1769 | sha256 = "099b7128301d285f79ddd55b9a83d5e6b9e97c92e0ea0daebee7263e932de992", |
| 1770 | strip_prefix = "unicode-bidi-0.3.8", |
| 1771 | build_file = Label("//third_party/rust/cargo/remote:BUILD.unicode-bidi-0.3.8.bazel"), |
Serge Bazanski | cbf1fa9 | 2021-07-02 17:28:50 +0200 | [diff] [blame] | 1772 | ) |
| 1773 | |
| 1774 | maybe( |
| 1775 | http_archive, |
Leopold | 2aa8b18 | 2023-01-14 23:31:43 +0100 | [diff] [blame^] | 1776 | name = "raze__unicode_ident__1_0_6", |
| 1777 | url = "https://crates.io/api/v1/crates/unicode-ident/1.0.6/download", |
Serge Bazanski | cbf1fa9 | 2021-07-02 17:28:50 +0200 | [diff] [blame] | 1778 | type = "tar.gz", |
Leopold | 2aa8b18 | 2023-01-14 23:31:43 +0100 | [diff] [blame^] | 1779 | sha256 = "84a22b9f218b40614adcb3f4ff08b703773ad44fa9423e4e0d346d5db86e4ebc", |
| 1780 | strip_prefix = "unicode-ident-1.0.6", |
| 1781 | build_file = Label("//third_party/rust/cargo/remote:BUILD.unicode-ident-1.0.6.bazel"), |
Serge Bazanski | cbf1fa9 | 2021-07-02 17:28:50 +0200 | [diff] [blame] | 1782 | ) |
| 1783 | |
| 1784 | maybe( |
| 1785 | http_archive, |
Leopold | 2aa8b18 | 2023-01-14 23:31:43 +0100 | [diff] [blame^] | 1786 | name = "raze__unicode_normalization__0_1_22", |
| 1787 | url = "https://crates.io/api/v1/crates/unicode-normalization/0.1.22/download", |
Serge Bazanski | cbf1fa9 | 2021-07-02 17:28:50 +0200 | [diff] [blame] | 1788 | type = "tar.gz", |
Leopold | 2aa8b18 | 2023-01-14 23:31:43 +0100 | [diff] [blame^] | 1789 | sha256 = "5c5713f0fc4b5db668a2ac63cdb7bb4469d8c9fed047b1d0292cc7b0ce2ba921", |
| 1790 | strip_prefix = "unicode-normalization-0.1.22", |
| 1791 | build_file = Label("//third_party/rust/cargo/remote:BUILD.unicode-normalization-0.1.22.bazel"), |
Serge Bazanski | cbf1fa9 | 2021-07-02 17:28:50 +0200 | [diff] [blame] | 1792 | ) |
| 1793 | |
| 1794 | maybe( |
| 1795 | http_archive, |
Leopold | 2aa8b18 | 2023-01-14 23:31:43 +0100 | [diff] [blame^] | 1796 | name = "raze__unicode_width__0_1_10", |
| 1797 | url = "https://crates.io/api/v1/crates/unicode-width/0.1.10/download", |
Serge Bazanski | cbf1fa9 | 2021-07-02 17:28:50 +0200 | [diff] [blame] | 1798 | type = "tar.gz", |
Leopold | 2aa8b18 | 2023-01-14 23:31:43 +0100 | [diff] [blame^] | 1799 | sha256 = "c0edd1e5b14653f783770bce4a4dabb4a5108a5370a5f5d8cfe8710c361f6c8b", |
| 1800 | strip_prefix = "unicode-width-0.1.10", |
| 1801 | build_file = Label("//third_party/rust/cargo/remote:BUILD.unicode-width-0.1.10.bazel"), |
Serge Bazanski | cbf1fa9 | 2021-07-02 17:28:50 +0200 | [diff] [blame] | 1802 | ) |
| 1803 | |
| 1804 | maybe( |
| 1805 | http_archive, |
Leopold | 2aa8b18 | 2023-01-14 23:31:43 +0100 | [diff] [blame^] | 1806 | name = "raze__url__2_3_1", |
| 1807 | url = "https://crates.io/api/v1/crates/url/2.3.1/download", |
Serge Bazanski | cbf1fa9 | 2021-07-02 17:28:50 +0200 | [diff] [blame] | 1808 | type = "tar.gz", |
Leopold | 2aa8b18 | 2023-01-14 23:31:43 +0100 | [diff] [blame^] | 1809 | sha256 = "0d68c799ae75762b8c3fe375feb6600ef5602c883c5d21eb51c09f22b83c4643", |
| 1810 | strip_prefix = "url-2.3.1", |
| 1811 | build_file = Label("//third_party/rust/cargo/remote:BUILD.url-2.3.1.bazel"), |
Serge Bazanski | cbf1fa9 | 2021-07-02 17:28:50 +0200 | [diff] [blame] | 1812 | ) |
| 1813 | |
| 1814 | maybe( |
| 1815 | http_archive, |
| 1816 | name = "raze__utf_8__0_7_6", |
| 1817 | url = "https://crates.io/api/v1/crates/utf-8/0.7.6/download", |
| 1818 | type = "tar.gz", |
| 1819 | sha256 = "09cc8ee72d2a9becf2f2febe0205bbed8fc6615b7cb429ad062dc7b7ddd036a9", |
| 1820 | strip_prefix = "utf-8-0.7.6", |
| 1821 | build_file = Label("//third_party/rust/cargo/remote:BUILD.utf-8-0.7.6.bazel"), |
| 1822 | ) |
| 1823 | |
| 1824 | maybe( |
| 1825 | http_archive, |
Leopold | 2aa8b18 | 2023-01-14 23:31:43 +0100 | [diff] [blame^] | 1826 | name = "raze__version_check__0_9_4", |
| 1827 | url = "https://crates.io/api/v1/crates/version_check/0.9.4/download", |
Serge Bazanski | cbf1fa9 | 2021-07-02 17:28:50 +0200 | [diff] [blame] | 1828 | type = "tar.gz", |
Leopold | 2aa8b18 | 2023-01-14 23:31:43 +0100 | [diff] [blame^] | 1829 | sha256 = "49874b5167b65d7193b8aba1567f5c7d93d001cafc34600cee003eda787e483f", |
| 1830 | strip_prefix = "version_check-0.9.4", |
| 1831 | build_file = Label("//third_party/rust/cargo/remote:BUILD.version_check-0.9.4.bazel"), |
Serge Bazanski | cbf1fa9 | 2021-07-02 17:28:50 +0200 | [diff] [blame] | 1832 | ) |
| 1833 | |
| 1834 | maybe( |
| 1835 | http_archive, |
| 1836 | name = "raze__walkdir__2_3_2", |
| 1837 | url = "https://crates.io/api/v1/crates/walkdir/2.3.2/download", |
| 1838 | type = "tar.gz", |
| 1839 | sha256 = "808cf2735cd4b6866113f648b791c6adc5714537bc222d9347bb203386ffda56", |
| 1840 | strip_prefix = "walkdir-2.3.2", |
| 1841 | build_file = Label("//third_party/rust/cargo/remote:BUILD.walkdir-2.3.2.bazel"), |
| 1842 | ) |
| 1843 | |
| 1844 | maybe( |
| 1845 | http_archive, |
| 1846 | name = "raze__want__0_3_0", |
| 1847 | url = "https://crates.io/api/v1/crates/want/0.3.0/download", |
| 1848 | type = "tar.gz", |
| 1849 | sha256 = "1ce8a968cb1cd110d136ff8b819a556d6fb6d919363c61534f6860c7eb172ba0", |
| 1850 | strip_prefix = "want-0.3.0", |
| 1851 | build_file = Label("//third_party/rust/cargo/remote:BUILD.want-0.3.0.bazel"), |
| 1852 | ) |
| 1853 | |
| 1854 | maybe( |
| 1855 | http_archive, |
Leopold | 2aa8b18 | 2023-01-14 23:31:43 +0100 | [diff] [blame^] | 1856 | name = "raze__warp__0_3_3", |
| 1857 | url = "https://crates.io/api/v1/crates/warp/0.3.3/download", |
Serge Bazanski | cbf1fa9 | 2021-07-02 17:28:50 +0200 | [diff] [blame] | 1858 | type = "tar.gz", |
Leopold | 2aa8b18 | 2023-01-14 23:31:43 +0100 | [diff] [blame^] | 1859 | sha256 = "ed7b8be92646fc3d18b06147664ebc5f48d222686cb11a8755e561a735aacc6d", |
| 1860 | strip_prefix = "warp-0.3.3", |
| 1861 | build_file = Label("//third_party/rust/cargo/remote:BUILD.warp-0.3.3.bazel"), |
Serge Bazanski | cbf1fa9 | 2021-07-02 17:28:50 +0200 | [diff] [blame] | 1862 | ) |
| 1863 | |
| 1864 | maybe( |
| 1865 | http_archive, |
Leopold | 2aa8b18 | 2023-01-14 23:31:43 +0100 | [diff] [blame^] | 1866 | name = "raze__wasi__0_10_0_wasi_snapshot_preview1", |
| 1867 | url = "https://crates.io/api/v1/crates/wasi/0.10.0+wasi-snapshot-preview1/download", |
Serge Bazanski | cbf1fa9 | 2021-07-02 17:28:50 +0200 | [diff] [blame] | 1868 | type = "tar.gz", |
Leopold | 2aa8b18 | 2023-01-14 23:31:43 +0100 | [diff] [blame^] | 1869 | sha256 = "1a143597ca7c7793eff794def352d41792a93c481eb1042423ff7ff72ba2c31f", |
| 1870 | strip_prefix = "wasi-0.10.0+wasi-snapshot-preview1", |
| 1871 | build_file = Label("//third_party/rust/cargo/remote:BUILD.wasi-0.10.0+wasi-snapshot-preview1.bazel"), |
Serge Bazanski | cbf1fa9 | 2021-07-02 17:28:50 +0200 | [diff] [blame] | 1872 | ) |
| 1873 | |
| 1874 | maybe( |
| 1875 | http_archive, |
Leopold | 2aa8b18 | 2023-01-14 23:31:43 +0100 | [diff] [blame^] | 1876 | name = "raze__wasi__0_11_0_wasi_snapshot_preview1", |
| 1877 | url = "https://crates.io/api/v1/crates/wasi/0.11.0+wasi-snapshot-preview1/download", |
Serge Bazanski | cbf1fa9 | 2021-07-02 17:28:50 +0200 | [diff] [blame] | 1878 | type = "tar.gz", |
Leopold | 2aa8b18 | 2023-01-14 23:31:43 +0100 | [diff] [blame^] | 1879 | sha256 = "9c8d87e72b64a3b4db28d11ce29237c246188f4f51057d65a7eab63b7987e423", |
| 1880 | strip_prefix = "wasi-0.11.0+wasi-snapshot-preview1", |
| 1881 | build_file = Label("//third_party/rust/cargo/remote:BUILD.wasi-0.11.0+wasi-snapshot-preview1.bazel"), |
Serge Bazanski | cbf1fa9 | 2021-07-02 17:28:50 +0200 | [diff] [blame] | 1882 | ) |
| 1883 | |
| 1884 | maybe( |
| 1885 | http_archive, |
Leopold | 2aa8b18 | 2023-01-14 23:31:43 +0100 | [diff] [blame^] | 1886 | name = "raze__wasm_bindgen__0_2_83", |
| 1887 | url = "https://crates.io/api/v1/crates/wasm-bindgen/0.2.83/download", |
Serge Bazanski | cbf1fa9 | 2021-07-02 17:28:50 +0200 | [diff] [blame] | 1888 | type = "tar.gz", |
Leopold | 2aa8b18 | 2023-01-14 23:31:43 +0100 | [diff] [blame^] | 1889 | sha256 = "eaf9f5aceeec8be17c128b2e93e031fb8a4d469bb9c4ae2d7dc1888b26887268", |
| 1890 | strip_prefix = "wasm-bindgen-0.2.83", |
| 1891 | build_file = Label("//third_party/rust/cargo/remote:BUILD.wasm-bindgen-0.2.83.bazel"), |
| 1892 | ) |
| 1893 | |
| 1894 | maybe( |
| 1895 | http_archive, |
| 1896 | name = "raze__wasm_bindgen_backend__0_2_83", |
| 1897 | url = "https://crates.io/api/v1/crates/wasm-bindgen-backend/0.2.83/download", |
| 1898 | type = "tar.gz", |
| 1899 | sha256 = "4c8ffb332579b0557b52d268b91feab8df3615f265d5270fec2a8c95b17c1142", |
| 1900 | strip_prefix = "wasm-bindgen-backend-0.2.83", |
| 1901 | build_file = Label("//third_party/rust/cargo/remote:BUILD.wasm-bindgen-backend-0.2.83.bazel"), |
| 1902 | ) |
| 1903 | |
| 1904 | maybe( |
| 1905 | http_archive, |
| 1906 | name = "raze__wasm_bindgen_macro__0_2_83", |
| 1907 | url = "https://crates.io/api/v1/crates/wasm-bindgen-macro/0.2.83/download", |
| 1908 | type = "tar.gz", |
| 1909 | sha256 = "052be0f94026e6cbc75cdefc9bae13fd6052cdcaf532fa6c45e7ae33a1e6c810", |
| 1910 | strip_prefix = "wasm-bindgen-macro-0.2.83", |
| 1911 | build_file = Label("//third_party/rust/cargo/remote:BUILD.wasm-bindgen-macro-0.2.83.bazel"), |
| 1912 | ) |
| 1913 | |
| 1914 | maybe( |
| 1915 | http_archive, |
| 1916 | name = "raze__wasm_bindgen_macro_support__0_2_83", |
| 1917 | url = "https://crates.io/api/v1/crates/wasm-bindgen-macro-support/0.2.83/download", |
| 1918 | type = "tar.gz", |
| 1919 | sha256 = "07bc0c051dc5f23e307b13285f9d75df86bfdf816c5721e573dec1f9b8aa193c", |
| 1920 | strip_prefix = "wasm-bindgen-macro-support-0.2.83", |
| 1921 | build_file = Label("//third_party/rust/cargo/remote:BUILD.wasm-bindgen-macro-support-0.2.83.bazel"), |
| 1922 | ) |
| 1923 | |
| 1924 | maybe( |
| 1925 | http_archive, |
| 1926 | name = "raze__wasm_bindgen_shared__0_2_83", |
| 1927 | url = "https://crates.io/api/v1/crates/wasm-bindgen-shared/0.2.83/download", |
| 1928 | type = "tar.gz", |
| 1929 | sha256 = "1c38c045535d93ec4f0b4defec448e4291638ee608530863b1e2ba115d4fff7f", |
| 1930 | strip_prefix = "wasm-bindgen-shared-0.2.83", |
| 1931 | build_file = Label("//third_party/rust/cargo/remote:BUILD.wasm-bindgen-shared-0.2.83.bazel"), |
Serge Bazanski | cbf1fa9 | 2021-07-02 17:28:50 +0200 | [diff] [blame] | 1932 | ) |
| 1933 | |
| 1934 | maybe( |
| 1935 | http_archive, |
| 1936 | name = "raze__winapi__0_2_8", |
| 1937 | url = "https://crates.io/api/v1/crates/winapi/0.2.8/download", |
| 1938 | type = "tar.gz", |
| 1939 | sha256 = "167dc9d6949a9b857f3451275e911c3f44255842c1f7a76f33c55103a909087a", |
| 1940 | strip_prefix = "winapi-0.2.8", |
| 1941 | build_file = Label("//third_party/rust/cargo/remote:BUILD.winapi-0.2.8.bazel"), |
| 1942 | ) |
| 1943 | |
| 1944 | maybe( |
| 1945 | http_archive, |
| 1946 | name = "raze__winapi__0_3_9", |
| 1947 | url = "https://crates.io/api/v1/crates/winapi/0.3.9/download", |
| 1948 | type = "tar.gz", |
| 1949 | sha256 = "5c839a674fcd7a98952e593242ea400abe93992746761e38641405d28b00f419", |
| 1950 | strip_prefix = "winapi-0.3.9", |
| 1951 | build_file = Label("//third_party/rust/cargo/remote:BUILD.winapi-0.3.9.bazel"), |
| 1952 | ) |
| 1953 | |
| 1954 | maybe( |
| 1955 | http_archive, |
| 1956 | name = "raze__winapi_build__0_1_1", |
| 1957 | url = "https://crates.io/api/v1/crates/winapi-build/0.1.1/download", |
| 1958 | type = "tar.gz", |
| 1959 | sha256 = "2d315eee3b34aca4797b2da6b13ed88266e6d612562a0c46390af8299fc699bc", |
| 1960 | strip_prefix = "winapi-build-0.1.1", |
| 1961 | build_file = Label("//third_party/rust/cargo/remote:BUILD.winapi-build-0.1.1.bazel"), |
| 1962 | ) |
| 1963 | |
| 1964 | maybe( |
| 1965 | http_archive, |
| 1966 | name = "raze__winapi_i686_pc_windows_gnu__0_4_0", |
| 1967 | url = "https://crates.io/api/v1/crates/winapi-i686-pc-windows-gnu/0.4.0/download", |
| 1968 | type = "tar.gz", |
| 1969 | sha256 = "ac3b87c63620426dd9b991e5ce0329eff545bccbbb34f3be09ff6fb6ab51b7b6", |
| 1970 | strip_prefix = "winapi-i686-pc-windows-gnu-0.4.0", |
| 1971 | build_file = Label("//third_party/rust/cargo/remote:BUILD.winapi-i686-pc-windows-gnu-0.4.0.bazel"), |
| 1972 | ) |
| 1973 | |
| 1974 | maybe( |
| 1975 | http_archive, |
| 1976 | name = "raze__winapi_util__0_1_5", |
| 1977 | url = "https://crates.io/api/v1/crates/winapi-util/0.1.5/download", |
| 1978 | type = "tar.gz", |
| 1979 | sha256 = "70ec6ce85bb158151cae5e5c87f95a8e97d2c0c4b001223f33a334e3ce5de178", |
| 1980 | strip_prefix = "winapi-util-0.1.5", |
| 1981 | build_file = Label("//third_party/rust/cargo/remote:BUILD.winapi-util-0.1.5.bazel"), |
| 1982 | ) |
| 1983 | |
| 1984 | maybe( |
| 1985 | http_archive, |
| 1986 | name = "raze__winapi_x86_64_pc_windows_gnu__0_4_0", |
| 1987 | url = "https://crates.io/api/v1/crates/winapi-x86_64-pc-windows-gnu/0.4.0/download", |
| 1988 | type = "tar.gz", |
| 1989 | sha256 = "712e227841d057c1ee1cd2fb22fa7e5a5461ae8e48fa2ca79ec42cfc1931183f", |
| 1990 | strip_prefix = "winapi-x86_64-pc-windows-gnu-0.4.0", |
| 1991 | build_file = Label("//third_party/rust/cargo/remote:BUILD.winapi-x86_64-pc-windows-gnu-0.4.0.bazel"), |
| 1992 | ) |
| 1993 | |
| 1994 | maybe( |
| 1995 | http_archive, |
Leopold | 2aa8b18 | 2023-01-14 23:31:43 +0100 | [diff] [blame^] | 1996 | name = "raze__windows_sys__0_42_0", |
| 1997 | url = "https://crates.io/api/v1/crates/windows-sys/0.42.0/download", |
| 1998 | type = "tar.gz", |
| 1999 | sha256 = "5a3e1820f08b8513f676f7ab6c1f99ff312fb97b553d30ff4dd86f9f15728aa7", |
| 2000 | strip_prefix = "windows-sys-0.42.0", |
| 2001 | build_file = Label("//third_party/rust/cargo/remote:BUILD.windows-sys-0.42.0.bazel"), |
| 2002 | ) |
| 2003 | |
| 2004 | maybe( |
| 2005 | http_archive, |
| 2006 | name = "raze__windows_aarch64_gnullvm__0_42_1", |
| 2007 | url = "https://crates.io/api/v1/crates/windows_aarch64_gnullvm/0.42.1/download", |
| 2008 | type = "tar.gz", |
| 2009 | sha256 = "8c9864e83243fdec7fc9c5444389dcbbfd258f745e7853198f365e3c4968a608", |
| 2010 | strip_prefix = "windows_aarch64_gnullvm-0.42.1", |
| 2011 | build_file = Label("//third_party/rust/cargo/remote:BUILD.windows_aarch64_gnullvm-0.42.1.bazel"), |
| 2012 | ) |
| 2013 | |
| 2014 | maybe( |
| 2015 | http_archive, |
| 2016 | name = "raze__windows_aarch64_msvc__0_42_1", |
| 2017 | url = "https://crates.io/api/v1/crates/windows_aarch64_msvc/0.42.1/download", |
| 2018 | type = "tar.gz", |
| 2019 | sha256 = "4c8b1b673ffc16c47a9ff48570a9d85e25d265735c503681332589af6253c6c7", |
| 2020 | strip_prefix = "windows_aarch64_msvc-0.42.1", |
| 2021 | build_file = Label("//third_party/rust/cargo/remote:BUILD.windows_aarch64_msvc-0.42.1.bazel"), |
| 2022 | ) |
| 2023 | |
| 2024 | maybe( |
| 2025 | http_archive, |
| 2026 | name = "raze__windows_i686_gnu__0_42_1", |
| 2027 | url = "https://crates.io/api/v1/crates/windows_i686_gnu/0.42.1/download", |
| 2028 | type = "tar.gz", |
| 2029 | sha256 = "de3887528ad530ba7bdbb1faa8275ec7a1155a45ffa57c37993960277145d640", |
| 2030 | strip_prefix = "windows_i686_gnu-0.42.1", |
| 2031 | build_file = Label("//third_party/rust/cargo/remote:BUILD.windows_i686_gnu-0.42.1.bazel"), |
| 2032 | ) |
| 2033 | |
| 2034 | maybe( |
| 2035 | http_archive, |
| 2036 | name = "raze__windows_i686_msvc__0_42_1", |
| 2037 | url = "https://crates.io/api/v1/crates/windows_i686_msvc/0.42.1/download", |
| 2038 | type = "tar.gz", |
| 2039 | sha256 = "bf4d1122317eddd6ff351aa852118a2418ad4214e6613a50e0191f7004372605", |
| 2040 | strip_prefix = "windows_i686_msvc-0.42.1", |
| 2041 | build_file = Label("//third_party/rust/cargo/remote:BUILD.windows_i686_msvc-0.42.1.bazel"), |
| 2042 | ) |
| 2043 | |
| 2044 | maybe( |
| 2045 | http_archive, |
| 2046 | name = "raze__windows_x86_64_gnu__0_42_1", |
| 2047 | url = "https://crates.io/api/v1/crates/windows_x86_64_gnu/0.42.1/download", |
| 2048 | type = "tar.gz", |
| 2049 | sha256 = "c1040f221285e17ebccbc2591ffdc2d44ee1f9186324dd3e84e99ac68d699c45", |
| 2050 | strip_prefix = "windows_x86_64_gnu-0.42.1", |
| 2051 | build_file = Label("//third_party/rust/cargo/remote:BUILD.windows_x86_64_gnu-0.42.1.bazel"), |
| 2052 | ) |
| 2053 | |
| 2054 | maybe( |
| 2055 | http_archive, |
| 2056 | name = "raze__windows_x86_64_gnullvm__0_42_1", |
| 2057 | url = "https://crates.io/api/v1/crates/windows_x86_64_gnullvm/0.42.1/download", |
| 2058 | type = "tar.gz", |
| 2059 | sha256 = "628bfdf232daa22b0d64fdb62b09fcc36bb01f05a3939e20ab73aaf9470d0463", |
| 2060 | strip_prefix = "windows_x86_64_gnullvm-0.42.1", |
| 2061 | build_file = Label("//third_party/rust/cargo/remote:BUILD.windows_x86_64_gnullvm-0.42.1.bazel"), |
| 2062 | ) |
| 2063 | |
| 2064 | maybe( |
| 2065 | http_archive, |
| 2066 | name = "raze__windows_x86_64_msvc__0_42_1", |
| 2067 | url = "https://crates.io/api/v1/crates/windows_x86_64_msvc/0.42.1/download", |
| 2068 | type = "tar.gz", |
| 2069 | sha256 = "447660ad36a13288b1db4d4248e857b510e8c3a225c822ba4fb748c0aafecffd", |
| 2070 | strip_prefix = "windows_x86_64_msvc-0.42.1", |
| 2071 | build_file = Label("//third_party/rust/cargo/remote:BUILD.windows_x86_64_msvc-0.42.1.bazel"), |
| 2072 | ) |
| 2073 | |
| 2074 | maybe( |
| 2075 | http_archive, |
Serge Bazanski | cbf1fa9 | 2021-07-02 17:28:50 +0200 | [diff] [blame] | 2076 | name = "raze__ws2_32_sys__0_2_1", |
| 2077 | url = "https://crates.io/api/v1/crates/ws2_32-sys/0.2.1/download", |
| 2078 | type = "tar.gz", |
| 2079 | sha256 = "d59cefebd0c892fa2dd6de581e937301d8552cb44489cdff035c6187cb63fa5e", |
| 2080 | strip_prefix = "ws2_32-sys-0.2.1", |
| 2081 | build_file = Label("//third_party/rust/cargo/remote:BUILD.ws2_32-sys-0.2.1.bazel"), |
| 2082 | ) |