gardesk/gartray / e9bbcfc

Browse files

commit Cargo.lock for nix builds

Authored by mfwolffe <wolffemf@dukes.jmu.edu>
SHA
e9bbcfca4a4ce9ce0edc5d2f698644c2fd5e3a42
Parents
19c8b21
Tree
1692608

2 changed files

StatusFile+-
M .gitignore 0 1
A Cargo.lock 2138 0
.gitignoremodified
@@ -1,7 +1,6 @@
11
 # Build artifacts
22
 /target/
33
 **/*.rs.bk
4
-Cargo.lock
54
 
65
 # IDE
76
 .idea/
Cargo.lockadded
2138 lines changed — click to load
@@ -0,0 +1,2138 @@
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.100"
67
+source = "registry+https://github.com/rust-lang/crates.io-index"
68
+checksum = "a23eb6b1614318a8071c9b2521f36b424b2c83db5eb3a0fead4a6c0809af6e61"
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 = "async-broadcast"
78
+version = "0.7.2"
79
+source = "registry+https://github.com/rust-lang/crates.io-index"
80
+checksum = "435a87a52755b8f27fcf321ac4f04b2802e337c8c4872923137471ec39c37532"
81
+dependencies = [
82
+ "event-listener",
83
+ "event-listener-strategy",
84
+ "futures-core",
85
+ "pin-project-lite",
86
+]
87
+
88
+[[package]]
89
+name = "async-channel"
90
+version = "2.5.0"
91
+source = "registry+https://github.com/rust-lang/crates.io-index"
92
+checksum = "924ed96dd52d1b75e9c1a3e6275715fd320f5f9439fb5a4a11fa51f4221158d2"
93
+dependencies = [
94
+ "concurrent-queue",
95
+ "event-listener-strategy",
96
+ "futures-core",
97
+ "pin-project-lite",
98
+]
99
+
100
+[[package]]
101
+name = "async-executor"
102
+version = "1.13.3"
103
+source = "registry+https://github.com/rust-lang/crates.io-index"
104
+checksum = "497c00e0fd83a72a79a39fcbd8e3e2f055d6f6c7e025f3b3d91f4f8e76527fb8"
105
+dependencies = [
106
+ "async-task",
107
+ "concurrent-queue",
108
+ "fastrand",
109
+ "futures-lite",
110
+ "pin-project-lite",
111
+ "slab",
112
+]
113
+
114
+[[package]]
115
+name = "async-fs"
116
+version = "2.2.0"
117
+source = "registry+https://github.com/rust-lang/crates.io-index"
118
+checksum = "8034a681df4aed8b8edbd7fbe472401ecf009251c8b40556b304567052e294c5"
119
+dependencies = [
120
+ "async-lock",
121
+ "blocking",
122
+ "futures-lite",
123
+]
124
+
125
+[[package]]
126
+name = "async-io"
127
+version = "2.6.0"
128
+source = "registry+https://github.com/rust-lang/crates.io-index"
129
+checksum = "456b8a8feb6f42d237746d4b3e9a178494627745c3c56c6ea55d92ba50d026fc"
130
+dependencies = [
131
+ "autocfg",
132
+ "cfg-if",
133
+ "concurrent-queue",
134
+ "futures-io",
135
+ "futures-lite",
136
+ "parking",
137
+ "polling",
138
+ "rustix",
139
+ "slab",
140
+ "windows-sys 0.61.2",
141
+]
142
+
143
+[[package]]
144
+name = "async-lock"
145
+version = "3.4.2"
146
+source = "registry+https://github.com/rust-lang/crates.io-index"
147
+checksum = "290f7f2596bd5b78a9fec8088ccd89180d7f9f55b94b0576823bbbdc72ee8311"
148
+dependencies = [
149
+ "event-listener",
150
+ "event-listener-strategy",
151
+ "pin-project-lite",
152
+]
153
+
154
+[[package]]
155
+name = "async-process"
156
+version = "2.5.0"
157
+source = "registry+https://github.com/rust-lang/crates.io-index"
158
+checksum = "fc50921ec0055cdd8a16de48773bfeec5c972598674347252c0399676be7da75"
159
+dependencies = [
160
+ "async-channel",
161
+ "async-io",
162
+ "async-lock",
163
+ "async-signal",
164
+ "async-task",
165
+ "blocking",
166
+ "cfg-if",
167
+ "event-listener",
168
+ "futures-lite",
169
+ "rustix",
170
+]
171
+
172
+[[package]]
173
+name = "async-recursion"
174
+version = "1.1.1"
175
+source = "registry+https://github.com/rust-lang/crates.io-index"
176
+checksum = "3b43422f69d8ff38f95f1b2bb76517c91589a924d1559a0e935d7c8ce0274c11"
177
+dependencies = [
178
+ "proc-macro2",
179
+ "quote",
180
+ "syn",
181
+]
182
+
183
+[[package]]
184
+name = "async-signal"
185
+version = "0.2.13"
186
+source = "registry+https://github.com/rust-lang/crates.io-index"
187
+checksum = "43c070bbf59cd3570b6b2dd54cd772527c7c3620fce8be898406dd3ed6adc64c"
188
+dependencies = [
189
+ "async-io",
190
+ "async-lock",
191
+ "atomic-waker",
192
+ "cfg-if",
193
+ "futures-core",
194
+ "futures-io",
195
+ "rustix",
196
+ "signal-hook-registry",
197
+ "slab",
198
+ "windows-sys 0.61.2",
199
+]
200
+
201
+[[package]]
202
+name = "async-task"
203
+version = "4.7.1"
204
+source = "registry+https://github.com/rust-lang/crates.io-index"
205
+checksum = "8b75356056920673b02621b35afd0f7dda9306d03c79a30f5c56c44cf256e3de"
206
+
207
+[[package]]
208
+name = "async-trait"
209
+version = "0.1.89"
210
+source = "registry+https://github.com/rust-lang/crates.io-index"
211
+checksum = "9035ad2d096bed7955a320ee7e2230574d28fd3c3a0f186cbea1ff3c7eed5dbb"
212
+dependencies = [
213
+ "proc-macro2",
214
+ "quote",
215
+ "syn",
216
+]
217
+
218
+[[package]]
219
+name = "atomic-waker"
220
+version = "1.1.2"
221
+source = "registry+https://github.com/rust-lang/crates.io-index"
222
+checksum = "1505bd5d3d116872e7271a6d4e16d81d0c8570876c8de68093a09ac269d8aac0"
223
+
224
+[[package]]
225
+name = "autocfg"
226
+version = "1.5.0"
227
+source = "registry+https://github.com/rust-lang/crates.io-index"
228
+checksum = "c08606f8c3cbf4ce6ec8e28fb0014a2c086708fe954eaa885384a6165172e7e8"
229
+
230
+[[package]]
231
+name = "bitflags"
232
+version = "2.10.0"
233
+source = "registry+https://github.com/rust-lang/crates.io-index"
234
+checksum = "812e12b5285cc515a9c72a5c1d3b6d46a19dac5acfef5265968c166106e31dd3"
235
+
236
+[[package]]
237
+name = "block-buffer"
238
+version = "0.10.4"
239
+source = "registry+https://github.com/rust-lang/crates.io-index"
240
+checksum = "3078c7629b62d3f0439517fa394996acacc5cbc91c5a20d8c658e77abd503a71"
241
+dependencies = [
242
+ "generic-array",
243
+]
244
+
245
+[[package]]
246
+name = "blocking"
247
+version = "1.6.2"
248
+source = "registry+https://github.com/rust-lang/crates.io-index"
249
+checksum = "e83f8d02be6967315521be875afa792a316e28d57b5a2d401897e2a7921b7f21"
250
+dependencies = [
251
+ "async-channel",
252
+ "async-task",
253
+ "futures-io",
254
+ "futures-lite",
255
+ "piper",
256
+]
257
+
258
+[[package]]
259
+name = "bytes"
260
+version = "1.11.0"
261
+source = "registry+https://github.com/rust-lang/crates.io-index"
262
+checksum = "b35204fbdc0b3f4446b89fc1ac2cf84a8a68971995d0bf2e925ec7cd960f9cb3"
263
+
264
+[[package]]
265
+name = "cairo-rs"
266
+version = "0.20.12"
267
+source = "registry+https://github.com/rust-lang/crates.io-index"
268
+checksum = "91e3bd0f4e25afa9cabc157908d14eeef9067d6448c49414d17b3fb55f0eadd0"
269
+dependencies = [
270
+ "bitflags",
271
+ "cairo-sys-rs",
272
+ "glib",
273
+ "libc",
274
+]
275
+
276
+[[package]]
277
+name = "cairo-sys-rs"
278
+version = "0.20.10"
279
+source = "registry+https://github.com/rust-lang/crates.io-index"
280
+checksum = "059cc746549898cbfd9a47754288e5a958756650ef4652bbb6c5f71a6bda4f8b"
281
+dependencies = [
282
+ "glib-sys",
283
+ "libc",
284
+ "system-deps",
285
+]
286
+
287
+[[package]]
288
+name = "cfg-expr"
289
+version = "0.20.5"
290
+source = "registry+https://github.com/rust-lang/crates.io-index"
291
+checksum = "21be0e1ce6cdb2ee7fff840f922fb04ead349e5cfb1e750b769132d44ce04720"
292
+dependencies = [
293
+ "smallvec",
294
+ "target-lexicon",
295
+]
296
+
297
+[[package]]
298
+name = "cfg-if"
299
+version = "1.0.4"
300
+source = "registry+https://github.com/rust-lang/crates.io-index"
301
+checksum = "9330f8b2ff13f34540b44e946ef35111825727b38d33286ef986142615121801"
302
+
303
+[[package]]
304
+name = "cfg_aliases"
305
+version = "0.2.1"
306
+source = "registry+https://github.com/rust-lang/crates.io-index"
307
+checksum = "613afe47fcd5fac7ccf1db93babcb082c5994d996f20b8b159f2ad1658eb5724"
308
+
309
+[[package]]
310
+name = "clap"
311
+version = "4.5.54"
312
+source = "registry+https://github.com/rust-lang/crates.io-index"
313
+checksum = "c6e6ff9dcd79cff5cd969a17a545d79e84ab086e444102a591e288a8aa3ce394"
314
+dependencies = [
315
+ "clap_builder",
316
+ "clap_derive",
317
+]
318
+
319
+[[package]]
320
+name = "clap_builder"
321
+version = "4.5.54"
322
+source = "registry+https://github.com/rust-lang/crates.io-index"
323
+checksum = "fa42cf4d2b7a41bc8f663a7cab4031ebafa1bf3875705bfaf8466dc60ab52c00"
324
+dependencies = [
325
+ "anstream",
326
+ "anstyle",
327
+ "clap_lex",
328
+ "strsim",
329
+]
330
+
331
+[[package]]
332
+name = "clap_derive"
333
+version = "4.5.49"
334
+source = "registry+https://github.com/rust-lang/crates.io-index"
335
+checksum = "2a0b5487afeab2deb2ff4e03a807ad1a03ac532ff5a2cee5d86884440c7f7671"
336
+dependencies = [
337
+ "heck",
338
+ "proc-macro2",
339
+ "quote",
340
+ "syn",
341
+]
342
+
343
+[[package]]
344
+name = "clap_lex"
345
+version = "0.7.7"
346
+source = "registry+https://github.com/rust-lang/crates.io-index"
347
+checksum = "c3e64b0cc0439b12df2fa678eae89a1c56a529fd067a9115f7827f1fffd22b32"
348
+
349
+[[package]]
350
+name = "colorchoice"
351
+version = "1.0.4"
352
+source = "registry+https://github.com/rust-lang/crates.io-index"
353
+checksum = "b05b61dc5112cbb17e4b6cd61790d9845d13888356391624cbe7e41efeac1e75"
354
+
355
+[[package]]
356
+name = "concurrent-queue"
357
+version = "2.5.0"
358
+source = "registry+https://github.com/rust-lang/crates.io-index"
359
+checksum = "4ca0197aee26d1ae37445ee532fefce43251d24cc7c166799f4d46817f1d3973"
360
+dependencies = [
361
+ "crossbeam-utils",
362
+]
363
+
364
+[[package]]
365
+name = "cpufeatures"
366
+version = "0.2.17"
367
+source = "registry+https://github.com/rust-lang/crates.io-index"
368
+checksum = "59ed5838eebb26a2bb2e58f6d5b5316989ae9d08bab10e0e6d103e656d1b0280"
369
+dependencies = [
370
+ "libc",
371
+]
372
+
373
+[[package]]
374
+name = "crossbeam-utils"
375
+version = "0.8.21"
376
+source = "registry+https://github.com/rust-lang/crates.io-index"
377
+checksum = "d0a5c400df2834b80a4c3327b3aad3a4c4cd4de0629063962b03235697506a28"
378
+
379
+[[package]]
380
+name = "crypto-common"
381
+version = "0.1.7"
382
+source = "registry+https://github.com/rust-lang/crates.io-index"
383
+checksum = "78c8292055d1c1df0cce5d180393dc8cce0abec0a7102adb6c7b1eef6016d60a"
384
+dependencies = [
385
+ "generic-array",
386
+ "typenum",
387
+]
388
+
389
+[[package]]
390
+name = "digest"
391
+version = "0.10.7"
392
+source = "registry+https://github.com/rust-lang/crates.io-index"
393
+checksum = "9ed9a281f7bc9b7576e61468ba615a66a5c8cfdff42420a70aa82701a3b1e292"
394
+dependencies = [
395
+ "block-buffer",
396
+ "crypto-common",
397
+]
398
+
399
+[[package]]
400
+name = "dirs"
401
+version = "5.0.1"
402
+source = "registry+https://github.com/rust-lang/crates.io-index"
403
+checksum = "44c45a9d03d6676652bcb5e724c7e988de1acad23a711b5217ab9cbecbec2225"
404
+dependencies = [
405
+ "dirs-sys 0.4.1",
406
+]
407
+
408
+[[package]]
409
+name = "dirs"
410
+version = "6.0.0"
411
+source = "registry+https://github.com/rust-lang/crates.io-index"
412
+checksum = "c3e8aa94d75141228480295a7d0e7feb620b1a5ad9f12bc40be62411e38cce4e"
413
+dependencies = [
414
+ "dirs-sys 0.5.0",
415
+]
416
+
417
+[[package]]
418
+name = "dirs-sys"
419
+version = "0.4.1"
420
+source = "registry+https://github.com/rust-lang/crates.io-index"
421
+checksum = "520f05a5cbd335fae5a99ff7a6ab8627577660ee5cfd6a94a6a929b52ff0321c"
422
+dependencies = [
423
+ "libc",
424
+ "option-ext",
425
+ "redox_users 0.4.6",
426
+ "windows-sys 0.48.0",
427
+]
428
+
429
+[[package]]
430
+name = "dirs-sys"
431
+version = "0.5.0"
432
+source = "registry+https://github.com/rust-lang/crates.io-index"
433
+checksum = "e01a3366d27ee9890022452ee61b2b63a67e6f13f58900b651ff5665f0bb1fab"
434
+dependencies = [
435
+ "libc",
436
+ "option-ext",
437
+ "redox_users 0.5.2",
438
+ "windows-sys 0.61.2",
439
+]
440
+
441
+[[package]]
442
+name = "endi"
443
+version = "1.1.1"
444
+source = "registry+https://github.com/rust-lang/crates.io-index"
445
+checksum = "66b7e2430c6dff6a955451e2cfc438f09cea1965a9d6f87f7e3b90decc014099"
446
+
447
+[[package]]
448
+name = "enumflags2"
449
+version = "0.7.12"
450
+source = "registry+https://github.com/rust-lang/crates.io-index"
451
+checksum = "1027f7680c853e056ebcec683615fb6fbbc07dbaa13b4d5d9442b146ded4ecef"
452
+dependencies = [
453
+ "enumflags2_derive",
454
+ "serde",
455
+]
456
+
457
+[[package]]
458
+name = "enumflags2_derive"
459
+version = "0.7.12"
460
+source = "registry+https://github.com/rust-lang/crates.io-index"
461
+checksum = "67c78a4d8fdf9953a5c9d458f9efe940fd97a0cab0941c075a813ac594733827"
462
+dependencies = [
463
+ "proc-macro2",
464
+ "quote",
465
+ "syn",
466
+]
467
+
468
+[[package]]
469
+name = "equivalent"
470
+version = "1.0.2"
471
+source = "registry+https://github.com/rust-lang/crates.io-index"
472
+checksum = "877a4ace8713b0bcf2a4e7eec82529c029f1d0619886d18145fea96c3ffe5c0f"
473
+
474
+[[package]]
475
+name = "errno"
476
+version = "0.3.14"
477
+source = "registry+https://github.com/rust-lang/crates.io-index"
478
+checksum = "39cab71617ae0d63f51a36d69f866391735b51691dbda63cf6f96d042b63efeb"
479
+dependencies = [
480
+ "libc",
481
+ "windows-sys 0.61.2",
482
+]
483
+
484
+[[package]]
485
+name = "event-listener"
486
+version = "5.4.1"
487
+source = "registry+https://github.com/rust-lang/crates.io-index"
488
+checksum = "e13b66accf52311f30a0db42147dadea9850cb48cd070028831ae5f5d4b856ab"
489
+dependencies = [
490
+ "concurrent-queue",
491
+ "parking",
492
+ "pin-project-lite",
493
+]
494
+
495
+[[package]]
496
+name = "event-listener-strategy"
497
+version = "0.5.4"
498
+source = "registry+https://github.com/rust-lang/crates.io-index"
499
+checksum = "8be9f3dfaaffdae2972880079a491a1a8bb7cbed0b8dd7a347f668b4150a3b93"
500
+dependencies = [
501
+ "event-listener",
502
+ "pin-project-lite",
503
+]
504
+
505
+[[package]]
506
+name = "fastrand"
507
+version = "2.3.0"
508
+source = "registry+https://github.com/rust-lang/crates.io-index"
509
+checksum = "37909eebbb50d72f9059c3b6d82c0463f2ff062c9e95845c43a6c9c0355411be"
510
+
511
+[[package]]
512
+name = "futures-channel"
513
+version = "0.3.31"
514
+source = "registry+https://github.com/rust-lang/crates.io-index"
515
+checksum = "2dff15bf788c671c1934e366d07e30c1814a8ef514e1af724a602e8a2fbe1b10"
516
+dependencies = [
517
+ "futures-core",
518
+]
519
+
520
+[[package]]
521
+name = "futures-core"
522
+version = "0.3.31"
523
+source = "registry+https://github.com/rust-lang/crates.io-index"
524
+checksum = "05f29059c0c2090612e8d742178b0580d2dc940c837851ad723096f87af6663e"
525
+
526
+[[package]]
527
+name = "futures-executor"
528
+version = "0.3.31"
529
+source = "registry+https://github.com/rust-lang/crates.io-index"
530
+checksum = "1e28d1d997f585e54aebc3f97d39e72338912123a67330d723fdbb564d646c9f"
531
+dependencies = [
532
+ "futures-core",
533
+ "futures-task",
534
+ "futures-util",
535
+]
536
+
537
+[[package]]
538
+name = "futures-io"
539
+version = "0.3.31"
540
+source = "registry+https://github.com/rust-lang/crates.io-index"
541
+checksum = "9e5c1b78ca4aae1ac06c48a526a655760685149f0d465d21f37abfe57ce075c6"
542
+
543
+[[package]]
544
+name = "futures-lite"
545
+version = "2.6.1"
546
+source = "registry+https://github.com/rust-lang/crates.io-index"
547
+checksum = "f78e10609fe0e0b3f4157ffab1876319b5b0db102a2c60dc4626306dc46b44ad"
548
+dependencies = [
549
+ "fastrand",
550
+ "futures-core",
551
+ "futures-io",
552
+ "parking",
553
+ "pin-project-lite",
554
+]
555
+
556
+[[package]]
557
+name = "futures-macro"
558
+version = "0.3.31"
559
+source = "registry+https://github.com/rust-lang/crates.io-index"
560
+checksum = "162ee34ebcb7c64a8abebc059ce0fee27c2262618d7b60ed8faf72fef13c3650"
561
+dependencies = [
562
+ "proc-macro2",
563
+ "quote",
564
+ "syn",
565
+]
566
+
567
+[[package]]
568
+name = "futures-sink"
569
+version = "0.3.31"
570
+source = "registry+https://github.com/rust-lang/crates.io-index"
571
+checksum = "e575fab7d1e0dcb8d0c7bcf9a63ee213816ab51902e6d244a95819acacf1d4f7"
572
+
573
+[[package]]
574
+name = "futures-task"
575
+version = "0.3.31"
576
+source = "registry+https://github.com/rust-lang/crates.io-index"
577
+checksum = "f90f7dce0722e95104fcb095585910c0977252f286e354b5e3bd38902cd99988"
578
+
579
+[[package]]
580
+name = "futures-util"
581
+version = "0.3.31"
582
+source = "registry+https://github.com/rust-lang/crates.io-index"
583
+checksum = "9fa08315bb612088cc391249efdc3bc77536f16c91f6cf495e6fbe85b20a4a81"
584
+dependencies = [
585
+ "futures-core",
586
+ "futures-io",
587
+ "futures-macro",
588
+ "futures-sink",
589
+ "futures-task",
590
+ "memchr",
591
+ "pin-project-lite",
592
+ "pin-utils",
593
+ "slab",
594
+]
595
+
596
+[[package]]
597
+name = "gartk-core"
598
+version = "0.1.0"
599
+dependencies = [
600
+ "serde",
601
+ "thiserror 2.0.18",
602
+]
603
+
604
+[[package]]
605
+name = "gartk-render"
606
+version = "0.1.0"
607
+dependencies = [
608
+ "cairo-rs",
609
+ "gartk-core",
610
+ "gartk-x11",
611
+ "pango",
612
+ "pangocairo",
613
+ "thiserror 2.0.18",
614
+ "tracing",
615
+ "x11rb",
616
+]
617
+
618
+[[package]]
619
+name = "gartk-x11"
620
+version = "0.1.0"
621
+dependencies = [
622
+ "gartk-core",
623
+ "thiserror 2.0.18",
624
+ "tracing",
625
+ "x11rb",
626
+]
627
+
628
+[[package]]
629
+name = "gartray"
630
+version = "0.1.0"
631
+dependencies = [
632
+ "anyhow",
633
+ "cairo-rs",
634
+ "clap",
635
+ "dirs 5.0.1",
636
+ "gartk-core",
637
+ "gartk-render",
638
+ "gartk-x11",
639
+ "serde",
640
+ "serde_json",
641
+ "shellexpand",
642
+ "thiserror 1.0.69",
643
+ "tokio",
644
+ "toml 0.8.23",
645
+ "tracing",
646
+ "tracing-subscriber",
647
+ "x11rb",
648
+ "zbus",
649
+]
650
+
651
+[[package]]
652
+name = "gartrayctl"
653
+version = "0.1.0"
654
+dependencies = [
655
+ "anyhow",
656
+ "clap",
657
+ "dirs 5.0.1",
658
+ "serde",
659
+ "serde_json",
660
+]
661
+
662
+[[package]]
663
+name = "generic-array"
664
+version = "0.14.7"
665
+source = "registry+https://github.com/rust-lang/crates.io-index"
666
+checksum = "85649ca51fd72272d7821adaf274ad91c288277713d9c18820d8499a7ff69e9a"
667
+dependencies = [
668
+ "typenum",
669
+ "version_check",
670
+]
671
+
672
+[[package]]
673
+name = "gethostname"
674
+version = "1.1.0"
675
+source = "registry+https://github.com/rust-lang/crates.io-index"
676
+checksum = "1bd49230192a3797a9a4d6abe9b3eed6f7fa4c8a8a4947977c6f80025f92cbd8"
677
+dependencies = [
678
+ "rustix",
679
+ "windows-link",
680
+]
681
+
682
+[[package]]
683
+name = "getrandom"
684
+version = "0.2.17"
685
+source = "registry+https://github.com/rust-lang/crates.io-index"
686
+checksum = "ff2abc00be7fca6ebc474524697ae276ad847ad0a6b3faa4bcb027e9a4614ad0"
687
+dependencies = [
688
+ "cfg-if",
689
+ "libc",
690
+ "wasi",
691
+]
692
+
693
+[[package]]
694
+name = "getrandom"
695
+version = "0.3.4"
696
+source = "registry+https://github.com/rust-lang/crates.io-index"
697
+checksum = "899def5c37c4fd7b2664648c28120ecec138e4d395b459e5ca34f9cce2dd77fd"
698
+dependencies = [
699
+ "cfg-if",
700
+ "libc",
701
+ "r-efi",
702
+ "wasip2",
703
+]
704
+
705
+[[package]]
706
+name = "gio"
707
+version = "0.20.12"
708
+source = "registry+https://github.com/rust-lang/crates.io-index"
709
+checksum = "8e27e276e7b6b8d50f6376ee7769a71133e80d093bdc363bd0af71664228b831"
710
+dependencies = [
711
+ "futures-channel",
712
+ "futures-core",
713
+ "futures-io",
714
+ "futures-util",
715
+ "gio-sys",
716
+ "glib",
717
+ "libc",
718
+ "pin-project-lite",
719
+ "smallvec",
720
+]
721
+
722
+[[package]]
723
+name = "gio-sys"
724
+version = "0.20.10"
725
+source = "registry+https://github.com/rust-lang/crates.io-index"
726
+checksum = "521e93a7e56fc89e84aea9a52cfc9436816a4b363b030260b699950ff1336c83"
727
+dependencies = [
728
+ "glib-sys",
729
+ "gobject-sys",
730
+ "libc",
731
+ "system-deps",
732
+ "windows-sys 0.59.0",
733
+]
734
+
735
+[[package]]
736
+name = "glib"
737
+version = "0.20.12"
738
+source = "registry+https://github.com/rust-lang/crates.io-index"
739
+checksum = "ffc4b6e352d4716d84d7dde562dd9aee2a7d48beb872dd9ece7f2d1515b2d683"
740
+dependencies = [
741
+ "bitflags",
742
+ "futures-channel",
743
+ "futures-core",
744
+ "futures-executor",
745
+ "futures-task",
746
+ "futures-util",
747
+ "gio-sys",
748
+ "glib-macros",
749
+ "glib-sys",
750
+ "gobject-sys",
751
+ "libc",
752
+ "memchr",
753
+ "smallvec",
754
+]
755
+
756
+[[package]]
757
+name = "glib-macros"
758
+version = "0.20.12"
759
+source = "registry+https://github.com/rust-lang/crates.io-index"
760
+checksum = "e8084af62f09475a3f529b1629c10c429d7600ee1398ae12dd3bf175d74e7145"
761
+dependencies = [
762
+ "heck",
763
+ "proc-macro-crate",
764
+ "proc-macro2",
765
+ "quote",
766
+ "syn",
767
+]
768
+
769
+[[package]]
770
+name = "glib-sys"
771
+version = "0.20.10"
772
+source = "registry+https://github.com/rust-lang/crates.io-index"
773
+checksum = "8ab79e1ed126803a8fb827e3de0e2ff95191912b8db65cee467edb56fc4cc215"
774
+dependencies = [
775
+ "libc",
776
+ "system-deps",
777
+]
778
+
779
+[[package]]
780
+name = "gobject-sys"
781
+version = "0.20.10"
782
+source = "registry+https://github.com/rust-lang/crates.io-index"
783
+checksum = "ec9aca94bb73989e3cfdbf8f2e0f1f6da04db4d291c431f444838925c4c63eda"
784
+dependencies = [
785
+ "glib-sys",
786
+ "libc",
787
+ "system-deps",
788
+]
789
+
790
+[[package]]
791
+name = "hashbrown"
792
+version = "0.16.1"
793
+source = "registry+https://github.com/rust-lang/crates.io-index"
794
+checksum = "841d1cc9bed7f9236f321df977030373f4a4163ae1a7dbfe1a51a2c1a51d9100"
795
+
796
+[[package]]
797
+name = "heck"
798
+version = "0.5.0"
799
+source = "registry+https://github.com/rust-lang/crates.io-index"
800
+checksum = "2304e00983f87ffb38b55b444b5e3b60a884b5d30c0fca7d82fe33449bbe55ea"
801
+
802
+[[package]]
803
+name = "hermit-abi"
804
+version = "0.5.2"
805
+source = "registry+https://github.com/rust-lang/crates.io-index"
806
+checksum = "fc0fef456e4baa96da950455cd02c081ca953b141298e41db3fc7e36b1da849c"
807
+
808
+[[package]]
809
+name = "hex"
810
+version = "0.4.3"
811
+source = "registry+https://github.com/rust-lang/crates.io-index"
812
+checksum = "7f24254aa9a54b5c858eaee2f5bccdb46aaf0e486a595ed5fd8f86ba55232a70"
813
+
814
+[[package]]
815
+name = "indexmap"
816
+version = "2.13.0"
817
+source = "registry+https://github.com/rust-lang/crates.io-index"
818
+checksum = "7714e70437a7dc3ac8eb7e6f8df75fd8eb422675fc7678aff7364301092b1017"
819
+dependencies = [
820
+ "equivalent",
821
+ "hashbrown",
822
+]
823
+
824
+[[package]]
825
+name = "is_terminal_polyfill"
826
+version = "1.70.2"
827
+source = "registry+https://github.com/rust-lang/crates.io-index"
828
+checksum = "a6cb138bb79a146c1bd460005623e142ef0181e3d0219cb493e02f7d08a35695"
829
+
830
+[[package]]
831
+name = "itoa"
832
+version = "1.0.17"
833
+source = "registry+https://github.com/rust-lang/crates.io-index"
834
+checksum = "92ecc6618181def0457392ccd0ee51198e065e016d1d527a7ac1b6dc7c1f09d2"
835
+
836
+[[package]]
837
+name = "lazy_static"
838
+version = "1.5.0"
839
+source = "registry+https://github.com/rust-lang/crates.io-index"
840
+checksum = "bbd2bcb4c963f2ddae06a2efc7e9f3591312473c50c6685e1f298068316e66fe"
841
+
842
+[[package]]
843
+name = "libc"
844
+version = "0.2.180"
845
+source = "registry+https://github.com/rust-lang/crates.io-index"
846
+checksum = "bcc35a38544a891a5f7c865aca548a982ccb3b8650a5b06d0fd33a10283c56fc"
847
+
848
+[[package]]
849
+name = "libredox"
850
+version = "0.1.12"
851
+source = "registry+https://github.com/rust-lang/crates.io-index"
852
+checksum = "3d0b95e02c851351f877147b7deea7b1afb1df71b63aa5f8270716e0c5720616"
853
+dependencies = [
854
+ "bitflags",
855
+ "libc",
856
+]
857
+
858
+[[package]]
859
+name = "linux-raw-sys"
860
+version = "0.11.0"
861
+source = "registry+https://github.com/rust-lang/crates.io-index"
862
+checksum = "df1d3c3b53da64cf5760482273a98e575c651a67eec7f77df96b5b642de8f039"
863
+
864
+[[package]]
865
+name = "lock_api"
866
+version = "0.4.14"
867
+source = "registry+https://github.com/rust-lang/crates.io-index"
868
+checksum = "224399e74b87b5f3557511d98dff8b14089b3dadafcab6bb93eab67d3aace965"
869
+dependencies = [
870
+ "scopeguard",
871
+]
872
+
873
+[[package]]
874
+name = "log"
875
+version = "0.4.29"
876
+source = "registry+https://github.com/rust-lang/crates.io-index"
877
+checksum = "5e5032e24019045c762d3c0f28f5b6b8bbf38563a65908389bf7978758920897"
878
+
879
+[[package]]
880
+name = "matchers"
881
+version = "0.2.0"
882
+source = "registry+https://github.com/rust-lang/crates.io-index"
883
+checksum = "d1525a2a28c7f4fa0fc98bb91ae755d1e2d1505079e05539e35bc876b5d65ae9"
884
+dependencies = [
885
+ "regex-automata",
886
+]
887
+
888
+[[package]]
889
+name = "memchr"
890
+version = "2.7.6"
891
+source = "registry+https://github.com/rust-lang/crates.io-index"
892
+checksum = "f52b00d39961fc5b2736ea853c9cc86238e165017a493d1d5c8eac6bdc4cc273"
893
+
894
+[[package]]
895
+name = "memoffset"
896
+version = "0.9.1"
897
+source = "registry+https://github.com/rust-lang/crates.io-index"
898
+checksum = "488016bfae457b036d996092f6cb448677611ce4449e970ceaf42695203f218a"
899
+dependencies = [
900
+ "autocfg",
901
+]
902
+
903
+[[package]]
904
+name = "mio"
905
+version = "1.1.1"
906
+source = "registry+https://github.com/rust-lang/crates.io-index"
907
+checksum = "a69bcab0ad47271a0234d9422b131806bf3968021e5dc9328caf2d4cd58557fc"
908
+dependencies = [
909
+ "libc",
910
+ "wasi",
911
+ "windows-sys 0.61.2",
912
+]
913
+
914
+[[package]]
915
+name = "nix"
916
+version = "0.29.0"
917
+source = "registry+https://github.com/rust-lang/crates.io-index"
918
+checksum = "71e2746dc3a24dd78b3cfcb7be93368c6de9963d30f43a6a73998a9cf4b17b46"
919
+dependencies = [
920
+ "bitflags",
921
+ "cfg-if",
922
+ "cfg_aliases",
923
+ "libc",
924
+ "memoffset",
925
+]
926
+
927
+[[package]]
928
+name = "nu-ansi-term"
929
+version = "0.50.3"
930
+source = "registry+https://github.com/rust-lang/crates.io-index"
931
+checksum = "7957b9740744892f114936ab4a57b3f487491bbeafaf8083688b16841a4240e5"
932
+dependencies = [
933
+ "windows-sys 0.61.2",
934
+]
935
+
936
+[[package]]
937
+name = "once_cell"
938
+version = "1.21.3"
939
+source = "registry+https://github.com/rust-lang/crates.io-index"
940
+checksum = "42f5e15c9953c5e4ccceeb2e7382a716482c34515315f7b03532b8b4e8393d2d"
941
+
942
+[[package]]
943
+name = "once_cell_polyfill"
944
+version = "1.70.2"
945
+source = "registry+https://github.com/rust-lang/crates.io-index"
946
+checksum = "384b8ab6d37215f3c5301a95a4accb5d64aa607f1fcb26a11b5303878451b4fe"
947
+
948
+[[package]]
949
+name = "option-ext"
950
+version = "0.2.0"
951
+source = "registry+https://github.com/rust-lang/crates.io-index"
952
+checksum = "04744f49eae99ab78e0d5c0b603ab218f515ea8cfe5a456d7629ad883a3b6e7d"
953
+
954
+[[package]]
955
+name = "ordered-stream"
956
+version = "0.2.0"
957
+source = "registry+https://github.com/rust-lang/crates.io-index"
958
+checksum = "9aa2b01e1d916879f73a53d01d1d6cee68adbb31d6d9177a8cfce093cced1d50"
959
+dependencies = [
960
+ "futures-core",
961
+ "pin-project-lite",
962
+]
963
+
964
+[[package]]
965
+name = "pango"
966
+version = "0.20.12"
967
+source = "registry+https://github.com/rust-lang/crates.io-index"
968
+checksum = "6576b311f6df659397043a5fa8a021da8f72e34af180b44f7d57348de691ab5c"
969
+dependencies = [
970
+ "gio",
971
+ "glib",
972
+ "libc",
973
+ "pango-sys",
974
+]
975
+
976
+[[package]]
977
+name = "pango-sys"
978
+version = "0.20.10"
979
+source = "registry+https://github.com/rust-lang/crates.io-index"
980
+checksum = "186909673fc09be354555c302c0b3dcf753cd9fa08dcb8077fa663c80fb243fa"
981
+dependencies = [
982
+ "glib-sys",
983
+ "gobject-sys",
984
+ "libc",
985
+ "system-deps",
986
+]
987
+
988
+[[package]]
989
+name = "pangocairo"
990
+version = "0.20.10"
991
+source = "registry+https://github.com/rust-lang/crates.io-index"
992
+checksum = "58890dc451db9964ac2d8874f903a4370a4b3932aa5281ff0c8d9810937ad84f"
993
+dependencies = [
994
+ "cairo-rs",
995
+ "glib",
996
+ "libc",
997
+ "pango",
998
+ "pangocairo-sys",
999
+]
1000
+
1001
+[[package]]
1002
+name = "pangocairo-sys"
1003
+version = "0.20.10"
1004
+source = "registry+https://github.com/rust-lang/crates.io-index"
1005
+checksum = "b9952903f88aa93e2927e7bca2d1ebae64fc26545a9280b4ce6bddeda26b5c42"
1006
+dependencies = [
1007
+ "cairo-sys-rs",
1008
+ "glib-sys",
1009
+ "libc",
1010
+ "pango-sys",
1011
+ "system-deps",
1012
+]
1013
+
1014
+[[package]]
1015
+name = "parking"
1016
+version = "2.2.1"
1017
+source = "registry+https://github.com/rust-lang/crates.io-index"
1018
+checksum = "f38d5652c16fde515bb1ecef450ab0f6a219d619a7274976324d5e377f7dceba"
1019
+
1020
+[[package]]
1021
+name = "parking_lot"
1022
+version = "0.12.5"
1023
+source = "registry+https://github.com/rust-lang/crates.io-index"
1024
+checksum = "93857453250e3077bd71ff98b6a65ea6621a19bb0f559a85248955ac12c45a1a"
1025
+dependencies = [
1026
+ "lock_api",
1027
+ "parking_lot_core",
1028
+]
1029
+
1030
+[[package]]
1031
+name = "parking_lot_core"
1032
+version = "0.9.12"
1033
+source = "registry+https://github.com/rust-lang/crates.io-index"
1034
+checksum = "2621685985a2ebf1c516881c026032ac7deafcda1a2c9b7850dc81e3dfcb64c1"
1035
+dependencies = [
1036
+ "cfg-if",
1037
+ "libc",
1038
+ "redox_syscall",
1039
+ "smallvec",
1040
+ "windows-link",
1041
+]
1042
+
1043
+[[package]]
1044
+name = "pin-project-lite"
1045
+version = "0.2.16"
1046
+source = "registry+https://github.com/rust-lang/crates.io-index"
1047
+checksum = "3b3cff922bd51709b605d9ead9aa71031d81447142d828eb4a6eba76fe619f9b"
1048
+
1049
+[[package]]
1050
+name = "pin-utils"
1051
+version = "0.1.0"
1052
+source = "registry+https://github.com/rust-lang/crates.io-index"
1053
+checksum = "8b870d8c151b6f2fb93e84a13146138f05d02ed11c7e7c54f8826aaaf7c9f184"
1054
+
1055
+[[package]]
1056
+name = "piper"
1057
+version = "0.2.4"
1058
+source = "registry+https://github.com/rust-lang/crates.io-index"
1059
+checksum = "96c8c490f422ef9a4efd2cb5b42b76c8613d7e7dfc1caf667b8a3350a5acc066"
1060
+dependencies = [
1061
+ "atomic-waker",
1062
+ "fastrand",
1063
+ "futures-io",
1064
+]
1065
+
1066
+[[package]]
1067
+name = "pkg-config"
1068
+version = "0.3.32"
1069
+source = "registry+https://github.com/rust-lang/crates.io-index"
1070
+checksum = "7edddbd0b52d732b21ad9a5fab5c704c14cd949e5e9a1ec5929a24fded1b904c"
1071
+
1072
+[[package]]
1073
+name = "polling"
1074
+version = "3.11.0"
1075
+source = "registry+https://github.com/rust-lang/crates.io-index"
1076
+checksum = "5d0e4f59085d47d8241c88ead0f274e8a0cb551f3625263c05eb8dd897c34218"
1077
+dependencies = [
1078
+ "cfg-if",
1079
+ "concurrent-queue",
1080
+ "hermit-abi",
1081
+ "pin-project-lite",
1082
+ "rustix",
1083
+ "windows-sys 0.61.2",
1084
+]
1085
+
1086
+[[package]]
1087
+name = "ppv-lite86"
1088
+version = "0.2.21"
1089
+source = "registry+https://github.com/rust-lang/crates.io-index"
1090
+checksum = "85eae3c4ed2f50dcfe72643da4befc30deadb458a9b590d720cde2f2b1e97da9"
1091
+dependencies = [
1092
+ "zerocopy",
1093
+]
1094
+
1095
+[[package]]
1096
+name = "proc-macro-crate"
1097
+version = "3.4.0"
1098
+source = "registry+https://github.com/rust-lang/crates.io-index"
1099
+checksum = "219cb19e96be00ab2e37d6e299658a0cfa83e52429179969b0f0121b4ac46983"
1100
+dependencies = [
1101
+ "toml_edit 0.23.10+spec-1.0.0",
1102
+]
1103
+
1104
+[[package]]
1105
+name = "proc-macro2"
1106
+version = "1.0.105"
1107
+source = "registry+https://github.com/rust-lang/crates.io-index"
1108
+checksum = "535d180e0ecab6268a3e718bb9fd44db66bbbc256257165fc699dadf70d16fe7"
1109
+dependencies = [
1110
+ "unicode-ident",
1111
+]
1112
+
1113
+[[package]]
1114
+name = "quote"
1115
+version = "1.0.43"
1116
+source = "registry+https://github.com/rust-lang/crates.io-index"
1117
+checksum = "dc74d9a594b72ae6656596548f56f667211f8a97b3d4c3d467150794690dc40a"
1118
+dependencies = [
1119
+ "proc-macro2",
1120
+]
1121
+
1122
+[[package]]
1123
+name = "r-efi"
1124
+version = "5.3.0"
1125
+source = "registry+https://github.com/rust-lang/crates.io-index"
1126
+checksum = "69cdb34c158ceb288df11e18b4bd39de994f6657d83847bdffdbd7f346754b0f"
1127
+
1128
+[[package]]
1129
+name = "rand"
1130
+version = "0.8.5"
1131
+source = "registry+https://github.com/rust-lang/crates.io-index"
1132
+checksum = "34af8d1a0e25924bc5b7c43c079c942339d8f0a8b57c39049bef581b46327404"
1133
+dependencies = [
1134
+ "libc",
1135
+ "rand_chacha",
1136
+ "rand_core",
1137
+]
1138
+
1139
+[[package]]
1140
+name = "rand_chacha"
1141
+version = "0.3.1"
1142
+source = "registry+https://github.com/rust-lang/crates.io-index"
1143
+checksum = "e6c10a63a0fa32252be49d21e7709d4d4baf8d231c2dbce1eaa8141b9b127d88"
1144
+dependencies = [
1145
+ "ppv-lite86",
1146
+ "rand_core",
1147
+]
1148
+
1149
+[[package]]
1150
+name = "rand_core"
1151
+version = "0.6.4"
1152
+source = "registry+https://github.com/rust-lang/crates.io-index"
1153
+checksum = "ec0be4795e2f6a28069bec0b5ff3e2ac9bafc99e6a9a7dc3547996c5c816922c"
1154
+dependencies = [
1155
+ "getrandom 0.2.17",
1156
+]
1157
+
1158
+[[package]]
1159
+name = "redox_syscall"
1160
+version = "0.5.18"
1161
+source = "registry+https://github.com/rust-lang/crates.io-index"
1162
+checksum = "ed2bf2547551a7053d6fdfafda3f938979645c44812fbfcda098faae3f1a362d"
1163
+dependencies = [
1164
+ "bitflags",
1165
+]
1166
+
1167
+[[package]]
1168
+name = "redox_users"
1169
+version = "0.4.6"
1170
+source = "registry+https://github.com/rust-lang/crates.io-index"
1171
+checksum = "ba009ff324d1fc1b900bd1fdb31564febe58a8ccc8a6fdbb93b543d33b13ca43"
1172
+dependencies = [
1173
+ "getrandom 0.2.17",
1174
+ "libredox",
1175
+ "thiserror 1.0.69",
1176
+]
1177
+
1178
+[[package]]
1179
+name = "redox_users"
1180
+version = "0.5.2"
1181
+source = "registry+https://github.com/rust-lang/crates.io-index"
1182
+checksum = "a4e608c6638b9c18977b00b475ac1f28d14e84b27d8d42f70e0bf1e3dec127ac"
1183
+dependencies = [
1184
+ "getrandom 0.2.17",
1185
+ "libredox",
1186
+ "thiserror 2.0.18",
1187
+]
1188
+
1189
+[[package]]
1190
+name = "regex-automata"
1191
+version = "0.4.13"
1192
+source = "registry+https://github.com/rust-lang/crates.io-index"
1193
+checksum = "5276caf25ac86c8d810222b3dbb938e512c55c6831a10f3e6ed1c93b84041f1c"
1194
+dependencies = [
1195
+ "aho-corasick",
1196
+ "memchr",
1197
+ "regex-syntax",
1198
+]
1199
+
1200
+[[package]]
1201
+name = "regex-syntax"
1202
+version = "0.8.8"
1203
+source = "registry+https://github.com/rust-lang/crates.io-index"
1204
+checksum = "7a2d987857b319362043e95f5353c0535c1f58eec5336fdfcf626430af7def58"
1205
+
1206
+[[package]]
1207
+name = "rustix"
1208
+version = "1.1.3"
1209
+source = "registry+https://github.com/rust-lang/crates.io-index"
1210
+checksum = "146c9e247ccc180c1f61615433868c99f3de3ae256a30a43b49f67c2d9171f34"
1211
+dependencies = [
1212
+ "bitflags",
1213
+ "errno",
1214
+ "libc",
1215
+ "linux-raw-sys",
1216
+ "windows-sys 0.61.2",
1217
+]
1218
+
1219
+[[package]]
1220
+name = "scopeguard"
1221
+version = "1.2.0"
1222
+source = "registry+https://github.com/rust-lang/crates.io-index"
1223
+checksum = "94143f37725109f92c262ed2cf5e59bce7498c01bcc1502d7b9afe439a4e9f49"
1224
+
1225
+[[package]]
1226
+name = "serde"
1227
+version = "1.0.228"
1228
+source = "registry+https://github.com/rust-lang/crates.io-index"
1229
+checksum = "9a8e94ea7f378bd32cbbd37198a4a91436180c5bb472411e48b5ec2e2124ae9e"
1230
+dependencies = [
1231
+ "serde_core",
1232
+ "serde_derive",
1233
+]
1234
+
1235
+[[package]]
1236
+name = "serde_core"
1237
+version = "1.0.228"
1238
+source = "registry+https://github.com/rust-lang/crates.io-index"
1239
+checksum = "41d385c7d4ca58e59fc732af25c3983b67ac852c1a25000afe1175de458b67ad"
1240
+dependencies = [
1241
+ "serde_derive",
1242
+]
1243
+
1244
+[[package]]
1245
+name = "serde_derive"
1246
+version = "1.0.228"
1247
+source = "registry+https://github.com/rust-lang/crates.io-index"
1248
+checksum = "d540f220d3187173da220f885ab66608367b6574e925011a9353e4badda91d79"
1249
+dependencies = [
1250
+ "proc-macro2",
1251
+ "quote",
1252
+ "syn",
1253
+]
1254
+
1255
+[[package]]
1256
+name = "serde_json"
1257
+version = "1.0.149"
1258
+source = "registry+https://github.com/rust-lang/crates.io-index"
1259
+checksum = "83fc039473c5595ace860d8c4fafa220ff474b3fc6bfdb4293327f1a37e94d86"
1260
+dependencies = [
1261
+ "itoa",
1262
+ "memchr",
1263
+ "serde",
1264
+ "serde_core",
1265
+ "zmij",
1266
+]
1267
+
1268
+[[package]]
1269
+name = "serde_repr"
1270
+version = "0.1.20"
1271
+source = "registry+https://github.com/rust-lang/crates.io-index"
1272
+checksum = "175ee3e80ae9982737ca543e96133087cbd9a485eecc3bc4de9c1a37b47ea59c"
1273
+dependencies = [
1274
+ "proc-macro2",
1275
+ "quote",
1276
+ "syn",
1277
+]
1278
+
1279
+[[package]]
1280
+name = "serde_spanned"
1281
+version = "0.6.9"
1282
+source = "registry+https://github.com/rust-lang/crates.io-index"
1283
+checksum = "bf41e0cfaf7226dca15e8197172c295a782857fcb97fad1808a166870dee75a3"
1284
+dependencies = [
1285
+ "serde",
1286
+]
1287
+
1288
+[[package]]
1289
+name = "serde_spanned"
1290
+version = "1.0.4"
1291
+source = "registry+https://github.com/rust-lang/crates.io-index"
1292
+checksum = "f8bbf91e5a4d6315eee45e704372590b30e260ee83af6639d64557f51b067776"
1293
+dependencies = [
1294
+ "serde_core",
1295
+]
1296
+
1297
+[[package]]
1298
+name = "sha1"
1299
+version = "0.10.6"
1300
+source = "registry+https://github.com/rust-lang/crates.io-index"
1301
+checksum = "e3bf829a2d51ab4a5ddf1352d8470c140cadc8301b2ae1789db023f01cedd6ba"
1302
+dependencies = [
1303
+ "cfg-if",
1304
+ "cpufeatures",
1305
+ "digest",
1306
+]
1307
+
1308
+[[package]]
1309
+name = "sharded-slab"
1310
+version = "0.1.7"
1311
+source = "registry+https://github.com/rust-lang/crates.io-index"
1312
+checksum = "f40ca3c46823713e0d4209592e8d6e826aa57e928f09752619fc696c499637f6"
1313
+dependencies = [
1314
+ "lazy_static",
1315
+]
1316
+
1317
+[[package]]
1318
+name = "shellexpand"
1319
+version = "3.1.1"
1320
+source = "registry+https://github.com/rust-lang/crates.io-index"
1321
+checksum = "8b1fdf65dd6331831494dd616b30351c38e96e45921a27745cf98490458b90bb"
1322
+dependencies = [
1323
+ "dirs 6.0.0",
1324
+]
1325
+
1326
+[[package]]
1327
+name = "signal-hook-registry"
1328
+version = "1.4.8"
1329
+source = "registry+https://github.com/rust-lang/crates.io-index"
1330
+checksum = "c4db69cba1110affc0e9f7bcd48bbf87b3f4fc7c61fc9155afd4c469eb3d6c1b"
1331
+dependencies = [
1332
+ "errno",
1333
+ "libc",
1334
+]
1335
+
1336
+[[package]]
1337
+name = "slab"
1338
+version = "0.4.11"
1339
+source = "registry+https://github.com/rust-lang/crates.io-index"
1340
+checksum = "7a2ae44ef20feb57a68b23d846850f861394c2e02dc425a50098ae8c90267589"
1341
+
1342
+[[package]]
1343
+name = "smallvec"
1344
+version = "1.15.1"
1345
+source = "registry+https://github.com/rust-lang/crates.io-index"
1346
+checksum = "67b1b7a3b5fe4f1376887184045fcf45c69e92af734b7aaddc05fb777b6fbd03"
1347
+
1348
+[[package]]
1349
+name = "socket2"
1350
+version = "0.6.1"
1351
+source = "registry+https://github.com/rust-lang/crates.io-index"
1352
+checksum = "17129e116933cf371d018bb80ae557e889637989d8638274fb25622827b03881"
1353
+dependencies = [
1354
+ "libc",
1355
+ "windows-sys 0.60.2",
1356
+]
1357
+
1358
+[[package]]
1359
+name = "static_assertions"
1360
+version = "1.1.0"
1361
+source = "registry+https://github.com/rust-lang/crates.io-index"
1362
+checksum = "a2eb9349b6444b326872e140eb1cf5e7c522154d69e7a0ffb0fb81c06b37543f"
1363
+
1364
+[[package]]
1365
+name = "strsim"
1366
+version = "0.11.1"
1367
+source = "registry+https://github.com/rust-lang/crates.io-index"
1368
+checksum = "7da8b5736845d9f2fcb837ea5d9e2628564b3b043a70948a3f0b778838c5fb4f"
1369
+
1370
+[[package]]
1371
+name = "syn"
1372
+version = "2.0.114"
1373
+source = "registry+https://github.com/rust-lang/crates.io-index"
1374
+checksum = "d4d107df263a3013ef9b1879b0df87d706ff80f65a86ea879bd9c31f9b307c2a"
1375
+dependencies = [
1376
+ "proc-macro2",
1377
+ "quote",
1378
+ "unicode-ident",
1379
+]
1380
+
1381
+[[package]]
1382
+name = "system-deps"
1383
+version = "7.0.7"
1384
+source = "registry+https://github.com/rust-lang/crates.io-index"
1385
+checksum = "48c8f33736f986f16d69b6cb8b03f55ddcad5c41acc4ccc39dd88e84aa805e7f"
1386
+dependencies = [
1387
+ "cfg-expr",
1388
+ "heck",
1389
+ "pkg-config",
1390
+ "toml 0.9.11+spec-1.1.0",
1391
+ "version-compare",
1392
+]
1393
+
1394
+[[package]]
1395
+name = "target-lexicon"
1396
+version = "0.13.3"
1397
+source = "registry+https://github.com/rust-lang/crates.io-index"
1398
+checksum = "df7f62577c25e07834649fc3b39fafdc597c0a3527dc1c60129201ccfcbaa50c"
1399
+
1400
+[[package]]
1401
+name = "tempfile"
1402
+version = "3.24.0"
1403
+source = "registry+https://github.com/rust-lang/crates.io-index"
1404
+checksum = "655da9c7eb6305c55742045d5a8d2037996d61d8de95806335c7c86ce0f82e9c"
1405
+dependencies = [
1406
+ "fastrand",
1407
+ "getrandom 0.3.4",
1408
+ "once_cell",
1409
+ "rustix",
1410
+ "windows-sys 0.61.2",
1411
+]
1412
+
1413
+[[package]]
1414
+name = "thiserror"
1415
+version = "1.0.69"
1416
+source = "registry+https://github.com/rust-lang/crates.io-index"
1417
+checksum = "b6aaf5339b578ea85b50e080feb250a3e8ae8cfcdff9a461c9ec2904bc923f52"
1418
+dependencies = [
1419
+ "thiserror-impl 1.0.69",
1420
+]
1421
+
1422
+[[package]]
1423
+name = "thiserror"
1424
+version = "2.0.18"
1425
+source = "registry+https://github.com/rust-lang/crates.io-index"
1426
+checksum = "4288b5bcbc7920c07a1149a35cf9590a2aa808e0bc1eafaade0b80947865fbc4"
1427
+dependencies = [
1428
+ "thiserror-impl 2.0.18",
1429
+]
1430
+
1431
+[[package]]
1432
+name = "thiserror-impl"
1433
+version = "1.0.69"
1434
+source = "registry+https://github.com/rust-lang/crates.io-index"
1435
+checksum = "4fee6c4efc90059e10f81e6d42c60a18f76588c3d74cb83a0b242a2b6c7504c1"
1436
+dependencies = [
1437
+ "proc-macro2",
1438
+ "quote",
1439
+ "syn",
1440
+]
1441
+
1442
+[[package]]
1443
+name = "thiserror-impl"
1444
+version = "2.0.18"
1445
+source = "registry+https://github.com/rust-lang/crates.io-index"
1446
+checksum = "ebc4ee7f67670e9b64d05fa4253e753e016c6c95ff35b89b7941d6b856dec1d5"
1447
+dependencies = [
1448
+ "proc-macro2",
1449
+ "quote",
1450
+ "syn",
1451
+]
1452
+
1453
+[[package]]
1454
+name = "thread_local"
1455
+version = "1.1.9"
1456
+source = "registry+https://github.com/rust-lang/crates.io-index"
1457
+checksum = "f60246a4944f24f6e018aa17cdeffb7818b76356965d03b07d6a9886e8962185"
1458
+dependencies = [
1459
+ "cfg-if",
1460
+]
1461
+
1462
+[[package]]
1463
+name = "tokio"
1464
+version = "1.49.0"
1465
+source = "registry+https://github.com/rust-lang/crates.io-index"
1466
+checksum = "72a2903cd7736441aac9df9d7688bd0ce48edccaadf181c3b90be801e81d3d86"
1467
+dependencies = [
1468
+ "bytes",
1469
+ "libc",
1470
+ "mio",
1471
+ "parking_lot",
1472
+ "pin-project-lite",
1473
+ "signal-hook-registry",
1474
+ "socket2",
1475
+ "tokio-macros",
1476
+ "windows-sys 0.61.2",
1477
+]
1478
+
1479
+[[package]]
1480
+name = "tokio-macros"
1481
+version = "2.6.0"
1482
+source = "registry+https://github.com/rust-lang/crates.io-index"
1483
+checksum = "af407857209536a95c8e56f8231ef2c2e2aff839b22e07a1ffcbc617e9db9fa5"
1484
+dependencies = [
1485
+ "proc-macro2",
1486
+ "quote",
1487
+ "syn",
1488
+]
1489
+
1490
+[[package]]
1491
+name = "toml"
1492
+version = "0.8.23"
1493
+source = "registry+https://github.com/rust-lang/crates.io-index"
1494
+checksum = "dc1beb996b9d83529a9e75c17a1686767d148d70663143c7854d8b4a09ced362"
1495
+dependencies = [
1496
+ "serde",
1497
+ "serde_spanned 0.6.9",
1498
+ "toml_datetime 0.6.11",
1499
+ "toml_edit 0.22.27",
1500
+]
1501
+
1502
+[[package]]
1503
+name = "toml"
1504
+version = "0.9.11+spec-1.1.0"
1505
+source = "registry+https://github.com/rust-lang/crates.io-index"
1506
+checksum = "f3afc9a848309fe1aaffaed6e1546a7a14de1f935dc9d89d32afd9a44bab7c46"
1507
+dependencies = [
1508
+ "indexmap",
1509
+ "serde_core",
1510
+ "serde_spanned 1.0.4",
1511
+ "toml_datetime 0.7.5+spec-1.1.0",
1512
+ "toml_parser",
1513
+ "toml_writer",
1514
+ "winnow",
1515
+]
1516
+
1517
+[[package]]
1518
+name = "toml_datetime"
1519
+version = "0.6.11"
1520
+source = "registry+https://github.com/rust-lang/crates.io-index"
1521
+checksum = "22cddaf88f4fbc13c51aebbf5f8eceb5c7c5a9da2ac40a13519eb5b0a0e8f11c"
1522
+dependencies = [
1523
+ "serde",
1524
+]
1525
+
1526
+[[package]]
1527
+name = "toml_datetime"
1528
+version = "0.7.5+spec-1.1.0"
1529
+source = "registry+https://github.com/rust-lang/crates.io-index"
1530
+checksum = "92e1cfed4a3038bc5a127e35a2d360f145e1f4b971b551a2ba5fd7aedf7e1347"
1531
+dependencies = [
1532
+ "serde_core",
1533
+]
1534
+
1535
+[[package]]
1536
+name = "toml_edit"
1537
+version = "0.22.27"
1538
+source = "registry+https://github.com/rust-lang/crates.io-index"
1539
+checksum = "41fe8c660ae4257887cf66394862d21dbca4a6ddd26f04a3560410406a2f819a"
1540
+dependencies = [
1541
+ "indexmap",
1542
+ "serde",
1543
+ "serde_spanned 0.6.9",
1544
+ "toml_datetime 0.6.11",
1545
+ "toml_write",
1546
+ "winnow",
1547
+]
1548
+
1549
+[[package]]
1550
+name = "toml_edit"
1551
+version = "0.23.10+spec-1.0.0"
1552
+source = "registry+https://github.com/rust-lang/crates.io-index"
1553
+checksum = "84c8b9f757e028cee9fa244aea147aab2a9ec09d5325a9b01e0a49730c2b5269"
1554
+dependencies = [
1555
+ "indexmap",
1556
+ "toml_datetime 0.7.5+spec-1.1.0",
1557
+ "toml_parser",
1558
+ "winnow",
1559
+]
1560
+
1561
+[[package]]
1562
+name = "toml_parser"
1563
+version = "1.0.6+spec-1.1.0"
1564
+source = "registry+https://github.com/rust-lang/crates.io-index"
1565
+checksum = "a3198b4b0a8e11f09dd03e133c0280504d0801269e9afa46362ffde1cbeebf44"
1566
+dependencies = [
1567
+ "winnow",
1568
+]
1569
+
1570
+[[package]]
1571
+name = "toml_write"
1572
+version = "0.1.2"
1573
+source = "registry+https://github.com/rust-lang/crates.io-index"
1574
+checksum = "5d99f8c9a7727884afe522e9bd5edbfc91a3312b36a77b5fb8926e4c31a41801"
1575
+
1576
+[[package]]
1577
+name = "toml_writer"
1578
+version = "1.0.6+spec-1.1.0"
1579
+source = "registry+https://github.com/rust-lang/crates.io-index"
1580
+checksum = "ab16f14aed21ee8bfd8ec22513f7287cd4a91aa92e44edfe2c17ddd004e92607"
1581
+
1582
+[[package]]
1583
+name = "tracing"
1584
+version = "0.1.44"
1585
+source = "registry+https://github.com/rust-lang/crates.io-index"
1586
+checksum = "63e71662fa4b2a2c3a26f570f037eb95bb1f85397f3cd8076caed2f026a6d100"
1587
+dependencies = [
1588
+ "pin-project-lite",
1589
+ "tracing-attributes",
1590
+ "tracing-core",
1591
+]
1592
+
1593
+[[package]]
1594
+name = "tracing-attributes"
1595
+version = "0.1.31"
1596
+source = "registry+https://github.com/rust-lang/crates.io-index"
1597
+checksum = "7490cfa5ec963746568740651ac6781f701c9c5ea257c58e057f3ba8cf69e8da"
1598
+dependencies = [
1599
+ "proc-macro2",
1600
+ "quote",
1601
+ "syn",
1602
+]
1603
+
1604
+[[package]]
1605
+name = "tracing-core"
1606
+version = "0.1.36"
1607
+source = "registry+https://github.com/rust-lang/crates.io-index"
1608
+checksum = "db97caf9d906fbde555dd62fa95ddba9eecfd14cb388e4f491a66d74cd5fb79a"
1609
+dependencies = [
1610
+ "once_cell",
1611
+ "valuable",
1612
+]
1613
+
1614
+[[package]]
1615
+name = "tracing-log"
1616
+version = "0.2.0"
1617
+source = "registry+https://github.com/rust-lang/crates.io-index"
1618
+checksum = "ee855f1f400bd0e5c02d150ae5de3840039a3f54b025156404e34c23c03f47c3"
1619
+dependencies = [
1620
+ "log",
1621
+ "once_cell",
1622
+ "tracing-core",
1623
+]
1624
+
1625
+[[package]]
1626
+name = "tracing-subscriber"
1627
+version = "0.3.22"
1628
+source = "registry+https://github.com/rust-lang/crates.io-index"
1629
+checksum = "2f30143827ddab0d256fd843b7a66d164e9f271cfa0dde49142c5ca0ca291f1e"
1630
+dependencies = [
1631
+ "matchers",
1632
+ "nu-ansi-term",
1633
+ "once_cell",
1634
+ "regex-automata",
1635
+ "sharded-slab",
1636
+ "smallvec",
1637
+ "thread_local",
1638
+ "tracing",
1639
+ "tracing-core",
1640
+ "tracing-log",
1641
+]
1642
+
1643
+[[package]]
1644
+name = "typenum"
1645
+version = "1.19.0"
1646
+source = "registry+https://github.com/rust-lang/crates.io-index"
1647
+checksum = "562d481066bde0658276a35467c4af00bdc6ee726305698a55b86e61d7ad82bb"
1648
+
1649
+[[package]]
1650
+name = "uds_windows"
1651
+version = "1.1.0"
1652
+source = "registry+https://github.com/rust-lang/crates.io-index"
1653
+checksum = "89daebc3e6fd160ac4aa9fc8b3bf71e1f74fbf92367ae71fb83a037e8bf164b9"
1654
+dependencies = [
1655
+ "memoffset",
1656
+ "tempfile",
1657
+ "winapi",
1658
+]
1659
+
1660
+[[package]]
1661
+name = "unicode-ident"
1662
+version = "1.0.22"
1663
+source = "registry+https://github.com/rust-lang/crates.io-index"
1664
+checksum = "9312f7c4f6ff9069b165498234ce8be658059c6728633667c526e27dc2cf1df5"
1665
+
1666
+[[package]]
1667
+name = "utf8parse"
1668
+version = "0.2.2"
1669
+source = "registry+https://github.com/rust-lang/crates.io-index"
1670
+checksum = "06abde3611657adf66d383f00b093d7faecc7fa57071cce2578660c9f1010821"
1671
+
1672
+[[package]]
1673
+name = "valuable"
1674
+version = "0.1.1"
1675
+source = "registry+https://github.com/rust-lang/crates.io-index"
1676
+checksum = "ba73ea9cf16a25df0c8caa16c51acb937d5712a8429db78a3ee29d5dcacd3a65"
1677
+
1678
+[[package]]
1679
+name = "version-compare"
1680
+version = "0.2.1"
1681
+source = "registry+https://github.com/rust-lang/crates.io-index"
1682
+checksum = "03c2856837ef78f57382f06b2b8563a2f512f7185d732608fd9176cb3b8edf0e"
1683
+
1684
+[[package]]
1685
+name = "version_check"
1686
+version = "0.9.5"
1687
+source = "registry+https://github.com/rust-lang/crates.io-index"
1688
+checksum = "0b928f33d975fc6ad9f86c8f283853ad26bdd5b10b7f1542aa2fa15e2289105a"
1689
+
1690
+[[package]]
1691
+name = "wasi"
1692
+version = "0.11.1+wasi-snapshot-preview1"
1693
+source = "registry+https://github.com/rust-lang/crates.io-index"
1694
+checksum = "ccf3ec651a847eb01de73ccad15eb7d99f80485de043efb2f370cd654f4ea44b"
1695
+
1696
+[[package]]
1697
+name = "wasip2"
1698
+version = "1.0.2+wasi-0.2.9"
1699
+source = "registry+https://github.com/rust-lang/crates.io-index"
1700
+checksum = "9517f9239f02c069db75e65f174b3da828fe5f5b945c4dd26bd25d89c03ebcf5"
1701
+dependencies = [
1702
+ "wit-bindgen",
1703
+]
1704
+
1705
+[[package]]
1706
+name = "winapi"
1707
+version = "0.3.9"
1708
+source = "registry+https://github.com/rust-lang/crates.io-index"
1709
+checksum = "5c839a674fcd7a98952e593242ea400abe93992746761e38641405d28b00f419"
1710
+dependencies = [
1711
+ "winapi-i686-pc-windows-gnu",
1712
+ "winapi-x86_64-pc-windows-gnu",
1713
+]
1714
+
1715
+[[package]]
1716
+name = "winapi-i686-pc-windows-gnu"
1717
+version = "0.4.0"
1718
+source = "registry+https://github.com/rust-lang/crates.io-index"
1719
+checksum = "ac3b87c63620426dd9b991e5ce0329eff545bccbbb34f3be09ff6fb6ab51b7b6"
1720
+
1721
+[[package]]
1722
+name = "winapi-x86_64-pc-windows-gnu"
1723
+version = "0.4.0"
1724
+source = "registry+https://github.com/rust-lang/crates.io-index"
1725
+checksum = "712e227841d057c1ee1cd2fb22fa7e5a5461ae8e48fa2ca79ec42cfc1931183f"
1726
+
1727
+[[package]]
1728
+name = "windows-link"
1729
+version = "0.2.1"
1730
+source = "registry+https://github.com/rust-lang/crates.io-index"
1731
+checksum = "f0805222e57f7521d6a62e36fa9163bc891acd422f971defe97d64e70d0a4fe5"
1732
+
1733
+[[package]]
1734
+name = "windows-sys"
1735
+version = "0.48.0"
1736
+source = "registry+https://github.com/rust-lang/crates.io-index"
1737
+checksum = "677d2418bec65e3338edb076e806bc1ec15693c5d0104683f2efe857f61056a9"
1738
+dependencies = [
1739
+ "windows-targets 0.48.5",
1740
+]
1741
+
1742
+[[package]]
1743
+name = "windows-sys"
1744
+version = "0.52.0"
1745
+source = "registry+https://github.com/rust-lang/crates.io-index"
1746
+checksum = "282be5f36a8ce781fad8c8ae18fa3f9beff57ec1b52cb3de0789201425d9a33d"
1747
+dependencies = [
1748
+ "windows-targets 0.52.6",
1749
+]
1750
+
1751
+[[package]]
1752
+name = "windows-sys"
1753
+version = "0.59.0"
1754
+source = "registry+https://github.com/rust-lang/crates.io-index"
1755
+checksum = "1e38bc4d79ed67fd075bcc251a1c39b32a1776bbe92e5bef1f0bf1f8c531853b"
1756
+dependencies = [
1757
+ "windows-targets 0.52.6",
1758
+]
1759
+
1760
+[[package]]
1761
+name = "windows-sys"
1762
+version = "0.60.2"
1763
+source = "registry+https://github.com/rust-lang/crates.io-index"
1764
+checksum = "f2f500e4d28234f72040990ec9d39e3a6b950f9f22d3dba18416c35882612bcb"
1765
+dependencies = [
1766
+ "windows-targets 0.53.5",
1767
+]
1768
+
1769
+[[package]]
1770
+name = "windows-sys"
1771
+version = "0.61.2"
1772
+source = "registry+https://github.com/rust-lang/crates.io-index"
1773
+checksum = "ae137229bcbd6cdf0f7b80a31df61766145077ddf49416a728b02cb3921ff3fc"
1774
+dependencies = [
1775
+ "windows-link",
1776
+]
1777
+
1778
+[[package]]
1779
+name = "windows-targets"
1780
+version = "0.48.5"
1781
+source = "registry+https://github.com/rust-lang/crates.io-index"
1782
+checksum = "9a2fa6e2155d7247be68c096456083145c183cbbbc2764150dda45a87197940c"
1783
+dependencies = [
1784
+ "windows_aarch64_gnullvm 0.48.5",
1785
+ "windows_aarch64_msvc 0.48.5",
1786
+ "windows_i686_gnu 0.48.5",
1787
+ "windows_i686_msvc 0.48.5",
1788
+ "windows_x86_64_gnu 0.48.5",
1789
+ "windows_x86_64_gnullvm 0.48.5",
1790
+ "windows_x86_64_msvc 0.48.5",
1791
+]
1792
+
1793
+[[package]]
1794
+name = "windows-targets"
1795
+version = "0.52.6"
1796
+source = "registry+https://github.com/rust-lang/crates.io-index"
1797
+checksum = "9b724f72796e036ab90c1021d4780d4d3d648aca59e491e6b98e725b84e99973"
1798
+dependencies = [
1799
+ "windows_aarch64_gnullvm 0.52.6",
1800
+ "windows_aarch64_msvc 0.52.6",
1801
+ "windows_i686_gnu 0.52.6",
1802
+ "windows_i686_gnullvm 0.52.6",
1803
+ "windows_i686_msvc 0.52.6",
1804
+ "windows_x86_64_gnu 0.52.6",
1805
+ "windows_x86_64_gnullvm 0.52.6",
1806
+ "windows_x86_64_msvc 0.52.6",
1807
+]
1808
+
1809
+[[package]]
1810
+name = "windows-targets"
1811
+version = "0.53.5"
1812
+source = "registry+https://github.com/rust-lang/crates.io-index"
1813
+checksum = "4945f9f551b88e0d65f3db0bc25c33b8acea4d9e41163edf90dcd0b19f9069f3"
1814
+dependencies = [
1815
+ "windows-link",
1816
+ "windows_aarch64_gnullvm 0.53.1",
1817
+ "windows_aarch64_msvc 0.53.1",
1818
+ "windows_i686_gnu 0.53.1",
1819
+ "windows_i686_gnullvm 0.53.1",
1820
+ "windows_i686_msvc 0.53.1",
1821
+ "windows_x86_64_gnu 0.53.1",
1822
+ "windows_x86_64_gnullvm 0.53.1",
1823
+ "windows_x86_64_msvc 0.53.1",
1824
+]
1825
+
1826
+[[package]]
1827
+name = "windows_aarch64_gnullvm"
1828
+version = "0.48.5"
1829
+source = "registry+https://github.com/rust-lang/crates.io-index"
1830
+checksum = "2b38e32f0abccf9987a4e3079dfb67dcd799fb61361e53e2882c3cbaf0d905d8"
1831
+
1832
+[[package]]
1833
+name = "windows_aarch64_gnullvm"
1834
+version = "0.52.6"
1835
+source = "registry+https://github.com/rust-lang/crates.io-index"
1836
+checksum = "32a4622180e7a0ec044bb555404c800bc9fd9ec262ec147edd5989ccd0c02cd3"
1837
+
1838
+[[package]]
1839
+name = "windows_aarch64_gnullvm"
1840
+version = "0.53.1"
1841
+source = "registry+https://github.com/rust-lang/crates.io-index"
1842
+checksum = "a9d8416fa8b42f5c947f8482c43e7d89e73a173cead56d044f6a56104a6d1b53"
1843
+
1844
+[[package]]
1845
+name = "windows_aarch64_msvc"
1846
+version = "0.48.5"
1847
+source = "registry+https://github.com/rust-lang/crates.io-index"
1848
+checksum = "dc35310971f3b2dbbf3f0690a219f40e2d9afcf64f9ab7cc1be722937c26b4bc"
1849
+
1850
+[[package]]
1851
+name = "windows_aarch64_msvc"
1852
+version = "0.52.6"
1853
+source = "registry+https://github.com/rust-lang/crates.io-index"
1854
+checksum = "09ec2a7bb152e2252b53fa7803150007879548bc709c039df7627cabbd05d469"
1855
+
1856
+[[package]]
1857
+name = "windows_aarch64_msvc"
1858
+version = "0.53.1"
1859
+source = "registry+https://github.com/rust-lang/crates.io-index"
1860
+checksum = "b9d782e804c2f632e395708e99a94275910eb9100b2114651e04744e9b125006"
1861
+
1862
+[[package]]
1863
+name = "windows_i686_gnu"
1864
+version = "0.48.5"
1865
+source = "registry+https://github.com/rust-lang/crates.io-index"
1866
+checksum = "a75915e7def60c94dcef72200b9a8e58e5091744960da64ec734a6c6e9b3743e"
1867
+
1868
+[[package]]
1869
+name = "windows_i686_gnu"
1870
+version = "0.52.6"
1871
+source = "registry+https://github.com/rust-lang/crates.io-index"
1872
+checksum = "8e9b5ad5ab802e97eb8e295ac6720e509ee4c243f69d781394014ebfe8bbfa0b"
1873
+
1874
+[[package]]
1875
+name = "windows_i686_gnu"
1876
+version = "0.53.1"
1877
+source = "registry+https://github.com/rust-lang/crates.io-index"
1878
+checksum = "960e6da069d81e09becb0ca57a65220ddff016ff2d6af6a223cf372a506593a3"
1879
+
1880
+[[package]]
1881
+name = "windows_i686_gnullvm"
1882
+version = "0.52.6"
1883
+source = "registry+https://github.com/rust-lang/crates.io-index"
1884
+checksum = "0eee52d38c090b3caa76c563b86c3a4bd71ef1a819287c19d586d7334ae8ed66"
1885
+
1886
+[[package]]
1887
+name = "windows_i686_gnullvm"
1888
+version = "0.53.1"
1889
+source = "registry+https://github.com/rust-lang/crates.io-index"
1890
+checksum = "fa7359d10048f68ab8b09fa71c3daccfb0e9b559aed648a8f95469c27057180c"
1891
+
1892
+[[package]]
1893
+name = "windows_i686_msvc"
1894
+version = "0.48.5"
1895
+source = "registry+https://github.com/rust-lang/crates.io-index"
1896
+checksum = "8f55c233f70c4b27f66c523580f78f1004e8b5a8b659e05a4eb49d4166cca406"
1897
+
1898
+[[package]]
1899
+name = "windows_i686_msvc"
1900
+version = "0.52.6"
1901
+source = "registry+https://github.com/rust-lang/crates.io-index"
1902
+checksum = "240948bc05c5e7c6dabba28bf89d89ffce3e303022809e73deaefe4f6ec56c66"
1903
+
1904
+[[package]]
1905
+name = "windows_i686_msvc"
1906
+version = "0.53.1"
1907
+source = "registry+https://github.com/rust-lang/crates.io-index"
1908
+checksum = "1e7ac75179f18232fe9c285163565a57ef8d3c89254a30685b57d83a38d326c2"
1909
+
1910
+[[package]]
1911
+name = "windows_x86_64_gnu"
1912
+version = "0.48.5"
1913
+source = "registry+https://github.com/rust-lang/crates.io-index"
1914
+checksum = "53d40abd2583d23e4718fddf1ebec84dbff8381c07cae67ff7768bbf19c6718e"
1915
+
1916
+[[package]]
1917
+name = "windows_x86_64_gnu"
1918
+version = "0.52.6"
1919
+source = "registry+https://github.com/rust-lang/crates.io-index"
1920
+checksum = "147a5c80aabfbf0c7d901cb5895d1de30ef2907eb21fbbab29ca94c5b08b1a78"
1921
+
1922
+[[package]]
1923
+name = "windows_x86_64_gnu"
1924
+version = "0.53.1"
1925
+source = "registry+https://github.com/rust-lang/crates.io-index"
1926
+checksum = "9c3842cdd74a865a8066ab39c8a7a473c0778a3f29370b5fd6b4b9aa7df4a499"
1927
+
1928
+[[package]]
1929
+name = "windows_x86_64_gnullvm"
1930
+version = "0.48.5"
1931
+source = "registry+https://github.com/rust-lang/crates.io-index"
1932
+checksum = "0b7b52767868a23d5bab768e390dc5f5c55825b6d30b86c844ff2dc7414044cc"
1933
+
1934
+[[package]]
1935
+name = "windows_x86_64_gnullvm"
1936
+version = "0.52.6"
1937
+source = "registry+https://github.com/rust-lang/crates.io-index"
1938
+checksum = "24d5b23dc417412679681396f2b49f3de8c1473deb516bd34410872eff51ed0d"
1939
+
1940
+[[package]]
1941
+name = "windows_x86_64_gnullvm"
1942
+version = "0.53.1"
1943
+source = "registry+https://github.com/rust-lang/crates.io-index"
1944
+checksum = "0ffa179e2d07eee8ad8f57493436566c7cc30ac536a3379fdf008f47f6bb7ae1"
1945
+
1946
+[[package]]
1947
+name = "windows_x86_64_msvc"
1948
+version = "0.48.5"
1949
+source = "registry+https://github.com/rust-lang/crates.io-index"
1950
+checksum = "ed94fce61571a4006852b7389a063ab983c02eb1bb37b47f8272ce92d06d9538"
1951
+
1952
+[[package]]
1953
+name = "windows_x86_64_msvc"
1954
+version = "0.52.6"
1955
+source = "registry+https://github.com/rust-lang/crates.io-index"
1956
+checksum = "589f6da84c646204747d1270a2a5661ea66ed1cced2631d546fdfb155959f9ec"
1957
+
1958
+[[package]]
1959
+name = "windows_x86_64_msvc"
1960
+version = "0.53.1"
1961
+source = "registry+https://github.com/rust-lang/crates.io-index"
1962
+checksum = "d6bbff5f0aada427a1e5a6da5f1f98158182f26556f345ac9e04d36d0ebed650"
1963
+
1964
+[[package]]
1965
+name = "winnow"
1966
+version = "0.7.14"
1967
+source = "registry+https://github.com/rust-lang/crates.io-index"
1968
+checksum = "5a5364e9d77fcdeeaa6062ced926ee3381faa2ee02d3eb83a5c27a8825540829"
1969
+dependencies = [
1970
+ "memchr",
1971
+]
1972
+
1973
+[[package]]
1974
+name = "wit-bindgen"
1975
+version = "0.51.0"
1976
+source = "registry+https://github.com/rust-lang/crates.io-index"
1977
+checksum = "d7249219f66ced02969388cf2bb044a09756a083d0fab1e566056b04d9fbcaa5"
1978
+
1979
+[[package]]
1980
+name = "x11rb"
1981
+version = "0.13.2"
1982
+source = "registry+https://github.com/rust-lang/crates.io-index"
1983
+checksum = "9993aa5be5a26815fe2c3eacfc1fde061fc1a1f094bf1ad2a18bf9c495dd7414"
1984
+dependencies = [
1985
+ "as-raw-xcb-connection",
1986
+ "gethostname",
1987
+ "libc",
1988
+ "rustix",
1989
+ "x11rb-protocol",
1990
+ "xcursor",
1991
+]
1992
+
1993
+[[package]]
1994
+name = "x11rb-protocol"
1995
+version = "0.13.2"
1996
+source = "registry+https://github.com/rust-lang/crates.io-index"
1997
+checksum = "ea6fc2961e4ef194dcbfe56bb845534d0dc8098940c7e5c012a258bfec6701bd"
1998
+
1999
+[[package]]
2000
+name = "xcursor"
2001
+version = "0.3.10"
2002
+source = "registry+https://github.com/rust-lang/crates.io-index"
2003
+checksum = "bec9e4a500ca8864c5b47b8b482a73d62e4237670e5b5f1d6b9e3cae50f28f2b"
2004
+
2005
+[[package]]
2006
+name = "xdg-home"
2007
+version = "1.3.0"
2008
+source = "registry+https://github.com/rust-lang/crates.io-index"
2009
+checksum = "ec1cdab258fb55c0da61328dc52c8764709b249011b2cad0454c72f0bf10a1f6"
2010
+dependencies = [
2011
+ "libc",
2012
+ "windows-sys 0.59.0",
2013
+]
2014
+
2015
+[[package]]
2016
+name = "zbus"
2017
+version = "4.4.0"
2018
+source = "registry+https://github.com/rust-lang/crates.io-index"
2019
+checksum = "bb97012beadd29e654708a0fdb4c84bc046f537aecfde2c3ee0a9e4b4d48c725"
2020
+dependencies = [
2021
+ "async-broadcast",
2022
+ "async-executor",
2023
+ "async-fs",
2024
+ "async-io",
2025
+ "async-lock",
2026
+ "async-process",
2027
+ "async-recursion",
2028
+ "async-task",
2029
+ "async-trait",
2030
+ "blocking",
2031
+ "enumflags2",
2032
+ "event-listener",
2033
+ "futures-core",
2034
+ "futures-sink",
2035
+ "futures-util",
2036
+ "hex",
2037
+ "nix",
2038
+ "ordered-stream",
2039
+ "rand",
2040
+ "serde",
2041
+ "serde_repr",
2042
+ "sha1",
2043
+ "static_assertions",
2044
+ "tracing",
2045
+ "uds_windows",
2046
+ "windows-sys 0.52.0",
2047
+ "xdg-home",
2048
+ "zbus_macros",
2049
+ "zbus_names",
2050
+ "zvariant",
2051
+]
2052
+
2053
+[[package]]
2054
+name = "zbus_macros"
2055
+version = "4.4.0"
2056
+source = "registry+https://github.com/rust-lang/crates.io-index"
2057
+checksum = "267db9407081e90bbfa46d841d3cbc60f59c0351838c4bc65199ecd79ab1983e"
2058
+dependencies = [
2059
+ "proc-macro-crate",
2060
+ "proc-macro2",
2061
+ "quote",
2062
+ "syn",
2063
+ "zvariant_utils",
2064
+]
2065
+
2066
+[[package]]
2067
+name = "zbus_names"
2068
+version = "3.0.0"
2069
+source = "registry+https://github.com/rust-lang/crates.io-index"
2070
+checksum = "4b9b1fef7d021261cc16cba64c351d291b715febe0fa10dc3a443ac5a5022e6c"
2071
+dependencies = [
2072
+ "serde",
2073
+ "static_assertions",
2074
+ "zvariant",
2075
+]
2076
+
2077
+[[package]]
2078
+name = "zerocopy"
2079
+version = "0.8.33"
2080
+source = "registry+https://github.com/rust-lang/crates.io-index"
2081
+checksum = "668f5168d10b9ee831de31933dc111a459c97ec93225beb307aed970d1372dfd"
2082
+dependencies = [
2083
+ "zerocopy-derive",
2084
+]
2085
+
2086
+[[package]]
2087
+name = "zerocopy-derive"
2088
+version = "0.8.33"
2089
+source = "registry+https://github.com/rust-lang/crates.io-index"
2090
+checksum = "2c7962b26b0a8685668b671ee4b54d007a67d4eaf05fda79ac0ecf41e32270f1"
2091
+dependencies = [
2092
+ "proc-macro2",
2093
+ "quote",
2094
+ "syn",
2095
+]
2096
+
2097
+[[package]]
2098
+name = "zmij"
2099
+version = "1.0.16"
2100
+source = "registry+https://github.com/rust-lang/crates.io-index"
2101
+checksum = "dfcd145825aace48cff44a8844de64bf75feec3080e0aa5cdbde72961ae51a65"
2102
+
2103
+[[package]]
2104
+name = "zvariant"
2105
+version = "4.2.0"
2106
+source = "registry+https://github.com/rust-lang/crates.io-index"
2107
+checksum = "2084290ab9a1c471c38fc524945837734fbf124487e105daec2bb57fd48c81fe"
2108
+dependencies = [
2109
+ "endi",
2110
+ "enumflags2",
2111
+ "serde",
2112
+ "static_assertions",
2113
+ "zvariant_derive",
2114
+]
2115
+
2116
+[[package]]
2117
+name = "zvariant_derive"
2118
+version = "4.2.0"
2119
+source = "registry+https://github.com/rust-lang/crates.io-index"
2120
+checksum = "73e2ba546bda683a90652bac4a279bc146adad1386f25379cf73200d2002c449"
2121
+dependencies = [
2122
+ "proc-macro-crate",
2123
+ "proc-macro2",
2124
+ "quote",
2125
+ "syn",
2126
+ "zvariant_utils",
2127
+]
2128
+
2129
+[[package]]
2130
+name = "zvariant_utils"
2131
+version = "2.1.0"
2132
+source = "registry+https://github.com/rust-lang/crates.io-index"
2133
+checksum = "c51bcff7cc3dbb5055396bcf774748c3dab426b4b8659046963523cee4808340"
2134
+dependencies = [
2135
+ "proc-macro2",
2136
+ "quote",
2137
+ "syn",
2138
+]