auditkit 0.1.1 → 0.1.4
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/Cargo.lock +501 -6
- package/Cargo.toml +3 -1
- package/README.md +2 -4
- package/package.json +2 -1
- package/scripts/auditkit/ak +8 -5
- package/scripts/auditkit/lighthouse-runner.mjs +148 -20
- package/scripts/auditkit/lighthouse.test.mjs +17 -0
- package/scripts/auditkit/postinstall.mjs +71 -0
- package/src/html_check.rs +113 -5
- package/src/lighthouse.rs +8 -5
- package/src/main.rs +77 -49
- package/src/report.rs +58 -5
- package/src/security.rs +94 -10
- package/src/templates.rs +24 -75
- package/src/ui.rs +533 -23
- package/src/workspace.rs +75 -0
package/Cargo.lock
CHANGED
|
@@ -11,6 +11,12 @@ dependencies = [
|
|
|
11
11
|
"memchr",
|
|
12
12
|
]
|
|
13
13
|
|
|
14
|
+
[[package]]
|
|
15
|
+
name = "allocator-api2"
|
|
16
|
+
version = "0.2.21"
|
|
17
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
18
|
+
checksum = "683d7910e743518b0e34f1186f92494becacb047c7b6bf616c96772180fef923"
|
|
19
|
+
|
|
14
20
|
[[package]]
|
|
15
21
|
name = "android_system_properties"
|
|
16
22
|
version = "0.1.5"
|
|
@@ -84,13 +90,15 @@ checksum = "1505bd5d3d116872e7271a6d4e16d81d0c8570876c8de68093a09ac269d8aac0"
|
|
|
84
90
|
|
|
85
91
|
[[package]]
|
|
86
92
|
name = "auditkit"
|
|
87
|
-
version = "0.1.
|
|
93
|
+
version = "0.1.4"
|
|
88
94
|
dependencies = [
|
|
89
95
|
"anyhow",
|
|
90
96
|
"chrono",
|
|
91
97
|
"clap",
|
|
92
98
|
"colored",
|
|
99
|
+
"crossterm",
|
|
93
100
|
"indicatif",
|
|
101
|
+
"ratatui",
|
|
94
102
|
"regex",
|
|
95
103
|
"reqwest",
|
|
96
104
|
"serde_json",
|
|
@@ -112,9 +120,9 @@ checksum = "72b3254f16251a8381aa12e40e3c4d2f0199f8c6508fbecb9d91f575e0fbb8c6"
|
|
|
112
120
|
|
|
113
121
|
[[package]]
|
|
114
122
|
name = "bitflags"
|
|
115
|
-
version = "2.
|
|
123
|
+
version = "2.12.1"
|
|
116
124
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
117
|
-
checksum = "
|
|
125
|
+
checksum = "84d7ced0ae9557296835c32bf1b1e02b44c746701f898460fb000d7eaa84f00a"
|
|
118
126
|
|
|
119
127
|
[[package]]
|
|
120
128
|
name = "bumpalo"
|
|
@@ -128,6 +136,15 @@ version = "1.11.1"
|
|
|
128
136
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
129
137
|
checksum = "1e748733b7cbc798e1434b6ac524f0c1ff2ab456fe201501e6497c8417a4fc33"
|
|
130
138
|
|
|
139
|
+
[[package]]
|
|
140
|
+
name = "castaway"
|
|
141
|
+
version = "0.2.4"
|
|
142
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
143
|
+
checksum = "dec551ab6e7578819132c713a93c022a05d60159dc86e7a7050223577484c55a"
|
|
144
|
+
dependencies = [
|
|
145
|
+
"rustversion",
|
|
146
|
+
]
|
|
147
|
+
|
|
131
148
|
[[package]]
|
|
132
149
|
name = "cc"
|
|
133
150
|
version = "1.2.63"
|
|
@@ -216,6 +233,20 @@ dependencies = [
|
|
|
216
233
|
"windows-sys 0.61.2",
|
|
217
234
|
]
|
|
218
235
|
|
|
236
|
+
[[package]]
|
|
237
|
+
name = "compact_str"
|
|
238
|
+
version = "0.9.1"
|
|
239
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
240
|
+
checksum = "9dfdd1c2274d9aa354115b09dc9a901d6c5576818cdf70d14cae2bdb47df00ab"
|
|
241
|
+
dependencies = [
|
|
242
|
+
"castaway",
|
|
243
|
+
"cfg-if",
|
|
244
|
+
"itoa",
|
|
245
|
+
"rustversion",
|
|
246
|
+
"ryu",
|
|
247
|
+
"static_assertions",
|
|
248
|
+
]
|
|
249
|
+
|
|
219
250
|
[[package]]
|
|
220
251
|
name = "console"
|
|
221
252
|
version = "0.16.3"
|
|
@@ -228,12 +259,113 @@ dependencies = [
|
|
|
228
259
|
"windows-sys 0.61.2",
|
|
229
260
|
]
|
|
230
261
|
|
|
262
|
+
[[package]]
|
|
263
|
+
name = "convert_case"
|
|
264
|
+
version = "0.10.0"
|
|
265
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
266
|
+
checksum = "633458d4ef8c78b72454de2d54fd6ab2e60f9e02be22f3c6104cdc8a4e0fceb9"
|
|
267
|
+
dependencies = [
|
|
268
|
+
"unicode-segmentation",
|
|
269
|
+
]
|
|
270
|
+
|
|
231
271
|
[[package]]
|
|
232
272
|
name = "core-foundation-sys"
|
|
233
273
|
version = "0.8.7"
|
|
234
274
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
235
275
|
checksum = "773648b94d0e5d620f64f280777445740e61fe701025087ec8b57f45c791888b"
|
|
236
276
|
|
|
277
|
+
[[package]]
|
|
278
|
+
name = "crossterm"
|
|
279
|
+
version = "0.29.0"
|
|
280
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
281
|
+
checksum = "d8b9f2e4c67f833b660cdb0a3523065869fb35570177239812ed4c905aeff87b"
|
|
282
|
+
dependencies = [
|
|
283
|
+
"bitflags",
|
|
284
|
+
"crossterm_winapi",
|
|
285
|
+
"derive_more",
|
|
286
|
+
"document-features",
|
|
287
|
+
"mio",
|
|
288
|
+
"parking_lot",
|
|
289
|
+
"rustix",
|
|
290
|
+
"signal-hook",
|
|
291
|
+
"signal-hook-mio",
|
|
292
|
+
"winapi",
|
|
293
|
+
]
|
|
294
|
+
|
|
295
|
+
[[package]]
|
|
296
|
+
name = "crossterm_winapi"
|
|
297
|
+
version = "0.9.1"
|
|
298
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
299
|
+
checksum = "acdd7c62a3665c7f6830a51635d9ac9b23ed385797f70a83bb8bafe9c572ab2b"
|
|
300
|
+
dependencies = [
|
|
301
|
+
"winapi",
|
|
302
|
+
]
|
|
303
|
+
|
|
304
|
+
[[package]]
|
|
305
|
+
name = "darling"
|
|
306
|
+
version = "0.23.0"
|
|
307
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
308
|
+
checksum = "25ae13da2f202d56bd7f91c25fba009e7717a1e4a1cc98a76d844b65ae912e9d"
|
|
309
|
+
dependencies = [
|
|
310
|
+
"darling_core",
|
|
311
|
+
"darling_macro",
|
|
312
|
+
]
|
|
313
|
+
|
|
314
|
+
[[package]]
|
|
315
|
+
name = "darling_core"
|
|
316
|
+
version = "0.23.0"
|
|
317
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
318
|
+
checksum = "9865a50f7c335f53564bb694ef660825eb8610e0a53d3e11bf1b0d3df31e03b0"
|
|
319
|
+
dependencies = [
|
|
320
|
+
"ident_case",
|
|
321
|
+
"proc-macro2",
|
|
322
|
+
"quote",
|
|
323
|
+
"strsim",
|
|
324
|
+
"syn",
|
|
325
|
+
]
|
|
326
|
+
|
|
327
|
+
[[package]]
|
|
328
|
+
name = "darling_macro"
|
|
329
|
+
version = "0.23.0"
|
|
330
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
331
|
+
checksum = "ac3984ec7bd6cfa798e62b4a642426a5be0e68f9401cfc2a01e3fa9ea2fcdb8d"
|
|
332
|
+
dependencies = [
|
|
333
|
+
"darling_core",
|
|
334
|
+
"quote",
|
|
335
|
+
"syn",
|
|
336
|
+
]
|
|
337
|
+
|
|
338
|
+
[[package]]
|
|
339
|
+
name = "deranged"
|
|
340
|
+
version = "0.5.8"
|
|
341
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
342
|
+
checksum = "7cd812cc2bc1d69d4764bd80df88b4317eaef9e773c75226407d9bc0876b211c"
|
|
343
|
+
dependencies = [
|
|
344
|
+
"powerfmt",
|
|
345
|
+
]
|
|
346
|
+
|
|
347
|
+
[[package]]
|
|
348
|
+
name = "derive_more"
|
|
349
|
+
version = "2.1.1"
|
|
350
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
351
|
+
checksum = "d751e9e49156b02b44f9c1815bcb94b984cdcc4396ecc32521c739452808b134"
|
|
352
|
+
dependencies = [
|
|
353
|
+
"derive_more-impl",
|
|
354
|
+
]
|
|
355
|
+
|
|
356
|
+
[[package]]
|
|
357
|
+
name = "derive_more-impl"
|
|
358
|
+
version = "2.1.1"
|
|
359
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
360
|
+
checksum = "799a97264921d8623a957f6c3b9011f3b5492f557bbb7a5a19b7fa6d06ba8dcb"
|
|
361
|
+
dependencies = [
|
|
362
|
+
"convert_case",
|
|
363
|
+
"proc-macro2",
|
|
364
|
+
"quote",
|
|
365
|
+
"rustc_version",
|
|
366
|
+
"syn",
|
|
367
|
+
]
|
|
368
|
+
|
|
237
369
|
[[package]]
|
|
238
370
|
name = "displaydoc"
|
|
239
371
|
version = "0.2.6"
|
|
@@ -245,6 +377,21 @@ dependencies = [
|
|
|
245
377
|
"syn",
|
|
246
378
|
]
|
|
247
379
|
|
|
380
|
+
[[package]]
|
|
381
|
+
name = "document-features"
|
|
382
|
+
version = "0.2.12"
|
|
383
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
384
|
+
checksum = "d4b8a88685455ed29a21542a33abd9cb6510b6b129abadabdcef0f4c55bc8f61"
|
|
385
|
+
dependencies = [
|
|
386
|
+
"litrs",
|
|
387
|
+
]
|
|
388
|
+
|
|
389
|
+
[[package]]
|
|
390
|
+
name = "either"
|
|
391
|
+
version = "1.16.0"
|
|
392
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
393
|
+
checksum = "91622ff5e7162018101f2fea40d6ebf4a78bbe5a49736a2020649edf9693679e"
|
|
394
|
+
|
|
248
395
|
[[package]]
|
|
249
396
|
name = "encode_unicode"
|
|
250
397
|
version = "1.0.0"
|
|
@@ -285,6 +432,12 @@ version = "0.1.5"
|
|
|
285
432
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
286
433
|
checksum = "d9c4f5dac5e15c24eb999c26181a6ca40b39fe946cbe4c263c7209467bc83af2"
|
|
287
434
|
|
|
435
|
+
[[package]]
|
|
436
|
+
name = "foldhash"
|
|
437
|
+
version = "0.2.0"
|
|
438
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
439
|
+
checksum = "77ce24cb58228fbb8aa041425bb1050850ac19177686ea6e0f41a70416f56fdb"
|
|
440
|
+
|
|
288
441
|
[[package]]
|
|
289
442
|
name = "form_urlencoded"
|
|
290
443
|
version = "1.2.2"
|
|
@@ -389,7 +542,18 @@ version = "0.15.5"
|
|
|
389
542
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
390
543
|
checksum = "9229cfe53dfd69f0609a49f65461bd93001ea1ef889cd5529dd176593f5338a1"
|
|
391
544
|
dependencies = [
|
|
392
|
-
"foldhash",
|
|
545
|
+
"foldhash 0.1.5",
|
|
546
|
+
]
|
|
547
|
+
|
|
548
|
+
[[package]]
|
|
549
|
+
name = "hashbrown"
|
|
550
|
+
version = "0.16.1"
|
|
551
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
552
|
+
checksum = "841d1cc9bed7f9236f321df977030373f4a4163ae1a7dbfe1a51a2c1a51d9100"
|
|
553
|
+
dependencies = [
|
|
554
|
+
"allocator-api2",
|
|
555
|
+
"equivalent",
|
|
556
|
+
"foldhash 0.2.0",
|
|
393
557
|
]
|
|
394
558
|
|
|
395
559
|
[[package]]
|
|
@@ -614,6 +778,12 @@ version = "2.3.0"
|
|
|
614
778
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
615
779
|
checksum = "3d3067d79b975e8844ca9eb072e16b31c3c1c36928edf9c6789548c524d0d954"
|
|
616
780
|
|
|
781
|
+
[[package]]
|
|
782
|
+
name = "ident_case"
|
|
783
|
+
version = "1.0.1"
|
|
784
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
785
|
+
checksum = "b9e0384b61958566e926dc50660321d12159025e767c18e043daf26b70104c39"
|
|
786
|
+
|
|
617
787
|
[[package]]
|
|
618
788
|
name = "idna"
|
|
619
789
|
version = "1.1.0"
|
|
@@ -660,6 +830,28 @@ dependencies = [
|
|
|
660
830
|
"web-time",
|
|
661
831
|
]
|
|
662
832
|
|
|
833
|
+
[[package]]
|
|
834
|
+
name = "indoc"
|
|
835
|
+
version = "2.0.7"
|
|
836
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
837
|
+
checksum = "79cf5c93f93228cf8efb3ba362535fb11199ac548a09ce117c9b1adc3030d706"
|
|
838
|
+
dependencies = [
|
|
839
|
+
"rustversion",
|
|
840
|
+
]
|
|
841
|
+
|
|
842
|
+
[[package]]
|
|
843
|
+
name = "instability"
|
|
844
|
+
version = "0.3.12"
|
|
845
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
846
|
+
checksum = "5eb2d60ef19920a3a9193c3e371f726ec1dafc045dac788d0fb3704272458971"
|
|
847
|
+
dependencies = [
|
|
848
|
+
"darling",
|
|
849
|
+
"indoc",
|
|
850
|
+
"proc-macro2",
|
|
851
|
+
"quote",
|
|
852
|
+
"syn",
|
|
853
|
+
]
|
|
854
|
+
|
|
663
855
|
[[package]]
|
|
664
856
|
name = "ipnet"
|
|
665
857
|
version = "2.12.0"
|
|
@@ -672,6 +864,15 @@ version = "1.70.2"
|
|
|
672
864
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
673
865
|
checksum = "a6cb138bb79a146c1bd460005623e142ef0181e3d0219cb493e02f7d08a35695"
|
|
674
866
|
|
|
867
|
+
[[package]]
|
|
868
|
+
name = "itertools"
|
|
869
|
+
version = "0.14.0"
|
|
870
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
871
|
+
checksum = "2b192c782037fadd9cfa75548310488aabdbf3d2da73885b31bd0abd03351285"
|
|
872
|
+
dependencies = [
|
|
873
|
+
"either",
|
|
874
|
+
]
|
|
875
|
+
|
|
675
876
|
[[package]]
|
|
676
877
|
name = "itoa"
|
|
677
878
|
version = "1.0.18"
|
|
@@ -690,6 +891,17 @@ dependencies = [
|
|
|
690
891
|
"wasm-bindgen",
|
|
691
892
|
]
|
|
692
893
|
|
|
894
|
+
[[package]]
|
|
895
|
+
name = "kasuari"
|
|
896
|
+
version = "0.4.12"
|
|
897
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
898
|
+
checksum = "bde5057d6143cc94e861d90f591b9303d6716c6b9602309150bd068853c10899"
|
|
899
|
+
dependencies = [
|
|
900
|
+
"hashbrown 0.16.1",
|
|
901
|
+
"portable-atomic",
|
|
902
|
+
"thiserror",
|
|
903
|
+
]
|
|
904
|
+
|
|
693
905
|
[[package]]
|
|
694
906
|
name = "leb128fmt"
|
|
695
907
|
version = "0.1.0"
|
|
@@ -702,6 +914,15 @@ version = "0.2.186"
|
|
|
702
914
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
703
915
|
checksum = "68ab91017fe16c622486840e4c83c9a37afeff978bd239b5293d61ece587de66"
|
|
704
916
|
|
|
917
|
+
[[package]]
|
|
918
|
+
name = "line-clipping"
|
|
919
|
+
version = "0.3.7"
|
|
920
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
921
|
+
checksum = "3f50e8f47623268b5407192d26876c4d7f89d686ca130fdc53bced4814cd29f8"
|
|
922
|
+
dependencies = [
|
|
923
|
+
"bitflags",
|
|
924
|
+
]
|
|
925
|
+
|
|
705
926
|
[[package]]
|
|
706
927
|
name = "linux-raw-sys"
|
|
707
928
|
version = "0.12.1"
|
|
@@ -714,11 +935,35 @@ version = "0.8.2"
|
|
|
714
935
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
715
936
|
checksum = "92daf443525c4cce67b150400bc2316076100ce0b3686209eb8cf3c31612e6f0"
|
|
716
937
|
|
|
938
|
+
[[package]]
|
|
939
|
+
name = "litrs"
|
|
940
|
+
version = "1.0.0"
|
|
941
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
942
|
+
checksum = "11d3d7f243d5c5a8b9bb5d6dd2b1602c0cb0b9db1621bafc7ed66e35ff9fe092"
|
|
943
|
+
|
|
944
|
+
[[package]]
|
|
945
|
+
name = "lock_api"
|
|
946
|
+
version = "0.4.14"
|
|
947
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
948
|
+
checksum = "224399e74b87b5f3557511d98dff8b14089b3dadafcab6bb93eab67d3aace965"
|
|
949
|
+
dependencies = [
|
|
950
|
+
"scopeguard",
|
|
951
|
+
]
|
|
952
|
+
|
|
717
953
|
[[package]]
|
|
718
954
|
name = "log"
|
|
719
|
-
version = "0.4.
|
|
955
|
+
version = "0.4.31"
|
|
720
956
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
721
|
-
checksum = "
|
|
957
|
+
checksum = "113b30b4cd05f7c06868fdb2854f66a7b9fece9a48425351cd532e810d74024f"
|
|
958
|
+
|
|
959
|
+
[[package]]
|
|
960
|
+
name = "lru"
|
|
961
|
+
version = "0.16.4"
|
|
962
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
963
|
+
checksum = "7f66e8d5d03f609abc3a39e6f08e4164ebf1447a732906d39eb9b99b7919ef39"
|
|
964
|
+
dependencies = [
|
|
965
|
+
"hashbrown 0.16.1",
|
|
966
|
+
]
|
|
722
967
|
|
|
723
968
|
[[package]]
|
|
724
969
|
name = "lru-slab"
|
|
@@ -739,10 +984,17 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
739
984
|
checksum = "02bd0af71c67b473010cbbc60715ee815645a4dc942899111f494b4b737d6fda"
|
|
740
985
|
dependencies = [
|
|
741
986
|
"libc",
|
|
987
|
+
"log",
|
|
742
988
|
"wasi",
|
|
743
989
|
"windows-sys 0.61.2",
|
|
744
990
|
]
|
|
745
991
|
|
|
992
|
+
[[package]]
|
|
993
|
+
name = "num-conv"
|
|
994
|
+
version = "0.2.2"
|
|
995
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
996
|
+
checksum = "521739c6d2bac4aa25192232afe6841231376b2b26d4d9fae5ecf8ca5772e441"
|
|
997
|
+
|
|
746
998
|
[[package]]
|
|
747
999
|
name = "num-traits"
|
|
748
1000
|
version = "0.2.19"
|
|
@@ -752,6 +1004,15 @@ dependencies = [
|
|
|
752
1004
|
"autocfg",
|
|
753
1005
|
]
|
|
754
1006
|
|
|
1007
|
+
[[package]]
|
|
1008
|
+
name = "num_threads"
|
|
1009
|
+
version = "0.1.7"
|
|
1010
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1011
|
+
checksum = "5c7398b9c8b70908f6371f47ed36737907c87c52af34c268fed0bf0ceb92ead9"
|
|
1012
|
+
dependencies = [
|
|
1013
|
+
"libc",
|
|
1014
|
+
]
|
|
1015
|
+
|
|
755
1016
|
[[package]]
|
|
756
1017
|
name = "once_cell"
|
|
757
1018
|
version = "1.21.4"
|
|
@@ -764,6 +1025,29 @@ version = "1.70.2"
|
|
|
764
1025
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
765
1026
|
checksum = "384b8ab6d37215f3c5301a95a4accb5d64aa607f1fcb26a11b5303878451b4fe"
|
|
766
1027
|
|
|
1028
|
+
[[package]]
|
|
1029
|
+
name = "parking_lot"
|
|
1030
|
+
version = "0.12.5"
|
|
1031
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1032
|
+
checksum = "93857453250e3077bd71ff98b6a65ea6621a19bb0f559a85248955ac12c45a1a"
|
|
1033
|
+
dependencies = [
|
|
1034
|
+
"lock_api",
|
|
1035
|
+
"parking_lot_core",
|
|
1036
|
+
]
|
|
1037
|
+
|
|
1038
|
+
[[package]]
|
|
1039
|
+
name = "parking_lot_core"
|
|
1040
|
+
version = "0.9.12"
|
|
1041
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1042
|
+
checksum = "2621685985a2ebf1c516881c026032ac7deafcda1a2c9b7850dc81e3dfcb64c1"
|
|
1043
|
+
dependencies = [
|
|
1044
|
+
"cfg-if",
|
|
1045
|
+
"libc",
|
|
1046
|
+
"redox_syscall",
|
|
1047
|
+
"smallvec",
|
|
1048
|
+
"windows-link",
|
|
1049
|
+
]
|
|
1050
|
+
|
|
767
1051
|
[[package]]
|
|
768
1052
|
name = "percent-encoding"
|
|
769
1053
|
version = "2.3.2"
|
|
@@ -791,6 +1075,12 @@ dependencies = [
|
|
|
791
1075
|
"zerovec",
|
|
792
1076
|
]
|
|
793
1077
|
|
|
1078
|
+
[[package]]
|
|
1079
|
+
name = "powerfmt"
|
|
1080
|
+
version = "0.2.0"
|
|
1081
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1082
|
+
checksum = "439ee305def115ba05938db6eb1644ff94165c5ab5e9420d1c1bcedbba909391"
|
|
1083
|
+
|
|
794
1084
|
[[package]]
|
|
795
1085
|
name = "ppv-lite86"
|
|
796
1086
|
version = "0.2.21"
|
|
@@ -924,6 +1214,78 @@ dependencies = [
|
|
|
924
1214
|
"getrandom 0.3.4",
|
|
925
1215
|
]
|
|
926
1216
|
|
|
1217
|
+
[[package]]
|
|
1218
|
+
name = "ratatui"
|
|
1219
|
+
version = "0.30.0"
|
|
1220
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1221
|
+
checksum = "d1ce67fb8ba4446454d1c8dbaeda0557ff5e94d39d5e5ed7f10a65eb4c8266bc"
|
|
1222
|
+
dependencies = [
|
|
1223
|
+
"instability",
|
|
1224
|
+
"ratatui-core",
|
|
1225
|
+
"ratatui-crossterm",
|
|
1226
|
+
"ratatui-widgets",
|
|
1227
|
+
]
|
|
1228
|
+
|
|
1229
|
+
[[package]]
|
|
1230
|
+
name = "ratatui-core"
|
|
1231
|
+
version = "0.1.0"
|
|
1232
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1233
|
+
checksum = "5ef8dea09a92caaf73bff7adb70b76162e5937524058a7e5bff37869cbbec293"
|
|
1234
|
+
dependencies = [
|
|
1235
|
+
"bitflags",
|
|
1236
|
+
"compact_str",
|
|
1237
|
+
"hashbrown 0.16.1",
|
|
1238
|
+
"indoc",
|
|
1239
|
+
"itertools",
|
|
1240
|
+
"kasuari",
|
|
1241
|
+
"lru",
|
|
1242
|
+
"strum",
|
|
1243
|
+
"thiserror",
|
|
1244
|
+
"unicode-segmentation",
|
|
1245
|
+
"unicode-truncate",
|
|
1246
|
+
"unicode-width",
|
|
1247
|
+
]
|
|
1248
|
+
|
|
1249
|
+
[[package]]
|
|
1250
|
+
name = "ratatui-crossterm"
|
|
1251
|
+
version = "0.1.0"
|
|
1252
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1253
|
+
checksum = "577c9b9f652b4c121fb25c6a391dd06406d3b092ba68827e6d2f09550edc54b3"
|
|
1254
|
+
dependencies = [
|
|
1255
|
+
"cfg-if",
|
|
1256
|
+
"crossterm",
|
|
1257
|
+
"instability",
|
|
1258
|
+
"ratatui-core",
|
|
1259
|
+
]
|
|
1260
|
+
|
|
1261
|
+
[[package]]
|
|
1262
|
+
name = "ratatui-widgets"
|
|
1263
|
+
version = "0.3.0"
|
|
1264
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1265
|
+
checksum = "d7dbfa023cd4e604c2553483820c5fe8aa9d71a42eea5aa77c6e7f35756612db"
|
|
1266
|
+
dependencies = [
|
|
1267
|
+
"bitflags",
|
|
1268
|
+
"hashbrown 0.16.1",
|
|
1269
|
+
"indoc",
|
|
1270
|
+
"instability",
|
|
1271
|
+
"itertools",
|
|
1272
|
+
"line-clipping",
|
|
1273
|
+
"ratatui-core",
|
|
1274
|
+
"strum",
|
|
1275
|
+
"time",
|
|
1276
|
+
"unicode-segmentation",
|
|
1277
|
+
"unicode-width",
|
|
1278
|
+
]
|
|
1279
|
+
|
|
1280
|
+
[[package]]
|
|
1281
|
+
name = "redox_syscall"
|
|
1282
|
+
version = "0.5.18"
|
|
1283
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1284
|
+
checksum = "ed2bf2547551a7053d6fdfafda3f938979645c44812fbfcda098faae3f1a362d"
|
|
1285
|
+
dependencies = [
|
|
1286
|
+
"bitflags",
|
|
1287
|
+
]
|
|
1288
|
+
|
|
927
1289
|
[[package]]
|
|
928
1290
|
name = "regex"
|
|
929
1291
|
version = "1.12.3"
|
|
@@ -1013,6 +1375,15 @@ version = "2.1.2"
|
|
|
1013
1375
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1014
1376
|
checksum = "94300abf3f1ae2e2b8ffb7b58043de3d399c73fa6f4b73826402a5c457614dbe"
|
|
1015
1377
|
|
|
1378
|
+
[[package]]
|
|
1379
|
+
name = "rustc_version"
|
|
1380
|
+
version = "0.4.1"
|
|
1381
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1382
|
+
checksum = "cfcb3a22ef46e85b45de6ee7e79d063319ebb6594faafcf1c225ea92ab6e9b92"
|
|
1383
|
+
dependencies = [
|
|
1384
|
+
"semver",
|
|
1385
|
+
]
|
|
1386
|
+
|
|
1016
1387
|
[[package]]
|
|
1017
1388
|
name = "rustix"
|
|
1018
1389
|
version = "1.1.4"
|
|
@@ -1073,6 +1444,12 @@ version = "1.0.23"
|
|
|
1073
1444
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1074
1445
|
checksum = "9774ba4a74de5f7b1c1451ed6cd5285a32eddb5cccb8cc655a4e50009e06477f"
|
|
1075
1446
|
|
|
1447
|
+
[[package]]
|
|
1448
|
+
name = "scopeguard"
|
|
1449
|
+
version = "1.2.0"
|
|
1450
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1451
|
+
checksum = "94143f37725109f92c262ed2cf5e59bce7498c01bcc1502d7b9afe439a4e9f49"
|
|
1452
|
+
|
|
1076
1453
|
[[package]]
|
|
1077
1454
|
name = "semver"
|
|
1078
1455
|
version = "1.0.28"
|
|
@@ -1139,6 +1516,37 @@ version = "2.0.1"
|
|
|
1139
1516
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1140
1517
|
checksum = "f8fadd59c855ef2080decdef8ff161eb6661b86933c9d82e5ba29dc602a55aba"
|
|
1141
1518
|
|
|
1519
|
+
[[package]]
|
|
1520
|
+
name = "signal-hook"
|
|
1521
|
+
version = "0.3.18"
|
|
1522
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1523
|
+
checksum = "d881a16cf4426aa584979d30bd82cb33429027e42122b169753d6ef1085ed6e2"
|
|
1524
|
+
dependencies = [
|
|
1525
|
+
"libc",
|
|
1526
|
+
"signal-hook-registry",
|
|
1527
|
+
]
|
|
1528
|
+
|
|
1529
|
+
[[package]]
|
|
1530
|
+
name = "signal-hook-mio"
|
|
1531
|
+
version = "0.2.5"
|
|
1532
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1533
|
+
checksum = "b75a19a7a740b25bc7944bdee6172368f988763b744e3d4dfe753f6b4ece40cc"
|
|
1534
|
+
dependencies = [
|
|
1535
|
+
"libc",
|
|
1536
|
+
"mio",
|
|
1537
|
+
"signal-hook",
|
|
1538
|
+
]
|
|
1539
|
+
|
|
1540
|
+
[[package]]
|
|
1541
|
+
name = "signal-hook-registry"
|
|
1542
|
+
version = "1.4.8"
|
|
1543
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1544
|
+
checksum = "c4db69cba1110affc0e9f7bcd48bbf87b3f4fc7c61fc9155afd4c469eb3d6c1b"
|
|
1545
|
+
dependencies = [
|
|
1546
|
+
"errno",
|
|
1547
|
+
"libc",
|
|
1548
|
+
]
|
|
1549
|
+
|
|
1142
1550
|
[[package]]
|
|
1143
1551
|
name = "slab"
|
|
1144
1552
|
version = "0.4.12"
|
|
@@ -1167,12 +1575,39 @@ version = "1.2.1"
|
|
|
1167
1575
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1168
1576
|
checksum = "6ce2be8dc25455e1f91df71bfa12ad37d7af1092ae736f3a6cd0e37bc7810596"
|
|
1169
1577
|
|
|
1578
|
+
[[package]]
|
|
1579
|
+
name = "static_assertions"
|
|
1580
|
+
version = "1.1.0"
|
|
1581
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1582
|
+
checksum = "a2eb9349b6444b326872e140eb1cf5e7c522154d69e7a0ffb0fb81c06b37543f"
|
|
1583
|
+
|
|
1170
1584
|
[[package]]
|
|
1171
1585
|
name = "strsim"
|
|
1172
1586
|
version = "0.11.1"
|
|
1173
1587
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1174
1588
|
checksum = "7da8b5736845d9f2fcb837ea5d9e2628564b3b043a70948a3f0b778838c5fb4f"
|
|
1175
1589
|
|
|
1590
|
+
[[package]]
|
|
1591
|
+
name = "strum"
|
|
1592
|
+
version = "0.27.2"
|
|
1593
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1594
|
+
checksum = "af23d6f6c1a224baef9d3f61e287d2761385a5b88fdab4eb4c6f11aeb54c4bcf"
|
|
1595
|
+
dependencies = [
|
|
1596
|
+
"strum_macros",
|
|
1597
|
+
]
|
|
1598
|
+
|
|
1599
|
+
[[package]]
|
|
1600
|
+
name = "strum_macros"
|
|
1601
|
+
version = "0.27.2"
|
|
1602
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1603
|
+
checksum = "7695ce3845ea4b33927c055a39dc438a45b059f7c1b3d91d38d10355fb8cbca7"
|
|
1604
|
+
dependencies = [
|
|
1605
|
+
"heck",
|
|
1606
|
+
"proc-macro2",
|
|
1607
|
+
"quote",
|
|
1608
|
+
"syn",
|
|
1609
|
+
]
|
|
1610
|
+
|
|
1176
1611
|
[[package]]
|
|
1177
1612
|
name = "subtle"
|
|
1178
1613
|
version = "2.6.1"
|
|
@@ -1243,6 +1678,27 @@ dependencies = [
|
|
|
1243
1678
|
"syn",
|
|
1244
1679
|
]
|
|
1245
1680
|
|
|
1681
|
+
[[package]]
|
|
1682
|
+
name = "time"
|
|
1683
|
+
version = "0.3.47"
|
|
1684
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1685
|
+
checksum = "743bd48c283afc0388f9b8827b976905fb217ad9e647fae3a379a9283c4def2c"
|
|
1686
|
+
dependencies = [
|
|
1687
|
+
"deranged",
|
|
1688
|
+
"libc",
|
|
1689
|
+
"num-conv",
|
|
1690
|
+
"num_threads",
|
|
1691
|
+
"powerfmt",
|
|
1692
|
+
"serde_core",
|
|
1693
|
+
"time-core",
|
|
1694
|
+
]
|
|
1695
|
+
|
|
1696
|
+
[[package]]
|
|
1697
|
+
name = "time-core"
|
|
1698
|
+
version = "0.1.8"
|
|
1699
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1700
|
+
checksum = "7694e1cfe791f8d31026952abf09c69ca6f6fa4e1a1229e18988f06a04a12dca"
|
|
1701
|
+
|
|
1246
1702
|
[[package]]
|
|
1247
1703
|
name = "tinystr"
|
|
1248
1704
|
version = "0.8.3"
|
|
@@ -1368,6 +1824,23 @@ version = "1.0.24"
|
|
|
1368
1824
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1369
1825
|
checksum = "e6e4313cd5fcd3dad5cafa179702e2b244f760991f45397d14d4ebf38247da75"
|
|
1370
1826
|
|
|
1827
|
+
[[package]]
|
|
1828
|
+
name = "unicode-segmentation"
|
|
1829
|
+
version = "1.13.3"
|
|
1830
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1831
|
+
checksum = "c6f5d3c3b1bf09027a88a6bc961fc00497d651009560b5463668dc81b0fa87a8"
|
|
1832
|
+
|
|
1833
|
+
[[package]]
|
|
1834
|
+
name = "unicode-truncate"
|
|
1835
|
+
version = "2.0.1"
|
|
1836
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1837
|
+
checksum = "16b380a1238663e5f8a691f9039c73e1cdae598a30e9855f541d29b08b53e9a5"
|
|
1838
|
+
dependencies = [
|
|
1839
|
+
"itertools",
|
|
1840
|
+
"unicode-segmentation",
|
|
1841
|
+
"unicode-width",
|
|
1842
|
+
]
|
|
1843
|
+
|
|
1371
1844
|
[[package]]
|
|
1372
1845
|
name = "unicode-width"
|
|
1373
1846
|
version = "0.2.2"
|
|
@@ -1567,6 +2040,28 @@ dependencies = [
|
|
|
1567
2040
|
"rustls-pki-types",
|
|
1568
2041
|
]
|
|
1569
2042
|
|
|
2043
|
+
[[package]]
|
|
2044
|
+
name = "winapi"
|
|
2045
|
+
version = "0.3.9"
|
|
2046
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2047
|
+
checksum = "5c839a674fcd7a98952e593242ea400abe93992746761e38641405d28b00f419"
|
|
2048
|
+
dependencies = [
|
|
2049
|
+
"winapi-i686-pc-windows-gnu",
|
|
2050
|
+
"winapi-x86_64-pc-windows-gnu",
|
|
2051
|
+
]
|
|
2052
|
+
|
|
2053
|
+
[[package]]
|
|
2054
|
+
name = "winapi-i686-pc-windows-gnu"
|
|
2055
|
+
version = "0.4.0"
|
|
2056
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2057
|
+
checksum = "ac3b87c63620426dd9b991e5ce0329eff545bccbbb34f3be09ff6fb6ab51b7b6"
|
|
2058
|
+
|
|
2059
|
+
[[package]]
|
|
2060
|
+
name = "winapi-x86_64-pc-windows-gnu"
|
|
2061
|
+
version = "0.4.0"
|
|
2062
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2063
|
+
checksum = "712e227841d057c1ee1cd2fb22fa7e5a5461ae8e48fa2ca79ec42cfc1931183f"
|
|
2064
|
+
|
|
1570
2065
|
[[package]]
|
|
1571
2066
|
name = "windows-core"
|
|
1572
2067
|
version = "0.62.2"
|