git-cliff 2.2.1__tar.gz → 2.2.2__tar.gz
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.
- {git_cliff-2.2.1 → git_cliff-2.2.2}/Cargo.lock +521 -248
- {git_cliff-2.2.1 → git_cliff-2.2.2}/PKG-INFO +20 -7
- {git_cliff-2.2.1 → git_cliff-2.2.2}/README.md +19 -6
- {git_cliff-2.2.1 → git_cliff-2.2.2}/git-cliff/Cargo.toml +2 -2
- {git_cliff-2.2.1 → git_cliff-2.2.2}/git-cliff-core/Cargo.toml +12 -10
- {git_cliff-2.2.1 → git_cliff-2.2.2}/git-cliff-core/src/changelog.rs +118 -8
- {git_cliff-2.2.1 → git_cliff-2.2.2}/git-cliff-core/src/commit.rs +8 -10
- {git_cliff-2.2.1 → git_cliff-2.2.2}/git-cliff-core/src/repo.rs +16 -28
- {git_cliff-2.2.1 → git_cliff-2.2.2}/git-cliff-core/src/template.rs +2 -2
- {git_cliff-2.2.1 → git_cliff-2.2.2}/Cargo.toml +0 -0
- {git_cliff-2.2.1 → git_cliff-2.2.2}/git-cliff/src/args.rs +0 -0
- {git_cliff-2.2.1 → git_cliff-2.2.2}/git-cliff/src/bin/completions.rs +0 -0
- {git_cliff-2.2.1 → git_cliff-2.2.2}/git-cliff/src/bin/mangen.rs +0 -0
- {git_cliff-2.2.1 → git_cliff-2.2.2}/git-cliff/src/lib.rs +0 -0
- {git_cliff-2.2.1 → git_cliff-2.2.2}/git-cliff/src/logger.rs +0 -0
- {git_cliff-2.2.1 → git_cliff-2.2.2}/git-cliff/src/main.rs +0 -0
- {git_cliff-2.2.1 → git_cliff-2.2.2}/git-cliff-core/src/command.rs +0 -0
- {git_cliff-2.2.1 → git_cliff-2.2.2}/git-cliff-core/src/config.rs +0 -0
- {git_cliff-2.2.1 → git_cliff-2.2.2}/git-cliff-core/src/embed.rs +0 -0
- {git_cliff-2.2.1 → git_cliff-2.2.2}/git-cliff-core/src/error.rs +0 -0
- {git_cliff-2.2.1 → git_cliff-2.2.2}/git-cliff-core/src/github.rs +0 -0
- {git_cliff-2.2.1 → git_cliff-2.2.2}/git-cliff-core/src/lib.rs +0 -0
- {git_cliff-2.2.1 → git_cliff-2.2.2}/git-cliff-core/src/release.rs +0 -0
- {git_cliff-2.2.1 → git_cliff-2.2.2}/git-cliff-core/tests/integration_test.rs +0 -0
- {git_cliff-2.2.1 → git_cliff-2.2.2}/pyproject.toml +0 -0
|
@@ -49,47 +49,48 @@ dependencies = [
|
|
|
49
49
|
|
|
50
50
|
[[package]]
|
|
51
51
|
name = "anstream"
|
|
52
|
-
version = "0.6.
|
|
52
|
+
version = "0.6.14"
|
|
53
53
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
54
|
-
checksum = "
|
|
54
|
+
checksum = "418c75fa768af9c03be99d17643f93f79bbba589895012a80e3452a19ddda15b"
|
|
55
55
|
dependencies = [
|
|
56
56
|
"anstyle",
|
|
57
57
|
"anstyle-parse",
|
|
58
58
|
"anstyle-query",
|
|
59
59
|
"anstyle-wincon",
|
|
60
60
|
"colorchoice",
|
|
61
|
+
"is_terminal_polyfill",
|
|
61
62
|
"utf8parse",
|
|
62
63
|
]
|
|
63
64
|
|
|
64
65
|
[[package]]
|
|
65
66
|
name = "anstyle"
|
|
66
|
-
version = "1.0.
|
|
67
|
+
version = "1.0.7"
|
|
67
68
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
68
|
-
checksum = "
|
|
69
|
+
checksum = "038dfcf04a5feb68e9c60b21c9625a54c2c0616e79b72b0fd87075a056ae1d1b"
|
|
69
70
|
|
|
70
71
|
[[package]]
|
|
71
72
|
name = "anstyle-parse"
|
|
72
|
-
version = "0.2.
|
|
73
|
+
version = "0.2.4"
|
|
73
74
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
74
|
-
checksum = "
|
|
75
|
+
checksum = "c03a11a9034d92058ceb6ee011ce58af4a9bf61491aa7e1e59ecd24bd40d22d4"
|
|
75
76
|
dependencies = [
|
|
76
77
|
"utf8parse",
|
|
77
78
|
]
|
|
78
79
|
|
|
79
80
|
[[package]]
|
|
80
81
|
name = "anstyle-query"
|
|
81
|
-
version = "1.0.
|
|
82
|
+
version = "1.0.3"
|
|
82
83
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
83
|
-
checksum = "
|
|
84
|
+
checksum = "a64c907d4e79225ac72e2a354c9ce84d50ebb4586dee56c82b3ee73004f537f5"
|
|
84
85
|
dependencies = [
|
|
85
86
|
"windows-sys 0.52.0",
|
|
86
87
|
]
|
|
87
88
|
|
|
88
89
|
[[package]]
|
|
89
90
|
name = "anstyle-wincon"
|
|
90
|
-
version = "3.0.
|
|
91
|
+
version = "3.0.3"
|
|
91
92
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
92
|
-
checksum = "
|
|
93
|
+
checksum = "61a38449feb7068f52bb06c12759005cf459ee52bb4adc1d5a7c4322d716fb19"
|
|
93
94
|
dependencies = [
|
|
94
95
|
"anstyle",
|
|
95
96
|
"windows-sys 0.52.0",
|
|
@@ -97,26 +98,40 @@ dependencies = [
|
|
|
97
98
|
|
|
98
99
|
[[package]]
|
|
99
100
|
name = "anyhow"
|
|
100
|
-
version = "1.0.
|
|
101
|
+
version = "1.0.83"
|
|
101
102
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
102
|
-
checksum = "
|
|
103
|
+
checksum = "25bdb32cbbdce2b519a9cd7df3a678443100e265d5e25ca763b7572a5104f5f3"
|
|
104
|
+
|
|
105
|
+
[[package]]
|
|
106
|
+
name = "async-compression"
|
|
107
|
+
version = "0.4.10"
|
|
108
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
109
|
+
checksum = "9c90a406b4495d129f00461241616194cb8a032c8d1c53c657f0961d5f8e0498"
|
|
110
|
+
dependencies = [
|
|
111
|
+
"futures-core",
|
|
112
|
+
"memchr",
|
|
113
|
+
"pin-project-lite",
|
|
114
|
+
"tokio",
|
|
115
|
+
"zstd",
|
|
116
|
+
"zstd-safe",
|
|
117
|
+
]
|
|
103
118
|
|
|
104
119
|
[[package]]
|
|
105
120
|
name = "async-trait"
|
|
106
|
-
version = "0.1.
|
|
121
|
+
version = "0.1.80"
|
|
107
122
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
108
|
-
checksum = "
|
|
123
|
+
checksum = "c6fa2087f2753a7da8cc1c0dbfcf89579dd57458e36769de5ac750b4671737ca"
|
|
109
124
|
dependencies = [
|
|
110
125
|
"proc-macro2",
|
|
111
126
|
"quote",
|
|
112
|
-
"syn 2.0.
|
|
127
|
+
"syn 2.0.63",
|
|
113
128
|
]
|
|
114
129
|
|
|
115
130
|
[[package]]
|
|
116
131
|
name = "autocfg"
|
|
117
|
-
version = "1.
|
|
132
|
+
version = "1.3.0"
|
|
118
133
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
119
|
-
checksum = "
|
|
134
|
+
checksum = "0c4b4d0bd25bd0b74681c0ad21497610ce1b7c91b1022cd21c80c6fbdd9476b0"
|
|
120
135
|
|
|
121
136
|
[[package]]
|
|
122
137
|
name = "backtrace"
|
|
@@ -139,6 +154,12 @@ version = "0.21.7"
|
|
|
139
154
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
140
155
|
checksum = "9d297deb1925b89f2ccc13d7635fa0714f12c87adce1c75356b39ca9b7178567"
|
|
141
156
|
|
|
157
|
+
[[package]]
|
|
158
|
+
name = "base64"
|
|
159
|
+
version = "0.22.1"
|
|
160
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
161
|
+
checksum = "72b3254f16251a8381aa12e40e3c4d2f0199f8c6508fbecb9d91f575e0fbb8c6"
|
|
162
|
+
|
|
142
163
|
[[package]]
|
|
143
164
|
name = "bincode"
|
|
144
165
|
version = "1.3.3"
|
|
@@ -193,9 +214,9 @@ checksum = "514de17de45fdb8dc022b1a7975556c53c86f9f0aa5f534b98977b171857c2c9"
|
|
|
193
214
|
|
|
194
215
|
[[package]]
|
|
195
216
|
name = "cacache"
|
|
196
|
-
version = "
|
|
217
|
+
version = "13.0.0"
|
|
197
218
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
198
|
-
checksum = "
|
|
219
|
+
checksum = "a61ff12b19d89c752c213316b87fdb4a587f073d219b893cc56974b8c9f39bf7"
|
|
199
220
|
dependencies = [
|
|
200
221
|
"digest",
|
|
201
222
|
"either",
|
|
@@ -220,12 +241,13 @@ dependencies = [
|
|
|
220
241
|
|
|
221
242
|
[[package]]
|
|
222
243
|
name = "cc"
|
|
223
|
-
version = "1.0.
|
|
244
|
+
version = "1.0.97"
|
|
224
245
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
225
|
-
checksum = "
|
|
246
|
+
checksum = "099a5357d84c4c61eb35fc8eafa9a79a902c2f76911e5747ced4e032edd8d9b4"
|
|
226
247
|
dependencies = [
|
|
227
248
|
"jobserver",
|
|
228
249
|
"libc",
|
|
250
|
+
"once_cell",
|
|
229
251
|
]
|
|
230
252
|
|
|
231
253
|
[[package]]
|
|
@@ -236,14 +258,14 @@ checksum = "baf1de4339761588bc0619e3cbc0120ee582ebb74b53b4efbf79117bd2da40fd"
|
|
|
236
258
|
|
|
237
259
|
[[package]]
|
|
238
260
|
name = "chrono"
|
|
239
|
-
version = "0.4.
|
|
261
|
+
version = "0.4.38"
|
|
240
262
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
241
|
-
checksum = "
|
|
263
|
+
checksum = "a21f936df1771bf62b77f047b726c4625ff2e8aa607c01ec06e5a05bd8463401"
|
|
242
264
|
dependencies = [
|
|
243
265
|
"android-tzdata",
|
|
244
266
|
"iana-time-zone",
|
|
245
267
|
"num-traits",
|
|
246
|
-
"windows-targets 0.52.
|
|
268
|
+
"windows-targets 0.52.5",
|
|
247
269
|
]
|
|
248
270
|
|
|
249
271
|
[[package]]
|
|
@@ -309,7 +331,7 @@ dependencies = [
|
|
|
309
331
|
"heck",
|
|
310
332
|
"proc-macro2",
|
|
311
333
|
"quote",
|
|
312
|
-
"syn 2.0.
|
|
334
|
+
"syn 2.0.63",
|
|
313
335
|
]
|
|
314
336
|
|
|
315
337
|
[[package]]
|
|
@@ -330,9 +352,9 @@ dependencies = [
|
|
|
330
352
|
|
|
331
353
|
[[package]]
|
|
332
354
|
name = "colorchoice"
|
|
333
|
-
version = "1.0.
|
|
355
|
+
version = "1.0.1"
|
|
334
356
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
335
|
-
checksum = "
|
|
357
|
+
checksum = "0b6a852b24ab71dffc585bcb46eaf7959d175cb865a7152e35b348d1b2960422"
|
|
336
358
|
|
|
337
359
|
[[package]]
|
|
338
360
|
name = "config"
|
|
@@ -451,9 +473,9 @@ dependencies = [
|
|
|
451
473
|
|
|
452
474
|
[[package]]
|
|
453
475
|
name = "deunicode"
|
|
454
|
-
version = "1.4.
|
|
476
|
+
version = "1.4.4"
|
|
455
477
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
456
|
-
checksum = "
|
|
478
|
+
checksum = "322ef0094744e63628e6f0eb2295517f79276a5b342a4c2ff3042566ca181d4e"
|
|
457
479
|
|
|
458
480
|
[[package]]
|
|
459
481
|
name = "diff"
|
|
@@ -501,6 +523,12 @@ dependencies = [
|
|
|
501
523
|
"windows-sys 0.48.0",
|
|
502
524
|
]
|
|
503
525
|
|
|
526
|
+
[[package]]
|
|
527
|
+
name = "dissimilar"
|
|
528
|
+
version = "1.0.9"
|
|
529
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
530
|
+
checksum = "59f8e79d1fbf76bdfbde321e902714bf6c49df88a7dda6fc682fc2979226962d"
|
|
531
|
+
|
|
504
532
|
[[package]]
|
|
505
533
|
name = "doc-comment"
|
|
506
534
|
version = "0.3.3"
|
|
@@ -518,9 +546,9 @@ dependencies = [
|
|
|
518
546
|
|
|
519
547
|
[[package]]
|
|
520
548
|
name = "either"
|
|
521
|
-
version = "1.
|
|
549
|
+
version = "1.11.0"
|
|
522
550
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
523
|
-
checksum = "
|
|
551
|
+
checksum = "a47c1c47d2f5964e29c61246e81db715514cd532db6b5116a25ea3c03d6780a2"
|
|
524
552
|
|
|
525
553
|
[[package]]
|
|
526
554
|
name = "encode_unicode"
|
|
@@ -558,25 +586,35 @@ checksum = "5443807d6dff69373d433ab9ef5378ad8df50ca6298caf15de6e52e24aaf54d5"
|
|
|
558
586
|
|
|
559
587
|
[[package]]
|
|
560
588
|
name = "errno"
|
|
561
|
-
version = "0.3.
|
|
589
|
+
version = "0.3.9"
|
|
562
590
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
563
|
-
checksum = "
|
|
591
|
+
checksum = "534c5cf6194dfab3db3242765c03bbe257cf92f22b38f6bc0c58d59108a820ba"
|
|
564
592
|
dependencies = [
|
|
565
593
|
"libc",
|
|
566
594
|
"windows-sys 0.52.0",
|
|
567
595
|
]
|
|
568
596
|
|
|
597
|
+
[[package]]
|
|
598
|
+
name = "expect-test"
|
|
599
|
+
version = "1.5.0"
|
|
600
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
601
|
+
checksum = "9e0be0a561335815e06dab7c62e50353134c796e7a6155402a64bcff66b6a5e0"
|
|
602
|
+
dependencies = [
|
|
603
|
+
"dissimilar",
|
|
604
|
+
"once_cell",
|
|
605
|
+
]
|
|
606
|
+
|
|
569
607
|
[[package]]
|
|
570
608
|
name = "fastrand"
|
|
571
|
-
version = "2.0
|
|
609
|
+
version = "2.1.0"
|
|
572
610
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
573
|
-
checksum = "
|
|
611
|
+
checksum = "9fc0510504f03c51ada170672ac806f1f105a88aa97a5281117e1ddc3368e51a"
|
|
574
612
|
|
|
575
613
|
[[package]]
|
|
576
614
|
name = "flate2"
|
|
577
|
-
version = "1.0.
|
|
615
|
+
version = "1.0.30"
|
|
578
616
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
579
|
-
checksum = "
|
|
617
|
+
checksum = "5f54427cfd1c7829e2a139fcefea601bf088ebca651d2bf53ebc600eac295dae"
|
|
580
618
|
dependencies = [
|
|
581
619
|
"crc32fast",
|
|
582
620
|
"miniz_oxide",
|
|
@@ -653,7 +691,7 @@ checksum = "87750cf4b7a4c0625b1529e4c543c2182106e4dedc60a2a6455e00d212c489ac"
|
|
|
653
691
|
dependencies = [
|
|
654
692
|
"proc-macro2",
|
|
655
693
|
"quote",
|
|
656
|
-
"syn 2.0.
|
|
694
|
+
"syn 2.0.63",
|
|
657
695
|
]
|
|
658
696
|
|
|
659
697
|
[[package]]
|
|
@@ -698,9 +736,9 @@ dependencies = [
|
|
|
698
736
|
|
|
699
737
|
[[package]]
|
|
700
738
|
name = "getrandom"
|
|
701
|
-
version = "0.2.
|
|
739
|
+
version = "0.2.15"
|
|
702
740
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
703
|
-
checksum = "
|
|
741
|
+
checksum = "c4567c8db10ae91089c99af84c68c38da3ec2f087c3f82960bcdbf3656b6f4d7"
|
|
704
742
|
dependencies = [
|
|
705
743
|
"cfg-if",
|
|
706
744
|
"libc",
|
|
@@ -715,7 +753,7 @@ checksum = "4271d37baee1b8c7e4b708028c57d816cf9d2434acb33a549475f78c181f6253"
|
|
|
715
753
|
|
|
716
754
|
[[package]]
|
|
717
755
|
name = "git-cliff"
|
|
718
|
-
version = "2.2.
|
|
756
|
+
version = "2.2.2"
|
|
719
757
|
dependencies = [
|
|
720
758
|
"clap",
|
|
721
759
|
"clap_complete",
|
|
@@ -736,11 +774,12 @@ dependencies = [
|
|
|
736
774
|
|
|
737
775
|
[[package]]
|
|
738
776
|
name = "git-cliff-core"
|
|
739
|
-
version = "2.2.
|
|
777
|
+
version = "2.2.2"
|
|
740
778
|
dependencies = [
|
|
741
779
|
"config",
|
|
742
780
|
"dirs",
|
|
743
781
|
"document-features",
|
|
782
|
+
"expect-test",
|
|
744
783
|
"futures",
|
|
745
784
|
"git-conventional",
|
|
746
785
|
"git2",
|
|
@@ -753,7 +792,7 @@ dependencies = [
|
|
|
753
792
|
"next_version",
|
|
754
793
|
"pretty_assertions",
|
|
755
794
|
"regex",
|
|
756
|
-
"reqwest",
|
|
795
|
+
"reqwest 0.12.4",
|
|
757
796
|
"reqwest-middleware",
|
|
758
797
|
"rust-embed",
|
|
759
798
|
"secrecy",
|
|
@@ -834,7 +873,7 @@ dependencies = [
|
|
|
834
873
|
"futures-core",
|
|
835
874
|
"futures-sink",
|
|
836
875
|
"futures-util",
|
|
837
|
-
"http",
|
|
876
|
+
"http 0.2.12",
|
|
838
877
|
"indexmap",
|
|
839
878
|
"slab",
|
|
840
879
|
"tokio",
|
|
@@ -844,9 +883,9 @@ dependencies = [
|
|
|
844
883
|
|
|
845
884
|
[[package]]
|
|
846
885
|
name = "hashbrown"
|
|
847
|
-
version = "0.14.
|
|
886
|
+
version = "0.14.5"
|
|
848
887
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
849
|
-
checksum = "
|
|
888
|
+
checksum = "e5274423e17b7c9fc20b6e7e208532f9b19825d82dfd615708b70edd83df41f1"
|
|
850
889
|
|
|
851
890
|
[[package]]
|
|
852
891
|
name = "heck"
|
|
@@ -877,6 +916,17 @@ dependencies = [
|
|
|
877
916
|
"itoa",
|
|
878
917
|
]
|
|
879
918
|
|
|
919
|
+
[[package]]
|
|
920
|
+
name = "http"
|
|
921
|
+
version = "1.1.0"
|
|
922
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
923
|
+
checksum = "21b9ddb458710bc376481b842f5da65cdf31522de232c1ca8146abce2a358258"
|
|
924
|
+
dependencies = [
|
|
925
|
+
"bytes",
|
|
926
|
+
"fnv",
|
|
927
|
+
"itoa",
|
|
928
|
+
]
|
|
929
|
+
|
|
880
930
|
[[package]]
|
|
881
931
|
name = "http-body"
|
|
882
932
|
version = "0.4.6"
|
|
@@ -884,20 +934,43 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
884
934
|
checksum = "7ceab25649e9960c0311ea418d17bee82c0dcec1bd053b5f9a66e265a693bed2"
|
|
885
935
|
dependencies = [
|
|
886
936
|
"bytes",
|
|
887
|
-
"http",
|
|
937
|
+
"http 0.2.12",
|
|
938
|
+
"pin-project-lite",
|
|
939
|
+
]
|
|
940
|
+
|
|
941
|
+
[[package]]
|
|
942
|
+
name = "http-body"
|
|
943
|
+
version = "1.0.0"
|
|
944
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
945
|
+
checksum = "1cac85db508abc24a2e48553ba12a996e87244a0395ce011e62b37158745d643"
|
|
946
|
+
dependencies = [
|
|
947
|
+
"bytes",
|
|
948
|
+
"http 1.1.0",
|
|
949
|
+
]
|
|
950
|
+
|
|
951
|
+
[[package]]
|
|
952
|
+
name = "http-body-util"
|
|
953
|
+
version = "0.1.1"
|
|
954
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
955
|
+
checksum = "0475f8b2ac86659c21b64320d5d653f9efe42acd2a4e560073ec61a155a34f1d"
|
|
956
|
+
dependencies = [
|
|
957
|
+
"bytes",
|
|
958
|
+
"futures-core",
|
|
959
|
+
"http 1.1.0",
|
|
960
|
+
"http-body 1.0.0",
|
|
888
961
|
"pin-project-lite",
|
|
889
962
|
]
|
|
890
963
|
|
|
891
964
|
[[package]]
|
|
892
965
|
name = "http-cache"
|
|
893
|
-
version = "0.
|
|
966
|
+
version = "0.19.0"
|
|
894
967
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
895
|
-
checksum = "
|
|
968
|
+
checksum = "d6ffb12b95bb2a369fe47ca8924016c72c2fa0e6059ba98bd1516f558696c5a8"
|
|
896
969
|
dependencies = [
|
|
897
970
|
"async-trait",
|
|
898
971
|
"bincode",
|
|
899
972
|
"cacache",
|
|
900
|
-
"http",
|
|
973
|
+
"http 1.1.0",
|
|
901
974
|
"http-cache-semantics",
|
|
902
975
|
"httpdate",
|
|
903
976
|
"serde",
|
|
@@ -906,29 +979,28 @@ dependencies = [
|
|
|
906
979
|
|
|
907
980
|
[[package]]
|
|
908
981
|
name = "http-cache-reqwest"
|
|
909
|
-
version = "0.
|
|
982
|
+
version = "0.14.0"
|
|
910
983
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
911
|
-
checksum = "
|
|
984
|
+
checksum = "be3e27c4e2e510571cbcc601407b639667146aa9a4e818d5cc1d97c8b4b27d61"
|
|
912
985
|
dependencies = [
|
|
913
986
|
"anyhow",
|
|
914
987
|
"async-trait",
|
|
915
|
-
"http",
|
|
988
|
+
"http 1.1.0",
|
|
916
989
|
"http-cache",
|
|
917
990
|
"http-cache-semantics",
|
|
918
|
-
"reqwest",
|
|
991
|
+
"reqwest 0.12.4",
|
|
919
992
|
"reqwest-middleware",
|
|
920
993
|
"serde",
|
|
921
|
-
"task-local-extensions",
|
|
922
994
|
"url",
|
|
923
995
|
]
|
|
924
996
|
|
|
925
997
|
[[package]]
|
|
926
998
|
name = "http-cache-semantics"
|
|
927
|
-
version = "1.0
|
|
999
|
+
version = "2.1.0"
|
|
928
1000
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
929
|
-
checksum = "
|
|
1001
|
+
checksum = "92baf25cf0b8c9246baecf3a444546360a97b569168fdf92563ee6a47829920c"
|
|
930
1002
|
dependencies = [
|
|
931
|
-
"http",
|
|
1003
|
+
"http 1.1.0",
|
|
932
1004
|
"http-serde",
|
|
933
1005
|
"serde",
|
|
934
1006
|
"time",
|
|
@@ -936,11 +1008,11 @@ dependencies = [
|
|
|
936
1008
|
|
|
937
1009
|
[[package]]
|
|
938
1010
|
name = "http-serde"
|
|
939
|
-
version = "
|
|
1011
|
+
version = "2.1.0"
|
|
940
1012
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
941
|
-
checksum = "
|
|
1013
|
+
checksum = "1133cafcce27ea69d35e56b3a8772e265633e04de73c5f4e1afdffc1d19b5419"
|
|
942
1014
|
dependencies = [
|
|
943
|
-
"http",
|
|
1015
|
+
"http 1.1.0",
|
|
944
1016
|
"serde",
|
|
945
1017
|
]
|
|
946
1018
|
|
|
@@ -982,8 +1054,8 @@ dependencies = [
|
|
|
982
1054
|
"futures-core",
|
|
983
1055
|
"futures-util",
|
|
984
1056
|
"h2",
|
|
985
|
-
"http",
|
|
986
|
-
"http-body",
|
|
1057
|
+
"http 0.2.12",
|
|
1058
|
+
"http-body 0.4.6",
|
|
987
1059
|
"httparse",
|
|
988
1060
|
"httpdate",
|
|
989
1061
|
"itoa",
|
|
@@ -995,6 +1067,25 @@ dependencies = [
|
|
|
995
1067
|
"want",
|
|
996
1068
|
]
|
|
997
1069
|
|
|
1070
|
+
[[package]]
|
|
1071
|
+
name = "hyper"
|
|
1072
|
+
version = "1.3.1"
|
|
1073
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1074
|
+
checksum = "fe575dd17d0862a9a33781c8c4696a55c320909004a67a00fb286ba8b1bc496d"
|
|
1075
|
+
dependencies = [
|
|
1076
|
+
"bytes",
|
|
1077
|
+
"futures-channel",
|
|
1078
|
+
"futures-util",
|
|
1079
|
+
"http 1.1.0",
|
|
1080
|
+
"http-body 1.0.0",
|
|
1081
|
+
"httparse",
|
|
1082
|
+
"itoa",
|
|
1083
|
+
"pin-project-lite",
|
|
1084
|
+
"smallvec",
|
|
1085
|
+
"tokio",
|
|
1086
|
+
"want",
|
|
1087
|
+
]
|
|
1088
|
+
|
|
998
1089
|
[[package]]
|
|
999
1090
|
name = "hyper-rustls"
|
|
1000
1091
|
version = "0.24.2"
|
|
@@ -1002,11 +1093,48 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
1002
1093
|
checksum = "ec3efd23720e2049821a693cbc7e65ea87c72f1c58ff2f9522ff332b1491e590"
|
|
1003
1094
|
dependencies = [
|
|
1004
1095
|
"futures-util",
|
|
1005
|
-
"http",
|
|
1006
|
-
"hyper",
|
|
1007
|
-
"rustls 0.21.
|
|
1096
|
+
"http 0.2.12",
|
|
1097
|
+
"hyper 0.14.28",
|
|
1098
|
+
"rustls 0.21.12",
|
|
1099
|
+
"tokio",
|
|
1100
|
+
"tokio-rustls 0.24.1",
|
|
1101
|
+
]
|
|
1102
|
+
|
|
1103
|
+
[[package]]
|
|
1104
|
+
name = "hyper-rustls"
|
|
1105
|
+
version = "0.26.0"
|
|
1106
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1107
|
+
checksum = "a0bea761b46ae2b24eb4aef630d8d1c398157b6fc29e6350ecf090a0b70c952c"
|
|
1108
|
+
dependencies = [
|
|
1109
|
+
"futures-util",
|
|
1110
|
+
"http 1.1.0",
|
|
1111
|
+
"hyper 1.3.1",
|
|
1112
|
+
"hyper-util",
|
|
1113
|
+
"rustls 0.22.4",
|
|
1114
|
+
"rustls-pki-types",
|
|
1115
|
+
"tokio",
|
|
1116
|
+
"tokio-rustls 0.25.0",
|
|
1117
|
+
"tower-service",
|
|
1118
|
+
]
|
|
1119
|
+
|
|
1120
|
+
[[package]]
|
|
1121
|
+
name = "hyper-util"
|
|
1122
|
+
version = "0.1.3"
|
|
1123
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1124
|
+
checksum = "ca38ef113da30126bbff9cd1705f9273e15d45498615d138b0c20279ac7a76aa"
|
|
1125
|
+
dependencies = [
|
|
1126
|
+
"bytes",
|
|
1127
|
+
"futures-channel",
|
|
1128
|
+
"futures-util",
|
|
1129
|
+
"http 1.1.0",
|
|
1130
|
+
"http-body 1.0.0",
|
|
1131
|
+
"hyper 1.3.1",
|
|
1132
|
+
"pin-project-lite",
|
|
1133
|
+
"socket2",
|
|
1008
1134
|
"tokio",
|
|
1009
|
-
"
|
|
1135
|
+
"tower",
|
|
1136
|
+
"tower-service",
|
|
1137
|
+
"tracing",
|
|
1010
1138
|
]
|
|
1011
1139
|
|
|
1012
1140
|
[[package]]
|
|
@@ -1141,6 +1269,12 @@ dependencies = [
|
|
|
1141
1269
|
"windows-sys 0.52.0",
|
|
1142
1270
|
]
|
|
1143
1271
|
|
|
1272
|
+
[[package]]
|
|
1273
|
+
name = "is_terminal_polyfill"
|
|
1274
|
+
version = "1.70.0"
|
|
1275
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1276
|
+
checksum = "f8478577c03552c21db0e2724ffb8986a5ce7af88107e6be5d2ee6e158c12800"
|
|
1277
|
+
|
|
1144
1278
|
[[package]]
|
|
1145
1279
|
name = "itoa"
|
|
1146
1280
|
version = "1.0.11"
|
|
@@ -1149,9 +1283,9 @@ checksum = "49f1f14873335454500d59611f1cf4a4b0f786f9ac11f4312a78e4cf2566695b"
|
|
|
1149
1283
|
|
|
1150
1284
|
[[package]]
|
|
1151
1285
|
name = "jobserver"
|
|
1152
|
-
version = "0.1.
|
|
1286
|
+
version = "0.1.31"
|
|
1153
1287
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1154
|
-
checksum = "
|
|
1288
|
+
checksum = "d2b099aaa34a9751c5bf0878add70444e1ed2dd73f347be99003d4577277de6e"
|
|
1155
1289
|
dependencies = [
|
|
1156
1290
|
"libc",
|
|
1157
1291
|
]
|
|
@@ -1185,7 +1319,7 @@ dependencies = [
|
|
|
1185
1319
|
"proc-macro2",
|
|
1186
1320
|
"quote",
|
|
1187
1321
|
"regex",
|
|
1188
|
-
"syn 2.0.
|
|
1322
|
+
"syn 2.0.63",
|
|
1189
1323
|
]
|
|
1190
1324
|
|
|
1191
1325
|
[[package]]
|
|
@@ -1196,9 +1330,9 @@ checksum = "e2abad23fbc42b3700f2f279844dc832adb2b2eb069b2df918f455c4e18cc646"
|
|
|
1196
1330
|
|
|
1197
1331
|
[[package]]
|
|
1198
1332
|
name = "libc"
|
|
1199
|
-
version = "0.2.
|
|
1333
|
+
version = "0.2.154"
|
|
1200
1334
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1201
|
-
checksum = "
|
|
1335
|
+
checksum = "ae743338b92ff9146ce83992f766a31066a91a8c84a45e0e9f21e7cf6de6d346"
|
|
1202
1336
|
|
|
1203
1337
|
[[package]]
|
|
1204
1338
|
name = "libflate"
|
|
@@ -1319,7 +1453,7 @@ checksum = "49e7bc1560b95a3c4a25d03de42fe76ca718ab92d1a22a55b9b4cf67b3ae635c"
|
|
|
1319
1453
|
dependencies = [
|
|
1320
1454
|
"proc-macro2",
|
|
1321
1455
|
"quote",
|
|
1322
|
-
"syn 2.0.
|
|
1456
|
+
"syn 2.0.63",
|
|
1323
1457
|
]
|
|
1324
1458
|
|
|
1325
1459
|
[[package]]
|
|
@@ -1328,16 +1462,6 @@ version = "0.3.17"
|
|
|
1328
1462
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1329
1463
|
checksum = "6877bb514081ee2a7ff5ef9de3281f14a4dd4bceac4c09388074a6b5df8a139a"
|
|
1330
1464
|
|
|
1331
|
-
[[package]]
|
|
1332
|
-
name = "mime_guess"
|
|
1333
|
-
version = "2.0.4"
|
|
1334
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1335
|
-
checksum = "4192263c238a5f0d0c6bfd21f336a313a4ce1c450542449ca191bb657b4642ef"
|
|
1336
|
-
dependencies = [
|
|
1337
|
-
"mime",
|
|
1338
|
-
"unicase",
|
|
1339
|
-
]
|
|
1340
|
-
|
|
1341
1465
|
[[package]]
|
|
1342
1466
|
name = "minimal-lexical"
|
|
1343
1467
|
version = "0.2.1"
|
|
@@ -1366,9 +1490,9 @@ dependencies = [
|
|
|
1366
1490
|
|
|
1367
1491
|
[[package]]
|
|
1368
1492
|
name = "next_version"
|
|
1369
|
-
version = "0.2.
|
|
1493
|
+
version = "0.2.16"
|
|
1370
1494
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1371
|
-
checksum = "
|
|
1495
|
+
checksum = "d3e541a09da6184deaa5f0c9eeec570dbea6ea841d92c84cdfa4ff985aa535fa"
|
|
1372
1496
|
dependencies = [
|
|
1373
1497
|
"conventional_commit_parser",
|
|
1374
1498
|
"semver",
|
|
@@ -1392,9 +1516,9 @@ checksum = "51d515d32fb182ee37cda2ccdcb92950d6a3c2893aa280e540671c2cd0f3b1d9"
|
|
|
1392
1516
|
|
|
1393
1517
|
[[package]]
|
|
1394
1518
|
name = "num-traits"
|
|
1395
|
-
version = "0.2.
|
|
1519
|
+
version = "0.2.19"
|
|
1396
1520
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1397
|
-
checksum = "
|
|
1521
|
+
checksum = "071dfc062690e90b734c0b2273ce72ad0ffa95f0c74596bc250dcfd960262841"
|
|
1398
1522
|
dependencies = [
|
|
1399
1523
|
"autocfg",
|
|
1400
1524
|
]
|
|
@@ -1438,9 +1562,9 @@ checksum = "04744f49eae99ab78e0d5c0b603ab218f515ea8cfe5a456d7629ad883a3b6e7d"
|
|
|
1438
1562
|
|
|
1439
1563
|
[[package]]
|
|
1440
1564
|
name = "parse-zoneinfo"
|
|
1441
|
-
version = "0.3.
|
|
1565
|
+
version = "0.3.1"
|
|
1442
1566
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1443
|
-
checksum = "
|
|
1567
|
+
checksum = "1f2a05b18d44e2957b88f96ba460715e295bc1d7510468a2f3d3b44535d26c24"
|
|
1444
1568
|
dependencies = [
|
|
1445
1569
|
"regex",
|
|
1446
1570
|
]
|
|
@@ -1459,9 +1583,9 @@ checksum = "e3148f5046208a5d56bcfc03053e3ca6334e51da8dfb19b6cdc8b306fae3283e"
|
|
|
1459
1583
|
|
|
1460
1584
|
[[package]]
|
|
1461
1585
|
name = "pest"
|
|
1462
|
-
version = "2.7.
|
|
1586
|
+
version = "2.7.10"
|
|
1463
1587
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1464
|
-
checksum = "
|
|
1588
|
+
checksum = "560131c633294438da9f7c4b08189194b20946c8274c6b9e38881a7874dc8ee8"
|
|
1465
1589
|
dependencies = [
|
|
1466
1590
|
"memchr",
|
|
1467
1591
|
"thiserror",
|
|
@@ -1470,9 +1594,9 @@ dependencies = [
|
|
|
1470
1594
|
|
|
1471
1595
|
[[package]]
|
|
1472
1596
|
name = "pest_derive"
|
|
1473
|
-
version = "2.7.
|
|
1597
|
+
version = "2.7.10"
|
|
1474
1598
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1475
|
-
checksum = "
|
|
1599
|
+
checksum = "26293c9193fbca7b1a3bf9b79dc1e388e927e6cacaa78b4a3ab705a1d3d41459"
|
|
1476
1600
|
dependencies = [
|
|
1477
1601
|
"pest",
|
|
1478
1602
|
"pest_generator",
|
|
@@ -1480,22 +1604,22 @@ dependencies = [
|
|
|
1480
1604
|
|
|
1481
1605
|
[[package]]
|
|
1482
1606
|
name = "pest_generator"
|
|
1483
|
-
version = "2.7.
|
|
1607
|
+
version = "2.7.10"
|
|
1484
1608
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1485
|
-
checksum = "
|
|
1609
|
+
checksum = "3ec22af7d3fb470a85dd2ca96b7c577a1eb4ef6f1683a9fe9a8c16e136c04687"
|
|
1486
1610
|
dependencies = [
|
|
1487
1611
|
"pest",
|
|
1488
1612
|
"pest_meta",
|
|
1489
1613
|
"proc-macro2",
|
|
1490
1614
|
"quote",
|
|
1491
|
-
"syn 2.0.
|
|
1615
|
+
"syn 2.0.63",
|
|
1492
1616
|
]
|
|
1493
1617
|
|
|
1494
1618
|
[[package]]
|
|
1495
1619
|
name = "pest_meta"
|
|
1496
|
-
version = "2.7.
|
|
1620
|
+
version = "2.7.10"
|
|
1497
1621
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1498
|
-
checksum = "
|
|
1622
|
+
checksum = "d7a240022f37c361ec1878d646fc5b7d7c4d28d5946e1a80ad5a7a4f4ca0bdcd"
|
|
1499
1623
|
dependencies = [
|
|
1500
1624
|
"once_cell",
|
|
1501
1625
|
"pest",
|
|
@@ -1540,6 +1664,26 @@ dependencies = [
|
|
|
1540
1664
|
"siphasher",
|
|
1541
1665
|
]
|
|
1542
1666
|
|
|
1667
|
+
[[package]]
|
|
1668
|
+
name = "pin-project"
|
|
1669
|
+
version = "1.1.5"
|
|
1670
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1671
|
+
checksum = "b6bf43b791c5b9e34c3d182969b4abb522f9343702850a2e57f460d00d09b4b3"
|
|
1672
|
+
dependencies = [
|
|
1673
|
+
"pin-project-internal",
|
|
1674
|
+
]
|
|
1675
|
+
|
|
1676
|
+
[[package]]
|
|
1677
|
+
name = "pin-project-internal"
|
|
1678
|
+
version = "1.1.5"
|
|
1679
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1680
|
+
checksum = "2f38a4412a78282e09a2cf38d195ea5420d15ba0602cb375210efbc877243965"
|
|
1681
|
+
dependencies = [
|
|
1682
|
+
"proc-macro2",
|
|
1683
|
+
"quote",
|
|
1684
|
+
"syn 2.0.63",
|
|
1685
|
+
]
|
|
1686
|
+
|
|
1543
1687
|
[[package]]
|
|
1544
1688
|
name = "pin-project-lite"
|
|
1545
1689
|
version = "0.2.14"
|
|
@@ -1594,9 +1738,9 @@ checksum = "dc375e1527247fe1a97d8b7156678dfe7c1af2fc075c9a4db3690ecd2a148068"
|
|
|
1594
1738
|
|
|
1595
1739
|
[[package]]
|
|
1596
1740
|
name = "proc-macro2"
|
|
1597
|
-
version = "1.0.
|
|
1741
|
+
version = "1.0.82"
|
|
1598
1742
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1599
|
-
checksum = "
|
|
1743
|
+
checksum = "8ad3d49ab951a01fbaafe34f2ec74122942fe18a3f9814c3268f1bb72042131b"
|
|
1600
1744
|
dependencies = [
|
|
1601
1745
|
"unicode-ident",
|
|
1602
1746
|
]
|
|
@@ -1653,9 +1797,9 @@ dependencies = [
|
|
|
1653
1797
|
|
|
1654
1798
|
[[package]]
|
|
1655
1799
|
name = "reflink-copy"
|
|
1656
|
-
version = "0.1.
|
|
1800
|
+
version = "0.1.17"
|
|
1657
1801
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1658
|
-
checksum = "
|
|
1802
|
+
checksum = "7c3138c30c59ed9b8572f82bed97ea591ecd7e45012566046cc39e72679cff22"
|
|
1659
1803
|
dependencies = [
|
|
1660
1804
|
"cfg-if",
|
|
1661
1805
|
"rustix",
|
|
@@ -1697,55 +1841,97 @@ version = "0.11.27"
|
|
|
1697
1841
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1698
1842
|
checksum = "dd67538700a17451e7cba03ac727fb961abb7607553461627b97de0b89cf4a62"
|
|
1699
1843
|
dependencies = [
|
|
1700
|
-
"base64",
|
|
1844
|
+
"base64 0.21.7",
|
|
1701
1845
|
"bytes",
|
|
1702
1846
|
"encoding_rs",
|
|
1703
1847
|
"futures-core",
|
|
1704
1848
|
"futures-util",
|
|
1705
1849
|
"h2",
|
|
1706
|
-
"http",
|
|
1707
|
-
"http-body",
|
|
1708
|
-
"hyper",
|
|
1709
|
-
"hyper-rustls",
|
|
1850
|
+
"http 0.2.12",
|
|
1851
|
+
"http-body 0.4.6",
|
|
1852
|
+
"hyper 0.14.28",
|
|
1853
|
+
"hyper-rustls 0.24.2",
|
|
1710
1854
|
"ipnet",
|
|
1711
1855
|
"js-sys",
|
|
1712
1856
|
"log",
|
|
1713
1857
|
"mime",
|
|
1714
|
-
"mime_guess",
|
|
1715
1858
|
"once_cell",
|
|
1716
1859
|
"percent-encoding",
|
|
1717
1860
|
"pin-project-lite",
|
|
1718
|
-
"rustls 0.21.
|
|
1719
|
-
"rustls-pemfile",
|
|
1861
|
+
"rustls 0.21.12",
|
|
1862
|
+
"rustls-pemfile 1.0.4",
|
|
1720
1863
|
"serde",
|
|
1721
1864
|
"serde_json",
|
|
1722
1865
|
"serde_urlencoded",
|
|
1723
1866
|
"sync_wrapper",
|
|
1724
1867
|
"system-configuration",
|
|
1725
1868
|
"tokio",
|
|
1726
|
-
"tokio-rustls",
|
|
1869
|
+
"tokio-rustls 0.24.1",
|
|
1727
1870
|
"tower-service",
|
|
1728
1871
|
"url",
|
|
1729
1872
|
"wasm-bindgen",
|
|
1730
1873
|
"wasm-bindgen-futures",
|
|
1731
1874
|
"web-sys",
|
|
1732
1875
|
"webpki-roots 0.25.4",
|
|
1733
|
-
"winreg",
|
|
1876
|
+
"winreg 0.50.0",
|
|
1877
|
+
]
|
|
1878
|
+
|
|
1879
|
+
[[package]]
|
|
1880
|
+
name = "reqwest"
|
|
1881
|
+
version = "0.12.4"
|
|
1882
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1883
|
+
checksum = "566cafdd92868e0939d3fb961bd0dc25fcfaaed179291093b3d43e6b3150ea10"
|
|
1884
|
+
dependencies = [
|
|
1885
|
+
"async-compression",
|
|
1886
|
+
"base64 0.22.1",
|
|
1887
|
+
"bytes",
|
|
1888
|
+
"futures-core",
|
|
1889
|
+
"futures-util",
|
|
1890
|
+
"http 1.1.0",
|
|
1891
|
+
"http-body 1.0.0",
|
|
1892
|
+
"http-body-util",
|
|
1893
|
+
"hyper 1.3.1",
|
|
1894
|
+
"hyper-rustls 0.26.0",
|
|
1895
|
+
"hyper-util",
|
|
1896
|
+
"ipnet",
|
|
1897
|
+
"js-sys",
|
|
1898
|
+
"log",
|
|
1899
|
+
"mime",
|
|
1900
|
+
"once_cell",
|
|
1901
|
+
"percent-encoding",
|
|
1902
|
+
"pin-project-lite",
|
|
1903
|
+
"rustls 0.22.4",
|
|
1904
|
+
"rustls-pemfile 2.1.2",
|
|
1905
|
+
"rustls-pki-types",
|
|
1906
|
+
"serde",
|
|
1907
|
+
"serde_json",
|
|
1908
|
+
"serde_urlencoded",
|
|
1909
|
+
"sync_wrapper",
|
|
1910
|
+
"tokio",
|
|
1911
|
+
"tokio-rustls 0.25.0",
|
|
1912
|
+
"tokio-util",
|
|
1913
|
+
"tower-service",
|
|
1914
|
+
"url",
|
|
1915
|
+
"wasm-bindgen",
|
|
1916
|
+
"wasm-bindgen-futures",
|
|
1917
|
+
"web-sys",
|
|
1918
|
+
"webpki-roots 0.26.1",
|
|
1919
|
+
"winreg 0.52.0",
|
|
1734
1920
|
]
|
|
1735
1921
|
|
|
1736
1922
|
[[package]]
|
|
1737
1923
|
name = "reqwest-middleware"
|
|
1738
|
-
version = "0.
|
|
1924
|
+
version = "0.3.1"
|
|
1739
1925
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1740
|
-
checksum = "
|
|
1926
|
+
checksum = "a45d100244a467870f6cb763c4484d010a6bed6bd610b3676e3825d93fb4cfbd"
|
|
1741
1927
|
dependencies = [
|
|
1742
1928
|
"anyhow",
|
|
1743
1929
|
"async-trait",
|
|
1744
|
-
"http",
|
|
1745
|
-
"reqwest",
|
|
1930
|
+
"http 1.1.0",
|
|
1931
|
+
"reqwest 0.12.4",
|
|
1746
1932
|
"serde",
|
|
1747
|
-
"task-local-extensions",
|
|
1748
1933
|
"thiserror",
|
|
1934
|
+
"tower-service",
|
|
1749
1935
|
]
|
|
1750
1936
|
|
|
1751
1937
|
[[package]]
|
|
@@ -1777,9 +1963,9 @@ checksum = "b833d8d034ea094b1ea68aa6d5c740e0d04bad9d16568d08ba6f76823a114316"
|
|
|
1777
1963
|
|
|
1778
1964
|
[[package]]
|
|
1779
1965
|
name = "rust-embed"
|
|
1780
|
-
version = "8.
|
|
1966
|
+
version = "8.4.0"
|
|
1781
1967
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1782
|
-
checksum = "
|
|
1968
|
+
checksum = "19549741604902eb99a7ed0ee177a0663ee1eda51a29f71401f166e47e77806a"
|
|
1783
1969
|
dependencies = [
|
|
1784
1970
|
"include-flate",
|
|
1785
1971
|
"rust-embed-impl",
|
|
@@ -1789,22 +1975,22 @@ dependencies = [
|
|
|
1789
1975
|
|
|
1790
1976
|
[[package]]
|
|
1791
1977
|
name = "rust-embed-impl"
|
|
1792
|
-
version = "8.
|
|
1978
|
+
version = "8.4.0"
|
|
1793
1979
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1794
|
-
checksum = "
|
|
1980
|
+
checksum = "cb9f96e283ec64401f30d3df8ee2aaeb2561f34c824381efa24a35f79bf40ee4"
|
|
1795
1981
|
dependencies = [
|
|
1796
1982
|
"proc-macro2",
|
|
1797
1983
|
"quote",
|
|
1798
1984
|
"rust-embed-utils",
|
|
1799
|
-
"syn 2.0.
|
|
1985
|
+
"syn 2.0.63",
|
|
1800
1986
|
"walkdir",
|
|
1801
1987
|
]
|
|
1802
1988
|
|
|
1803
1989
|
[[package]]
|
|
1804
1990
|
name = "rust-embed-utils"
|
|
1805
|
-
version = "8.
|
|
1991
|
+
version = "8.4.0"
|
|
1806
1992
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1807
|
-
checksum = "
|
|
1993
|
+
checksum = "38c74a686185620830701348de757fd36bef4aa9680fd23c49fc539ddcc1af32"
|
|
1808
1994
|
dependencies = [
|
|
1809
1995
|
"sha2",
|
|
1810
1996
|
"walkdir",
|
|
@@ -1812,15 +1998,15 @@ dependencies = [
|
|
|
1812
1998
|
|
|
1813
1999
|
[[package]]
|
|
1814
2000
|
name = "rustc-demangle"
|
|
1815
|
-
version = "0.1.
|
|
2001
|
+
version = "0.1.24"
|
|
1816
2002
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1817
|
-
checksum = "
|
|
2003
|
+
checksum = "719b953e2095829ee67db738b3bfa9fa368c94900df327b3f07fe6e794d2fe1f"
|
|
1818
2004
|
|
|
1819
2005
|
[[package]]
|
|
1820
2006
|
name = "rustix"
|
|
1821
|
-
version = "0.38.
|
|
2007
|
+
version = "0.38.34"
|
|
1822
2008
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1823
|
-
checksum = "
|
|
2009
|
+
checksum = "70dc5ec042f7a43c4a73241207cecc9873a06d45debb38b329f8541d85c2730f"
|
|
1824
2010
|
dependencies = [
|
|
1825
2011
|
"bitflags 2.5.0",
|
|
1826
2012
|
"errno",
|
|
@@ -1831,9 +2017,9 @@ dependencies = [
|
|
|
1831
2017
|
|
|
1832
2018
|
[[package]]
|
|
1833
2019
|
name = "rustls"
|
|
1834
|
-
version = "0.21.
|
|
2020
|
+
version = "0.21.12"
|
|
1835
2021
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1836
|
-
checksum = "
|
|
2022
|
+
checksum = "3f56a14d1f48b391359b22f731fd4bd7e43c97f3c50eee276f3aa09c94784d3e"
|
|
1837
2023
|
dependencies = [
|
|
1838
2024
|
"log",
|
|
1839
2025
|
"ring",
|
|
@@ -1843,14 +2029,14 @@ dependencies = [
|
|
|
1843
2029
|
|
|
1844
2030
|
[[package]]
|
|
1845
2031
|
name = "rustls"
|
|
1846
|
-
version = "0.22.
|
|
2032
|
+
version = "0.22.4"
|
|
1847
2033
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1848
|
-
checksum = "
|
|
2034
|
+
checksum = "bf4ef73721ac7bcd79b2b315da7779d8fc09718c6b3d2d1b2d94850eb8c18432"
|
|
1849
2035
|
dependencies = [
|
|
1850
2036
|
"log",
|
|
1851
2037
|
"ring",
|
|
1852
2038
|
"rustls-pki-types",
|
|
1853
|
-
"rustls-webpki 0.102.
|
|
2039
|
+
"rustls-webpki 0.102.3",
|
|
1854
2040
|
"subtle",
|
|
1855
2041
|
"zeroize",
|
|
1856
2042
|
]
|
|
@@ -1861,14 +2047,24 @@ version = "1.0.4"
|
|
|
1861
2047
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1862
2048
|
checksum = "1c74cae0a4cf6ccbbf5f359f08efdf8ee7e1dc532573bf0db71968cb56b1448c"
|
|
1863
2049
|
dependencies = [
|
|
1864
|
-
"base64",
|
|
2050
|
+
"base64 0.21.7",
|
|
2051
|
+
]
|
|
2052
|
+
|
|
2053
|
+
[[package]]
|
|
2054
|
+
name = "rustls-pemfile"
|
|
2055
|
+
version = "2.1.2"
|
|
2056
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2057
|
+
checksum = "29993a25686778eb88d4189742cd713c9bce943bc54251a33509dc63cbacf73d"
|
|
2058
|
+
dependencies = [
|
|
2059
|
+
"base64 0.22.1",
|
|
2060
|
+
"rustls-pki-types",
|
|
1865
2061
|
]
|
|
1866
2062
|
|
|
1867
2063
|
[[package]]
|
|
1868
2064
|
name = "rustls-pki-types"
|
|
1869
|
-
version = "1.
|
|
2065
|
+
version = "1.7.0"
|
|
1870
2066
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1871
|
-
checksum = "
|
|
2067
|
+
checksum = "976295e77ce332211c0d24d92c0e83e50f5c5f046d11082cea19f3df13a3562d"
|
|
1872
2068
|
|
|
1873
2069
|
[[package]]
|
|
1874
2070
|
name = "rustls-webpki"
|
|
@@ -1882,9 +2078,9 @@ dependencies = [
|
|
|
1882
2078
|
|
|
1883
2079
|
[[package]]
|
|
1884
2080
|
name = "rustls-webpki"
|
|
1885
|
-
version = "0.102.
|
|
2081
|
+
version = "0.102.3"
|
|
1886
2082
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1887
|
-
checksum = "
|
|
2083
|
+
checksum = "f3bce581c0dd41bce533ce695a1437fa16a7ab5ac3ccfa99fe1a620a7885eabf"
|
|
1888
2084
|
dependencies = [
|
|
1889
2085
|
"ring",
|
|
1890
2086
|
"rustls-pki-types",
|
|
@@ -1893,9 +2089,9 @@ dependencies = [
|
|
|
1893
2089
|
|
|
1894
2090
|
[[package]]
|
|
1895
2091
|
name = "ryu"
|
|
1896
|
-
version = "1.0.
|
|
2092
|
+
version = "1.0.18"
|
|
1897
2093
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1898
|
-
checksum = "
|
|
2094
|
+
checksum = "f3cb5ba0dc43242ce17de99c180e96db90b235b8a9fdc9543c96d2209116bd9f"
|
|
1899
2095
|
|
|
1900
2096
|
[[package]]
|
|
1901
2097
|
name = "same-file"
|
|
@@ -1928,35 +2124,35 @@ dependencies = [
|
|
|
1928
2124
|
|
|
1929
2125
|
[[package]]
|
|
1930
2126
|
name = "semver"
|
|
1931
|
-
version = "1.0.
|
|
2127
|
+
version = "1.0.23"
|
|
1932
2128
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1933
|
-
checksum = "
|
|
2129
|
+
checksum = "61697e0a1c7e512e84a621326239844a24d8207b4669b41bc18b32ea5cbf988b"
|
|
1934
2130
|
|
|
1935
2131
|
[[package]]
|
|
1936
2132
|
name = "serde"
|
|
1937
|
-
version = "1.0.
|
|
2133
|
+
version = "1.0.201"
|
|
1938
2134
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1939
|
-
checksum = "
|
|
2135
|
+
checksum = "780f1cebed1629e4753a1a38a3c72d30b97ec044f0aef68cb26650a3c5cf363c"
|
|
1940
2136
|
dependencies = [
|
|
1941
2137
|
"serde_derive",
|
|
1942
2138
|
]
|
|
1943
2139
|
|
|
1944
2140
|
[[package]]
|
|
1945
2141
|
name = "serde_derive"
|
|
1946
|
-
version = "1.0.
|
|
2142
|
+
version = "1.0.201"
|
|
1947
2143
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1948
|
-
checksum = "
|
|
2144
|
+
checksum = "c5e405930b9796f1c00bee880d03fc7e0bb4b9a11afc776885ffe84320da2865"
|
|
1949
2145
|
dependencies = [
|
|
1950
2146
|
"proc-macro2",
|
|
1951
2147
|
"quote",
|
|
1952
|
-
"syn 2.0.
|
|
2148
|
+
"syn 2.0.63",
|
|
1953
2149
|
]
|
|
1954
2150
|
|
|
1955
2151
|
[[package]]
|
|
1956
2152
|
name = "serde_json"
|
|
1957
|
-
version = "1.0.
|
|
2153
|
+
version = "1.0.117"
|
|
1958
2154
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1959
|
-
checksum = "
|
|
2155
|
+
checksum = "455182ea6142b14f93f4bc5320a2b31c1f266b66a4a5c858b013302a5d8cbfc3"
|
|
1960
2156
|
dependencies = [
|
|
1961
2157
|
"itoa",
|
|
1962
2158
|
"ryu",
|
|
@@ -2061,11 +2257,17 @@ dependencies = [
|
|
|
2061
2257
|
"wasm-bindgen",
|
|
2062
2258
|
]
|
|
2063
2259
|
|
|
2260
|
+
[[package]]
|
|
2261
|
+
name = "smallvec"
|
|
2262
|
+
version = "1.13.2"
|
|
2263
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2264
|
+
checksum = "3c5e1a9a646d36c3599cd173a41282daf47c44583ad367b8e6837255952e5c67"
|
|
2265
|
+
|
|
2064
2266
|
[[package]]
|
|
2065
2267
|
name = "socket2"
|
|
2066
|
-
version = "0.5.
|
|
2268
|
+
version = "0.5.7"
|
|
2067
2269
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2068
|
-
checksum = "
|
|
2270
|
+
checksum = "ce305eb0b4296696835b71df73eb912e0f1ffd2556a501fcede6e0c50349191c"
|
|
2069
2271
|
dependencies = [
|
|
2070
2272
|
"libc",
|
|
2071
2273
|
"windows-sys 0.52.0",
|
|
@@ -2083,7 +2285,7 @@ version = "9.2.0"
|
|
|
2083
2285
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2084
2286
|
checksum = "da7a2b3c2bc9693bcb40870c4e9b5bf0d79f9cb46273321bf855ec513e919082"
|
|
2085
2287
|
dependencies = [
|
|
2086
|
-
"base64",
|
|
2288
|
+
"base64 0.21.7",
|
|
2087
2289
|
"digest",
|
|
2088
2290
|
"hex",
|
|
2089
2291
|
"miette",
|
|
@@ -2119,9 +2321,9 @@ dependencies = [
|
|
|
2119
2321
|
|
|
2120
2322
|
[[package]]
|
|
2121
2323
|
name = "syn"
|
|
2122
|
-
version = "2.0.
|
|
2324
|
+
version = "2.0.63"
|
|
2123
2325
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2124
|
-
checksum = "
|
|
2326
|
+
checksum = "bf5be731623ca1a1fb7d8be6f261a3be6d3e2337b8a1f97be944d020c8fcb704"
|
|
2125
2327
|
dependencies = [
|
|
2126
2328
|
"proc-macro2",
|
|
2127
2329
|
"quote",
|
|
@@ -2155,15 +2357,6 @@ dependencies = [
|
|
|
2155
2357
|
"libc",
|
|
2156
2358
|
]
|
|
2157
2359
|
|
|
2158
|
-
[[package]]
|
|
2159
|
-
name = "task-local-extensions"
|
|
2160
|
-
version = "0.1.4"
|
|
2161
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2162
|
-
checksum = "ba323866e5d033818e3240feeb9f7db2c4296674e4d9e16b97b7bf8f490434e8"
|
|
2163
|
-
dependencies = [
|
|
2164
|
-
"pin-utils",
|
|
2165
|
-
]
|
|
2166
|
-
|
|
2167
2360
|
[[package]]
|
|
2168
2361
|
name = "tempfile"
|
|
2169
2362
|
version = "3.10.1"
|
|
@@ -2219,29 +2412,29 @@ dependencies = [
|
|
|
2219
2412
|
|
|
2220
2413
|
[[package]]
|
|
2221
2414
|
name = "thiserror"
|
|
2222
|
-
version = "1.0.
|
|
2415
|
+
version = "1.0.60"
|
|
2223
2416
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2224
|
-
checksum = "
|
|
2417
|
+
checksum = "579e9083ca58dd9dcf91a9923bb9054071b9ebbd800b342194c9feb0ee89fc18"
|
|
2225
2418
|
dependencies = [
|
|
2226
2419
|
"thiserror-impl",
|
|
2227
2420
|
]
|
|
2228
2421
|
|
|
2229
2422
|
[[package]]
|
|
2230
2423
|
name = "thiserror-impl"
|
|
2231
|
-
version = "1.0.
|
|
2424
|
+
version = "1.0.60"
|
|
2232
2425
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2233
|
-
checksum = "
|
|
2426
|
+
checksum = "e2470041c06ec3ac1ab38d0356a6119054dedaea53e12fbefc0de730a1c08524"
|
|
2234
2427
|
dependencies = [
|
|
2235
2428
|
"proc-macro2",
|
|
2236
2429
|
"quote",
|
|
2237
|
-
"syn 2.0.
|
|
2430
|
+
"syn 2.0.63",
|
|
2238
2431
|
]
|
|
2239
2432
|
|
|
2240
2433
|
[[package]]
|
|
2241
2434
|
name = "time"
|
|
2242
|
-
version = "0.3.
|
|
2435
|
+
version = "0.3.36"
|
|
2243
2436
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2244
|
-
checksum = "
|
|
2437
|
+
checksum = "5dfd88e563464686c916c7e46e623e520ddc6d79fa6641390f2e3fa86e83e885"
|
|
2245
2438
|
dependencies = [
|
|
2246
2439
|
"deranged",
|
|
2247
2440
|
"itoa",
|
|
@@ -2308,7 +2501,7 @@ checksum = "5b8a1e28f2deaa14e508979454cb3a223b10b938b45af148bc0986de36f1923b"
|
|
|
2308
2501
|
dependencies = [
|
|
2309
2502
|
"proc-macro2",
|
|
2310
2503
|
"quote",
|
|
2311
|
-
"syn 2.0.
|
|
2504
|
+
"syn 2.0.63",
|
|
2312
2505
|
]
|
|
2313
2506
|
|
|
2314
2507
|
[[package]]
|
|
@@ -2317,7 +2510,18 @@ version = "0.24.1"
|
|
|
2317
2510
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2318
2511
|
checksum = "c28327cf380ac148141087fbfb9de9d7bd4e84ab5d2c28fbc911d753de8a7081"
|
|
2319
2512
|
dependencies = [
|
|
2320
|
-
"rustls 0.21.
|
|
2513
|
+
"rustls 0.21.12",
|
|
2514
|
+
"tokio",
|
|
2515
|
+
]
|
|
2516
|
+
|
|
2517
|
+
[[package]]
|
|
2518
|
+
name = "tokio-rustls"
|
|
2519
|
+
version = "0.25.0"
|
|
2520
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2521
|
+
checksum = "775e0c0f0adb3a2f22a00c4745d728b479985fc15ee7ca6a2608388c5569860f"
|
|
2522
|
+
dependencies = [
|
|
2523
|
+
"rustls 0.22.4",
|
|
2524
|
+
"rustls-pki-types",
|
|
2321
2525
|
"tokio",
|
|
2322
2526
|
]
|
|
2323
2527
|
|
|
@@ -2334,16 +2538,15 @@ dependencies = [
|
|
|
2334
2538
|
|
|
2335
2539
|
[[package]]
|
|
2336
2540
|
name = "tokio-util"
|
|
2337
|
-
version = "0.7.
|
|
2541
|
+
version = "0.7.11"
|
|
2338
2542
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2339
|
-
checksum = "
|
|
2543
|
+
checksum = "9cf6b47b3771c49ac75ad09a6162f53ad4b8088b76ac60e8ec1455b31a189fe1"
|
|
2340
2544
|
dependencies = [
|
|
2341
2545
|
"bytes",
|
|
2342
2546
|
"futures-core",
|
|
2343
2547
|
"futures-sink",
|
|
2344
2548
|
"pin-project-lite",
|
|
2345
2549
|
"tokio",
|
|
2346
|
-
"tracing",
|
|
2347
2550
|
]
|
|
2348
2551
|
|
|
2349
2552
|
[[package]]
|
|
@@ -2369,9 +2572,9 @@ dependencies = [
|
|
|
2369
2572
|
|
|
2370
2573
|
[[package]]
|
|
2371
2574
|
name = "toml_edit"
|
|
2372
|
-
version = "0.22.
|
|
2575
|
+
version = "0.22.12"
|
|
2373
2576
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2374
|
-
checksum = "
|
|
2577
|
+
checksum = "d3328d4f68a705b2a4498da1d580585d39a6510f98318a2cec3018a7ec61ddef"
|
|
2375
2578
|
dependencies = [
|
|
2376
2579
|
"indexmap",
|
|
2377
2580
|
"serde",
|
|
@@ -2380,6 +2583,28 @@ dependencies = [
|
|
|
2380
2583
|
"winnow",
|
|
2381
2584
|
]
|
|
2382
2585
|
|
|
2586
|
+
[[package]]
|
|
2587
|
+
name = "tower"
|
|
2588
|
+
version = "0.4.13"
|
|
2589
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2590
|
+
checksum = "b8fa9be0de6cf49e536ce1851f987bd21a43b771b09473c3549a6c853db37c1c"
|
|
2591
|
+
dependencies = [
|
|
2592
|
+
"futures-core",
|
|
2593
|
+
"futures-util",
|
|
2594
|
+
"pin-project",
|
|
2595
|
+
"pin-project-lite",
|
|
2596
|
+
"tokio",
|
|
2597
|
+
"tower-layer",
|
|
2598
|
+
"tower-service",
|
|
2599
|
+
"tracing",
|
|
2600
|
+
]
|
|
2601
|
+
|
|
2602
|
+
[[package]]
|
|
2603
|
+
name = "tower-layer"
|
|
2604
|
+
version = "0.3.2"
|
|
2605
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2606
|
+
checksum = "c20c8dbed6283a09604c3e69b4b7eeb54e298b8a600d4d5ecb5ad39de609f1d0"
|
|
2607
|
+
|
|
2383
2608
|
[[package]]
|
|
2384
2609
|
name = "tower-service"
|
|
2385
2610
|
version = "0.3.2"
|
|
@@ -2392,6 +2617,7 @@ version = "0.1.40"
|
|
|
2392
2617
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2393
2618
|
checksum = "c3523ab5a71916ccf420eebdf5521fcef02141234bbc0b8a49f2fdc4544364ef"
|
|
2394
2619
|
dependencies = [
|
|
2620
|
+
"log",
|
|
2395
2621
|
"pin-project-lite",
|
|
2396
2622
|
"tracing-core",
|
|
2397
2623
|
]
|
|
@@ -2505,9 +2731,9 @@ dependencies = [
|
|
|
2505
2731
|
|
|
2506
2732
|
[[package]]
|
|
2507
2733
|
name = "unicode-width"
|
|
2508
|
-
version = "0.1.
|
|
2734
|
+
version = "0.1.12"
|
|
2509
2735
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2510
|
-
checksum = "
|
|
2736
|
+
checksum = "68f5e5f3158ecfd4b8ff6fe086db7c8467a2dfdac97fe420f2b7c4aa97af66d6"
|
|
2511
2737
|
|
|
2512
2738
|
[[package]]
|
|
2513
2739
|
name = "untrusted"
|
|
@@ -2522,7 +2748,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
2522
2748
|
checksum = "2f8811797a24ff123db3c6e1087aa42551d03d772b3724be421ad063da1f5f3f"
|
|
2523
2749
|
dependencies = [
|
|
2524
2750
|
"directories",
|
|
2525
|
-
"reqwest",
|
|
2751
|
+
"reqwest 0.11.27",
|
|
2526
2752
|
"semver",
|
|
2527
2753
|
"serde",
|
|
2528
2754
|
"serde_json",
|
|
@@ -2531,17 +2757,17 @@ dependencies = [
|
|
|
2531
2757
|
|
|
2532
2758
|
[[package]]
|
|
2533
2759
|
name = "ureq"
|
|
2534
|
-
version = "2.9.
|
|
2760
|
+
version = "2.9.7"
|
|
2535
2761
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2536
|
-
checksum = "
|
|
2762
|
+
checksum = "d11a831e3c0b56e438a28308e7c810799e3c118417f342d30ecec080105395cd"
|
|
2537
2763
|
dependencies = [
|
|
2538
|
-
"base64",
|
|
2764
|
+
"base64 0.22.1",
|
|
2539
2765
|
"flate2",
|
|
2540
2766
|
"log",
|
|
2541
2767
|
"once_cell",
|
|
2542
|
-
"rustls 0.22.
|
|
2768
|
+
"rustls 0.22.4",
|
|
2543
2769
|
"rustls-pki-types",
|
|
2544
|
-
"rustls-webpki 0.102.
|
|
2770
|
+
"rustls-webpki 0.102.3",
|
|
2545
2771
|
"serde",
|
|
2546
2772
|
"serde_json",
|
|
2547
2773
|
"url",
|
|
@@ -2624,7 +2850,7 @@ dependencies = [
|
|
|
2624
2850
|
"once_cell",
|
|
2625
2851
|
"proc-macro2",
|
|
2626
2852
|
"quote",
|
|
2627
|
-
"syn 2.0.
|
|
2853
|
+
"syn 2.0.63",
|
|
2628
2854
|
"wasm-bindgen-shared",
|
|
2629
2855
|
]
|
|
2630
2856
|
|
|
@@ -2658,7 +2884,7 @@ checksum = "e94f17b526d0a461a191c78ea52bbce64071ed5c04c9ffe424dcb38f74171bb7"
|
|
|
2658
2884
|
dependencies = [
|
|
2659
2885
|
"proc-macro2",
|
|
2660
2886
|
"quote",
|
|
2661
|
-
"syn 2.0.
|
|
2887
|
+
"syn 2.0.63",
|
|
2662
2888
|
"wasm-bindgen-backend",
|
|
2663
2889
|
"wasm-bindgen-shared",
|
|
2664
2890
|
]
|
|
@@ -2695,72 +2921,74 @@ dependencies = [
|
|
|
2695
2921
|
]
|
|
2696
2922
|
|
|
2697
2923
|
[[package]]
|
|
2698
|
-
name = "winapi"
|
|
2699
|
-
version = "0.
|
|
2924
|
+
name = "winapi-util"
|
|
2925
|
+
version = "0.1.8"
|
|
2700
2926
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2701
|
-
checksum = "
|
|
2927
|
+
checksum = "4d4cc384e1e73b93bafa6fb4f1df8c41695c8a91cf9c4c64358067d15a7b6c6b"
|
|
2702
2928
|
dependencies = [
|
|
2703
|
-
"
|
|
2704
|
-
"winapi-x86_64-pc-windows-gnu",
|
|
2929
|
+
"windows-sys 0.52.0",
|
|
2705
2930
|
]
|
|
2706
2931
|
|
|
2707
2932
|
[[package]]
|
|
2708
|
-
name = "
|
|
2709
|
-
version = "0.
|
|
2710
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2711
|
-
checksum = "ac3b87c63620426dd9b991e5ce0329eff545bccbbb34f3be09ff6fb6ab51b7b6"
|
|
2712
|
-
|
|
2713
|
-
[[package]]
|
|
2714
|
-
name = "winapi-util"
|
|
2715
|
-
version = "0.1.6"
|
|
2933
|
+
name = "windows"
|
|
2934
|
+
version = "0.56.0"
|
|
2716
2935
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2717
|
-
checksum = "
|
|
2936
|
+
checksum = "1de69df01bdf1ead2f4ac895dc77c9351aefff65b2f3db429a343f9cbf05e132"
|
|
2718
2937
|
dependencies = [
|
|
2719
|
-
"
|
|
2938
|
+
"windows-core 0.56.0",
|
|
2939
|
+
"windows-targets 0.52.5",
|
|
2720
2940
|
]
|
|
2721
2941
|
|
|
2722
2942
|
[[package]]
|
|
2723
|
-
name = "
|
|
2724
|
-
version = "0.
|
|
2943
|
+
name = "windows-core"
|
|
2944
|
+
version = "0.52.0"
|
|
2725
2945
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2726
|
-
checksum = "
|
|
2946
|
+
checksum = "33ab640c8d7e35bf8ba19b884ba838ceb4fba93a4e8c65a9059d08afcfc683d9"
|
|
2947
|
+
dependencies = [
|
|
2948
|
+
"windows-targets 0.52.5",
|
|
2949
|
+
]
|
|
2727
2950
|
|
|
2728
2951
|
[[package]]
|
|
2729
|
-
name = "windows"
|
|
2730
|
-
version = "0.
|
|
2952
|
+
name = "windows-core"
|
|
2953
|
+
version = "0.56.0"
|
|
2731
2954
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2732
|
-
checksum = "
|
|
2955
|
+
checksum = "4698e52ed2d08f8658ab0c39512a7c00ee5fe2688c65f8c0a4f06750d729f2a6"
|
|
2733
2956
|
dependencies = [
|
|
2734
|
-
"windows-
|
|
2735
|
-
"windows-
|
|
2957
|
+
"windows-implement",
|
|
2958
|
+
"windows-interface",
|
|
2959
|
+
"windows-result",
|
|
2960
|
+
"windows-targets 0.52.5",
|
|
2736
2961
|
]
|
|
2737
2962
|
|
|
2738
2963
|
[[package]]
|
|
2739
|
-
name = "windows-
|
|
2740
|
-
version = "0.
|
|
2964
|
+
name = "windows-implement"
|
|
2965
|
+
version = "0.56.0"
|
|
2741
2966
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2742
|
-
checksum = "
|
|
2967
|
+
checksum = "f6fc35f58ecd95a9b71c4f2329b911016e6bec66b3f2e6a4aad86bd2e99e2f9b"
|
|
2743
2968
|
dependencies = [
|
|
2744
|
-
"
|
|
2969
|
+
"proc-macro2",
|
|
2970
|
+
"quote",
|
|
2971
|
+
"syn 2.0.63",
|
|
2745
2972
|
]
|
|
2746
2973
|
|
|
2747
2974
|
[[package]]
|
|
2748
|
-
name = "windows-
|
|
2749
|
-
version = "0.
|
|
2975
|
+
name = "windows-interface"
|
|
2976
|
+
version = "0.56.0"
|
|
2750
2977
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2751
|
-
checksum = "
|
|
2978
|
+
checksum = "08990546bf4edef8f431fa6326e032865f27138718c587dc21bc0265bbcb57cc"
|
|
2752
2979
|
dependencies = [
|
|
2753
|
-
"
|
|
2754
|
-
"
|
|
2980
|
+
"proc-macro2",
|
|
2981
|
+
"quote",
|
|
2982
|
+
"syn 2.0.63",
|
|
2755
2983
|
]
|
|
2756
2984
|
|
|
2757
2985
|
[[package]]
|
|
2758
2986
|
name = "windows-result"
|
|
2759
|
-
version = "0.1.
|
|
2987
|
+
version = "0.1.1"
|
|
2760
2988
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2761
|
-
checksum = "
|
|
2989
|
+
checksum = "749f0da9cc72d82e600d8d2e44cadd0b9eedb9038f71a1c58556ac1c5791813b"
|
|
2762
2990
|
dependencies = [
|
|
2763
|
-
"windows-targets 0.52.
|
|
2991
|
+
"windows-targets 0.52.5",
|
|
2764
2992
|
]
|
|
2765
2993
|
|
|
2766
2994
|
[[package]]
|
|
@@ -2778,7 +3006,7 @@ version = "0.52.0"
|
|
|
2778
3006
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2779
3007
|
checksum = "282be5f36a8ce781fad8c8ae18fa3f9beff57ec1b52cb3de0789201425d9a33d"
|
|
2780
3008
|
dependencies = [
|
|
2781
|
-
"windows-targets 0.52.
|
|
3009
|
+
"windows-targets 0.52.5",
|
|
2782
3010
|
]
|
|
2783
3011
|
|
|
2784
3012
|
[[package]]
|
|
@@ -2798,17 +3026,18 @@ dependencies = [
|
|
|
2798
3026
|
|
|
2799
3027
|
[[package]]
|
|
2800
3028
|
name = "windows-targets"
|
|
2801
|
-
version = "0.52.
|
|
3029
|
+
version = "0.52.5"
|
|
2802
3030
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2803
|
-
checksum = "
|
|
3031
|
+
checksum = "6f0713a46559409d202e70e28227288446bf7841d3211583a4b53e3f6d96e7eb"
|
|
2804
3032
|
dependencies = [
|
|
2805
|
-
"windows_aarch64_gnullvm 0.52.
|
|
2806
|
-
"windows_aarch64_msvc 0.52.
|
|
2807
|
-
"windows_i686_gnu 0.52.
|
|
2808
|
-
"
|
|
2809
|
-
"
|
|
2810
|
-
"
|
|
2811
|
-
"
|
|
3033
|
+
"windows_aarch64_gnullvm 0.52.5",
|
|
3034
|
+
"windows_aarch64_msvc 0.52.5",
|
|
3035
|
+
"windows_i686_gnu 0.52.5",
|
|
3036
|
+
"windows_i686_gnullvm",
|
|
3037
|
+
"windows_i686_msvc 0.52.5",
|
|
3038
|
+
"windows_x86_64_gnu 0.52.5",
|
|
3039
|
+
"windows_x86_64_gnullvm 0.52.5",
|
|
3040
|
+
"windows_x86_64_msvc 0.52.5",
|
|
2812
3041
|
]
|
|
2813
3042
|
|
|
2814
3043
|
[[package]]
|
|
@@ -2819,9 +3048,9 @@ checksum = "2b38e32f0abccf9987a4e3079dfb67dcd799fb61361e53e2882c3cbaf0d905d8"
|
|
|
2819
3048
|
|
|
2820
3049
|
[[package]]
|
|
2821
3050
|
name = "windows_aarch64_gnullvm"
|
|
2822
|
-
version = "0.52.
|
|
3051
|
+
version = "0.52.5"
|
|
2823
3052
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2824
|
-
checksum = "
|
|
3053
|
+
checksum = "7088eed71e8b8dda258ecc8bac5fb1153c5cffaf2578fc8ff5d61e23578d3263"
|
|
2825
3054
|
|
|
2826
3055
|
[[package]]
|
|
2827
3056
|
name = "windows_aarch64_msvc"
|
|
@@ -2831,9 +3060,9 @@ checksum = "dc35310971f3b2dbbf3f0690a219f40e2d9afcf64f9ab7cc1be722937c26b4bc"
|
|
|
2831
3060
|
|
|
2832
3061
|
[[package]]
|
|
2833
3062
|
name = "windows_aarch64_msvc"
|
|
2834
|
-
version = "0.52.
|
|
3063
|
+
version = "0.52.5"
|
|
2835
3064
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2836
|
-
checksum = "
|
|
3065
|
+
checksum = "9985fd1504e250c615ca5f281c3f7a6da76213ebd5ccc9561496568a2752afb6"
|
|
2837
3066
|
|
|
2838
3067
|
[[package]]
|
|
2839
3068
|
name = "windows_i686_gnu"
|
|
@@ -2843,9 +3072,15 @@ checksum = "a75915e7def60c94dcef72200b9a8e58e5091744960da64ec734a6c6e9b3743e"
|
|
|
2843
3072
|
|
|
2844
3073
|
[[package]]
|
|
2845
3074
|
name = "windows_i686_gnu"
|
|
2846
|
-
version = "0.52.
|
|
3075
|
+
version = "0.52.5"
|
|
2847
3076
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2848
|
-
checksum = "
|
|
3077
|
+
checksum = "88ba073cf16d5372720ec942a8ccbf61626074c6d4dd2e745299726ce8b89670"
|
|
3078
|
+
|
|
3079
|
+
[[package]]
|
|
3080
|
+
name = "windows_i686_gnullvm"
|
|
3081
|
+
version = "0.52.5"
|
|
3082
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3083
|
+
checksum = "87f4261229030a858f36b459e748ae97545d6f1ec60e5e0d6a3d32e0dc232ee9"
|
|
2849
3084
|
|
|
2850
3085
|
[[package]]
|
|
2851
3086
|
name = "windows_i686_msvc"
|
|
@@ -2855,9 +3090,9 @@ checksum = "8f55c233f70c4b27f66c523580f78f1004e8b5a8b659e05a4eb49d4166cca406"
|
|
|
2855
3090
|
|
|
2856
3091
|
[[package]]
|
|
2857
3092
|
name = "windows_i686_msvc"
|
|
2858
|
-
version = "0.52.
|
|
3093
|
+
version = "0.52.5"
|
|
2859
3094
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2860
|
-
checksum = "
|
|
3095
|
+
checksum = "db3c2bf3d13d5b658be73463284eaf12830ac9a26a90c717b7f771dfe97487bf"
|
|
2861
3096
|
|
|
2862
3097
|
[[package]]
|
|
2863
3098
|
name = "windows_x86_64_gnu"
|
|
@@ -2867,9 +3102,9 @@ checksum = "53d40abd2583d23e4718fddf1ebec84dbff8381c07cae67ff7768bbf19c6718e"
|
|
|
2867
3102
|
|
|
2868
3103
|
[[package]]
|
|
2869
3104
|
name = "windows_x86_64_gnu"
|
|
2870
|
-
version = "0.52.
|
|
3105
|
+
version = "0.52.5"
|
|
2871
3106
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2872
|
-
checksum = "
|
|
3107
|
+
checksum = "4e4246f76bdeff09eb48875a0fd3e2af6aada79d409d33011886d3e1581517d9"
|
|
2873
3108
|
|
|
2874
3109
|
[[package]]
|
|
2875
3110
|
name = "windows_x86_64_gnullvm"
|
|
@@ -2879,9 +3114,9 @@ checksum = "0b7b52767868a23d5bab768e390dc5f5c55825b6d30b86c844ff2dc7414044cc"
|
|
|
2879
3114
|
|
|
2880
3115
|
[[package]]
|
|
2881
3116
|
name = "windows_x86_64_gnullvm"
|
|
2882
|
-
version = "0.52.
|
|
3117
|
+
version = "0.52.5"
|
|
2883
3118
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2884
|
-
checksum = "
|
|
3119
|
+
checksum = "852298e482cd67c356ddd9570386e2862b5673c85bd5f88df9ab6802b334c596"
|
|
2885
3120
|
|
|
2886
3121
|
[[package]]
|
|
2887
3122
|
name = "windows_x86_64_msvc"
|
|
@@ -2891,15 +3126,15 @@ checksum = "ed94fce61571a4006852b7389a063ab983c02eb1bb37b47f8272ce92d06d9538"
|
|
|
2891
3126
|
|
|
2892
3127
|
[[package]]
|
|
2893
3128
|
name = "windows_x86_64_msvc"
|
|
2894
|
-
version = "0.52.
|
|
3129
|
+
version = "0.52.5"
|
|
2895
3130
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2896
|
-
checksum = "
|
|
3131
|
+
checksum = "bec47e5bfd1bff0eeaf6d8b485cc1074891a197ab4225d504cb7a1ab88b02bf0"
|
|
2897
3132
|
|
|
2898
3133
|
[[package]]
|
|
2899
3134
|
name = "winnow"
|
|
2900
|
-
version = "0.6.
|
|
3135
|
+
version = "0.6.8"
|
|
2901
3136
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2902
|
-
checksum = "
|
|
3137
|
+
checksum = "c3c52e9c97a68071b23e836c9380edae937f17b9c4667bd021973efc689f618d"
|
|
2903
3138
|
dependencies = [
|
|
2904
3139
|
"memchr",
|
|
2905
3140
|
]
|
|
@@ -2914,6 +3149,16 @@ dependencies = [
|
|
|
2914
3149
|
"windows-sys 0.48.0",
|
|
2915
3150
|
]
|
|
2916
3151
|
|
|
3152
|
+
[[package]]
|
|
3153
|
+
name = "winreg"
|
|
3154
|
+
version = "0.52.0"
|
|
3155
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3156
|
+
checksum = "a277a57398d4bfa075df44f501a17cfdf8542d224f0d36095a2adc7aee4ef0a5"
|
|
3157
|
+
dependencies = [
|
|
3158
|
+
"cfg-if",
|
|
3159
|
+
"windows-sys 0.48.0",
|
|
3160
|
+
]
|
|
3161
|
+
|
|
2917
3162
|
[[package]]
|
|
2918
3163
|
name = "xxhash-rust"
|
|
2919
3164
|
version = "0.8.10"
|
|
@@ -2940,3 +3185,31 @@ name = "zeroize"
|
|
|
2940
3185
|
version = "1.7.0"
|
|
2941
3186
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2942
3187
|
checksum = "525b4ec142c6b68a2d10f01f7bbf6755599ca3f81ea53b8431b7dd348f5fdb2d"
|
|
3188
|
+
|
|
3189
|
+
[[package]]
|
|
3190
|
+
name = "zstd"
|
|
3191
|
+
version = "0.13.1"
|
|
3192
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3193
|
+
checksum = "2d789b1514203a1120ad2429eae43a7bd32b90976a7bb8a05f7ec02fa88cc23a"
|
|
3194
|
+
dependencies = [
|
|
3195
|
+
"zstd-safe",
|
|
3196
|
+
]
|
|
3197
|
+
|
|
3198
|
+
[[package]]
|
|
3199
|
+
name = "zstd-safe"
|
|
3200
|
+
version = "7.1.0"
|
|
3201
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3202
|
+
checksum = "1cd99b45c6bc03a018c8b8a86025678c87e55526064e38f9df301989dce7ec0a"
|
|
3203
|
+
dependencies = [
|
|
3204
|
+
"zstd-sys",
|
|
3205
|
+
]
|
|
3206
|
+
|
|
3207
|
+
[[package]]
|
|
3208
|
+
name = "zstd-sys"
|
|
3209
|
+
version = "2.0.10+zstd.1.5.6"
|
|
3210
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3211
|
+
checksum = "c253a4914af5bafc8fa8c86ee400827e83cf6ec01195ec1f1ed8441bf00d65aa"
|
|
3212
|
+
dependencies = [
|
|
3213
|
+
"cc",
|
|
3214
|
+
"pkg-config",
|
|
3215
|
+
]
|