blob: 70e48525130530326e17340a323b3be4f32cc42a [file] [log] [blame]
Jing Luba67ca72023-07-18 04:55:56 -07001# Part of the Crubit project, under the Apache License v2.0 with LLVM
2# Exceptions. See /LICENSE for license information.
3# SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
4
5# This file is automatically @generated by Cargo.
6# It is not intended for manual editing.
7version = 3
8
9[[package]]
Jing Lu04f9f5c2023-07-27 11:09:26 -070010name = "aho-corasick"
11version = "1.0.2"
12source = "registry+https://github.com/rust-lang/crates.io-index"
13checksum = "43f6cb1bf222025340178f382c426f13757b2960e89779dfcb319c32542a5a41"
14dependencies = [
15 "memchr",
16]
17
18[[package]]
Jing Luba67ca72023-07-18 04:55:56 -070019name = "anstream"
20version = "0.3.2"
21source = "registry+https://github.com/rust-lang/crates.io-index"
22checksum = "0ca84f3628370c59db74ee214b3263d58f9aadd9b4fe7e711fd87dc452b7f163"
23dependencies = [
24 "anstyle",
25 "anstyle-parse",
26 "anstyle-query",
27 "anstyle-wincon",
28 "colorchoice",
29 "is-terminal",
30 "utf8parse",
31]
32
33[[package]]
34name = "anstyle"
35version = "1.0.1"
36source = "registry+https://github.com/rust-lang/crates.io-index"
37checksum = "3a30da5c5f2d5e72842e00bcb57657162cdabef0931f40e2deb9b4140440cecd"
38
39[[package]]
40name = "anstyle-parse"
41version = "0.2.1"
42source = "registry+https://github.com/rust-lang/crates.io-index"
43checksum = "938874ff5980b03a87c5524b3ae5b59cf99b1d6bc836848df7bc5ada9643c333"
44dependencies = [
45 "utf8parse",
46]
47
48[[package]]
49name = "anstyle-query"
50version = "1.0.0"
51source = "registry+https://github.com/rust-lang/crates.io-index"
52checksum = "5ca11d4be1bab0c8bc8734a9aa7bf4ee8316d462a08c6ac5052f888fef5b494b"
53dependencies = [
Jing Lu04f9f5c2023-07-27 11:09:26 -070054 "windows-sys 0.48.0",
Jing Luba67ca72023-07-18 04:55:56 -070055]
56
57[[package]]
58name = "anstyle-wincon"
59version = "1.0.1"
60source = "registry+https://github.com/rust-lang/crates.io-index"
61checksum = "180abfa45703aebe0093f79badacc01b8fd4ea2e35118747e5811127f926e188"
62dependencies = [
63 "anstyle",
Jing Lu04f9f5c2023-07-27 11:09:26 -070064 "windows-sys 0.48.0",
Jing Luba67ca72023-07-18 04:55:56 -070065]
66
67[[package]]
68name = "anyhow"
69version = "1.0.72"
70source = "registry+https://github.com/rust-lang/crates.io-index"
71checksum = "3b13c32d80ecc7ab747b80c3784bce54ee8a7a0cc4fbda9bf4cda2cf6fe90854"
72
73[[package]]
74name = "autocfg"
75version = "1.1.0"
76source = "registry+https://github.com/rust-lang/crates.io-index"
77checksum = "d468802bab17cbc0cc575e9b053f41e72aa36bfa6b7f55e3529ffa43161b97fa"
78
79[[package]]
80name = "bitflags"
81version = "1.3.2"
82source = "registry+https://github.com/rust-lang/crates.io-index"
83checksum = "bef38d45163c2f1dde094a7dfd33ccf595c92905c8f8f4fdc18d06fb1037718a"
84
85[[package]]
86name = "bitflags"
87version = "2.3.3"
88source = "registry+https://github.com/rust-lang/crates.io-index"
89checksum = "630be753d4e58660abd17930c71b647fe46c27ea6b63cc59e1e3851406972e42"
90
91[[package]]
92name = "cc"
93version = "1.0.79"
94source = "registry+https://github.com/rust-lang/crates.io-index"
95checksum = "50d30906286121d95be3d479533b458f87493b30a4b5f79a607db8f5d11aa91f"
96
97[[package]]
98name = "cfg-if"
99version = "1.0.0"
100source = "registry+https://github.com/rust-lang/crates.io-index"
101checksum = "baf1de4339761588bc0619e3cbc0120ee582ebb74b53b4efbf79117bd2da40fd"
102
103[[package]]
104name = "clap"
105version = "4.3.14"
106source = "registry+https://github.com/rust-lang/crates.io-index"
107checksum = "98330784c494e49850cb23b8e2afcca13587d2500b2e3f1f78ae20248059c9be"
108dependencies = [
109 "clap_builder",
110 "clap_derive",
111 "once_cell",
112]
113
114[[package]]
115name = "clap_builder"
116version = "4.3.14"
117source = "registry+https://github.com/rust-lang/crates.io-index"
118checksum = "e182eb5f2562a67dda37e2c57af64d720a9e010c5e860ed87c056586aeafa52e"
119dependencies = [
120 "anstream",
121 "anstyle",
122 "clap_lex",
123 "strsim",
124]
125
126[[package]]
127name = "clap_derive"
128version = "4.3.12"
129source = "registry+https://github.com/rust-lang/crates.io-index"
130checksum = "54a9bb5758fc5dfe728d1019941681eccaf0cf8a4189b692a0ee2f2ecf90a050"
131dependencies = [
132 "heck 0.4.1",
133 "proc-macro2",
134 "quote",
135 "syn 2.0.26",
136]
137
138[[package]]
139name = "clap_lex"
140version = "0.5.0"
141source = "registry+https://github.com/rust-lang/crates.io-index"
142checksum = "2da6da31387c7e4ef160ffab6d5e7f00c42626fe39aea70a7b0f1773f7dd6c1b"
143
144[[package]]
145name = "colorchoice"
146version = "1.0.0"
147source = "registry+https://github.com/rust-lang/crates.io-index"
148checksum = "acbf1af155f9b9ef647e42cdc158db4b64a1b61f743629225fde6f3e0be2a7c7"
149
150[[package]]
151name = "crossbeam-utils"
152version = "0.8.16"
153source = "registry+https://github.com/rust-lang/crates.io-index"
154checksum = "5a22b2d63d4d1dc0b7f1b6b2747dd0088008a9be28b6ddf0b1e7d335e3037294"
155dependencies = [
156 "cfg-if",
157]
158
159[[package]]
160name = "direct-cargo-bazel-deps"
161version = "0.0.1"
162dependencies = [
163 "anyhow",
164 "clap",
165 "either",
166 "flagset",
167 "itertools",
168 "maplit",
169 "memoffset",
170 "once_cell",
171 "pin-project",
172 "proc-macro2",
173 "quote",
Jing Lu04f9f5c2023-07-27 11:09:26 -0700174 "regex",
Jing Luba67ca72023-07-18 04:55:56 -0700175 "salsa",
176 "serde",
177 "serde_json",
178 "static_assertions",
Jing Lu04f9f5c2023-07-27 11:09:26 -0700179 "syn 2.0.26",
180 "tempfile",
Jing Luba67ca72023-07-18 04:55:56 -0700181 "unicode-ident",
182]
183
184[[package]]
185name = "either"
186version = "1.8.1"
187source = "registry+https://github.com/rust-lang/crates.io-index"
188checksum = "7fcaabb2fef8c910e7f4c7ce9f67a1283a1715879a7c230ca9d6d1ae31f16d91"
189
190[[package]]
191name = "errno"
192version = "0.3.1"
193source = "registry+https://github.com/rust-lang/crates.io-index"
194checksum = "4bcfec3a70f97c962c307b2d2c56e358cf1d00b558d74262b5f929ee8cc7e73a"
195dependencies = [
196 "errno-dragonfly",
197 "libc",
Jing Lu04f9f5c2023-07-27 11:09:26 -0700198 "windows-sys 0.48.0",
Jing Luba67ca72023-07-18 04:55:56 -0700199]
200
201[[package]]
202name = "errno-dragonfly"
203version = "0.1.2"
204source = "registry+https://github.com/rust-lang/crates.io-index"
205checksum = "aa68f1b12764fab894d2755d2518754e71b4fd80ecfb822714a1206c2aab39bf"
206dependencies = [
207 "cc",
208 "libc",
209]
210
211[[package]]
Jing Lu04f9f5c2023-07-27 11:09:26 -0700212name = "fastrand"
213version = "1.9.0"
214source = "registry+https://github.com/rust-lang/crates.io-index"
215checksum = "e51093e27b0797c359783294ca4f0a911c270184cb10f85783b118614a1501be"
216dependencies = [
217 "instant",
218]
219
220[[package]]
Jing Luba67ca72023-07-18 04:55:56 -0700221name = "flagset"
222version = "0.4.3"
223source = "registry+https://github.com/rust-lang/crates.io-index"
224checksum = "cda653ca797810c02f7ca4b804b40b8b95ae046eb989d356bce17919a8c25499"
225
226[[package]]
227name = "hashbrown"
228version = "0.12.3"
229source = "registry+https://github.com/rust-lang/crates.io-index"
230checksum = "8a9ee70c43aaf417c914396645a0fa852624801b24ebb7ae78fe8272889ac888"
231
232[[package]]
233name = "heck"
234version = "0.3.3"
235source = "registry+https://github.com/rust-lang/crates.io-index"
236checksum = "6d621efb26863f0e9924c6ac577e8275e5e6b77455db64ffa6c65c904e9e132c"
237dependencies = [
238 "unicode-segmentation",
239]
240
241[[package]]
242name = "heck"
243version = "0.4.1"
244source = "registry+https://github.com/rust-lang/crates.io-index"
245checksum = "95505c38b4572b2d910cecb0281560f54b440a19336cbbcb27bf6ce6adc6f5a8"
246
247[[package]]
248name = "hermit-abi"
249version = "0.3.2"
250source = "registry+https://github.com/rust-lang/crates.io-index"
251checksum = "443144c8cdadd93ebf52ddb4056d257f5b52c04d3c804e657d19eb73fc33668b"
252
253[[package]]
254name = "indexmap"
255version = "1.9.3"
256source = "registry+https://github.com/rust-lang/crates.io-index"
257checksum = "bd070e393353796e801d209ad339e89596eb4c8d430d18ede6a1cced8fafbd99"
258dependencies = [
259 "autocfg",
260 "hashbrown",
261]
262
263[[package]]
264name = "instant"
265version = "0.1.12"
266source = "registry+https://github.com/rust-lang/crates.io-index"
267checksum = "7a5bbe824c507c5da5956355e86a746d82e0e1464f65d862cc5e71da70e94b2c"
268dependencies = [
269 "cfg-if",
270]
271
272[[package]]
Jing Lu04f9f5c2023-07-27 11:09:26 -0700273name = "io-lifetimes"
274version = "1.0.11"
275source = "registry+https://github.com/rust-lang/crates.io-index"
276checksum = "eae7b9aee968036d54dce06cebaefd919e4472e753296daccd6d344e3e2df0c2"
277dependencies = [
278 "hermit-abi",
279 "libc",
280 "windows-sys 0.48.0",
281]
282
283[[package]]
Jing Luba67ca72023-07-18 04:55:56 -0700284name = "is-terminal"
285version = "0.4.9"
286source = "registry+https://github.com/rust-lang/crates.io-index"
287checksum = "cb0889898416213fab133e1d33a0e5858a48177452750691bde3666d0fdbaf8b"
288dependencies = [
289 "hermit-abi",
Jing Lu04f9f5c2023-07-27 11:09:26 -0700290 "rustix 0.38.4",
291 "windows-sys 0.48.0",
Jing Luba67ca72023-07-18 04:55:56 -0700292]
293
294[[package]]
295name = "itertools"
296version = "0.11.0"
297source = "registry+https://github.com/rust-lang/crates.io-index"
298checksum = "b1c173a5686ce8bfa551b3563d0c2170bf24ca44da99c7ca4bfdab5418c3fe57"
299dependencies = [
300 "either",
301]
302
303[[package]]
304name = "itoa"
305version = "1.0.9"
306source = "registry+https://github.com/rust-lang/crates.io-index"
307checksum = "af150ab688ff2122fcef229be89cb50dd66af9e01a4ff320cc137eecc9bacc38"
308
309[[package]]
310name = "libc"
311version = "0.2.147"
312source = "registry+https://github.com/rust-lang/crates.io-index"
313checksum = "b4668fb0ea861c1df094127ac5f1da3409a82116a4ba74fca2e58ef927159bb3"
314
315[[package]]
316name = "linux-raw-sys"
Jing Lu04f9f5c2023-07-27 11:09:26 -0700317version = "0.1.4"
318source = "registry+https://github.com/rust-lang/crates.io-index"
319checksum = "f051f77a7c8e6957c0696eac88f26b0117e54f52d3fc682ab19397a8812846a4"
320
321[[package]]
322name = "linux-raw-sys"
Jing Luba67ca72023-07-18 04:55:56 -0700323version = "0.4.3"
324source = "registry+https://github.com/rust-lang/crates.io-index"
325checksum = "09fc20d2ca12cb9f044c93e3bd6d32d523e6e2ec3db4f7b2939cd99026ecd3f0"
326
327[[package]]
328name = "lock_api"
329version = "0.4.10"
330source = "registry+https://github.com/rust-lang/crates.io-index"
331checksum = "c1cc9717a20b1bb222f333e6a92fd32f7d8a18ddc5a3191a11af45dcbf4dcd16"
332dependencies = [
333 "autocfg",
334 "scopeguard",
335]
336
337[[package]]
338name = "log"
339version = "0.4.19"
340source = "registry+https://github.com/rust-lang/crates.io-index"
341checksum = "b06a4cde4c0f271a446782e3eff8de789548ce57dbc8eca9292c27f4a42004b4"
342
343[[package]]
344name = "maplit"
345version = "1.0.2"
346source = "registry+https://github.com/rust-lang/crates.io-index"
347checksum = "3e2e65a1a2e43cfcb47a895c4c8b10d1f4a61097f9f254f183aee60cad9c651d"
348
349[[package]]
Jing Lu04f9f5c2023-07-27 11:09:26 -0700350name = "memchr"
351version = "2.5.0"
352source = "registry+https://github.com/rust-lang/crates.io-index"
353checksum = "2dffe52ecf27772e601905b7522cb4ef790d2cc203488bbd0e2fe85fcb74566d"
354
355[[package]]
Jing Luba67ca72023-07-18 04:55:56 -0700356name = "memoffset"
357version = "0.9.0"
358source = "registry+https://github.com/rust-lang/crates.io-index"
359checksum = "5a634b1c61a95585bd15607c6ab0c4e5b226e695ff2800ba0cdccddf208c406c"
360dependencies = [
361 "autocfg",
362]
363
364[[package]]
365name = "once_cell"
366version = "1.18.0"
367source = "registry+https://github.com/rust-lang/crates.io-index"
368checksum = "dd8b5dd2ae5ed71462c540258bedcb51965123ad7e7ccf4b9a8cafaa4a63576d"
369
370[[package]]
371name = "oorandom"
372version = "11.1.3"
373source = "registry+https://github.com/rust-lang/crates.io-index"
374checksum = "0ab1bc2a289d34bd04a330323ac98a1b4bc82c9d9fcb1e66b63caa84da26b575"
375
376[[package]]
377name = "parking_lot"
378version = "0.11.2"
379source = "registry+https://github.com/rust-lang/crates.io-index"
380checksum = "7d17b78036a60663b797adeaee46f5c9dfebb86948d1255007a1d6be0271ff99"
381dependencies = [
382 "instant",
383 "lock_api",
384 "parking_lot_core",
385]
386
387[[package]]
388name = "parking_lot_core"
389version = "0.8.6"
390source = "registry+https://github.com/rust-lang/crates.io-index"
391checksum = "60a2cfe6f0ad2bfc16aefa463b497d5c7a5ecd44a23efa72aa342d90177356dc"
392dependencies = [
393 "cfg-if",
394 "instant",
395 "libc",
396 "redox_syscall",
397 "smallvec",
398 "winapi",
399]
400
401[[package]]
402name = "pin-project"
403version = "1.1.2"
404source = "registry+https://github.com/rust-lang/crates.io-index"
405checksum = "030ad2bc4db10a8944cb0d837f158bdfec4d4a4873ab701a95046770d11f8842"
406dependencies = [
407 "pin-project-internal",
408]
409
410[[package]]
411name = "pin-project-internal"
412version = "1.1.2"
413source = "registry+https://github.com/rust-lang/crates.io-index"
414checksum = "ec2e072ecce94ec471b13398d5402c188e76ac03cf74dd1a975161b23a3f6d9c"
415dependencies = [
416 "proc-macro2",
417 "quote",
418 "syn 2.0.26",
419]
420
421[[package]]
422name = "proc-macro2"
423version = "1.0.66"
424source = "registry+https://github.com/rust-lang/crates.io-index"
425checksum = "18fb31db3f9bddb2ea821cde30a9f70117e3f119938b5ee630b7403aa6e2ead9"
426dependencies = [
427 "unicode-ident",
428]
429
430[[package]]
431name = "quote"
432version = "1.0.31"
433source = "registry+https://github.com/rust-lang/crates.io-index"
434checksum = "5fe8a65d69dd0808184ebb5f836ab526bb259db23c657efa38711b1072ee47f0"
435dependencies = [
436 "proc-macro2",
437]
438
439[[package]]
440name = "redox_syscall"
441version = "0.2.16"
442source = "registry+https://github.com/rust-lang/crates.io-index"
443checksum = "fb5a58c1855b4b6819d59012155603f0b22ad30cad752600aadfcb695265519a"
444dependencies = [
445 "bitflags 1.3.2",
446]
447
448[[package]]
Jing Lu04f9f5c2023-07-27 11:09:26 -0700449name = "regex"
450version = "1.9.1"
451source = "registry+https://github.com/rust-lang/crates.io-index"
452checksum = "b2eae68fc220f7cf2532e4494aded17545fce192d59cd996e0fe7887f4ceb575"
453dependencies = [
454 "aho-corasick",
455 "memchr",
456 "regex-automata",
457 "regex-syntax",
458]
459
460[[package]]
461name = "regex-automata"
462version = "0.3.3"
463source = "registry+https://github.com/rust-lang/crates.io-index"
464checksum = "39354c10dd07468c2e73926b23bb9c2caca74c5501e38a35da70406f1d923310"
465dependencies = [
466 "aho-corasick",
467 "memchr",
468 "regex-syntax",
469]
470
471[[package]]
472name = "regex-syntax"
473version = "0.7.4"
474source = "registry+https://github.com/rust-lang/crates.io-index"
475checksum = "e5ea92a5b6195c6ef2a0295ea818b312502c6fc94dde986c5553242e18fd4ce2"
476
477[[package]]
Jing Luba67ca72023-07-18 04:55:56 -0700478name = "rustc-hash"
479version = "1.1.0"
480source = "registry+https://github.com/rust-lang/crates.io-index"
481checksum = "08d43f7aa6b08d49f382cde6a7982047c3426db949b1424bc4b7ec9ae12c6ce2"
482
483[[package]]
484name = "rustix"
Jing Lu04f9f5c2023-07-27 11:09:26 -0700485version = "0.36.15"
486source = "registry+https://github.com/rust-lang/crates.io-index"
487checksum = "c37f1bd5ef1b5422177b7646cba67430579cfe2ace80f284fee876bca52ad941"
488dependencies = [
489 "bitflags 1.3.2",
490 "errno",
491 "io-lifetimes",
492 "libc",
493 "linux-raw-sys 0.1.4",
494 "windows-sys 0.45.0",
495]
496
497[[package]]
498name = "rustix"
Jing Luba67ca72023-07-18 04:55:56 -0700499version = "0.38.4"
500source = "registry+https://github.com/rust-lang/crates.io-index"
501checksum = "0a962918ea88d644592894bc6dc55acc6c0956488adcebbfb6e273506b7fd6e5"
502dependencies = [
503 "bitflags 2.3.3",
504 "errno",
505 "libc",
Jing Lu04f9f5c2023-07-27 11:09:26 -0700506 "linux-raw-sys 0.4.3",
507 "windows-sys 0.48.0",
Jing Luba67ca72023-07-18 04:55:56 -0700508]
509
510[[package]]
511name = "ryu"
512version = "1.0.15"
513source = "registry+https://github.com/rust-lang/crates.io-index"
514checksum = "1ad4cc8da4ef723ed60bced201181d83791ad433213d8c24efffda1eec85d741"
515
516[[package]]
517name = "salsa"
518version = "0.16.1"
519source = "registry+https://github.com/rust-lang/crates.io-index"
520checksum = "4b84d9f96071f3f3be0dc818eae3327625d8ebc95b58da37d6850724f31d3403"
521dependencies = [
522 "crossbeam-utils",
523 "indexmap",
524 "lock_api",
525 "log",
526 "oorandom",
527 "parking_lot",
528 "rustc-hash",
529 "salsa-macros",
530 "smallvec",
531]
532
533[[package]]
534name = "salsa-macros"
535version = "0.16.0"
536source = "registry+https://github.com/rust-lang/crates.io-index"
537checksum = "cd3904a4ba0a9d0211816177fd34b04c7095443f8cdacd11175064fe541c8fe2"
538dependencies = [
539 "heck 0.3.3",
540 "proc-macro2",
541 "quote",
542 "syn 1.0.109",
543]
544
545[[package]]
546name = "scopeguard"
547version = "1.2.0"
548source = "registry+https://github.com/rust-lang/crates.io-index"
549checksum = "94143f37725109f92c262ed2cf5e59bce7498c01bcc1502d7b9afe439a4e9f49"
550
551[[package]]
552name = "serde"
553version = "1.0.171"
554source = "registry+https://github.com/rust-lang/crates.io-index"
555checksum = "30e27d1e4fd7659406c492fd6cfaf2066ba8773de45ca75e855590f856dc34a9"
556dependencies = [
557 "serde_derive",
558]
559
560[[package]]
561name = "serde_derive"
562version = "1.0.171"
563source = "registry+https://github.com/rust-lang/crates.io-index"
564checksum = "389894603bd18c46fa56231694f8d827779c0951a667087194cf9de94ed24682"
565dependencies = [
566 "proc-macro2",
567 "quote",
568 "syn 2.0.26",
569]
570
571[[package]]
572name = "serde_json"
573version = "1.0.103"
574source = "registry+https://github.com/rust-lang/crates.io-index"
575checksum = "d03b412469450d4404fe8499a268edd7f8b79fecb074b0d812ad64ca21f4031b"
576dependencies = [
577 "itoa",
578 "ryu",
579 "serde",
580]
581
582[[package]]
583name = "smallvec"
584version = "1.11.0"
585source = "registry+https://github.com/rust-lang/crates.io-index"
586checksum = "62bb4feee49fdd9f707ef802e22365a35de4b7b299de4763d44bfea899442ff9"
587
588[[package]]
589name = "static_assertions"
590version = "1.1.0"
591source = "registry+https://github.com/rust-lang/crates.io-index"
592checksum = "a2eb9349b6444b326872e140eb1cf5e7c522154d69e7a0ffb0fb81c06b37543f"
593
594[[package]]
595name = "strsim"
596version = "0.10.0"
597source = "registry+https://github.com/rust-lang/crates.io-index"
598checksum = "73473c0e59e6d5812c5dfe2a064a6444949f089e20eec9a2e5506596494e4623"
599
600[[package]]
601name = "syn"
602version = "1.0.109"
603source = "registry+https://github.com/rust-lang/crates.io-index"
604checksum = "72b64191b275b66ffe2469e8af2c1cfe3bafa67b529ead792a6d0160888b4237"
605dependencies = [
606 "proc-macro2",
607 "quote",
608 "unicode-ident",
609]
610
611[[package]]
612name = "syn"
613version = "2.0.26"
614source = "registry+https://github.com/rust-lang/crates.io-index"
615checksum = "45c3457aacde3c65315de5031ec191ce46604304d2446e803d71ade03308d970"
616dependencies = [
617 "proc-macro2",
618 "quote",
619 "unicode-ident",
620]
621
622[[package]]
Jing Lu04f9f5c2023-07-27 11:09:26 -0700623name = "tempfile"
624version = "3.4.0"
625source = "registry+https://github.com/rust-lang/crates.io-index"
626checksum = "af18f7ae1acd354b992402e9ec5864359d693cd8a79dcbef59f76891701c1e95"
627dependencies = [
628 "cfg-if",
629 "fastrand",
630 "redox_syscall",
631 "rustix 0.36.15",
632 "windows-sys 0.42.0",
633]
634
635[[package]]
Jing Luba67ca72023-07-18 04:55:56 -0700636name = "unicode-ident"
637version = "1.0.11"
638source = "registry+https://github.com/rust-lang/crates.io-index"
639checksum = "301abaae475aa91687eb82514b328ab47a211a533026cb25fc3e519b86adfc3c"
640
641[[package]]
642name = "unicode-segmentation"
643version = "1.10.1"
644source = "registry+https://github.com/rust-lang/crates.io-index"
645checksum = "1dd624098567895118886609431a7c3b8f516e41d30e0643f03d94592a147e36"
646
647[[package]]
648name = "utf8parse"
649version = "0.2.1"
650source = "registry+https://github.com/rust-lang/crates.io-index"
651checksum = "711b9620af191e0cdc7468a8d14e709c3dcdb115b36f838e601583af800a370a"
652
653[[package]]
654name = "winapi"
655version = "0.3.9"
656source = "registry+https://github.com/rust-lang/crates.io-index"
657checksum = "5c839a674fcd7a98952e593242ea400abe93992746761e38641405d28b00f419"
658dependencies = [
659 "winapi-i686-pc-windows-gnu",
660 "winapi-x86_64-pc-windows-gnu",
661]
662
663[[package]]
664name = "winapi-i686-pc-windows-gnu"
665version = "0.4.0"
666source = "registry+https://github.com/rust-lang/crates.io-index"
667checksum = "ac3b87c63620426dd9b991e5ce0329eff545bccbbb34f3be09ff6fb6ab51b7b6"
668
669[[package]]
670name = "winapi-x86_64-pc-windows-gnu"
671version = "0.4.0"
672source = "registry+https://github.com/rust-lang/crates.io-index"
673checksum = "712e227841d057c1ee1cd2fb22fa7e5a5461ae8e48fa2ca79ec42cfc1931183f"
674
675[[package]]
676name = "windows-sys"
Jing Lu04f9f5c2023-07-27 11:09:26 -0700677version = "0.42.0"
678source = "registry+https://github.com/rust-lang/crates.io-index"
679checksum = "5a3e1820f08b8513f676f7ab6c1f99ff312fb97b553d30ff4dd86f9f15728aa7"
680dependencies = [
681 "windows_aarch64_gnullvm 0.42.2",
682 "windows_aarch64_msvc 0.42.2",
683 "windows_i686_gnu 0.42.2",
684 "windows_i686_msvc 0.42.2",
685 "windows_x86_64_gnu 0.42.2",
686 "windows_x86_64_gnullvm 0.42.2",
687 "windows_x86_64_msvc 0.42.2",
688]
689
690[[package]]
691name = "windows-sys"
692version = "0.45.0"
693source = "registry+https://github.com/rust-lang/crates.io-index"
694checksum = "75283be5efb2831d37ea142365f009c02ec203cd29a3ebecbc093d52315b66d0"
695dependencies = [
696 "windows-targets 0.42.2",
697]
698
699[[package]]
700name = "windows-sys"
Jing Luba67ca72023-07-18 04:55:56 -0700701version = "0.48.0"
702source = "registry+https://github.com/rust-lang/crates.io-index"
703checksum = "677d2418bec65e3338edb076e806bc1ec15693c5d0104683f2efe857f61056a9"
704dependencies = [
Jing Lu04f9f5c2023-07-27 11:09:26 -0700705 "windows-targets 0.48.1",
706]
707
708[[package]]
709name = "windows-targets"
710version = "0.42.2"
711source = "registry+https://github.com/rust-lang/crates.io-index"
712checksum = "8e5180c00cd44c9b1c88adb3693291f1cd93605ded80c250a75d472756b4d071"
713dependencies = [
714 "windows_aarch64_gnullvm 0.42.2",
715 "windows_aarch64_msvc 0.42.2",
716 "windows_i686_gnu 0.42.2",
717 "windows_i686_msvc 0.42.2",
718 "windows_x86_64_gnu 0.42.2",
719 "windows_x86_64_gnullvm 0.42.2",
720 "windows_x86_64_msvc 0.42.2",
Jing Luba67ca72023-07-18 04:55:56 -0700721]
722
723[[package]]
724name = "windows-targets"
725version = "0.48.1"
726source = "registry+https://github.com/rust-lang/crates.io-index"
727checksum = "05d4b17490f70499f20b9e791dcf6a299785ce8af4d709018206dc5b4953e95f"
728dependencies = [
Jing Lu04f9f5c2023-07-27 11:09:26 -0700729 "windows_aarch64_gnullvm 0.48.0",
730 "windows_aarch64_msvc 0.48.0",
731 "windows_i686_gnu 0.48.0",
732 "windows_i686_msvc 0.48.0",
733 "windows_x86_64_gnu 0.48.0",
734 "windows_x86_64_gnullvm 0.48.0",
735 "windows_x86_64_msvc 0.48.0",
Jing Luba67ca72023-07-18 04:55:56 -0700736]
737
738[[package]]
739name = "windows_aarch64_gnullvm"
Jing Lu04f9f5c2023-07-27 11:09:26 -0700740version = "0.42.2"
741source = "registry+https://github.com/rust-lang/crates.io-index"
742checksum = "597a5118570b68bc08d8d59125332c54f1ba9d9adeedeef5b99b02ba2b0698f8"
743
744[[package]]
745name = "windows_aarch64_gnullvm"
Jing Luba67ca72023-07-18 04:55:56 -0700746version = "0.48.0"
747source = "registry+https://github.com/rust-lang/crates.io-index"
748checksum = "91ae572e1b79dba883e0d315474df7305d12f569b400fcf90581b06062f7e1bc"
749
750[[package]]
751name = "windows_aarch64_msvc"
Jing Lu04f9f5c2023-07-27 11:09:26 -0700752version = "0.42.2"
753source = "registry+https://github.com/rust-lang/crates.io-index"
754checksum = "e08e8864a60f06ef0d0ff4ba04124db8b0fb3be5776a5cd47641e942e58c4d43"
755
756[[package]]
757name = "windows_aarch64_msvc"
Jing Luba67ca72023-07-18 04:55:56 -0700758version = "0.48.0"
759source = "registry+https://github.com/rust-lang/crates.io-index"
760checksum = "b2ef27e0d7bdfcfc7b868b317c1d32c641a6fe4629c171b8928c7b08d98d7cf3"
761
762[[package]]
763name = "windows_i686_gnu"
Jing Lu04f9f5c2023-07-27 11:09:26 -0700764version = "0.42.2"
765source = "registry+https://github.com/rust-lang/crates.io-index"
766checksum = "c61d927d8da41da96a81f029489353e68739737d3beca43145c8afec9a31a84f"
767
768[[package]]
769name = "windows_i686_gnu"
Jing Luba67ca72023-07-18 04:55:56 -0700770version = "0.48.0"
771source = "registry+https://github.com/rust-lang/crates.io-index"
772checksum = "622a1962a7db830d6fd0a69683c80a18fda201879f0f447f065a3b7467daa241"
773
774[[package]]
775name = "windows_i686_msvc"
Jing Lu04f9f5c2023-07-27 11:09:26 -0700776version = "0.42.2"
777source = "registry+https://github.com/rust-lang/crates.io-index"
778checksum = "44d840b6ec649f480a41c8d80f9c65108b92d89345dd94027bfe06ac444d1060"
779
780[[package]]
781name = "windows_i686_msvc"
Jing Luba67ca72023-07-18 04:55:56 -0700782version = "0.48.0"
783source = "registry+https://github.com/rust-lang/crates.io-index"
784checksum = "4542c6e364ce21bf45d69fdd2a8e455fa38d316158cfd43b3ac1c5b1b19f8e00"
785
786[[package]]
787name = "windows_x86_64_gnu"
Jing Lu04f9f5c2023-07-27 11:09:26 -0700788version = "0.42.2"
789source = "registry+https://github.com/rust-lang/crates.io-index"
790checksum = "8de912b8b8feb55c064867cf047dda097f92d51efad5b491dfb98f6bbb70cb36"
791
792[[package]]
793name = "windows_x86_64_gnu"
Jing Luba67ca72023-07-18 04:55:56 -0700794version = "0.48.0"
795source = "registry+https://github.com/rust-lang/crates.io-index"
796checksum = "ca2b8a661f7628cbd23440e50b05d705db3686f894fc9580820623656af974b1"
797
798[[package]]
799name = "windows_x86_64_gnullvm"
Jing Lu04f9f5c2023-07-27 11:09:26 -0700800version = "0.42.2"
801source = "registry+https://github.com/rust-lang/crates.io-index"
802checksum = "26d41b46a36d453748aedef1486d5c7a85db22e56aff34643984ea85514e94a3"
803
804[[package]]
805name = "windows_x86_64_gnullvm"
Jing Luba67ca72023-07-18 04:55:56 -0700806version = "0.48.0"
807source = "registry+https://github.com/rust-lang/crates.io-index"
808checksum = "7896dbc1f41e08872e9d5e8f8baa8fdd2677f29468c4e156210174edc7f7b953"
809
810[[package]]
811name = "windows_x86_64_msvc"
Jing Lu04f9f5c2023-07-27 11:09:26 -0700812version = "0.42.2"
813source = "registry+https://github.com/rust-lang/crates.io-index"
814checksum = "9aec5da331524158c6d1a4ac0ab1541149c0b9505fde06423b02f5ef0106b9f0"
815
816[[package]]
817name = "windows_x86_64_msvc"
Jing Luba67ca72023-07-18 04:55:56 -0700818version = "0.48.0"
819source = "registry+https://github.com/rust-lang/crates.io-index"
820checksum = "1a515f5799fe4961cb532f983ce2b23082366b898e52ffbce459c86f67c8378a"