1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
doe v1.1.66 (/mnt/e/CODE/gitlab_code/doe_gitlink)
├── aes v0.7.5
│ ├── cfg-if v1.0.1
│ ├── cipher v0.3.0
│ │ └── generic-array v0.14.7
│ │ └── typenum v1.18.0
│ │ [build-dependencies]
│ │ └── version_check v0.9.5
│ ├── cpufeatures v0.2.17
│ └── opaque-debug v0.3.1
├── anyhow v1.0.98
├── axum v0.7.9
│ ├── async-trait v0.1.88 (proc-macro)
│ │ ├── proc-macro2 v1.0.95
│ │ │ └── unicode-ident v1.0.18
│ │ ├── quote v1.0.40
│ │ │ └── proc-macro2 v1.0.95 (*)
│ │ └── syn v2.0.104
│ │ ├── proc-macro2 v1.0.95 (*)
│ │ ├── quote v1.0.40 (*)
│ │ └── unicode-ident v1.0.18
│ ├── axum-core v0.4.5
│ │ ├── async-trait v0.1.88 (proc-macro) (*)
│ │ ├── bytes v1.10.1
│ │ ├── futures-util v0.3.31
│ │ │ ├── futures-core v0.3.31
│ │ │ ├── futures-io v0.3.31
│ │ │ ├── futures-macro v0.3.31 (proc-macro)
│ │ │ │ ├── proc-macro2 v1.0.95 (*)
│ │ │ │ ├── quote v1.0.40 (*)
│ │ │ │ └── syn v2.0.104 (*)
│ │ │ ├── futures-sink v0.3.31
│ │ │ ├── futures-task v0.3.31
│ │ │ ├── memchr v2.7.5
│ │ │ ├── pin-project-lite v0.2.16
│ │ │ ├── pin-utils v0.1.0
│ │ │ └── slab v0.4.10
│ │ ├── http v1.3.1
│ │ │ ├── bytes v1.10.1
│ │ │ ├── fnv v1.0.7
│ │ │ └── itoa v1.0.15
│ │ ├── http-body v1.0.1
│ │ │ ├── bytes v1.10.1
│ │ │ └── http v1.3.1 (*)
│ │ ├── http-body-util v0.1.3
│ │ │ ├── bytes v1.10.1
│ │ │ ├── futures-core v0.3.31
│ │ │ ├── http v1.3.1 (*)
│ │ │ ├── http-body v1.0.1 (*)
│ │ │ └── pin-project-lite v0.2.16
│ │ ├── mime v0.3.17
│ │ ├── pin-project-lite v0.2.16
│ │ ├── rustversion v1.0.21 (proc-macro)
│ │ ├── sync_wrapper v1.0.2
│ │ ├── tower-layer v0.3.3
│ │ ├── tower-service v0.3.3
│ │ └── tracing v0.1.41
│ │ ├── log v0.4.27
│ │ │ └── value-bag v1.11.1
│ │ ├── pin-project-lite v0.2.16
│ │ ├── tracing-attributes v0.1.30 (proc-macro)
│ │ │ ├── proc-macro2 v1.0.95 (*)
│ │ │ ├── quote v1.0.40 (*)
│ │ │ └── syn v2.0.104 (*)
│ │ └── tracing-core v0.1.34
│ │ └── once_cell v1.21.3
│ ├── axum-macros v0.4.2 (proc-macro)
│ │ ├── proc-macro2 v1.0.95 (*)
│ │ ├── quote v1.0.40 (*)
│ │ └── syn v2.0.104 (*)
│ ├── base64 v0.22.1
│ ├── bytes v1.10.1
│ ├── futures-util v0.3.31 (*)
│ ├── http v1.3.1 (*)
│ ├── http-body v1.0.1 (*)
│ ├── http-body-util v0.1.3 (*)
│ ├── hyper v1.6.0
│ │ ├── bytes v1.10.1
│ │ ├── futures-channel v0.3.31
│ │ │ └── futures-core v0.3.31
│ │ ├── futures-util v0.3.31 (*)
│ │ ├── h2 v0.4.10
│ │ │ ├── atomic-waker v1.1.2
│ │ │ ├── bytes v1.10.1
│ │ │ ├── fnv v1.0.7
│ │ │ ├── futures-core v0.3.31
│ │ │ ├── futures-sink v0.3.31
│ │ │ ├── http v1.3.1 (*)
│ │ │ ├── indexmap v2.10.0
│ │ │ │ ├── equivalent v1.0.2
│ │ │ │ └── hashbrown v0.15.4
│ │ │ ├── slab v0.4.10
│ │ │ ├── tokio v1.45.1
│ │ │ │ ├── bytes v1.10.1
│ │ │ │ ├── libc v0.2.174
│ │ │ │ ├── mio v1.0.4
│ │ │ │ │ └── libc v0.2.174
│ │ │ │ ├── parking_lot v0.12.4
│ │ │ │ │ ├── lock_api v0.4.13
│ │ │ │ │ │ └── scopeguard v1.2.0
│ │ │ │ │ │ [build-dependencies]
│ │ │ │ │ │ └── autocfg v1.5.0
│ │ │ │ │ └── parking_lot_core v0.9.11
│ │ │ │ │ ├── cfg-if v1.0.1
│ │ │ │ │ ├── libc v0.2.174
│ │ │ │ │ └── smallvec v1.15.1
│ │ │ │ ├── pin-project-lite v0.2.16
│ │ │ │ ├── signal-hook-registry v1.4.5
│ │ │ │ │ └── libc v0.2.174
│ │ │ │ ├── socket2 v0.5.10
│ │ │ │ │ └── libc v0.2.174
│ │ │ │ └── tokio-macros v2.5.0 (proc-macro)
│ │ │ │ ├── proc-macro2 v1.0.95 (*)
│ │ │ │ ├── quote v1.0.40 (*)
│ │ │ │ └── syn v2.0.104 (*)
│ │ │ ├── tokio-util v0.7.15
│ │ │ │ ├── bytes v1.10.1
│ │ │ │ ├── futures-core v0.3.31
│ │ │ │ ├── futures-io v0.3.31
│ │ │ │ ├── futures-sink v0.3.31
│ │ │ │ ├── pin-project-lite v0.2.16
│ │ │ │ └── tokio v1.45.1 (*)
│ │ │ └── tracing v0.1.41 (*)
│ │ ├── http v1.3.1 (*)
│ │ ├── http-body v1.0.1 (*)
│ │ ├── httparse v1.10.1
│ │ ├── httpdate v1.0.3
│ │ ├── itoa v1.0.15
│ │ ├── pin-project-lite v0.2.16
│ │ ├── smallvec v1.15.1
│ │ ├── tokio v1.45.1 (*)
│ │ └── want v0.3.1
│ │ └── try-lock v0.2.5
│ ├── hyper-util v0.1.14
│ │ ├── bytes v1.10.1
│ │ ├── futures-core v0.3.31
│ │ ├── http v1.3.1 (*)
│ │ ├── http-body v1.0.1 (*)
│ │ ├── hyper v1.6.0 (*)
│ │ ├── pin-project-lite v0.2.16
│ │ ├── tokio v1.45.1 (*)
│ │ └── tower-service v0.3.3
│ ├── itoa v1.0.15
│ ├── matchit v0.7.3
│ ├── memchr v2.7.5
│ ├── mime v0.3.17
│ ├── percent-encoding v2.3.1
│ ├── pin-project-lite v0.2.16
│ ├── rustversion v1.0.21 (proc-macro)
│ ├── serde v1.0.219
│ │ └── serde_derive v1.0.219 (proc-macro)
│ │ ├── proc-macro2 v1.0.95 (*)
│ │ ├── quote v1.0.40 (*)
│ │ └── syn v2.0.104 (*)
│ ├── serde_json v1.0.140
│ │ ├── itoa v1.0.15
│ │ ├── memchr v2.7.5
│ │ ├── ryu v1.0.20
│ │ └── serde v1.0.219 (*)
│ ├── serde_path_to_error v0.1.17
│ │ ├── itoa v1.0.15
│ │ └── serde v1.0.219 (*)
│ ├── serde_urlencoded v0.7.1
│ │ ├── form_urlencoded v1.2.1
│ │ │ └── percent-encoding v2.3.1
│ │ ├── itoa v1.0.15
│ │ ├── ryu v1.0.20
│ │ └── serde v1.0.219 (*)
│ ├── sha1 v0.10.6
│ │ ├── cfg-if v1.0.1
│ │ ├── cpufeatures v0.2.17
│ │ └── digest v0.10.7
│ │ ├── block-buffer v0.10.4
│ │ │ └── generic-array v0.14.7 (*)
│ │ ├── const-oid v0.9.6
│ │ ├── crypto-common v0.1.6
│ │ │ ├── generic-array v0.14.7 (*)
│ │ │ └── typenum v1.18.0
│ │ └── subtle v2.6.1
│ ├── sync_wrapper v1.0.2
│ ├── tokio v1.45.1 (*)
│ ├── tokio-tungstenite v0.24.0
│ │ ├── futures-util v0.3.31 (*)
│ │ ├── log v0.4.27 (*)
│ │ ├── tokio v1.45.1 (*)
│ │ └── tungstenite v0.24.0
│ │ ├── byteorder v1.5.0
│ │ ├── bytes v1.10.1
│ │ ├── data-encoding v2.9.0
│ │ ├── http v1.3.1 (*)
│ │ ├── httparse v1.10.1
│ │ ├── log v0.4.27 (*)
│ │ ├── rand v0.8.5
│ │ │ ├── libc v0.2.174
│ │ │ ├── rand_chacha v0.3.1
│ │ │ │ ├── ppv-lite86 v0.2.21
│ │ │ │ │ └── zerocopy v0.8.26
│ │ │ │ └── rand_core v0.6.4
│ │ │ │ └── getrandom v0.2.16
│ │ │ │ ├── cfg-if v1.0.1
│ │ │ │ └── libc v0.2.174
│ │ │ └── rand_core v0.6.4 (*)
│ │ ├── sha1 v0.10.6 (*)
│ │ ├── thiserror v1.0.69
│ │ │ └── thiserror-impl v1.0.69 (proc-macro)
│ │ │ ├── proc-macro2 v1.0.95 (*)
│ │ │ ├── quote v1.0.40 (*)
│ │ │ └── syn v2.0.104 (*)
│ │ └── utf-8 v0.7.6
│ ├── tower v0.5.2
│ │ ├── futures-core v0.3.31
│ │ ├── futures-util v0.3.31 (*)
│ │ ├── pin-project-lite v0.2.16
│ │ ├── sync_wrapper v1.0.2
│ │ ├── tokio v1.45.1 (*)
│ │ ├── tower-layer v0.3.3
│ │ ├── tower-service v0.3.3
│ │ └── tracing v0.1.41 (*)
│ ├── tower-layer v0.3.3
│ ├── tower-service v0.3.3
│ └── tracing v0.1.41 (*)
├── axum-server v0.7.2
│ ├── arc-swap v1.7.1
│ ├── bytes v1.10.1
│ ├── fs-err v3.1.1
│ │ └── tokio v1.45.1 (*)
│ │ [build-dependencies]
│ │ └── autocfg v1.5.0
│ ├── http v1.3.1 (*)
│ ├── http-body v1.0.1 (*)
│ ├── hyper v1.6.0 (*)
│ ├── hyper-util v0.1.14 (*)
│ ├── pin-project-lite v0.2.16
│ ├── rustls v0.23.28
│ │ ├── aws-lc-rs v1.13.1
│ │ │ ├── aws-lc-sys v0.29.0
│ │ │ │ [build-dependencies]
│ │ │ │ ├── cc v1.2.27
│ │ │ │ │ ├── jobserver v0.1.33
│ │ │ │ │ │ └── libc v0.2.174
│ │ │ │ │ ├── libc v0.2.174
│ │ │ │ │ └── shlex v1.3.0
│ │ │ │ ├── cmake v0.1.54
│ │ │ │ │ └── cc v1.2.27 (*)
│ │ │ │ ├── dunce v1.0.5
│ │ │ │ └── fs_extra v1.3.0
│ │ │ └── zeroize v1.8.1
│ │ ├── once_cell v1.21.3
│ │ ├── rustls-pki-types v1.12.0
│ │ │ └── zeroize v1.8.1
│ │ ├── rustls-webpki v0.103.3
│ │ │ ├── aws-lc-rs v1.13.1 (*)
│ │ │ ├── rustls-pki-types v1.12.0 (*)
│ │ │ └── untrusted v0.9.0
│ │ ├── subtle v2.6.1
│ │ └── zeroize v1.8.1
│ ├── rustls-pemfile v2.2.0
│ │ └── rustls-pki-types v1.12.0 (*)
│ ├── rustls-pki-types v1.12.0 (*)
│ ├── tokio v1.45.1 (*)
│ ├── tokio-rustls v0.26.2
│ │ ├── rustls v0.23.28 (*)
│ │ └── tokio v1.45.1 (*)
│ └── tower-service v0.3.3
├── base64 v0.21.7
├── blake3 v1.8.2
│ ├── arrayref v0.3.9
│ ├── arrayvec v0.7.6
│ ├── cfg-if v1.0.1
│ └── constant_time_eq v0.3.1
│ [build-dependencies]
│ └── cc v1.2.27 (*)
├── block-modes v0.8.1
│ ├── block-padding v0.2.1
│ └── cipher v0.3.0 (*)
├── chrono v0.4.41
│ ├── iana-time-zone v0.1.63
│ └── num-traits v0.2.19
│ └── libm v0.2.15
│ [build-dependencies]
│ └── autocfg v1.5.0
├── clipboard v0.5.0
│ └── x11-clipboard v0.3.3
│ └── xcb v0.8.2
│ ├── libc v0.2.174
│ └── log v0.4.27 (*)
│ [build-dependencies]
│ └── libc v0.2.174
├── crossterm v0.27.0
│ ├── bitflags v2.9.1
│ ├── libc v0.2.174
│ ├── mio v0.8.11
│ │ ├── libc v0.2.174
│ │ └── log v0.4.27 (*)
│ ├── parking_lot v0.12.4 (*)
│ ├── signal-hook v0.3.18
│ │ ├── libc v0.2.174
│ │ └── signal-hook-registry v1.4.5 (*)
│ └── signal-hook-mio v0.2.4
│ ├── libc v0.2.174
│ ├── mio v0.8.11 (*)
│ └── signal-hook v0.3.18 (*)
├── ctr v0.8.0
│ └── cipher v0.3.0 (*)
├── deadpool-tiberius v0.1.9
│ ├── deadpool v0.12.2
│ │ ├── deadpool-runtime v0.1.4
│ │ │ └── tokio v1.45.1 (*)
│ │ ├── num_cpus v1.17.0
│ │ │ └── libc v0.2.174
│ │ └── tokio v1.45.1 (*)
│ ├── thiserror v2.0.12
│ │ └── thiserror-impl v2.0.12 (proc-macro)
│ │ ├── proc-macro2 v1.0.95 (*)
│ │ ├── quote v1.0.40 (*)
│ │ └── syn v2.0.104 (*)
│ ├── tiberius v0.12.3
│ │ ├── async-io v1.13.0
│ │ │ ├── async-lock v2.8.0
│ │ │ │ └── event-listener v2.5.3
│ │ │ ├── cfg-if v1.0.1
│ │ │ ├── concurrent-queue v2.5.0
│ │ │ │ └── crossbeam-utils v0.8.21
│ │ │ ├── futures-lite v1.13.0
│ │ │ │ ├── fastrand v1.9.0
│ │ │ │ ├── futures-core v0.3.31
│ │ │ │ ├── futures-io v0.3.31
│ │ │ │ ├── memchr v2.7.5
│ │ │ │ ├── parking v2.2.1
│ │ │ │ ├── pin-project-lite v0.2.16
│ │ │ │ └── waker-fn v1.2.0
│ │ │ ├── log v0.4.27 (*)
│ │ │ ├── parking v2.2.1
│ │ │ ├── polling v2.8.0
│ │ │ │ ├── cfg-if v1.0.1
│ │ │ │ ├── libc v0.2.174
│ │ │ │ └── log v0.4.27 (*)
│ │ │ │ [build-dependencies]
│ │ │ │ └── autocfg v1.5.0
│ │ │ ├── rustix v0.37.28
│ │ │ │ ├── bitflags v1.3.2
│ │ │ │ ├── io-lifetimes v1.0.11
│ │ │ │ │ └── libc v0.2.174
│ │ │ │ └── linux-raw-sys v0.3.8
│ │ │ ├── slab v0.4.10
│ │ │ ├── socket2 v0.4.10
│ │ │ │ └── libc v0.2.174
│ │ │ └── waker-fn v1.2.0
│ │ │ [build-dependencies]
│ │ │ └── autocfg v1.5.0
│ │ ├── async-native-tls v0.4.0
│ │ │ ├── futures-util v0.3.31 (*)
│ │ │ ├── native-tls v0.2.14
│ │ │ │ ├── log v0.4.27 (*)
│ │ │ │ ├── openssl v0.10.73
│ │ │ │ │ ├── bitflags v2.9.1
│ │ │ │ │ ├── cfg-if v1.0.1
│ │ │ │ │ ├── foreign-types v0.3.2
│ │ │ │ │ │ └── foreign-types-shared v0.1.1
│ │ │ │ │ ├── libc v0.2.174
│ │ │ │ │ ├── once_cell v1.21.3
│ │ │ │ │ ├── openssl-macros v0.1.1 (proc-macro)
│ │ │ │ │ │ ├── proc-macro2 v1.0.95 (*)
│ │ │ │ │ │ ├── quote v1.0.40 (*)
│ │ │ │ │ │ └── syn v2.0.104 (*)
│ │ │ │ │ └── openssl-sys v0.9.109
│ │ │ │ │ └── libc v0.2.174
│ │ │ │ │ [build-dependencies]
│ │ │ │ │ ├── cc v1.2.27 (*)
│ │ │ │ │ ├── pkg-config v0.3.32
│ │ │ │ │ └── vcpkg v0.2.15
│ │ │ │ ├── openssl-probe v0.1.6
│ │ │ │ └── openssl-sys v0.9.109 (*)
│ │ │ ├── thiserror v1.0.69 (*)
│ │ │ └── url v2.5.4
│ │ │ ├── form_urlencoded v1.2.1 (*)
│ │ │ ├── idna v1.0.3
│ │ │ │ ├── idna_adapter v1.2.1
│ │ │ │ │ ├── icu_normalizer v2.0.0
│ │ │ │ │ │ ├── displaydoc v0.2.5 (proc-macro)
│ │ │ │ │ │ │ ├── proc-macro2 v1.0.95 (*)
│ │ │ │ │ │ │ ├── quote v1.0.40 (*)
│ │ │ │ │ │ │ └── syn v2.0.104 (*)
│ │ │ │ │ │ ├── icu_collections v2.0.0
│ │ │ │ │ │ │ ├── displaydoc v0.2.5 (proc-macro) (*)
│ │ │ │ │ │ │ ├── potential_utf v0.1.2
│ │ │ │ │ │ │ │ └── zerovec v0.11.2
│ │ │ │ │ │ │ │ ├── yoke v0.8.0
│ │ │ │ │ │ │ │ │ ├── stable_deref_trait v1.2.0
│ │ │ │ │ │ │ │ │ ├── yoke-derive v0.8.0 (proc-macro)
│ │ │ │ │ │ │ │ │ │ ├── proc-macro2 v1.0.95 (*)
│ │ │ │ │ │ │ │ │ │ ├── quote v1.0.40 (*)
│ │ │ │ │ │ │ │ │ │ ├── syn v2.0.104 (*)
│ │ │ │ │ │ │ │ │ │ └── synstructure v0.13.2
│ │ │ │ │ │ │ │ │ │ ├── proc-macro2 v1.0.95 (*)
│ │ │ │ │ │ │ │ │ │ ├── quote v1.0.40 (*)
│ │ │ │ │ │ │ │ │ │ └── syn v2.0.104 (*)
│ │ │ │ │ │ │ │ │ └── zerofrom v0.1.6
│ │ │ │ │ │ │ │ │ └── zerofrom-derive v0.1.6 (proc-macro)
│ │ │ │ │ │ │ │ │ ├── proc-macro2 v1.0.95 (*)
│ │ │ │ │ │ │ │ │ ├── quote v1.0.40 (*)
│ │ │ │ │ │ │ │ │ ├── syn v2.0.104 (*)
│ │ │ │ │ │ │ │ │ └── synstructure v0.13.2 (*)
│ │ │ │ │ │ │ │ ├── zerofrom v0.1.6 (*)
│ │ │ │ │ │ │ │ └── zerovec-derive v0.11.1 (proc-macro)
│ │ │ │ │ │ │ │ ├── proc-macro2 v1.0.95 (*)
│ │ │ │ │ │ │ │ ├── quote v1.0.40 (*)
│ │ │ │ │ │ │ │ └── syn v2.0.104 (*)
│ │ │ │ │ │ │ ├── yoke v0.8.0 (*)
│ │ │ │ │ │ │ ├── zerofrom v0.1.6 (*)
│ │ │ │ │ │ │ └── zerovec v0.11.2 (*)
│ │ │ │ │ │ ├── icu_normalizer_data v2.0.0
│ │ │ │ │ │ ├── icu_provider v2.0.0
│ │ │ │ │ │ │ ├── displaydoc v0.2.5 (proc-macro) (*)
│ │ │ │ │ │ │ ├── icu_locale_core v2.0.0
│ │ │ │ │ │ │ │ ├── displaydoc v0.2.5 (proc-macro) (*)
│ │ │ │ │ │ │ │ ├── litemap v0.8.0
│ │ │ │ │ │ │ │ ├── tinystr v0.8.1
│ │ │ │ │ │ │ │ │ ├── displaydoc v0.2.5 (proc-macro) (*)
│ │ │ │ │ │ │ │ │ └── zerovec v0.11.2 (*)
│ │ │ │ │ │ │ │ ├── writeable v0.6.1
│ │ │ │ │ │ │ │ └── zerovec v0.11.2 (*)
│ │ │ │ │ │ │ ├── stable_deref_trait v1.2.0
│ │ │ │ │ │ │ ├── tinystr v0.8.1 (*)
│ │ │ │ │ │ │ ├── writeable v0.6.1
│ │ │ │ │ │ │ ├── yoke v0.8.0 (*)
│ │ │ │ │ │ │ ├── zerofrom v0.1.6 (*)
│ │ │ │ │ │ │ ├── zerotrie v0.2.2
│ │ │ │ │ │ │ │ ├── displaydoc v0.2.5 (proc-macro) (*)
│ │ │ │ │ │ │ │ ├── yoke v0.8.0 (*)
│ │ │ │ │ │ │ │ └── zerofrom v0.1.6 (*)
│ │ │ │ │ │ │ └── zerovec v0.11.2 (*)
│ │ │ │ │ │ ├── smallvec v1.15.1
│ │ │ │ │ │ └── zerovec v0.11.2 (*)
│ │ │ │ │ └── icu_properties v2.0.1
│ │ │ │ │ ├── displaydoc v0.2.5 (proc-macro) (*)
│ │ │ │ │ ├── icu_collections v2.0.0 (*)
│ │ │ │ │ ├── icu_locale_core v2.0.0 (*)
│ │ │ │ │ ├── icu_properties_data v2.0.1
│ │ │ │ │ ├── icu_provider v2.0.0 (*)
│ │ │ │ │ ├── potential_utf v0.1.2 (*)
│ │ │ │ │ ├── zerotrie v0.2.2 (*)
│ │ │ │ │ └── zerovec v0.11.2 (*)
│ │ │ │ ├── smallvec v1.15.1
│ │ │ │ └── utf8_iter v1.0.4
│ │ │ └── percent-encoding v2.3.1
│ │ ├── async-net v1.8.0
│ │ │ ├── async-io v1.13.0 (*)
│ │ │ ├── blocking v1.6.1
│ │ │ │ ├── async-channel v2.3.1
│ │ │ │ │ ├── concurrent-queue v2.5.0 (*)
│ │ │ │ │ ├── event-listener-strategy v0.5.4
│ │ │ │ │ │ ├── event-listener v5.4.0
│ │ │ │ │ │ │ ├── concurrent-queue v2.5.0 (*)
│ │ │ │ │ │ │ ├── parking v2.2.1
│ │ │ │ │ │ │ └── pin-project-lite v0.2.16
│ │ │ │ │ │ └── pin-project-lite v0.2.16
│ │ │ │ │ ├── futures-core v0.3.31
│ │ │ │ │ └── pin-project-lite v0.2.16
│ │ │ │ ├── async-task v4.7.1
│ │ │ │ ├── futures-io v0.3.31
│ │ │ │ ├── futures-lite v2.6.0
│ │ │ │ │ ├── fastrand v2.3.0
│ │ │ │ │ ├── futures-core v0.3.31
│ │ │ │ │ ├── futures-io v0.3.31
│ │ │ │ │ ├── parking v2.2.1
│ │ │ │ │ └── pin-project-lite v0.2.16
│ │ │ │ └── piper v0.2.4
│ │ │ │ ├── atomic-waker v1.1.2
│ │ │ │ ├── fastrand v2.3.0
│ │ │ │ └── futures-io v0.3.31
│ │ │ └── futures-lite v1.13.0 (*)
│ │ ├── async-std v1.13.1
│ │ │ ├── async-attributes v1.1.2 (proc-macro)
│ │ │ │ ├── quote v1.0.40 (*)
│ │ │ │ └── syn v1.0.109
│ │ │ │ ├── proc-macro2 v1.0.95 (*)
│ │ │ │ ├── quote v1.0.40 (*)
│ │ │ │ └── unicode-ident v1.0.18
│ │ │ ├── async-channel v1.9.0
│ │ │ │ ├── concurrent-queue v2.5.0 (*)
│ │ │ │ ├── event-listener v2.5.3
│ │ │ │ └── futures-core v0.3.31
│ │ │ ├── async-global-executor v2.4.1
│ │ │ │ ├── async-channel v2.3.1 (*)
│ │ │ │ ├── async-executor v1.13.2
│ │ │ │ │ ├── async-task v4.7.1
│ │ │ │ │ ├── concurrent-queue v2.5.0 (*)
│ │ │ │ │ ├── fastrand v2.3.0
│ │ │ │ │ ├── futures-lite v2.6.0 (*)
│ │ │ │ │ ├── pin-project-lite v0.2.16
│ │ │ │ │ └── slab v0.4.10
│ │ │ │ ├── async-io v2.4.1
│ │ │ │ │ ├── async-lock v3.4.0
│ │ │ │ │ │ ├── event-listener v5.4.0 (*)
│ │ │ │ │ │ ├── event-listener-strategy v0.5.4 (*)
│ │ │ │ │ │ └── pin-project-lite v0.2.16
│ │ │ │ │ ├── cfg-if v1.0.1
│ │ │ │ │ ├── concurrent-queue v2.5.0 (*)
│ │ │ │ │ ├── futures-io v0.3.31
│ │ │ │ │ ├── futures-lite v2.6.0 (*)
│ │ │ │ │ ├── parking v2.2.1
│ │ │ │ │ ├── polling v3.8.0
│ │ │ │ │ │ ├── cfg-if v1.0.1
│ │ │ │ │ │ ├── rustix v1.0.7
│ │ │ │ │ │ │ ├── bitflags v2.9.1
│ │ │ │ │ │ │ └── linux-raw-sys v0.9.4
│ │ │ │ │ │ └── tracing v0.1.41 (*)
│ │ │ │ │ ├── rustix v1.0.7 (*)
│ │ │ │ │ ├── slab v0.4.10
│ │ │ │ │ └── tracing v0.1.41 (*)
│ │ │ │ ├── async-lock v3.4.0 (*)
│ │ │ │ ├── blocking v1.6.1 (*)
│ │ │ │ ├── futures-lite v2.6.0 (*)
│ │ │ │ └── once_cell v1.21.3
│ │ │ ├── async-io v2.4.1 (*)
│ │ │ ├── async-lock v3.4.0 (*)
│ │ │ ├── crossbeam-utils v0.8.21
│ │ │ ├── futures-core v0.3.31
│ │ │ ├── futures-io v0.3.31
│ │ │ ├── futures-lite v2.6.0 (*)
│ │ │ ├── kv-log-macro v1.0.7
│ │ │ │ └── log v0.4.27 (*)
│ │ │ ├── log v0.4.27 (*)
│ │ │ ├── memchr v2.7.5
│ │ │ ├── once_cell v1.21.3
│ │ │ ├── pin-project-lite v0.2.16
│ │ │ ├── pin-utils v0.1.0
│ │ │ └── slab v0.4.10
│ │ ├── async-trait v0.1.88 (proc-macro) (*)
│ │ ├── asynchronous-codec v0.6.2
│ │ │ ├── bytes v1.10.1
│ │ │ ├── futures-sink v0.3.31
│ │ │ ├── futures-util v0.3.31 (*)
│ │ │ ├── memchr v2.7.5
│ │ │ └── pin-project-lite v0.2.16
│ │ ├── bigdecimal v0.3.1
│ │ │ ├── num-bigint v0.4.6
│ │ │ │ ├── num-integer v0.1.46
│ │ │ │ │ └── num-traits v0.2.19 (*)
│ │ │ │ └── num-traits v0.2.19 (*)
│ │ │ ├── num-integer v0.1.46 (*)
│ │ │ └── num-traits v0.2.19 (*)
│ │ ├── byteorder v1.5.0
│ │ ├── bytes v1.10.1
│ │ ├── chrono v0.4.41 (*)
│ │ ├── connection-string v0.2.0
│ │ ├── encoding_rs v0.8.35
│ │ │ └── cfg-if v1.0.1
│ │ ├── enumflags2 v0.7.12
│ │ │ └── enumflags2_derive v0.7.12 (proc-macro)
│ │ │ ├── proc-macro2 v1.0.95 (*)
│ │ │ ├── quote v1.0.40 (*)
│ │ │ └── syn v2.0.104 (*)
│ │ ├── futures-lite v1.13.0 (*)
│ │ ├── futures-util v0.3.31 (*)
│ │ ├── libgssapi v0.4.6
│ │ │ ├── bitflags v1.3.2
│ │ │ ├── bytes v1.10.1
│ │ │ ├── lazy_static v1.5.0
│ │ │ │ └── spin v0.9.8
│ │ │ ├── libgssapi-sys v0.2.4
│ │ │ │ [build-dependencies]
│ │ │ │ └── bindgen v0.59.2
│ │ │ │ ├── bitflags v1.3.2
│ │ │ │ ├── cexpr v0.6.0
│ │ │ │ │ └── nom v7.1.3
│ │ │ │ │ ├── memchr v2.7.5
│ │ │ │ │ └── minimal-lexical v0.2.1
│ │ │ │ ├── clang-sys v1.8.1
│ │ │ │ │ ├── glob v0.3.2
│ │ │ │ │ ├── libc v0.2.174
│ │ │ │ │ └── libloading v0.8.8
│ │ │ │ │ └── cfg-if v1.0.1
│ │ │ │ │ [build-dependencies]
│ │ │ │ │ └── glob v0.3.2
│ │ │ │ ├── clap v2.34.0
│ │ │ │ │ ├── ansi_term v0.12.1
│ │ │ │ │ ├── atty v0.2.14
│ │ │ │ │ │ └── libc v0.2.174
│ │ │ │ │ ├── bitflags v1.3.2
│ │ │ │ │ ├── strsim v0.8.0
│ │ │ │ │ ├── textwrap v0.11.0
│ │ │ │ │ │ └── unicode-width v0.1.14
│ │ │ │ │ ├── unicode-width v0.1.14
│ │ │ │ │ └── vec_map v0.8.2
│ │ │ │ ├── env_logger v0.9.3
│ │ │ │ │ ├── atty v0.2.14 (*)
│ │ │ │ │ ├── humantime v2.2.0
│ │ │ │ │ ├── log v0.4.27
│ │ │ │ │ ├── regex v1.11.1
│ │ │ │ │ │ ├── aho-corasick v1.1.3
│ │ │ │ │ │ │ └── memchr v2.7.5
│ │ │ │ │ │ ├── memchr v2.7.5
│ │ │ │ │ │ ├── regex-automata v0.4.9
│ │ │ │ │ │ │ ├── aho-corasick v1.1.3 (*)
│ │ │ │ │ │ │ ├── memchr v2.7.5
│ │ │ │ │ │ │ └── regex-syntax v0.8.5
│ │ │ │ │ │ └── regex-syntax v0.8.5
│ │ │ │ │ └── termcolor v1.4.1
│ │ │ │ ├── lazy_static v1.5.0
│ │ │ │ ├── lazycell v1.3.0
│ │ │ │ ├── log v0.4.27
│ │ │ │ ├── peeking_take_while v0.1.2
│ │ │ │ ├── proc-macro2 v1.0.95 (*)
│ │ │ │ ├── quote v1.0.40 (*)
│ │ │ │ ├── regex v1.11.1 (*)
│ │ │ │ ├── rustc-hash v1.1.0
│ │ │ │ ├── shlex v1.3.0
│ │ │ │ └── which v4.4.2
│ │ │ │ ├── either v1.15.0
│ │ │ │ ├── home v0.5.11
│ │ │ │ └── rustix v0.38.44
│ │ │ │ ├── bitflags v2.9.1
│ │ │ │ └── linux-raw-sys v0.4.15
│ │ │ └── parking_lot v0.11.2
│ │ │ ├── instant v0.1.13
│ │ │ │ └── cfg-if v1.0.1
│ │ │ ├── lock_api v0.4.13 (*)
│ │ │ └── parking_lot_core v0.8.6
│ │ │ ├── cfg-if v1.0.1
│ │ │ ├── instant v0.1.13 (*)
│ │ │ ├── libc v0.2.174
│ │ │ └── smallvec v1.15.1
│ │ ├── num-traits v0.2.19 (*)
│ │ ├── once_cell v1.21.3
│ │ ├── pin-project-lite v0.2.16
│ │ ├── pretty-hex v0.3.0
│ │ ├── rust_decimal v1.37.2
│ │ │ ├── arrayvec v0.7.6
│ │ │ ├── num-traits v0.2.19 (*)
│ │ │ └── serde v1.0.219 (*)
│ │ ├── thiserror v1.0.69 (*)
│ │ ├── time v0.3.41
│ │ │ ├── deranged v0.4.0
│ │ │ │ └── powerfmt v0.2.0
│ │ │ ├── itoa v1.0.15
│ │ │ ├── libc v0.2.174
│ │ │ ├── num-conv v0.1.0
│ │ │ ├── num_threads v0.1.7
│ │ │ ├── powerfmt v0.2.0
│ │ │ └── time-core v0.1.4
│ │ ├── tokio v1.45.1 (*)
│ │ ├── tokio-util v0.7.15 (*)
│ │ ├── tracing v0.1.41 (*)
│ │ └── uuid v1.17.0
│ ├── tokio v1.45.1 (*)
│ └── tokio-util v0.7.15 (*)
├── directories v5.0.1
│ └── dirs-sys v0.4.1
│ ├── libc v0.2.174
│ └── option-ext v0.2.0
├── futures-util v0.3.31 (*)
├── hex v0.4.3
├── http v1.3.1 (*)
├── hyper v1.6.0 (*)
├── icns v0.3.1
│ ├── byteorder v1.5.0
│ └── png v0.16.8
│ ├── bitflags v1.3.2
│ ├── crc32fast v1.4.2
│ │ └── cfg-if v1.0.1
│ ├── deflate v0.8.6
│ │ ├── adler32 v1.2.0
│ │ └── byteorder v1.5.0
│ └── miniz_oxide v0.3.7
│ └── adler32 v1.2.0
├── ico v0.3.0
│ ├── byteorder v1.5.0
│ └── png v0.17.16
│ ├── bitflags v1.3.2
│ ├── crc32fast v1.4.2 (*)
│ ├── fdeflate v0.3.7
│ │ └── simd-adler32 v0.3.7
│ ├── flate2 v1.1.2
│ │ ├── crc32fast v1.4.2 (*)
│ │ └── miniz_oxide v0.8.9
│ │ ├── adler2 v2.0.1
│ │ └── simd-adler32 v0.3.7
│ └── miniz_oxide v0.8.9 (*)
├── if-addrs v0.13.4
│ └── libc v0.2.174
├── image v0.24.9
│ ├── bytemuck v1.23.1
│ ├── byteorder v1.5.0
│ ├── color_quant v1.1.0
│ ├── exr v1.73.0
│ │ ├── bit_field v0.10.2
│ │ ├── half v2.6.0
│ │ │ └── cfg-if v1.0.1
│ │ ├── lebe v0.5.2
│ │ ├── miniz_oxide v0.8.9 (*)
│ │ ├── rayon-core v1.12.1
│ │ │ ├── crossbeam-deque v0.8.6
│ │ │ │ ├── crossbeam-epoch v0.9.18
│ │ │ │ │ └── crossbeam-utils v0.8.21
│ │ │ │ └── crossbeam-utils v0.8.21
│ │ │ └── crossbeam-utils v0.8.21
│ │ ├── smallvec v1.15.1
│ │ └── zune-inflate v0.2.54
│ │ └── simd-adler32 v0.3.7
│ ├── gif v0.13.3
│ │ ├── color_quant v1.1.0
│ │ └── weezl v0.1.10
│ ├── jpeg-decoder v0.3.2
│ │ └── rayon v1.10.0
│ │ ├── either v1.15.0
│ │ └── rayon-core v1.12.1 (*)
│ ├── num-traits v0.2.19 (*)
│ ├── png v0.17.16 (*)
│ ├── qoi v0.4.1
│ │ └── bytemuck v1.23.1
│ └── tiff v0.9.1
│ ├── flate2 v1.1.2 (*)
│ ├── jpeg-decoder v0.3.2 (*)
│ └── weezl v0.1.10
├── lazy_static v1.5.0 (*)
├── libc v0.2.174
├── md5 v0.7.0
├── mouse-rs v0.4.2
│ ├── libc v0.2.174
│ ├── time v0.2.27
│ │ ├── const_fn v0.4.11 (proc-macro)
│ │ ├── libc v0.2.174
│ │ ├── standback v0.2.17
│ │ │ [build-dependencies]
│ │ │ └── version_check v0.9.5
│ │ └── time-macros v0.1.1
│ │ ├── proc-macro-hack v0.5.20+deprecated (proc-macro)
│ │ └── time-macros-impl v0.1.2 (proc-macro)
│ │ ├── proc-macro-hack v0.5.20+deprecated (proc-macro)
│ │ ├── proc-macro2 v1.0.95 (*)
│ │ ├── quote v1.0.40 (*)
│ │ ├── standback v0.2.17
│ │ │ [build-dependencies]
│ │ │ └── version_check v0.9.5
│ │ └── syn v1.0.109 (*)
│ │ [build-dependencies]
│ │ └── version_check v0.9.5
│ └── x11 v2.21.0
│ └── libc v0.2.174
│ [build-dependencies]
│ └── pkg-config v0.3.32
├── percent-encoding v2.3.1
├── pinyin v0.10.0
├── rand v0.8.5 (*)
├── regex v1.11.1
│ ├── aho-corasick v1.1.3 (*)
│ ├── memchr v2.7.5
│ ├── regex-automata v0.4.9
│ │ ├── aho-corasick v1.1.3 (*)
│ │ ├── memchr v2.7.5
│ │ └── regex-syntax v0.8.5
│ └── regex-syntax v0.8.5
├── reqwest v0.11.27
│ ├── base64 v0.21.7
│ ├── bytes v1.10.1
│ ├── encoding_rs v0.8.35 (*)
│ ├── futures-core v0.3.31
│ ├── futures-util v0.3.31 (*)
│ ├── h2 v0.3.26
│ │ ├── bytes v1.10.1
│ │ ├── fnv v1.0.7
│ │ ├── futures-core v0.3.31
│ │ ├── futures-sink v0.3.31
│ │ ├── futures-util v0.3.31 (*)
│ │ ├── http v0.2.12
│ │ │ ├── bytes v1.10.1
│ │ │ ├── fnv v1.0.7
│ │ │ └── itoa v1.0.15
│ │ ├── indexmap v2.10.0 (*)
│ │ ├── slab v0.4.10
│ │ ├── tokio v1.45.1 (*)
│ │ ├── tokio-util v0.7.15 (*)
│ │ └── tracing v0.1.41 (*)
│ ├── http v0.2.12 (*)
│ ├── http-body v0.4.6
│ │ ├── bytes v1.10.1
│ │ ├── http v0.2.12 (*)
│ │ └── pin-project-lite v0.2.16
│ ├── hyper v0.14.32
│ │ ├── bytes v1.10.1
│ │ ├── futures-channel v0.3.31 (*)
│ │ ├── futures-core v0.3.31
│ │ ├── futures-util v0.3.31 (*)
│ │ ├── h2 v0.3.26 (*)
│ │ ├── http v0.2.12 (*)
│ │ ├── http-body v0.4.6 (*)
│ │ ├── httparse v1.10.1
│ │ ├── httpdate v1.0.3
│ │ ├── itoa v1.0.15
│ │ ├── pin-project-lite v0.2.16
│ │ ├── socket2 v0.5.10 (*)
│ │ ├── tokio v1.45.1 (*)
│ │ ├── tower-service v0.3.3
│ │ ├── tracing v0.1.41 (*)
│ │ └── want v0.3.1 (*)
│ ├── hyper-tls v0.5.0
│ │ ├── bytes v1.10.1
│ │ ├── hyper v0.14.32 (*)
│ │ ├── native-tls v0.2.14 (*)
│ │ ├── tokio v1.45.1 (*)
│ │ └── tokio-native-tls v0.3.1
│ │ ├── native-tls v0.2.14 (*)
│ │ └── tokio v1.45.1 (*)
│ ├── ipnet v2.11.0
│ ├── log v0.4.27 (*)
│ ├── mime v0.3.17
│ ├── native-tls v0.2.14 (*)
│ ├── once_cell v1.21.3
│ ├── percent-encoding v2.3.1
│ ├── pin-project-lite v0.2.16
│ ├── rustls-pemfile v1.0.4
│ │ └── base64 v0.21.7
│ ├── serde v1.0.219 (*)
│ ├── serde_json v1.0.140 (*)
│ ├── serde_urlencoded v0.7.1 (*)
│ ├── sync_wrapper v0.1.2
│ ├── tokio v1.45.1 (*)
│ ├── tokio-native-tls v0.3.1 (*)
│ ├── tower-service v0.3.3
│ └── url v2.5.4 (*)
├── rsa v0.9.8
│ ├── const-oid v0.9.6
│ ├── digest v0.10.7 (*)
│ ├── num-bigint-dig v0.8.4
│ │ ├── byteorder v1.5.0
│ │ ├── lazy_static v1.5.0 (*)
│ │ ├── libm v0.2.15
│ │ ├── num-integer v0.1.46 (*)
│ │ ├── num-iter v0.1.45
│ │ │ ├── num-integer v0.1.46 (*)
│ │ │ └── num-traits v0.2.19 (*)
│ │ │ [build-dependencies]
│ │ │ └── autocfg v1.5.0
│ │ ├── num-traits v0.2.19 (*)
│ │ ├── rand v0.8.5 (*)
│ │ ├── smallvec v1.15.1
│ │ └── zeroize v1.8.1
│ ├── num-integer v0.1.46 (*)
│ ├── num-traits v0.2.19 (*)
│ ├── pkcs1 v0.7.5
│ │ ├── der v0.7.10
│ │ │ ├── const-oid v0.9.6
│ │ │ ├── pem-rfc7468 v0.7.0
│ │ │ │ └── base64ct v1.8.0
│ │ │ └── zeroize v1.8.1
│ │ ├── pkcs8 v0.10.2
│ │ │ ├── der v0.7.10 (*)
│ │ │ └── spki v0.7.3
│ │ │ └── der v0.7.10 (*)
│ │ └── spki v0.7.3 (*)
│ ├── pkcs8 v0.10.2 (*)
│ ├── rand_core v0.6.4 (*)
│ ├── signature v2.2.0
│ │ ├── digest v0.10.7 (*)
│ │ └── rand_core v0.6.4 (*)
│ ├── spki v0.7.3 (*)
│ ├── subtle v2.6.1
│ └── zeroize v1.8.1
├── scraper v0.17.1
│ ├── ahash v0.8.12
│ │ ├── cfg-if v1.0.1
│ │ ├── getrandom v0.3.3
│ │ │ ├── cfg-if v1.0.1
│ │ │ └── libc v0.2.174
│ │ ├── once_cell v1.21.3
│ │ └── zerocopy v0.8.26
│ │ [build-dependencies]
│ │ └── version_check v0.9.5
│ ├── cssparser v0.31.2
│ │ ├── cssparser-macros v0.6.1 (proc-macro)
│ │ │ ├── quote v1.0.40 (*)
│ │ │ └── syn v2.0.104 (*)
│ │ ├── dtoa-short v0.3.5
│ │ │ └── dtoa v1.0.10
│ │ ├── itoa v1.0.15
│ │ ├── phf v0.11.3
│ │ │ ├── phf_macros v0.11.3 (proc-macro)
│ │ │ │ ├── phf_generator v0.11.3
│ │ │ │ │ ├── phf_shared v0.11.3
│ │ │ │ │ │ └── siphasher v1.0.1
│ │ │ │ │ └── rand v0.8.5
│ │ │ │ │ ├── libc v0.2.174
│ │ │ │ │ ├── rand_chacha v0.3.1 (*)
│ │ │ │ │ └── rand_core v0.6.4 (*)
│ │ │ │ ├── phf_shared v0.11.3 (*)
│ │ │ │ ├── proc-macro2 v1.0.95 (*)
│ │ │ │ ├── quote v1.0.40 (*)
│ │ │ │ └── syn v2.0.104 (*)
│ │ │ └── phf_shared v0.11.3 (*)
│ │ └── smallvec v1.15.1
│ ├── ego-tree v0.6.3
│ ├── getopts v0.2.23
│ │ └── unicode-width v0.2.1
│ ├── html5ever v0.26.0
│ │ ├── log v0.4.27 (*)
│ │ ├── mac v0.1.1
│ │ └── markup5ever v0.11.0
│ │ ├── log v0.4.27 (*)
│ │ ├── phf v0.10.1
│ │ │ └── phf_shared v0.10.0
│ │ │ └── siphasher v0.3.11
│ │ ├── string_cache v0.8.9
│ │ │ ├── new_debug_unreachable v1.0.6
│ │ │ ├── parking_lot v0.12.4 (*)
│ │ │ ├── phf_shared v0.11.3 (*)
│ │ │ ├── precomputed-hash v0.1.1
│ │ │ └── serde v1.0.219 (*)
│ │ └── tendril v0.4.3
│ │ ├── futf v0.1.5
│ │ │ ├── mac v0.1.1
│ │ │ └── new_debug_unreachable v1.0.6
│ │ ├── mac v0.1.1
│ │ └── utf-8 v0.7.6
│ │ [build-dependencies]
│ │ ├── phf_codegen v0.10.0
│ │ │ ├── phf_generator v0.10.0
│ │ │ │ ├── phf_shared v0.10.0
│ │ │ │ │ └── siphasher v0.3.11
│ │ │ │ └── rand v0.8.5 (*)
│ │ │ └── phf_shared v0.10.0 (*)
│ │ └── string_cache_codegen v0.5.4
│ │ ├── phf_generator v0.11.3 (*)
│ │ ├── phf_shared v0.11.3 (*)
│ │ ├── proc-macro2 v1.0.95 (*)
│ │ └── quote v1.0.40 (*)
│ │ [build-dependencies]
│ │ ├── proc-macro2 v1.0.95 (*)
│ │ ├── quote v1.0.40 (*)
│ │ └── syn v1.0.109 (*)
│ ├── once_cell v1.21.3
│ ├── selectors v0.25.0
│ │ ├── bitflags v2.9.1
│ │ ├── cssparser v0.31.2 (*)
│ │ ├── derive_more v0.99.20 (proc-macro)
│ │ │ ├── proc-macro2 v1.0.95 (*)
│ │ │ ├── quote v1.0.40 (*)
│ │ │ └── syn v2.0.104 (*)
│ │ ├── fxhash v0.2.1
│ │ │ └── byteorder v1.5.0
│ │ ├── log v0.4.27 (*)
│ │ ├── new_debug_unreachable v1.0.6
│ │ ├── phf v0.10.1 (*)
│ │ ├── precomputed-hash v0.1.1
│ │ ├── servo_arc v0.3.0
│ │ │ └── stable_deref_trait v1.2.0
│ │ └── smallvec v1.15.1
│ │ [build-dependencies]
│ │ └── phf_codegen v0.10.0 (*)
│ ├── smallvec v1.15.1
│ └── tendril v0.4.3 (*)
├── screenshots v0.8.10
│ ├── anyhow v1.0.98
│ ├── dbus v0.9.7
│ │ ├── libc v0.2.174
│ │ └── libdbus-sys v0.2.5
│ │ [build-dependencies]
│ │ ├── cc v1.2.27 (*)
│ │ └── pkg-config v0.3.32
│ ├── display-info v0.4.8
│ │ ├── anyhow v1.0.98
│ │ └── xcb v1.5.0
│ │ ├── bitflags v1.3.2
│ │ └── libc v0.2.174
│ │ [build-dependencies]
│ │ └── quick-xml v0.30.0
│ │ └── memchr v2.7.5
│ ├── image v0.24.9 (*)
│ ├── libwayshot v0.2.0
│ │ ├── image v0.24.9 (*)
│ │ ├── log v0.4.27 (*)
│ │ ├── memmap2 v0.7.1
│ │ │ └── libc v0.2.174
│ │ ├── nix v0.26.4
│ │ │ ├── bitflags v1.3.2
│ │ │ ├── cfg-if v1.0.1
│ │ │ ├── libc v0.2.174
│ │ │ ├── memoffset v0.7.1
│ │ │ │ [build-dependencies]
│ │ │ │ └── autocfg v1.5.0
│ │ │ └── pin-utils v0.1.0
│ │ ├── thiserror v1.0.69 (*)
│ │ ├── wayland-client v0.30.2
│ │ │ ├── bitflags v1.3.2
│ │ │ ├── nix v0.26.4 (*)
│ │ │ ├── wayland-backend v0.1.2
│ │ │ │ ├── downcast-rs v1.2.1
│ │ │ │ ├── io-lifetimes v1.0.11 (*)
│ │ │ │ ├── nix v0.26.4 (*)
│ │ │ │ ├── scoped-tls v1.0.1
│ │ │ │ ├── smallvec v1.15.1
│ │ │ │ └── wayland-sys v0.30.1
│ │ │ │ ├── dlib v0.5.2
│ │ │ │ │ └── libloading v0.8.8 (*)
│ │ │ │ └── log v0.4.27 (*)
│ │ │ │ [build-dependencies]
│ │ │ │ └── pkg-config v0.3.32
│ │ │ │ [build-dependencies]
│ │ │ │ └── cc v1.2.27 (*)
│ │ │ └── wayland-scanner v0.30.1 (proc-macro)
│ │ │ ├── proc-macro2 v1.0.95 (*)
│ │ │ ├── quick-xml v0.28.2
│ │ │ │ └── memchr v2.7.5
│ │ │ └── quote v1.0.40 (*)
│ │ ├── wayland-protocols v0.30.1
│ │ │ ├── bitflags v1.3.2
│ │ │ ├── wayland-backend v0.1.2 (*)
│ │ │ ├── wayland-client v0.30.2 (*)
│ │ │ └── wayland-scanner v0.30.1 (proc-macro) (*)
│ │ └── wayland-protocols-wlr v0.1.0
│ │ ├── bitflags v1.3.2
│ │ ├── wayland-backend v0.1.2 (*)
│ │ ├── wayland-client v0.30.2 (*)
│ │ ├── wayland-protocols v0.30.1 (*)
│ │ └── wayland-scanner v0.30.1 (proc-macro) (*)
│ ├── percent-encoding v2.3.1
│ └── xcb v1.5.0 (*)
├── serde_json v1.0.140 (*)
├── sha1 v0.10.6 (*)
├── sha2 v0.10.9
│ ├── cfg-if v1.0.1
│ ├── cpufeatures v0.2.17
│ └── digest v0.10.7 (*)
├── sha3 v0.10.8
│ ├── digest v0.10.7 (*)
│ └── keccak v0.1.5
├── socket2 v0.5.10 (*)
├── time v0.3.41 (*)
├── tokio v1.45.1 (*)
├── tower v0.4.13
│ ├── futures-core v0.3.31
│ ├── futures-util v0.3.31 (*)
│ ├── pin-project v1.1.10
│ │ └── pin-project-internal v1.1.10 (proc-macro)
│ │ ├── proc-macro2 v1.0.95 (*)
│ │ ├── quote v1.0.40 (*)
│ │ └── syn v2.0.104 (*)
│ ├── pin-project-lite v0.2.16
│ ├── tokio v1.45.1 (*)
│ ├── tokio-util v0.7.15 (*)
│ ├── tower-layer v0.3.3
│ ├── tower-service v0.3.3
│ └── tracing v0.1.41 (*)
├── tower-http v0.5.2
│ ├── base64 v0.21.7
│ ├── bitflags v2.9.1
│ ├── bytes v1.10.1
│ ├── http v1.3.1 (*)
│ ├── http-body v1.0.1 (*)
│ ├── http-body-util v0.1.3 (*)
│ ├── mime v0.3.17
│ ├── pin-project-lite v0.2.16
│ ├── tower-layer v0.3.3
│ ├── tower-service v0.3.3
│ └── tracing v0.1.41 (*)
├── tracing v0.1.41 (*)
├── tracing-appender v0.2.3
│ ├── crossbeam-channel v0.5.15
│ │ └── crossbeam-utils v0.8.21
│ ├── thiserror v1.0.69 (*)
│ ├── time v0.3.41 (*)
│ └── tracing-subscriber v0.3.19
│ ├── chrono v0.4.41 (*)
│ ├── matchers v0.1.0
│ │ └── regex-automata v0.1.10
│ │ └── regex-syntax v0.6.29
│ ├── nu-ansi-term v0.46.0
│ │ └── overload v0.1.1
│ ├── once_cell v1.21.3
│ ├── regex v1.11.1 (*)
│ ├── sharded-slab v0.1.7
│ │ └── lazy_static v1.5.0 (*)
│ ├── smallvec v1.15.1
│ ├── thread_local v1.1.9
│ │ └── cfg-if v1.0.1
│ ├── time v0.3.41 (*)
│ ├── tracing v0.1.41 (*)
│ ├── tracing-core v0.1.34 (*)
│ └── tracing-log v0.2.0
│ ├── log v0.4.27 (*)
│ ├── once_cell v1.21.3
│ └── tracing-core v0.1.34 (*)
├── tracing-error v0.2.1
│ ├── tracing v0.1.41 (*)
│ └── tracing-subscriber v0.3.19 (*)
├── tracing-subscriber v0.3.19 (*)
├── umya-spreadsheet v1.2.7
│ ├── aes v0.8.4
│ │ ├── cfg-if v1.0.1
│ │ ├── cipher v0.4.4
│ │ │ ├── crypto-common v0.1.6 (*)
│ │ │ └── inout v0.1.4
│ │ │ ├── block-padding v0.3.3
│ │ │ │ └── generic-array v0.14.7 (*)
│ │ │ └── generic-array v0.14.7 (*)
│ │ └── cpufeatures v0.2.17
│ ├── ahash v0.8.12 (*)
│ ├── base64 v0.21.7
│ ├── byteorder v1.5.0
│ ├── cbc v0.1.2
│ │ └── cipher v0.4.4 (*)
│ ├── cfb v0.9.0
│ │ ├── byteorder v1.5.0
│ │ ├── fnv v1.0.7
│ │ └── uuid v1.17.0
│ ├── chrono v0.4.41 (*)
│ ├── encoding_rs v0.8.35 (*)
│ ├── fancy-regex v0.13.0
│ │ ├── bit-set v0.5.3
│ │ │ └── bit-vec v0.6.3
│ │ ├── regex-automata v0.4.9 (*)
│ │ └── regex-syntax v0.8.5
│ ├── getrandom v0.2.16 (*)
│ ├── hashbrown v0.14.5
│ │ ├── ahash v0.8.12 (*)
│ │ └── allocator-api2 v0.2.21
│ ├── hmac v0.12.1
│ │ └── digest v0.10.7 (*)
│ ├── html_parser v0.7.0
│ │ ├── doc-comment v0.3.3
│ │ ├── pest v2.8.1
│ │ │ ├── memchr v2.7.5
│ │ │ ├── thiserror v2.0.12 (*)
│ │ │ └── ucd-trie v0.1.7
│ │ ├── pest_derive v2.8.1 (proc-macro)
│ │ │ ├── pest v2.8.1 (*)
│ │ │ └── pest_generator v2.8.1
│ │ │ ├── pest v2.8.1 (*)
│ │ │ ├── pest_meta v2.8.1
│ │ │ │ └── pest v2.8.1 (*)
│ │ │ │ [build-dependencies]
│ │ │ │ └── sha2 v0.10.9
│ │ │ │ ├── cfg-if v1.0.1
│ │ │ │ ├── cpufeatures v0.2.17
│ │ │ │ └── digest v0.10.7
│ │ │ │ ├── block-buffer v0.10.4 (*)
│ │ │ │ └── crypto-common v0.1.6
│ │ │ │ ├── generic-array v0.14.7 (*)
│ │ │ │ └── typenum v1.18.0
│ │ │ ├── proc-macro2 v1.0.95 (*)
│ │ │ ├── quote v1.0.40 (*)
│ │ │ └── syn v2.0.104 (*)
│ │ ├── serde v1.0.219 (*)
│ │ ├── serde_derive v1.0.219 (proc-macro) (*)
│ │ ├── serde_json v1.0.140 (*)
│ │ └── thiserror v1.0.69 (*)
│ ├── image v0.24.9 (*)
│ ├── lazy_static v1.5.0 (*)
│ ├── md-5 v0.10.6
│ │ ├── cfg-if v1.0.1
│ │ └── digest v0.10.7 (*)
│ ├── quick-xml v0.31.0
│ │ ├── memchr v2.7.5
│ │ └── serde v1.0.219 (*)
│ ├── regex v1.11.1 (*)
│ ├── sha2 v0.10.9 (*)
│ ├── thousands v0.2.0
│ └── zip v0.6.6
│ ├── aes v0.8.4 (*)
│ ├── byteorder v1.5.0
│ ├── bzip2 v0.4.4
│ │ ├── bzip2-sys v0.1.13+1.0.8
│ │ │ [build-dependencies]
│ │ │ ├── cc v1.2.27 (*)
│ │ │ └── pkg-config v0.3.32
│ │ └── libc v0.2.174
│ ├── constant_time_eq v0.1.5
│ ├── crc32fast v1.4.2 (*)
│ ├── flate2 v1.1.2 (*)
│ ├── hmac v0.12.1 (*)
│ ├── pbkdf2 v0.11.0
│ │ ├── digest v0.10.7 (*)
│ │ ├── hmac v0.12.1 (*)
│ │ ├── password-hash v0.4.2
│ │ │ ├── base64ct v1.8.0
│ │ │ ├── rand_core v0.6.4 (*)
│ │ │ └── subtle v2.6.1
│ │ └── sha2 v0.10.9 (*)
│ ├── sha1 v0.10.6 (*)
│ ├── time v0.3.41 (*)
│ └── zstd v0.11.2+zstd.1.5.2
│ └── zstd-safe v5.0.2+zstd.1.5.2
│ ├── libc v0.2.174
│ └── zstd-sys v2.0.15+zstd.1.5.7
│ [build-dependencies]
│ ├── cc v1.2.27 (*)
│ └── pkg-config v0.3.32
├── unicode-segmentation v1.12.0
├── xdotool v0.0.2
├── xml-rs v0.8.26
└── zip v0.6.6 (*)