chunky_projects 0.0.0 → 0.0.1

Sign up to get free protection for your applications and to get access to all the features.
data/Cargo.lock CHANGED
@@ -2,6 +2,21 @@
2
2
  # It is not intended for manual editing.
3
3
  version = 3
4
4
 
5
+ [[package]]
6
+ name = "addr2line"
7
+ version = "0.21.0"
8
+ source = "registry+https://github.com/rust-lang/crates.io-index"
9
+ checksum = "8a30b2e23b9e17a9f90641c7ab1549cd9b44f296d3ccbf309d2863cfe398a0cb"
10
+ dependencies = [
11
+ "gimli",
12
+ ]
13
+
14
+ [[package]]
15
+ name = "adler"
16
+ version = "1.0.2"
17
+ source = "registry+https://github.com/rust-lang/crates.io-index"
18
+ checksum = "f26201604c87b1e01bd3d98f8d5d9a8fcbb815e8cedb41ffccbeb4bf593a35fe"
19
+
5
20
  [[package]]
6
21
  name = "aho-corasick"
7
22
  version = "1.1.2"
@@ -11,13 +26,53 @@ dependencies = [
11
26
  "memchr",
12
27
  ]
13
28
 
29
+ [[package]]
30
+ name = "ammonia"
31
+ version = "3.3.0"
32
+ source = "registry+https://github.com/rust-lang/crates.io-index"
33
+ checksum = "64e6d1c7838db705c9b756557ee27c384ce695a1c51a6fe528784cb1c6840170"
34
+ dependencies = [
35
+ "html5ever",
36
+ "maplit",
37
+ "once_cell",
38
+ "tendril",
39
+ "url",
40
+ ]
41
+
42
+ [[package]]
43
+ name = "autocfg"
44
+ version = "1.1.0"
45
+ source = "registry+https://github.com/rust-lang/crates.io-index"
46
+ checksum = "d468802bab17cbc0cc575e9b053f41e72aa36bfa6b7f55e3529ffa43161b97fa"
47
+
48
+ [[package]]
49
+ name = "backtrace"
50
+ version = "0.3.69"
51
+ source = "registry+https://github.com/rust-lang/crates.io-index"
52
+ checksum = "2089b7e3f35b9dd2d0ed921ead4f6d318c27680d4a5bd167b3ee120edb105837"
53
+ dependencies = [
54
+ "addr2line",
55
+ "cc",
56
+ "cfg-if",
57
+ "libc",
58
+ "miniz_oxide",
59
+ "object",
60
+ "rustc-demangle",
61
+ ]
62
+
63
+ [[package]]
64
+ name = "base64"
65
+ version = "0.21.5"
66
+ source = "registry+https://github.com/rust-lang/crates.io-index"
67
+ checksum = "35636a1494ede3b646cc98f74f8e62c773a38a659ebc777a2cf26b9b74171df9"
68
+
14
69
  [[package]]
15
70
  name = "bindgen"
16
71
  version = "0.69.1"
17
72
  source = "registry+https://github.com/rust-lang/crates.io-index"
18
73
  checksum = "9ffcebc3849946a7170a05992aac39da343a90676ab392c51a4280981d6379c2"
