@@ -512,6 +512,28 @@ dependencies = [
512
512
"windows-targets 0.52.4",
513
513
]
514
514
515
+ [[package]]
516
+ name = "chrono-tz"
517
+ version = "0.9.0"
518
+ source = "registry+https://github.com/rust-lang/crates.io-index"
519
+ checksum = "93698b29de5e97ad0ae26447b344c482a7284c737d9ddc5f9e52b74a336671bb"
520
+ dependencies = [
521
+ "chrono",
522
+ "chrono-tz-build",
523
+ "phf 0.11.2",
524
+ ]
525
+
526
+ [[package]]
527
+ name = "chrono-tz-build"
528
+ version = "0.3.0"
529
+ source = "registry+https://github.com/rust-lang/crates.io-index"
530
+ checksum = "0c088aee841df9c3041febbb73934cfc39708749bf96dc827e3359cd39ef11b1"
531
+ dependencies = [
532
+ "parse-zoneinfo",
533
+ "phf 0.11.2",
534
+ "phf_codegen 0.11.2",
535
+ ]
536
+
515
537
[[package]]
516
538
name = "cipher"
517
539
version = "0.4.4"
@@ -2318,8 +2340,8 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
2318
2340
checksum = "7a2629bb1404f3d34c2e921f21fd34ba00b206124c81f65c50b43b6aaefeb016"
2319
2341
dependencies = [
2320
2342
"log",
2321
- "phf",
2322
- "phf_codegen",
2343
+ "phf 0.10.1 ",
2344
+ "phf_codegen 0.10.0 ",
2323
2345
"string_cache",
2324
2346
"string_cache_codegen",
2325
2347
"tendril",
@@ -2480,6 +2502,7 @@ version = "0.1.0"
2480
2502
dependencies = [
2481
2503
"aes",
2482
2504
"chrono",
2505
+ "chrono-tz",
2483
2506
"colored",
2484
2507
"ctrlc",
2485
2508
"directories",
@@ -2835,6 +2858,15 @@ dependencies = [
2835
2858
"windows-targets 0.48.5",
2836
2859
]
2837
2860
2861
+ [[package]]
2862
+ name = "parse-zoneinfo"
2863
+ version = "0.3.1"
2864
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2865
+ checksum = "1f2a05b18d44e2957b88f96ba460715e295bc1d7510468a2f3d3b44535d26c24"
2866
+ dependencies = [
2867
+ "regex",
2868
+ ]
2869
+
2838
2870
[[package]]
2839
2871
name = "pathdiff"
2840
2872
version = "0.2.1"
@@ -2907,7 +2939,16 @@ version = "0.10.1"
2907
2939
source = "registry+https://github.com/rust-lang/crates.io-index"
2908
2940
checksum = "fabbf1ead8a5bcbc20f5f8b939ee3f5b0f6f281b6ad3468b84656b658b455259"
2909
2941
dependencies = [
2910
- "phf_shared",
2942
+ "phf_shared 0.10.0",
2943
+ ]
2944
+
2945
+ [[package]]
2946
+ name = "phf"
2947
+ version = "0.11.2"
2948
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2949
+ checksum = "ade2d8b8f33c7333b51bcf0428d37e217e9f32192ae4772156f65063b8ce03dc"
2950
+ dependencies = [
2951
+ "phf_shared 0.11.2",
2911
2952
]
2912
2953
2913
2954
[[package]]
@@ -2916,8 +2957,18 @@ version = "0.10.0"
2916
2957
source = "registry+https://github.com/rust-lang/crates.io-index"
2917
2958
checksum = "4fb1c3a8bc4dd4e5cfce29b44ffc14bedd2ee294559a294e2a4d4c9e9a6a13cd"
2918
2959
dependencies = [
2919
- "phf_generator",
2920
- "phf_shared",
2960
+ "phf_generator 0.10.0",
2961
+ "phf_shared 0.10.0",
2962
+ ]
2963
+
2964
+ [[package]]
2965
+ name = "phf_codegen"
2966
+ version = "0.11.2"
2967
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2968
+ checksum = "e8d39688d359e6b34654d328e262234662d16cc0f60ec8dcbe5e718709342a5a"
2969
+ dependencies = [
2970
+ "phf_generator 0.11.2",
2971
+ "phf_shared 0.11.2",
2921
2972
]
2922
2973
2923
2974
[[package]]
@@ -2926,7 +2977,17 @@ version = "0.10.0"
2926
2977
source = "registry+https://github.com/rust-lang/crates.io-index"
2927
2978
checksum = "5d5285893bb5eb82e6aaf5d59ee909a06a16737a8970984dd7746ba9283498d6"
2928
2979
dependencies = [
2929
- "phf_shared",
2980
+ "phf_shared 0.10.0",
2981
+ "rand",
2982
+ ]
2983
+
2984
+ [[package]]
2985
+ name = "phf_generator"
2986
+ version = "0.11.2"
2987
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2988
+ checksum = "48e4cc64c2ad9ebe670cb8fd69dd50ae301650392e81c05f9bfcb2d5bdbc24b0"
2989
+ dependencies = [
2990
+ "phf_shared 0.11.2",
2930
2991
"rand",
2931
2992
]
2932
2993
@@ -2939,6 +3000,15 @@ dependencies = [
2939
3000
"siphasher",
2940
3001
]
2941
3002
3003
+ [[package]]
3004
+ name = "phf_shared"
3005
+ version = "0.11.2"
3006
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3007
+ checksum = "90fcb95eef784c2ac79119d1dd819e162b5da872ce6f3c3abe1e8ca1c082f72b"
3008
+ dependencies = [
3009
+ "siphasher",
3010
+ ]
3011
+
2942
3012
[[package]]
2943
3013
name = "pin-project-lite"
2944
3014
version = "0.2.14"
@@ -5285,7 +5355,7 @@ dependencies = [
5285
5355
"new_debug_unreachable",
5286
5356
"once_cell",
5287
5357
"parking_lot",
5288
- "phf_shared",
5358
+ "phf_shared 0.10.0 ",
5289
5359
"precomputed-hash",
5290
5360
"serde",
5291
5361
]
@@ -5296,8 +5366,8 @@ version = "0.5.2"
5296
5366
source = "registry+https://github.com/rust-lang/crates.io-index"
5297
5367
checksum = "6bb30289b722be4ff74a408c3cc27edeaad656e06cb1fe8fa9231fa59c728988"
5298
5368
dependencies = [
5299
- "phf_generator",
5300
- "phf_shared",
5369
+ "phf_generator 0.10.0 ",
5370
+ "phf_shared 0.10.0 ",
5301
5371
"proc-macro2",
5302
5372
"quote",
5303
5373
]
0 commit comments