git-cliff 2.2.1__tar.gz → 2.3.0__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.3.0}/Cargo.lock +547 -267
- {git_cliff-2.2.1 → git_cliff-2.3.0}/PKG-INFO +20 -7
- {git_cliff-2.2.1 → git_cliff-2.3.0}/README.md +19 -6
- {git_cliff-2.2.1 → git_cliff-2.3.0}/git-cliff/Cargo.toml +8 -4
- {git_cliff-2.2.1 → git_cliff-2.3.0}/git-cliff/src/args.rs +72 -34
- {git_cliff-2.2.1 → git_cliff-2.3.0}/git-cliff/src/lib.rs +56 -2
- {git_cliff-2.2.1 → git_cliff-2.3.0}/git-cliff/src/logger.rs +48 -15
- {git_cliff-2.2.1 → git_cliff-2.3.0}/git-cliff-core/Cargo.toml +36 -13
- {git_cliff-2.2.1 → git_cliff-2.3.0}/git-cliff-core/src/changelog.rs +318 -27
- {git_cliff-2.2.1 → git_cliff-2.3.0}/git-cliff-core/src/commit.rs +19 -13
- {git_cliff-2.2.1 → git_cliff-2.3.0}/git-cliff-core/src/config.rs +8 -1
- {git_cliff-2.2.1 → git_cliff-2.3.0}/git-cliff-core/src/error.rs +3 -3
- {git_cliff-2.2.1 → git_cliff-2.3.0}/git-cliff-core/src/lib.rs +5 -4
- {git_cliff-2.2.1 → git_cliff-2.3.0}/git-cliff-core/src/release.rs +398 -85
- git_cliff-2.3.0/git-cliff-core/src/remote/bitbucket.rs +222 -0
- git_cliff-2.3.0/git-cliff-core/src/remote/github.rs +183 -0
- git_cliff-2.3.0/git-cliff-core/src/remote/gitlab.rs +287 -0
- git_cliff-2.3.0/git-cliff-core/src/remote/mod.rs +368 -0
- {git_cliff-2.2.1 → git_cliff-2.3.0}/git-cliff-core/src/repo.rs +16 -28
- {git_cliff-2.2.1 → git_cliff-2.3.0}/git-cliff-core/src/template.rs +20 -12
- {git_cliff-2.2.1 → git_cliff-2.3.0}/git-cliff-core/tests/integration_test.rs +18 -2
- git_cliff-2.2.1/git-cliff-core/src/github.rs +0 -288
- {git_cliff-2.2.1 → git_cliff-2.3.0}/Cargo.toml +0 -0
- {git_cliff-2.2.1 → git_cliff-2.3.0}/git-cliff/src/bin/completions.rs +0 -0
- {git_cliff-2.2.1 → git_cliff-2.3.0}/git-cliff/src/bin/mangen.rs +0 -0
- {git_cliff-2.2.1 → git_cliff-2.3.0}/git-cliff/src/main.rs +0 -0
- {git_cliff-2.2.1 → git_cliff-2.3.0}/git-cliff-core/src/command.rs +0 -0
- {git_cliff-2.2.1 → git_cliff-2.3.0}/git-cliff-core/src/embed.rs +0 -0
- {git_cliff-2.2.1 → git_cliff-2.3.0}/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,21 +258,21 @@ 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]]
|
|
250
272
|
name = "chrono-tz"
|
|
251
|
-
version = "0.
|
|
273
|
+
version = "0.9.0"
|
|
252
274
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
253
|
-
checksum = "
|
|
275
|
+
checksum = "93698b29de5e97ad0ae26447b344c482a7284c737d9ddc5f9e52b74a336671bb"
|
|
254
276
|
dependencies = [
|
|
255
277
|
"chrono",
|
|
256
278
|
"chrono-tz-build",
|
|
@@ -259,9 +281,9 @@ dependencies = [
|
|
|
259
281
|
|
|
260
282
|
[[package]]
|
|
261
283
|
name = "chrono-tz-build"
|
|
262
|
-
version = "0.
|
|
284
|
+
version = "0.3.0"
|
|
263
285
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
264
|
-
checksum = "
|
|
286
|
+
checksum = "0c088aee841df9c3041febbb73934cfc39708749bf96dc827e3359cd39ef11b1"
|
|
265
287
|
dependencies = [
|
|
266
288
|
"parse-zoneinfo",
|
|
267
289
|
"phf",
|
|
@@ -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"
|
|
@@ -516,11 +544,17 @@ dependencies = [
|
|
|
516
544
|
"litrs",
|
|
517
545
|
]
|
|
518
546
|
|
|
547
|
+
[[package]]
|
|
548
|
+
name = "dyn-clone"
|
|
549
|
+
version = "1.0.17"
|
|
550
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
551
|
+
checksum = "0d6ef0072f8a535281e4876be788938b528e9a1d43900b82c2569af7da799125"
|
|
552
|
+
|
|
519
553
|
[[package]]
|
|
520
554
|
name = "either"
|
|
521
|
-
version = "1.
|
|
555
|
+
version = "1.11.0"
|
|
522
556
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
523
|
-
checksum = "
|
|
557
|
+
checksum = "a47c1c47d2f5964e29c61246e81db715514cd532db6b5116a25ea3c03d6780a2"
|
|
524
558
|
|
|
525
559
|
[[package]]
|
|
526
560
|
name = "encode_unicode"
|
|
@@ -558,25 +592,35 @@ checksum = "5443807d6dff69373d433ab9ef5378ad8df50ca6298caf15de6e52e24aaf54d5"
|
|
|
558
592
|
|
|
559
593
|
[[package]]
|
|
560
594
|
name = "errno"
|
|
561
|
-
version = "0.3.
|
|
595
|
+
version = "0.3.9"
|
|
562
596
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
563
|
-
checksum = "
|
|
597
|
+
checksum = "534c5cf6194dfab3db3242765c03bbe257cf92f22b38f6bc0c58d59108a820ba"
|
|
564
598
|
dependencies = [
|
|
565
599
|
"libc",
|
|
566
600
|
"windows-sys 0.52.0",
|
|
567
601
|
]
|
|
568
602
|
|
|
603
|
+
[[package]]
|
|
604
|
+
name = "expect-test"
|
|
605
|
+
version = "1.5.0"
|
|
606
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
607
|
+
checksum = "9e0be0a561335815e06dab7c62e50353134c796e7a6155402a64bcff66b6a5e0"
|
|
608
|
+
dependencies = [
|
|
609
|
+
"dissimilar",
|
|
610
|
+
"once_cell",
|
|
611
|
+
]
|
|
612
|
+
|
|
569
613
|
[[package]]
|
|
570
614
|
name = "fastrand"
|
|
571
|
-
version = "2.0
|
|
615
|
+
version = "2.1.0"
|
|
572
616
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
573
|
-
checksum = "
|
|
617
|
+
checksum = "9fc0510504f03c51ada170672ac806f1f105a88aa97a5281117e1ddc3368e51a"
|
|
574
618
|
|
|
575
619
|
[[package]]
|
|
576
620
|
name = "flate2"
|
|
577
|
-
version = "1.0.
|
|
621
|
+
version = "1.0.30"
|
|
578
622
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
579
|
-
checksum = "
|
|
623
|
+
checksum = "5f54427cfd1c7829e2a139fcefea601bf088ebca651d2bf53ebc600eac295dae"
|
|
580
624
|
dependencies = [
|
|
581
625
|
"crc32fast",
|
|
582
626
|
"miniz_oxide",
|
|
@@ -653,7 +697,7 @@ checksum = "87750cf4b7a4c0625b1529e4c543c2182106e4dedc60a2a6455e00d212c489ac"
|
|
|
653
697
|
dependencies = [
|
|
654
698
|
"proc-macro2",
|
|
655
699
|
"quote",
|
|
656
|
-
"syn 2.0.
|
|
700
|
+
"syn 2.0.63",
|
|
657
701
|
]
|
|
658
702
|
|
|
659
703
|
[[package]]
|
|
@@ -698,9 +742,9 @@ dependencies = [
|
|
|
698
742
|
|
|
699
743
|
[[package]]
|
|
700
744
|
name = "getrandom"
|
|
701
|
-
version = "0.2.
|
|
745
|
+
version = "0.2.15"
|
|
702
746
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
703
|
-
checksum = "
|
|
747
|
+
checksum = "c4567c8db10ae91089c99af84c68c38da3ec2f087c3f82960bcdbf3656b6f4d7"
|
|
704
748
|
dependencies = [
|
|
705
749
|
"cfg-if",
|
|
706
750
|
"libc",
|
|
@@ -715,7 +759,7 @@ checksum = "4271d37baee1b8c7e4b708028c57d816cf9d2434acb33a549475f78c181f6253"
|
|
|
715
759
|
|
|
716
760
|
[[package]]
|
|
717
761
|
name = "git-cliff"
|
|
718
|
-
version = "2.
|
|
762
|
+
version = "2.3.0"
|
|
719
763
|
dependencies = [
|
|
720
764
|
"clap",
|
|
721
765
|
"clap_complete",
|
|
@@ -736,11 +780,13 @@ dependencies = [
|
|
|
736
780
|
|
|
737
781
|
[[package]]
|
|
738
782
|
name = "git-cliff-core"
|
|
739
|
-
version = "2.
|
|
783
|
+
version = "2.3.0"
|
|
740
784
|
dependencies = [
|
|
741
785
|
"config",
|
|
742
786
|
"dirs",
|
|
743
787
|
"document-features",
|
|
788
|
+
"dyn-clone",
|
|
789
|
+
"expect-test",
|
|
744
790
|
"futures",
|
|
745
791
|
"git-conventional",
|
|
746
792
|
"git2",
|
|
@@ -753,7 +799,7 @@ dependencies = [
|
|
|
753
799
|
"next_version",
|
|
754
800
|
"pretty_assertions",
|
|
755
801
|
"regex",
|
|
756
|
-
"reqwest",
|
|
802
|
+
"reqwest 0.12.4",
|
|
757
803
|
"reqwest-middleware",
|
|
758
804
|
"rust-embed",
|
|
759
805
|
"secrecy",
|
|
@@ -814,11 +860,11 @@ dependencies = [
|
|
|
814
860
|
|
|
815
861
|
[[package]]
|
|
816
862
|
name = "globwalk"
|
|
817
|
-
version = "0.
|
|
863
|
+
version = "0.9.1"
|
|
818
864
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
819
|
-
checksum = "
|
|
865
|
+
checksum = "0bf760ebf69878d9fd8f110c89703d90ce35095324d1f1edcb595c63945ee757"
|
|
820
866
|
dependencies = [
|
|
821
|
-
"bitflags
|
|
867
|
+
"bitflags 2.5.0",
|
|
822
868
|
"ignore",
|
|
823
869
|
"walkdir",
|
|
824
870
|
]
|
|
@@ -834,7 +880,7 @@ dependencies = [
|
|
|
834
880
|
"futures-core",
|
|
835
881
|
"futures-sink",
|
|
836
882
|
"futures-util",
|
|
837
|
-
"http",
|
|
883
|
+
"http 0.2.12",
|
|
838
884
|
"indexmap",
|
|
839
885
|
"slab",
|
|
840
886
|
"tokio",
|
|
@@ -844,9 +890,9 @@ dependencies = [
|
|
|
844
890
|
|
|
845
891
|
[[package]]
|
|
846
892
|
name = "hashbrown"
|
|
847
|
-
version = "0.14.
|
|
893
|
+
version = "0.14.5"
|
|
848
894
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
849
|
-
checksum = "
|
|
895
|
+
checksum = "e5274423e17b7c9fc20b6e7e208532f9b19825d82dfd615708b70edd83df41f1"
|
|
850
896
|
|
|
851
897
|
[[package]]
|
|
852
898
|
name = "heck"
|
|
@@ -877,6 +923,17 @@ dependencies = [
|
|
|
877
923
|
"itoa",
|
|
878
924
|
]
|
|
879
925
|
|
|
926
|
+
[[package]]
|
|
927
|
+
name = "http"
|
|
928
|
+
version = "1.1.0"
|
|
929
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
930
|
+
checksum = "21b9ddb458710bc376481b842f5da65cdf31522de232c1ca8146abce2a358258"
|
|
931
|
+
dependencies = [
|
|
932
|
+
"bytes",
|
|
933
|
+
"fnv",
|
|
934
|
+
"itoa",
|
|
935
|
+
]
|
|
936
|
+
|
|
880
937
|
[[package]]
|
|
881
938
|
name = "http-body"
|
|
882
939
|
version = "0.4.6"
|
|
@@ -884,20 +941,43 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
884
941
|
checksum = "7ceab25649e9960c0311ea418d17bee82c0dcec1bd053b5f9a66e265a693bed2"
|
|
885
942
|
dependencies = [
|
|
886
943
|
"bytes",
|
|
887
|
-
"http",
|
|
944
|
+
"http 0.2.12",
|
|
945
|
+
"pin-project-lite",
|
|
946
|
+
]
|
|
947
|
+
|
|
948
|
+
[[package]]
|
|
949
|
+
name = "http-body"
|
|
950
|
+
version = "1.0.0"
|
|
951
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
952
|
+
checksum = "1cac85db508abc24a2e48553ba12a996e87244a0395ce011e62b37158745d643"
|
|
953
|
+
dependencies = [
|
|
954
|
+
"bytes",
|
|
955
|
+
"http 1.1.0",
|
|
956
|
+
]
|
|
957
|
+
|
|
958
|
+
[[package]]
|
|
959
|
+
name = "http-body-util"
|
|
960
|
+
version = "0.1.1"
|
|
961
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
962
|
+
checksum = "0475f8b2ac86659c21b64320d5d653f9efe42acd2a4e560073ec61a155a34f1d"
|
|
963
|
+
dependencies = [
|
|
964
|
+
"bytes",
|
|
965
|
+
"futures-core",
|
|
966
|
+
"http 1.1.0",
|
|
967
|
+
"http-body 1.0.0",
|
|
888
968
|
"pin-project-lite",
|
|
889
969
|
]
|
|
890
970
|
|
|
891
971
|
[[package]]
|
|
892
972
|
name = "http-cache"
|
|
893
|
-
version = "0.
|
|
973
|
+
version = "0.19.0"
|
|
894
974
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
895
|
-
checksum = "
|
|
975
|
+
checksum = "d6ffb12b95bb2a369fe47ca8924016c72c2fa0e6059ba98bd1516f558696c5a8"
|
|
896
976
|
dependencies = [
|
|
897
977
|
"async-trait",
|
|
898
978
|
"bincode",
|
|
899
979
|
"cacache",
|
|
900
|
-
"http",
|
|
980
|
+
"http 1.1.0",
|
|
901
981
|
"http-cache-semantics",
|
|
902
982
|
"httpdate",
|
|
903
983
|
"serde",
|
|
@@ -906,29 +986,28 @@ dependencies = [
|
|
|
906
986
|
|
|
907
987
|
[[package]]
|
|
908
988
|
name = "http-cache-reqwest"
|
|
909
|
-
version = "0.
|
|
989
|
+
version = "0.14.0"
|
|
910
990
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
911
|
-
checksum = "
|
|
991
|
+
checksum = "be3e27c4e2e510571cbcc601407b639667146aa9a4e818d5cc1d97c8b4b27d61"
|
|
912
992
|
dependencies = [
|
|
913
993
|
"anyhow",
|
|
914
994
|
"async-trait",
|
|
915
|
-
"http",
|
|
995
|
+
"http 1.1.0",
|
|
916
996
|
"http-cache",
|
|
917
997
|
"http-cache-semantics",
|
|
918
|
-
"reqwest",
|
|
998
|
+
"reqwest 0.12.4",
|
|
919
999
|
"reqwest-middleware",
|
|
920
1000
|
"serde",
|
|
921
|
-
"task-local-extensions",
|
|
922
1001
|
"url",
|
|
923
1002
|
]
|
|
924
1003
|
|
|
925
1004
|
[[package]]
|
|
926
1005
|
name = "http-cache-semantics"
|
|
927
|
-
version = "1.0
|
|
1006
|
+
version = "2.1.0"
|
|
928
1007
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
929
|
-
checksum = "
|
|
1008
|
+
checksum = "92baf25cf0b8c9246baecf3a444546360a97b569168fdf92563ee6a47829920c"
|
|
930
1009
|
dependencies = [
|
|
931
|
-
"http",
|
|
1010
|
+
"http 1.1.0",
|
|
932
1011
|
"http-serde",
|
|
933
1012
|
"serde",
|
|
934
1013
|
"time",
|
|
@@ -936,11 +1015,11 @@ dependencies = [
|
|
|
936
1015
|
|
|
937
1016
|
[[package]]
|
|
938
1017
|
name = "http-serde"
|
|
939
|
-
version = "
|
|
1018
|
+
version = "2.1.0"
|
|
940
1019
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
941
|
-
checksum = "
|
|
1020
|
+
checksum = "1133cafcce27ea69d35e56b3a8772e265633e04de73c5f4e1afdffc1d19b5419"
|
|
942
1021
|
dependencies = [
|
|
943
|
-
"http",
|
|
1022
|
+
"http 1.1.0",
|
|
944
1023
|
"serde",
|
|
945
1024
|
]
|
|
946
1025
|
|
|
@@ -982,8 +1061,8 @@ dependencies = [
|
|
|
982
1061
|
"futures-core",
|
|
983
1062
|
"futures-util",
|
|
984
1063
|
"h2",
|
|
985
|
-
"http",
|
|
986
|
-
"http-body",
|
|
1064
|
+
"http 0.2.12",
|
|
1065
|
+
"http-body 0.4.6",
|
|
987
1066
|
"httparse",
|
|
988
1067
|
"httpdate",
|
|
989
1068
|
"itoa",
|
|
@@ -995,6 +1074,25 @@ dependencies = [
|
|
|
995
1074
|
"want",
|
|
996
1075
|
]
|
|
997
1076
|
|
|
1077
|
+
[[package]]
|
|
1078
|
+
name = "hyper"
|
|
1079
|
+
version = "1.3.1"
|
|
1080
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1081
|
+
checksum = "fe575dd17d0862a9a33781c8c4696a55c320909004a67a00fb286ba8b1bc496d"
|
|
1082
|
+
dependencies = [
|
|
1083
|
+
"bytes",
|
|
1084
|
+
"futures-channel",
|
|
1085
|
+
"futures-util",
|
|
1086
|
+
"http 1.1.0",
|
|
1087
|
+
"http-body 1.0.0",
|
|
1088
|
+
"httparse",
|
|
1089
|
+
"itoa",
|
|
1090
|
+
"pin-project-lite",
|
|
1091
|
+
"smallvec",
|
|
1092
|
+
"tokio",
|
|
1093
|
+
"want",
|
|
1094
|
+
]
|
|
1095
|
+
|
|
998
1096
|
[[package]]
|
|
999
1097
|
name = "hyper-rustls"
|
|
1000
1098
|
version = "0.24.2"
|
|
@@ -1002,11 +1100,48 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
1002
1100
|
checksum = "ec3efd23720e2049821a693cbc7e65ea87c72f1c58ff2f9522ff332b1491e590"
|
|
1003
1101
|
dependencies = [
|
|
1004
1102
|
"futures-util",
|
|
1005
|
-
"http",
|
|
1006
|
-
"hyper",
|
|
1007
|
-
"rustls 0.21.
|
|
1103
|
+
"http 0.2.12",
|
|
1104
|
+
"hyper 0.14.28",
|
|
1105
|
+
"rustls 0.21.12",
|
|
1106
|
+
"tokio",
|
|
1107
|
+
"tokio-rustls 0.24.1",
|
|
1108
|
+
]
|
|
1109
|
+
|
|
1110
|
+
[[package]]
|
|
1111
|
+
name = "hyper-rustls"
|
|
1112
|
+
version = "0.26.0"
|
|
1113
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1114
|
+
checksum = "a0bea761b46ae2b24eb4aef630d8d1c398157b6fc29e6350ecf090a0b70c952c"
|
|
1115
|
+
dependencies = [
|
|
1116
|
+
"futures-util",
|
|
1117
|
+
"http 1.1.0",
|
|
1118
|
+
"hyper 1.3.1",
|
|
1119
|
+
"hyper-util",
|
|
1120
|
+
"rustls 0.22.4",
|
|
1121
|
+
"rustls-pki-types",
|
|
1008
1122
|
"tokio",
|
|
1009
|
-
"tokio-rustls",
|
|
1123
|
+
"tokio-rustls 0.25.0",
|
|
1124
|
+
"tower-service",
|
|
1125
|
+
]
|
|
1126
|
+
|
|
1127
|
+
[[package]]
|
|
1128
|
+
name = "hyper-util"
|
|
1129
|
+
version = "0.1.3"
|
|
1130
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1131
|
+
checksum = "ca38ef113da30126bbff9cd1705f9273e15d45498615d138b0c20279ac7a76aa"
|
|
1132
|
+
dependencies = [
|
|
1133
|
+
"bytes",
|
|
1134
|
+
"futures-channel",
|
|
1135
|
+
"futures-util",
|
|
1136
|
+
"http 1.1.0",
|
|
1137
|
+
"http-body 1.0.0",
|
|
1138
|
+
"hyper 1.3.1",
|
|
1139
|
+
"pin-project-lite",
|
|
1140
|
+
"socket2",
|
|
1141
|
+
"tokio",
|
|
1142
|
+
"tower",
|
|
1143
|
+
"tower-service",
|
|
1144
|
+
"tracing",
|
|
1010
1145
|
]
|
|
1011
1146
|
|
|
1012
1147
|
[[package]]
|
|
@@ -1141,6 +1276,12 @@ dependencies = [
|
|
|
1141
1276
|
"windows-sys 0.52.0",
|
|
1142
1277
|
]
|
|
1143
1278
|
|
|
1279
|
+
[[package]]
|
|
1280
|
+
name = "is_terminal_polyfill"
|
|
1281
|
+
version = "1.70.0"
|
|
1282
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1283
|
+
checksum = "f8478577c03552c21db0e2724ffb8986a5ce7af88107e6be5d2ee6e158c12800"
|
|
1284
|
+
|
|
1144
1285
|
[[package]]
|
|
1145
1286
|
name = "itoa"
|
|
1146
1287
|
version = "1.0.11"
|
|
@@ -1149,9 +1290,9 @@ checksum = "49f1f14873335454500d59611f1cf4a4b0f786f9ac11f4312a78e4cf2566695b"
|
|
|
1149
1290
|
|
|
1150
1291
|
[[package]]
|
|
1151
1292
|
name = "jobserver"
|
|
1152
|
-
version = "0.1.
|
|
1293
|
+
version = "0.1.31"
|
|
1153
1294
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1154
|
-
checksum = "
|
|
1295
|
+
checksum = "d2b099aaa34a9751c5bf0878add70444e1ed2dd73f347be99003d4577277de6e"
|
|
1155
1296
|
dependencies = [
|
|
1156
1297
|
"libc",
|
|
1157
1298
|
]
|
|
@@ -1185,7 +1326,7 @@ dependencies = [
|
|
|
1185
1326
|
"proc-macro2",
|
|
1186
1327
|
"quote",
|
|
1187
1328
|
"regex",
|
|
1188
|
-
"syn 2.0.
|
|
1329
|
+
"syn 2.0.63",
|
|
1189
1330
|
]
|
|
1190
1331
|
|
|
1191
1332
|
[[package]]
|
|
@@ -1196,9 +1337,9 @@ checksum = "e2abad23fbc42b3700f2f279844dc832adb2b2eb069b2df918f455c4e18cc646"
|
|
|
1196
1337
|
|
|
1197
1338
|
[[package]]
|
|
1198
1339
|
name = "libc"
|
|
1199
|
-
version = "0.2.
|
|
1340
|
+
version = "0.2.154"
|
|
1200
1341
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1201
|
-
checksum = "
|
|
1342
|
+
checksum = "ae743338b92ff9146ce83992f766a31066a91a8c84a45e0e9f21e7cf6de6d346"
|
|
1202
1343
|
|
|
1203
1344
|
[[package]]
|
|
1204
1345
|
name = "libflate"
|
|
@@ -1319,7 +1460,7 @@ checksum = "49e7bc1560b95a3c4a25d03de42fe76ca718ab92d1a22a55b9b4cf67b3ae635c"
|
|
|
1319
1460
|
dependencies = [
|
|
1320
1461
|
"proc-macro2",
|
|
1321
1462
|
"quote",
|
|
1322
|
-
"syn 2.0.
|
|
1463
|
+
"syn 2.0.63",
|
|
1323
1464
|
]
|
|
1324
1465
|
|
|
1325
1466
|
[[package]]
|
|
@@ -1328,16 +1469,6 @@ version = "0.3.17"
|
|
|
1328
1469
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1329
1470
|
checksum = "6877bb514081ee2a7ff5ef9de3281f14a4dd4bceac4c09388074a6b5df8a139a"
|
|
1330
1471
|
|
|
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
1472
|
[[package]]
|
|
1342
1473
|
name = "minimal-lexical"
|
|
1343
1474
|
version = "0.2.1"
|
|
@@ -1366,9 +1497,9 @@ dependencies = [
|
|
|
1366
1497
|
|
|
1367
1498
|
[[package]]
|
|
1368
1499
|
name = "next_version"
|
|
1369
|
-
version = "0.2.
|
|
1500
|
+
version = "0.2.17"
|
|
1370
1501
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1371
|
-
checksum = "
|
|
1502
|
+
checksum = "7beae5e84c3330a90f0f89eae10f5cd4c17c3be0f119ab36d94fd908c7b8c8fb"
|
|
1372
1503
|
dependencies = [
|
|
1373
1504
|
"conventional_commit_parser",
|
|
1374
1505
|
"semver",
|
|
@@ -1392,9 +1523,9 @@ checksum = "51d515d32fb182ee37cda2ccdcb92950d6a3c2893aa280e540671c2cd0f3b1d9"
|
|
|
1392
1523
|
|
|
1393
1524
|
[[package]]
|
|
1394
1525
|
name = "num-traits"
|
|
1395
|
-
version = "0.2.
|
|
1526
|
+
version = "0.2.19"
|
|
1396
1527
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1397
|
-
checksum = "
|
|
1528
|
+
checksum = "071dfc062690e90b734c0b2273ce72ad0ffa95f0c74596bc250dcfd960262841"
|
|
1398
1529
|
dependencies = [
|
|
1399
1530
|
"autocfg",
|
|
1400
1531
|
]
|
|
@@ -1438,9 +1569,9 @@ checksum = "04744f49eae99ab78e0d5c0b603ab218f515ea8cfe5a456d7629ad883a3b6e7d"
|
|
|
1438
1569
|
|
|
1439
1570
|
[[package]]
|
|
1440
1571
|
name = "parse-zoneinfo"
|
|
1441
|
-
version = "0.3.
|
|
1572
|
+
version = "0.3.1"
|
|
1442
1573
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1443
|
-
checksum = "
|
|
1574
|
+
checksum = "1f2a05b18d44e2957b88f96ba460715e295bc1d7510468a2f3d3b44535d26c24"
|
|
1444
1575
|
dependencies = [
|
|
1445
1576
|
"regex",
|
|
1446
1577
|
]
|
|
@@ -1459,9 +1590,9 @@ checksum = "e3148f5046208a5d56bcfc03053e3ca6334e51da8dfb19b6cdc8b306fae3283e"
|
|
|
1459
1590
|
|
|
1460
1591
|
[[package]]
|
|
1461
1592
|
name = "pest"
|
|
1462
|
-
version = "2.7.
|
|
1593
|
+
version = "2.7.10"
|
|
1463
1594
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1464
|
-
checksum = "
|
|
1595
|
+
checksum = "560131c633294438da9f7c4b08189194b20946c8274c6b9e38881a7874dc8ee8"
|
|
1465
1596
|
dependencies = [
|
|
1466
1597
|
"memchr",
|
|
1467
1598
|
"thiserror",
|
|
@@ -1470,9 +1601,9 @@ dependencies = [
|
|
|
1470
1601
|
|
|
1471
1602
|
[[package]]
|
|
1472
1603
|
name = "pest_derive"
|
|
1473
|
-
version = "2.7.
|
|
1604
|
+
version = "2.7.10"
|
|
1474
1605
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1475
|
-
checksum = "
|
|
1606
|
+
checksum = "26293c9193fbca7b1a3bf9b79dc1e388e927e6cacaa78b4a3ab705a1d3d41459"
|
|
1476
1607
|
dependencies = [
|
|
1477
1608
|
"pest",
|
|
1478
1609
|
"pest_generator",
|
|
@@ -1480,22 +1611,22 @@ dependencies = [
|
|
|
1480
1611
|
|
|
1481
1612
|
[[package]]
|
|
1482
1613
|
name = "pest_generator"
|
|
1483
|
-
version = "2.7.
|
|
1614
|
+
version = "2.7.10"
|
|
1484
1615
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1485
|
-
checksum = "
|
|
1616
|
+
checksum = "3ec22af7d3fb470a85dd2ca96b7c577a1eb4ef6f1683a9fe9a8c16e136c04687"
|
|
1486
1617
|
dependencies = [
|
|
1487
1618
|
"pest",
|
|
1488
1619
|
"pest_meta",
|
|
1489
1620
|
"proc-macro2",
|
|
1490
1621
|
"quote",
|
|
1491
|
-
"syn 2.0.
|
|
1622
|
+
"syn 2.0.63",
|
|
1492
1623
|
]
|
|
1493
1624
|
|
|
1494
1625
|
[[package]]
|
|
1495
1626
|
name = "pest_meta"
|
|
1496
|
-
version = "2.7.
|
|
1627
|
+
version = "2.7.10"
|
|
1497
1628
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1498
|
-
checksum = "
|
|
1629
|
+
checksum = "d7a240022f37c361ec1878d646fc5b7d7c4d28d5946e1a80ad5a7a4f4ca0bdcd"
|
|
1499
1630
|
dependencies = [
|
|
1500
1631
|
"once_cell",
|
|
1501
1632
|
"pest",
|
|
@@ -1540,6 +1671,26 @@ dependencies = [
|
|
|
1540
1671
|
"siphasher",
|
|
1541
1672
|
]
|
|
1542
1673
|
|
|
1674
|
+
[[package]]
|
|
1675
|
+
name = "pin-project"
|
|
1676
|
+
version = "1.1.5"
|
|
1677
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1678
|
+
checksum = "b6bf43b791c5b9e34c3d182969b4abb522f9343702850a2e57f460d00d09b4b3"
|
|
1679
|
+
dependencies = [
|
|
1680
|
+
"pin-project-internal",
|
|
1681
|
+
]
|
|
1682
|
+
|
|
1683
|
+
[[package]]
|
|
1684
|
+
name = "pin-project-internal"
|
|
1685
|
+
version = "1.1.5"
|
|
1686
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1687
|
+
checksum = "2f38a4412a78282e09a2cf38d195ea5420d15ba0602cb375210efbc877243965"
|
|
1688
|
+
dependencies = [
|
|
1689
|
+
"proc-macro2",
|
|
1690
|
+
"quote",
|
|
1691
|
+
"syn 2.0.63",
|
|
1692
|
+
]
|
|
1693
|
+
|
|
1543
1694
|
[[package]]
|
|
1544
1695
|
name = "pin-project-lite"
|
|
1545
1696
|
version = "0.2.14"
|
|
@@ -1594,9 +1745,9 @@ checksum = "dc375e1527247fe1a97d8b7156678dfe7c1af2fc075c9a4db3690ecd2a148068"
|
|
|
1594
1745
|
|
|
1595
1746
|
[[package]]
|
|
1596
1747
|
name = "proc-macro2"
|
|
1597
|
-
version = "1.0.
|
|
1748
|
+
version = "1.0.82"
|
|
1598
1749
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1599
|
-
checksum = "
|
|
1750
|
+
checksum = "8ad3d49ab951a01fbaafe34f2ec74122942fe18a3f9814c3268f1bb72042131b"
|
|
1600
1751
|
dependencies = [
|
|
1601
1752
|
"unicode-ident",
|
|
1602
1753
|
]
|
|
@@ -1653,9 +1804,9 @@ dependencies = [
|
|
|
1653
1804
|
|
|
1654
1805
|
[[package]]
|
|
1655
1806
|
name = "reflink-copy"
|
|
1656
|
-
version = "0.1.
|
|
1807
|
+
version = "0.1.17"
|
|
1657
1808
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1658
|
-
checksum = "
|
|
1809
|
+
checksum = "7c3138c30c59ed9b8572f82bed97ea591ecd7e45012566046cc39e72679cff22"
|
|
1659
1810
|
dependencies = [
|
|
1660
1811
|
"cfg-if",
|
|
1661
1812
|
"rustix",
|
|
@@ -1697,55 +1848,97 @@ version = "0.11.27"
|
|
|
1697
1848
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1698
1849
|
checksum = "dd67538700a17451e7cba03ac727fb961abb7607553461627b97de0b89cf4a62"
|
|
1699
1850
|
dependencies = [
|
|
1700
|
-
"base64",
|
|
1851
|
+
"base64 0.21.7",
|
|
1701
1852
|
"bytes",
|
|
1702
1853
|
"encoding_rs",
|
|
1703
1854
|
"futures-core",
|
|
1704
1855
|
"futures-util",
|
|
1705
1856
|
"h2",
|
|
1706
|
-
"http",
|
|
1707
|
-
"http-body",
|
|
1708
|
-
"hyper",
|
|
1709
|
-
"hyper-rustls",
|
|
1857
|
+
"http 0.2.12",
|
|
1858
|
+
"http-body 0.4.6",
|
|
1859
|
+
"hyper 0.14.28",
|
|
1860
|
+
"hyper-rustls 0.24.2",
|
|
1710
1861
|
"ipnet",
|
|
1711
1862
|
"js-sys",
|
|
1712
1863
|
"log",
|
|
1713
1864
|
"mime",
|
|
1714
|
-
"mime_guess",
|
|
1715
1865
|
"once_cell",
|
|
1716
1866
|
"percent-encoding",
|
|
1717
1867
|
"pin-project-lite",
|
|
1718
|
-
"rustls 0.21.
|
|
1719
|
-
"rustls-pemfile",
|
|
1868
|
+
"rustls 0.21.12",
|
|
1869
|
+
"rustls-pemfile 1.0.4",
|
|
1720
1870
|
"serde",
|
|
1721
1871
|
"serde_json",
|
|
1722
1872
|
"serde_urlencoded",
|
|
1723
1873
|
"sync_wrapper",
|
|
1724
1874
|
"system-configuration",
|
|
1725
1875
|
"tokio",
|
|
1726
|
-
"tokio-rustls",
|
|
1876
|
+
"tokio-rustls 0.24.1",
|
|
1727
1877
|
"tower-service",
|
|
1728
1878
|
"url",
|
|
1729
1879
|
"wasm-bindgen",
|
|
1730
1880
|
"wasm-bindgen-futures",
|
|
1731
1881
|
"web-sys",
|
|
1732
1882
|
"webpki-roots 0.25.4",
|
|
1733
|
-
"winreg",
|
|
1883
|
+
"winreg 0.50.0",
|
|
1884
|
+
]
|
|
1885
|
+
|
|
1886
|
+
[[package]]
|
|
1887
|
+
name = "reqwest"
|
|
1888
|
+
version = "0.12.4"
|
|
1889
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1890
|
+
checksum = "566cafdd92868e0939d3fb961bd0dc25fcfaaed179291093b3d43e6b3150ea10"
|
|
1891
|
+
dependencies = [
|
|
1892
|
+
"async-compression",
|
|
1893
|
+
"base64 0.22.1",
|
|
1894
|
+
"bytes",
|
|
1895
|
+
"futures-core",
|
|
1896
|
+
"futures-util",
|
|
1897
|
+
"http 1.1.0",
|
|
1898
|
+
"http-body 1.0.0",
|
|
1899
|
+
"http-body-util",
|
|
1900
|
+
"hyper 1.3.1",
|
|
1901
|
+
"hyper-rustls 0.26.0",
|
|
1902
|
+
"hyper-util",
|
|
1903
|
+
"ipnet",
|
|
1904
|
+
"js-sys",
|
|
1905
|
+
"log",
|
|
1906
|
+
"mime",
|
|
1907
|
+
"once_cell",
|
|
1908
|
+
"percent-encoding",
|
|
1909
|
+
"pin-project-lite",
|
|
1910
|
+
"rustls 0.22.4",
|
|
1911
|
+
"rustls-pemfile 2.1.2",
|
|
1912
|
+
"rustls-pki-types",
|
|
1913
|
+
"serde",
|
|
1914
|
+
"serde_json",
|
|
1915
|
+
"serde_urlencoded",
|
|
1916
|
+
"sync_wrapper",
|
|
1917
|
+
"tokio",
|
|
1918
|
+
"tokio-rustls 0.25.0",
|
|
1919
|
+
"tokio-util",
|
|
1920
|
+
"tower-service",
|
|
1921
|
+
"url",
|
|
1922
|
+
"wasm-bindgen",
|
|
1923
|
+
"wasm-bindgen-futures",
|
|
1924
|
+
"web-sys",
|
|
1925
|
+
"webpki-roots 0.26.1",
|
|
1926
|
+
"winreg 0.52.0",
|
|
1734
1927
|
]
|
|
1735
1928
|
|
|
1736
1929
|
[[package]]
|
|
1737
1930
|
name = "reqwest-middleware"
|
|
1738
|
-
version = "0.
|
|
1931
|
+
version = "0.3.1"
|
|
1739
1932
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1740
|
-
checksum = "
|
|
1933
|
+
checksum = "a45d100244a467870f6cb763c4484d010a6bed6bd610b3676e3825d93fb4cfbd"
|
|
1741
1934
|
dependencies = [
|
|
1742
1935
|
"anyhow",
|
|
1743
1936
|
"async-trait",
|
|
1744
|
-
"http",
|
|
1745
|
-
"reqwest",
|
|
1937
|
+
"http 1.1.0",
|
|
1938
|
+
"reqwest 0.12.4",
|
|
1746
1939
|
"serde",
|
|
1747
|
-
"task-local-extensions",
|
|
1748
1940
|
"thiserror",
|
|
1941
|
+
"tower-service",
|
|
1749
1942
|
]
|
|
1750
1943
|
|
|
1751
1944
|
[[package]]
|
|
@@ -1777,9 +1970,9 @@ checksum = "b833d8d034ea094b1ea68aa6d5c740e0d04bad9d16568d08ba6f76823a114316"
|
|
|
1777
1970
|
|
|
1778
1971
|
[[package]]
|
|
1779
1972
|
name = "rust-embed"
|
|
1780
|
-
version = "8.
|
|
1973
|
+
version = "8.4.0"
|
|
1781
1974
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1782
|
-
checksum = "
|
|
1975
|
+
checksum = "19549741604902eb99a7ed0ee177a0663ee1eda51a29f71401f166e47e77806a"
|
|
1783
1976
|
dependencies = [
|
|
1784
1977
|
"include-flate",
|
|
1785
1978
|
"rust-embed-impl",
|
|
@@ -1789,22 +1982,22 @@ dependencies = [
|
|
|
1789
1982
|
|
|
1790
1983
|
[[package]]
|
|
1791
1984
|
name = "rust-embed-impl"
|
|
1792
|
-
version = "8.
|
|
1985
|
+
version = "8.4.0"
|
|
1793
1986
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1794
|
-
checksum = "
|
|
1987
|
+
checksum = "cb9f96e283ec64401f30d3df8ee2aaeb2561f34c824381efa24a35f79bf40ee4"
|
|
1795
1988
|
dependencies = [
|
|
1796
1989
|
"proc-macro2",
|
|
1797
1990
|
"quote",
|
|
1798
1991
|
"rust-embed-utils",
|
|
1799
|
-
"syn 2.0.
|
|
1992
|
+
"syn 2.0.63",
|
|
1800
1993
|
"walkdir",
|
|
1801
1994
|
]
|
|
1802
1995
|
|
|
1803
1996
|
[[package]]
|
|
1804
1997
|
name = "rust-embed-utils"
|
|
1805
|
-
version = "8.
|
|
1998
|
+
version = "8.4.0"
|
|
1806
1999
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1807
|
-
checksum = "
|
|
2000
|
+
checksum = "38c74a686185620830701348de757fd36bef4aa9680fd23c49fc539ddcc1af32"
|
|
1808
2001
|
dependencies = [
|
|
1809
2002
|
"sha2",
|
|
1810
2003
|
"walkdir",
|
|
@@ -1812,15 +2005,15 @@ dependencies = [
|
|
|
1812
2005
|
|
|
1813
2006
|
[[package]]
|
|
1814
2007
|
name = "rustc-demangle"
|
|
1815
|
-
version = "0.1.
|
|
2008
|
+
version = "0.1.24"
|
|
1816
2009
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1817
|
-
checksum = "
|
|
2010
|
+
checksum = "719b953e2095829ee67db738b3bfa9fa368c94900df327b3f07fe6e794d2fe1f"
|
|
1818
2011
|
|
|
1819
2012
|
[[package]]
|
|
1820
2013
|
name = "rustix"
|
|
1821
|
-
version = "0.38.
|
|
2014
|
+
version = "0.38.34"
|
|
1822
2015
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1823
|
-
checksum = "
|
|
2016
|
+
checksum = "70dc5ec042f7a43c4a73241207cecc9873a06d45debb38b329f8541d85c2730f"
|
|
1824
2017
|
dependencies = [
|
|
1825
2018
|
"bitflags 2.5.0",
|
|
1826
2019
|
"errno",
|
|
@@ -1831,9 +2024,9 @@ dependencies = [
|
|
|
1831
2024
|
|
|
1832
2025
|
[[package]]
|
|
1833
2026
|
name = "rustls"
|
|
1834
|
-
version = "0.21.
|
|
2027
|
+
version = "0.21.12"
|
|
1835
2028
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1836
|
-
checksum = "
|
|
2029
|
+
checksum = "3f56a14d1f48b391359b22f731fd4bd7e43c97f3c50eee276f3aa09c94784d3e"
|
|
1837
2030
|
dependencies = [
|
|
1838
2031
|
"log",
|
|
1839
2032
|
"ring",
|
|
@@ -1843,14 +2036,14 @@ dependencies = [
|
|
|
1843
2036
|
|
|
1844
2037
|
[[package]]
|
|
1845
2038
|
name = "rustls"
|
|
1846
|
-
version = "0.22.
|
|
2039
|
+
version = "0.22.4"
|
|
1847
2040
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1848
|
-
checksum = "
|
|
2041
|
+
checksum = "bf4ef73721ac7bcd79b2b315da7779d8fc09718c6b3d2d1b2d94850eb8c18432"
|
|
1849
2042
|
dependencies = [
|
|
1850
2043
|
"log",
|
|
1851
2044
|
"ring",
|
|
1852
2045
|
"rustls-pki-types",
|
|
1853
|
-
"rustls-webpki 0.102.
|
|
2046
|
+
"rustls-webpki 0.102.3",
|
|
1854
2047
|
"subtle",
|
|
1855
2048
|
"zeroize",
|
|
1856
2049
|
]
|
|
@@ -1861,14 +2054,24 @@ version = "1.0.4"
|
|
|
1861
2054
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1862
2055
|
checksum = "1c74cae0a4cf6ccbbf5f359f08efdf8ee7e1dc532573bf0db71968cb56b1448c"
|
|
1863
2056
|
dependencies = [
|
|
1864
|
-
"base64",
|
|
2057
|
+
"base64 0.21.7",
|
|
2058
|
+
]
|
|
2059
|
+
|
|
2060
|
+
[[package]]
|
|
2061
|
+
name = "rustls-pemfile"
|
|
2062
|
+
version = "2.1.2"
|
|
2063
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2064
|
+
checksum = "29993a25686778eb88d4189742cd713c9bce943bc54251a33509dc63cbacf73d"
|
|
2065
|
+
dependencies = [
|
|
2066
|
+
"base64 0.22.1",
|
|
2067
|
+
"rustls-pki-types",
|
|
1865
2068
|
]
|
|
1866
2069
|
|
|
1867
2070
|
[[package]]
|
|
1868
2071
|
name = "rustls-pki-types"
|
|
1869
|
-
version = "1.
|
|
2072
|
+
version = "1.7.0"
|
|
1870
2073
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1871
|
-
checksum = "
|
|
2074
|
+
checksum = "976295e77ce332211c0d24d92c0e83e50f5c5f046d11082cea19f3df13a3562d"
|
|
1872
2075
|
|
|
1873
2076
|
[[package]]
|
|
1874
2077
|
name = "rustls-webpki"
|
|
@@ -1882,9 +2085,9 @@ dependencies = [
|
|
|
1882
2085
|
|
|
1883
2086
|
[[package]]
|
|
1884
2087
|
name = "rustls-webpki"
|
|
1885
|
-
version = "0.102.
|
|
2088
|
+
version = "0.102.3"
|
|
1886
2089
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1887
|
-
checksum = "
|
|
2090
|
+
checksum = "f3bce581c0dd41bce533ce695a1437fa16a7ab5ac3ccfa99fe1a620a7885eabf"
|
|
1888
2091
|
dependencies = [
|
|
1889
2092
|
"ring",
|
|
1890
2093
|
"rustls-pki-types",
|
|
@@ -1893,9 +2096,9 @@ dependencies = [
|
|
|
1893
2096
|
|
|
1894
2097
|
[[package]]
|
|
1895
2098
|
name = "ryu"
|
|
1896
|
-
version = "1.0.
|
|
2099
|
+
version = "1.0.18"
|
|
1897
2100
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1898
|
-
checksum = "
|
|
2101
|
+
checksum = "f3cb5ba0dc43242ce17de99c180e96db90b235b8a9fdc9543c96d2209116bd9f"
|
|
1899
2102
|
|
|
1900
2103
|
[[package]]
|
|
1901
2104
|
name = "same-file"
|
|
@@ -1928,35 +2131,35 @@ dependencies = [
|
|
|
1928
2131
|
|
|
1929
2132
|
[[package]]
|
|
1930
2133
|
name = "semver"
|
|
1931
|
-
version = "1.0.
|
|
2134
|
+
version = "1.0.23"
|
|
1932
2135
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1933
|
-
checksum = "
|
|
2136
|
+
checksum = "61697e0a1c7e512e84a621326239844a24d8207b4669b41bc18b32ea5cbf988b"
|
|
1934
2137
|
|
|
1935
2138
|
[[package]]
|
|
1936
2139
|
name = "serde"
|
|
1937
|
-
version = "1.0.
|
|
2140
|
+
version = "1.0.203"
|
|
1938
2141
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1939
|
-
checksum = "
|
|
2142
|
+
checksum = "7253ab4de971e72fb7be983802300c30b5a7f0c2e56fab8abfc6a214307c0094"
|
|
1940
2143
|
dependencies = [
|
|
1941
2144
|
"serde_derive",
|
|
1942
2145
|
]
|
|
1943
2146
|
|
|
1944
2147
|
[[package]]
|
|
1945
2148
|
name = "serde_derive"
|
|
1946
|
-
version = "1.0.
|
|
2149
|
+
version = "1.0.203"
|
|
1947
2150
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1948
|
-
checksum = "
|
|
2151
|
+
checksum = "500cbc0ebeb6f46627f50f3f5811ccf6bf00643be300b4c3eabc0ef55dc5b5ba"
|
|
1949
2152
|
dependencies = [
|
|
1950
2153
|
"proc-macro2",
|
|
1951
2154
|
"quote",
|
|
1952
|
-
"syn 2.0.
|
|
2155
|
+
"syn 2.0.63",
|
|
1953
2156
|
]
|
|
1954
2157
|
|
|
1955
2158
|
[[package]]
|
|
1956
2159
|
name = "serde_json"
|
|
1957
|
-
version = "1.0.
|
|
2160
|
+
version = "1.0.117"
|
|
1958
2161
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1959
|
-
checksum = "
|
|
2162
|
+
checksum = "455182ea6142b14f93f4bc5320a2b31c1f266b66a4a5c858b013302a5d8cbfc3"
|
|
1960
2163
|
dependencies = [
|
|
1961
2164
|
"itoa",
|
|
1962
2165
|
"ryu",
|
|
@@ -1975,9 +2178,9 @@ dependencies = [
|
|
|
1975
2178
|
|
|
1976
2179
|
[[package]]
|
|
1977
2180
|
name = "serde_spanned"
|
|
1978
|
-
version = "0.6.
|
|
2181
|
+
version = "0.6.6"
|
|
1979
2182
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1980
|
-
checksum = "
|
|
2183
|
+
checksum = "79e674e01f999af37c49f70a6ede167a8a60b2503e56c5599532a65baa5969a0"
|
|
1981
2184
|
dependencies = [
|
|
1982
2185
|
"serde",
|
|
1983
2186
|
]
|
|
@@ -2061,11 +2264,17 @@ dependencies = [
|
|
|
2061
2264
|
"wasm-bindgen",
|
|
2062
2265
|
]
|
|
2063
2266
|
|
|
2267
|
+
[[package]]
|
|
2268
|
+
name = "smallvec"
|
|
2269
|
+
version = "1.13.2"
|
|
2270
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2271
|
+
checksum = "3c5e1a9a646d36c3599cd173a41282daf47c44583ad367b8e6837255952e5c67"
|
|
2272
|
+
|
|
2064
2273
|
[[package]]
|
|
2065
2274
|
name = "socket2"
|
|
2066
|
-
version = "0.5.
|
|
2275
|
+
version = "0.5.7"
|
|
2067
2276
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2068
|
-
checksum = "
|
|
2277
|
+
checksum = "ce305eb0b4296696835b71df73eb912e0f1ffd2556a501fcede6e0c50349191c"
|
|
2069
2278
|
dependencies = [
|
|
2070
2279
|
"libc",
|
|
2071
2280
|
"windows-sys 0.52.0",
|
|
@@ -2083,7 +2292,7 @@ version = "9.2.0"
|
|
|
2083
2292
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2084
2293
|
checksum = "da7a2b3c2bc9693bcb40870c4e9b5bf0d79f9cb46273321bf855ec513e919082"
|
|
2085
2294
|
dependencies = [
|
|
2086
|
-
"base64",
|
|
2295
|
+
"base64 0.21.7",
|
|
2087
2296
|
"digest",
|
|
2088
2297
|
"hex",
|
|
2089
2298
|
"miette",
|
|
@@ -2119,9 +2328,9 @@ dependencies = [
|
|
|
2119
2328
|
|
|
2120
2329
|
[[package]]
|
|
2121
2330
|
name = "syn"
|
|
2122
|
-
version = "2.0.
|
|
2331
|
+
version = "2.0.63"
|
|
2123
2332
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2124
|
-
checksum = "
|
|
2333
|
+
checksum = "bf5be731623ca1a1fb7d8be6f261a3be6d3e2337b8a1f97be944d020c8fcb704"
|
|
2125
2334
|
dependencies = [
|
|
2126
2335
|
"proc-macro2",
|
|
2127
2336
|
"quote",
|
|
@@ -2155,15 +2364,6 @@ dependencies = [
|
|
|
2155
2364
|
"libc",
|
|
2156
2365
|
]
|
|
2157
2366
|
|
|
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
2367
|
[[package]]
|
|
2168
2368
|
name = "tempfile"
|
|
2169
2369
|
version = "3.10.1"
|
|
@@ -2178,9 +2378,9 @@ dependencies = [
|
|
|
2178
2378
|
|
|
2179
2379
|
[[package]]
|
|
2180
2380
|
name = "tera"
|
|
2181
|
-
version = "1.
|
|
2381
|
+
version = "1.20.0"
|
|
2182
2382
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2183
|
-
checksum = "
|
|
2383
|
+
checksum = "ab9d851b45e865f178319da0abdbfe6acbc4328759ff18dafc3a41c16b4cd2ee"
|
|
2184
2384
|
dependencies = [
|
|
2185
2385
|
"chrono",
|
|
2186
2386
|
"chrono-tz",
|
|
@@ -2219,29 +2419,29 @@ dependencies = [
|
|
|
2219
2419
|
|
|
2220
2420
|
[[package]]
|
|
2221
2421
|
name = "thiserror"
|
|
2222
|
-
version = "1.0.
|
|
2422
|
+
version = "1.0.61"
|
|
2223
2423
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2224
|
-
checksum = "
|
|
2424
|
+
checksum = "c546c80d6be4bc6a00c0f01730c08df82eaa7a7a61f11d656526506112cc1709"
|
|
2225
2425
|
dependencies = [
|
|
2226
2426
|
"thiserror-impl",
|
|
2227
2427
|
]
|
|
2228
2428
|
|
|
2229
2429
|
[[package]]
|
|
2230
2430
|
name = "thiserror-impl"
|
|
2231
|
-
version = "1.0.
|
|
2431
|
+
version = "1.0.61"
|
|
2232
2432
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2233
|
-
checksum = "
|
|
2433
|
+
checksum = "46c3384250002a6d5af4d114f2845d37b57521033f30d5c3f46c4d70e1197533"
|
|
2234
2434
|
dependencies = [
|
|
2235
2435
|
"proc-macro2",
|
|
2236
2436
|
"quote",
|
|
2237
|
-
"syn 2.0.
|
|
2437
|
+
"syn 2.0.63",
|
|
2238
2438
|
]
|
|
2239
2439
|
|
|
2240
2440
|
[[package]]
|
|
2241
2441
|
name = "time"
|
|
2242
|
-
version = "0.3.
|
|
2442
|
+
version = "0.3.36"
|
|
2243
2443
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2244
|
-
checksum = "
|
|
2444
|
+
checksum = "5dfd88e563464686c916c7e46e623e520ddc6d79fa6641390f2e3fa86e83e885"
|
|
2245
2445
|
dependencies = [
|
|
2246
2446
|
"deranged",
|
|
2247
2447
|
"itoa",
|
|
@@ -2285,9 +2485,9 @@ checksum = "1f3ccbac311fea05f86f61904b462b55fb3df8837a366dfc601a0161d0532f20"
|
|
|
2285
2485
|
|
|
2286
2486
|
[[package]]
|
|
2287
2487
|
name = "tokio"
|
|
2288
|
-
version = "1.
|
|
2488
|
+
version = "1.38.0"
|
|
2289
2489
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2290
|
-
checksum = "
|
|
2490
|
+
checksum = "ba4f4a02a7a80d6f274636f0aa95c7e383b912d41fe721a31f29e29698585a4a"
|
|
2291
2491
|
dependencies = [
|
|
2292
2492
|
"backtrace",
|
|
2293
2493
|
"bytes",
|
|
@@ -2302,13 +2502,13 @@ dependencies = [
|
|
|
2302
2502
|
|
|
2303
2503
|
[[package]]
|
|
2304
2504
|
name = "tokio-macros"
|
|
2305
|
-
version = "2.
|
|
2505
|
+
version = "2.3.0"
|
|
2306
2506
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2307
|
-
checksum = "
|
|
2507
|
+
checksum = "5f5ae998a069d4b5aba8ee9dad856af7d520c3699e6159b185c2acd48155d39a"
|
|
2308
2508
|
dependencies = [
|
|
2309
2509
|
"proc-macro2",
|
|
2310
2510
|
"quote",
|
|
2311
|
-
"syn 2.0.
|
|
2511
|
+
"syn 2.0.63",
|
|
2312
2512
|
]
|
|
2313
2513
|
|
|
2314
2514
|
[[package]]
|
|
@@ -2317,7 +2517,18 @@ version = "0.24.1"
|
|
|
2317
2517
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2318
2518
|
checksum = "c28327cf380ac148141087fbfb9de9d7bd4e84ab5d2c28fbc911d753de8a7081"
|
|
2319
2519
|
dependencies = [
|
|
2320
|
-
"rustls 0.21.
|
|
2520
|
+
"rustls 0.21.12",
|
|
2521
|
+
"tokio",
|
|
2522
|
+
]
|
|
2523
|
+
|
|
2524
|
+
[[package]]
|
|
2525
|
+
name = "tokio-rustls"
|
|
2526
|
+
version = "0.25.0"
|
|
2527
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2528
|
+
checksum = "775e0c0f0adb3a2f22a00c4745d728b479985fc15ee7ca6a2608388c5569860f"
|
|
2529
|
+
dependencies = [
|
|
2530
|
+
"rustls 0.22.4",
|
|
2531
|
+
"rustls-pki-types",
|
|
2321
2532
|
"tokio",
|
|
2322
2533
|
]
|
|
2323
2534
|
|
|
@@ -2334,23 +2545,22 @@ dependencies = [
|
|
|
2334
2545
|
|
|
2335
2546
|
[[package]]
|
|
2336
2547
|
name = "tokio-util"
|
|
2337
|
-
version = "0.7.
|
|
2548
|
+
version = "0.7.11"
|
|
2338
2549
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2339
|
-
checksum = "
|
|
2550
|
+
checksum = "9cf6b47b3771c49ac75ad09a6162f53ad4b8088b76ac60e8ec1455b31a189fe1"
|
|
2340
2551
|
dependencies = [
|
|
2341
2552
|
"bytes",
|
|
2342
2553
|
"futures-core",
|
|
2343
2554
|
"futures-sink",
|
|
2344
2555
|
"pin-project-lite",
|
|
2345
2556
|
"tokio",
|
|
2346
|
-
"tracing",
|
|
2347
2557
|
]
|
|
2348
2558
|
|
|
2349
2559
|
[[package]]
|
|
2350
2560
|
name = "toml"
|
|
2351
|
-
version = "0.8.
|
|
2561
|
+
version = "0.8.13"
|
|
2352
2562
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2353
|
-
checksum = "
|
|
2563
|
+
checksum = "a4e43f8cc456c9704c851ae29c67e17ef65d2c30017c17a9765b89c382dc8bba"
|
|
2354
2564
|
dependencies = [
|
|
2355
2565
|
"serde",
|
|
2356
2566
|
"serde_spanned",
|
|
@@ -2360,18 +2570,18 @@ dependencies = [
|
|
|
2360
2570
|
|
|
2361
2571
|
[[package]]
|
|
2362
2572
|
name = "toml_datetime"
|
|
2363
|
-
version = "0.6.
|
|
2573
|
+
version = "0.6.6"
|
|
2364
2574
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2365
|
-
checksum = "
|
|
2575
|
+
checksum = "4badfd56924ae69bcc9039335b2e017639ce3f9b001c393c1b2d1ef846ce2cbf"
|
|
2366
2576
|
dependencies = [
|
|
2367
2577
|
"serde",
|
|
2368
2578
|
]
|
|
2369
2579
|
|
|
2370
2580
|
[[package]]
|
|
2371
2581
|
name = "toml_edit"
|
|
2372
|
-
version = "0.22.
|
|
2582
|
+
version = "0.22.13"
|
|
2373
2583
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2374
|
-
checksum = "
|
|
2584
|
+
checksum = "c127785850e8c20836d49732ae6abfa47616e60bf9d9f57c43c250361a9db96c"
|
|
2375
2585
|
dependencies = [
|
|
2376
2586
|
"indexmap",
|
|
2377
2587
|
"serde",
|
|
@@ -2380,6 +2590,28 @@ dependencies = [
|
|
|
2380
2590
|
"winnow",
|
|
2381
2591
|
]
|
|
2382
2592
|
|
|
2593
|
+
[[package]]
|
|
2594
|
+
name = "tower"
|
|
2595
|
+
version = "0.4.13"
|
|
2596
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2597
|
+
checksum = "b8fa9be0de6cf49e536ce1851f987bd21a43b771b09473c3549a6c853db37c1c"
|
|
2598
|
+
dependencies = [
|
|
2599
|
+
"futures-core",
|
|
2600
|
+
"futures-util",
|
|
2601
|
+
"pin-project",
|
|
2602
|
+
"pin-project-lite",
|
|
2603
|
+
"tokio",
|
|
2604
|
+
"tower-layer",
|
|
2605
|
+
"tower-service",
|
|
2606
|
+
"tracing",
|
|
2607
|
+
]
|
|
2608
|
+
|
|
2609
|
+
[[package]]
|
|
2610
|
+
name = "tower-layer"
|
|
2611
|
+
version = "0.3.2"
|
|
2612
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2613
|
+
checksum = "c20c8dbed6283a09604c3e69b4b7eeb54e298b8a600d4d5ecb5ad39de609f1d0"
|
|
2614
|
+
|
|
2383
2615
|
[[package]]
|
|
2384
2616
|
name = "tower-service"
|
|
2385
2617
|
version = "0.3.2"
|
|
@@ -2392,6 +2624,7 @@ version = "0.1.40"
|
|
|
2392
2624
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2393
2625
|
checksum = "c3523ab5a71916ccf420eebdf5521fcef02141234bbc0b8a49f2fdc4544364ef"
|
|
2394
2626
|
dependencies = [
|
|
2627
|
+
"log",
|
|
2395
2628
|
"pin-project-lite",
|
|
2396
2629
|
"tracing-core",
|
|
2397
2630
|
]
|
|
@@ -2505,9 +2738,9 @@ dependencies = [
|
|
|
2505
2738
|
|
|
2506
2739
|
[[package]]
|
|
2507
2740
|
name = "unicode-width"
|
|
2508
|
-
version = "0.1.
|
|
2741
|
+
version = "0.1.12"
|
|
2509
2742
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2510
|
-
checksum = "
|
|
2743
|
+
checksum = "68f5e5f3158ecfd4b8ff6fe086db7c8467a2dfdac97fe420f2b7c4aa97af66d6"
|
|
2511
2744
|
|
|
2512
2745
|
[[package]]
|
|
2513
2746
|
name = "untrusted"
|
|
@@ -2522,7 +2755,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
2522
2755
|
checksum = "2f8811797a24ff123db3c6e1087aa42551d03d772b3724be421ad063da1f5f3f"
|
|
2523
2756
|
dependencies = [
|
|
2524
2757
|
"directories",
|
|
2525
|
-
"reqwest",
|
|
2758
|
+
"reqwest 0.11.27",
|
|
2526
2759
|
"semver",
|
|
2527
2760
|
"serde",
|
|
2528
2761
|
"serde_json",
|
|
@@ -2531,17 +2764,17 @@ dependencies = [
|
|
|
2531
2764
|
|
|
2532
2765
|
[[package]]
|
|
2533
2766
|
name = "ureq"
|
|
2534
|
-
version = "2.9.
|
|
2767
|
+
version = "2.9.7"
|
|
2535
2768
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2536
|
-
checksum = "
|
|
2769
|
+
checksum = "d11a831e3c0b56e438a28308e7c810799e3c118417f342d30ecec080105395cd"
|
|
2537
2770
|
dependencies = [
|
|
2538
|
-
"base64",
|
|
2771
|
+
"base64 0.22.1",
|
|
2539
2772
|
"flate2",
|
|
2540
2773
|
"log",
|
|
2541
2774
|
"once_cell",
|
|
2542
|
-
"rustls 0.22.
|
|
2775
|
+
"rustls 0.22.4",
|
|
2543
2776
|
"rustls-pki-types",
|
|
2544
|
-
"rustls-webpki 0.102.
|
|
2777
|
+
"rustls-webpki 0.102.3",
|
|
2545
2778
|
"serde",
|
|
2546
2779
|
"serde_json",
|
|
2547
2780
|
"url",
|
|
@@ -2624,7 +2857,7 @@ dependencies = [
|
|
|
2624
2857
|
"once_cell",
|
|
2625
2858
|
"proc-macro2",
|
|
2626
2859
|
"quote",
|
|
2627
|
-
"syn 2.0.
|
|
2860
|
+
"syn 2.0.63",
|
|
2628
2861
|
"wasm-bindgen-shared",
|
|
2629
2862
|
]
|
|
2630
2863
|
|
|
@@ -2658,7 +2891,7 @@ checksum = "e94f17b526d0a461a191c78ea52bbce64071ed5c04c9ffe424dcb38f74171bb7"
|
|
|
2658
2891
|
dependencies = [
|
|
2659
2892
|
"proc-macro2",
|
|
2660
2893
|
"quote",
|
|
2661
|
-
"syn 2.0.
|
|
2894
|
+
"syn 2.0.63",
|
|
2662
2895
|
"wasm-bindgen-backend",
|
|
2663
2896
|
"wasm-bindgen-shared",
|
|
2664
2897
|
]
|
|
@@ -2695,72 +2928,74 @@ dependencies = [
|
|
|
2695
2928
|
]
|
|
2696
2929
|
|
|
2697
2930
|
[[package]]
|
|
2698
|
-
name = "winapi"
|
|
2699
|
-
version = "0.
|
|
2931
|
+
name = "winapi-util"
|
|
2932
|
+
version = "0.1.8"
|
|
2700
2933
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2701
|
-
checksum = "
|
|
2934
|
+
checksum = "4d4cc384e1e73b93bafa6fb4f1df8c41695c8a91cf9c4c64358067d15a7b6c6b"
|
|
2702
2935
|
dependencies = [
|
|
2703
|
-
"
|
|
2704
|
-
"winapi-x86_64-pc-windows-gnu",
|
|
2936
|
+
"windows-sys 0.52.0",
|
|
2705
2937
|
]
|
|
2706
2938
|
|
|
2707
2939
|
[[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"
|
|
2940
|
+
name = "windows"
|
|
2941
|
+
version = "0.56.0"
|
|
2716
2942
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2717
|
-
checksum = "
|
|
2943
|
+
checksum = "1de69df01bdf1ead2f4ac895dc77c9351aefff65b2f3db429a343f9cbf05e132"
|
|
2718
2944
|
dependencies = [
|
|
2719
|
-
"
|
|
2945
|
+
"windows-core 0.56.0",
|
|
2946
|
+
"windows-targets 0.52.5",
|
|
2720
2947
|
]
|
|
2721
2948
|
|
|
2722
2949
|
[[package]]
|
|
2723
|
-
name = "
|
|
2724
|
-
version = "0.
|
|
2950
|
+
name = "windows-core"
|
|
2951
|
+
version = "0.52.0"
|
|
2725
2952
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2726
|
-
checksum = "
|
|
2953
|
+
checksum = "33ab640c8d7e35bf8ba19b884ba838ceb4fba93a4e8c65a9059d08afcfc683d9"
|
|
2954
|
+
dependencies = [
|
|
2955
|
+
"windows-targets 0.52.5",
|
|
2956
|
+
]
|
|
2727
2957
|
|
|
2728
2958
|
[[package]]
|
|
2729
|
-
name = "windows"
|
|
2730
|
-
version = "0.
|
|
2959
|
+
name = "windows-core"
|
|
2960
|
+
version = "0.56.0"
|
|
2731
2961
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2732
|
-
checksum = "
|
|
2962
|
+
checksum = "4698e52ed2d08f8658ab0c39512a7c00ee5fe2688c65f8c0a4f06750d729f2a6"
|
|
2733
2963
|
dependencies = [
|
|
2734
|
-
"windows-
|
|
2735
|
-
"windows-
|
|
2964
|
+
"windows-implement",
|
|
2965
|
+
"windows-interface",
|
|
2966
|
+
"windows-result",
|
|
2967
|
+
"windows-targets 0.52.5",
|
|
2736
2968
|
]
|
|
2737
2969
|
|
|
2738
2970
|
[[package]]
|
|
2739
|
-
name = "windows-
|
|
2740
|
-
version = "0.
|
|
2971
|
+
name = "windows-implement"
|
|
2972
|
+
version = "0.56.0"
|
|
2741
2973
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2742
|
-
checksum = "
|
|
2974
|
+
checksum = "f6fc35f58ecd95a9b71c4f2329b911016e6bec66b3f2e6a4aad86bd2e99e2f9b"
|
|
2743
2975
|
dependencies = [
|
|
2744
|
-
"
|
|
2976
|
+
"proc-macro2",
|
|
2977
|
+
"quote",
|
|
2978
|
+
"syn 2.0.63",
|
|
2745
2979
|
]
|
|
2746
2980
|
|
|
2747
2981
|
[[package]]
|
|
2748
|
-
name = "windows-
|
|
2749
|
-
version = "0.
|
|
2982
|
+
name = "windows-interface"
|
|
2983
|
+
version = "0.56.0"
|
|
2750
2984
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2751
|
-
checksum = "
|
|
2985
|
+
checksum = "08990546bf4edef8f431fa6326e032865f27138718c587dc21bc0265bbcb57cc"
|
|
2752
2986
|
dependencies = [
|
|
2753
|
-
"
|
|
2754
|
-
"
|
|
2987
|
+
"proc-macro2",
|
|
2988
|
+
"quote",
|
|
2989
|
+
"syn 2.0.63",
|
|
2755
2990
|
]
|
|
2756
2991
|
|
|
2757
2992
|
[[package]]
|
|
2758
2993
|
name = "windows-result"
|
|
2759
|
-
version = "0.1.
|
|
2994
|
+
version = "0.1.1"
|
|
2760
2995
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2761
|
-
checksum = "
|
|
2996
|
+
checksum = "749f0da9cc72d82e600d8d2e44cadd0b9eedb9038f71a1c58556ac1c5791813b"
|
|
2762
2997
|
dependencies = [
|
|
2763
|
-
"windows-targets 0.52.
|
|
2998
|
+
"windows-targets 0.52.5",
|
|
2764
2999
|
]
|
|
2765
3000
|
|
|
2766
3001
|
[[package]]
|
|
@@ -2778,7 +3013,7 @@ version = "0.52.0"
|
|
|
2778
3013
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2779
3014
|
checksum = "282be5f36a8ce781fad8c8ae18fa3f9beff57ec1b52cb3de0789201425d9a33d"
|
|
2780
3015
|
dependencies = [
|
|
2781
|
-
"windows-targets 0.52.
|
|
3016
|
+
"windows-targets 0.52.5",
|
|
2782
3017
|
]
|
|
2783
3018
|
|
|
2784
3019
|
[[package]]
|
|
@@ -2798,17 +3033,18 @@ dependencies = [
|
|
|
2798
3033
|
|
|
2799
3034
|
[[package]]
|
|
2800
3035
|
name = "windows-targets"
|
|
2801
|
-
version = "0.52.
|
|
3036
|
+
version = "0.52.5"
|
|
2802
3037
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2803
|
-
checksum = "
|
|
3038
|
+
checksum = "6f0713a46559409d202e70e28227288446bf7841d3211583a4b53e3f6d96e7eb"
|
|
2804
3039
|
dependencies = [
|
|
2805
|
-
"windows_aarch64_gnullvm 0.52.
|
|
2806
|
-
"windows_aarch64_msvc 0.52.
|
|
2807
|
-
"windows_i686_gnu 0.52.
|
|
2808
|
-
"
|
|
2809
|
-
"
|
|
2810
|
-
"
|
|
2811
|
-
"
|
|
3040
|
+
"windows_aarch64_gnullvm 0.52.5",
|
|
3041
|
+
"windows_aarch64_msvc 0.52.5",
|
|
3042
|
+
"windows_i686_gnu 0.52.5",
|
|
3043
|
+
"windows_i686_gnullvm",
|
|
3044
|
+
"windows_i686_msvc 0.52.5",
|
|
3045
|
+
"windows_x86_64_gnu 0.52.5",
|
|
3046
|
+
"windows_x86_64_gnullvm 0.52.5",
|
|
3047
|
+
"windows_x86_64_msvc 0.52.5",
|
|
2812
3048
|
]
|
|
2813
3049
|
|
|
2814
3050
|
[[package]]
|
|
@@ -2819,9 +3055,9 @@ checksum = "2b38e32f0abccf9987a4e3079dfb67dcd799fb61361e53e2882c3cbaf0d905d8"
|
|
|
2819
3055
|
|
|
2820
3056
|
[[package]]
|
|
2821
3057
|
name = "windows_aarch64_gnullvm"
|
|
2822
|
-
version = "0.52.
|
|
3058
|
+
version = "0.52.5"
|
|
2823
3059
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2824
|
-
checksum = "
|
|
3060
|
+
checksum = "7088eed71e8b8dda258ecc8bac5fb1153c5cffaf2578fc8ff5d61e23578d3263"
|
|
2825
3061
|
|
|
2826
3062
|
[[package]]
|
|
2827
3063
|
name = "windows_aarch64_msvc"
|
|
@@ -2831,9 +3067,9 @@ checksum = "dc35310971f3b2dbbf3f0690a219f40e2d9afcf64f9ab7cc1be722937c26b4bc"
|
|
|
2831
3067
|
|
|
2832
3068
|
[[package]]
|
|
2833
3069
|
name = "windows_aarch64_msvc"
|
|
2834
|
-
version = "0.52.
|
|
3070
|
+
version = "0.52.5"
|
|
2835
3071
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2836
|
-
checksum = "
|
|
3072
|
+
checksum = "9985fd1504e250c615ca5f281c3f7a6da76213ebd5ccc9561496568a2752afb6"
|
|
2837
3073
|
|
|
2838
3074
|
[[package]]
|
|
2839
3075
|
name = "windows_i686_gnu"
|
|
@@ -2843,9 +3079,15 @@ checksum = "a75915e7def60c94dcef72200b9a8e58e5091744960da64ec734a6c6e9b3743e"
|
|
|
2843
3079
|
|
|
2844
3080
|
[[package]]
|
|
2845
3081
|
name = "windows_i686_gnu"
|
|
2846
|
-
version = "0.52.
|
|
3082
|
+
version = "0.52.5"
|
|
3083
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3084
|
+
checksum = "88ba073cf16d5372720ec942a8ccbf61626074c6d4dd2e745299726ce8b89670"
|
|
3085
|
+
|
|
3086
|
+
[[package]]
|
|
3087
|
+
name = "windows_i686_gnullvm"
|
|
3088
|
+
version = "0.52.5"
|
|
2847
3089
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2848
|
-
checksum = "
|
|
3090
|
+
checksum = "87f4261229030a858f36b459e748ae97545d6f1ec60e5e0d6a3d32e0dc232ee9"
|
|
2849
3091
|
|
|
2850
3092
|
[[package]]
|
|
2851
3093
|
name = "windows_i686_msvc"
|
|
@@ -2855,9 +3097,9 @@ checksum = "8f55c233f70c4b27f66c523580f78f1004e8b5a8b659e05a4eb49d4166cca406"
|
|
|
2855
3097
|
|
|
2856
3098
|
[[package]]
|
|
2857
3099
|
name = "windows_i686_msvc"
|
|
2858
|
-
version = "0.52.
|
|
3100
|
+
version = "0.52.5"
|
|
2859
3101
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2860
|
-
checksum = "
|
|
3102
|
+
checksum = "db3c2bf3d13d5b658be73463284eaf12830ac9a26a90c717b7f771dfe97487bf"
|
|
2861
3103
|
|
|
2862
3104
|
[[package]]
|
|
2863
3105
|
name = "windows_x86_64_gnu"
|
|
@@ -2867,9 +3109,9 @@ checksum = "53d40abd2583d23e4718fddf1ebec84dbff8381c07cae67ff7768bbf19c6718e"
|
|
|
2867
3109
|
|
|
2868
3110
|
[[package]]
|
|
2869
3111
|
name = "windows_x86_64_gnu"
|
|
2870
|
-
version = "0.52.
|
|
3112
|
+
version = "0.52.5"
|
|
2871
3113
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2872
|
-
checksum = "
|
|
3114
|
+
checksum = "4e4246f76bdeff09eb48875a0fd3e2af6aada79d409d33011886d3e1581517d9"
|
|
2873
3115
|
|
|
2874
3116
|
[[package]]
|
|
2875
3117
|
name = "windows_x86_64_gnullvm"
|
|
@@ -2879,9 +3121,9 @@ checksum = "0b7b52767868a23d5bab768e390dc5f5c55825b6d30b86c844ff2dc7414044cc"
|
|
|
2879
3121
|
|
|
2880
3122
|
[[package]]
|
|
2881
3123
|
name = "windows_x86_64_gnullvm"
|
|
2882
|
-
version = "0.52.
|
|
3124
|
+
version = "0.52.5"
|
|
2883
3125
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2884
|
-
checksum = "
|
|
3126
|
+
checksum = "852298e482cd67c356ddd9570386e2862b5673c85bd5f88df9ab6802b334c596"
|
|
2885
3127
|
|
|
2886
3128
|
[[package]]
|
|
2887
3129
|
name = "windows_x86_64_msvc"
|
|
@@ -2891,15 +3133,15 @@ checksum = "ed94fce61571a4006852b7389a063ab983c02eb1bb37b47f8272ce92d06d9538"
|
|
|
2891
3133
|
|
|
2892
3134
|
[[package]]
|
|
2893
3135
|
name = "windows_x86_64_msvc"
|
|
2894
|
-
version = "0.52.
|
|
3136
|
+
version = "0.52.5"
|
|
2895
3137
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2896
|
-
checksum = "
|
|
3138
|
+
checksum = "bec47e5bfd1bff0eeaf6d8b485cc1074891a197ab4225d504cb7a1ab88b02bf0"
|
|
2897
3139
|
|
|
2898
3140
|
[[package]]
|
|
2899
3141
|
name = "winnow"
|
|
2900
|
-
version = "0.6.
|
|
3142
|
+
version = "0.6.8"
|
|
2901
3143
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2902
|
-
checksum = "
|
|
3144
|
+
checksum = "c3c52e9c97a68071b23e836c9380edae937f17b9c4667bd021973efc689f618d"
|
|
2903
3145
|
dependencies = [
|
|
2904
3146
|
"memchr",
|
|
2905
3147
|
]
|
|
@@ -2914,6 +3156,16 @@ dependencies = [
|
|
|
2914
3156
|
"windows-sys 0.48.0",
|
|
2915
3157
|
]
|
|
2916
3158
|
|
|
3159
|
+
[[package]]
|
|
3160
|
+
name = "winreg"
|
|
3161
|
+
version = "0.52.0"
|
|
3162
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3163
|
+
checksum = "a277a57398d4bfa075df44f501a17cfdf8542d224f0d36095a2adc7aee4ef0a5"
|
|
3164
|
+
dependencies = [
|
|
3165
|
+
"cfg-if",
|
|
3166
|
+
"windows-sys 0.48.0",
|
|
3167
|
+
]
|
|
3168
|
+
|
|
2917
3169
|
[[package]]
|
|
2918
3170
|
name = "xxhash-rust"
|
|
2919
3171
|
version = "0.8.10"
|
|
@@ -2940,3 +3192,31 @@ name = "zeroize"
|
|
|
2940
3192
|
version = "1.7.0"
|
|
2941
3193
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2942
3194
|
checksum = "525b4ec142c6b68a2d10f01f7bbf6755599ca3f81ea53b8431b7dd348f5fdb2d"
|
|
3195
|
+
|
|
3196
|
+
[[package]]
|
|
3197
|
+
name = "zstd"
|
|
3198
|
+
version = "0.13.1"
|
|
3199
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3200
|
+
checksum = "2d789b1514203a1120ad2429eae43a7bd32b90976a7bb8a05f7ec02fa88cc23a"
|
|
3201
|
+
dependencies = [
|
|
3202
|
+
"zstd-safe",
|
|
3203
|
+
]
|
|
3204
|
+
|
|
3205
|
+
[[package]]
|
|
3206
|
+
name = "zstd-safe"
|
|
3207
|
+
version = "7.1.0"
|
|
3208
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3209
|
+
checksum = "1cd99b45c6bc03a018c8b8a86025678c87e55526064e38f9df301989dce7ec0a"
|
|
3210
|
+
dependencies = [
|
|
3211
|
+
"zstd-sys",
|
|
3212
|
+
]
|
|
3213
|
+
|
|
3214
|
+
[[package]]
|
|
3215
|
+
name = "zstd-sys"
|
|
3216
|
+
version = "2.0.10+zstd.1.5.6"
|
|
3217
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3218
|
+
checksum = "c253a4914af5bafc8fa8c86ee400827e83cf6ec01195ec1f1ed8441bf00d65aa"
|
|
3219
|
+
dependencies = [
|
|
3220
|
+
"cc",
|
|
3221
|
+
"pkg-config",
|
|
3222
|
+
]
|