19
74
  dependencies = [
20
- "bitflags",
75
+ "bitflags 2.4.1",
21
76
  "cexpr",
22
77
  "clang-sys",
23
78
  "lazy_static",
@@ -28,15 +83,57 @@ dependencies = [
28
83
  "regex",
29
84
  "rustc-hash",
30
85
  "shlex",
31
- "syn",
86
+ "syn 2.0.47",
87
+ ]
88
+
89
+ [[package]]
90
+ name = "bit-set"
91
+ version = "0.5.3"
92
+ source = "registry+https://github.com/rust-lang/crates.io-index"
93
+ checksum = "0700ddab506f33b20a03b13996eccd309a48e5ff77d0d95926aa0210fb4e95f1"
94
+ dependencies = [
95
+ "bit-vec",
32
96
  ]
33
97
 
98
+ [[package]]
99
+ name = "bit-vec"
100
+ version = "0.6.3"
101
+ source = "registry+https://github.com/rust-lang/crates.io-index"
102
+ checksum = "349f9b6a179ed607305526ca489b34ad0a41aed5f7980fa90eb03160b69598fb"
103
+
104
+ [[package]]
105
+ name = "bitflags"
106
+ version = "1.3.2"
107
+ source = "registry+https://github.com/rust-lang/crates.io-index"
108
+ checksum = "bef38d45163c2f1dde094a7dfd33ccf595c92905c8f8f4fdc18d06fb1037718a"
109
+
34
110
  [[package]]
35
111
  name = "bitflags"
36
112
  version = "2.4.1"
37
113
  source = "registry+https://github.com/rust-lang/crates.io-index"
38
114
  checksum = "327762f6e5a765692301e5bb513e0d9fef63be86bbc14528052b1cd3e6f03e07"
39
115
 
116
+ [[package]]
117
+ name = "bumpalo"
118
+ version = "3.14.0"
119
+ source = "registry+https://github.com/rust-lang/crates.io-index"
120
+ checksum = "7f30e7476521f6f8af1a1c4c0b8cc94f0bee37d91763d0ca2665f299b6cd8aec"
121
+
122
+ [[package]]
123
+ name = "bytes"
124
+ version = "1.5.0"
125
+ source = "registry+https://github.com/rust-lang/crates.io-index"
126
+ checksum = "a2bd12c1caf447e69cd4528f47f94d203fd2582878ecb9e9465484c4148a8223"
127
+
128
+ [[package]]
129
+ name = "cc"
130
+ version = "1.0.83"
131
+ source = "registry+https://github.com/rust-lang/crates.io-index"
132
+ checksum = "f1174fb0b6ec23863f8b971027804a42614e347eafb0a95bf0b12cdae21fc4d0"
133
+ dependencies = [
134
+ "libc",
135
+ ]
136
+
40
137
  [[package]]
41
138
  name = "cexpr"
42
139
  version = "0.6.0"
@@ -52,13 +149,6 @@ version = "1.0.0"
52
149
  source = "registry+https://github.com/rust-lang/crates.io-index"
53
150
  checksum = "baf1de4339761588bc0619e3cbc0120ee582ebb74b53b4efbf79117bd2da40fd"
54
151
 
55
- [[package]]
56
- name = "chunky_projects"
57
- version = "0.0.0"
58
- dependencies = [
59
- "magnus",
60
- ]
61
-
62
152
  [[package]]
63
153
  name = "clang-sys"
64
154
  version = "1.7.0"
@@ -71,270 +161,1490 @@ dependencies = [
71
161
  ]
72
162
 
73
163
  [[package]]
74
- name = "glob"
75
- version = "0.3.1"
76
- source = "registry+https://github.com/rust-lang/crates.io-index"
77
- checksum = "d2fabcfbdc87f4758337ca535fb41a6d701b65693ce38287d856d1674551ec9b"
78
-
79
- [[package]]
80
- name = "lazy_static"
81
- version = "1.4.0"
82
- source = "registry+https://github.com/rust-lang/crates.io-index"
83
- checksum = "e2abad23fbc42b3700f2f279844dc832adb2b2eb069b2df918f455c4e18cc646"
84
-
85
- [[package]]
86
- name = "lazycell"
87
- version = "1.3.0"
164
+ name = "core-foundation"
165
+ version = "0.9.4"
88
166
  source = "registry+https://github.com/rust-lang/crates.io-index"
89
- checksum = "830d08ce1d1d941e6b30645f1a0eb5643013d835ce3779a5fc208261dbe10f55"
167
+ checksum = "91e195e091a93c46f7102ec7818a2aa394e1e1771c3ab4825963fa03e45afb8f"
168
+ dependencies = [
169
+ "core-foundation-sys",
170
+ "libc",
171
+ ]
90
172
 
91
173
  [[package]]
92
- name = "libc"
93
- version = "0.2.151"
174
+ name = "core-foundation-sys"
175
+ version = "0.8.6"
94
176
  source = "registry+https://github.com/rust-lang/crates.io-index"
95
- checksum = "302d7ab3130588088d277783b1e2d2e10c9e9e4a16dd9050e6ec93fb3e7048f4"
177
+ checksum = "06ea2b9bc92be3c2baa9334a323ebca2d6f074ff852cd1d7b11064035cd3868f"
96
178
 
97
179
  [[package]]
98
- name = "libloading"
99
- version = "0.8.1"
180
+ name = "encoding_rs"
181
+ version = "0.8.33"
100
182
  source = "registry+https://github.com/rust-lang/crates.io-index"
101
- checksum = "c571b676ddfc9a8c12f1f3d3085a7b163966a8fd8098a90640953ce5f6170161"
183
+ checksum = "7268b386296a025e474d5140678f75d6de9493ae55a5d709eeb9dd08149945e1"
102
184
  dependencies = [
103
185
  "cfg-if",
104
- "windows-sys",
105
186
  ]
106
187
 
107
188
  [[package]]
108
- name = "magnus"
109
- version = "0.6.2"
189
+ name = "equivalent"
190
+ version = "1.0.1"
110
191
  source = "registry+https://github.com/rust-lang/crates.io-index"
111
- checksum = "4778544796676e8428e9c622460ebf284bea52d8b10db3aeb449d8b5e61b3a13"
192
+ checksum = "5443807d6dff69373d433ab9ef5378ad8df50ca6298caf15de6e52e24aaf54d5"
193
+
194
+ [[package]]
195
+ name = "errno"
196
+ version = "0.3.8"
197
+ source = "registry+https://github.com/rust-lang/crates.io-index"
198
+ checksum = "a258e46cdc063eb8519c00b9fc845fc47bcfca4130e2f08e88665ceda8474245"
112
199
  dependencies = [
113
- "magnus-macros",
114
- "rb-sys",
115
- "rb-sys-env",
116
- "seq-macro",
200
+ "libc",
201
+ "windows-sys 0.52.0",
117
202
  ]
118
203
 
119
204
  [[package]]
120
- name = "magnus-macros"
121
- version = "0.6.0"
205
+ name = "fancy-regex"
206
+ version = "0.10.0"
122
207
  source = "registry+https://github.com/rust-lang/crates.io-index"
123
- checksum = "5968c820e2960565f647819f5928a42d6e874551cab9d88d75e3e0660d7f71e3"
208
+ checksum = "0678ab2d46fa5195aaf59ad034c083d351377d4af57f3e073c074d0da3e3c766"
124
209
  dependencies = [
125
- "proc-macro2",
126
- "quote",
127
- "syn",
210
+ "bit-set",
211
+ "regex",
128
212
  ]
129
213
 
130
214
  [[package]]
131
- name = "memchr"
132
- version = "2.7.1"
215
+ name = "fastrand"
216
+ version = "2.0.1"
133
217
  source = "registry+https://github.com/rust-lang/crates.io-index"
134
- checksum = "523dc4f511e55ab87b694dc30d0f820d60906ef06413f93d4d7a1385599cc149"
218
+ checksum = "25cbce373ec4653f1a01a31e8a5e5ec0c622dc27ff9c4e6606eefef5cbbed4a5"
135
219
 
136
220
  [[package]]
137
- name = "minimal-lexical"
138
- version = "0.2.1"
221
+ name = "fnv"
222
+ version = "1.0.7"
139
223
  source = "registry+https://github.com/rust-lang/crates.io-index"
140
- checksum = "68354c5c6bd36d73ff3feceb05efa59b6acb7626617f4962be322a825e61f79a"
224
+ checksum = "3f9eec918d3f24069decb9af1554cad7c880e2da24a9afd88aca000531ab82c1"
141
225
 
142
226
  [[package]]
143
- name = "nom"
144
- version = "7.1.3"
227
+ name = "foreign-types"
228
+ version = "0.3.2"
145
229
  source = "registry+https://github.com/rust-lang/crates.io-index"
146
- checksum = "d273983c5a657a70a3e8f2a01329822f3b8c8172b73826411a55751e404a0a4a"
230
+ checksum = "f6f339eb8adc052cd2ca78910fda869aefa38d22d5cb648e6485e4d3fc06f3b1"
147
231
  dependencies = [
148
- "memchr",
149
- "minimal-lexical",
232
+ "foreign-types-shared",
150
233
  ]
151
234
 
152
235
  [[package]]
153
- name = "peeking_take_while"
154
- version = "0.1.2"
236
+ name = "foreign-types-shared"
237
+ version = "0.1.1"
155
238
  source = "registry+https://github.com/rust-lang/crates.io-index"
156
- checksum = "19b17cddbe7ec3f8bc800887bab5e717348c95ea2ca0b1bf0837fb964dc67099"
239
+ checksum = "00b0228411908ca8685dba7fc2cdd70ec9990a6e753e89b6ac91a84c40fbaf4b"
157
240
 
158
241
  [[package]]
159
- name = "proc-macro2"
160
- version = "1.0.75"
242
+ name = "form_urlencoded"
243
+ version = "1.2.1"
161
244
  source = "registry+https://github.com/rust-lang/crates.io-index"
162
- checksum = "907a61bd0f64c2f29cd1cf1dc34d05176426a3f504a78010f08416ddb7b13708"
245
+ checksum = "e13624c2627564efccf4934284bdd98cbaa14e79b0b5a141218e507b3a823456"
163
246
  dependencies = [
164
- "unicode-ident",
247
+ "percent-encoding",
165
248
  ]
166
249
 
167
250
  [[package]]
168
- name = "quote"
169
- version = "1.0.35"
251
+ name = "futf"
252
+ version = "0.1.5"
170
253
  source = "registry+https://github.com/rust-lang/crates.io-index"
171
- checksum = "291ec9ab5efd934aaf503a6466c5d5251535d108ee747472c3977cc5acc868ef"
254
+ checksum = "df420e2e84819663797d1ec6544b13c5be84629e7bb00dc960d6917db2987843"
172
255
  dependencies = [
173
- "proc-macro2",
256
+ "mac",
257
+ "new_debug_unreachable",
174
258
  ]
175
259
 
176
260
  [[package]]
177
- name = "rb-sys"
178
- version = "0.9.86"
261
+ name = "futures-channel"
262
+ version = "0.3.30"
179
263
  source = "registry+https://github.com/rust-lang/crates.io-index"
180
- checksum = "7285f2a7b92f58ab198e3fd59a71d2861478f9c4642f41e83582385818941697"
264
+ checksum = "eac8f7d7865dcb88bd4373ab671c8cf4508703796caa2b1985a9ca867b3fcb78"
181
265
  dependencies = [
182
- "rb-sys-build",
266
+ "futures-core",
183
267
  ]
184
268
 
185
269
  [[package]]
186
- name = "rb-sys-build"
187
- version = "0.9.86"
270
+ name = "futures-core"
271
+ version = "0.3.30"
188
272
  source = "registry+https://github.com/rust-lang/crates.io-index"
189
- checksum = "71583945f94dabb6c0dfa63f1b71e929c1901e1e288ef3739ab8bed3b7069550"
190
- dependencies = [
191
- "bindgen",
192
- "lazy_static",
193
- "proc-macro2",
194
- "quote",
195
- "regex",
196
- "shell-words",
197
- "syn",
198
- ]
273
+ checksum = "dfc6580bb841c5a68e9ef15c77ccc837b40a7504914d52e47b8b0e9bbda25a1d"
199
274
 
200
275
  [[package]]
201
- name = "rb-sys-env"
202
- version = "0.1.2"
276
+ name = "futures-io"
277
+ version = "0.3.30"
203
278
  source = "registry+https://github.com/rust-lang/crates.io-index"
204
- checksum = "a35802679f07360454b418a5d1735c89716bde01d35b1560fc953c1415a0b3bb"
279
+ checksum = "a44623e20b9681a318efdd71c299b6b222ed6f231972bfe2f224ebad6311f0c1"
205
280
 
206
281
  [[package]]
207
- name = "regex"
208
- version = "1.10.2"
282
+ name = "futures-sink"
283
+ version = "0.3.30"
209
284
  source = "registry+https://github.com/rust-lang/crates.io-index"
210
- checksum = "380b951a9c5e80ddfd6136919eef32310721aa4aacd4889a8d39124b026ab343"
285
+ checksum = "9fb8e00e87438d937621c1c6269e53f536c14d3fbd6a042bb24879e57d474fb5"
286
+
287
+ [[package]]
288
+ name = "futures-task"
289
+ version = "0.3.30"
290
+ source = "registry+https://github.com/rust-lang/crates.io-index"
291
+ checksum = "38d84fa142264698cdce1a9f9172cf383a0c82de1bddcf3092901442c4097004"
292
+
293
+ [[package]]
294
+ name = "futures-util"
295
+ version = "0.3.30"
296
+ source = "registry+https://github.com/rust-lang/crates.io-index"
297
+ checksum = "3d6401deb83407ab3da39eba7e33987a73c3df0c82b4bb5813ee871c19c41d48"
211
298
  dependencies = [
212
- "aho-corasick",
299
+ "futures-core",
300
+ "futures-io",
301
+ "futures-task",
213
302
  "memchr",
214
- "regex-automata",
215
- "regex-syntax",
303
+ "pin-project-lite",
304
+ "pin-utils",
305
+ "slab",
216
306
  ]
217
307
 
218
308
  [[package]]
219
- name = "regex-automata"
220
- version = "0.4.3"
309
+ name = "getrandom"
310
+ version = "0.2.11"
221
311
  source = "registry+https://github.com/rust-lang/crates.io-index"
222
- checksum = "5f804c7828047e88b2d32e2d7fe5a105da8ee3264f01902f796c8e067dc2483f"
312
+ checksum = "fe9006bed769170c11f845cf00c7c1e9092aeb3f268e007c3e760ac68008070f"
223
313
  dependencies = [
224
- "aho-corasick",
225
- "memchr",
226
- "regex-syntax",
314
+ "cfg-if",
315
+ "libc",
316
+ "wasi",
227
317
  ]
228
318
 
229
319
  [[package]]
230
- name = "regex-syntax"
231
- version = "0.8.2"
320
+ name = "gimli"
321
+ version = "0.28.1"
232
322
  source = "registry+https://github.com/rust-lang/crates.io-index"
233
- checksum = "c08c74e62047bb2de4ff487b251e4a92e24f48745648451635cec7d591162d9f"
323
+ checksum = "4271d37baee1b8c7e4b708028c57d816cf9d2434acb33a549475f78c181f6253"
234
324
 
235
325
  [[package]]
236
- name = "rustc-hash"
237
- version = "1.1.0"
326
+ name = "glob"
327
+ version = "0.3.1"
238
328
  source = "registry+https://github.com/rust-lang/crates.io-index"
239
- checksum = "08d43f7aa6b08d49f382cde6a7982047c3426db949b1424bc4b7ec9ae12c6ce2"
329
+ checksum = "d2fabcfbdc87f4758337ca535fb41a6d701b65693ce38287d856d1674551ec9b"
240
330
 
241
331
  [[package]]
242
- name = "seq-macro"
243
- version = "0.3.5"
332
+ name = "h2"
333
+ version = "0.3.22"
244
334
  source = "registry+https://github.com/rust-lang/crates.io-index"
245
- checksum = "a3f0bf26fd526d2a95683cd0f87bf103b8539e2ca1ef48ce002d67aad59aa0b4"
335
+ checksum = "4d6250322ef6e60f93f9a2162799302cd6f68f79f6e5d85c8c16f14d1d958178"
336
+ dependencies = [
337
+ "bytes",
338
+ "fnv",
339
+ "futures-core",
340
+ "futures-sink",
341
+ "futures-util",
342
+ "http",
343
+ "indexmap 2.1.0",
344
+ "slab",
345
+ "tokio",
346
+ "tokio-util",
347
+ "tracing",
348
+ ]
246
349
 
247
350
  [[package]]
248
- name = "shell-words"
249
- version = "1.1.0"
351
+ name = "hashbrown"
352
+ version = "0.12.3"
250
353
  source = "registry+https://github.com/rust-lang/crates.io-index"
251
- checksum = "24188a676b6ae68c3b2cb3a01be17fbf7240ce009799bb56d5b1409051e78fde"
354
+ checksum = "8a9ee70c43aaf417c914396645a0fa852624801b24ebb7ae78fe8272889ac888"
252
355
 
253
356
  [[package]]
254
- name = "shlex"
255
- version = "1.2.0"
357
+ name = "hashbrown"
358
+ version = "0.14.3"
256
359
  source = "registry+https://github.com/rust-lang/crates.io-index"
257
- checksum = "a7cee0529a6d40f580e7a5e6c495c8fbfe21b7b52795ed4bb5e62cdf92bc6380"
360
+ checksum = "290f1a1d9242c78d09ce40a5e87e7554ee637af1351968159f4952f028f75604"
258
361
 
259
362
  [[package]]
260
- name = "syn"
261
- version = "2.0.47"
363
+ name = "hermit-abi"
364
+ version = "0.3.3"
262
365
  source = "registry+https://github.com/rust-lang/crates.io-index"
263
- checksum = "1726efe18f42ae774cc644f330953a5e7b3c3003d3edcecf18850fe9d4dd9afb"
366
+ checksum = "d77f7ec81a6d05a3abb01ab6eb7590f6083d08449fe5a1c8b1e620283546ccb7"
367
+
368
+ [[package]]
369
+ name = "html5ever"
370
+ version = "0.26.0"
371
+ source = "registry+https://github.com/rust-lang/crates.io-index"
372
+ checksum = "bea68cab48b8459f17cf1c944c67ddc572d272d9f2b274140f223ecb1da4a3b7"
264
373
  dependencies = [
374
+ "log",
375
+ "mac",
376
+ "markup5ever",
265
377
  "proc-macro2",
266
378
  "quote",
267
- "unicode-ident",
379
+ "syn 1.0.109",
268
380
  ]
269
381
 
270
382
  [[package]]
271
- name = "unicode-ident"
272
- version = "1.0.12"
383
+ name = "http"
384
+ version = "0.2.11"
273
385
  source = "registry+https://github.com/rust-lang/crates.io-index"
274
- checksum = "3354b9ac3fae1ff6755cb6db53683adb661634f67557942dea4facebec0fee4b"
386
+ checksum = "8947b1a6fad4393052c7ba1f4cd97bed3e953a95c79c92ad9b051a04611d9fbb"
387
+ dependencies = [
388
+ "bytes",
389
+ "fnv",
390
+ "itoa",
391
+ ]
275
392
 
276
393
  [[package]]
277
- name = "windows-sys"
278
- version = "0.48.0"
394
+ name = "http-body"
395
+ version = "0.4.6"
279
396
  source = "registry+https://github.com/rust-lang/crates.io-index"
280
- checksum = "677d2418bec65e3338edb076e806bc1ec15693c5d0104683f2efe857f61056a9"
397
+ checksum = "7ceab25649e9960c0311ea418d17bee82c0dcec1bd053b5f9a66e265a693bed2"
281
398
  dependencies = [
282
- "windows-targets",
399
+ "bytes",
400
+ "http",
401
+ "pin-project-lite",
283
402
  ]
284
403
 
285
404
  [[package]]
286
- name = "windows-targets"
287
- version = "0.48.5"
405
+ name = "httparse"
406
+ version = "1.8.0"
288
407
  source = "registry+https://github.com/rust-lang/crates.io-index"
289
- checksum = "9a2fa6e2155d7247be68c096456083145c183cbbbc2764150dda45a87197940c"
408
+ checksum = "d897f394bad6a705d5f4104762e116a75639e470d80901eed05a860a95cb1904"
409
+
410
+ [[package]]
411
+ name = "httpdate"
412
+ version = "1.0.3"
413
+ source = "registry+https://github.com/rust-lang/crates.io-index"
414
+ checksum = "df3b46402a9d5adb4c86a0cf463f42e19994e3ee891101b1841f30a545cb49a9"
415
+
416
+ [[package]]
417
+ name = "hyper"
418
+ version = "0.14.28"
419
+ source = "registry+https://github.com/rust-lang/crates.io-index"
420
+ checksum = "bf96e135eb83a2a8ddf766e426a841d8ddd7449d5f00d34ea02b41d2f19eef80"
290
421
  dependencies = [
291
- "windows_aarch64_gnullvm",
292
- "windows_aarch64_msvc",
293
- "windows_i686_gnu",
294
- "windows_i686_msvc",
295
- "windows_x86_64_gnu",
296
- "windows_x86_64_gnullvm",
297
- "windows_x86_64_msvc",
422
+ "bytes",
423
+ "futures-channel",
424
+ "futures-core",
425
+ "futures-util",
426
+ "h2",
427
+ "http",
428
+ "http-body",
429
+ "httparse",
430
+ "httpdate",
431
+ "itoa",
432
+ "pin-project-lite",
433
+ "socket2",
434
+ "tokio",
435
+ "tower-service",
436
+ "tracing",
437
+ "want",
298
438
  ]
299
439
 
300
440
  [[package]]
301
- name = "windows_aarch64_gnullvm"
302
- version = "0.48.5"
441
+ name = "hyper-tls"
442
+ version = "0.5.0"
303
443
  source = "registry+https://github.com/rust-lang/crates.io-index"
304
- checksum = "2b38e32f0abccf9987a4e3079dfb67dcd799fb61361e53e2882c3cbaf0d905d8"
444
+ checksum = "d6183ddfa99b85da61a140bea0efc93fdf56ceaa041b37d553518030827f9905"
445
+ dependencies = [
446
+ "bytes",
447
+ "hyper",
448
+ "native-tls",
449
+ "tokio",
450
+ "tokio-native-tls",
451
+ ]
305
452
 
306
453
  [[package]]
307
- name = "windows_aarch64_msvc"
308
- version = "0.48.5"
454
+ name = "idna"
455
+ version = "0.5.0"
309
456
  source = "registry+https://github.com/rust-lang/crates.io-index"
310
- checksum = "dc35310971f3b2dbbf3f0690a219f40e2d9afcf64f9ab7cc1be722937c26b4bc"
457
+ checksum = "634d9b1461af396cad843f47fdba5597a4f9e6ddd4bfb6ff5d85028c25cb12f6"
458
+ dependencies = [
459
+ "unicode-bidi",
460
+ "unicode-normalization",
461
+ ]
311
462
 
312
463
  [[package]]
313
- name = "windows_i686_gnu"
314
- version = "0.48.5"
464
+ name = "imageinfo"
465
+ version = "0.7.11"
315
466
  source = "registry+https://github.com/rust-lang/crates.io-index"
316
- checksum = "a75915e7def60c94dcef72200b9a8e58e5091744960da64ec734a6c6e9b3743e"
467
+ checksum = "64ef9b05bb592133fe69d66f5b5226551f2033244c3411ba4a94936c09cad5af"
468
+ dependencies = [
469
+ "regex",
470
+ "serde",
471
+ ]
317
472
 
318
473
  [[package]]
319
- name = "windows_i686_msvc"
320
- version = "0.48.5"
474
+ name = "indexmap"
475
+ version = "1.9.3"
321
476
  source = "registry+https://github.com/rust-lang/crates.io-index"
322
- checksum = "8f55c233f70c4b27f66c523580f78f1004e8b5a8b659e05a4eb49d4166cca406"
477
+ checksum = "bd070e393353796e801d209ad339e89596eb4c8d430d18ede6a1cced8fafbd99"
478
+ dependencies = [
479
+ "autocfg",
480
+ "hashbrown 0.12.3",
481
+ ]
323
482
 
324
483
  [[package]]
325
- name = "windows_x86_64_gnu"
326
- version = "0.48.5"
484
+ name = "indexmap"
485
+ version = "2.1.0"
327
486
  source = "registry+https://github.com/rust-lang/crates.io-index"
328
- checksum = "53d40abd2583d23e4718fddf1ebec84dbff8381c07cae67ff7768bbf19c6718e"
487
+ checksum = "d530e1a18b1cb4c484e6e34556a0d948706958449fca0cab753d649f2bce3d1f"
488
+ dependencies = [
489
+ "equivalent",
490
+ "hashbrown 0.14.3",
491
+ ]
329
492
 
330
493
  [[package]]
331
- name = "windows_x86_64_gnullvm"
332
- version = "0.48.5"
494
+ name = "internal"
495
+ version = "0.0.0"
496
+ dependencies = [
497
+ "magnus",
498
+ "rustextile",
499
+ ]
500
+
501
+ [[package]]
502
+ name = "ipnet"
503
+ version = "2.9.0"
333
504
  source = "registry+https://github.com/rust-lang/crates.io-index"
334
- checksum = "0b7b52767868a23d5bab768e390dc5f5c55825b6d30b86c844ff2dc7414044cc"
505
+ checksum = "8f518f335dce6725a761382244631d86cf0ccb2863413590b31338feb467f9c3"
335
506
 
336
507
  [[package]]
337
- name = "windows_x86_64_msvc"
338
- version = "0.48.5"
508
+ name = "itoa"
509
+ version = "1.0.10"
339
510
  source = "registry+https://github.com/rust-lang/crates.io-index"
340
- checksum = "ed94fce61571a4006852b7389a063ab983c02eb1bb37b47f8272ce92d06d9538"
511
+ checksum = "b1a46d1a171d865aa5f83f92695765caa047a9b4cbae2cbf37dbd613a793fd4c"
512
+
513
+ [[package]]
514
+ name = "js-sys"
515
+ version = "0.3.66"
516
+ source = "registry+https://github.com/rust-lang/crates.io-index"
517
+ checksum = "cee9c64da59eae3b50095c18d3e74f8b73c0b86d2792824ff01bbce68ba229ca"
518
+ dependencies = [
519
+ "wasm-bindgen",
520
+ ]
521
+
522
+ [[package]]
523
+ name = "lazy_static"
524
+ version = "1.4.0"
525
+ source = "registry+https://github.com/rust-lang/crates.io-index"
526
+ checksum = "e2abad23fbc42b3700f2f279844dc832adb2b2eb069b2df918f455c4e18cc646"
527
+
528
+ [[package]]
529
+ name = "lazycell"
530
+ version = "1.3.0"
531
+ source = "registry+https://github.com/rust-lang/crates.io-index"
532
+ checksum = "830d08ce1d1d941e6b30645f1a0eb5643013d835ce3779a5fc208261dbe10f55"
533
+
534
+ [[package]]
535
+ name = "libc"
536
+ version = "0.2.151"
537
+ source = "registry+https://github.com/rust-lang/crates.io-index"
538
+ checksum = "302d7ab3130588088d277783b1e2d2e10c9e9e4a16dd9050e6ec93fb3e7048f4"
539
+
540
+ [[package]]
541
+ name = "libloading"
542
+ version = "0.8.1"
543
+ source = "registry+https://github.com/rust-lang/crates.io-index"
544
+ checksum = "c571b676ddfc9a8c12f1f3d3085a7b163966a8fd8098a90640953ce5f6170161"
545
+ dependencies = [
546
+ "cfg-if",
547
+ "windows-sys 0.48.0",
548
+ ]
549
+
550
+ [[package]]
551
+ name = "linux-raw-sys"
552
+ version = "0.4.12"
553
+ source = "registry+https://github.com/rust-lang/crates.io-index"
554
+ checksum = "c4cd1a83af159aa67994778be9070f0ae1bd732942279cabb14f86f986a21456"
555
+
556
+ [[package]]
557
+ name = "lock_api"
558
+ version = "0.4.11"
559
+ source = "registry+https://github.com/rust-lang/crates.io-index"
560
+ checksum = "3c168f8615b12bc01f9c17e2eb0cc07dcae1940121185446edc3744920e8ef45"
561
+ dependencies = [
562
+ "autocfg",
563
+ "scopeguard",
564
+ ]
565
+
566
+ [[package]]
567
+ name = "log"
568
+ version = "0.4.20"
569
+ source = "registry+https://github.com/rust-lang/crates.io-index"
570
+ checksum = "b5e6163cb8c49088c2c36f57875e58ccd8c87c7427f7fbd50ea6710b2f3f2e8f"
571
+
572
+ [[package]]
573
+ name = "mac"
574
+ version = "0.1.1"
575
+ source = "registry+https://github.com/rust-lang/crates.io-index"
576
+ checksum = "c41e0c4fef86961ac6d6f8a82609f55f31b05e4fce149ac5710e439df7619ba4"
577
+
578
+ [[package]]
579
+ name = "magnus"
580
+ version = "0.6.2"
581
+ source = "registry+https://github.com/rust-lang/crates.io-index"
582
+ checksum = "4778544796676e8428e9c622460ebf284bea52d8b10db3aeb449d8b5e61b3a13"
583
+ dependencies = [
584
+ "magnus-macros",
585
+ "rb-sys",
586
+ "rb-sys-env",
587
+ "seq-macro",
588
+ ]
589
+
590
+ [[package]]
591
+ name = "magnus-macros"
592
+ version = "0.6.0"
593
+ source = "registry+https://github.com/rust-lang/crates.io-index"
594
+ checksum = "5968c820e2960565f647819f5928a42d6e874551cab9d88d75e3e0660d7f71e3"
595
+ dependencies = [
596
+ "proc-macro2",
597
+ "quote",
598
+ "syn 2.0.47",
599
+ ]
600
+
601
+ [[package]]
602
+ name = "maplit"
603
+ version = "1.0.2"
604
+ source = "registry+https://github.com/rust-lang/crates.io-index"
605
+ checksum = "3e2e65a1a2e43cfcb47a895c4c8b10d1f4a61097f9f254f183aee60cad9c651d"
606
+
607
+ [[package]]
608
+ name = "markup5ever"
609
+ version = "0.11.0"
610
+ source = "registry+https://github.com/rust-lang/crates.io-index"
611
+ checksum = "7a2629bb1404f3d34c2e921f21fd34ba00b206124c81f65c50b43b6aaefeb016"
612
+ dependencies = [
613
+ "log",
614
+ "phf",
615
+ "phf_codegen",
616
+ "string_cache",
617
+ "string_cache_codegen",
618
+ "tendril",
619
+ ]
620
+
621
+ [[package]]
622
+ name = "memchr"
623
+ version = "2.7.1"
624
+ source = "registry+https://github.com/rust-lang/crates.io-index"
625
+ checksum = "523dc4f511e55ab87b694dc30d0f820d60906ef06413f93d4d7a1385599cc149"
626
+
627
+ [[package]]
628
+ name = "mime"
629
+ version = "0.3.17"
630
+ source = "registry+https://github.com/rust-lang/crates.io-index"
631
+ checksum = "6877bb514081ee2a7ff5ef9de3281f14a4dd4bceac4c09388074a6b5df8a139a"
632
+
633
+ [[package]]
634
+ name = "minimal-lexical"
635
+ version = "0.2.1"
636
+ source = "registry+https://github.com/rust-lang/crates.io-index"
637
+ checksum = "68354c5c6bd36d73ff3feceb05efa59b6acb7626617f4962be322a825e61f79a"
638
+
639
+ [[package]]
640
+ name = "miniz_oxide"
641
+ version = "0.7.1"
642
+ source = "registry+https://github.com/rust-lang/crates.io-index"
643
+ checksum = "e7810e0be55b428ada41041c41f32c9f1a42817901b4ccf45fa3d4b6561e74c7"
644
+ dependencies = [
645
+ "adler",
646
+ ]
647
+
648
+ [[package]]
649
+ name = "mio"
650
+ version = "0.8.10"
651
+ source = "registry+https://github.com/rust-lang/crates.io-index"
652
+ checksum = "8f3d0b296e374a4e6f3c7b0a1f5a51d748a0d34c85e7dc48fc3fa9a87657fe09"
653
+ dependencies = [
654
+ "libc",
655
+ "wasi",
656
+ "windows-sys 0.48.0",
657
+ ]
658
+
659
+ [[package]]
660
+ name = "native-tls"
661
+ version = "0.2.11"
662
+ source = "registry+https://github.com/rust-lang/crates.io-index"
663
+ checksum = "07226173c32f2926027b63cce4bcd8076c3552846cbe7925f3aaffeac0a3b92e"
664
+ dependencies = [
665
+ "lazy_static",
666
+ "libc",
667
+ "log",
668
+ "openssl",
669
+ "openssl-probe",
670
+ "openssl-sys",
671
+ "schannel",
672
+ "security-framework",
673
+ "security-framework-sys",
674
+ "tempfile",
675
+ ]
676
+
677
+ [[package]]
678
+ name = "new_debug_unreachable"
679
+ version = "1.0.4"
680
+ source = "registry+https://github.com/rust-lang/crates.io-index"
681
+ checksum = "e4a24736216ec316047a1fc4252e27dabb04218aa4a3f37c6e7ddbf1f9782b54"
682
+
683
+ [[package]]
684
+ name = "nom"
685
+ version = "7.1.3"
686
+ source = "registry+https://github.com/rust-lang/crates.io-index"
687
+ checksum = "d273983c5a657a70a3e8f2a01329822f3b8c8172b73826411a55751e404a0a4a"
688
+ dependencies = [
689
+ "memchr",
690
+ "minimal-lexical",
691
+ ]
692
+
693
+ [[package]]
694
+ name = "num_cpus"
695
+ version = "1.16.0"
696
+ source = "registry+https://github.com/rust-lang/crates.io-index"
697
+ checksum = "4161fcb6d602d4d2081af7c3a45852d875a03dd337a6bfdd6e06407b61342a43"
698
+ dependencies = [
699
+ "hermit-abi",
700
+ "libc",
701
+ ]
702
+
703
+ [[package]]
704
+ name = "object"
705
+ version = "0.32.2"
706
+ source = "registry+https://github.com/rust-lang/crates.io-index"
707
+ checksum = "a6a622008b6e321afc04970976f62ee297fdbaa6f95318ca343e3eebb9648441"
708
+ dependencies = [
709
+ "memchr",
710
+ ]
711
+
712
+ [[package]]
713
+ name = "once_cell"
714
+ version = "1.19.0"
715
+ source = "registry+https://github.com/rust-lang/crates.io-index"
716
+ checksum = "3fdb12b2476b595f9358c5161aa467c2438859caa136dec86c26fdd2efe17b92"
717
+
718
+ [[package]]
719
+ name = "openssl"
720
+ version = "0.10.62"
721
+ source = "registry+https://github.com/rust-lang/crates.io-index"
722
+ checksum = "8cde4d2d9200ad5909f8dac647e29482e07c3a35de8a13fce7c9c7747ad9f671"
723
+ dependencies = [
724
+ "bitflags 2.4.1",
725
+ "cfg-if",
726
+ "foreign-types",
727
+ "libc",
728
+ "once_cell",
729
+ "openssl-macros",
730
+ "openssl-sys",
731
+ ]
732
+
733
+ [[package]]
734
+ name = "openssl-macros"
735
+ version = "0.1.1"
736
+ source = "registry+https://github.com/rust-lang/crates.io-index"
737
+ checksum = "a948666b637a0f465e8564c73e89d4dde00d72d4d473cc972f390fc3dcee7d9c"
738
+ dependencies = [
739
+ "proc-macro2",
740
+ "quote",
741
+ "syn 2.0.47",
742
+ ]
743
+
744
+ [[package]]
745
+ name = "openssl-probe"
746
+ version = "0.1.5"
747
+ source = "registry+https://github.com/rust-lang/crates.io-index"
748
+ checksum = "ff011a302c396a5197692431fc1948019154afc178baf7d8e37367442a4601cf"
749
+
750
+ [[package]]
751
+ name = "openssl-sys"
752
+ version = "0.9.98"
753
+ source = "registry+https://github.com/rust-lang/crates.io-index"
754
+ checksum = "c1665caf8ab2dc9aef43d1c0023bd904633a6a05cb30b0ad59bec2ae986e57a7"
755
+ dependencies = [
756
+ "cc",
757
+ "libc",
758
+ "pkg-config",
759
+ "vcpkg",
760
+ ]
761
+
762
+ [[package]]
763
+ name = "parking_lot"
764
+ version = "0.12.1"
765
+ source = "registry+https://github.com/rust-lang/crates.io-index"
766
+ checksum = "3742b2c103b9f06bc9fff0a37ff4912935851bee6d36f3c02bcc755bcfec228f"
767
+ dependencies = [
768
+ "lock_api",
769
+ "parking_lot_core",
770
+ ]
771
+
772
+ [[package]]
773
+ name = "parking_lot_core"
774
+ version = "0.9.9"
775
+ source = "registry+https://github.com/rust-lang/crates.io-index"
776
+ checksum = "4c42a9226546d68acdd9c0a280d17ce19bfe27a46bf68784e4066115788d008e"
777
+ dependencies = [
778
+ "cfg-if",
779
+ "libc",
780
+ "redox_syscall",
781
+ "smallvec",
782
+ "windows-targets 0.48.5",
783
+ ]
784
+
785
+ [[package]]
786
+ name = "peeking_take_while"
787
+ version = "0.1.2"
788
+ source = "registry+https://github.com/rust-lang/crates.io-index"
789
+ checksum = "19b17cddbe7ec3f8bc800887bab5e717348c95ea2ca0b1bf0837fb964dc67099"
790
+
791
+ [[package]]
792
+ name = "percent-encoding"
793
+ version = "2.3.1"
794
+ source = "registry+https://github.com/rust-lang/crates.io-index"
795
+ checksum = "e3148f5046208a5d56bcfc03053e3ca6334e51da8dfb19b6cdc8b306fae3283e"
796
+
797
+ [[package]]
798
+ name = "phf"
799
+ version = "0.10.1"
800
+ source = "registry+https://github.com/rust-lang/crates.io-index"
801
+ checksum = "fabbf1ead8a5bcbc20f5f8b939ee3f5b0f6f281b6ad3468b84656b658b455259"
802
+ dependencies = [
803
+ "phf_shared",
804
+ ]
805
+
806
+ [[package]]
807
+ name = "phf_codegen"
808
+ version = "0.10.0"
809
+ source = "registry+https://github.com/rust-lang/crates.io-index"
810
+ checksum = "4fb1c3a8bc4dd4e5cfce29b44ffc14bedd2ee294559a294e2a4d4c9e9a6a13cd"
811
+ dependencies = [
812
+ "phf_generator",
813
+ "phf_shared",
814
+ ]
815
+
816
+ [[package]]
817
+ name = "phf_generator"
818
+ version = "0.10.0"
819
+ source = "registry+https://github.com/rust-lang/crates.io-index"
820
+ checksum = "5d5285893bb5eb82e6aaf5d59ee909a06a16737a8970984dd7746ba9283498d6"
821
+ dependencies = [
822
+ "phf_shared",
823
+ "rand",
824
+ ]
825
+
826
+ [[package]]
827
+ name = "phf_shared"
828
+ version = "0.10.0"
829
+ source = "registry+https://github.com/rust-lang/crates.io-index"
830
+ checksum = "b6796ad771acdc0123d2a88dc428b5e38ef24456743ddb1744ed628f9815c096"
831
+ dependencies = [
832
+ "siphasher",
833
+ ]
834
+
835
+ [[package]]
836
+ name = "pin-project-lite"
837
+ version = "0.2.13"
838
+ source = "registry+https://github.com/rust-lang/crates.io-index"
839
+ checksum = "8afb450f006bf6385ca15ef45d71d2288452bc3683ce2e2cacc0d18e4be60b58"
840
+
841
+ [[package]]
842
+ name = "pin-utils"
843
+ version = "0.1.0"
844
+ source = "registry+https://github.com/rust-lang/crates.io-index"
845
+ checksum = "8b870d8c151b6f2fb93e84a13146138f05d02ed11c7e7c54f8826aaaf7c9f184"
846
+
847
+ [[package]]
848
+ name = "pkg-config"
849
+ version = "0.3.28"
850
+ source = "registry+https://github.com/rust-lang/crates.io-index"
851
+ checksum = "69d3587f8a9e599cc7ec2c00e331f71c4e69a5f9a4b8a6efd5b07466b9736f9a"
852
+
853
+ [[package]]
854
+ name = "ppv-lite86"
855
+ version = "0.2.17"
856
+ source = "registry+https://github.com/rust-lang/crates.io-index"
857
+ checksum = "5b40af805b3121feab8a3c29f04d8ad262fa8e0561883e7653e024ae4479e6de"
858
+
859
+ [[package]]
860
+ name = "precomputed-hash"
861
+ version = "0.1.1"
862
+ source = "registry+https://github.com/rust-lang/crates.io-index"
863
+ checksum = "925383efa346730478fb4838dbe9137d2a47675ad789c546d150a6e1dd4ab31c"
864
+
865
+ [[package]]
866
+ name = "proc-macro2"
867
+ version = "1.0.75"
868
+ source = "registry+https://github.com/rust-lang/crates.io-index"
869
+ checksum = "907a61bd0f64c2f29cd1cf1dc34d05176426a3f504a78010f08416ddb7b13708"
870
+ dependencies = [
871
+ "unicode-ident",
872
+ ]
873
+
874
+ [[package]]
875
+ name = "quote"
876
+ version = "1.0.35"
877
+ source = "registry+https://github.com/rust-lang/crates.io-index"
878
+ checksum = "291ec9ab5efd934aaf503a6466c5d5251535d108ee747472c3977cc5acc868ef"
879
+ dependencies = [
880
+ "proc-macro2",
881
+ ]
882
+
883
+ [[package]]
884
+ name = "rand"
885
+ version = "0.8.5"
886
+ source = "registry+https://github.com/rust-lang/crates.io-index"
887
+ checksum = "34af8d1a0e25924bc5b7c43c079c942339d8f0a8b57c39049bef581b46327404"
888
+ dependencies = [
889
+ "libc",
890
+ "rand_chacha",
891
+ "rand_core",
892
+ ]
893
+
894
+ [[package]]
895
+ name = "rand_chacha"
896
+ version = "0.3.1"
897
+ source = "registry+https://github.com/rust-lang/crates.io-index"
898
+ checksum = "e6c10a63a0fa32252be49d21e7709d4d4baf8d231c2dbce1eaa8141b9b127d88"
899
+ dependencies = [
900
+ "ppv-lite86",
901
+ "rand_core",
902
+ ]
903
+
904
+ [[package]]
905
+ name = "rand_core"
906
+ version = "0.6.4"
907
+ source = "registry+https://github.com/rust-lang/crates.io-index"
908
+ checksum = "ec0be4795e2f6a28069bec0b5ff3e2ac9bafc99e6a9a7dc3547996c5c816922c"
909
+ dependencies = [
910
+ "getrandom",
911
+ ]
912
+
913
+ [[package]]
914
+ name = "rb-sys"
915
+ version = "0.9.86"
916
+ source = "registry+https://github.com/rust-lang/crates.io-index"
917
+ checksum = "7285f2a7b92f58ab198e3fd59a71d2861478f9c4642f41e83582385818941697"
918
+ dependencies = [
919
+ "rb-sys-build",
920
+ ]
921
+
922
+ [[package]]
923
+ name = "rb-sys-build"
924
+ version = "0.9.86"
925
+ source = "registry+https://github.com/rust-lang/crates.io-index"
926
+ checksum = "71583945f94dabb6c0dfa63f1b71e929c1901e1e288ef3739ab8bed3b7069550"
927
+ dependencies = [
928
+ "bindgen",
929
+ "lazy_static",
930
+ "proc-macro2",
931
+ "quote",
932
+ "regex",
933
+ "shell-words",
934
+ "syn 2.0.47",
935
+ ]
936
+
937
+ [[package]]
938
+ name = "rb-sys-env"
939
+ version = "0.1.2"
940
+ source = "registry+https://github.com/rust-lang/crates.io-index"
941
+ checksum = "a35802679f07360454b418a5d1735c89716bde01d35b1560fc953c1415a0b3bb"
942
+
943
+ [[package]]
944
+ name = "redox_syscall"
945
+ version = "0.4.1"
946
+ source = "registry+https://github.com/rust-lang/crates.io-index"
947
+ checksum = "4722d768eff46b75989dd134e5c353f0d6296e5aaa3132e776cbdb56be7731aa"
948
+ dependencies = [
949
+ "bitflags 1.3.2",
950
+ ]
951
+
952
+ [[package]]
953
+ name = "regex"
954
+ version = "1.10.2"
955
+ source = "registry+https://github.com/rust-lang/crates.io-index"
956
+ checksum = "380b951a9c5e80ddfd6136919eef32310721aa4aacd4889a8d39124b026ab343"
957
+ dependencies = [
958
+ "aho-corasick",
959
+ "memchr",
960
+ "regex-automata",
961
+ "regex-syntax",
962
+ ]
963
+
964
+ [[package]]
965
+ name = "regex-automata"
966
+ version = "0.4.3"
967
+ source = "registry+https://github.com/rust-lang/crates.io-index"
968
+ checksum = "5f804c7828047e88b2d32e2d7fe5a105da8ee3264f01902f796c8e067dc2483f"
969
+ dependencies = [
970
+ "aho-corasick",
971
+ "memchr",
972
+ "regex-syntax",
973
+ ]
974
+
975
+ [[package]]
976
+ name = "regex-syntax"
977
+ version = "0.8.2"
978
+ source = "registry+https://github.com/rust-lang/crates.io-index"
979
+ checksum = "c08c74e62047bb2de4ff487b251e4a92e24f48745648451635cec7d591162d9f"
980
+
981
+ [[package]]
982
+ name = "reqwest"
983
+ version = "0.11.23"
984
+ source = "registry+https://github.com/rust-lang/crates.io-index"
985
+ checksum = "37b1ae8d9ac08420c66222fb9096fc5de435c3c48542bc5336c51892cffafb41"
986
+ dependencies = [
987
+ "base64",
988
+ "bytes",
989
+ "encoding_rs",
990
+ "futures-core",
991
+ "futures-util",
992
+ "h2",
993
+ "http",
994
+ "http-body",
995
+ "hyper",
996
+ "hyper-tls",
997
+ "ipnet",
998
+ "js-sys",
999
+ "log",
1000
+ "mime",
1001
+ "native-tls",
1002
+ "once_cell",
1003
+ "percent-encoding",
1004
+ "pin-project-lite",
1005
+ "serde",
1006
+ "serde_json",
1007
+ "serde_urlencoded",
1008
+ "system-configuration",
1009
+ "tokio",
1010
+ "tokio-native-tls",
1011
+ "tower-service",
1012
+ "url",
1013
+ "wasm-bindgen",
1014
+ "wasm-bindgen-futures",
1015
+ "web-sys",
1016
+ "winreg",
1017
+ ]
1018
+
1019
+ [[package]]
1020
+ name = "rustc-demangle"
1021
+ version = "0.1.23"
1022
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1023
+ checksum = "d626bb9dae77e28219937af045c257c28bfd3f69333c512553507f5f9798cb76"
1024
+
1025
+ [[package]]
1026
+ name = "rustc-hash"
1027
+ version = "1.1.0"
1028
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1029
+ checksum = "08d43f7aa6b08d49f382cde6a7982047c3426db949b1424bc4b7ec9ae12c6ce2"
1030
+
1031
+ [[package]]
1032
+ name = "rustextile"
1033
+ version = "1.0.2"
1034
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1035
+ checksum = "53a9141c1fd56a0e67c64968b45e81169366c94aa85a14e1029fa3c520d3e594"
1036
+ dependencies = [
1037
+ "ammonia",
1038
+ "fancy-regex",
1039
+ "imageinfo",
1040
+ "indexmap 1.9.3",
1041
+ "lazy_static",
1042
+ "percent-encoding",
1043
+ "reqwest",
1044
+ "url",
1045
+ ]
1046
+
1047
+ [[package]]
1048
+ name = "rustix"
1049
+ version = "0.38.28"
1050
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1051
+ checksum = "72e572a5e8ca657d7366229cdde4bd14c4eb5499a9573d4d366fe1b599daa316"
1052
+ dependencies = [
1053
+ "bitflags 2.4.1",
1054
+ "errno",
1055
+ "libc",
1056
+ "linux-raw-sys",
1057
+ "windows-sys 0.52.0",
1058
+ ]
1059
+
1060
+ [[package]]
1061
+ name = "ryu"
1062
+ version = "1.0.16"
1063
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1064
+ checksum = "f98d2aa92eebf49b69786be48e4477826b256916e84a57ff2a4f21923b48eb4c"
1065
+
1066
+ [[package]]
1067
+ name = "schannel"
1068
+ version = "0.1.23"
1069
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1070
+ checksum = "fbc91545643bcf3a0bbb6569265615222618bdf33ce4ffbbd13c4bbd4c093534"
1071
+ dependencies = [
1072
+ "windows-sys 0.52.0",
1073
+ ]
1074
+
1075
+ [[package]]
1076
+ name = "scopeguard"
1077
+ version = "1.2.0"
1078
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1079
+ checksum = "94143f37725109f92c262ed2cf5e59bce7498c01bcc1502d7b9afe439a4e9f49"
1080
+
1081
+ [[package]]
1082
+ name = "security-framework"
1083
+ version = "2.9.2"
1084
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1085
+ checksum = "05b64fb303737d99b81884b2c63433e9ae28abebe5eb5045dcdd175dc2ecf4de"
1086
+ dependencies = [
1087
+ "bitflags 1.3.2",
1088
+ "core-foundation",
1089
+ "core-foundation-sys",
1090
+ "libc",
1091
+ "security-framework-sys",
1092
+ ]
1093
+
1094
+ [[package]]
1095
+ name = "security-framework-sys"
1096
+ version = "2.9.1"
1097
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1098
+ checksum = "e932934257d3b408ed8f30db49d85ea163bfe74961f017f405b025af298f0c7a"
1099
+ dependencies = [
1100
+ "core-foundation-sys",
1101
+ "libc",
1102
+ ]
1103
+
1104
+ [[package]]
1105
+ name = "seq-macro"
1106
+ version = "0.3.5"
1107
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1108
+ checksum = "a3f0bf26fd526d2a95683cd0f87bf103b8539e2ca1ef48ce002d67aad59aa0b4"
1109
+
1110
+ [[package]]
1111
+ name = "serde"
1112
+ version = "1.0.194"
1113
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1114
+ checksum = "0b114498256798c94a0689e1a15fec6005dee8ac1f41de56404b67afc2a4b773"
1115
+ dependencies = [
1116
+ "serde_derive",
1117
+ ]
1118
+
1119
+ [[package]]
1120
+ name = "serde_derive"
1121
+ version = "1.0.194"
1122
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1123
+ checksum = "a3385e45322e8f9931410f01b3031ec534c3947d0e94c18049af4d9f9907d4e0"
1124
+ dependencies = [
1125
+ "proc-macro2",
1126
+ "quote",
1127
+ "syn 2.0.47",
1128
+ ]
1129
+
1130
+ [[package]]
1131
+ name = "serde_json"
1132
+ version = "1.0.111"
1133
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1134
+ checksum = "176e46fa42316f18edd598015a5166857fc835ec732f5215eac6b7bdbf0a84f4"
1135
+ dependencies = [
1136
+ "itoa",
1137
+ "ryu",
1138
+ "serde",
1139
+ ]
1140
+
1141
+ [[package]]
1142
+ name = "serde_urlencoded"
1143
+ version = "0.7.1"
1144
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1145
+ checksum = "d3491c14715ca2294c4d6a88f15e84739788c1d030eed8c110436aafdaa2f3fd"
1146
+ dependencies = [
1147
+ "form_urlencoded",
1148
+ "itoa",
1149
+ "ryu",
1150
+ "serde",
1151
+ ]
1152
+
1153
+ [[package]]
1154
+ name = "shell-words"
1155
+ version = "1.1.0"
1156
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1157
+ checksum = "24188a676b6ae68c3b2cb3a01be17fbf7240ce009799bb56d5b1409051e78fde"
1158
+
1159
+ [[package]]
1160
+ name = "shlex"
1161
+ version = "1.2.0"
1162
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1163
+ checksum = "a7cee0529a6d40f580e7a5e6c495c8fbfe21b7b52795ed4bb5e62cdf92bc6380"
1164
+
1165
+ [[package]]
1166
+ name = "siphasher"
1167
+ version = "0.3.11"
1168
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1169
+ checksum = "38b58827f4464d87d377d175e90bf58eb00fd8716ff0a62f80356b5e61555d0d"
1170
+
1171
+ [[package]]
1172
+ name = "slab"
1173
+ version = "0.4.9"
1174
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1175
+ checksum = "8f92a496fb766b417c996b9c5e57daf2f7ad3b0bebe1ccfca4856390e3d3bb67"
1176
+ dependencies = [
1177
+ "autocfg",
1178
+ ]
1179
+
1180
+ [[package]]
1181
+ name = "smallvec"
1182
+ version = "1.11.2"
1183
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1184
+ checksum = "4dccd0940a2dcdf68d092b8cbab7dc0ad8fa938bf95787e1b916b0e3d0e8e970"
1185
+
1186
+ [[package]]
1187
+ name = "socket2"
1188
+ version = "0.5.5"
1189
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1190
+ checksum = "7b5fac59a5cb5dd637972e5fca70daf0523c9067fcdc4842f053dae04a18f8e9"
1191
+ dependencies = [
1192
+ "libc",
1193
+ "windows-sys 0.48.0",
1194
+ ]
1195
+
1196
+ [[package]]
1197
+ name = "string_cache"
1198
+ version = "0.8.7"
1199
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1200
+ checksum = "f91138e76242f575eb1d3b38b4f1362f10d3a43f47d182a5b359af488a02293b"
1201
+ dependencies = [
1202
+ "new_debug_unreachable",
1203
+ "once_cell",
1204
+ "parking_lot",
1205
+ "phf_shared",
1206
+ "precomputed-hash",
1207
+ "serde",
1208
+ ]
1209
+
1210
+ [[package]]
1211
+ name = "string_cache_codegen"
1212
+ version = "0.5.2"
1213
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1214
+ checksum = "6bb30289b722be4ff74a408c3cc27edeaad656e06cb1fe8fa9231fa59c728988"
1215
+ dependencies = [
1216
+ "phf_generator",
1217
+ "phf_shared",
1218
+ "proc-macro2",
1219
+ "quote",
1220
+ ]
1221
+
1222
+ [[package]]
1223
+ name = "syn"
1224
+ version = "1.0.109"
1225
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1226
+ checksum = "72b64191b275b66ffe2469e8af2c1cfe3bafa67b529ead792a6d0160888b4237"
1227
+ dependencies = [
1228
+ "proc-macro2",
1229
+ "quote",
1230
+ "unicode-ident",
1231
+ ]
1232
+
1233
+ [[package]]
1234
+ name = "syn"
1235
+ version = "2.0.47"
1236
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1237
+ checksum = "1726efe18f42ae774cc644f330953a5e7b3c3003d3edcecf18850fe9d4dd9afb"
1238
+ dependencies = [
1239
+ "proc-macro2",
1240
+ "quote",
1241
+ "unicode-ident",
1242
+ ]
1243
+
1244
+ [[package]]
1245
+ name = "system-configuration"
1246
+ version = "0.5.1"
1247
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1248
+ checksum = "ba3a3adc5c275d719af8cb4272ea1c4a6d668a777f37e115f6d11ddbc1c8e0e7"
1249
+ dependencies = [
1250
+ "bitflags 1.3.2",
1251
+ "core-foundation",
1252
+ "system-configuration-sys",
1253
+ ]
1254
+
1255
+ [[package]]
1256
+ name = "system-configuration-sys"
1257
+ version = "0.5.0"
1258
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1259
+ checksum = "a75fb188eb626b924683e3b95e3a48e63551fcfb51949de2f06a9d91dbee93c9"
1260
+ dependencies = [
1261
+ "core-foundation-sys",
1262
+ "libc",
1263
+ ]
1264
+
1265
+ [[package]]
1266
+ name = "tempfile"
1267
+ version = "3.9.0"
1268
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1269
+ checksum = "01ce4141aa927a6d1bd34a041795abd0db1cccba5d5f24b009f694bdf3a1f3fa"
1270
+ dependencies = [
1271
+ "cfg-if",
1272
+ "fastrand",
1273
+ "redox_syscall",
1274
+ "rustix",
1275
+ "windows-sys 0.52.0",
1276
+ ]
1277
+
1278
+ [[package]]
1279
+ name = "tendril"
1280
+ version = "0.4.3"
1281
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1282
+ checksum = "d24a120c5fc464a3458240ee02c299ebcb9d67b5249c8848b09d639dca8d7bb0"
1283
+ dependencies = [
1284
+ "futf",
1285
+ "mac",
1286
+ "utf-8",
1287
+ ]
1288
+
1289
+ [[package]]
1290
+ name = "tinyvec"
1291
+ version = "1.6.0"
1292
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1293
+ checksum = "87cc5ceb3875bb20c2890005a4e226a4651264a5c75edb2421b52861a0a0cb50"
1294
+ dependencies = [
1295
+ "tinyvec_macros",
1296
+ ]
1297
+
1298
+ [[package]]
1299
+ name = "tinyvec_macros"
1300
+ version = "0.1.1"
1301
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1302
+ checksum = "1f3ccbac311fea05f86f61904b462b55fb3df8837a366dfc601a0161d0532f20"
1303
+
1304
+ [[package]]
1305
+ name = "tokio"
1306
+ version = "1.35.1"
1307
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1308
+ checksum = "c89b4efa943be685f629b149f53829423f8f5531ea21249408e8e2f8671ec104"
1309
+ dependencies = [
1310
+ "backtrace",
1311
+ "bytes",
1312
+ "libc",
1313
+ "mio",
1314
+ "num_cpus",
1315
+ "pin-project-lite",
1316
+ "socket2",
1317
+ "windows-sys 0.48.0",
1318
+ ]
1319
+
1320
+ [[package]]
1321
+ name = "tokio-native-tls"
1322
+ version = "0.3.1"
1323
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1324
+ checksum = "bbae76ab933c85776efabc971569dd6119c580d8f5d448769dec1764bf796ef2"
1325
+ dependencies = [
1326
+ "native-tls",
1327
+ "tokio",
1328
+ ]
1329
+
1330
+ [[package]]
1331
+ name = "tokio-util"
1332
+ version = "0.7.10"
1333
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1334
+ checksum = "5419f34732d9eb6ee4c3578b7989078579b7f039cbbb9ca2c4da015749371e15"
1335
+ dependencies = [
1336
+ "bytes",
1337
+ "futures-core",
1338
+ "futures-sink",
1339
+ "pin-project-lite",
1340
+ "tokio",
1341
+ "tracing",
1342
+ ]
1343
+
1344
+ [[package]]
1345
+ name = "tower-service"
1346
+ version = "0.3.2"
1347
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1348
+ checksum = "b6bc1c9ce2b5135ac7f93c72918fc37feb872bdc6a5533a8b85eb4b86bfdae52"
1349
+
1350
+ [[package]]
1351
+ name = "tracing"
1352
+ version = "0.1.40"
1353
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1354
+ checksum = "c3523ab5a71916ccf420eebdf5521fcef02141234bbc0b8a49f2fdc4544364ef"
1355
+ dependencies = [
1356
+ "pin-project-lite",
1357
+ "tracing-core",
1358
+ ]
1359
+
1360
+ [[package]]
1361
+ name = "tracing-core"
1362
+ version = "0.1.32"
1363
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1364
+ checksum = "c06d3da6113f116aaee68e4d601191614c9053067f9ab7f6edbcb161237daa54"
1365
+ dependencies = [
1366
+ "once_cell",
1367
+ ]
1368
+
1369
+ [[package]]
1370
+ name = "try-lock"
1371
+ version = "0.2.5"
1372
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1373
+ checksum = "e421abadd41a4225275504ea4d6566923418b7f05506fbc9c0fe86ba7396114b"
1374
+
1375
+ [[package]]
1376
+ name = "unicode-bidi"
1377
+ version = "0.3.14"
1378
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1379
+ checksum = "6f2528f27a9eb2b21e69c95319b30bd0efd85d09c379741b0f78ea1d86be2416"
1380
+
1381
+ [[package]]
1382
+ name = "unicode-ident"
1383
+ version = "1.0.12"
1384
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1385
+ checksum = "3354b9ac3fae1ff6755cb6db53683adb661634f67557942dea4facebec0fee4b"
1386
+
1387
+ [[package]]
1388
+ name = "unicode-normalization"
1389
+ version = "0.1.22"
1390
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1391
+ checksum = "5c5713f0fc4b5db668a2ac63cdb7bb4469d8c9fed047b1d0292cc7b0ce2ba921"
1392
+ dependencies = [
1393
+ "tinyvec",
1394
+ ]
1395
+
1396
+ [[package]]
1397
+ name = "url"
1398
+ version = "2.5.0"
1399
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1400
+ checksum = "31e6302e3bb753d46e83516cae55ae196fc0c309407cf11ab35cc51a4c2a4633"
1401
+ dependencies = [
1402
+ "form_urlencoded",
1403
+ "idna",
1404
+ "percent-encoding",
1405
+ ]
1406
+
1407
+ [[package]]
1408
+ name = "utf-8"
1409
+ version = "0.7.6"
1410
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1411
+ checksum = "09cc8ee72d2a9becf2f2febe0205bbed8fc6615b7cb429ad062dc7b7ddd036a9"
1412
+
1413
+ [[package]]
1414
+ name = "vcpkg"
1415
+ version = "0.2.15"
1416
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1417
+ checksum = "accd4ea62f7bb7a82fe23066fb0957d48ef677f6eeb8215f372f52e48bb32426"
1418
+
1419
+ [[package]]
1420
+ name = "want"
1421
+ version = "0.3.1"
1422
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1423
+ checksum = "bfa7760aed19e106de2c7c0b581b509f2f25d3dacaf737cb82ac61bc6d760b0e"
1424
+ dependencies = [
1425
+ "try-lock",
1426
+ ]
1427
+
1428
+ [[package]]
1429
+ name = "wasi"
1430
+ version = "0.11.0+wasi-snapshot-preview1"
1431
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1432
+ checksum = "9c8d87e72b64a3b4db28d11ce29237c246188f4f51057d65a7eab63b7987e423"
1433
+
1434
+ [[package]]
1435
+ name = "wasm-bindgen"
1436
+ version = "0.2.89"
1437
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1438
+ checksum = "0ed0d4f68a3015cc185aff4db9506a015f4b96f95303897bfa23f846db54064e"
1439
+ dependencies = [
1440
+ "cfg-if",
1441
+ "wasm-bindgen-macro",
1442
+ ]
1443
+
1444
+ [[package]]
1445
+ name = "wasm-bindgen-backend"
1446
+ version = "0.2.89"
1447
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1448
+ checksum = "1b56f625e64f3a1084ded111c4d5f477df9f8c92df113852fa5a374dbda78826"
1449
+ dependencies = [
1450
+ "bumpalo",
1451
+ "log",
1452
+ "once_cell",
1453
+ "proc-macro2",
1454
+ "quote",
1455
+ "syn 2.0.47",
1456
+ "wasm-bindgen-shared",
1457
+ ]
1458
+
1459
+ [[package]]
1460
+ name = "wasm-bindgen-futures"
1461
+ version = "0.4.39"
1462
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1463
+ checksum = "ac36a15a220124ac510204aec1c3e5db8a22ab06fd6706d881dc6149f8ed9a12"
1464
+ dependencies = [
1465
+ "cfg-if",
1466
+ "js-sys",
1467
+ "wasm-bindgen",
1468
+ "web-sys",
1469
+ ]
1470
+
1471
+ [[package]]
1472
+ name = "wasm-bindgen-macro"
1473
+ version = "0.2.89"
1474
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1475
+ checksum = "0162dbf37223cd2afce98f3d0785506dcb8d266223983e4b5b525859e6e182b2"
1476
+ dependencies = [
1477
+ "quote",
1478
+ "wasm-bindgen-macro-support",
1479
+ ]
1480
+
1481
+ [[package]]
1482
+ name = "wasm-bindgen-macro-support"
1483
+ version = "0.2.89"
1484
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1485
+ checksum = "f0eb82fcb7930ae6219a7ecfd55b217f5f0893484b7a13022ebb2b2bf20b5283"
1486
+ dependencies = [
1487
+ "proc-macro2",
1488
+ "quote",
1489
+ "syn 2.0.47",
1490
+ "wasm-bindgen-backend",
1491
+ "wasm-bindgen-shared",
1492
+ ]
1493
+
1494
+ [[package]]
1495
+ name = "wasm-bindgen-shared"
1496
+ version = "0.2.89"
1497
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1498
+ checksum = "7ab9b36309365056cd639da3134bf87fa8f3d86008abf99e612384a6eecd459f"
1499
+
1500
+ [[package]]
1501
+ name = "web-sys"
1502
+ version = "0.3.66"
1503
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1504
+ checksum = "50c24a44ec86bb68fbecd1b3efed7e85ea5621b39b35ef2766b66cd984f8010f"
1505
+ dependencies = [
1506
+ "js-sys",
1507
+ "wasm-bindgen",
1508
+ ]
1509
+
1510
+ [[package]]
1511
+ name = "windows-sys"
1512
+ version = "0.48.0"
1513
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1514
+ checksum = "677d2418bec65e3338edb076e806bc1ec15693c5d0104683f2efe857f61056a9"
1515
+ dependencies = [
1516
+ "windows-targets 0.48.5",
1517
+ ]
1518
+
1519
+ [[package]]
1520
+ name = "windows-sys"
1521
+ version = "0.52.0"
1522
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1523
+ checksum = "282be5f36a8ce781fad8c8ae18fa3f9beff57ec1b52cb3de0789201425d9a33d"
1524
+ dependencies = [
1525
+ "windows-targets 0.52.0",
1526
+ ]
1527
+
1528
+ [[package]]
1529
+ name = "windows-targets"
1530
+ version = "0.48.5"
1531
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1532
+ checksum = "9a2fa6e2155d7247be68c096456083145c183cbbbc2764150dda45a87197940c"
1533
+ dependencies = [
1534
+ "windows_aarch64_gnullvm 0.48.5",
1535
+ "windows_aarch64_msvc 0.48.5",
1536
+ "windows_i686_gnu 0.48.5",
1537
+ "windows_i686_msvc 0.48.5",
1538
+ "windows_x86_64_gnu 0.48.5",
1539
+ "windows_x86_64_gnullvm 0.48.5",
1540
+ "windows_x86_64_msvc 0.48.5",
1541
+ ]
1542
+
1543
+ [[package]]
1544
+ name = "windows-targets"
1545
+ version = "0.52.0"
1546
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1547
+ checksum = "8a18201040b24831fbb9e4eb208f8892e1f50a37feb53cc7ff887feb8f50e7cd"
1548
+ dependencies = [
1549
+ "windows_aarch64_gnullvm 0.52.0",
1550
+ "windows_aarch64_msvc 0.52.0",
1551
+ "windows_i686_gnu 0.52.0",
1552
+ "windows_i686_msvc 0.52.0",
1553
+ "windows_x86_64_gnu 0.52.0",
1554
+ "windows_x86_64_gnullvm 0.52.0",
1555
+ "windows_x86_64_msvc 0.52.0",
1556
+ ]
1557
+
1558
+ [[package]]
1559
+ name = "windows_aarch64_gnullvm"
1560
+ version = "0.48.5"
1561
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1562
+ checksum = "2b38e32f0abccf9987a4e3079dfb67dcd799fb61361e53e2882c3cbaf0d905d8"
1563
+
1564
+ [[package]]
1565
+ name = "windows_aarch64_gnullvm"
1566
+ version = "0.52.0"
1567
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1568
+ checksum = "cb7764e35d4db8a7921e09562a0304bf2f93e0a51bfccee0bd0bb0b666b015ea"
1569
+
1570
+ [[package]]
1571
+ name = "windows_aarch64_msvc"
1572
+ version = "0.48.5"
1573
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1574
+ checksum = "dc35310971f3b2dbbf3f0690a219f40e2d9afcf64f9ab7cc1be722937c26b4bc"
1575
+
1576
+ [[package]]
1577
+ name = "windows_aarch64_msvc"
1578
+ version = "0.52.0"
1579
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1580
+ checksum = "bbaa0368d4f1d2aaefc55b6fcfee13f41544ddf36801e793edbbfd7d7df075ef"
1581
+
1582
+ [[package]]
1583
+ name = "windows_i686_gnu"
1584
+ version = "0.48.5"
1585
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1586
+ checksum = "a75915e7def60c94dcef72200b9a8e58e5091744960da64ec734a6c6e9b3743e"
1587
+
1588
+ [[package]]
1589
+ name = "windows_i686_gnu"
1590
+ version = "0.52.0"
1591
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1592
+ checksum = "a28637cb1fa3560a16915793afb20081aba2c92ee8af57b4d5f28e4b3e7df313"
1593
+
1594
+ [[package]]
1595
+ name = "windows_i686_msvc"
1596
+ version = "0.48.5"
1597
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1598
+ checksum = "8f55c233f70c4b27f66c523580f78f1004e8b5a8b659e05a4eb49d4166cca406"
1599
+
1600
+ [[package]]
1601
+ name = "windows_i686_msvc"
1602
+ version = "0.52.0"
1603
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1604
+ checksum = "ffe5e8e31046ce6230cc7215707b816e339ff4d4d67c65dffa206fd0f7aa7b9a"
1605
+
1606
+ [[package]]
1607
+ name = "windows_x86_64_gnu"
1608
+ version = "0.48.5"
1609
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1610
+ checksum = "53d40abd2583d23e4718fddf1ebec84dbff8381c07cae67ff7768bbf19c6718e"
1611
+
1612
+ [[package]]
1613
+ name = "windows_x86_64_gnu"
1614
+ version = "0.52.0"
1615
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1616
+ checksum = "3d6fa32db2bc4a2f5abeacf2b69f7992cd09dca97498da74a151a3132c26befd"
1617
+
1618
+ [[package]]
1619
+ name = "windows_x86_64_gnullvm"
1620
+ version = "0.48.5"
1621
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1622
+ checksum = "0b7b52767868a23d5bab768e390dc5f5c55825b6d30b86c844ff2dc7414044cc"
1623
+
1624
+ [[package]]
1625
+ name = "windows_x86_64_gnullvm"
1626
+ version = "0.52.0"
1627
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1628
+ checksum = "1a657e1e9d3f514745a572a6846d3c7aa7dbe1658c056ed9c3344c4109a6949e"
1629
+
1630
+ [[package]]
1631
+ name = "windows_x86_64_msvc"
1632
+ version = "0.48.5"
1633
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1634
+ checksum = "ed94fce61571a4006852b7389a063ab983c02eb1bb37b47f8272ce92d06d9538"
1635
+
1636
+ [[package]]
1637
+ name = "windows_x86_64_msvc"
1638
+ version = "0.52.0"
1639
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1640
+ checksum = "dff9641d1cd4be8d1a070daf9e3773c5f67e78b4d9d42263020c057706765c04"
1641
+
1642
+ [[package]]
1643
+ name = "winreg"
1644
+ version = "0.50.0"
1645
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1646
+ checksum = "524e57b2c537c0f9b1e69f1965311ec12182b4122e45035b1508cd24d2adadb1"
1647
+ dependencies = [
1648
+ "cfg-if",
1649
+ "windows-sys 0.48.0",
1650
+ ]