@@ -37,6 +37,21 @@ dependencies = [
37
37
"memchr",
38
38
]
39
39
40
+ [[package]]
41
+ name = "android-tzdata"
42
+ version = "0.1.1"
43
+ source = "registry+https://github.com/rust-lang/crates.io-index"
44
+ checksum = "e999941b234f3131b00bc13c22d06e8c5ff726d1b6318ac7eb276997bbb4fef0"
45
+
46
+ [[package]]
47
+ name = "android_system_properties"
48
+ version = "0.1.5"
49
+ source = "registry+https://github.com/rust-lang/crates.io-index"
50
+ checksum = "819e7219dbd41043ac279b19830f2efc897156490d7fd6ea916720117ee66311"
51
+ dependencies = [
52
+ "libc",
53
+ ]
54
+
40
55
[[package]]
41
56
name = "annotate-snippets"
42
57
version = "0.9.2"
@@ -106,6 +121,12 @@ dependencies = [
106
121
"serde",
107
122
]
108
123
124
+ [[package]]
125
+ name = "bumpalo"
126
+ version = "3.16.0"
127
+ source = "registry+https://github.com/rust-lang/crates.io-index"
128
+ checksum = "79296716171880943b8470b5f8d03aa55eb2e645a4874bdbb28adb49162e012c"
129
+
109
130
[[package]]
110
131
name = "camino"
111
132
version = "1.1.6"
@@ -150,6 +171,18 @@ version = "1.0.0"
150
171
source = "registry+https://github.com/rust-lang/crates.io-index"
151
172
checksum = "baf1de4339761588bc0619e3cbc0120ee582ebb74b53b4efbf79117bd2da40fd"
152
173
174
+ [[package]]
175
+ name = "chrono"
176
+ version = "0.4.38"
177
+ source = "registry+https://github.com/rust-lang/crates.io-index"
178
+ checksum = "a21f936df1771bf62b77f047b726c4625ff2e8aa607c01ec06e5a05bd8463401"
179
+ dependencies = [
180
+ "android-tzdata",
181
+ "iana-time-zone",
182
+ "num-traits",
183
+ "windows-targets 0.52.3",
184
+ ]
185
+
153
186
[[package]]
154
187
name = "cipher"
155
188
version = "0.4.4"
@@ -216,6 +249,12 @@ dependencies = [
216
249
"windows-sys 0.52.0",
217
250
]
218
251
252
+ [[package]]
253
+ name = "core-foundation-sys"
254
+ version = "0.8.6"
255
+ source = "registry+https://github.com/rust-lang/crates.io-index"
256
+ checksum = "06ea2b9bc92be3c2baa9334a323ebca2d6f074ff852cd1d7b11064035cd3868f"
257
+
219
258
[[package]]
220
259
name = "cpufeatures"
221
260
version = "0.2.12"
@@ -260,6 +299,27 @@ dependencies = [
260
299
"windows-sys 0.52.0",
261
300
]
262
301
302
+ [[package]]
303
+ name = "directories"
304
+ version = "5.0.1"
305
+ source = "registry+https://github.com/rust-lang/crates.io-index"
306
+ checksum = "9a49173b84e034382284f27f1af4dcbbd231ffa358c0fe316541a7337f376a35"
307
+ dependencies = [
308
+ "dirs-sys",
309
+ ]
310
+
311
+ [[package]]
312
+ name = "dirs-sys"
313
+ version = "0.4.1"
314
+ source = "registry+https://github.com/rust-lang/crates.io-index"
315
+ checksum = "520f05a5cbd335fae5a99ff7a6ab8627577660ee5cfd6a94a6a929b52ff0321c"
316
+ dependencies = [
317
+ "libc",
318
+ "option-ext",
319
+ "redox_users",
320
+ "windows-sys 0.48.0",
321
+ ]
322
+
263
323
[[package]]
264
324
name = "encode_unicode"
265
325
version = "0.3.6"
@@ -319,6 +379,29 @@ version = "0.28.1"
319
379
source = "registry+https://github.com/rust-lang/crates.io-index"
320
380
checksum = "4271d37baee1b8c7e4b708028c57d816cf9d2434acb33a549475f78c181f6253"
321
381
382
+ [[package]]
383
+ name = "iana-time-zone"
384
+ version = "0.1.60"
385
+ source = "registry+https://github.com/rust-lang/crates.io-index"
386
+ checksum = "e7ffbb5a1b541ea2561f8c41c087286cc091e21e556a4f09a8f6cbf17b69b141"
387
+ dependencies = [
388
+ "android_system_properties",
389
+ "core-foundation-sys",
390
+ "iana-time-zone-haiku",
391
+ "js-sys",
392
+ "wasm-bindgen",
393
+ "windows-core",
394
+ ]
395
+
396
+ [[package]]
397
+ name = "iana-time-zone-haiku"
398
+ version = "0.1.2"
399
+ source = "registry+https://github.com/rust-lang/crates.io-index"
400
+ checksum = "f31827a206f56af32e590ba56d5d2d085f558508192593743f16b2306495269f"
401
+ dependencies = [
402
+ "cc",
403
+ ]
404
+
322
405
[[package]]
323
406
name = "indenter"
324
407
version = "0.3.3"
@@ -372,6 +455,15 @@ dependencies = [
372
455
"libc",
373
456
]
374
457
458
+ [[package]]
459
+ name = "js-sys"
460
+ version = "0.3.69"
461
+ source = "registry+https://github.com/rust-lang/crates.io-index"
462
+ checksum = "29c15563dc2726973df627357ce0c9ddddbea194836909d655df6a75d2cf296d"
463
+ dependencies = [
464
+ "wasm-bindgen",
465
+ ]
466
+
375
467
[[package]]
376
468
name = "lazy_static"
377
469
version = "1.4.0"
@@ -419,6 +511,16 @@ dependencies = [
419
511
"windows-sys 0.48.0",
420
512
]
421
513
514
+ [[package]]
515
+ name = "libredox"
516
+ version = "0.1.3"
517
+ source = "registry+https://github.com/rust-lang/crates.io-index"
518
+ checksum = "c0ff37bd590ca25063e35af745c343cb7a0271906fb7b37e4813e8f79f00268d"
519
+ dependencies = [
520
+ "bitflags 2.4.2",
521
+ "libc",
522
+ ]
523
+
422
524
[[package]]
423
525
name = "linux-raw-sys"
424
526
version = "0.4.13"
@@ -484,8 +586,10 @@ name = "miri"
484
586
version = "0.1.0"
485
587
dependencies = [
486
588
"aes",
589
+ "chrono",
487
590
"colored",
488
591
"ctrlc",
592
+ "directories",
489
593
"getrandom",
490
594
"jemalloc-sys",
491
595
"lazy_static",
@@ -512,6 +616,15 @@ dependencies = [
512
616
"libc",
513
617
]
514
618
619
+ [[package]]
620
+ name = "num-traits"
621
+ version = "0.2.18"
622
+ source = "registry+https://github.com/rust-lang/crates.io-index"
623
+ checksum = "da0df0e5185db44f69b44f26786fe401b6c293d1907744beaa7fa62b2e5a517a"
624
+ dependencies = [
625
+ "autocfg",
626
+ ]
627
+
515
628
[[package]]
516
629
name = "number_prefix"
517
630
version = "0.4.0"
@@ -533,6 +646,12 @@ version = "1.19.0"
533
646
source = "registry+https://github.com/rust-lang/crates.io-index"
534
647
checksum = "3fdb12b2476b595f9358c5161aa467c2438859caa136dec86c26fdd2efe17b92"
535
648
649
+ [[package]]
650
+ name = "option-ext"
651
+ version = "0.2.0"
652
+ source = "registry+https://github.com/rust-lang/crates.io-index"
653
+ checksum = "04744f49eae99ab78e0d5c0b603ab218f515ea8cfe5a456d7629ad883a3b6e7d"
654
+
536
655
[[package]]
537
656
name = "owo-colors"
538
657
version = "3.5.0"
@@ -665,6 +784,17 @@ dependencies = [
665
784
"bitflags 1.3.2",
666
785
]
667
786
787
+ [[package]]
788
+ name = "redox_users"
789
+ version = "0.4.5"
790
+ source = "registry+https://github.com/rust-lang/crates.io-index"
791
+ checksum = "bd283d9651eeda4b2a83a43c1c91b266c40fd76ecd39a50a8c630ae69dc72891"
792
+ dependencies = [
793
+ "getrandom",
794
+ "libredox",
795
+ "thiserror",
796
+ ]
797
+
668
798
[[package]]
669
799
name = "regex"
670
800
version = "1.10.3"
@@ -964,6 +1094,60 @@ version = "0.11.0+wasi-snapshot-preview1"
964
1094
source = "registry+https://github.com/rust-lang/crates.io-index"
965
1095
checksum = "9c8d87e72b64a3b4db28d11ce29237c246188f4f51057d65a7eab63b7987e423"
966
1096
1097
+ [[package]]
1098
+ name = "wasm-bindgen"
1099
+ version = "0.2.92"
1100
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1101
+ checksum = "4be2531df63900aeb2bca0daaaddec08491ee64ceecbee5076636a3b026795a8"
1102
+ dependencies = [
1103
+ "cfg-if",
1104
+ "wasm-bindgen-macro",
1105
+ ]
1106
+
1107
+ [[package]]
1108
+ name = "wasm-bindgen-backend"
1109
+ version = "0.2.92"
1110
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1111
+ checksum = "614d787b966d3989fa7bb98a654e369c762374fd3213d212cfc0251257e747da"
1112
+ dependencies = [
1113
+ "bumpalo",
1114
+ "log",
1115
+ "once_cell",
1116
+ "proc-macro2",
1117
+ "quote",
1118
+ "syn",
1119
+ "wasm-bindgen-shared",
1120
+ ]
1121
+
1122
+ [[package]]
1123
+ name = "wasm-bindgen-macro"
1124
+ version = "0.2.92"
1125
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1126
+ checksum = "a1f8823de937b71b9460c0c34e25f3da88250760bec0ebac694b49997550d726"
1127
+ dependencies = [
1128
+ "quote",
1129
+ "wasm-bindgen-macro-support",
1130
+ ]
1131
+
1132
+ [[package]]
1133
+ name = "wasm-bindgen-macro-support"
1134
+ version = "0.2.92"
1135
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1136
+ checksum = "e94f17b526d0a461a191c78ea52bbce64071ed5c04c9ffe424dcb38f74171bb7"
1137
+ dependencies = [
1138
+ "proc-macro2",
1139
+ "quote",
1140
+ "syn",
1141
+ "wasm-bindgen-backend",
1142
+ "wasm-bindgen-shared",
1143
+ ]
1144
+
1145
+ [[package]]
1146
+ name = "wasm-bindgen-shared"
1147
+ version = "0.2.92"
1148
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1149
+ checksum = "af190c94f2773fdb3729c55b007a722abb5384da03bc0986df4c289bf5567e96"
1150
+
967
1151
[[package]]
968
1152
name = "winapi"
969
1153
version = "0.3.9"
@@ -986,6 +1170,15 @@ version = "0.4.0"
986
1170
source = "registry+https://github.com/rust-lang/crates.io-index"
987
1171
checksum = "712e227841d057c1ee1cd2fb22fa7e5a5461ae8e48fa2ca79ec42cfc1931183f"
988
1172
1173
+ [[package]]
1174
+ name = "windows-core"
1175
+ version = "0.52.0"
1176
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1177
+ checksum = "33ab640c8d7e35bf8ba19b884ba838ceb4fba93a4e8c65a9059d08afcfc683d9"
1178
+ dependencies = [
1179
+ "windows-targets 0.52.3",
1180
+ ]
1181
+
989
1182
[[package]]
990
1183
name = "windows-sys"
991
1184
version = "0.48.0"
0 commit comments