-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtree
More file actions
1125 lines (1125 loc) · 55.4 KB
/
tree
File metadata and controls
1125 lines (1125 loc) · 55.4 KB
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
cz4r v1.1.2 (/home/sycration/Code/CZ4R)
├── anyhow v1.0.95
├── async-trait v0.1.86 (proc-macro)
│ ├── proc-macro2 v1.0.93
│ │ └── unicode-ident v1.0.16
│ ├── quote v1.0.38
│ │ └── proc-macro2 v1.0.93 (*)
│ └── syn v2.0.98
│ ├── proc-macro2 v1.0.93 (*)
│ ├── quote v1.0.38 (*)
│ └── unicode-ident v1.0.16
├── aws-config v1.5.16
│ ├── aws-credential-types v1.2.1
│ │ ├── aws-smithy-async v1.2.4
│ │ │ ├── futures-util v0.3.31
│ │ │ │ ├── futures-channel v0.3.31
│ │ │ │ │ ├── futures-core v0.3.31
│ │ │ │ │ └── futures-sink v0.3.31
│ │ │ │ ├── futures-core v0.3.31
│ │ │ │ ├── futures-io v0.3.31
│ │ │ │ ├── futures-macro v0.3.31 (proc-macro)
│ │ │ │ │ ├── proc-macro2 v1.0.93 (*)
│ │ │ │ │ ├── quote v1.0.38 (*)
│ │ │ │ │ └── syn v2.0.98 (*)
│ │ │ │ ├── futures-sink v0.3.31
│ │ │ │ ├── futures-task v0.3.31
│ │ │ │ ├── memchr v2.7.4
│ │ │ │ ├── pin-project-lite v0.2.16
│ │ │ │ ├── pin-utils v0.1.0
│ │ │ │ └── slab v0.4.9
│ │ │ │ [build-dependencies]
│ │ │ │ └── autocfg v1.4.0
│ │ │ ├── pin-project-lite v0.2.16
│ │ │ └── tokio v1.43.0
│ │ │ ├── bytes v1.10.0
│ │ │ ├── libc v0.2.169
│ │ │ ├── mio v1.0.3
│ │ │ │ └── libc v0.2.169
│ │ │ ├── pin-project-lite v0.2.16
│ │ │ ├── signal-hook-registry v1.4.2
│ │ │ │ └── libc v0.2.169
│ │ │ ├── socket2 v0.5.8
│ │ │ │ └── libc v0.2.169
│ │ │ └── tokio-macros v2.5.0 (proc-macro)
│ │ │ ├── proc-macro2 v1.0.93 (*)
│ │ │ ├── quote v1.0.38 (*)
│ │ │ └── syn v2.0.98 (*)
│ │ ├── aws-smithy-runtime-api v1.7.3
│ │ │ ├── aws-smithy-async v1.2.4 (*)
│ │ │ ├── aws-smithy-types v1.2.13
│ │ │ │ ├── base64-simd v0.8.0
│ │ │ │ │ ├── outref v0.5.2
│ │ │ │ │ └── vsimd v0.8.0
│ │ │ │ ├── bytes v1.10.0
│ │ │ │ ├── bytes-utils v0.1.4
│ │ │ │ │ ├── bytes v1.10.0
│ │ │ │ │ └── either v1.13.0
│ │ │ │ │ └── serde v1.0.217
│ │ │ │ │ └── serde_derive v1.0.217 (proc-macro)
│ │ │ │ │ ├── proc-macro2 v1.0.93 (*)
│ │ │ │ │ ├── quote v1.0.38 (*)
│ │ │ │ │ └── syn v2.0.98 (*)
│ │ │ │ ├── futures-core v0.3.31
│ │ │ │ ├── http v0.2.12
│ │ │ │ │ ├── bytes v1.10.0
│ │ │ │ │ ├── fnv v1.0.7
│ │ │ │ │ └── itoa v1.0.14
│ │ │ │ ├── http v1.2.0
│ │ │ │ │ ├── bytes v1.10.0
│ │ │ │ │ ├── fnv v1.0.7
│ │ │ │ │ └── itoa v1.0.14
│ │ │ │ ├── http-body v0.4.6
│ │ │ │ │ ├── bytes v1.10.0
│ │ │ │ │ ├── http v0.2.12 (*)
│ │ │ │ │ └── pin-project-lite v0.2.16
│ │ │ │ ├── http-body v1.0.1
│ │ │ │ │ ├── bytes v1.10.0
│ │ │ │ │ └── http v1.2.0 (*)
│ │ │ │ ├── http-body-util v0.1.2
│ │ │ │ │ ├── bytes v1.10.0
│ │ │ │ │ ├── futures-util v0.3.31 (*)
│ │ │ │ │ ├── http v1.2.0 (*)
│ │ │ │ │ ├── http-body v1.0.1 (*)
│ │ │ │ │ └── pin-project-lite v0.2.16
│ │ │ │ ├── itoa v1.0.14
│ │ │ │ ├── num-integer v0.1.46
│ │ │ │ │ └── num-traits v0.2.19
│ │ │ │ │ [build-dependencies]
│ │ │ │ │ └── autocfg v1.4.0
│ │ │ │ ├── pin-project-lite v0.2.16
│ │ │ │ ├── pin-utils v0.1.0
│ │ │ │ ├── ryu v1.0.19
│ │ │ │ ├── time v0.3.37
│ │ │ │ │ ├── deranged v0.3.11
│ │ │ │ │ │ ├── powerfmt v0.2.0
│ │ │ │ │ │ └── serde v1.0.217 (*)
│ │ │ │ │ ├── itoa v1.0.14
│ │ │ │ │ ├── libc v0.2.169
│ │ │ │ │ ├── num-conv v0.1.0
│ │ │ │ │ ├── num_threads v0.1.7
│ │ │ │ │ ├── powerfmt v0.2.0
│ │ │ │ │ ├── serde v1.0.217 (*)
│ │ │ │ │ ├── time-core v0.1.2
│ │ │ │ │ └── time-macros v0.2.19 (proc-macro)
│ │ │ │ │ ├── num-conv v0.1.0
│ │ │ │ │ └── time-core v0.1.2
│ │ │ │ ├── tokio v1.43.0 (*)
│ │ │ │ └── tokio-util v0.7.13
│ │ │ │ ├── bytes v1.10.0
│ │ │ │ ├── futures-core v0.3.31
│ │ │ │ ├── futures-sink v0.3.31
│ │ │ │ ├── pin-project-lite v0.2.16
│ │ │ │ └── tokio v1.43.0 (*)
│ │ │ ├── bytes v1.10.0
│ │ │ ├── http v0.2.12 (*)
│ │ │ ├── http v1.2.0 (*)
│ │ │ ├── pin-project-lite v0.2.16
│ │ │ ├── tokio v1.43.0 (*)
│ │ │ ├── tracing v0.1.41
│ │ │ │ ├── log v0.4.25
│ │ │ │ ├── pin-project-lite v0.2.16
│ │ │ │ ├── tracing-attributes v0.1.28 (proc-macro)
│ │ │ │ │ ├── proc-macro2 v1.0.93 (*)
│ │ │ │ │ ├── quote v1.0.38 (*)
│ │ │ │ │ └── syn v2.0.98 (*)
│ │ │ │ └── tracing-core v0.1.33
│ │ │ │ └── once_cell v1.20.3
│ │ │ └── zeroize v1.8.1
│ │ ├── aws-smithy-types v1.2.13 (*)
│ │ └── zeroize v1.8.1
│ ├── aws-runtime v1.5.5
│ │ ├── aws-credential-types v1.2.1 (*)
│ │ ├── aws-sigv4 v1.2.9
│ │ │ ├── aws-credential-types v1.2.1 (*)
│ │ │ ├── aws-smithy-eventstream v0.60.6
│ │ │ │ ├── aws-smithy-types v1.2.13 (*)
│ │ │ │ ├── bytes v1.10.0
│ │ │ │ └── crc32fast v1.4.2
│ │ │ │ └── cfg-if v1.0.0
│ │ │ ├── aws-smithy-http v0.60.12
│ │ │ │ ├── aws-smithy-eventstream v0.60.6 (*)
│ │ │ │ ├── aws-smithy-runtime-api v1.7.3 (*)
│ │ │ │ ├── aws-smithy-types v1.2.13 (*)
│ │ │ │ ├── bytes v1.10.0
│ │ │ │ ├── bytes-utils v0.1.4 (*)
│ │ │ │ ├── futures-core v0.3.31
│ │ │ │ ├── http v0.2.12 (*)
│ │ │ │ ├── http-body v0.4.6 (*)
│ │ │ │ ├── once_cell v1.20.3
│ │ │ │ ├── percent-encoding v2.3.1
│ │ │ │ ├── pin-project-lite v0.2.16
│ │ │ │ ├── pin-utils v0.1.0
│ │ │ │ └── tracing v0.1.41 (*)
│ │ │ ├── aws-smithy-runtime-api v1.7.3 (*)
│ │ │ ├── aws-smithy-types v1.2.13 (*)
│ │ │ ├── bytes v1.10.0
│ │ │ ├── crypto-bigint v0.5.5
│ │ │ │ ├── rand_core v0.6.4
│ │ │ │ │ └── getrandom v0.2.15
│ │ │ │ │ ├── cfg-if v1.0.0
│ │ │ │ │ └── libc v0.2.169
│ │ │ │ └── subtle v2.6.1
│ │ │ ├── form_urlencoded v1.2.1
│ │ │ │ └── percent-encoding v2.3.1
│ │ │ ├── hex v0.4.3
│ │ │ ├── hmac v0.12.1
│ │ │ │ └── digest v0.10.7
│ │ │ │ ├── block-buffer v0.10.4
│ │ │ │ │ └── generic-array v0.14.7
│ │ │ │ │ └── typenum v1.17.0
│ │ │ │ │ [build-dependencies]
│ │ │ │ │ └── version_check v0.9.5
│ │ │ │ ├── crypto-common v0.1.6
│ │ │ │ │ ├── generic-array v0.14.7 (*)
│ │ │ │ │ └── typenum v1.17.0
│ │ │ │ └── subtle v2.6.1
│ │ │ ├── http v0.2.12 (*)
│ │ │ ├── http v1.2.0 (*)
│ │ │ ├── once_cell v1.20.3
│ │ │ ├── p256 v0.11.1
│ │ │ │ ├── ecdsa v0.14.8
│ │ │ │ │ ├── der v0.6.1
│ │ │ │ │ │ ├── const-oid v0.9.6
│ │ │ │ │ │ └── zeroize v1.8.1
│ │ │ │ │ ├── elliptic-curve v0.12.3
│ │ │ │ │ │ ├── base16ct v0.1.1
│ │ │ │ │ │ ├── crypto-bigint v0.4.9
│ │ │ │ │ │ │ ├── generic-array v0.14.7 (*)
│ │ │ │ │ │ │ ├── rand_core v0.6.4 (*)
│ │ │ │ │ │ │ ├── subtle v2.6.1
│ │ │ │ │ │ │ └── zeroize v1.8.1
│ │ │ │ │ │ ├── der v0.6.1 (*)
│ │ │ │ │ │ ├── digest v0.10.7 (*)
│ │ │ │ │ │ ├── ff v0.12.1
│ │ │ │ │ │ │ ├── rand_core v0.6.4 (*)
│ │ │ │ │ │ │ └── subtle v2.6.1
│ │ │ │ │ │ ├── generic-array v0.14.7 (*)
│ │ │ │ │ │ ├── group v0.12.1
│ │ │ │ │ │ │ ├── ff v0.12.1 (*)
│ │ │ │ │ │ │ ├── rand_core v0.6.4 (*)
│ │ │ │ │ │ │ └── subtle v2.6.1
│ │ │ │ │ │ ├── pkcs8 v0.9.0
│ │ │ │ │ │ │ ├── der v0.6.1 (*)
│ │ │ │ │ │ │ └── spki v0.6.0
│ │ │ │ │ │ │ ├── base64ct v1.6.0
│ │ │ │ │ │ │ └── der v0.6.1 (*)
│ │ │ │ │ │ ├── rand_core v0.6.4 (*)
│ │ │ │ │ │ ├── sec1 v0.3.0
│ │ │ │ │ │ │ ├── base16ct v0.1.1
│ │ │ │ │ │ │ ├── der v0.6.1 (*)
│ │ │ │ │ │ │ ├── generic-array v0.14.7 (*)
│ │ │ │ │ │ │ ├── pkcs8 v0.9.0 (*)
│ │ │ │ │ │ │ ├── subtle v2.6.1
│ │ │ │ │ │ │ └── zeroize v1.8.1
│ │ │ │ │ │ ├── subtle v2.6.1
│ │ │ │ │ │ └── zeroize v1.8.1
│ │ │ │ │ ├── rfc6979 v0.3.1
│ │ │ │ │ │ ├── crypto-bigint v0.4.9 (*)
│ │ │ │ │ │ ├── hmac v0.12.1 (*)
│ │ │ │ │ │ └── zeroize v1.8.1
│ │ │ │ │ └── signature v1.6.4
│ │ │ │ │ ├── digest v0.10.7 (*)
│ │ │ │ │ └── rand_core v0.6.4 (*)
│ │ │ │ ├── elliptic-curve v0.12.3 (*)
│ │ │ │ └── sha2 v0.10.8
│ │ │ │ ├── cfg-if v1.0.0
│ │ │ │ ├── cpufeatures v0.2.17
│ │ │ │ └── digest v0.10.7 (*)
│ │ │ ├── percent-encoding v2.3.1
│ │ │ ├── ring v0.17.9
│ │ │ │ ├── cfg-if v1.0.0
│ │ │ │ ├── getrandom v0.2.15 (*)
│ │ │ │ └── untrusted v0.9.0
│ │ │ │ [build-dependencies]
│ │ │ │ └── cc v1.2.14
│ │ │ │ ├── jobserver v0.1.32
│ │ │ │ │ └── libc v0.2.169
│ │ │ │ ├── libc v0.2.169
│ │ │ │ └── shlex v1.3.0
│ │ │ ├── sha2 v0.10.8 (*)
│ │ │ ├── subtle v2.6.1
│ │ │ ├── time v0.3.37 (*)
│ │ │ ├── tracing v0.1.41 (*)
│ │ │ └── zeroize v1.8.1
│ │ ├── aws-smithy-async v1.2.4 (*)
│ │ ├── aws-smithy-eventstream v0.60.6 (*)
│ │ ├── aws-smithy-http v0.60.12 (*)
│ │ ├── aws-smithy-runtime v1.7.8
│ │ │ ├── aws-smithy-async v1.2.4 (*)
│ │ │ ├── aws-smithy-http v0.60.12 (*)
│ │ │ ├── aws-smithy-runtime-api v1.7.3 (*)
│ │ │ ├── aws-smithy-types v1.2.13 (*)
│ │ │ ├── bytes v1.10.0
│ │ │ ├── fastrand v2.3.0
│ │ │ ├── h2 v0.3.26
│ │ │ │ ├── bytes v1.10.0
│ │ │ │ ├── fnv v1.0.7
│ │ │ │ ├── futures-core v0.3.31
│ │ │ │ ├── futures-sink v0.3.31
│ │ │ │ ├── futures-util v0.3.31 (*)
│ │ │ │ ├── http v0.2.12 (*)
│ │ │ │ ├── indexmap v2.7.1
│ │ │ │ │ ├── equivalent v1.0.2
│ │ │ │ │ └── hashbrown v0.15.2
│ │ │ │ │ ├── allocator-api2 v0.2.21
│ │ │ │ │ ├── equivalent v1.0.2
│ │ │ │ │ └── foldhash v0.1.4
│ │ │ │ ├── slab v0.4.9 (*)
│ │ │ │ ├── tokio v1.43.0 (*)
│ │ │ │ ├── tokio-util v0.7.13 (*)
│ │ │ │ └── tracing v0.1.41 (*)
│ │ │ ├── http v0.2.12 (*)
│ │ │ ├── http-body v0.4.6 (*)
│ │ │ ├── http-body v1.0.1 (*)
│ │ │ ├── httparse v1.10.0
│ │ │ ├── hyper v0.14.32
│ │ │ │ ├── bytes v1.10.0
│ │ │ │ ├── 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.0
│ │ │ │ ├── httpdate v1.0.3
│ │ │ │ ├── itoa v1.0.14
│ │ │ │ ├── pin-project-lite v0.2.16
│ │ │ │ ├── socket2 v0.5.8 (*)
│ │ │ │ ├── tokio v1.43.0 (*)
│ │ │ │ ├── tower-service v0.3.3
│ │ │ │ ├── tracing v0.1.41 (*)
│ │ │ │ └── want v0.3.1
│ │ │ │ └── try-lock v0.2.5
│ │ │ ├── hyper-rustls v0.24.2
│ │ │ │ ├── futures-util v0.3.31 (*)
│ │ │ │ ├── http v0.2.12 (*)
│ │ │ │ ├── hyper v0.14.32 (*)
│ │ │ │ ├── log v0.4.25
│ │ │ │ ├── rustls v0.21.12
│ │ │ │ │ ├── log v0.4.25
│ │ │ │ │ ├── ring v0.17.9 (*)
│ │ │ │ │ ├── rustls-webpki v0.101.7
│ │ │ │ │ │ ├── ring v0.17.9 (*)
│ │ │ │ │ │ └── untrusted v0.9.0
│ │ │ │ │ └── sct v0.7.1
│ │ │ │ │ ├── ring v0.17.9 (*)
│ │ │ │ │ └── untrusted v0.9.0
│ │ │ │ ├── rustls-native-certs v0.6.3
│ │ │ │ │ ├── openssl-probe v0.1.6
│ │ │ │ │ └── rustls-pemfile v1.0.4
│ │ │ │ │ └── base64 v0.21.7
│ │ │ │ ├── tokio v1.43.0 (*)
│ │ │ │ └── tokio-rustls v0.24.1
│ │ │ │ ├── rustls v0.21.12 (*)
│ │ │ │ └── tokio v1.43.0 (*)
│ │ │ ├── once_cell v1.20.3
│ │ │ ├── pin-project-lite v0.2.16
│ │ │ ├── pin-utils v0.1.0
│ │ │ ├── rustls v0.21.12 (*)
│ │ │ ├── tokio v1.43.0 (*)
│ │ │ └── tracing v0.1.41 (*)
│ │ ├── aws-smithy-runtime-api v1.7.3 (*)
│ │ ├── aws-smithy-types v1.2.13 (*)
│ │ ├── aws-types v1.3.5
│ │ │ ├── aws-credential-types v1.2.1 (*)
│ │ │ ├── aws-smithy-async v1.2.4 (*)
│ │ │ ├── aws-smithy-runtime-api v1.7.3 (*)
│ │ │ ├── aws-smithy-types v1.2.13 (*)
│ │ │ └── tracing v0.1.41 (*)
│ │ │ [build-dependencies]
│ │ │ └── rustc_version v0.4.1
│ │ │ └── semver v1.0.25
│ │ ├── bytes v1.10.0
│ │ ├── fastrand v2.3.0
│ │ ├── http v0.2.12 (*)
│ │ ├── http-body v0.4.6 (*)
│ │ ├── once_cell v1.20.3
│ │ ├── percent-encoding v2.3.1
│ │ ├── pin-project-lite v0.2.16
│ │ ├── tracing v0.1.41 (*)
│ │ └── uuid v1.13.1
│ ├── aws-sdk-sso v1.59.0
│ │ ├── aws-credential-types v1.2.1 (*)
│ │ ├── aws-runtime v1.5.5 (*)
│ │ ├── aws-smithy-async v1.2.4 (*)
│ │ ├── aws-smithy-http v0.60.12 (*)
│ │ ├── aws-smithy-json v0.61.2
│ │ │ └── aws-smithy-types v1.2.13 (*)
│ │ ├── aws-smithy-runtime v1.7.8 (*)
│ │ ├── aws-smithy-runtime-api v1.7.3 (*)
│ │ ├── aws-smithy-types v1.2.13 (*)
│ │ ├── aws-types v1.3.5 (*)
│ │ ├── bytes v1.10.0
│ │ ├── http v0.2.12 (*)
│ │ ├── once_cell v1.20.3
│ │ ├── regex-lite v0.1.6
│ │ └── tracing v0.1.41 (*)
│ ├── aws-sdk-ssooidc v1.60.0
│ │ ├── aws-credential-types v1.2.1 (*)
│ │ ├── aws-runtime v1.5.5 (*)
│ │ ├── aws-smithy-async v1.2.4 (*)
│ │ ├── aws-smithy-http v0.60.12 (*)
│ │ ├── aws-smithy-json v0.61.2 (*)
│ │ ├── aws-smithy-runtime v1.7.8 (*)
│ │ ├── aws-smithy-runtime-api v1.7.3 (*)
│ │ ├── aws-smithy-types v1.2.13 (*)
│ │ ├── aws-types v1.3.5 (*)
│ │ ├── bytes v1.10.0
│ │ ├── http v0.2.12 (*)
│ │ ├── once_cell v1.20.3
│ │ ├── regex-lite v0.1.6
│ │ └── tracing v0.1.41 (*)
│ ├── aws-sdk-sts v1.60.0
│ │ ├── aws-credential-types v1.2.1 (*)
│ │ ├── aws-runtime v1.5.5 (*)
│ │ ├── aws-smithy-async v1.2.4 (*)
│ │ ├── aws-smithy-http v0.60.12 (*)
│ │ ├── aws-smithy-json v0.61.2 (*)
│ │ ├── aws-smithy-query v0.60.7
│ │ │ ├── aws-smithy-types v1.2.13 (*)
│ │ │ └── urlencoding v2.1.3
│ │ ├── aws-smithy-runtime v1.7.8 (*)
│ │ ├── aws-smithy-runtime-api v1.7.3 (*)
│ │ ├── aws-smithy-types v1.2.13 (*)
│ │ ├── aws-smithy-xml v0.60.9
│ │ │ └── xmlparser v0.13.6
│ │ ├── aws-types v1.3.5 (*)
│ │ ├── http v0.2.12 (*)
│ │ ├── once_cell v1.20.3
│ │ ├── regex-lite v0.1.6
│ │ └── tracing v0.1.41 (*)
│ ├── aws-smithy-async v1.2.4 (*)
│ ├── aws-smithy-http v0.60.12 (*)
│ ├── aws-smithy-json v0.61.2 (*)
│ ├── aws-smithy-runtime v1.7.8 (*)
│ ├── aws-smithy-runtime-api v1.7.3 (*)
│ ├── aws-smithy-types v1.2.13 (*)
│ ├── aws-types v1.3.5 (*)
│ ├── bytes v1.10.0
│ ├── fastrand v2.3.0
│ ├── hex v0.4.3
│ ├── http v0.2.12 (*)
│ ├── ring v0.17.9 (*)
│ ├── time v0.3.37 (*)
│ ├── tokio v1.43.0 (*)
│ ├── tracing v0.1.41 (*)
│ ├── url v2.5.4
│ │ ├── form_urlencoded v1.2.1 (*)
│ │ ├── idna v1.0.3
│ │ │ ├── idna_adapter v1.2.0
│ │ │ │ ├── icu_normalizer v1.5.0
│ │ │ │ │ ├── displaydoc v0.2.5 (proc-macro)
│ │ │ │ │ │ ├── proc-macro2 v1.0.93 (*)
│ │ │ │ │ │ ├── quote v1.0.38 (*)
│ │ │ │ │ │ └── syn v2.0.98 (*)
│ │ │ │ │ ├── icu_collections v1.5.0
│ │ │ │ │ │ ├── displaydoc v0.2.5 (proc-macro) (*)
│ │ │ │ │ │ ├── yoke v0.7.5
│ │ │ │ │ │ │ ├── stable_deref_trait v1.2.0
│ │ │ │ │ │ │ ├── yoke-derive v0.7.5 (proc-macro)
│ │ │ │ │ │ │ │ ├── proc-macro2 v1.0.93 (*)
│ │ │ │ │ │ │ │ ├── quote v1.0.38 (*)
│ │ │ │ │ │ │ │ ├── syn v2.0.98 (*)
│ │ │ │ │ │ │ │ └── synstructure v0.13.1
│ │ │ │ │ │ │ │ ├── proc-macro2 v1.0.93 (*)
│ │ │ │ │ │ │ │ ├── quote v1.0.38 (*)
│ │ │ │ │ │ │ │ └── syn v2.0.98 (*)
│ │ │ │ │ │ │ └── zerofrom v0.1.5
│ │ │ │ │ │ │ └── zerofrom-derive v0.1.5 (proc-macro)
│ │ │ │ │ │ │ ├── proc-macro2 v1.0.93 (*)
│ │ │ │ │ │ │ ├── quote v1.0.38 (*)
│ │ │ │ │ │ │ ├── syn v2.0.98 (*)
│ │ │ │ │ │ │ └── synstructure v0.13.1 (*)
│ │ │ │ │ │ ├── zerofrom v0.1.5 (*)
│ │ │ │ │ │ └── zerovec v0.10.4
│ │ │ │ │ │ ├── yoke v0.7.5 (*)
│ │ │ │ │ │ ├── zerofrom v0.1.5 (*)
│ │ │ │ │ │ └── zerovec-derive v0.10.3 (proc-macro)
│ │ │ │ │ │ ├── proc-macro2 v1.0.93 (*)
│ │ │ │ │ │ ├── quote v1.0.38 (*)
│ │ │ │ │ │ └── syn v2.0.98 (*)
│ │ │ │ │ ├── icu_normalizer_data v1.5.0
│ │ │ │ │ ├── icu_properties v1.5.1
│ │ │ │ │ │ ├── displaydoc v0.2.5 (proc-macro) (*)
│ │ │ │ │ │ ├── icu_collections v1.5.0 (*)
│ │ │ │ │ │ ├── icu_locid_transform v1.5.0
│ │ │ │ │ │ │ ├── displaydoc v0.2.5 (proc-macro) (*)
│ │ │ │ │ │ │ ├── icu_locid v1.5.0
│ │ │ │ │ │ │ │ ├── displaydoc v0.2.5 (proc-macro) (*)
│ │ │ │ │ │ │ │ ├── litemap v0.7.4
│ │ │ │ │ │ │ │ ├── tinystr v0.7.6
│ │ │ │ │ │ │ │ │ ├── displaydoc v0.2.5 (proc-macro) (*)
│ │ │ │ │ │ │ │ │ └── zerovec v0.10.4 (*)
│ │ │ │ │ │ │ │ ├── writeable v0.5.5
│ │ │ │ │ │ │ │ └── zerovec v0.10.4 (*)
│ │ │ │ │ │ │ ├── icu_locid_transform_data v1.5.0
│ │ │ │ │ │ │ ├── icu_provider v1.5.0
│ │ │ │ │ │ │ │ ├── displaydoc v0.2.5 (proc-macro) (*)
│ │ │ │ │ │ │ │ ├── icu_locid v1.5.0 (*)
│ │ │ │ │ │ │ │ ├── icu_provider_macros v1.5.0 (proc-macro)
│ │ │ │ │ │ │ │ │ ├── proc-macro2 v1.0.93 (*)
│ │ │ │ │ │ │ │ │ ├── quote v1.0.38 (*)
│ │ │ │ │ │ │ │ │ └── syn v2.0.98 (*)
│ │ │ │ │ │ │ │ ├── stable_deref_trait v1.2.0
│ │ │ │ │ │ │ │ ├── tinystr v0.7.6 (*)
│ │ │ │ │ │ │ │ ├── writeable v0.5.5
│ │ │ │ │ │ │ │ ├── yoke v0.7.5 (*)
│ │ │ │ │ │ │ │ ├── zerofrom v0.1.5 (*)
│ │ │ │ │ │ │ │ └── zerovec v0.10.4 (*)
│ │ │ │ │ │ │ ├── tinystr v0.7.6 (*)
│ │ │ │ │ │ │ └── zerovec v0.10.4 (*)
│ │ │ │ │ │ ├── icu_properties_data v1.5.0
│ │ │ │ │ │ ├── icu_provider v1.5.0 (*)
│ │ │ │ │ │ ├── tinystr v0.7.6 (*)
│ │ │ │ │ │ └── zerovec v0.10.4 (*)
│ │ │ │ │ ├── icu_provider v1.5.0 (*)
│ │ │ │ │ ├── smallvec v1.14.0
│ │ │ │ │ ├── utf16_iter v1.0.5
│ │ │ │ │ ├── utf8_iter v1.0.4
│ │ │ │ │ ├── write16 v1.0.0
│ │ │ │ │ └── zerovec v0.10.4 (*)
│ │ │ │ └── icu_properties v1.5.1 (*)
│ │ │ ├── smallvec v1.14.0
│ │ │ └── utf8_iter v1.0.4
│ │ └── percent-encoding v2.3.1
│ └── zeroize v1.8.1
├── aws-sdk-s3 v1.76.0
│ ├── aws-credential-types v1.2.1 (*)
│ ├── aws-runtime v1.5.5 (*)
│ ├── aws-sigv4 v1.2.9 (*)
│ ├── aws-smithy-async v1.2.4 (*)
│ ├── aws-smithy-checksums v0.62.0
│ │ ├── aws-smithy-http v0.60.12 (*)
│ │ ├── aws-smithy-types v1.2.13 (*)
│ │ ├── bytes v1.10.0
│ │ ├── crc32c v0.6.8
│ │ │ [build-dependencies]
│ │ │ └── rustc_version v0.4.1 (*)
│ │ ├── crc32fast v1.4.2 (*)
│ │ ├── crc64fast-nvme v1.1.1
│ │ │ └── crc v3.2.1
│ │ │ └── crc-catalog v2.4.0
│ │ │ [build-dependencies]
│ │ │ └── cbindgen v0.27.0
│ │ │ ├── clap v4.5.29
│ │ │ │ └── clap_builder v4.5.29
│ │ │ │ ├── anstream v0.6.18
│ │ │ │ │ ├── anstyle v1.0.10
│ │ │ │ │ ├── anstyle-parse v0.2.6
│ │ │ │ │ │ └── utf8parse v0.2.2
│ │ │ │ │ ├── anstyle-query v1.1.2
│ │ │ │ │ ├── colorchoice v1.0.3
│ │ │ │ │ ├── is_terminal_polyfill v1.70.1
│ │ │ │ │ └── utf8parse v0.2.2
│ │ │ │ ├── anstyle v1.0.10
│ │ │ │ ├── clap_lex v0.7.4
│ │ │ │ └── strsim v0.11.1
│ │ │ ├── heck v0.4.1
│ │ │ ├── indexmap v2.7.1 (*)
│ │ │ ├── log v0.4.25
│ │ │ ├── proc-macro2 v1.0.93 (*)
│ │ │ ├── quote v1.0.38 (*)
│ │ │ ├── serde v1.0.217
│ │ │ │ └── serde_derive v1.0.217 (proc-macro) (*)
│ │ │ ├── serde_json v1.0.138
│ │ │ │ ├── itoa v1.0.14
│ │ │ │ ├── memchr v2.7.4
│ │ │ │ ├── ryu v1.0.19
│ │ │ │ └── serde v1.0.217 (*)
│ │ │ ├── syn v2.0.98 (*)
│ │ │ ├── tempfile v3.16.0
│ │ │ │ ├── cfg-if v1.0.0
│ │ │ │ ├── fastrand v2.3.0
│ │ │ │ ├── getrandom v0.3.1
│ │ │ │ │ ├── cfg-if v1.0.0
│ │ │ │ │ └── libc v0.2.169
│ │ │ │ ├── once_cell v1.20.3
│ │ │ │ └── rustix v0.38.44
│ │ │ │ ├── bitflags v2.8.0
│ │ │ │ └── linux-raw-sys v0.4.15
│ │ │ └── toml v0.8.20
│ │ │ ├── serde v1.0.217 (*)
│ │ │ ├── serde_spanned v0.6.8
│ │ │ │ └── serde v1.0.217 (*)
│ │ │ ├── toml_datetime v0.6.8
│ │ │ │ └── serde v1.0.217 (*)
│ │ │ └── toml_edit v0.22.24
│ │ │ ├── indexmap v2.7.1 (*)
│ │ │ ├── serde v1.0.217 (*)
│ │ │ ├── serde_spanned v0.6.8 (*)
│ │ │ ├── toml_datetime v0.6.8 (*)
│ │ │ └── winnow v0.7.2
│ │ ├── hex v0.4.3
│ │ ├── http v0.2.12 (*)
│ │ ├── http-body v0.4.6 (*)
│ │ ├── md-5 v0.10.6
│ │ │ ├── cfg-if v1.0.0
│ │ │ └── digest v0.10.7 (*)
│ │ ├── pin-project-lite v0.2.16
│ │ ├── sha1 v0.10.6
│ │ │ ├── cfg-if v1.0.0
│ │ │ ├── cpufeatures v0.2.17
│ │ │ └── digest v0.10.7 (*)
│ │ ├── sha2 v0.10.8 (*)
│ │ └── tracing v0.1.41 (*)
│ ├── aws-smithy-eventstream v0.60.6 (*)
│ ├── aws-smithy-http v0.60.12 (*)
│ ├── aws-smithy-json v0.61.2 (*)
│ ├── aws-smithy-runtime v1.7.8 (*)
│ ├── aws-smithy-runtime-api v1.7.3 (*)
│ ├── aws-smithy-types v1.2.13 (*)
│ ├── aws-smithy-xml v0.60.9 (*)
│ ├── aws-types v1.3.5 (*)
│ ├── bytes v1.10.0
│ ├── fastrand v2.3.0
│ ├── hex v0.4.3
│ ├── hmac v0.12.1 (*)
│ ├── http v0.2.12 (*)
│ ├── http-body v0.4.6 (*)
│ ├── lru v0.12.5
│ │ └── hashbrown v0.15.2 (*)
│ ├── once_cell v1.20.3
│ ├── percent-encoding v2.3.1
│ ├── regex-lite v0.1.6
│ ├── sha2 v0.10.8 (*)
│ ├── tracing v0.1.41 (*)
│ └── url v2.5.4 (*)
├── axum v0.8.1
│ ├── axum-core v0.5.0
│ │ ├── bytes v1.10.0
│ │ ├── futures-util v0.3.31 (*)
│ │ ├── http v1.2.0 (*)
│ │ ├── http-body v1.0.1 (*)
│ │ ├── http-body-util v0.1.2 (*)
│ │ ├── mime v0.3.17
│ │ ├── pin-project-lite v0.2.16
│ │ ├── rustversion v1.0.19 (proc-macro)
│ │ ├── sync_wrapper v1.0.2
│ │ ├── tower-layer v0.3.3
│ │ ├── tower-service v0.3.3
│ │ └── tracing v0.1.41 (*)
│ ├── axum-macros v0.5.0 (proc-macro)
│ │ ├── proc-macro2 v1.0.93 (*)
│ │ ├── quote v1.0.38 (*)
│ │ └── syn v2.0.98 (*)
│ ├── bytes v1.10.0
│ ├── form_urlencoded v1.2.1 (*)
│ ├── futures-util v0.3.31 (*)
│ ├── http v1.2.0 (*)
│ ├── http-body v1.0.1 (*)
│ ├── http-body-util v0.1.2 (*)
│ ├── hyper v1.6.0
│ │ ├── bytes v1.10.0
│ │ ├── futures-channel v0.3.31 (*)
│ │ ├── futures-util v0.3.31 (*)
│ │ ├── http v1.2.0 (*)
│ │ ├── http-body v1.0.1 (*)
│ │ ├── httparse v1.10.0
│ │ ├── httpdate v1.0.3
│ │ ├── itoa v1.0.14
│ │ ├── pin-project-lite v0.2.16
│ │ ├── smallvec v1.14.0
│ │ └── tokio v1.43.0 (*)
│ ├── hyper-util v0.1.10
│ │ ├── bytes v1.10.0
│ │ ├── futures-util v0.3.31 (*)
│ │ ├── http v1.2.0 (*)
│ │ ├── http-body v1.0.1 (*)
│ │ ├── hyper v1.6.0 (*)
│ │ ├── pin-project-lite v0.2.16
│ │ ├── tokio v1.43.0 (*)
│ │ └── tower-service v0.3.3
│ ├── itoa v1.0.14
│ ├── matchit v0.8.4
│ ├── memchr v2.7.4
│ ├── mime v0.3.17
│ ├── percent-encoding v2.3.1
│ ├── pin-project-lite v0.2.16
│ ├── rustversion v1.0.19 (proc-macro)
│ ├── serde v1.0.217 (*)
│ ├── serde_json v1.0.138 (*)
│ ├── serde_path_to_error v0.1.16
│ │ ├── itoa v1.0.14
│ │ └── serde v1.0.217 (*)
│ ├── serde_urlencoded v0.7.1
│ │ ├── form_urlencoded v1.2.1 (*)
│ │ ├── itoa v1.0.14
│ │ ├── ryu v1.0.19
│ │ └── serde v1.0.217 (*)
│ ├── sync_wrapper v1.0.2
│ ├── tokio v1.43.0 (*)
│ ├── 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.43.0 (*)
│ │ ├── 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-login v0.17.0
│ ├── async-trait v0.1.86 (proc-macro) (*)
│ ├── axum v0.8.1 (*)
│ ├── form_urlencoded v1.2.1 (*)
│ ├── serde v1.0.217 (*)
│ ├── subtle v2.6.1
│ ├── thiserror v2.0.11
│ │ └── thiserror-impl v2.0.11 (proc-macro)
│ │ ├── proc-macro2 v1.0.93 (*)
│ │ ├── quote v1.0.38 (*)
│ │ └── syn v2.0.98 (*)
│ ├── tower-cookies v0.11.0
│ │ ├── axum-core v0.5.0 (*)
│ │ ├── cookie v0.18.1
│ │ │ ├── percent-encoding v2.3.1
│ │ │ └── time v0.3.37 (*)
│ │ │ [build-dependencies]
│ │ │ └── version_check v0.9.5
│ │ ├── futures-util v0.3.31 (*)
│ │ ├── http v1.2.0 (*)
│ │ ├── parking_lot v0.12.3
│ │ │ ├── lock_api v0.4.12
│ │ │ │ ├── scopeguard v1.2.0
│ │ │ │ └── serde v1.0.217 (*)
│ │ │ │ [build-dependencies]
│ │ │ │ └── autocfg v1.4.0
│ │ │ └── parking_lot_core v0.9.10
│ │ │ ├── cfg-if v1.0.0
│ │ │ ├── libc v0.2.169
│ │ │ └── smallvec v1.14.0
│ │ ├── pin-project-lite v0.2.16
│ │ ├── tower-layer v0.3.3
│ │ └── tower-service v0.3.3
│ ├── tower-layer v0.3.3
│ ├── tower-service v0.3.3
│ ├── tower-sessions v0.14.0
│ │ ├── async-trait v0.1.86 (proc-macro) (*)
│ │ ├── http v1.2.0 (*)
│ │ ├── time v0.3.37 (*)
│ │ ├── tokio v1.43.0 (*)
│ │ ├── tower-cookies v0.11.0 (*)
│ │ ├── tower-layer v0.3.3
│ │ ├── tower-service v0.3.3
│ │ ├── tower-sessions-core v0.14.0
│ │ │ ├── async-trait v0.1.86 (proc-macro) (*)
│ │ │ ├── axum-core v0.5.0 (*)
│ │ │ ├── base64 v0.22.1
│ │ │ ├── futures v0.3.31
│ │ │ │ ├── futures-channel v0.3.31 (*)
│ │ │ │ ├── futures-core v0.3.31
│ │ │ │ ├── futures-executor v0.3.31
│ │ │ │ │ ├── futures-core v0.3.31
│ │ │ │ │ ├── futures-task v0.3.31
│ │ │ │ │ └── futures-util v0.3.31 (*)
│ │ │ │ ├── futures-io v0.3.31
│ │ │ │ ├── futures-sink v0.3.31
│ │ │ │ ├── futures-task v0.3.31
│ │ │ │ └── futures-util v0.3.31 (*)
│ │ │ ├── http v1.2.0 (*)
│ │ │ ├── parking_lot v0.12.3 (*)
│ │ │ ├── rand v0.8.5
│ │ │ │ ├── libc v0.2.169
│ │ │ │ ├── rand_chacha v0.3.1
│ │ │ │ │ ├── ppv-lite86 v0.2.20
│ │ │ │ │ │ └── zerocopy v0.7.35
│ │ │ │ │ │ ├── byteorder v1.5.0
│ │ │ │ │ │ └── zerocopy-derive v0.7.35 (proc-macro)
│ │ │ │ │ │ ├── proc-macro2 v1.0.93 (*)
│ │ │ │ │ │ ├── quote v1.0.38 (*)
│ │ │ │ │ │ └── syn v2.0.98 (*)
│ │ │ │ │ └── rand_core v0.6.4 (*)
│ │ │ │ └── rand_core v0.6.4 (*)
│ │ │ ├── serde v1.0.217 (*)
│ │ │ ├── serde_json v1.0.138 (*)
│ │ │ ├── thiserror v2.0.11 (*)
│ │ │ ├── time v0.3.37 (*)
│ │ │ ├── tokio v1.43.0 (*)
│ │ │ └── tracing v0.1.41 (*)
│ │ ├── tower-sessions-memory-store v0.14.0
│ │ │ ├── async-trait v0.1.86 (proc-macro) (*)
│ │ │ ├── time v0.3.37 (*)
│ │ │ ├── tokio v1.43.0 (*)
│ │ │ └── tower-sessions-core v0.14.0 (*)
│ │ └── tracing v0.1.41 (*)
│ ├── tracing v0.1.41 (*)
│ └── urlencoding v2.1.3
├── axum-template v3.0.0
│ ├── axum v0.8.1 (*)
│ ├── handlebars v6.3.1
│ │ ├── derive_builder v0.20.2
│ │ │ └── derive_builder_macro v0.20.2 (proc-macro)
│ │ │ ├── derive_builder_core v0.20.2
│ │ │ │ ├── darling v0.20.10
│ │ │ │ │ ├── darling_core v0.20.10
│ │ │ │ │ │ ├── fnv v1.0.7
│ │ │ │ │ │ ├── ident_case v1.0.1
│ │ │ │ │ │ ├── proc-macro2 v1.0.93 (*)
│ │ │ │ │ │ ├── quote v1.0.38 (*)
│ │ │ │ │ │ ├── strsim v0.11.1
│ │ │ │ │ │ └── syn v2.0.98 (*)
│ │ │ │ │ └── darling_macro v0.20.10 (proc-macro)
│ │ │ │ │ ├── darling_core v0.20.10 (*)
│ │ │ │ │ ├── quote v1.0.38 (*)
│ │ │ │ │ └── syn v2.0.98 (*)
│ │ │ │ ├── proc-macro2 v1.0.93 (*)
│ │ │ │ ├── quote v1.0.38 (*)
│ │ │ │ └── syn v2.0.98 (*)
│ │ │ └── syn v2.0.98 (*)
│ │ ├── log v0.4.25
│ │ ├── num-order v1.2.0
│ │ │ └── num-modular v0.6.1
│ │ ├── pest v2.7.15
│ │ │ ├── memchr v2.7.4
│ │ │ ├── thiserror v2.0.11 (*)
│ │ │ └── ucd-trie v0.1.7
│ │ ├── pest_derive v2.7.15 (proc-macro)
│ │ │ ├── pest v2.7.15 (*)
│ │ │ └── pest_generator v2.7.15
│ │ │ ├── pest v2.7.15 (*)
│ │ │ ├── pest_meta v2.7.15
│ │ │ │ ├── once_cell v1.20.3
│ │ │ │ └── pest v2.7.15 (*)
│ │ │ │ [build-dependencies]
│ │ │ │ └── sha2 v0.10.8 (*)
│ │ │ ├── proc-macro2 v1.0.93 (*)
│ │ │ ├── quote v1.0.38 (*)
│ │ │ └── syn v2.0.98 (*)
│ │ ├── rust-embed v8.5.0
│ │ │ ├── axum v0.7.9
│ │ │ │ ├── async-trait v0.1.86 (proc-macro) (*)
│ │ │ │ ├── axum-core v0.4.5
│ │ │ │ │ ├── async-trait v0.1.86 (proc-macro) (*)
│ │ │ │ │ ├── bytes v1.10.0
│ │ │ │ │ ├── futures-util v0.3.31 (*)
│ │ │ │ │ ├── http v1.2.0 (*)
│ │ │ │ │ ├── http-body v1.0.1 (*)
│ │ │ │ │ ├── http-body-util v0.1.2 (*)
│ │ │ │ │ ├── mime v0.3.17
│ │ │ │ │ ├── pin-project-lite v0.2.16
│ │ │ │ │ ├── rustversion v1.0.19 (proc-macro)
│ │ │ │ │ ├── sync_wrapper v1.0.2
│ │ │ │ │ ├── tower-layer v0.3.3
│ │ │ │ │ └── tower-service v0.3.3
│ │ │ │ ├── bytes v1.10.0
│ │ │ │ ├── futures-util v0.3.31 (*)
│ │ │ │ ├── http v1.2.0 (*)
│ │ │ │ ├── http-body v1.0.1 (*)
│ │ │ │ ├── http-body-util v0.1.2 (*)
│ │ │ │ ├── hyper v1.6.0 (*)
│ │ │ │ ├── hyper-util v0.1.10 (*)
│ │ │ │ ├── itoa v1.0.14
│ │ │ │ ├── matchit v0.7.3
│ │ │ │ ├── memchr v2.7.4
│ │ │ │ ├── mime v0.3.17
│ │ │ │ ├── percent-encoding v2.3.1
│ │ │ │ ├── pin-project-lite v0.2.16
│ │ │ │ ├── rustversion v1.0.19 (proc-macro)
│ │ │ │ ├── serde v1.0.217 (*)
│ │ │ │ ├── sync_wrapper v1.0.2
│ │ │ │ ├── tokio v1.43.0 (*)
│ │ │ │ ├── tower v0.5.2 (*)
│ │ │ │ ├── tower-layer v0.3.3
│ │ │ │ └── tower-service v0.3.3
│ │ │ ├── mime_guess v2.0.5
│ │ │ │ ├── mime v0.3.17
│ │ │ │ └── unicase v2.8.1
│ │ │ │ [build-dependencies]
│ │ │ │ └── unicase v2.8.1
│ │ │ ├── rust-embed-impl v8.5.0 (proc-macro)
│ │ │ │ ├── proc-macro2 v1.0.93 (*)
│ │ │ │ ├── quote v1.0.38 (*)
│ │ │ │ ├── rust-embed-utils v8.5.0
│ │ │ │ │ ├── globset v0.4.15
│ │ │ │ │ │ ├── aho-corasick v1.1.3
│ │ │ │ │ │ │ └── memchr v2.7.4
│ │ │ │ │ │ ├── bstr v1.11.3
│ │ │ │ │ │ │ └── memchr v2.7.4
│ │ │ │ │ │ ├── log v0.4.25
│ │ │ │ │ │ ├── regex-automata v0.4.9
│ │ │ │ │ │ │ ├── aho-corasick v1.1.3 (*)
│ │ │ │ │ │ │ ├── memchr v2.7.4
│ │ │ │ │ │ │ └── regex-syntax v0.8.5
│ │ │ │ │ │ └── regex-syntax v0.8.5
│ │ │ │ │ ├── mime_guess v2.0.5 (*)
│ │ │ │ │ ├── sha2 v0.10.8 (*)
│ │ │ │ │ └── walkdir v2.5.0
│ │ │ │ │ └── same-file v1.0.6
│ │ │ │ ├── syn v2.0.98 (*)
│ │ │ │ └── walkdir v2.5.0 (*)
│ │ │ ├── rust-embed-utils v8.5.0 (*)
│ │ │ ├── tokio v1.43.0 (*)
│ │ │ └── walkdir v2.5.0 (*)
│ │ ├── serde v1.0.217 (*)
│ │ ├── serde_json v1.0.138 (*)
│ │ ├── thiserror v2.0.11 (*)
│ │ └── walkdir v2.5.0 (*)
│ ├── serde v1.0.217 (*)
│ └── thiserror v2.0.11 (*)
├── base64 v0.22.1
├── dotenvy v0.15.7
├── futures v0.3.31 (*)
├── git-version v0.3.9
│ └── git-version-macro v0.3.9 (proc-macro)
│ ├── proc-macro2 v1.0.93 (*)
│ ├── quote v1.0.38 (*)
│ └── syn v2.0.98 (*)
├── handlebars v6.3.1 (*)
├── itertools v0.14.0
│ └── either v1.13.0 (*)
├── mime_guess v2.0.5 (*)
├── password-hash v0.5.0
│ ├── base64ct v1.6.0
│ ├── rand_core v0.6.4 (*)
│ └── subtle v2.6.1
├── rand v0.9.0
│ ├── rand_chacha v0.9.0
│ │ ├── ppv-lite86 v0.2.20 (*)
│ │ └── rand_core v0.9.1
│ │ ├── getrandom v0.3.1
│ │ │ ├── cfg-if v1.0.0
│ │ │ └── libc v0.2.169
│ │ └── zerocopy v0.8.18
│ ├── rand_core v0.9.1 (*)
│ └── zerocopy v0.8.18
├── rmp-serde v1.3.0
│ ├── byteorder v1.5.0
│ ├── rmp v0.8.14
│ │ ├── byteorder v1.5.0
│ │ ├── num-traits v0.2.19 (*)
│ │ └── paste v1.0.15 (proc-macro)
│ └── serde v1.0.217 (*)
├── rust-embed v8.5.0 (*)
├── rust_decimal v1.36.0
│ ├── arrayvec v0.7.6
│ ├── num-traits v0.2.19 (*)
│ └── serde v1.0.217 (*)
├── rustls v0.23.23
│ ├── aws-lc-rs v1.12.2
│ │ ├── aws-lc-sys v0.25.1
│ │ │ └── paste v1.0.15 (proc-macro)
│ │ │ [build-dependencies]
│ │ │ ├── cc v1.2.14 (*)
│ │ │ ├── cmake v0.1.54
│ │ │ │ └── cc v1.2.14 (*)
│ │ │ ├── dunce v1.0.5
│ │ │ └── fs_extra v1.3.0
│ │ ├── paste v1.0.15 (proc-macro)
│ │ └── zeroize v1.8.1
│ ├── log v0.4.25
│ ├── once_cell v1.20.3
│ ├── ring v0.17.9 (*)
│ ├── rustls-pki-types v1.11.0
│ ├── rustls-webpki v0.102.8
│ │ ├── aws-lc-rs v1.12.2 (*)
│ │ ├── ring v0.17.9 (*)
│ │ ├── rustls-pki-types v1.11.0
│ │ └── untrusted v0.9.0
│ ├── subtle v2.6.1
│ └── zeroize v1.8.1
├── scrypt v0.11.0
│ ├── password-hash v0.5.0 (*)
│ ├── pbkdf2 v0.12.2
│ │ ├── digest v0.10.7 (*)
│ │ └── hmac v0.12.1 (*)
│ ├── salsa20 v0.10.2
│ │ └── cipher v0.4.4
│ │ ├── crypto-common v0.1.6 (*)
│ │ └── inout v0.1.3
│ │ └── generic-array v0.14.7 (*)
│ └── sha2 v0.10.8 (*)
├── secrecy v0.10.3
│ └── zeroize v1.8.1
├── serde v1.0.217 (*)
├── serde_json v1.0.138 (*)
├── sqlx v0.8.3
│ ├── sqlx-core v0.8.3
│ │ ├── bytes v1.10.0
│ │ ├── crc v3.2.1 (*)
│ │ ├── crossbeam-queue v0.3.12
│ │ │ └── crossbeam-utils v0.8.21
│ │ ├── either v1.13.0 (*)
│ │ ├── event-listener v5.4.0
│ │ │ ├── concurrent-queue v2.5.0
│ │ │ │ └── crossbeam-utils v0.8.21
│ │ │ ├── parking v2.2.1
│ │ │ └── pin-project-lite v0.2.16
│ │ ├── futures-core v0.3.31
│ │ ├── futures-intrusive v0.5.0
│ │ │ ├── futures-core v0.3.31
│ │ │ ├── lock_api v0.4.12 (*)
│ │ │ └── parking_lot v0.12.3 (*)
│ │ ├── futures-io v0.3.31
│ │ ├── futures-util v0.3.31 (*)
│ │ ├── hashbrown v0.15.2 (*)
│ │ ├── hashlink v0.10.0
│ │ │ └── hashbrown v0.15.2 (*)
│ │ ├── indexmap v2.7.1 (*)
│ │ ├── log v0.4.25
│ │ ├── memchr v2.7.4
│ │ ├── once_cell v1.20.3
│ │ ├── percent-encoding v2.3.1
│ │ ├── rustls v0.23.23 (*)
│ │ ├── rustls-pemfile v2.2.0
│ │ │ └── rustls-pki-types v1.11.0
│ │ ├── serde v1.0.217 (*)
│ │ ├── serde_json v1.0.138 (*)
│ │ ├── sha2 v0.10.8 (*)
│ │ ├── smallvec v1.14.0
│ │ ├── thiserror v2.0.11 (*)
│ │ ├── time v0.3.37 (*)
│ │ ├── tokio v1.43.0 (*)
│ │ ├── tokio-stream v0.1.17
│ │ │ ├── futures-core v0.3.31
│ │ │ ├── pin-project-lite v0.2.16
│ │ │ └── tokio v1.43.0 (*)
│ │ ├── tracing v0.1.41 (*)
│ │ ├── url v2.5.4 (*)
│ │ └── webpki-roots v0.26.8
│ │ └── rustls-pki-types v1.11.0
│ ├── sqlx-macros v0.8.3 (proc-macro)
│ │ ├── proc-macro2 v1.0.93 (*)
│ │ ├── quote v1.0.38 (*)
│ │ ├── sqlx-core v0.8.3 (*)
│ │ ├── sqlx-macros-core v0.8.3
│ │ │ ├── dotenvy v0.15.7
│ │ │ ├── either v1.13.0 (*)
│ │ │ ├── heck v0.5.0
│ │ │ ├── hex v0.4.3
│ │ │ ├── once_cell v1.20.3
│ │ │ ├── proc-macro2 v1.0.93 (*)
│ │ │ ├── quote v1.0.38 (*)
│ │ │ ├── serde v1.0.217 (*)
│ │ │ ├── serde_json v1.0.138 (*)
│ │ │ ├── sha2 v0.10.8 (*)
│ │ │ ├── sqlx-core v0.8.3 (*)
│ │ │ ├── sqlx-sqlite v0.8.3
│ │ │ │ ├── atoi v2.0.0