gardesk/gartop / 2681608

Browse files

commit Cargo.lock for nix builds

Authored by mfwolffe <wolffemf@dukes.jmu.edu>
SHA
2681608d9c79969963802ba68fe65fc066d990c5
Parents
4ac25b0
Tree
0012c2c

2 changed files

StatusFile+-
M .gitignore 0 1
A Cargo.lock 1801 0
.gitignoremodified
@@ -1,6 +1,5 @@
11
 # Build artifacts
22
 /target/
3
-Cargo.lock
43
 
54
 # IDE
65
 .idea/
Cargo.lockadded
1801 lines changed — click to load
@@ -0,0 +1,1801 @@
1
+# This file is automatically @generated by Cargo.
2
+# It is not intended for manual editing.
3
+version = 4
4
+
5
+[[package]]
6
+name = "adler2"
7
+version = "2.0.1"
8
+source = "registry+https://github.com/rust-lang/crates.io-index"
9
+checksum = "320119579fcad9c21884f5c4861d16174d0e06250625266f50fe6898340abefa"
10
+
11
+[[package]]
12
+name = "aho-corasick"
13
+version = "1.1.4"
14
+source = "registry+https://github.com/rust-lang/crates.io-index"
15
+checksum = "ddd31a130427c27518df266943a5308ed92d4b226cc639f5a8f1002816174301"
16
+dependencies = [
17
+ "memchr",
18
+]
19
+
20
+[[package]]
21
+name = "android_system_properties"
22
+version = "0.1.5"
23
+source = "registry+https://github.com/rust-lang/crates.io-index"
24
+checksum = "819e7219dbd41043ac279b19830f2efc897156490d7fd6ea916720117ee66311"
25
+dependencies = [
26
+ "libc",
27
+]
28
+
29
+[[package]]
30
+name = "anstream"
31
+version = "0.6.21"
32
+source = "registry+https://github.com/rust-lang/crates.io-index"
33
+checksum = "43d5b281e737544384e969a5ccad3f1cdd24b48086a0fc1b2a5262a26b8f4f4a"
34
+dependencies = [
35
+ "anstyle",
36
+ "anstyle-parse",
37
+ "anstyle-query",
38
+ "anstyle-wincon",
39
+ "colorchoice",
40
+ "is_terminal_polyfill",
41
+ "utf8parse",
42
+]
43
+
44
+[[package]]
45
+name = "anstyle"
46
+version = "1.0.13"
47
+source = "registry+https://github.com/rust-lang/crates.io-index"
48
+checksum = "5192cca8006f1fd4f7237516f40fa183bb07f8fbdfedaa0036de5ea9b0b45e78"
49
+
50
+[[package]]
51
+name = "anstyle-parse"
52
+version = "0.2.7"
53
+source = "registry+https://github.com/rust-lang/crates.io-index"
54
+checksum = "4e7644824f0aa2c7b9384579234ef10eb7efb6a0deb83f9630a49594dd9c15c2"
55
+dependencies = [
56
+ "utf8parse",
57
+]
58
+
59
+[[package]]
60
+name = "anstyle-query"
61
+version = "1.1.5"
62
+source = "registry+https://github.com/rust-lang/crates.io-index"
63
+checksum = "40c48f72fd53cd289104fc64099abca73db4166ad86ea0b4341abe65af83dadc"
64
+dependencies = [
65
+ "windows-sys 0.61.2",
66
+]
67
+
68
+[[package]]
69
+name = "anstyle-wincon"
70
+version = "3.0.11"
71
+source = "registry+https://github.com/rust-lang/crates.io-index"
72
+checksum = "291e6a250ff86cd4a820112fb8898808a366d8f9f58ce16d1f538353ad55747d"
73
+dependencies = [
74
+ "anstyle",
75
+ "once_cell_polyfill",
76
+ "windows-sys 0.61.2",
77
+]
78
+
79
+[[package]]
80
+name = "anyhow"
81
+version = "1.0.101"
82
+source = "registry+https://github.com/rust-lang/crates.io-index"
83
+checksum = "5f0e0fee31ef5ed1ba1316088939cea399010ed7731dba877ed44aeb407a75ea"
84
+
85
+[[package]]
86
+name = "as-raw-xcb-connection"
87
+version = "1.0.1"
88
+source = "registry+https://github.com/rust-lang/crates.io-index"
89
+checksum = "175571dd1d178ced59193a6fc02dde1b972eb0bc56c892cde9beeceac5bf0f6b"
90
+
91
+[[package]]
92
+name = "autocfg"
93
+version = "1.5.0"
94
+source = "registry+https://github.com/rust-lang/crates.io-index"
95
+checksum = "c08606f8c3cbf4ce6ec8e28fb0014a2c086708fe954eaa885384a6165172e7e8"
96
+
97
+[[package]]
98
+name = "bitflags"
99
+version = "1.3.2"
100
+source = "registry+https://github.com/rust-lang/crates.io-index"
101
+checksum = "bef38d45163c2f1dde094a7dfd33ccf595c92905c8f8f4fdc18d06fb1037718a"
102
+
103
+[[package]]
104
+name = "bitflags"
105
+version = "2.10.0"
106
+source = "registry+https://github.com/rust-lang/crates.io-index"
107
+checksum = "812e12b5285cc515a9c72a5c1d3b6d46a19dac5acfef5265968c166106e31dd3"
108
+
109
+[[package]]
110
+name = "bumpalo"
111
+version = "3.19.1"
112
+source = "registry+https://github.com/rust-lang/crates.io-index"
113
+checksum = "5dd9dc738b7a8311c7ade152424974d8115f2cdad61e8dab8dac9f2362298510"
114
+
115
+[[package]]
116
+name = "byteorder"
117
+version = "1.5.0"
118
+source = "registry+https://github.com/rust-lang/crates.io-index"
119
+checksum = "1fd0f2584146f6f2ef48085050886acf353beff7305ebd1ae69500e27c67f64b"
120
+
121
+[[package]]
122
+name = "bytes"
123
+version = "1.11.1"
124
+source = "registry+https://github.com/rust-lang/crates.io-index"
125
+checksum = "1e748733b7cbc798e1434b6ac524f0c1ff2ab456fe201501e6497c8417a4fc33"
126
+
127
+[[package]]
128
+name = "cairo-rs"
129
+version = "0.20.12"
130
+source = "registry+https://github.com/rust-lang/crates.io-index"
131
+checksum = "91e3bd0f4e25afa9cabc157908d14eeef9067d6448c49414d17b3fb55f0eadd0"
132
+dependencies = [
133
+ "bitflags 2.10.0",
134
+ "cairo-sys-rs",
135
+ "glib",
136
+ "libc",
137
+]
138
+
139
+[[package]]
140
+name = "cairo-sys-rs"
141
+version = "0.20.10"
142
+source = "registry+https://github.com/rust-lang/crates.io-index"
143
+checksum = "059cc746549898cbfd9a47754288e5a958756650ef4652bbb6c5f71a6bda4f8b"
144
+dependencies = [
145
+ "glib-sys",
146
+ "libc",
147
+ "system-deps",
148
+]
149
+
150
+[[package]]
151
+name = "cc"
152
+version = "1.2.55"
153
+source = "registry+https://github.com/rust-lang/crates.io-index"
154
+checksum = "47b26a0954ae34af09b50f0de26458fa95369a0d478d8236d3f93082b219bd29"
155
+dependencies = [
156
+ "find-msvc-tools",
157
+ "shlex",
158
+]
159
+
160
+[[package]]
161
+name = "cfg-expr"
162
+version = "0.20.6"
163
+source = "registry+https://github.com/rust-lang/crates.io-index"
164
+checksum = "78cef5b5a1a6827c7322ae2a636368a573006b27cfa76c7ebd53e834daeaab6a"
165
+dependencies = [
166
+ "smallvec",
167
+ "target-lexicon",
168
+]
169
+
170
+[[package]]
171
+name = "cfg-if"
172
+version = "1.0.4"
173
+source = "registry+https://github.com/rust-lang/crates.io-index"
174
+checksum = "9330f8b2ff13f34540b44e946ef35111825727b38d33286ef986142615121801"
175
+
176
+[[package]]
177
+name = "cfg_aliases"
178
+version = "0.2.1"
179
+source = "registry+https://github.com/rust-lang/crates.io-index"
180
+checksum = "613afe47fcd5fac7ccf1db93babcb082c5994d996f20b8b159f2ad1658eb5724"
181
+
182
+[[package]]
183
+name = "chrono"
184
+version = "0.4.43"
185
+source = "registry+https://github.com/rust-lang/crates.io-index"
186
+checksum = "fac4744fb15ae8337dc853fee7fb3f4e48c0fbaa23d0afe49c447b4fab126118"
187
+dependencies = [
188
+ "iana-time-zone",
189
+ "num-traits",
190
+ "windows-link",
191
+]
192
+
193
+[[package]]
194
+name = "clap"
195
+version = "4.5.57"
196
+source = "registry+https://github.com/rust-lang/crates.io-index"
197
+checksum = "6899ea499e3fb9305a65d5ebf6e3d2248c5fab291f300ad0a704fbe142eae31a"
198
+dependencies = [
199
+ "clap_builder",
200
+ "clap_derive",
201
+]
202
+
203
+[[package]]
204
+name = "clap_builder"
205
+version = "4.5.57"
206
+source = "registry+https://github.com/rust-lang/crates.io-index"
207
+checksum = "7b12c8b680195a62a8364d16b8447b01b6c2c8f9aaf68bee653be34d4245e238"
208
+dependencies = [
209
+ "anstream",
210
+ "anstyle",
211
+ "clap_lex",
212
+ "strsim",
213
+]
214
+
215
+[[package]]
216
+name = "clap_derive"
217
+version = "4.5.55"
218
+source = "registry+https://github.com/rust-lang/crates.io-index"
219
+checksum = "a92793da1a46a5f2a02a6f4c46c6496b28c43638adea8306fcb0caa1634f24e5"
220
+dependencies = [
221
+ "heck",
222
+ "proc-macro2",
223
+ "quote",
224
+ "syn",
225
+]
226
+
227
+[[package]]
228
+name = "clap_lex"
229
+version = "0.7.7"
230
+source = "registry+https://github.com/rust-lang/crates.io-index"
231
+checksum = "c3e64b0cc0439b12df2fa678eae89a1c56a529fd067a9115f7827f1fffd22b32"
232
+
233
+[[package]]
234
+name = "colorchoice"
235
+version = "1.0.4"
236
+source = "registry+https://github.com/rust-lang/crates.io-index"
237
+checksum = "b05b61dc5112cbb17e4b6cd61790d9845d13888356391624cbe7e41efeac1e75"
238
+
239
+[[package]]
240
+name = "core-foundation-sys"
241
+version = "0.8.7"
242
+source = "registry+https://github.com/rust-lang/crates.io-index"
243
+checksum = "773648b94d0e5d620f64f280777445740e61fe701025087ec8b57f45c791888b"
244
+
245
+[[package]]
246
+name = "crc32fast"
247
+version = "1.5.0"
248
+source = "registry+https://github.com/rust-lang/crates.io-index"
249
+checksum = "9481c1c90cbf2ac953f07c8d4a58aa3945c425b7185c9154d67a65e4230da511"
250
+dependencies = [
251
+ "cfg-if",
252
+]
253
+
254
+[[package]]
255
+name = "dirs"
256
+version = "5.0.1"
257
+source = "registry+https://github.com/rust-lang/crates.io-index"
258
+checksum = "44c45a9d03d6676652bcb5e724c7e988de1acad23a711b5217ab9cbecbec2225"
259
+dependencies = [
260
+ "dirs-sys",
261
+]
262
+
263
+[[package]]
264
+name = "dirs-sys"
265
+version = "0.4.1"
266
+source = "registry+https://github.com/rust-lang/crates.io-index"
267
+checksum = "520f05a5cbd335fae5a99ff7a6ab8627577660ee5cfd6a94a6a929b52ff0321c"
268
+dependencies = [
269
+ "libc",
270
+ "option-ext",
271
+ "redox_users",
272
+ "windows-sys 0.48.0",
273
+]
274
+
275
+[[package]]
276
+name = "equivalent"
277
+version = "1.0.2"
278
+source = "registry+https://github.com/rust-lang/crates.io-index"
279
+checksum = "877a4ace8713b0bcf2a4e7eec82529c029f1d0619886d18145fea96c3ffe5c0f"
280
+
281
+[[package]]
282
+name = "errno"
283
+version = "0.3.14"
284
+source = "registry+https://github.com/rust-lang/crates.io-index"
285
+checksum = "39cab71617ae0d63f51a36d69f866391735b51691dbda63cf6f96d042b63efeb"
286
+dependencies = [
287
+ "libc",
288
+ "windows-sys 0.61.2",
289
+]
290
+
291
+[[package]]
292
+name = "find-msvc-tools"
293
+version = "0.1.9"
294
+source = "registry+https://github.com/rust-lang/crates.io-index"
295
+checksum = "5baebc0774151f905a1a2cc41989300b1e6fbb29aff0ceffa1064fdd3088d582"
296
+
297
+[[package]]
298
+name = "flate2"
299
+version = "1.1.9"
300
+source = "registry+https://github.com/rust-lang/crates.io-index"
301
+checksum = "843fba2746e448b37e26a819579957415c8cef339bf08564fe8b7ddbd959573c"
302
+dependencies = [
303
+ "crc32fast",
304
+ "miniz_oxide",
305
+]
306
+
307
+[[package]]
308
+name = "futures-channel"
309
+version = "0.3.31"
310
+source = "registry+https://github.com/rust-lang/crates.io-index"
311
+checksum = "2dff15bf788c671c1934e366d07e30c1814a8ef514e1af724a602e8a2fbe1b10"
312
+dependencies = [
313
+ "futures-core",
314
+]
315
+
316
+[[package]]
317
+name = "futures-core"
318
+version = "0.3.31"
319
+source = "registry+https://github.com/rust-lang/crates.io-index"
320
+checksum = "05f29059c0c2090612e8d742178b0580d2dc940c837851ad723096f87af6663e"
321
+
322
+[[package]]
323
+name = "futures-executor"
324
+version = "0.3.31"
325
+source = "registry+https://github.com/rust-lang/crates.io-index"
326
+checksum = "1e28d1d997f585e54aebc3f97d39e72338912123a67330d723fdbb564d646c9f"
327
+dependencies = [
328
+ "futures-core",
329
+ "futures-task",
330
+ "futures-util",
331
+]
332
+
333
+[[package]]
334
+name = "futures-io"
335
+version = "0.3.31"
336
+source = "registry+https://github.com/rust-lang/crates.io-index"
337
+checksum = "9e5c1b78ca4aae1ac06c48a526a655760685149f0d465d21f37abfe57ce075c6"
338
+
339
+[[package]]
340
+name = "futures-macro"
341
+version = "0.3.31"
342
+source = "registry+https://github.com/rust-lang/crates.io-index"
343
+checksum = "162ee34ebcb7c64a8abebc059ce0fee27c2262618d7b60ed8faf72fef13c3650"
344
+dependencies = [
345
+ "proc-macro2",
346
+ "quote",
347
+ "syn",
348
+]
349
+
350
+[[package]]
351
+name = "futures-task"
352
+version = "0.3.31"
353
+source = "registry+https://github.com/rust-lang/crates.io-index"
354
+checksum = "f90f7dce0722e95104fcb095585910c0977252f286e354b5e3bd38902cd99988"
355
+
356
+[[package]]
357
+name = "futures-util"
358
+version = "0.3.31"
359
+source = "registry+https://github.com/rust-lang/crates.io-index"
360
+checksum = "9fa08315bb612088cc391249efdc3bc77536f16c91f6cf495e6fbe85b20a4a81"
361
+dependencies = [
362
+ "futures-core",
363
+ "futures-macro",
364
+ "futures-task",
365
+ "pin-project-lite",
366
+ "pin-utils",
367
+ "slab",
368
+]
369
+
370
+[[package]]
371
+name = "gartk-core"
372
+version = "0.1.0"
373
+dependencies = [
374
+ "serde",
375
+ "thiserror 2.0.18",
376
+]
377
+
378
+[[package]]
379
+name = "gartk-render"
380
+version = "0.1.0"
381
+dependencies = [
382
+ "cairo-rs",
383
+ "gartk-core",
384
+ "gartk-x11",
385
+ "pango",
386
+ "pangocairo",
387
+ "thiserror 2.0.18",
388
+ "tracing",
389
+ "x11rb",
390
+]
391
+
392
+[[package]]
393
+name = "gartk-x11"
394
+version = "0.1.0"
395
+dependencies = [
396
+ "gartk-core",
397
+ "thiserror 2.0.18",
398
+ "tracing",
399
+ "x11rb",
400
+]
401
+
402
+[[package]]
403
+name = "gartop"
404
+version = "0.1.0"
405
+dependencies = [
406
+ "anyhow",
407
+ "cairo-rs",
408
+ "clap",
409
+ "dirs",
410
+ "gartk-core",
411
+ "gartk-render",
412
+ "gartk-x11",
413
+ "gartop-ipc",
414
+ "netlink-packet-core",
415
+ "netlink-packet-sock-diag",
416
+ "netlink-sys",
417
+ "nix",
418
+ "procfs",
419
+ "serde",
420
+ "serde_json",
421
+ "thiserror 2.0.18",
422
+ "tokio",
423
+ "toml 0.8.23",
424
+ "tracing",
425
+ "tracing-subscriber",
426
+ "users",
427
+ "x11rb",
428
+]
429
+
430
+[[package]]
431
+name = "gartop-ipc"
432
+version = "0.1.0"
433
+dependencies = [
434
+ "serde",
435
+ "serde_json",
436
+]
437
+
438
+[[package]]
439
+name = "gartopctl"
440
+version = "0.1.0"
441
+dependencies = [
442
+ "anyhow",
443
+ "clap",
444
+ "dirs",
445
+ "gartop-ipc",
446
+ "serde",
447
+ "serde_json",
448
+]
449
+
450
+[[package]]
451
+name = "gethostname"
452
+version = "1.1.0"
453
+source = "registry+https://github.com/rust-lang/crates.io-index"
454
+checksum = "1bd49230192a3797a9a4d6abe9b3eed6f7fa4c8a8a4947977c6f80025f92cbd8"
455
+dependencies = [
456
+ "rustix",
457
+ "windows-link",
458
+]
459
+
460
+[[package]]
461
+name = "getrandom"
462
+version = "0.2.17"
463
+source = "registry+https://github.com/rust-lang/crates.io-index"
464
+checksum = "ff2abc00be7fca6ebc474524697ae276ad847ad0a6b3faa4bcb027e9a4614ad0"
465
+dependencies = [
466
+ "cfg-if",
467
+ "libc",
468
+ "wasi",
469
+]
470
+
471
+[[package]]
472
+name = "gio"
473
+version = "0.20.12"
474
+source = "registry+https://github.com/rust-lang/crates.io-index"
475
+checksum = "8e27e276e7b6b8d50f6376ee7769a71133e80d093bdc363bd0af71664228b831"
476
+dependencies = [
477
+ "futures-channel",
478
+ "futures-core",
479
+ "futures-io",
480
+ "futures-util",
481
+ "gio-sys",
482
+ "glib",
483
+ "libc",
484
+ "pin-project-lite",
485
+ "smallvec",
486
+]
487
+
488
+[[package]]
489
+name = "gio-sys"
490
+version = "0.20.10"
491
+source = "registry+https://github.com/rust-lang/crates.io-index"
492
+checksum = "521e93a7e56fc89e84aea9a52cfc9436816a4b363b030260b699950ff1336c83"
493
+dependencies = [
494
+ "glib-sys",
495
+ "gobject-sys",
496
+ "libc",
497
+ "system-deps",
498
+ "windows-sys 0.59.0",
499
+]
500
+
501
+[[package]]
502
+name = "glib"
503
+version = "0.20.12"
504
+source = "registry+https://github.com/rust-lang/crates.io-index"
505
+checksum = "ffc4b6e352d4716d84d7dde562dd9aee2a7d48beb872dd9ece7f2d1515b2d683"
506
+dependencies = [
507
+ "bitflags 2.10.0",
508
+ "futures-channel",
509
+ "futures-core",
510
+ "futures-executor",
511
+ "futures-task",
512
+ "futures-util",
513
+ "gio-sys",
514
+ "glib-macros",
515
+ "glib-sys",
516
+ "gobject-sys",
517
+ "libc",
518
+ "memchr",
519
+ "smallvec",
520
+]
521
+
522
+[[package]]
523
+name = "glib-macros"
524
+version = "0.20.12"
525
+source = "registry+https://github.com/rust-lang/crates.io-index"
526
+checksum = "e8084af62f09475a3f529b1629c10c429d7600ee1398ae12dd3bf175d74e7145"
527
+dependencies = [
528
+ "heck",
529
+ "proc-macro-crate",
530
+ "proc-macro2",
531
+ "quote",
532
+ "syn",
533
+]
534
+
535
+[[package]]
536
+name = "glib-sys"
537
+version = "0.20.10"
538
+source = "registry+https://github.com/rust-lang/crates.io-index"
539
+checksum = "8ab79e1ed126803a8fb827e3de0e2ff95191912b8db65cee467edb56fc4cc215"
540
+dependencies = [
541
+ "libc",
542
+ "system-deps",
543
+]
544
+
545
+[[package]]
546
+name = "gobject-sys"
547
+version = "0.20.10"
548
+source = "registry+https://github.com/rust-lang/crates.io-index"
549
+checksum = "ec9aca94bb73989e3cfdbf8f2e0f1f6da04db4d291c431f444838925c4c63eda"
550
+dependencies = [
551
+ "glib-sys",
552
+ "libc",
553
+ "system-deps",
554
+]
555
+
556
+[[package]]
557
+name = "hashbrown"
558
+version = "0.16.1"
559
+source = "registry+https://github.com/rust-lang/crates.io-index"
560
+checksum = "841d1cc9bed7f9236f321df977030373f4a4163ae1a7dbfe1a51a2c1a51d9100"
561
+
562
+[[package]]
563
+name = "heck"
564
+version = "0.5.0"
565
+source = "registry+https://github.com/rust-lang/crates.io-index"
566
+checksum = "2304e00983f87ffb38b55b444b5e3b60a884b5d30c0fca7d82fe33449bbe55ea"
567
+
568
+[[package]]
569
+name = "hex"
570
+version = "0.4.3"
571
+source = "registry+https://github.com/rust-lang/crates.io-index"
572
+checksum = "7f24254aa9a54b5c858eaee2f5bccdb46aaf0e486a595ed5fd8f86ba55232a70"
573
+
574
+[[package]]
575
+name = "iana-time-zone"
576
+version = "0.1.65"
577
+source = "registry+https://github.com/rust-lang/crates.io-index"
578
+checksum = "e31bc9ad994ba00e440a8aa5c9ef0ec67d5cb5e5cb0cc7f8b744a35b389cc470"
579
+dependencies = [
580
+ "android_system_properties",
581
+ "core-foundation-sys",
582
+ "iana-time-zone-haiku",
583
+ "js-sys",
584
+ "log",
585
+ "wasm-bindgen",
586
+ "windows-core",
587
+]
588
+
589
+[[package]]
590
+name = "iana-time-zone-haiku"
591
+version = "0.1.2"
592
+source = "registry+https://github.com/rust-lang/crates.io-index"
593
+checksum = "f31827a206f56af32e590ba56d5d2d085f558508192593743f16b2306495269f"
594
+dependencies = [
595
+ "cc",
596
+]
597
+
598
+[[package]]
599
+name = "indexmap"
600
+version = "2.13.0"
601
+source = "registry+https://github.com/rust-lang/crates.io-index"
602
+checksum = "7714e70437a7dc3ac8eb7e6f8df75fd8eb422675fc7678aff7364301092b1017"
603
+dependencies = [
604
+ "equivalent",
605
+ "hashbrown",
606
+]
607
+
608
+[[package]]
609
+name = "is_terminal_polyfill"
610
+version = "1.70.2"
611
+source = "registry+https://github.com/rust-lang/crates.io-index"
612
+checksum = "a6cb138bb79a146c1bd460005623e142ef0181e3d0219cb493e02f7d08a35695"
613
+
614
+[[package]]
615
+name = "itoa"
616
+version = "1.0.17"
617
+source = "registry+https://github.com/rust-lang/crates.io-index"
618
+checksum = "92ecc6618181def0457392ccd0ee51198e065e016d1d527a7ac1b6dc7c1f09d2"
619
+
620
+[[package]]
621
+name = "js-sys"
622
+version = "0.3.85"
623
+source = "registry+https://github.com/rust-lang/crates.io-index"
624
+checksum = "8c942ebf8e95485ca0d52d97da7c5a2c387d0e7f0ba4c35e93bfcaee045955b3"
625
+dependencies = [
626
+ "once_cell",
627
+ "wasm-bindgen",
628
+]
629
+
630
+[[package]]
631
+name = "lazy_static"
632
+version = "1.5.0"
633
+source = "registry+https://github.com/rust-lang/crates.io-index"
634
+checksum = "bbd2bcb4c963f2ddae06a2efc7e9f3591312473c50c6685e1f298068316e66fe"
635
+
636
+[[package]]
637
+name = "libc"
638
+version = "0.2.180"
639
+source = "registry+https://github.com/rust-lang/crates.io-index"
640
+checksum = "bcc35a38544a891a5f7c865aca548a982ccb3b8650a5b06d0fd33a10283c56fc"
641
+
642
+[[package]]
643
+name = "libredox"
644
+version = "0.1.12"
645
+source = "registry+https://github.com/rust-lang/crates.io-index"
646
+checksum = "3d0b95e02c851351f877147b7deea7b1afb1df71b63aa5f8270716e0c5720616"
647
+dependencies = [
648
+ "bitflags 2.10.0",
649
+ "libc",
650
+]
651
+
652
+[[package]]
653
+name = "linux-raw-sys"
654
+version = "0.11.0"
655
+source = "registry+https://github.com/rust-lang/crates.io-index"
656
+checksum = "df1d3c3b53da64cf5760482273a98e575c651a67eec7f77df96b5b642de8f039"
657
+
658
+[[package]]
659
+name = "lock_api"
660
+version = "0.4.14"
661
+source = "registry+https://github.com/rust-lang/crates.io-index"
662
+checksum = "224399e74b87b5f3557511d98dff8b14089b3dadafcab6bb93eab67d3aace965"
663
+dependencies = [
664
+ "scopeguard",
665
+]
666
+
667
+[[package]]
668
+name = "log"
669
+version = "0.4.29"
670
+source = "registry+https://github.com/rust-lang/crates.io-index"
671
+checksum = "5e5032e24019045c762d3c0f28f5b6b8bbf38563a65908389bf7978758920897"
672
+
673
+[[package]]
674
+name = "matchers"
675
+version = "0.2.0"
676
+source = "registry+https://github.com/rust-lang/crates.io-index"
677
+checksum = "d1525a2a28c7f4fa0fc98bb91ae755d1e2d1505079e05539e35bc876b5d65ae9"
678
+dependencies = [
679
+ "regex-automata",
680
+]
681
+
682
+[[package]]
683
+name = "memchr"
684
+version = "2.8.0"
685
+source = "registry+https://github.com/rust-lang/crates.io-index"
686
+checksum = "f8ca58f447f06ed17d5fc4043ce1b10dd205e060fb3ce5b979b8ed8e59ff3f79"
687
+
688
+[[package]]
689
+name = "miniz_oxide"
690
+version = "0.8.9"
691
+source = "registry+https://github.com/rust-lang/crates.io-index"
692
+checksum = "1fa76a2c86f704bdb222d66965fb3d63269ce38518b83cb0575fca855ebb6316"
693
+dependencies = [
694
+ "adler2",
695
+ "simd-adler32",
696
+]
697
+
698
+[[package]]
699
+name = "mio"
700
+version = "1.1.1"
701
+source = "registry+https://github.com/rust-lang/crates.io-index"
702
+checksum = "a69bcab0ad47271a0234d9422b131806bf3968021e5dc9328caf2d4cd58557fc"
703
+dependencies = [
704
+ "libc",
705
+ "wasi",
706
+ "windows-sys 0.61.2",
707
+]
708
+
709
+[[package]]
710
+name = "netlink-packet-core"
711
+version = "0.7.0"
712
+source = "registry+https://github.com/rust-lang/crates.io-index"
713
+checksum = "72724faf704479d67b388da142b186f916188505e7e0b26719019c525882eda4"
714
+dependencies = [
715
+ "anyhow",
716
+ "byteorder",
717
+ "netlink-packet-utils",
718
+]
719
+
720
+[[package]]
721
+name = "netlink-packet-sock-diag"
722
+version = "0.4.2"
723
+source = "registry+https://github.com/rust-lang/crates.io-index"
724
+checksum = "a495cb1de50560a7cd12fdcf023db70eec00e340df81be31cedbbfd4aadd6b76"
725
+dependencies = [
726
+ "anyhow",
727
+ "bitflags 1.3.2",
728
+ "byteorder",
729
+ "libc",
730
+ "netlink-packet-core",
731
+ "netlink-packet-utils",
732
+ "smallvec",
733
+]
734
+
735
+[[package]]
736
+name = "netlink-packet-utils"
737
+version = "0.5.2"
738
+source = "registry+https://github.com/rust-lang/crates.io-index"
739
+checksum = "0ede8a08c71ad5a95cdd0e4e52facd37190977039a4704eb82a283f713747d34"
740
+dependencies = [
741
+ "anyhow",
742
+ "byteorder",
743
+ "paste",
744
+ "thiserror 1.0.69",
745
+]
746
+
747
+[[package]]
748
+name = "netlink-sys"
749
+version = "0.8.8"
750
+source = "registry+https://github.com/rust-lang/crates.io-index"
751
+checksum = "cd6c30ed10fa69cc491d491b85cc971f6bdeb8e7367b7cde2ee6cc878d583fae"
752
+dependencies = [
753
+ "bytes",
754
+ "libc",
755
+ "log",
756
+]
757
+
758
+[[package]]
759
+name = "nix"
760
+version = "0.29.0"
761
+source = "registry+https://github.com/rust-lang/crates.io-index"
762
+checksum = "71e2746dc3a24dd78b3cfcb7be93368c6de9963d30f43a6a73998a9cf4b17b46"
763
+dependencies = [
764
+ "bitflags 2.10.0",
765
+ "cfg-if",
766
+ "cfg_aliases",
767
+ "libc",
768
+]
769
+
770
+[[package]]
771
+name = "nu-ansi-term"
772
+version = "0.50.3"
773
+source = "registry+https://github.com/rust-lang/crates.io-index"
774
+checksum = "7957b9740744892f114936ab4a57b3f487491bbeafaf8083688b16841a4240e5"
775
+dependencies = [
776
+ "windows-sys 0.61.2",
777
+]
778
+
779
+[[package]]
780
+name = "num-traits"
781
+version = "0.2.19"
782
+source = "registry+https://github.com/rust-lang/crates.io-index"
783
+checksum = "071dfc062690e90b734c0b2273ce72ad0ffa95f0c74596bc250dcfd960262841"
784
+dependencies = [
785
+ "autocfg",
786
+]
787
+
788
+[[package]]
789
+name = "once_cell"
790
+version = "1.21.3"
791
+source = "registry+https://github.com/rust-lang/crates.io-index"
792
+checksum = "42f5e15c9953c5e4ccceeb2e7382a716482c34515315f7b03532b8b4e8393d2d"
793
+
794
+[[package]]
795
+name = "once_cell_polyfill"
796
+version = "1.70.2"
797
+source = "registry+https://github.com/rust-lang/crates.io-index"
798
+checksum = "384b8ab6d37215f3c5301a95a4accb5d64aa607f1fcb26a11b5303878451b4fe"
799
+
800
+[[package]]
801
+name = "option-ext"
802
+version = "0.2.0"
803
+source = "registry+https://github.com/rust-lang/crates.io-index"
804
+checksum = "04744f49eae99ab78e0d5c0b603ab218f515ea8cfe5a456d7629ad883a3b6e7d"
805
+
806
+[[package]]
807
+name = "pango"
808
+version = "0.20.12"
809
+source = "registry+https://github.com/rust-lang/crates.io-index"
810
+checksum = "6576b311f6df659397043a5fa8a021da8f72e34af180b44f7d57348de691ab5c"
811
+dependencies = [
812
+ "gio",
813
+ "glib",
814
+ "libc",
815
+ "pango-sys",
816
+]
817
+
818
+[[package]]
819
+name = "pango-sys"
820
+version = "0.20.10"
821
+source = "registry+https://github.com/rust-lang/crates.io-index"
822
+checksum = "186909673fc09be354555c302c0b3dcf753cd9fa08dcb8077fa663c80fb243fa"
823
+dependencies = [
824
+ "glib-sys",
825
+ "gobject-sys",
826
+ "libc",
827
+ "system-deps",
828
+]
829
+
830
+[[package]]
831
+name = "pangocairo"
832
+version = "0.20.10"
833
+source = "registry+https://github.com/rust-lang/crates.io-index"
834
+checksum = "58890dc451db9964ac2d8874f903a4370a4b3932aa5281ff0c8d9810937ad84f"
835
+dependencies = [
836
+ "cairo-rs",
837
+ "glib",
838
+ "libc",
839
+ "pango",
840
+ "pangocairo-sys",
841
+]
842
+
843
+[[package]]
844
+name = "pangocairo-sys"
845
+version = "0.20.10"
846
+source = "registry+https://github.com/rust-lang/crates.io-index"
847
+checksum = "b9952903f88aa93e2927e7bca2d1ebae64fc26545a9280b4ce6bddeda26b5c42"
848
+dependencies = [
849
+ "cairo-sys-rs",
850
+ "glib-sys",
851
+ "libc",
852
+ "pango-sys",
853
+ "system-deps",
854
+]
855
+
856
+[[package]]
857
+name = "parking_lot"
858
+version = "0.12.5"
859
+source = "registry+https://github.com/rust-lang/crates.io-index"
860
+checksum = "93857453250e3077bd71ff98b6a65ea6621a19bb0f559a85248955ac12c45a1a"
861
+dependencies = [
862
+ "lock_api",
863
+ "parking_lot_core",
864
+]
865
+
866
+[[package]]
867
+name = "parking_lot_core"
868
+version = "0.9.12"
869
+source = "registry+https://github.com/rust-lang/crates.io-index"
870
+checksum = "2621685985a2ebf1c516881c026032ac7deafcda1a2c9b7850dc81e3dfcb64c1"
871
+dependencies = [
872
+ "cfg-if",
873
+ "libc",
874
+ "redox_syscall",
875
+ "smallvec",
876
+ "windows-link",
877
+]
878
+
879
+[[package]]
880
+name = "paste"
881
+version = "1.0.15"
882
+source = "registry+https://github.com/rust-lang/crates.io-index"
883
+checksum = "57c0d7b74b563b49d38dae00a0c37d4d6de9b432382b2892f0574ddcae73fd0a"
884
+
885
+[[package]]
886
+name = "pin-project-lite"
887
+version = "0.2.16"
888
+source = "registry+https://github.com/rust-lang/crates.io-index"
889
+checksum = "3b3cff922bd51709b605d9ead9aa71031d81447142d828eb4a6eba76fe619f9b"
890
+
891
+[[package]]
892
+name = "pin-utils"
893
+version = "0.1.0"
894
+source = "registry+https://github.com/rust-lang/crates.io-index"
895
+checksum = "8b870d8c151b6f2fb93e84a13146138f05d02ed11c7e7c54f8826aaaf7c9f184"
896
+
897
+[[package]]
898
+name = "pkg-config"
899
+version = "0.3.32"
900
+source = "registry+https://github.com/rust-lang/crates.io-index"
901
+checksum = "7edddbd0b52d732b21ad9a5fab5c704c14cd949e5e9a1ec5929a24fded1b904c"
902
+
903
+[[package]]
904
+name = "proc-macro-crate"
905
+version = "3.4.0"
906
+source = "registry+https://github.com/rust-lang/crates.io-index"
907
+checksum = "219cb19e96be00ab2e37d6e299658a0cfa83e52429179969b0f0121b4ac46983"
908
+dependencies = [
909
+ "toml_edit 0.23.10+spec-1.0.0",
910
+]
911
+
912
+[[package]]
913
+name = "proc-macro2"
914
+version = "1.0.106"
915
+source = "registry+https://github.com/rust-lang/crates.io-index"
916
+checksum = "8fd00f0bb2e90d81d1044c2b32617f68fcb9fa3bb7640c23e9c748e53fb30934"
917
+dependencies = [
918
+ "unicode-ident",
919
+]
920
+
921
+[[package]]
922
+name = "procfs"
923
+version = "0.18.0"
924
+source = "registry+https://github.com/rust-lang/crates.io-index"
925
+checksum = "25485360a54d6861439d60facef26de713b1e126bf015ec8f98239467a2b82f7"
926
+dependencies = [
927
+ "bitflags 2.10.0",
928
+ "chrono",
929
+ "flate2",
930
+ "procfs-core",
931
+ "rustix",
932
+]
933
+
934
+[[package]]
935
+name = "procfs-core"
936
+version = "0.18.0"
937
+source = "registry+https://github.com/rust-lang/crates.io-index"
938
+checksum = "e6401bf7b6af22f78b563665d15a22e9aef27775b79b149a66ca022468a4e405"
939
+dependencies = [
940
+ "bitflags 2.10.0",
941
+ "chrono",
942
+ "hex",
943
+]
944
+
945
+[[package]]
946
+name = "quote"
947
+version = "1.0.44"
948
+source = "registry+https://github.com/rust-lang/crates.io-index"
949
+checksum = "21b2ebcf727b7760c461f091f9f0f539b77b8e87f2fd88131e7f1b433b3cece4"
950
+dependencies = [
951
+ "proc-macro2",
952
+]
953
+
954
+[[package]]
955
+name = "redox_syscall"
956
+version = "0.5.18"
957
+source = "registry+https://github.com/rust-lang/crates.io-index"
958
+checksum = "ed2bf2547551a7053d6fdfafda3f938979645c44812fbfcda098faae3f1a362d"
959
+dependencies = [
960
+ "bitflags 2.10.0",
961
+]
962
+
963
+[[package]]
964
+name = "redox_users"
965
+version = "0.4.6"
966
+source = "registry+https://github.com/rust-lang/crates.io-index"
967
+checksum = "ba009ff324d1fc1b900bd1fdb31564febe58a8ccc8a6fdbb93b543d33b13ca43"
968
+dependencies = [
969
+ "getrandom",
970
+ "libredox",
971
+ "thiserror 1.0.69",
972
+]
973
+
974
+[[package]]
975
+name = "regex-automata"
976
+version = "0.4.14"
977
+source = "registry+https://github.com/rust-lang/crates.io-index"
978
+checksum = "6e1dd4122fc1595e8162618945476892eefca7b88c52820e74af6262213cae8f"
979
+dependencies = [
980
+ "aho-corasick",
981
+ "memchr",
982
+ "regex-syntax",
983
+]
984
+
985
+[[package]]
986
+name = "regex-syntax"
987
+version = "0.8.9"
988
+source = "registry+https://github.com/rust-lang/crates.io-index"
989
+checksum = "a96887878f22d7bad8a3b6dc5b7440e0ada9a245242924394987b21cf2210a4c"
990
+
991
+[[package]]
992
+name = "rustix"
993
+version = "1.1.3"
994
+source = "registry+https://github.com/rust-lang/crates.io-index"
995
+checksum = "146c9e247ccc180c1f61615433868c99f3de3ae256a30a43b49f67c2d9171f34"
996
+dependencies = [
997
+ "bitflags 2.10.0",
998
+ "errno",
999
+ "libc",
1000
+ "linux-raw-sys",
1001
+ "windows-sys 0.61.2",
1002
+]
1003
+
1004
+[[package]]
1005
+name = "rustversion"
1006
+version = "1.0.22"
1007
+source = "registry+https://github.com/rust-lang/crates.io-index"
1008
+checksum = "b39cdef0fa800fc44525c84ccb54a029961a8215f9619753635a9c0d2538d46d"
1009
+
1010
+[[package]]
1011
+name = "scopeguard"
1012
+version = "1.2.0"
1013
+source = "registry+https://github.com/rust-lang/crates.io-index"
1014
+checksum = "94143f37725109f92c262ed2cf5e59bce7498c01bcc1502d7b9afe439a4e9f49"
1015
+
1016
+[[package]]
1017
+name = "serde"
1018
+version = "1.0.228"
1019
+source = "registry+https://github.com/rust-lang/crates.io-index"
1020
+checksum = "9a8e94ea7f378bd32cbbd37198a4a91436180c5bb472411e48b5ec2e2124ae9e"
1021
+dependencies = [
1022
+ "serde_core",
1023
+ "serde_derive",
1024
+]
1025
+
1026
+[[package]]
1027
+name = "serde_core"
1028
+version = "1.0.228"
1029
+source = "registry+https://github.com/rust-lang/crates.io-index"
1030
+checksum = "41d385c7d4ca58e59fc732af25c3983b67ac852c1a25000afe1175de458b67ad"
1031
+dependencies = [
1032
+ "serde_derive",
1033
+]
1034
+
1035
+[[package]]
1036
+name = "serde_derive"
1037
+version = "1.0.228"
1038
+source = "registry+https://github.com/rust-lang/crates.io-index"
1039
+checksum = "d540f220d3187173da220f885ab66608367b6574e925011a9353e4badda91d79"
1040
+dependencies = [
1041
+ "proc-macro2",
1042
+ "quote",
1043
+ "syn",
1044
+]
1045
+
1046
+[[package]]
1047
+name = "serde_json"
1048
+version = "1.0.149"
1049
+source = "registry+https://github.com/rust-lang/crates.io-index"
1050
+checksum = "83fc039473c5595ace860d8c4fafa220ff474b3fc6bfdb4293327f1a37e94d86"
1051
+dependencies = [
1052
+ "itoa",
1053
+ "memchr",
1054
+ "serde",
1055
+ "serde_core",
1056
+ "zmij",
1057
+]
1058
+
1059
+[[package]]
1060
+name = "serde_spanned"
1061
+version = "0.6.9"
1062
+source = "registry+https://github.com/rust-lang/crates.io-index"
1063
+checksum = "bf41e0cfaf7226dca15e8197172c295a782857fcb97fad1808a166870dee75a3"
1064
+dependencies = [
1065
+ "serde",
1066
+]
1067
+
1068
+[[package]]
1069
+name = "serde_spanned"
1070
+version = "1.0.4"
1071
+source = "registry+https://github.com/rust-lang/crates.io-index"
1072
+checksum = "f8bbf91e5a4d6315eee45e704372590b30e260ee83af6639d64557f51b067776"
1073
+dependencies = [
1074
+ "serde_core",
1075
+]
1076
+
1077
+[[package]]
1078
+name = "sharded-slab"
1079
+version = "0.1.7"
1080
+source = "registry+https://github.com/rust-lang/crates.io-index"
1081
+checksum = "f40ca3c46823713e0d4209592e8d6e826aa57e928f09752619fc696c499637f6"
1082
+dependencies = [
1083
+ "lazy_static",
1084
+]
1085
+
1086
+[[package]]
1087
+name = "shlex"
1088
+version = "1.3.0"
1089
+source = "registry+https://github.com/rust-lang/crates.io-index"
1090
+checksum = "0fda2ff0d084019ba4d7c6f371c95d8fd75ce3524c3cb8fb653a3023f6323e64"
1091
+
1092
+[[package]]
1093
+name = "signal-hook-registry"
1094
+version = "1.4.8"
1095
+source = "registry+https://github.com/rust-lang/crates.io-index"
1096
+checksum = "c4db69cba1110affc0e9f7bcd48bbf87b3f4fc7c61fc9155afd4c469eb3d6c1b"
1097
+dependencies = [
1098
+ "errno",
1099
+ "libc",
1100
+]
1101
+
1102
+[[package]]
1103
+name = "simd-adler32"
1104
+version = "0.3.8"
1105
+source = "registry+https://github.com/rust-lang/crates.io-index"
1106
+checksum = "e320a6c5ad31d271ad523dcf3ad13e2767ad8b1cb8f047f75a8aeaf8da139da2"
1107
+
1108
+[[package]]
1109
+name = "slab"
1110
+version = "0.4.12"
1111
+source = "registry+https://github.com/rust-lang/crates.io-index"
1112
+checksum = "0c790de23124f9ab44544d7ac05d60440adc586479ce501c1d6d7da3cd8c9cf5"
1113
+
1114
+[[package]]
1115
+name = "smallvec"
1116
+version = "1.15.1"
1117
+source = "registry+https://github.com/rust-lang/crates.io-index"
1118
+checksum = "67b1b7a3b5fe4f1376887184045fcf45c69e92af734b7aaddc05fb777b6fbd03"
1119
+
1120
+[[package]]
1121
+name = "socket2"
1122
+version = "0.6.2"
1123
+source = "registry+https://github.com/rust-lang/crates.io-index"
1124
+checksum = "86f4aa3ad99f2088c990dfa82d367e19cb29268ed67c574d10d0a4bfe71f07e0"
1125
+dependencies = [
1126
+ "libc",
1127
+ "windows-sys 0.60.2",
1128
+]
1129
+
1130
+[[package]]
1131
+name = "strsim"
1132
+version = "0.11.1"
1133
+source = "registry+https://github.com/rust-lang/crates.io-index"
1134
+checksum = "7da8b5736845d9f2fcb837ea5d9e2628564b3b043a70948a3f0b778838c5fb4f"
1135
+
1136
+[[package]]
1137
+name = "syn"
1138
+version = "2.0.114"
1139
+source = "registry+https://github.com/rust-lang/crates.io-index"
1140
+checksum = "d4d107df263a3013ef9b1879b0df87d706ff80f65a86ea879bd9c31f9b307c2a"
1141
+dependencies = [
1142
+ "proc-macro2",
1143
+ "quote",
1144
+ "unicode-ident",
1145
+]
1146
+
1147
+[[package]]
1148
+name = "system-deps"
1149
+version = "7.0.7"
1150
+source = "registry+https://github.com/rust-lang/crates.io-index"
1151
+checksum = "48c8f33736f986f16d69b6cb8b03f55ddcad5c41acc4ccc39dd88e84aa805e7f"
1152
+dependencies = [
1153
+ "cfg-expr",
1154
+ "heck",
1155
+ "pkg-config",
1156
+ "toml 0.9.11+spec-1.1.0",
1157
+ "version-compare",
1158
+]
1159
+
1160
+[[package]]
1161
+name = "target-lexicon"
1162
+version = "0.13.3"
1163
+source = "registry+https://github.com/rust-lang/crates.io-index"
1164
+checksum = "df7f62577c25e07834649fc3b39fafdc597c0a3527dc1c60129201ccfcbaa50c"
1165
+
1166
+[[package]]
1167
+name = "thiserror"
1168
+version = "1.0.69"
1169
+source = "registry+https://github.com/rust-lang/crates.io-index"
1170
+checksum = "b6aaf5339b578ea85b50e080feb250a3e8ae8cfcdff9a461c9ec2904bc923f52"
1171
+dependencies = [
1172
+ "thiserror-impl 1.0.69",
1173
+]
1174
+
1175
+[[package]]
1176
+name = "thiserror"
1177
+version = "2.0.18"
1178
+source = "registry+https://github.com/rust-lang/crates.io-index"
1179
+checksum = "4288b5bcbc7920c07a1149a35cf9590a2aa808e0bc1eafaade0b80947865fbc4"
1180
+dependencies = [
1181
+ "thiserror-impl 2.0.18",
1182
+]
1183
+
1184
+[[package]]
1185
+name = "thiserror-impl"
1186
+version = "1.0.69"
1187
+source = "registry+https://github.com/rust-lang/crates.io-index"
1188
+checksum = "4fee6c4efc90059e10f81e6d42c60a18f76588c3d74cb83a0b242a2b6c7504c1"
1189
+dependencies = [
1190
+ "proc-macro2",
1191
+ "quote",
1192
+ "syn",
1193
+]
1194
+
1195
+[[package]]
1196
+name = "thiserror-impl"
1197
+version = "2.0.18"
1198
+source = "registry+https://github.com/rust-lang/crates.io-index"
1199
+checksum = "ebc4ee7f67670e9b64d05fa4253e753e016c6c95ff35b89b7941d6b856dec1d5"
1200
+dependencies = [
1201
+ "proc-macro2",
1202
+ "quote",
1203
+ "syn",
1204
+]
1205
+
1206
+[[package]]
1207
+name = "thread_local"
1208
+version = "1.1.9"
1209
+source = "registry+https://github.com/rust-lang/crates.io-index"
1210
+checksum = "f60246a4944f24f6e018aa17cdeffb7818b76356965d03b07d6a9886e8962185"
1211
+dependencies = [
1212
+ "cfg-if",
1213
+]
1214
+
1215
+[[package]]
1216
+name = "tokio"
1217
+version = "1.49.0"
1218
+source = "registry+https://github.com/rust-lang/crates.io-index"
1219
+checksum = "72a2903cd7736441aac9df9d7688bd0ce48edccaadf181c3b90be801e81d3d86"
1220
+dependencies = [
1221
+ "bytes",
1222
+ "libc",
1223
+ "mio",
1224
+ "parking_lot",
1225
+ "pin-project-lite",
1226
+ "signal-hook-registry",
1227
+ "socket2",
1228
+ "tokio-macros",
1229
+ "windows-sys 0.61.2",
1230
+]
1231
+
1232
+[[package]]
1233
+name = "tokio-macros"
1234
+version = "2.6.0"
1235
+source = "registry+https://github.com/rust-lang/crates.io-index"
1236
+checksum = "af407857209536a95c8e56f8231ef2c2e2aff839b22e07a1ffcbc617e9db9fa5"
1237
+dependencies = [
1238
+ "proc-macro2",
1239
+ "quote",
1240
+ "syn",
1241
+]
1242
+
1243
+[[package]]
1244
+name = "toml"
1245
+version = "0.8.23"
1246
+source = "registry+https://github.com/rust-lang/crates.io-index"
1247
+checksum = "dc1beb996b9d83529a9e75c17a1686767d148d70663143c7854d8b4a09ced362"
1248
+dependencies = [
1249
+ "serde",
1250
+ "serde_spanned 0.6.9",
1251
+ "toml_datetime 0.6.11",
1252
+ "toml_edit 0.22.27",
1253
+]
1254
+
1255
+[[package]]
1256
+name = "toml"
1257
+version = "0.9.11+spec-1.1.0"
1258
+source = "registry+https://github.com/rust-lang/crates.io-index"
1259
+checksum = "f3afc9a848309fe1aaffaed6e1546a7a14de1f935dc9d89d32afd9a44bab7c46"
1260
+dependencies = [
1261
+ "indexmap",
1262
+ "serde_core",
1263
+ "serde_spanned 1.0.4",
1264
+ "toml_datetime 0.7.5+spec-1.1.0",
1265
+ "toml_parser",
1266
+ "toml_writer",
1267
+ "winnow",
1268
+]
1269
+
1270
+[[package]]
1271
+name = "toml_datetime"
1272
+version = "0.6.11"
1273
+source = "registry+https://github.com/rust-lang/crates.io-index"
1274
+checksum = "22cddaf88f4fbc13c51aebbf5f8eceb5c7c5a9da2ac40a13519eb5b0a0e8f11c"
1275
+dependencies = [
1276
+ "serde",
1277
+]
1278
+
1279
+[[package]]
1280
+name = "toml_datetime"
1281
+version = "0.7.5+spec-1.1.0"
1282
+source = "registry+https://github.com/rust-lang/crates.io-index"
1283
+checksum = "92e1cfed4a3038bc5a127e35a2d360f145e1f4b971b551a2ba5fd7aedf7e1347"
1284
+dependencies = [
1285
+ "serde_core",
1286
+]
1287
+
1288
+[[package]]
1289
+name = "toml_edit"
1290
+version = "0.22.27"
1291
+source = "registry+https://github.com/rust-lang/crates.io-index"
1292
+checksum = "41fe8c660ae4257887cf66394862d21dbca4a6ddd26f04a3560410406a2f819a"
1293
+dependencies = [
1294
+ "indexmap",
1295
+ "serde",
1296
+ "serde_spanned 0.6.9",
1297
+ "toml_datetime 0.6.11",
1298
+ "toml_write",
1299
+ "winnow",
1300
+]
1301
+
1302
+[[package]]
1303
+name = "toml_edit"
1304
+version = "0.23.10+spec-1.0.0"
1305
+source = "registry+https://github.com/rust-lang/crates.io-index"
1306
+checksum = "84c8b9f757e028cee9fa244aea147aab2a9ec09d5325a9b01e0a49730c2b5269"
1307
+dependencies = [
1308
+ "indexmap",
1309
+ "toml_datetime 0.7.5+spec-1.1.0",
1310
+ "toml_parser",
1311
+ "winnow",
1312
+]
1313
+
1314
+[[package]]
1315
+name = "toml_parser"
1316
+version = "1.0.6+spec-1.1.0"
1317
+source = "registry+https://github.com/rust-lang/crates.io-index"
1318
+checksum = "a3198b4b0a8e11f09dd03e133c0280504d0801269e9afa46362ffde1cbeebf44"
1319
+dependencies = [
1320
+ "winnow",
1321
+]
1322
+
1323
+[[package]]
1324
+name = "toml_write"
1325
+version = "0.1.2"
1326
+source = "registry+https://github.com/rust-lang/crates.io-index"
1327
+checksum = "5d99f8c9a7727884afe522e9bd5edbfc91a3312b36a77b5fb8926e4c31a41801"
1328
+
1329
+[[package]]
1330
+name = "toml_writer"
1331
+version = "1.0.6+spec-1.1.0"
1332
+source = "registry+https://github.com/rust-lang/crates.io-index"
1333
+checksum = "ab16f14aed21ee8bfd8ec22513f7287cd4a91aa92e44edfe2c17ddd004e92607"
1334
+
1335
+[[package]]
1336
+name = "tracing"
1337
+version = "0.1.44"
1338
+source = "registry+https://github.com/rust-lang/crates.io-index"
1339
+checksum = "63e71662fa4b2a2c3a26f570f037eb95bb1f85397f3cd8076caed2f026a6d100"
1340
+dependencies = [
1341
+ "pin-project-lite",
1342
+ "tracing-attributes",
1343
+ "tracing-core",
1344
+]
1345
+
1346
+[[package]]
1347
+name = "tracing-attributes"
1348
+version = "0.1.31"
1349
+source = "registry+https://github.com/rust-lang/crates.io-index"
1350
+checksum = "7490cfa5ec963746568740651ac6781f701c9c5ea257c58e057f3ba8cf69e8da"
1351
+dependencies = [
1352
+ "proc-macro2",
1353
+ "quote",
1354
+ "syn",
1355
+]
1356
+
1357
+[[package]]
1358
+name = "tracing-core"
1359
+version = "0.1.36"
1360
+source = "registry+https://github.com/rust-lang/crates.io-index"
1361
+checksum = "db97caf9d906fbde555dd62fa95ddba9eecfd14cb388e4f491a66d74cd5fb79a"
1362
+dependencies = [
1363
+ "once_cell",
1364
+ "valuable",
1365
+]
1366
+
1367
+[[package]]
1368
+name = "tracing-log"
1369
+version = "0.2.0"
1370
+source = "registry+https://github.com/rust-lang/crates.io-index"
1371
+checksum = "ee855f1f400bd0e5c02d150ae5de3840039a3f54b025156404e34c23c03f47c3"
1372
+dependencies = [
1373
+ "log",
1374
+ "once_cell",
1375
+ "tracing-core",
1376
+]
1377
+
1378
+[[package]]
1379
+name = "tracing-subscriber"
1380
+version = "0.3.22"
1381
+source = "registry+https://github.com/rust-lang/crates.io-index"
1382
+checksum = "2f30143827ddab0d256fd843b7a66d164e9f271cfa0dde49142c5ca0ca291f1e"
1383
+dependencies = [
1384
+ "matchers",
1385
+ "nu-ansi-term",
1386
+ "once_cell",
1387
+ "regex-automata",
1388
+ "sharded-slab",
1389
+ "smallvec",
1390
+ "thread_local",
1391
+ "tracing",
1392
+ "tracing-core",
1393
+ "tracing-log",
1394
+]
1395
+
1396
+[[package]]
1397
+name = "unicode-ident"
1398
+version = "1.0.23"
1399
+source = "registry+https://github.com/rust-lang/crates.io-index"
1400
+checksum = "537dd038a89878be9b64dd4bd1b260315c1bb94f4d784956b81e27a088d9a09e"
1401
+
1402
+[[package]]
1403
+name = "users"
1404
+version = "0.11.0"
1405
+source = "registry+https://github.com/rust-lang/crates.io-index"
1406
+checksum = "24cc0f6d6f267b73e5a2cadf007ba8f9bc39c6a6f9666f8cf25ea809a153b032"
1407
+dependencies = [
1408
+ "libc",
1409
+ "log",
1410
+]
1411
+
1412
+[[package]]
1413
+name = "utf8parse"
1414
+version = "0.2.2"
1415
+source = "registry+https://github.com/rust-lang/crates.io-index"
1416
+checksum = "06abde3611657adf66d383f00b093d7faecc7fa57071cce2578660c9f1010821"
1417
+
1418
+[[package]]
1419
+name = "valuable"
1420
+version = "0.1.1"
1421
+source = "registry+https://github.com/rust-lang/crates.io-index"
1422
+checksum = "ba73ea9cf16a25df0c8caa16c51acb937d5712a8429db78a3ee29d5dcacd3a65"
1423
+
1424
+[[package]]
1425
+name = "version-compare"
1426
+version = "0.2.1"
1427
+source = "registry+https://github.com/rust-lang/crates.io-index"
1428
+checksum = "03c2856837ef78f57382f06b2b8563a2f512f7185d732608fd9176cb3b8edf0e"
1429
+
1430
+[[package]]
1431
+name = "wasi"
1432
+version = "0.11.1+wasi-snapshot-preview1"
1433
+source = "registry+https://github.com/rust-lang/crates.io-index"
1434
+checksum = "ccf3ec651a847eb01de73ccad15eb7d99f80485de043efb2f370cd654f4ea44b"
1435
+
1436
+[[package]]
1437
+name = "wasm-bindgen"
1438
+version = "0.2.108"
1439
+source = "registry+https://github.com/rust-lang/crates.io-index"
1440
+checksum = "64024a30ec1e37399cf85a7ffefebdb72205ca1c972291c51512360d90bd8566"
1441
+dependencies = [
1442
+ "cfg-if",
1443
+ "once_cell",
1444
+ "rustversion",
1445
+ "wasm-bindgen-macro",
1446
+ "wasm-bindgen-shared",
1447
+]
1448
+
1449
+[[package]]
1450
+name = "wasm-bindgen-macro"
1451
+version = "0.2.108"
1452
+source = "registry+https://github.com/rust-lang/crates.io-index"
1453
+checksum = "008b239d9c740232e71bd39e8ef6429d27097518b6b30bdf9086833bd5b6d608"
1454
+dependencies = [
1455
+ "quote",
1456
+ "wasm-bindgen-macro-support",
1457
+]
1458
+
1459
+[[package]]
1460
+name = "wasm-bindgen-macro-support"
1461
+version = "0.2.108"
1462
+source = "registry+https://github.com/rust-lang/crates.io-index"
1463
+checksum = "5256bae2d58f54820e6490f9839c49780dff84c65aeab9e772f15d5f0e913a55"
1464
+dependencies = [
1465
+ "bumpalo",
1466
+ "proc-macro2",
1467
+ "quote",
1468
+ "syn",
1469
+ "wasm-bindgen-shared",
1470
+]
1471
+
1472
+[[package]]
1473
+name = "wasm-bindgen-shared"
1474
+version = "0.2.108"
1475
+source = "registry+https://github.com/rust-lang/crates.io-index"
1476
+checksum = "1f01b580c9ac74c8d8f0c0e4afb04eeef2acf145458e52c03845ee9cd23e3d12"
1477
+dependencies = [
1478
+ "unicode-ident",
1479
+]
1480
+
1481
+[[package]]
1482
+name = "windows-core"
1483
+version = "0.62.2"
1484
+source = "registry+https://github.com/rust-lang/crates.io-index"
1485
+checksum = "b8e83a14d34d0623b51dce9581199302a221863196a1dde71a7663a4c2be9deb"
1486
+dependencies = [
1487
+ "windows-implement",
1488
+ "windows-interface",
1489
+ "windows-link",
1490
+ "windows-result",
1491
+ "windows-strings",
1492
+]
1493
+
1494
+[[package]]
1495
+name = "windows-implement"
1496
+version = "0.60.2"
1497
+source = "registry+https://github.com/rust-lang/crates.io-index"
1498
+checksum = "053e2e040ab57b9dc951b72c264860db7eb3b0200ba345b4e4c3b14f67855ddf"
1499
+dependencies = [
1500
+ "proc-macro2",
1501
+ "quote",
1502
+ "syn",
1503
+]
1504
+
1505
+[[package]]
1506
+name = "windows-interface"
1507
+version = "0.59.3"
1508
+source = "registry+https://github.com/rust-lang/crates.io-index"
1509
+checksum = "3f316c4a2570ba26bbec722032c4099d8c8bc095efccdc15688708623367e358"
1510
+dependencies = [
1511
+ "proc-macro2",
1512
+ "quote",
1513
+ "syn",
1514
+]
1515
+
1516
+[[package]]
1517
+name = "windows-link"
1518
+version = "0.2.1"
1519
+source = "registry+https://github.com/rust-lang/crates.io-index"
1520
+checksum = "f0805222e57f7521d6a62e36fa9163bc891acd422f971defe97d64e70d0a4fe5"
1521
+
1522
+[[package]]
1523
+name = "windows-result"
1524
+version = "0.4.1"
1525
+source = "registry+https://github.com/rust-lang/crates.io-index"
1526
+checksum = "7781fa89eaf60850ac3d2da7af8e5242a5ea78d1a11c49bf2910bb5a73853eb5"
1527
+dependencies = [
1528
+ "windows-link",
1529
+]
1530
+
1531
+[[package]]
1532
+name = "windows-strings"
1533
+version = "0.5.1"
1534
+source = "registry+https://github.com/rust-lang/crates.io-index"
1535
+checksum = "7837d08f69c77cf6b07689544538e017c1bfcf57e34b4c0ff58e6c2cd3b37091"
1536
+dependencies = [
1537
+ "windows-link",
1538
+]
1539
+
1540
+[[package]]
1541
+name = "windows-sys"
1542
+version = "0.48.0"
1543
+source = "registry+https://github.com/rust-lang/crates.io-index"
1544
+checksum = "677d2418bec65e3338edb076e806bc1ec15693c5d0104683f2efe857f61056a9"
1545
+dependencies = [
1546
+ "windows-targets 0.48.5",
1547
+]
1548
+
1549
+[[package]]
1550
+name = "windows-sys"
1551
+version = "0.59.0"
1552
+source = "registry+https://github.com/rust-lang/crates.io-index"
1553
+checksum = "1e38bc4d79ed67fd075bcc251a1c39b32a1776bbe92e5bef1f0bf1f8c531853b"
1554
+dependencies = [
1555
+ "windows-targets 0.52.6",
1556
+]
1557
+
1558
+[[package]]
1559
+name = "windows-sys"
1560
+version = "0.60.2"
1561
+source = "registry+https://github.com/rust-lang/crates.io-index"
1562
+checksum = "f2f500e4d28234f72040990ec9d39e3a6b950f9f22d3dba18416c35882612bcb"
1563
+dependencies = [
1564
+ "windows-targets 0.53.5",
1565
+]
1566
+
1567
+[[package]]
1568
+name = "windows-sys"
1569
+version = "0.61.2"
1570
+source = "registry+https://github.com/rust-lang/crates.io-index"
1571
+checksum = "ae137229bcbd6cdf0f7b80a31df61766145077ddf49416a728b02cb3921ff3fc"
1572
+dependencies = [
1573
+ "windows-link",
1574
+]
1575
+
1576
+[[package]]
1577
+name = "windows-targets"
1578
+version = "0.48.5"
1579
+source = "registry+https://github.com/rust-lang/crates.io-index"
1580
+checksum = "9a2fa6e2155d7247be68c096456083145c183cbbbc2764150dda45a87197940c"
1581
+dependencies = [
1582
+ "windows_aarch64_gnullvm 0.48.5",
1583
+ "windows_aarch64_msvc 0.48.5",
1584
+ "windows_i686_gnu 0.48.5",
1585
+ "windows_i686_msvc 0.48.5",
1586
+ "windows_x86_64_gnu 0.48.5",
1587
+ "windows_x86_64_gnullvm 0.48.5",
1588
+ "windows_x86_64_msvc 0.48.5",
1589
+]
1590
+
1591
+[[package]]
1592
+name = "windows-targets"
1593
+version = "0.52.6"
1594
+source = "registry+https://github.com/rust-lang/crates.io-index"
1595
+checksum = "9b724f72796e036ab90c1021d4780d4d3d648aca59e491e6b98e725b84e99973"
1596
+dependencies = [
1597
+ "windows_aarch64_gnullvm 0.52.6",
1598
+ "windows_aarch64_msvc 0.52.6",
1599
+ "windows_i686_gnu 0.52.6",
1600
+ "windows_i686_gnullvm 0.52.6",
1601
+ "windows_i686_msvc 0.52.6",
1602
+ "windows_x86_64_gnu 0.52.6",
1603
+ "windows_x86_64_gnullvm 0.52.6",
1604
+ "windows_x86_64_msvc 0.52.6",
1605
+]
1606
+
1607
+[[package]]
1608
+name = "windows-targets"
1609
+version = "0.53.5"
1610
+source = "registry+https://github.com/rust-lang/crates.io-index"
1611
+checksum = "4945f9f551b88e0d65f3db0bc25c33b8acea4d9e41163edf90dcd0b19f9069f3"
1612
+dependencies = [
1613
+ "windows-link",
1614
+ "windows_aarch64_gnullvm 0.53.1",
1615
+ "windows_aarch64_msvc 0.53.1",
1616
+ "windows_i686_gnu 0.53.1",
1617
+ "windows_i686_gnullvm 0.53.1",
1618
+ "windows_i686_msvc 0.53.1",
1619
+ "windows_x86_64_gnu 0.53.1",
1620
+ "windows_x86_64_gnullvm 0.53.1",
1621
+ "windows_x86_64_msvc 0.53.1",
1622
+]
1623
+
1624
+[[package]]
1625
+name = "windows_aarch64_gnullvm"
1626
+version = "0.48.5"
1627
+source = "registry+https://github.com/rust-lang/crates.io-index"
1628
+checksum = "2b38e32f0abccf9987a4e3079dfb67dcd799fb61361e53e2882c3cbaf0d905d8"
1629
+
1630
+[[package]]
1631
+name = "windows_aarch64_gnullvm"
1632
+version = "0.52.6"
1633
+source = "registry+https://github.com/rust-lang/crates.io-index"
1634
+checksum = "32a4622180e7a0ec044bb555404c800bc9fd9ec262ec147edd5989ccd0c02cd3"
1635
+
1636
+[[package]]
1637
+name = "windows_aarch64_gnullvm"
1638
+version = "0.53.1"
1639
+source = "registry+https://github.com/rust-lang/crates.io-index"
1640
+checksum = "a9d8416fa8b42f5c947f8482c43e7d89e73a173cead56d044f6a56104a6d1b53"
1641
+
1642
+[[package]]
1643
+name = "windows_aarch64_msvc"
1644
+version = "0.48.5"
1645
+source = "registry+https://github.com/rust-lang/crates.io-index"
1646
+checksum = "dc35310971f3b2dbbf3f0690a219f40e2d9afcf64f9ab7cc1be722937c26b4bc"
1647
+
1648
+[[package]]
1649
+name = "windows_aarch64_msvc"
1650
+version = "0.52.6"
1651
+source = "registry+https://github.com/rust-lang/crates.io-index"
1652
+checksum = "09ec2a7bb152e2252b53fa7803150007879548bc709c039df7627cabbd05d469"
1653
+
1654
+[[package]]
1655
+name = "windows_aarch64_msvc"
1656
+version = "0.53.1"
1657
+source = "registry+https://github.com/rust-lang/crates.io-index"
1658
+checksum = "b9d782e804c2f632e395708e99a94275910eb9100b2114651e04744e9b125006"
1659
+
1660
+[[package]]
1661
+name = "windows_i686_gnu"
1662
+version = "0.48.5"
1663
+source = "registry+https://github.com/rust-lang/crates.io-index"
1664
+checksum = "a75915e7def60c94dcef72200b9a8e58e5091744960da64ec734a6c6e9b3743e"
1665
+
1666
+[[package]]
1667
+name = "windows_i686_gnu"
1668
+version = "0.52.6"
1669
+source = "registry+https://github.com/rust-lang/crates.io-index"
1670
+checksum = "8e9b5ad5ab802e97eb8e295ac6720e509ee4c243f69d781394014ebfe8bbfa0b"
1671
+
1672
+[[package]]
1673
+name = "windows_i686_gnu"
1674
+version = "0.53.1"
1675
+source = "registry+https://github.com/rust-lang/crates.io-index"
1676
+checksum = "960e6da069d81e09becb0ca57a65220ddff016ff2d6af6a223cf372a506593a3"
1677
+
1678
+[[package]]
1679
+name = "windows_i686_gnullvm"
1680
+version = "0.52.6"
1681
+source = "registry+https://github.com/rust-lang/crates.io-index"
1682
+checksum = "0eee52d38c090b3caa76c563b86c3a4bd71ef1a819287c19d586d7334ae8ed66"
1683
+
1684
+[[package]]
1685
+name = "windows_i686_gnullvm"
1686
+version = "0.53.1"
1687
+source = "registry+https://github.com/rust-lang/crates.io-index"
1688
+checksum = "fa7359d10048f68ab8b09fa71c3daccfb0e9b559aed648a8f95469c27057180c"
1689
+
1690
+[[package]]
1691
+name = "windows_i686_msvc"
1692
+version = "0.48.5"
1693
+source = "registry+https://github.com/rust-lang/crates.io-index"
1694
+checksum = "8f55c233f70c4b27f66c523580f78f1004e8b5a8b659e05a4eb49d4166cca406"
1695
+
1696
+[[package]]
1697
+name = "windows_i686_msvc"
1698
+version = "0.52.6"
1699
+source = "registry+https://github.com/rust-lang/crates.io-index"
1700
+checksum = "240948bc05c5e7c6dabba28bf89d89ffce3e303022809e73deaefe4f6ec56c66"
1701
+
1702
+[[package]]
1703
+name = "windows_i686_msvc"
1704
+version = "0.53.1"
1705
+source = "registry+https://github.com/rust-lang/crates.io-index"
1706
+checksum = "1e7ac75179f18232fe9c285163565a57ef8d3c89254a30685b57d83a38d326c2"
1707
+
1708
+[[package]]
1709
+name = "windows_x86_64_gnu"
1710
+version = "0.48.5"
1711
+source = "registry+https://github.com/rust-lang/crates.io-index"
1712
+checksum = "53d40abd2583d23e4718fddf1ebec84dbff8381c07cae67ff7768bbf19c6718e"
1713
+
1714
+[[package]]
1715
+name = "windows_x86_64_gnu"
1716
+version = "0.52.6"
1717
+source = "registry+https://github.com/rust-lang/crates.io-index"
1718
+checksum = "147a5c80aabfbf0c7d901cb5895d1de30ef2907eb21fbbab29ca94c5b08b1a78"
1719
+
1720
+[[package]]
1721
+name = "windows_x86_64_gnu"
1722
+version = "0.53.1"
1723
+source = "registry+https://github.com/rust-lang/crates.io-index"
1724
+checksum = "9c3842cdd74a865a8066ab39c8a7a473c0778a3f29370b5fd6b4b9aa7df4a499"
1725
+
1726
+[[package]]
1727
+name = "windows_x86_64_gnullvm"
1728
+version = "0.48.5"
1729
+source = "registry+https://github.com/rust-lang/crates.io-index"
1730
+checksum = "0b7b52767868a23d5bab768e390dc5f5c55825b6d30b86c844ff2dc7414044cc"
1731
+
1732
+[[package]]
1733
+name = "windows_x86_64_gnullvm"
1734
+version = "0.52.6"
1735
+source = "registry+https://github.com/rust-lang/crates.io-index"
1736
+checksum = "24d5b23dc417412679681396f2b49f3de8c1473deb516bd34410872eff51ed0d"
1737
+
1738
+[[package]]
1739
+name = "windows_x86_64_gnullvm"
1740
+version = "0.53.1"
1741
+source = "registry+https://github.com/rust-lang/crates.io-index"
1742
+checksum = "0ffa179e2d07eee8ad8f57493436566c7cc30ac536a3379fdf008f47f6bb7ae1"
1743
+
1744
+[[package]]
1745
+name = "windows_x86_64_msvc"
1746
+version = "0.48.5"
1747
+source = "registry+https://github.com/rust-lang/crates.io-index"
1748
+checksum = "ed94fce61571a4006852b7389a063ab983c02eb1bb37b47f8272ce92d06d9538"
1749
+
1750
+[[package]]
1751
+name = "windows_x86_64_msvc"
1752
+version = "0.52.6"
1753
+source = "registry+https://github.com/rust-lang/crates.io-index"
1754
+checksum = "589f6da84c646204747d1270a2a5661ea66ed1cced2631d546fdfb155959f9ec"
1755
+
1756
+[[package]]
1757
+name = "windows_x86_64_msvc"
1758
+version = "0.53.1"
1759
+source = "registry+https://github.com/rust-lang/crates.io-index"
1760
+checksum = "d6bbff5f0aada427a1e5a6da5f1f98158182f26556f345ac9e04d36d0ebed650"
1761
+
1762
+[[package]]
1763
+name = "winnow"
1764
+version = "0.7.14"
1765
+source = "registry+https://github.com/rust-lang/crates.io-index"
1766
+checksum = "5a5364e9d77fcdeeaa6062ced926ee3381faa2ee02d3eb83a5c27a8825540829"
1767
+dependencies = [
1768
+ "memchr",
1769
+]
1770
+
1771
+[[package]]
1772
+name = "x11rb"
1773
+version = "0.13.2"
1774
+source = "registry+https://github.com/rust-lang/crates.io-index"
1775
+checksum = "9993aa5be5a26815fe2c3eacfc1fde061fc1a1f094bf1ad2a18bf9c495dd7414"
1776
+dependencies = [
1777
+ "as-raw-xcb-connection",
1778
+ "gethostname",
1779
+ "libc",
1780
+ "rustix",
1781
+ "x11rb-protocol",
1782
+ "xcursor",
1783
+]
1784
+
1785
+[[package]]
1786
+name = "x11rb-protocol"
1787
+version = "0.13.2"
1788
+source = "registry+https://github.com/rust-lang/crates.io-index"
1789
+checksum = "ea6fc2961e4ef194dcbfe56bb845534d0dc8098940c7e5c012a258bfec6701bd"
1790
+
1791
+[[package]]
1792
+name = "xcursor"
1793
+version = "0.3.10"
1794
+source = "registry+https://github.com/rust-lang/crates.io-index"
1795
+checksum = "bec9e4a500ca8864c5b47b8b482a73d62e4237670e5b5f1d6b9e3cae50f28f2b"
1796
+
1797
+[[package]]
1798
+name = "zmij"
1799
+version = "1.0.20"
1800
+source = "registry+https://github.com/rust-lang/crates.io-index"
1801
+checksum = "4de98dfa5d5b7fef4ee834d0073d560c9ca7b6c46a71d058c48db7960f8cfaf7"