gardesk/gargears / 7291092

Browse files

commit Cargo.lock for nix builds

Authored by mfwolffe <wolffemf@dukes.jmu.edu>
SHA
72910924b70e2d7fa2d9ff828baafcef5df415c5
Parents
a6b7cdc
Tree
0c97e06

2 changed files

StatusFile+-
M .gitignore 0 1
A Cargo.lock 1288 0
.gitignoremodified
@@ -1,7 +1,6 @@
11
 # Build artifacts
22
 /target/
33
 **/*.rs.bk
4
-Cargo.lock
54
 
65
 # IDE
76
 .idea/
Cargo.lockadded
1288 lines changed — click to load
@@ -0,0 +1,1288 @@
1
+# This file is automatically @generated by Cargo.
2
+# It is not intended for manual editing.
3
+version = 4
4
+
5
+[[package]]
6
+name = "aho-corasick"
7
+version = "1.1.4"
8
+source = "registry+https://github.com/rust-lang/crates.io-index"
9
+checksum = "ddd31a130427c27518df266943a5308ed92d4b226cc639f5a8f1002816174301"
10
+dependencies = [
11
+ "memchr",
12
+]
13
+
14
+[[package]]
15
+name = "anstream"
16
+version = "0.6.21"
17
+source = "registry+https://github.com/rust-lang/crates.io-index"
18
+checksum = "43d5b281e737544384e969a5ccad3f1cdd24b48086a0fc1b2a5262a26b8f4f4a"
19
+dependencies = [
20
+ "anstyle",
21
+ "anstyle-parse",
22
+ "anstyle-query",
23
+ "anstyle-wincon",
24
+ "colorchoice",
25
+ "is_terminal_polyfill",
26
+ "utf8parse",
27
+]
28
+
29
+[[package]]
30
+name = "anstyle"
31
+version = "1.0.13"
32
+source = "registry+https://github.com/rust-lang/crates.io-index"
33
+checksum = "5192cca8006f1fd4f7237516f40fa183bb07f8fbdfedaa0036de5ea9b0b45e78"
34
+
35
+[[package]]
36
+name = "anstyle-parse"
37
+version = "0.2.7"
38
+source = "registry+https://github.com/rust-lang/crates.io-index"
39
+checksum = "4e7644824f0aa2c7b9384579234ef10eb7efb6a0deb83f9630a49594dd9c15c2"
40
+dependencies = [
41
+ "utf8parse",
42
+]
43
+
44
+[[package]]
45
+name = "anstyle-query"
46
+version = "1.1.5"
47
+source = "registry+https://github.com/rust-lang/crates.io-index"
48
+checksum = "40c48f72fd53cd289104fc64099abca73db4166ad86ea0b4341abe65af83dadc"
49
+dependencies = [
50
+ "windows-sys 0.61.2",
51
+]
52
+
53
+[[package]]
54
+name = "anstyle-wincon"
55
+version = "3.0.11"
56
+source = "registry+https://github.com/rust-lang/crates.io-index"
57
+checksum = "291e6a250ff86cd4a820112fb8898808a366d8f9f58ce16d1f538353ad55747d"
58
+dependencies = [
59
+ "anstyle",
60
+ "once_cell_polyfill",
61
+ "windows-sys 0.61.2",
62
+]
63
+
64
+[[package]]
65
+name = "anyhow"
66
+version = "1.0.101"
67
+source = "registry+https://github.com/rust-lang/crates.io-index"
68
+checksum = "5f0e0fee31ef5ed1ba1316088939cea399010ed7731dba877ed44aeb407a75ea"
69
+
70
+[[package]]
71
+name = "as-raw-xcb-connection"
72
+version = "1.0.1"
73
+source = "registry+https://github.com/rust-lang/crates.io-index"
74
+checksum = "175571dd1d178ced59193a6fc02dde1b972eb0bc56c892cde9beeceac5bf0f6b"
75
+
76
+[[package]]
77
+name = "bitflags"
78
+version = "2.10.0"
79
+source = "registry+https://github.com/rust-lang/crates.io-index"
80
+checksum = "812e12b5285cc515a9c72a5c1d3b6d46a19dac5acfef5265968c166106e31dd3"
81
+
82
+[[package]]
83
+name = "bytes"
84
+version = "1.11.1"
85
+source = "registry+https://github.com/rust-lang/crates.io-index"
86
+checksum = "1e748733b7cbc798e1434b6ac524f0c1ff2ab456fe201501e6497c8417a4fc33"
87
+
88
+[[package]]
89
+name = "cairo-rs"
90
+version = "0.20.12"
91
+source = "registry+https://github.com/rust-lang/crates.io-index"
92
+checksum = "91e3bd0f4e25afa9cabc157908d14eeef9067d6448c49414d17b3fb55f0eadd0"
93
+dependencies = [
94
+ "bitflags",
95
+ "cairo-sys-rs",
96
+ "glib",
97
+ "libc",
98
+]
99
+
100
+[[package]]
101
+name = "cairo-sys-rs"
102
+version = "0.20.10"
103
+source = "registry+https://github.com/rust-lang/crates.io-index"
104
+checksum = "059cc746549898cbfd9a47754288e5a958756650ef4652bbb6c5f71a6bda4f8b"
105
+dependencies = [
106
+ "glib-sys",
107
+ "libc",
108
+ "system-deps",
109
+]
110
+
111
+[[package]]
112
+name = "cfg-expr"
113
+version = "0.20.6"
114
+source = "registry+https://github.com/rust-lang/crates.io-index"
115
+checksum = "78cef5b5a1a6827c7322ae2a636368a573006b27cfa76c7ebd53e834daeaab6a"
116
+dependencies = [
117
+ "smallvec",
118
+ "target-lexicon",
119
+]
120
+
121
+[[package]]
122
+name = "cfg-if"
123
+version = "1.0.4"
124
+source = "registry+https://github.com/rust-lang/crates.io-index"
125
+checksum = "9330f8b2ff13f34540b44e946ef35111825727b38d33286ef986142615121801"
126
+
127
+[[package]]
128
+name = "clap"
129
+version = "4.5.57"
130
+source = "registry+https://github.com/rust-lang/crates.io-index"
131
+checksum = "6899ea499e3fb9305a65d5ebf6e3d2248c5fab291f300ad0a704fbe142eae31a"
132
+dependencies = [
133
+ "clap_builder",
134
+ "clap_derive",
135
+]
136
+
137
+[[package]]
138
+name = "clap_builder"
139
+version = "4.5.57"
140
+source = "registry+https://github.com/rust-lang/crates.io-index"
141
+checksum = "7b12c8b680195a62a8364d16b8447b01b6c2c8f9aaf68bee653be34d4245e238"
142
+dependencies = [
143
+ "anstream",
144
+ "anstyle",
145
+ "clap_lex",
146
+ "strsim",
147
+]
148
+
149
+[[package]]
150
+name = "clap_derive"
151
+version = "4.5.55"
152
+source = "registry+https://github.com/rust-lang/crates.io-index"
153
+checksum = "a92793da1a46a5f2a02a6f4c46c6496b28c43638adea8306fcb0caa1634f24e5"
154
+dependencies = [
155
+ "heck",
156
+ "proc-macro2",
157
+ "quote",
158
+ "syn",
159
+]
160
+
161
+[[package]]
162
+name = "clap_lex"
163
+version = "0.7.7"
164
+source = "registry+https://github.com/rust-lang/crates.io-index"
165
+checksum = "c3e64b0cc0439b12df2fa678eae89a1c56a529fd067a9115f7827f1fffd22b32"
166
+
167
+[[package]]
168
+name = "colorchoice"
169
+version = "1.0.4"
170
+source = "registry+https://github.com/rust-lang/crates.io-index"
171
+checksum = "b05b61dc5112cbb17e4b6cd61790d9845d13888356391624cbe7e41efeac1e75"
172
+
173
+[[package]]
174
+name = "equivalent"
175
+version = "1.0.2"
176
+source = "registry+https://github.com/rust-lang/crates.io-index"
177
+checksum = "877a4ace8713b0bcf2a4e7eec82529c029f1d0619886d18145fea96c3ffe5c0f"
178
+
179
+[[package]]
180
+name = "errno"
181
+version = "0.3.14"
182
+source = "registry+https://github.com/rust-lang/crates.io-index"
183
+checksum = "39cab71617ae0d63f51a36d69f866391735b51691dbda63cf6f96d042b63efeb"
184
+dependencies = [
185
+ "libc",
186
+ "windows-sys 0.61.2",
187
+]
188
+
189
+[[package]]
190
+name = "futures-channel"
191
+version = "0.3.31"
192
+source = "registry+https://github.com/rust-lang/crates.io-index"
193
+checksum = "2dff15bf788c671c1934e366d07e30c1814a8ef514e1af724a602e8a2fbe1b10"
194
+dependencies = [
195
+ "futures-core",
196
+]
197
+
198
+[[package]]
199
+name = "futures-core"
200
+version = "0.3.31"
201
+source = "registry+https://github.com/rust-lang/crates.io-index"
202
+checksum = "05f29059c0c2090612e8d742178b0580d2dc940c837851ad723096f87af6663e"
203
+
204
+[[package]]
205
+name = "futures-executor"
206
+version = "0.3.31"
207
+source = "registry+https://github.com/rust-lang/crates.io-index"
208
+checksum = "1e28d1d997f585e54aebc3f97d39e72338912123a67330d723fdbb564d646c9f"
209
+dependencies = [
210
+ "futures-core",
211
+ "futures-task",
212
+ "futures-util",
213
+]
214
+
215
+[[package]]
216
+name = "futures-io"
217
+version = "0.3.31"
218
+source = "registry+https://github.com/rust-lang/crates.io-index"
219
+checksum = "9e5c1b78ca4aae1ac06c48a526a655760685149f0d465d21f37abfe57ce075c6"
220
+
221
+[[package]]
222
+name = "futures-macro"
223
+version = "0.3.31"
224
+source = "registry+https://github.com/rust-lang/crates.io-index"
225
+checksum = "162ee34ebcb7c64a8abebc059ce0fee27c2262618d7b60ed8faf72fef13c3650"
226
+dependencies = [
227
+ "proc-macro2",
228
+ "quote",
229
+ "syn",
230
+]
231
+
232
+[[package]]
233
+name = "futures-task"
234
+version = "0.3.31"
235
+source = "registry+https://github.com/rust-lang/crates.io-index"
236
+checksum = "f90f7dce0722e95104fcb095585910c0977252f286e354b5e3bd38902cd99988"
237
+
238
+[[package]]
239
+name = "futures-util"
240
+version = "0.3.31"
241
+source = "registry+https://github.com/rust-lang/crates.io-index"
242
+checksum = "9fa08315bb612088cc391249efdc3bc77536f16c91f6cf495e6fbe85b20a4a81"
243
+dependencies = [
244
+ "futures-core",
245
+ "futures-macro",
246
+ "futures-task",
247
+ "pin-project-lite",
248
+ "pin-utils",
249
+ "slab",
250
+]
251
+
252
+[[package]]
253
+name = "gargears"
254
+version = "0.1.0"
255
+dependencies = [
256
+ "anyhow",
257
+ "clap",
258
+ "gargears-ipc",
259
+ "gartk-core",
260
+ "gartk-render",
261
+ "gartk-x11",
262
+ "regex",
263
+ "serde",
264
+ "serde_json",
265
+ "thiserror",
266
+ "tokio",
267
+ "toml 0.8.23",
268
+ "tracing",
269
+ "tracing-subscriber",
270
+ "x11rb",
271
+]
272
+
273
+[[package]]
274
+name = "gargears-ipc"
275
+version = "0.1.0"
276
+dependencies = [
277
+ "serde",
278
+ "serde_json",
279
+ "thiserror",
280
+]
281
+
282
+[[package]]
283
+name = "gargearsctl"
284
+version = "0.1.0"
285
+dependencies = [
286
+ "anyhow",
287
+ "clap",
288
+ "gargears-ipc",
289
+ "serde",
290
+ "serde_json",
291
+]
292
+
293
+[[package]]
294
+name = "gartk-core"
295
+version = "0.1.0"
296
+dependencies = [
297
+ "serde",
298
+ "thiserror",
299
+]
300
+
301
+[[package]]
302
+name = "gartk-render"
303
+version = "0.1.0"
304
+dependencies = [
305
+ "cairo-rs",
306
+ "gartk-core",
307
+ "gartk-x11",
308
+ "pango",
309
+ "pangocairo",
310
+ "thiserror",
311
+ "tracing",
312
+ "x11rb",
313
+]
314
+
315
+[[package]]
316
+name = "gartk-x11"
317
+version = "0.1.0"
318
+dependencies = [
319
+ "gartk-core",
320
+ "thiserror",
321
+ "tracing",
322
+ "x11rb",
323
+]
324
+
325
+[[package]]
326
+name = "gethostname"
327
+version = "1.1.0"
328
+source = "registry+https://github.com/rust-lang/crates.io-index"
329
+checksum = "1bd49230192a3797a9a4d6abe9b3eed6f7fa4c8a8a4947977c6f80025f92cbd8"
330
+dependencies = [
331
+ "rustix",
332
+ "windows-link",
333
+]
334
+
335
+[[package]]
336
+name = "gio"
337
+version = "0.20.12"
338
+source = "registry+https://github.com/rust-lang/crates.io-index"
339
+checksum = "8e27e276e7b6b8d50f6376ee7769a71133e80d093bdc363bd0af71664228b831"
340
+dependencies = [
341
+ "futures-channel",
342
+ "futures-core",
343
+ "futures-io",
344
+ "futures-util",
345
+ "gio-sys",
346
+ "glib",
347
+ "libc",
348
+ "pin-project-lite",
349
+ "smallvec",
350
+]
351
+
352
+[[package]]
353
+name = "gio-sys"
354
+version = "0.20.10"
355
+source = "registry+https://github.com/rust-lang/crates.io-index"
356
+checksum = "521e93a7e56fc89e84aea9a52cfc9436816a4b363b030260b699950ff1336c83"
357
+dependencies = [
358
+ "glib-sys",
359
+ "gobject-sys",
360
+ "libc",
361
+ "system-deps",
362
+ "windows-sys 0.59.0",
363
+]
364
+
365
+[[package]]
366
+name = "glib"
367
+version = "0.20.12"
368
+source = "registry+https://github.com/rust-lang/crates.io-index"
369
+checksum = "ffc4b6e352d4716d84d7dde562dd9aee2a7d48beb872dd9ece7f2d1515b2d683"
370
+dependencies = [
371
+ "bitflags",
372
+ "futures-channel",
373
+ "futures-core",
374
+ "futures-executor",
375
+ "futures-task",
376
+ "futures-util",
377
+ "gio-sys",
378
+ "glib-macros",
379
+ "glib-sys",
380
+ "gobject-sys",
381
+ "libc",
382
+ "memchr",
383
+ "smallvec",
384
+]
385
+
386
+[[package]]
387
+name = "glib-macros"
388
+version = "0.20.12"
389
+source = "registry+https://github.com/rust-lang/crates.io-index"
390
+checksum = "e8084af62f09475a3f529b1629c10c429d7600ee1398ae12dd3bf175d74e7145"
391
+dependencies = [
392
+ "heck",
393
+ "proc-macro-crate",
394
+ "proc-macro2",
395
+ "quote",
396
+ "syn",
397
+]
398
+
399
+[[package]]
400
+name = "glib-sys"
401
+version = "0.20.10"
402
+source = "registry+https://github.com/rust-lang/crates.io-index"
403
+checksum = "8ab79e1ed126803a8fb827e3de0e2ff95191912b8db65cee467edb56fc4cc215"
404
+dependencies = [
405
+ "libc",
406
+ "system-deps",
407
+]
408
+
409
+[[package]]
410
+name = "gobject-sys"
411
+version = "0.20.10"
412
+source = "registry+https://github.com/rust-lang/crates.io-index"
413
+checksum = "ec9aca94bb73989e3cfdbf8f2e0f1f6da04db4d291c431f444838925c4c63eda"
414
+dependencies = [
415
+ "glib-sys",
416
+ "libc",
417
+ "system-deps",
418
+]
419
+
420
+[[package]]
421
+name = "hashbrown"
422
+version = "0.16.1"
423
+source = "registry+https://github.com/rust-lang/crates.io-index"
424
+checksum = "841d1cc9bed7f9236f321df977030373f4a4163ae1a7dbfe1a51a2c1a51d9100"
425
+
426
+[[package]]
427
+name = "heck"
428
+version = "0.5.0"
429
+source = "registry+https://github.com/rust-lang/crates.io-index"
430
+checksum = "2304e00983f87ffb38b55b444b5e3b60a884b5d30c0fca7d82fe33449bbe55ea"
431
+
432
+[[package]]
433
+name = "indexmap"
434
+version = "2.13.0"
435
+source = "registry+https://github.com/rust-lang/crates.io-index"
436
+checksum = "7714e70437a7dc3ac8eb7e6f8df75fd8eb422675fc7678aff7364301092b1017"
437
+dependencies = [
438
+ "equivalent",
439
+ "hashbrown",
440
+]
441
+
442
+[[package]]
443
+name = "is_terminal_polyfill"
444
+version = "1.70.2"
445
+source = "registry+https://github.com/rust-lang/crates.io-index"
446
+checksum = "a6cb138bb79a146c1bd460005623e142ef0181e3d0219cb493e02f7d08a35695"
447
+
448
+[[package]]
449
+name = "itoa"
450
+version = "1.0.17"
451
+source = "registry+https://github.com/rust-lang/crates.io-index"
452
+checksum = "92ecc6618181def0457392ccd0ee51198e065e016d1d527a7ac1b6dc7c1f09d2"
453
+
454
+[[package]]
455
+name = "lazy_static"
456
+version = "1.5.0"
457
+source = "registry+https://github.com/rust-lang/crates.io-index"
458
+checksum = "bbd2bcb4c963f2ddae06a2efc7e9f3591312473c50c6685e1f298068316e66fe"
459
+
460
+[[package]]
461
+name = "libc"
462
+version = "0.2.180"
463
+source = "registry+https://github.com/rust-lang/crates.io-index"
464
+checksum = "bcc35a38544a891a5f7c865aca548a982ccb3b8650a5b06d0fd33a10283c56fc"
465
+
466
+[[package]]
467
+name = "linux-raw-sys"
468
+version = "0.11.0"
469
+source = "registry+https://github.com/rust-lang/crates.io-index"
470
+checksum = "df1d3c3b53da64cf5760482273a98e575c651a67eec7f77df96b5b642de8f039"
471
+
472
+[[package]]
473
+name = "lock_api"
474
+version = "0.4.14"
475
+source = "registry+https://github.com/rust-lang/crates.io-index"
476
+checksum = "224399e74b87b5f3557511d98dff8b14089b3dadafcab6bb93eab67d3aace965"
477
+dependencies = [
478
+ "scopeguard",
479
+]
480
+
481
+[[package]]
482
+name = "log"
483
+version = "0.4.29"
484
+source = "registry+https://github.com/rust-lang/crates.io-index"
485
+checksum = "5e5032e24019045c762d3c0f28f5b6b8bbf38563a65908389bf7978758920897"
486
+
487
+[[package]]
488
+name = "matchers"
489
+version = "0.2.0"
490
+source = "registry+https://github.com/rust-lang/crates.io-index"
491
+checksum = "d1525a2a28c7f4fa0fc98bb91ae755d1e2d1505079e05539e35bc876b5d65ae9"
492
+dependencies = [
493
+ "regex-automata",
494
+]
495
+
496
+[[package]]
497
+name = "memchr"
498
+version = "2.8.0"
499
+source = "registry+https://github.com/rust-lang/crates.io-index"
500
+checksum = "f8ca58f447f06ed17d5fc4043ce1b10dd205e060fb3ce5b979b8ed8e59ff3f79"
501
+
502
+[[package]]
503
+name = "mio"
504
+version = "1.1.1"
505
+source = "registry+https://github.com/rust-lang/crates.io-index"
506
+checksum = "a69bcab0ad47271a0234d9422b131806bf3968021e5dc9328caf2d4cd58557fc"
507
+dependencies = [
508
+ "libc",
509
+ "wasi",
510
+ "windows-sys 0.61.2",
511
+]
512
+
513
+[[package]]
514
+name = "nu-ansi-term"
515
+version = "0.50.3"
516
+source = "registry+https://github.com/rust-lang/crates.io-index"
517
+checksum = "7957b9740744892f114936ab4a57b3f487491bbeafaf8083688b16841a4240e5"
518
+dependencies = [
519
+ "windows-sys 0.61.2",
520
+]
521
+
522
+[[package]]
523
+name = "once_cell"
524
+version = "1.21.3"
525
+source = "registry+https://github.com/rust-lang/crates.io-index"
526
+checksum = "42f5e15c9953c5e4ccceeb2e7382a716482c34515315f7b03532b8b4e8393d2d"
527
+
528
+[[package]]
529
+name = "once_cell_polyfill"
530
+version = "1.70.2"
531
+source = "registry+https://github.com/rust-lang/crates.io-index"
532
+checksum = "384b8ab6d37215f3c5301a95a4accb5d64aa607f1fcb26a11b5303878451b4fe"
533
+
534
+[[package]]
535
+name = "pango"
536
+version = "0.20.12"
537
+source = "registry+https://github.com/rust-lang/crates.io-index"
538
+checksum = "6576b311f6df659397043a5fa8a021da8f72e34af180b44f7d57348de691ab5c"
539
+dependencies = [
540
+ "gio",
541
+ "glib",
542
+ "libc",
543
+ "pango-sys",
544
+]
545
+
546
+[[package]]
547
+name = "pango-sys"
548
+version = "0.20.10"
549
+source = "registry+https://github.com/rust-lang/crates.io-index"
550
+checksum = "186909673fc09be354555c302c0b3dcf753cd9fa08dcb8077fa663c80fb243fa"
551
+dependencies = [
552
+ "glib-sys",
553
+ "gobject-sys",
554
+ "libc",
555
+ "system-deps",
556
+]
557
+
558
+[[package]]
559
+name = "pangocairo"
560
+version = "0.20.10"
561
+source = "registry+https://github.com/rust-lang/crates.io-index"
562
+checksum = "58890dc451db9964ac2d8874f903a4370a4b3932aa5281ff0c8d9810937ad84f"
563
+dependencies = [
564
+ "cairo-rs",
565
+ "glib",
566
+ "libc",
567
+ "pango",
568
+ "pangocairo-sys",
569
+]
570
+
571
+[[package]]
572
+name = "pangocairo-sys"
573
+version = "0.20.10"
574
+source = "registry+https://github.com/rust-lang/crates.io-index"
575
+checksum = "b9952903f88aa93e2927e7bca2d1ebae64fc26545a9280b4ce6bddeda26b5c42"
576
+dependencies = [
577
+ "cairo-sys-rs",
578
+ "glib-sys",
579
+ "libc",
580
+ "pango-sys",
581
+ "system-deps",
582
+]
583
+
584
+[[package]]
585
+name = "parking_lot"
586
+version = "0.12.5"
587
+source = "registry+https://github.com/rust-lang/crates.io-index"
588
+checksum = "93857453250e3077bd71ff98b6a65ea6621a19bb0f559a85248955ac12c45a1a"
589
+dependencies = [
590
+ "lock_api",
591
+ "parking_lot_core",
592
+]
593
+
594
+[[package]]
595
+name = "parking_lot_core"
596
+version = "0.9.12"
597
+source = "registry+https://github.com/rust-lang/crates.io-index"
598
+checksum = "2621685985a2ebf1c516881c026032ac7deafcda1a2c9b7850dc81e3dfcb64c1"
599
+dependencies = [
600
+ "cfg-if",
601
+ "libc",
602
+ "redox_syscall",
603
+ "smallvec",
604
+ "windows-link",
605
+]
606
+
607
+[[package]]
608
+name = "pin-project-lite"
609
+version = "0.2.16"
610
+source = "registry+https://github.com/rust-lang/crates.io-index"
611
+checksum = "3b3cff922bd51709b605d9ead9aa71031d81447142d828eb4a6eba76fe619f9b"
612
+
613
+[[package]]
614
+name = "pin-utils"
615
+version = "0.1.0"
616
+source = "registry+https://github.com/rust-lang/crates.io-index"
617
+checksum = "8b870d8c151b6f2fb93e84a13146138f05d02ed11c7e7c54f8826aaaf7c9f184"
618
+
619
+[[package]]
620
+name = "pkg-config"
621
+version = "0.3.32"
622
+source = "registry+https://github.com/rust-lang/crates.io-index"
623
+checksum = "7edddbd0b52d732b21ad9a5fab5c704c14cd949e5e9a1ec5929a24fded1b904c"
624
+
625
+[[package]]
626
+name = "proc-macro-crate"
627
+version = "3.4.0"
628
+source = "registry+https://github.com/rust-lang/crates.io-index"
629
+checksum = "219cb19e96be00ab2e37d6e299658a0cfa83e52429179969b0f0121b4ac46983"
630
+dependencies = [
631
+ "toml_edit 0.23.10+spec-1.0.0",
632
+]
633
+
634
+[[package]]
635
+name = "proc-macro2"
636
+version = "1.0.106"
637
+source = "registry+https://github.com/rust-lang/crates.io-index"
638
+checksum = "8fd00f0bb2e90d81d1044c2b32617f68fcb9fa3bb7640c23e9c748e53fb30934"
639
+dependencies = [
640
+ "unicode-ident",
641
+]
642
+
643
+[[package]]
644
+name = "quote"
645
+version = "1.0.44"
646
+source = "registry+https://github.com/rust-lang/crates.io-index"
647
+checksum = "21b2ebcf727b7760c461f091f9f0f539b77b8e87f2fd88131e7f1b433b3cece4"
648
+dependencies = [
649
+ "proc-macro2",
650
+]
651
+
652
+[[package]]
653
+name = "redox_syscall"
654
+version = "0.5.18"
655
+source = "registry+https://github.com/rust-lang/crates.io-index"
656
+checksum = "ed2bf2547551a7053d6fdfafda3f938979645c44812fbfcda098faae3f1a362d"
657
+dependencies = [
658
+ "bitflags",
659
+]
660
+
661
+[[package]]
662
+name = "regex"
663
+version = "1.12.3"
664
+source = "registry+https://github.com/rust-lang/crates.io-index"
665
+checksum = "e10754a14b9137dd7b1e3e5b0493cc9171fdd105e0ab477f51b72e7f3ac0e276"
666
+dependencies = [
667
+ "aho-corasick",
668
+ "memchr",
669
+ "regex-automata",
670
+ "regex-syntax",
671
+]
672
+
673
+[[package]]
674
+name = "regex-automata"
675
+version = "0.4.14"
676
+source = "registry+https://github.com/rust-lang/crates.io-index"
677
+checksum = "6e1dd4122fc1595e8162618945476892eefca7b88c52820e74af6262213cae8f"
678
+dependencies = [
679
+ "aho-corasick",
680
+ "memchr",
681
+ "regex-syntax",
682
+]
683
+
684
+[[package]]
685
+name = "regex-syntax"
686
+version = "0.8.9"
687
+source = "registry+https://github.com/rust-lang/crates.io-index"
688
+checksum = "a96887878f22d7bad8a3b6dc5b7440e0ada9a245242924394987b21cf2210a4c"
689
+
690
+[[package]]
691
+name = "rustix"
692
+version = "1.1.3"
693
+source = "registry+https://github.com/rust-lang/crates.io-index"
694
+checksum = "146c9e247ccc180c1f61615433868c99f3de3ae256a30a43b49f67c2d9171f34"
695
+dependencies = [
696
+ "bitflags",
697
+ "errno",
698
+ "libc",
699
+ "linux-raw-sys",
700
+ "windows-sys 0.61.2",
701
+]
702
+
703
+[[package]]
704
+name = "scopeguard"
705
+version = "1.2.0"
706
+source = "registry+https://github.com/rust-lang/crates.io-index"
707
+checksum = "94143f37725109f92c262ed2cf5e59bce7498c01bcc1502d7b9afe439a4e9f49"
708
+
709
+[[package]]
710
+name = "serde"
711
+version = "1.0.228"
712
+source = "registry+https://github.com/rust-lang/crates.io-index"
713
+checksum = "9a8e94ea7f378bd32cbbd37198a4a91436180c5bb472411e48b5ec2e2124ae9e"
714
+dependencies = [
715
+ "serde_core",
716
+ "serde_derive",
717
+]
718
+
719
+[[package]]
720
+name = "serde_core"
721
+version = "1.0.228"
722
+source = "registry+https://github.com/rust-lang/crates.io-index"
723
+checksum = "41d385c7d4ca58e59fc732af25c3983b67ac852c1a25000afe1175de458b67ad"
724
+dependencies = [
725
+ "serde_derive",
726
+]
727
+
728
+[[package]]
729
+name = "serde_derive"
730
+version = "1.0.228"
731
+source = "registry+https://github.com/rust-lang/crates.io-index"
732
+checksum = "d540f220d3187173da220f885ab66608367b6574e925011a9353e4badda91d79"
733
+dependencies = [
734
+ "proc-macro2",
735
+ "quote",
736
+ "syn",
737
+]
738
+
739
+[[package]]
740
+name = "serde_json"
741
+version = "1.0.149"
742
+source = "registry+https://github.com/rust-lang/crates.io-index"
743
+checksum = "83fc039473c5595ace860d8c4fafa220ff474b3fc6bfdb4293327f1a37e94d86"
744
+dependencies = [
745
+ "itoa",
746
+ "memchr",
747
+ "serde",
748
+ "serde_core",
749
+ "zmij",
750
+]
751
+
752
+[[package]]
753
+name = "serde_spanned"
754
+version = "0.6.9"
755
+source = "registry+https://github.com/rust-lang/crates.io-index"
756
+checksum = "bf41e0cfaf7226dca15e8197172c295a782857fcb97fad1808a166870dee75a3"
757
+dependencies = [
758
+ "serde",
759
+]
760
+
761
+[[package]]
762
+name = "serde_spanned"
763
+version = "1.0.4"
764
+source = "registry+https://github.com/rust-lang/crates.io-index"
765
+checksum = "f8bbf91e5a4d6315eee45e704372590b30e260ee83af6639d64557f51b067776"
766
+dependencies = [
767
+ "serde_core",
768
+]
769
+
770
+[[package]]
771
+name = "sharded-slab"
772
+version = "0.1.7"
773
+source = "registry+https://github.com/rust-lang/crates.io-index"
774
+checksum = "f40ca3c46823713e0d4209592e8d6e826aa57e928f09752619fc696c499637f6"
775
+dependencies = [
776
+ "lazy_static",
777
+]
778
+
779
+[[package]]
780
+name = "signal-hook-registry"
781
+version = "1.4.8"
782
+source = "registry+https://github.com/rust-lang/crates.io-index"
783
+checksum = "c4db69cba1110affc0e9f7bcd48bbf87b3f4fc7c61fc9155afd4c469eb3d6c1b"
784
+dependencies = [
785
+ "errno",
786
+ "libc",
787
+]
788
+
789
+[[package]]
790
+name = "slab"
791
+version = "0.4.12"
792
+source = "registry+https://github.com/rust-lang/crates.io-index"
793
+checksum = "0c790de23124f9ab44544d7ac05d60440adc586479ce501c1d6d7da3cd8c9cf5"
794
+
795
+[[package]]
796
+name = "smallvec"
797
+version = "1.15.1"
798
+source = "registry+https://github.com/rust-lang/crates.io-index"
799
+checksum = "67b1b7a3b5fe4f1376887184045fcf45c69e92af734b7aaddc05fb777b6fbd03"
800
+
801
+[[package]]
802
+name = "socket2"
803
+version = "0.6.2"
804
+source = "registry+https://github.com/rust-lang/crates.io-index"
805
+checksum = "86f4aa3ad99f2088c990dfa82d367e19cb29268ed67c574d10d0a4bfe71f07e0"
806
+dependencies = [
807
+ "libc",
808
+ "windows-sys 0.60.2",
809
+]
810
+
811
+[[package]]
812
+name = "strsim"
813
+version = "0.11.1"
814
+source = "registry+https://github.com/rust-lang/crates.io-index"
815
+checksum = "7da8b5736845d9f2fcb837ea5d9e2628564b3b043a70948a3f0b778838c5fb4f"
816
+
817
+[[package]]
818
+name = "syn"
819
+version = "2.0.114"
820
+source = "registry+https://github.com/rust-lang/crates.io-index"
821
+checksum = "d4d107df263a3013ef9b1879b0df87d706ff80f65a86ea879bd9c31f9b307c2a"
822
+dependencies = [
823
+ "proc-macro2",
824
+ "quote",
825
+ "unicode-ident",
826
+]
827
+
828
+[[package]]
829
+name = "system-deps"
830
+version = "7.0.7"
831
+source = "registry+https://github.com/rust-lang/crates.io-index"
832
+checksum = "48c8f33736f986f16d69b6cb8b03f55ddcad5c41acc4ccc39dd88e84aa805e7f"
833
+dependencies = [
834
+ "cfg-expr",
835
+ "heck",
836
+ "pkg-config",
837
+ "toml 0.9.11+spec-1.1.0",
838
+ "version-compare",
839
+]
840
+
841
+[[package]]
842
+name = "target-lexicon"
843
+version = "0.13.3"
844
+source = "registry+https://github.com/rust-lang/crates.io-index"
845
+checksum = "df7f62577c25e07834649fc3b39fafdc597c0a3527dc1c60129201ccfcbaa50c"
846
+
847
+[[package]]
848
+name = "thiserror"
849
+version = "2.0.18"
850
+source = "registry+https://github.com/rust-lang/crates.io-index"
851
+checksum = "4288b5bcbc7920c07a1149a35cf9590a2aa808e0bc1eafaade0b80947865fbc4"
852
+dependencies = [
853
+ "thiserror-impl",
854
+]
855
+
856
+[[package]]
857
+name = "thiserror-impl"
858
+version = "2.0.18"
859
+source = "registry+https://github.com/rust-lang/crates.io-index"
860
+checksum = "ebc4ee7f67670e9b64d05fa4253e753e016c6c95ff35b89b7941d6b856dec1d5"
861
+dependencies = [
862
+ "proc-macro2",
863
+ "quote",
864
+ "syn",
865
+]
866
+
867
+[[package]]
868
+name = "thread_local"
869
+version = "1.1.9"
870
+source = "registry+https://github.com/rust-lang/crates.io-index"
871
+checksum = "f60246a4944f24f6e018aa17cdeffb7818b76356965d03b07d6a9886e8962185"
872
+dependencies = [
873
+ "cfg-if",
874
+]
875
+
876
+[[package]]
877
+name = "tokio"
878
+version = "1.49.0"
879
+source = "registry+https://github.com/rust-lang/crates.io-index"
880
+checksum = "72a2903cd7736441aac9df9d7688bd0ce48edccaadf181c3b90be801e81d3d86"
881
+dependencies = [
882
+ "bytes",
883
+ "libc",
884
+ "mio",
885
+ "parking_lot",
886
+ "pin-project-lite",
887
+ "signal-hook-registry",
888
+ "socket2",
889
+ "tokio-macros",
890
+ "windows-sys 0.61.2",
891
+]
892
+
893
+[[package]]
894
+name = "tokio-macros"
895
+version = "2.6.0"
896
+source = "registry+https://github.com/rust-lang/crates.io-index"
897
+checksum = "af407857209536a95c8e56f8231ef2c2e2aff839b22e07a1ffcbc617e9db9fa5"
898
+dependencies = [
899
+ "proc-macro2",
900
+ "quote",
901
+ "syn",
902
+]
903
+
904
+[[package]]
905
+name = "toml"
906
+version = "0.8.23"
907
+source = "registry+https://github.com/rust-lang/crates.io-index"
908
+checksum = "dc1beb996b9d83529a9e75c17a1686767d148d70663143c7854d8b4a09ced362"
909
+dependencies = [
910
+ "serde",
911
+ "serde_spanned 0.6.9",
912
+ "toml_datetime 0.6.11",
913
+ "toml_edit 0.22.27",
914
+]
915
+
916
+[[package]]
917
+name = "toml"
918
+version = "0.9.11+spec-1.1.0"
919
+source = "registry+https://github.com/rust-lang/crates.io-index"
920
+checksum = "f3afc9a848309fe1aaffaed6e1546a7a14de1f935dc9d89d32afd9a44bab7c46"
921
+dependencies = [
922
+ "indexmap",
923
+ "serde_core",
924
+ "serde_spanned 1.0.4",
925
+ "toml_datetime 0.7.5+spec-1.1.0",
926
+ "toml_parser",
927
+ "toml_writer",
928
+ "winnow",
929
+]
930
+
931
+[[package]]
932
+name = "toml_datetime"
933
+version = "0.6.11"
934
+source = "registry+https://github.com/rust-lang/crates.io-index"
935
+checksum = "22cddaf88f4fbc13c51aebbf5f8eceb5c7c5a9da2ac40a13519eb5b0a0e8f11c"
936
+dependencies = [
937
+ "serde",
938
+]
939
+
940
+[[package]]
941
+name = "toml_datetime"
942
+version = "0.7.5+spec-1.1.0"
943
+source = "registry+https://github.com/rust-lang/crates.io-index"
944
+checksum = "92e1cfed4a3038bc5a127e35a2d360f145e1f4b971b551a2ba5fd7aedf7e1347"
945
+dependencies = [
946
+ "serde_core",
947
+]
948
+
949
+[[package]]
950
+name = "toml_edit"
951
+version = "0.22.27"
952
+source = "registry+https://github.com/rust-lang/crates.io-index"
953
+checksum = "41fe8c660ae4257887cf66394862d21dbca4a6ddd26f04a3560410406a2f819a"
954
+dependencies = [
955
+ "indexmap",
956
+ "serde",
957
+ "serde_spanned 0.6.9",
958
+ "toml_datetime 0.6.11",
959
+ "toml_write",
960
+ "winnow",
961
+]
962
+
963
+[[package]]
964
+name = "toml_edit"
965
+version = "0.23.10+spec-1.0.0"
966
+source = "registry+https://github.com/rust-lang/crates.io-index"
967
+checksum = "84c8b9f757e028cee9fa244aea147aab2a9ec09d5325a9b01e0a49730c2b5269"
968
+dependencies = [
969
+ "indexmap",
970
+ "toml_datetime 0.7.5+spec-1.1.0",
971
+ "toml_parser",
972
+ "winnow",
973
+]
974
+
975
+[[package]]
976
+name = "toml_parser"
977
+version = "1.0.6+spec-1.1.0"
978
+source = "registry+https://github.com/rust-lang/crates.io-index"
979
+checksum = "a3198b4b0a8e11f09dd03e133c0280504d0801269e9afa46362ffde1cbeebf44"
980
+dependencies = [
981
+ "winnow",
982
+]
983
+
984
+[[package]]
985
+name = "toml_write"
986
+version = "0.1.2"
987
+source = "registry+https://github.com/rust-lang/crates.io-index"
988
+checksum = "5d99f8c9a7727884afe522e9bd5edbfc91a3312b36a77b5fb8926e4c31a41801"
989
+
990
+[[package]]
991
+name = "toml_writer"
992
+version = "1.0.6+spec-1.1.0"
993
+source = "registry+https://github.com/rust-lang/crates.io-index"
994
+checksum = "ab16f14aed21ee8bfd8ec22513f7287cd4a91aa92e44edfe2c17ddd004e92607"
995
+
996
+[[package]]
997
+name = "tracing"
998
+version = "0.1.44"
999
+source = "registry+https://github.com/rust-lang/crates.io-index"
1000
+checksum = "63e71662fa4b2a2c3a26f570f037eb95bb1f85397f3cd8076caed2f026a6d100"
1001
+dependencies = [
1002
+ "pin-project-lite",
1003
+ "tracing-attributes",
1004
+ "tracing-core",
1005
+]
1006
+
1007
+[[package]]
1008
+name = "tracing-attributes"
1009
+version = "0.1.31"
1010
+source = "registry+https://github.com/rust-lang/crates.io-index"
1011
+checksum = "7490cfa5ec963746568740651ac6781f701c9c5ea257c58e057f3ba8cf69e8da"
1012
+dependencies = [
1013
+ "proc-macro2",
1014
+ "quote",
1015
+ "syn",
1016
+]
1017
+
1018
+[[package]]
1019
+name = "tracing-core"
1020
+version = "0.1.36"
1021
+source = "registry+https://github.com/rust-lang/crates.io-index"
1022
+checksum = "db97caf9d906fbde555dd62fa95ddba9eecfd14cb388e4f491a66d74cd5fb79a"
1023
+dependencies = [
1024
+ "once_cell",
1025
+ "valuable",
1026
+]
1027
+
1028
+[[package]]
1029
+name = "tracing-log"
1030
+version = "0.2.0"
1031
+source = "registry+https://github.com/rust-lang/crates.io-index"
1032
+checksum = "ee855f1f400bd0e5c02d150ae5de3840039a3f54b025156404e34c23c03f47c3"
1033
+dependencies = [
1034
+ "log",
1035
+ "once_cell",
1036
+ "tracing-core",
1037
+]
1038
+
1039
+[[package]]
1040
+name = "tracing-subscriber"
1041
+version = "0.3.22"
1042
+source = "registry+https://github.com/rust-lang/crates.io-index"
1043
+checksum = "2f30143827ddab0d256fd843b7a66d164e9f271cfa0dde49142c5ca0ca291f1e"
1044
+dependencies = [
1045
+ "matchers",
1046
+ "nu-ansi-term",
1047
+ "once_cell",
1048
+ "regex-automata",
1049
+ "sharded-slab",
1050
+ "smallvec",
1051
+ "thread_local",
1052
+ "tracing",
1053
+ "tracing-core",
1054
+ "tracing-log",
1055
+]
1056
+
1057
+[[package]]
1058
+name = "unicode-ident"
1059
+version = "1.0.23"
1060
+source = "registry+https://github.com/rust-lang/crates.io-index"
1061
+checksum = "537dd038a89878be9b64dd4bd1b260315c1bb94f4d784956b81e27a088d9a09e"
1062
+
1063
+[[package]]
1064
+name = "utf8parse"
1065
+version = "0.2.2"
1066
+source = "registry+https://github.com/rust-lang/crates.io-index"
1067
+checksum = "06abde3611657adf66d383f00b093d7faecc7fa57071cce2578660c9f1010821"
1068
+
1069
+[[package]]
1070
+name = "valuable"
1071
+version = "0.1.1"
1072
+source = "registry+https://github.com/rust-lang/crates.io-index"
1073
+checksum = "ba73ea9cf16a25df0c8caa16c51acb937d5712a8429db78a3ee29d5dcacd3a65"
1074
+
1075
+[[package]]
1076
+name = "version-compare"
1077
+version = "0.2.1"
1078
+source = "registry+https://github.com/rust-lang/crates.io-index"
1079
+checksum = "03c2856837ef78f57382f06b2b8563a2f512f7185d732608fd9176cb3b8edf0e"
1080
+
1081
+[[package]]
1082
+name = "wasi"
1083
+version = "0.11.1+wasi-snapshot-preview1"
1084
+source = "registry+https://github.com/rust-lang/crates.io-index"
1085
+checksum = "ccf3ec651a847eb01de73ccad15eb7d99f80485de043efb2f370cd654f4ea44b"
1086
+
1087
+[[package]]
1088
+name = "windows-link"
1089
+version = "0.2.1"
1090
+source = "registry+https://github.com/rust-lang/crates.io-index"
1091
+checksum = "f0805222e57f7521d6a62e36fa9163bc891acd422f971defe97d64e70d0a4fe5"
1092
+
1093
+[[package]]
1094
+name = "windows-sys"
1095
+version = "0.59.0"
1096
+source = "registry+https://github.com/rust-lang/crates.io-index"
1097
+checksum = "1e38bc4d79ed67fd075bcc251a1c39b32a1776bbe92e5bef1f0bf1f8c531853b"
1098
+dependencies = [
1099
+ "windows-targets 0.52.6",
1100
+]
1101
+
1102
+[[package]]
1103
+name = "windows-sys"
1104
+version = "0.60.2"
1105
+source = "registry+https://github.com/rust-lang/crates.io-index"
1106
+checksum = "f2f500e4d28234f72040990ec9d39e3a6b950f9f22d3dba18416c35882612bcb"
1107
+dependencies = [
1108
+ "windows-targets 0.53.5",
1109
+]
1110
+
1111
+[[package]]
1112
+name = "windows-sys"
1113
+version = "0.61.2"
1114
+source = "registry+https://github.com/rust-lang/crates.io-index"
1115
+checksum = "ae137229bcbd6cdf0f7b80a31df61766145077ddf49416a728b02cb3921ff3fc"
1116
+dependencies = [
1117
+ "windows-link",
1118
+]
1119
+
1120
+[[package]]
1121
+name = "windows-targets"
1122
+version = "0.52.6"
1123
+source = "registry+https://github.com/rust-lang/crates.io-index"
1124
+checksum = "9b724f72796e036ab90c1021d4780d4d3d648aca59e491e6b98e725b84e99973"
1125
+dependencies = [
1126
+ "windows_aarch64_gnullvm 0.52.6",
1127
+ "windows_aarch64_msvc 0.52.6",
1128
+ "windows_i686_gnu 0.52.6",
1129
+ "windows_i686_gnullvm 0.52.6",
1130
+ "windows_i686_msvc 0.52.6",
1131
+ "windows_x86_64_gnu 0.52.6",
1132
+ "windows_x86_64_gnullvm 0.52.6",
1133
+ "windows_x86_64_msvc 0.52.6",
1134
+]
1135
+
1136
+[[package]]
1137
+name = "windows-targets"
1138
+version = "0.53.5"
1139
+source = "registry+https://github.com/rust-lang/crates.io-index"
1140
+checksum = "4945f9f551b88e0d65f3db0bc25c33b8acea4d9e41163edf90dcd0b19f9069f3"
1141
+dependencies = [
1142
+ "windows-link",
1143
+ "windows_aarch64_gnullvm 0.53.1",
1144
+ "windows_aarch64_msvc 0.53.1",
1145
+ "windows_i686_gnu 0.53.1",
1146
+ "windows_i686_gnullvm 0.53.1",
1147
+ "windows_i686_msvc 0.53.1",
1148
+ "windows_x86_64_gnu 0.53.1",
1149
+ "windows_x86_64_gnullvm 0.53.1",
1150
+ "windows_x86_64_msvc 0.53.1",
1151
+]
1152
+
1153
+[[package]]
1154
+name = "windows_aarch64_gnullvm"
1155
+version = "0.52.6"
1156
+source = "registry+https://github.com/rust-lang/crates.io-index"
1157
+checksum = "32a4622180e7a0ec044bb555404c800bc9fd9ec262ec147edd5989ccd0c02cd3"
1158
+
1159
+[[package]]
1160
+name = "windows_aarch64_gnullvm"
1161
+version = "0.53.1"
1162
+source = "registry+https://github.com/rust-lang/crates.io-index"
1163
+checksum = "a9d8416fa8b42f5c947f8482c43e7d89e73a173cead56d044f6a56104a6d1b53"
1164
+
1165
+[[package]]
1166
+name = "windows_aarch64_msvc"
1167
+version = "0.52.6"
1168
+source = "registry+https://github.com/rust-lang/crates.io-index"
1169
+checksum = "09ec2a7bb152e2252b53fa7803150007879548bc709c039df7627cabbd05d469"
1170
+
1171
+[[package]]
1172
+name = "windows_aarch64_msvc"
1173
+version = "0.53.1"
1174
+source = "registry+https://github.com/rust-lang/crates.io-index"
1175
+checksum = "b9d782e804c2f632e395708e99a94275910eb9100b2114651e04744e9b125006"
1176
+
1177
+[[package]]
1178
+name = "windows_i686_gnu"
1179
+version = "0.52.6"
1180
+source = "registry+https://github.com/rust-lang/crates.io-index"
1181
+checksum = "8e9b5ad5ab802e97eb8e295ac6720e509ee4c243f69d781394014ebfe8bbfa0b"
1182
+
1183
+[[package]]
1184
+name = "windows_i686_gnu"
1185
+version = "0.53.1"
1186
+source = "registry+https://github.com/rust-lang/crates.io-index"
1187
+checksum = "960e6da069d81e09becb0ca57a65220ddff016ff2d6af6a223cf372a506593a3"
1188
+
1189
+[[package]]
1190
+name = "windows_i686_gnullvm"
1191
+version = "0.52.6"
1192
+source = "registry+https://github.com/rust-lang/crates.io-index"
1193
+checksum = "0eee52d38c090b3caa76c563b86c3a4bd71ef1a819287c19d586d7334ae8ed66"
1194
+
1195
+[[package]]
1196
+name = "windows_i686_gnullvm"
1197
+version = "0.53.1"
1198
+source = "registry+https://github.com/rust-lang/crates.io-index"
1199
+checksum = "fa7359d10048f68ab8b09fa71c3daccfb0e9b559aed648a8f95469c27057180c"
1200
+
1201
+[[package]]
1202
+name = "windows_i686_msvc"
1203
+version = "0.52.6"
1204
+source = "registry+https://github.com/rust-lang/crates.io-index"
1205
+checksum = "240948bc05c5e7c6dabba28bf89d89ffce3e303022809e73deaefe4f6ec56c66"
1206
+
1207
+[[package]]
1208
+name = "windows_i686_msvc"
1209
+version = "0.53.1"
1210
+source = "registry+https://github.com/rust-lang/crates.io-index"
1211
+checksum = "1e7ac75179f18232fe9c285163565a57ef8d3c89254a30685b57d83a38d326c2"
1212
+
1213
+[[package]]
1214
+name = "windows_x86_64_gnu"
1215
+version = "0.52.6"
1216
+source = "registry+https://github.com/rust-lang/crates.io-index"
1217
+checksum = "147a5c80aabfbf0c7d901cb5895d1de30ef2907eb21fbbab29ca94c5b08b1a78"
1218
+
1219
+[[package]]
1220
+name = "windows_x86_64_gnu"
1221
+version = "0.53.1"
1222
+source = "registry+https://github.com/rust-lang/crates.io-index"
1223
+checksum = "9c3842cdd74a865a8066ab39c8a7a473c0778a3f29370b5fd6b4b9aa7df4a499"
1224
+
1225
+[[package]]
1226
+name = "windows_x86_64_gnullvm"
1227
+version = "0.52.6"
1228
+source = "registry+https://github.com/rust-lang/crates.io-index"
1229
+checksum = "24d5b23dc417412679681396f2b49f3de8c1473deb516bd34410872eff51ed0d"
1230
+
1231
+[[package]]
1232
+name = "windows_x86_64_gnullvm"
1233
+version = "0.53.1"
1234
+source = "registry+https://github.com/rust-lang/crates.io-index"
1235
+checksum = "0ffa179e2d07eee8ad8f57493436566c7cc30ac536a3379fdf008f47f6bb7ae1"
1236
+
1237
+[[package]]
1238
+name = "windows_x86_64_msvc"
1239
+version = "0.52.6"
1240
+source = "registry+https://github.com/rust-lang/crates.io-index"
1241
+checksum = "589f6da84c646204747d1270a2a5661ea66ed1cced2631d546fdfb155959f9ec"
1242
+
1243
+[[package]]
1244
+name = "windows_x86_64_msvc"
1245
+version = "0.53.1"
1246
+source = "registry+https://github.com/rust-lang/crates.io-index"
1247
+checksum = "d6bbff5f0aada427a1e5a6da5f1f98158182f26556f345ac9e04d36d0ebed650"
1248
+
1249
+[[package]]
1250
+name = "winnow"
1251
+version = "0.7.14"
1252
+source = "registry+https://github.com/rust-lang/crates.io-index"
1253
+checksum = "5a5364e9d77fcdeeaa6062ced926ee3381faa2ee02d3eb83a5c27a8825540829"
1254
+dependencies = [
1255
+ "memchr",
1256
+]
1257
+
1258
+[[package]]
1259
+name = "x11rb"
1260
+version = "0.13.2"
1261
+source = "registry+https://github.com/rust-lang/crates.io-index"
1262
+checksum = "9993aa5be5a26815fe2c3eacfc1fde061fc1a1f094bf1ad2a18bf9c495dd7414"
1263
+dependencies = [
1264
+ "as-raw-xcb-connection",
1265
+ "gethostname",
1266
+ "libc",
1267
+ "rustix",
1268
+ "x11rb-protocol",
1269
+ "xcursor",
1270
+]
1271
+
1272
+[[package]]
1273
+name = "x11rb-protocol"
1274
+version = "0.13.2"
1275
+source = "registry+https://github.com/rust-lang/crates.io-index"
1276
+checksum = "ea6fc2961e4ef194dcbfe56bb845534d0dc8098940c7e5c012a258bfec6701bd"
1277
+
1278
+[[package]]
1279
+name = "xcursor"
1280
+version = "0.3.10"
1281
+source = "registry+https://github.com/rust-lang/crates.io-index"
1282
+checksum = "bec9e4a500ca8864c5b47b8b482a73d62e4237670e5b5f1d6b9e3cae50f28f2b"
1283
+
1284
+[[package]]
1285
+name = "zmij"
1286
+version = "1.0.20"
1287
+source = "registry+https://github.com/rust-lang/crates.io-index"
1288
+checksum = "4de98dfa5d5b7fef4ee834d0073d560c9ca7b6c46a71d058c48db7960f8cfaf7"