git-cliff 2.3.0__tar.gz → 2.5.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.3.0 → git_cliff-2.5.0}/Cargo.lock +831 -398
- {git_cliff-2.3.0 → git_cliff-2.5.0}/Cargo.toml +5 -3
- {git_cliff-2.3.0 → git_cliff-2.5.0}/PKG-INFO +16 -26
- {git_cliff-2.3.0 → git_cliff-2.5.0}/README.md +15 -25
- {git_cliff-2.3.0 → git_cliff-2.5.0}/git-cliff/Cargo.toml +20 -10
- {git_cliff-2.3.0 → git_cliff-2.5.0}/git-cliff/src/args.rs +186 -42
- {git_cliff-2.3.0 → git_cliff-2.5.0}/git-cliff/src/lib.rs +187 -129
- {git_cliff-2.3.0 → git_cliff-2.5.0}/git-cliff/src/logger.rs +19 -2
- git_cliff-2.5.0/git-cliff/src/main.rs +51 -0
- git_cliff-2.5.0/git-cliff/src/profiler.rs +52 -0
- {git_cliff-2.3.0 → git_cliff-2.5.0}/git-cliff-core/Cargo.toml +34 -36
- git_cliff-2.5.0/git-cliff-core/README.md +94 -0
- {git_cliff-2.3.0 → git_cliff-2.5.0}/git-cliff-core/src/changelog.rs +252 -75
- {git_cliff-2.3.0 → git_cliff-2.5.0}/git-cliff-core/src/commit.rs +93 -20
- {git_cliff-2.3.0 → git_cliff-2.5.0}/git-cliff-core/src/config.rs +88 -6
- {git_cliff-2.3.0 → git_cliff-2.5.0}/git-cliff-core/src/embed.rs +1 -1
- {git_cliff-2.3.0 → git_cliff-2.5.0}/git-cliff-core/src/error.rs +4 -4
- {git_cliff-2.3.0 → git_cliff-2.5.0}/git-cliff-core/src/lib.rs +3 -1
- {git_cliff-2.3.0 → git_cliff-2.5.0}/git-cliff-core/src/release.rs +415 -45
- git_cliff-2.5.0/git-cliff-core/src/remote/gitea.rs +184 -0
- {git_cliff-2.3.0 → git_cliff-2.5.0}/git-cliff-core/src/remote/gitlab.rs +20 -1
- {git_cliff-2.3.0 → git_cliff-2.5.0}/git-cliff-core/src/remote/mod.rs +5 -0
- git_cliff-2.5.0/git-cliff-core/src/repo.rs +748 -0
- git_cliff-2.5.0/git-cliff-core/src/tag.rs +47 -0
- {git_cliff-2.3.0 → git_cliff-2.5.0}/git-cliff-core/src/template.rs +89 -42
- {git_cliff-2.3.0 → git_cliff-2.5.0}/git-cliff-core/tests/integration_test.rs +20 -0
- git_cliff-2.3.0/git-cliff/src/main.rs +0 -25
- git_cliff-2.3.0/git-cliff-core/src/repo.rs +0 -316
- {git_cliff-2.3.0 → git_cliff-2.5.0}/git-cliff/src/bin/completions.rs +0 -0
- {git_cliff-2.3.0 → git_cliff-2.5.0}/git-cliff/src/bin/mangen.rs +0 -0
- {git_cliff-2.3.0 → git_cliff-2.5.0}/git-cliff-core/src/command.rs +0 -0
- {git_cliff-2.3.0 → git_cliff-2.5.0}/git-cliff-core/src/remote/bitbucket.rs +0 -0
- {git_cliff-2.3.0 → git_cliff-2.5.0}/git-cliff-core/src/remote/github.rs +0 -0
- {git_cliff-2.3.0 → git_cliff-2.5.0}/pyproject.toml +0 -0
|
@@ -4,9 +4,9 @@ version = 3
|
|
|
4
4
|
|
|
5
5
|
[[package]]
|
|
6
6
|
name = "addr2line"
|
|
7
|
-
version = "0.
|
|
7
|
+
version = "0.22.0"
|
|
8
8
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
9
|
-
checksum = "
|
|
9
|
+
checksum = "6e4503c46a5c0c7844e948c9a4d6acd9f50cccb4de1c48eb9e291ea17470c678"
|
|
10
10
|
dependencies = [
|
|
11
11
|
"gimli",
|
|
12
12
|
]
|
|
@@ -17,12 +17,31 @@ version = "1.0.2"
|
|
|
17
17
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
18
18
|
checksum = "f26201604c87b1e01bd3d98f8d5d9a8fcbb815e8cedb41ffccbeb4bf593a35fe"
|
|
19
19
|
|
|
20
|
+
[[package]]
|
|
21
|
+
name = "adler2"
|
|
22
|
+
version = "2.0.0"
|
|
23
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
24
|
+
checksum = "512761e0bb2578dd7380c6baaa0f4ce03e84f95e960231d1dec8bf4d7d6e2627"
|
|
25
|
+
|
|
20
26
|
[[package]]
|
|
21
27
|
name = "adler32"
|
|
22
28
|
version = "1.2.0"
|
|
23
29
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
24
30
|
checksum = "aae1277d39aeec15cb388266ecc24b11c80469deae6067e17a1a7aa9e5c1f234"
|
|
25
31
|
|
|
32
|
+
[[package]]
|
|
33
|
+
name = "ahash"
|
|
34
|
+
version = "0.8.11"
|
|
35
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
36
|
+
checksum = "e89da841a80418a9b391ebaea17f5c112ffaaa96f621d2c285b5174da76b9011"
|
|
37
|
+
dependencies = [
|
|
38
|
+
"cfg-if",
|
|
39
|
+
"getrandom",
|
|
40
|
+
"once_cell",
|
|
41
|
+
"version_check",
|
|
42
|
+
"zerocopy",
|
|
43
|
+
]
|
|
44
|
+
|
|
26
45
|
[[package]]
|
|
27
46
|
name = "aho-corasick"
|
|
28
47
|
version = "1.1.3"
|
|
@@ -32,6 +51,12 @@ dependencies = [
|
|
|
32
51
|
"memchr",
|
|
33
52
|
]
|
|
34
53
|
|
|
54
|
+
[[package]]
|
|
55
|
+
name = "allocator-api2"
|
|
56
|
+
version = "0.2.18"
|
|
57
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
58
|
+
checksum = "5c6cb57a04249c6480766f7f7cef5467412af1490f8d1e243141daddada3264f"
|
|
59
|
+
|
|
35
60
|
[[package]]
|
|
36
61
|
name = "android-tzdata"
|
|
37
62
|
version = "0.1.1"
|
|
@@ -49,9 +74,9 @@ dependencies = [
|
|
|
49
74
|
|
|
50
75
|
[[package]]
|
|
51
76
|
name = "anstream"
|
|
52
|
-
version = "0.6.
|
|
77
|
+
version = "0.6.15"
|
|
53
78
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
54
|
-
checksum = "
|
|
79
|
+
checksum = "64e15c1ab1f89faffbf04a634d5e1962e9074f2741eef6d97f3c4e322426d526"
|
|
55
80
|
dependencies = [
|
|
56
81
|
"anstyle",
|
|
57
82
|
"anstyle-parse",
|
|
@@ -64,33 +89,33 @@ dependencies = [
|
|
|
64
89
|
|
|
65
90
|
[[package]]
|
|
66
91
|
name = "anstyle"
|
|
67
|
-
version = "1.0.
|
|
92
|
+
version = "1.0.8"
|
|
68
93
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
69
|
-
checksum = "
|
|
94
|
+
checksum = "1bec1de6f59aedf83baf9ff929c98f2ad654b97c9510f4e70cf6f661d49fd5b1"
|
|
70
95
|
|
|
71
96
|
[[package]]
|
|
72
97
|
name = "anstyle-parse"
|
|
73
|
-
version = "0.2.
|
|
98
|
+
version = "0.2.5"
|
|
74
99
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
75
|
-
checksum = "
|
|
100
|
+
checksum = "eb47de1e80c2b463c735db5b217a0ddc39d612e7ac9e2e96a5aed1f57616c1cb"
|
|
76
101
|
dependencies = [
|
|
77
102
|
"utf8parse",
|
|
78
103
|
]
|
|
79
104
|
|
|
80
105
|
[[package]]
|
|
81
106
|
name = "anstyle-query"
|
|
82
|
-
version = "1.
|
|
107
|
+
version = "1.1.1"
|
|
83
108
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
84
|
-
checksum = "
|
|
109
|
+
checksum = "6d36fc52c7f6c869915e99412912f22093507da8d9e942ceaf66fe4b7c14422a"
|
|
85
110
|
dependencies = [
|
|
86
111
|
"windows-sys 0.52.0",
|
|
87
112
|
]
|
|
88
113
|
|
|
89
114
|
[[package]]
|
|
90
115
|
name = "anstyle-wincon"
|
|
91
|
-
version = "3.0.
|
|
116
|
+
version = "3.0.4"
|
|
92
117
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
93
|
-
checksum = "
|
|
118
|
+
checksum = "5bf74e1b6e971609db8ca7a9ce79fd5768ab6ae46441c572e46cf596f59e57f8"
|
|
94
119
|
dependencies = [
|
|
95
120
|
"anstyle",
|
|
96
121
|
"windows-sys 0.52.0",
|
|
@@ -98,15 +123,21 @@ dependencies = [
|
|
|
98
123
|
|
|
99
124
|
[[package]]
|
|
100
125
|
name = "anyhow"
|
|
101
|
-
version = "1.0.
|
|
126
|
+
version = "1.0.86"
|
|
102
127
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
103
|
-
checksum = "
|
|
128
|
+
checksum = "b3d1d046238990b9cf5bcde22a3fb3584ee5cf65fb2765f454ed428c7a0063da"
|
|
129
|
+
|
|
130
|
+
[[package]]
|
|
131
|
+
name = "arrayvec"
|
|
132
|
+
version = "0.7.6"
|
|
133
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
134
|
+
checksum = "7c02d123df017efcdfbd739ef81735b36c5ba83ec3c59c80a9d7ecc718f92e50"
|
|
104
135
|
|
|
105
136
|
[[package]]
|
|
106
137
|
name = "async-compression"
|
|
107
|
-
version = "0.4.
|
|
138
|
+
version = "0.4.12"
|
|
108
139
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
109
|
-
checksum = "
|
|
140
|
+
checksum = "fec134f64e2bc57411226dfc4e52dec859ddfc7e711fc5e07b612584f000e4aa"
|
|
110
141
|
dependencies = [
|
|
111
142
|
"futures-core",
|
|
112
143
|
"memchr",
|
|
@@ -118,13 +149,13 @@ dependencies = [
|
|
|
118
149
|
|
|
119
150
|
[[package]]
|
|
120
151
|
name = "async-trait"
|
|
121
|
-
version = "0.1.
|
|
152
|
+
version = "0.1.81"
|
|
122
153
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
123
|
-
checksum = "
|
|
154
|
+
checksum = "6e0c28dcc82d7c8ead5cb13beb15405b57b8546e93215673ff8ca0349a028107"
|
|
124
155
|
dependencies = [
|
|
125
156
|
"proc-macro2",
|
|
126
157
|
"quote",
|
|
127
|
-
"syn
|
|
158
|
+
"syn",
|
|
128
159
|
]
|
|
129
160
|
|
|
130
161
|
[[package]]
|
|
@@ -135,15 +166,15 @@ checksum = "0c4b4d0bd25bd0b74681c0ad21497610ce1b7c91b1022cd21c80c6fbdd9476b0"
|
|
|
135
166
|
|
|
136
167
|
[[package]]
|
|
137
168
|
name = "backtrace"
|
|
138
|
-
version = "0.3.
|
|
169
|
+
version = "0.3.73"
|
|
139
170
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
140
|
-
checksum = "
|
|
171
|
+
checksum = "5cc23269a4f8976d0a4d2e7109211a419fe30e8d88d677cd60b6bc79c5732e0a"
|
|
141
172
|
dependencies = [
|
|
142
173
|
"addr2line",
|
|
143
174
|
"cc",
|
|
144
175
|
"cfg-if",
|
|
145
176
|
"libc",
|
|
146
|
-
"miniz_oxide",
|
|
177
|
+
"miniz_oxide 0.7.4",
|
|
147
178
|
"object",
|
|
148
179
|
"rustc-demangle",
|
|
149
180
|
]
|
|
@@ -169,6 +200,25 @@ dependencies = [
|
|
|
169
200
|
"serde",
|
|
170
201
|
]
|
|
171
202
|
|
|
203
|
+
[[package]]
|
|
204
|
+
name = "bincode"
|
|
205
|
+
version = "2.0.0-rc.3"
|
|
206
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
207
|
+
checksum = "f11ea1a0346b94ef188834a65c068a03aec181c94896d481d7a0a40d85b0ce95"
|
|
208
|
+
dependencies = [
|
|
209
|
+
"bincode_derive",
|
|
210
|
+
"serde",
|
|
211
|
+
]
|
|
212
|
+
|
|
213
|
+
[[package]]
|
|
214
|
+
name = "bincode_derive"
|
|
215
|
+
version = "2.0.0-rc.3"
|
|
216
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
217
|
+
checksum = "7e30759b3b99a1b802a7a3aa21c85c3ded5c28e1c83170d82d70f08bbf7f3e4c"
|
|
218
|
+
dependencies = [
|
|
219
|
+
"virtue",
|
|
220
|
+
]
|
|
221
|
+
|
|
172
222
|
[[package]]
|
|
173
223
|
name = "bitflags"
|
|
174
224
|
version = "1.3.2"
|
|
@@ -177,9 +227,9 @@ checksum = "bef38d45163c2f1dde094a7dfd33ccf595c92905c8f8f4fdc18d06fb1037718a"
|
|
|
177
227
|
|
|
178
228
|
[[package]]
|
|
179
229
|
name = "bitflags"
|
|
180
|
-
version = "2.
|
|
230
|
+
version = "2.6.0"
|
|
181
231
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
182
|
-
checksum = "
|
|
232
|
+
checksum = "b048fb63fd8b5923fc5aa7b340d8e156aec7ec02f0c78fa8a6ddc2613f6f71de"
|
|
183
233
|
|
|
184
234
|
[[package]]
|
|
185
235
|
name = "block-buffer"
|
|
@@ -192,9 +242,9 @@ dependencies = [
|
|
|
192
242
|
|
|
193
243
|
[[package]]
|
|
194
244
|
name = "bstr"
|
|
195
|
-
version = "1.
|
|
245
|
+
version = "1.10.0"
|
|
196
246
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
197
|
-
checksum = "
|
|
247
|
+
checksum = "40723b8fb387abc38f4f4a37c09073622e41dd12327033091ef8950659e6dc0c"
|
|
198
248
|
dependencies = [
|
|
199
249
|
"memchr",
|
|
200
250
|
"serde",
|
|
@@ -206,11 +256,23 @@ version = "3.16.0"
|
|
|
206
256
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
207
257
|
checksum = "79296716171880943b8470b5f8d03aa55eb2e645a4874bdbb28adb49162e012c"
|
|
208
258
|
|
|
259
|
+
[[package]]
|
|
260
|
+
name = "bytemuck"
|
|
261
|
+
version = "1.17.0"
|
|
262
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
263
|
+
checksum = "6fd4c6dcc3b0aea2f5c0b4b82c2b15fe39ddbc76041a310848f4706edf76bb31"
|
|
264
|
+
|
|
265
|
+
[[package]]
|
|
266
|
+
name = "byteorder"
|
|
267
|
+
version = "1.5.0"
|
|
268
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
269
|
+
checksum = "1fd0f2584146f6f2ef48085050886acf353beff7305ebd1ae69500e27c67f64b"
|
|
270
|
+
|
|
209
271
|
[[package]]
|
|
210
272
|
name = "bytes"
|
|
211
|
-
version = "1.
|
|
273
|
+
version = "1.7.1"
|
|
212
274
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
213
|
-
checksum = "
|
|
275
|
+
checksum = "8318a53db07bb3f8dca91a600466bdb3f2eaadeedfdbcf02e1accbad9271ba50"
|
|
214
276
|
|
|
215
277
|
[[package]]
|
|
216
278
|
name = "cacache"
|
|
@@ -223,7 +285,7 @@ dependencies = [
|
|
|
223
285
|
"futures",
|
|
224
286
|
"hex",
|
|
225
287
|
"libc",
|
|
226
|
-
"memmap2",
|
|
288
|
+
"memmap2 0.5.10",
|
|
227
289
|
"miette",
|
|
228
290
|
"reflink-copy",
|
|
229
291
|
"serde",
|
|
@@ -241,13 +303,13 @@ dependencies = [
|
|
|
241
303
|
|
|
242
304
|
[[package]]
|
|
243
305
|
name = "cc"
|
|
244
|
-
version = "1.
|
|
306
|
+
version = "1.1.14"
|
|
245
307
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
246
|
-
checksum = "
|
|
308
|
+
checksum = "50d2eb3cd3d1bf4529e31c215ee6f93ec5a3d536d9f578f93d9d33ee19562932"
|
|
247
309
|
dependencies = [
|
|
248
310
|
"jobserver",
|
|
249
311
|
"libc",
|
|
250
|
-
"
|
|
312
|
+
"shlex",
|
|
251
313
|
]
|
|
252
314
|
|
|
253
315
|
[[package]]
|
|
@@ -265,7 +327,7 @@ dependencies = [
|
|
|
265
327
|
"android-tzdata",
|
|
266
328
|
"iana-time-zone",
|
|
267
329
|
"num-traits",
|
|
268
|
-
"windows-targets 0.52.
|
|
330
|
+
"windows-targets 0.52.6",
|
|
269
331
|
]
|
|
270
332
|
|
|
271
333
|
[[package]]
|
|
@@ -292,9 +354,9 @@ dependencies = [
|
|
|
292
354
|
|
|
293
355
|
[[package]]
|
|
294
356
|
name = "clap"
|
|
295
|
-
version = "4.5.
|
|
357
|
+
version = "4.5.16"
|
|
296
358
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
297
|
-
checksum = "
|
|
359
|
+
checksum = "ed6719fffa43d0d87e5fd8caeab59be1554fb028cd30edc88fc4369b17971019"
|
|
298
360
|
dependencies = [
|
|
299
361
|
"clap_builder",
|
|
300
362
|
"clap_derive",
|
|
@@ -302,9 +364,9 @@ dependencies = [
|
|
|
302
364
|
|
|
303
365
|
[[package]]
|
|
304
366
|
name = "clap_builder"
|
|
305
|
-
version = "4.5.
|
|
367
|
+
version = "4.5.15"
|
|
306
368
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
307
|
-
checksum = "
|
|
369
|
+
checksum = "216aec2b177652e3846684cbfe25c9964d18ec45234f0f5da5157b207ed1aab6"
|
|
308
370
|
dependencies = [
|
|
309
371
|
"anstream",
|
|
310
372
|
"anstyle",
|
|
@@ -315,36 +377,36 @@ dependencies = [
|
|
|
315
377
|
|
|
316
378
|
[[package]]
|
|
317
379
|
name = "clap_complete"
|
|
318
|
-
version = "4.5.
|
|
380
|
+
version = "4.5.23"
|
|
319
381
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
320
|
-
checksum = "
|
|
382
|
+
checksum = "531d7959c5bbb6e266cecdd0f20213639c3a5c3e4d615f97db87661745f781ff"
|
|
321
383
|
dependencies = [
|
|
322
384
|
"clap",
|
|
323
385
|
]
|
|
324
386
|
|
|
325
387
|
[[package]]
|
|
326
388
|
name = "clap_derive"
|
|
327
|
-
version = "4.5.
|
|
389
|
+
version = "4.5.13"
|
|
328
390
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
329
|
-
checksum = "
|
|
391
|
+
checksum = "501d359d5f3dcaf6ecdeee48833ae73ec6e42723a1e52419c79abf9507eec0a0"
|
|
330
392
|
dependencies = [
|
|
331
393
|
"heck",
|
|
332
394
|
"proc-macro2",
|
|
333
395
|
"quote",
|
|
334
|
-
"syn
|
|
396
|
+
"syn",
|
|
335
397
|
]
|
|
336
398
|
|
|
337
399
|
[[package]]
|
|
338
400
|
name = "clap_lex"
|
|
339
|
-
version = "0.7.
|
|
401
|
+
version = "0.7.2"
|
|
340
402
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
341
|
-
checksum = "
|
|
403
|
+
checksum = "1462739cb27611015575c0c11df5df7601141071f07518d56fcc1be504cbec97"
|
|
342
404
|
|
|
343
405
|
[[package]]
|
|
344
406
|
name = "clap_mangen"
|
|
345
|
-
version = "0.2.
|
|
407
|
+
version = "0.2.23"
|
|
346
408
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
347
|
-
checksum = "
|
|
409
|
+
checksum = "f17415fd4dfbea46e3274fcd8d368284519b358654772afb700dc2e8d2b24eeb"
|
|
348
410
|
dependencies = [
|
|
349
411
|
"clap",
|
|
350
412
|
"roff",
|
|
@@ -352,9 +414,9 @@ dependencies = [
|
|
|
352
414
|
|
|
353
415
|
[[package]]
|
|
354
416
|
name = "colorchoice"
|
|
355
|
-
version = "1.0.
|
|
417
|
+
version = "1.0.2"
|
|
356
418
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
357
|
-
checksum = "
|
|
419
|
+
checksum = "d3fd119d74b830634cea2a0f58bbd0d54540518a14397557951e79340abc28c0"
|
|
358
420
|
|
|
359
421
|
[[package]]
|
|
360
422
|
name = "config"
|
|
@@ -405,24 +467,42 @@ dependencies = [
|
|
|
405
467
|
|
|
406
468
|
[[package]]
|
|
407
469
|
name = "core-foundation-sys"
|
|
408
|
-
version = "0.8.
|
|
470
|
+
version = "0.8.7"
|
|
471
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
472
|
+
checksum = "773648b94d0e5d620f64f280777445740e61fe701025087ec8b57f45c791888b"
|
|
473
|
+
|
|
474
|
+
[[package]]
|
|
475
|
+
name = "core2"
|
|
476
|
+
version = "0.4.0"
|
|
477
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
478
|
+
checksum = "b49ba7ef1ad6107f8824dbe97de947cbaac53c44e7f9756a1fba0d37c1eec505"
|
|
479
|
+
dependencies = [
|
|
480
|
+
"memchr",
|
|
481
|
+
]
|
|
482
|
+
|
|
483
|
+
[[package]]
|
|
484
|
+
name = "cpp_demangle"
|
|
485
|
+
version = "0.4.3"
|
|
409
486
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
410
|
-
checksum = "
|
|
487
|
+
checksum = "7e8227005286ec39567949b33df9896bcadfa6051bccca2488129f108ca23119"
|
|
488
|
+
dependencies = [
|
|
489
|
+
"cfg-if",
|
|
490
|
+
]
|
|
411
491
|
|
|
412
492
|
[[package]]
|
|
413
493
|
name = "cpufeatures"
|
|
414
|
-
version = "0.2.
|
|
494
|
+
version = "0.2.13"
|
|
415
495
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
416
|
-
checksum = "
|
|
496
|
+
checksum = "51e852e6dc9a5bed1fae92dd2375037bf2b768725bf3be87811edee3249d09ad"
|
|
417
497
|
dependencies = [
|
|
418
498
|
"libc",
|
|
419
499
|
]
|
|
420
500
|
|
|
421
501
|
[[package]]
|
|
422
502
|
name = "crc32fast"
|
|
423
|
-
version = "1.4.
|
|
503
|
+
version = "1.4.2"
|
|
424
504
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
425
|
-
checksum = "
|
|
505
|
+
checksum = "a97769d94ddab943e4510d138150169a2758b5ef3eb191a9ee688de3e23ef7b3"
|
|
426
506
|
dependencies = [
|
|
427
507
|
"cfg-if",
|
|
428
508
|
]
|
|
@@ -448,9 +528,9 @@ dependencies = [
|
|
|
448
528
|
|
|
449
529
|
[[package]]
|
|
450
530
|
name = "crossbeam-utils"
|
|
451
|
-
version = "0.8.
|
|
531
|
+
version = "0.8.20"
|
|
452
532
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
453
|
-
checksum = "
|
|
533
|
+
checksum = "22ec99545bb0ed0ea7bb9b8e1e9122ea386ff8a48c0922e43f36d45ab09e0e80"
|
|
454
534
|
|
|
455
535
|
[[package]]
|
|
456
536
|
name = "crypto-common"
|
|
@@ -462,6 +542,21 @@ dependencies = [
|
|
|
462
542
|
"typenum",
|
|
463
543
|
]
|
|
464
544
|
|
|
545
|
+
[[package]]
|
|
546
|
+
name = "dary_heap"
|
|
547
|
+
version = "0.3.6"
|
|
548
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
549
|
+
checksum = "7762d17f1241643615821a8455a0b2c3e803784b058693d990b11f2dce25a0ca"
|
|
550
|
+
|
|
551
|
+
[[package]]
|
|
552
|
+
name = "debugid"
|
|
553
|
+
version = "0.8.0"
|
|
554
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
555
|
+
checksum = "bef552e6f588e446098f6ba40d89ac146c8c7b64aade83c051ee00bb5d2bc18d"
|
|
556
|
+
dependencies = [
|
|
557
|
+
"uuid",
|
|
558
|
+
]
|
|
559
|
+
|
|
465
560
|
[[package]]
|
|
466
561
|
name = "deranged"
|
|
467
562
|
version = "0.3.11"
|
|
@@ -473,9 +568,9 @@ dependencies = [
|
|
|
473
568
|
|
|
474
569
|
[[package]]
|
|
475
570
|
name = "deunicode"
|
|
476
|
-
version = "1.
|
|
571
|
+
version = "1.6.0"
|
|
477
572
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
478
|
-
checksum = "
|
|
573
|
+
checksum = "339544cc9e2c4dc3fc7149fd630c5f22263a4fdf18a98afd0075784968b5cf00"
|
|
479
574
|
|
|
480
575
|
[[package]]
|
|
481
576
|
name = "diff"
|
|
@@ -537,9 +632,9 @@ checksum = "fea41bba32d969b513997752735605054bc0dfa92b4c56bf1189f2e174be7a10"
|
|
|
537
632
|
|
|
538
633
|
[[package]]
|
|
539
634
|
name = "document-features"
|
|
540
|
-
version = "0.2.
|
|
635
|
+
version = "0.2.10"
|
|
541
636
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
542
|
-
checksum = "
|
|
637
|
+
checksum = "cb6969eaabd2421f8a2775cfd2471a2b634372b4a25d41e3bd647b79912850a0"
|
|
543
638
|
dependencies = [
|
|
544
639
|
"litrs",
|
|
545
640
|
]
|
|
@@ -552,9 +647,9 @@ checksum = "0d6ef0072f8a535281e4876be788938b528e9a1d43900b82c2569af7da799125"
|
|
|
552
647
|
|
|
553
648
|
[[package]]
|
|
554
649
|
name = "either"
|
|
555
|
-
version = "1.
|
|
650
|
+
version = "1.13.0"
|
|
556
651
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
557
|
-
checksum = "
|
|
652
|
+
checksum = "60b1af1c220855b6ceac025d3f6ecdd2b7c4894bfe9cd9bda4fbb4bc7c0d4cf0"
|
|
558
653
|
|
|
559
654
|
[[package]]
|
|
560
655
|
name = "encode_unicode"
|
|
@@ -616,14 +711,26 @@ version = "2.1.0"
|
|
|
616
711
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
617
712
|
checksum = "9fc0510504f03c51ada170672ac806f1f105a88aa97a5281117e1ddc3368e51a"
|
|
618
713
|
|
|
714
|
+
[[package]]
|
|
715
|
+
name = "findshlibs"
|
|
716
|
+
version = "0.10.2"
|
|
717
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
718
|
+
checksum = "40b9e59cd0f7e0806cca4be089683ecb6434e602038df21fe6bf6711b2f07f64"
|
|
719
|
+
dependencies = [
|
|
720
|
+
"cc",
|
|
721
|
+
"lazy_static",
|
|
722
|
+
"libc",
|
|
723
|
+
"winapi",
|
|
724
|
+
]
|
|
725
|
+
|
|
619
726
|
[[package]]
|
|
620
727
|
name = "flate2"
|
|
621
|
-
version = "1.0.
|
|
728
|
+
version = "1.0.32"
|
|
622
729
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
623
|
-
checksum = "
|
|
730
|
+
checksum = "9c0596c1eac1f9e04ed902702e9878208b336edc9d6fddc8a48387349bab3666"
|
|
624
731
|
dependencies = [
|
|
625
732
|
"crc32fast",
|
|
626
|
-
"miniz_oxide",
|
|
733
|
+
"miniz_oxide 0.8.0",
|
|
627
734
|
]
|
|
628
735
|
|
|
629
736
|
[[package]]
|
|
@@ -697,7 +804,7 @@ checksum = "87750cf4b7a4c0625b1529e4c543c2182106e4dedc60a2a6455e00d212c489ac"
|
|
|
697
804
|
dependencies = [
|
|
698
805
|
"proc-macro2",
|
|
699
806
|
"quote",
|
|
700
|
-
"syn
|
|
807
|
+
"syn",
|
|
701
808
|
]
|
|
702
809
|
|
|
703
810
|
[[package]]
|
|
@@ -753,13 +860,13 @@ dependencies = [
|
|
|
753
860
|
|
|
754
861
|
[[package]]
|
|
755
862
|
name = "gimli"
|
|
756
|
-
version = "0.
|
|
863
|
+
version = "0.29.0"
|
|
757
864
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
758
|
-
checksum = "
|
|
865
|
+
checksum = "40ecd4077b5ae9fd2e9e169b102c6c330d0605168eb0e8bf79952b256dbefffd"
|
|
759
866
|
|
|
760
867
|
[[package]]
|
|
761
868
|
name = "git-cliff"
|
|
762
|
-
version = "2.
|
|
869
|
+
version = "2.5.0"
|
|
763
870
|
dependencies = [
|
|
764
871
|
"clap",
|
|
765
872
|
"clap_complete",
|
|
@@ -771,17 +878,22 @@ dependencies = [
|
|
|
771
878
|
"indicatif",
|
|
772
879
|
"lazy_static",
|
|
773
880
|
"log",
|
|
881
|
+
"pprof",
|
|
774
882
|
"pretty_assertions",
|
|
883
|
+
"rand",
|
|
775
884
|
"regex",
|
|
776
885
|
"secrecy",
|
|
777
886
|
"shellexpand",
|
|
778
887
|
"update-informer",
|
|
888
|
+
"url",
|
|
779
889
|
]
|
|
780
890
|
|
|
781
891
|
[[package]]
|
|
782
892
|
name = "git-cliff-core"
|
|
783
|
-
version = "2.
|
|
893
|
+
version = "2.5.0"
|
|
784
894
|
dependencies = [
|
|
895
|
+
"bincode 2.0.0-rc.3",
|
|
896
|
+
"cacache",
|
|
785
897
|
"config",
|
|
786
898
|
"dirs",
|
|
787
899
|
"document-features",
|
|
@@ -799,7 +911,7 @@ dependencies = [
|
|
|
799
911
|
"next_version",
|
|
800
912
|
"pretty_assertions",
|
|
801
913
|
"regex",
|
|
802
|
-
"reqwest 0.12.
|
|
914
|
+
"reqwest 0.12.7",
|
|
803
915
|
"reqwest-middleware",
|
|
804
916
|
"rust-embed",
|
|
805
917
|
"secrecy",
|
|
@@ -807,18 +919,20 @@ dependencies = [
|
|
|
807
919
|
"serde",
|
|
808
920
|
"serde_json",
|
|
809
921
|
"serde_regex",
|
|
922
|
+
"temp-dir",
|
|
810
923
|
"tera",
|
|
811
924
|
"thiserror",
|
|
812
925
|
"tokio",
|
|
813
926
|
"toml",
|
|
814
927
|
"url",
|
|
928
|
+
"urlencoding",
|
|
815
929
|
]
|
|
816
930
|
|
|
817
931
|
[[package]]
|
|
818
932
|
name = "git-conventional"
|
|
819
|
-
version = "0.12.
|
|
933
|
+
version = "0.12.7"
|
|
820
934
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
821
|
-
checksum = "
|
|
935
|
+
checksum = "8066dc2ef3bd0e2bfb84b4a2b0b04f216ffb97390e09fab0752bf0ba943dacc6"
|
|
822
936
|
dependencies = [
|
|
823
937
|
"doc-comment",
|
|
824
938
|
"serde",
|
|
@@ -828,11 +942,11 @@ dependencies = [
|
|
|
828
942
|
|
|
829
943
|
[[package]]
|
|
830
944
|
name = "git2"
|
|
831
|
-
version = "0.
|
|
945
|
+
version = "0.19.0"
|
|
832
946
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
833
|
-
checksum = "
|
|
947
|
+
checksum = "b903b73e45dc0c6c596f2d37eccece7c1c8bb6e4407b001096387c63d0d93724"
|
|
834
948
|
dependencies = [
|
|
835
|
-
"bitflags 2.
|
|
949
|
+
"bitflags 2.6.0",
|
|
836
950
|
"libc",
|
|
837
951
|
"libgit2-sys",
|
|
838
952
|
"log",
|
|
@@ -864,7 +978,7 @@ version = "0.9.1"
|
|
|
864
978
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
865
979
|
checksum = "0bf760ebf69878d9fd8f110c89703d90ce35095324d1f1edcb595c63945ee757"
|
|
866
980
|
dependencies = [
|
|
867
|
-
"bitflags 2.
|
|
981
|
+
"bitflags 2.6.0",
|
|
868
982
|
"ignore",
|
|
869
983
|
"walkdir",
|
|
870
984
|
]
|
|
@@ -893,6 +1007,10 @@ name = "hashbrown"
|
|
|
893
1007
|
version = "0.14.5"
|
|
894
1008
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
895
1009
|
checksum = "e5274423e17b7c9fc20b6e7e208532f9b19825d82dfd615708b70edd83df41f1"
|
|
1010
|
+
dependencies = [
|
|
1011
|
+
"ahash",
|
|
1012
|
+
"allocator-api2",
|
|
1013
|
+
]
|
|
896
1014
|
|
|
897
1015
|
[[package]]
|
|
898
1016
|
name = "heck"
|
|
@@ -906,6 +1024,12 @@ version = "0.3.9"
|
|
|
906
1024
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
907
1025
|
checksum = "d231dfb89cfffdbc30e7fc41579ed6066ad03abda9e567ccafae602b97ec5024"
|
|
908
1026
|
|
|
1027
|
+
[[package]]
|
|
1028
|
+
name = "hermit-abi"
|
|
1029
|
+
version = "0.4.0"
|
|
1030
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1031
|
+
checksum = "fbf6a919d6cf397374f7dfeeea91d974c7c0a7221d0d0f4f20d859d329e53fcc"
|
|
1032
|
+
|
|
909
1033
|
[[package]]
|
|
910
1034
|
name = "hex"
|
|
911
1035
|
version = "0.4.3"
|
|
@@ -947,9 +1071,9 @@ dependencies = [
|
|
|
947
1071
|
|
|
948
1072
|
[[package]]
|
|
949
1073
|
name = "http-body"
|
|
950
|
-
version = "1.0.
|
|
1074
|
+
version = "1.0.1"
|
|
951
1075
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
952
|
-
checksum = "
|
|
1076
|
+
checksum = "1efedce1fb8e6913f23e0c92de8e62cd5b772a67e7b3946df930a62566c93184"
|
|
953
1077
|
dependencies = [
|
|
954
1078
|
"bytes",
|
|
955
1079
|
"http 1.1.0",
|
|
@@ -957,14 +1081,14 @@ dependencies = [
|
|
|
957
1081
|
|
|
958
1082
|
[[package]]
|
|
959
1083
|
name = "http-body-util"
|
|
960
|
-
version = "0.1.
|
|
1084
|
+
version = "0.1.2"
|
|
961
1085
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
962
|
-
checksum = "
|
|
1086
|
+
checksum = "793429d76616a256bcb62c2a2ec2bed781c8307e797e2598c50010f2bee2544f"
|
|
963
1087
|
dependencies = [
|
|
964
1088
|
"bytes",
|
|
965
|
-
"futures-
|
|
1089
|
+
"futures-util",
|
|
966
1090
|
"http 1.1.0",
|
|
967
|
-
"http-body 1.0.
|
|
1091
|
+
"http-body 1.0.1",
|
|
968
1092
|
"pin-project-lite",
|
|
969
1093
|
]
|
|
970
1094
|
|
|
@@ -975,7 +1099,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
975
1099
|
checksum = "d6ffb12b95bb2a369fe47ca8924016c72c2fa0e6059ba98bd1516f558696c5a8"
|
|
976
1100
|
dependencies = [
|
|
977
1101
|
"async-trait",
|
|
978
|
-
"bincode",
|
|
1102
|
+
"bincode 1.3.3",
|
|
979
1103
|
"cacache",
|
|
980
1104
|
"http 1.1.0",
|
|
981
1105
|
"http-cache-semantics",
|
|
@@ -995,7 +1119,7 @@ dependencies = [
|
|
|
995
1119
|
"http 1.1.0",
|
|
996
1120
|
"http-cache",
|
|
997
1121
|
"http-cache-semantics",
|
|
998
|
-
"reqwest 0.12.
|
|
1122
|
+
"reqwest 0.12.7",
|
|
999
1123
|
"reqwest-middleware",
|
|
1000
1124
|
"serde",
|
|
1001
1125
|
"url",
|
|
@@ -1015,9 +1139,9 @@ dependencies = [
|
|
|
1015
1139
|
|
|
1016
1140
|
[[package]]
|
|
1017
1141
|
name = "http-serde"
|
|
1018
|
-
version = "2.1.
|
|
1142
|
+
version = "2.1.1"
|
|
1019
1143
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1020
|
-
checksum = "
|
|
1144
|
+
checksum = "0f056c8559e3757392c8d091e796416e4649d8e49e88b8d76df6c002f05027fd"
|
|
1021
1145
|
dependencies = [
|
|
1022
1146
|
"http 1.1.0",
|
|
1023
1147
|
"serde",
|
|
@@ -1025,9 +1149,9 @@ dependencies = [
|
|
|
1025
1149
|
|
|
1026
1150
|
[[package]]
|
|
1027
1151
|
name = "httparse"
|
|
1028
|
-
version = "1.
|
|
1152
|
+
version = "1.9.4"
|
|
1029
1153
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1030
|
-
checksum = "
|
|
1154
|
+
checksum = "0fcc0b4a115bf80b728eb8ea024ad5bd707b615bfed49e0665b6e0f86fd082d9"
|
|
1031
1155
|
|
|
1032
1156
|
[[package]]
|
|
1033
1157
|
name = "httpdate"
|
|
@@ -1052,9 +1176,9 @@ checksum = "9a3a5bfb195931eeb336b2a7b4d761daec841b97f947d34394601737a7bba5e4"
|
|
|
1052
1176
|
|
|
1053
1177
|
[[package]]
|
|
1054
1178
|
name = "hyper"
|
|
1055
|
-
version = "0.14.
|
|
1179
|
+
version = "0.14.30"
|
|
1056
1180
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1057
|
-
checksum = "
|
|
1181
|
+
checksum = "a152ddd61dfaec7273fe8419ab357f33aee0d914c5f4efbf0d96fa749eea5ec9"
|
|
1058
1182
|
dependencies = [
|
|
1059
1183
|
"bytes",
|
|
1060
1184
|
"futures-channel",
|
|
@@ -1076,15 +1200,15 @@ dependencies = [
|
|
|
1076
1200
|
|
|
1077
1201
|
[[package]]
|
|
1078
1202
|
name = "hyper"
|
|
1079
|
-
version = "1.
|
|
1203
|
+
version = "1.4.1"
|
|
1080
1204
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1081
|
-
checksum = "
|
|
1205
|
+
checksum = "50dfd22e0e76d0f662d429a5f80fcaf3855009297eab6a0a9f8543834744ba05"
|
|
1082
1206
|
dependencies = [
|
|
1083
1207
|
"bytes",
|
|
1084
1208
|
"futures-channel",
|
|
1085
1209
|
"futures-util",
|
|
1086
1210
|
"http 1.1.0",
|
|
1087
|
-
"http-body 1.0.
|
|
1211
|
+
"http-body 1.0.1",
|
|
1088
1212
|
"httparse",
|
|
1089
1213
|
"itoa",
|
|
1090
1214
|
"pin-project-lite",
|
|
@@ -1101,7 +1225,7 @@ checksum = "ec3efd23720e2049821a693cbc7e65ea87c72f1c58ff2f9522ff332b1491e590"
|
|
|
1101
1225
|
dependencies = [
|
|
1102
1226
|
"futures-util",
|
|
1103
1227
|
"http 0.2.12",
|
|
1104
|
-
"hyper 0.14.
|
|
1228
|
+
"hyper 0.14.30",
|
|
1105
1229
|
"rustls 0.21.12",
|
|
1106
1230
|
"tokio",
|
|
1107
1231
|
"tokio-rustls 0.24.1",
|
|
@@ -1109,33 +1233,34 @@ dependencies = [
|
|
|
1109
1233
|
|
|
1110
1234
|
[[package]]
|
|
1111
1235
|
name = "hyper-rustls"
|
|
1112
|
-
version = "0.
|
|
1236
|
+
version = "0.27.2"
|
|
1113
1237
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1114
|
-
checksum = "
|
|
1238
|
+
checksum = "5ee4be2c948921a1a5320b629c4193916ed787a7f7f293fd3f7f5a6c9de74155"
|
|
1115
1239
|
dependencies = [
|
|
1116
1240
|
"futures-util",
|
|
1117
1241
|
"http 1.1.0",
|
|
1118
|
-
"hyper 1.
|
|
1242
|
+
"hyper 1.4.1",
|
|
1119
1243
|
"hyper-util",
|
|
1120
|
-
"rustls 0.
|
|
1244
|
+
"rustls 0.23.12",
|
|
1121
1245
|
"rustls-pki-types",
|
|
1122
1246
|
"tokio",
|
|
1123
|
-
"tokio-rustls 0.
|
|
1247
|
+
"tokio-rustls 0.26.0",
|
|
1124
1248
|
"tower-service",
|
|
1249
|
+
"webpki-roots 0.26.3",
|
|
1125
1250
|
]
|
|
1126
1251
|
|
|
1127
1252
|
[[package]]
|
|
1128
1253
|
name = "hyper-util"
|
|
1129
|
-
version = "0.1.
|
|
1254
|
+
version = "0.1.7"
|
|
1130
1255
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1131
|
-
checksum = "
|
|
1256
|
+
checksum = "cde7055719c54e36e95e8719f95883f22072a48ede39db7fc17a4e1d5281e9b9"
|
|
1132
1257
|
dependencies = [
|
|
1133
1258
|
"bytes",
|
|
1134
1259
|
"futures-channel",
|
|
1135
1260
|
"futures-util",
|
|
1136
1261
|
"http 1.1.0",
|
|
1137
|
-
"http-body 1.0.
|
|
1138
|
-
"hyper 1.
|
|
1262
|
+
"http-body 1.0.1",
|
|
1263
|
+
"hyper 1.4.1",
|
|
1139
1264
|
"pin-project-lite",
|
|
1140
1265
|
"socket2",
|
|
1141
1266
|
"tokio",
|
|
@@ -1195,43 +1320,32 @@ dependencies = [
|
|
|
1195
1320
|
|
|
1196
1321
|
[[package]]
|
|
1197
1322
|
name = "include-flate"
|
|
1198
|
-
version = "0.
|
|
1323
|
+
version = "0.3.0"
|
|
1199
1324
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1200
|
-
checksum = "
|
|
1325
|
+
checksum = "df49c16750695486c1f34de05da5b7438096156466e7f76c38fcdf285cf0113e"
|
|
1201
1326
|
dependencies = [
|
|
1202
|
-
"include-flate-codegen
|
|
1327
|
+
"include-flate-codegen",
|
|
1203
1328
|
"lazy_static",
|
|
1204
1329
|
"libflate",
|
|
1205
1330
|
]
|
|
1206
1331
|
|
|
1207
1332
|
[[package]]
|
|
1208
1333
|
name = "include-flate-codegen"
|
|
1209
|
-
version = "0.
|
|
1334
|
+
version = "0.2.0"
|
|
1210
1335
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1211
|
-
checksum = "
|
|
1336
|
+
checksum = "8c5b246c6261be723b85c61ecf87804e8ea4a35cb68be0ff282ed84b95ffe7d7"
|
|
1212
1337
|
dependencies = [
|
|
1213
1338
|
"libflate",
|
|
1214
|
-
"proc-macro-hack",
|
|
1215
1339
|
"proc-macro2",
|
|
1216
1340
|
"quote",
|
|
1217
|
-
"syn
|
|
1218
|
-
]
|
|
1219
|
-
|
|
1220
|
-
[[package]]
|
|
1221
|
-
name = "include-flate-codegen-exports"
|
|
1222
|
-
version = "0.1.4"
|
|
1223
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1224
|
-
checksum = "75657043ffe3d8280f1cb8aef0f505532b392ed7758e0baeac22edadcee31a03"
|
|
1225
|
-
dependencies = [
|
|
1226
|
-
"include-flate-codegen",
|
|
1227
|
-
"proc-macro-hack",
|
|
1341
|
+
"syn",
|
|
1228
1342
|
]
|
|
1229
1343
|
|
|
1230
1344
|
[[package]]
|
|
1231
1345
|
name = "indexmap"
|
|
1232
|
-
version = "2.
|
|
1346
|
+
version = "2.4.0"
|
|
1233
1347
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1234
|
-
checksum = "
|
|
1348
|
+
checksum = "93ead53efc7ea8ed3cfb0c79fc8023fbb782a5432b52830b6518941cebe6505c"
|
|
1235
1349
|
dependencies = [
|
|
1236
1350
|
"equivalent",
|
|
1237
1351
|
"hashbrown",
|
|
@@ -1250,11 +1364,29 @@ dependencies = [
|
|
|
1250
1364
|
"unicode-width",
|
|
1251
1365
|
]
|
|
1252
1366
|
|
|
1367
|
+
[[package]]
|
|
1368
|
+
name = "inferno"
|
|
1369
|
+
version = "0.11.21"
|
|
1370
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1371
|
+
checksum = "232929e1d75fe899576a3d5c7416ad0d88dbfbb3c3d6aa00873a7408a50ddb88"
|
|
1372
|
+
dependencies = [
|
|
1373
|
+
"ahash",
|
|
1374
|
+
"indexmap",
|
|
1375
|
+
"is-terminal",
|
|
1376
|
+
"itoa",
|
|
1377
|
+
"log",
|
|
1378
|
+
"num-format",
|
|
1379
|
+
"once_cell",
|
|
1380
|
+
"quick-xml",
|
|
1381
|
+
"rgb",
|
|
1382
|
+
"str_stack",
|
|
1383
|
+
]
|
|
1384
|
+
|
|
1253
1385
|
[[package]]
|
|
1254
1386
|
name = "instant"
|
|
1255
|
-
version = "0.1.
|
|
1387
|
+
version = "0.1.13"
|
|
1256
1388
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1257
|
-
checksum = "
|
|
1389
|
+
checksum = "e0242819d153cba4b4b05a5a8f2a7e9bbf97b6055b2a002b395c96b5ff3c0222"
|
|
1258
1390
|
dependencies = [
|
|
1259
1391
|
"cfg-if",
|
|
1260
1392
|
]
|
|
@@ -1267,20 +1399,20 @@ checksum = "8f518f335dce6725a761382244631d86cf0ccb2863413590b31338feb467f9c3"
|
|
|
1267
1399
|
|
|
1268
1400
|
[[package]]
|
|
1269
1401
|
name = "is-terminal"
|
|
1270
|
-
version = "0.4.
|
|
1402
|
+
version = "0.4.13"
|
|
1271
1403
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1272
|
-
checksum = "
|
|
1404
|
+
checksum = "261f68e344040fbd0edea105bef17c66edf46f984ddb1115b775ce31be948f4b"
|
|
1273
1405
|
dependencies = [
|
|
1274
|
-
"hermit-abi",
|
|
1406
|
+
"hermit-abi 0.4.0",
|
|
1275
1407
|
"libc",
|
|
1276
1408
|
"windows-sys 0.52.0",
|
|
1277
1409
|
]
|
|
1278
1410
|
|
|
1279
1411
|
[[package]]
|
|
1280
1412
|
name = "is_terminal_polyfill"
|
|
1281
|
-
version = "1.70.
|
|
1413
|
+
version = "1.70.1"
|
|
1282
1414
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1283
|
-
checksum = "
|
|
1415
|
+
checksum = "7943c866cc5cd64cbc25b2e01621d07fa8eb2a1a23160ee81ce38704e97b8ecf"
|
|
1284
1416
|
|
|
1285
1417
|
[[package]]
|
|
1286
1418
|
name = "itoa"
|
|
@@ -1290,27 +1422,27 @@ checksum = "49f1f14873335454500d59611f1cf4a4b0f786f9ac11f4312a78e4cf2566695b"
|
|
|
1290
1422
|
|
|
1291
1423
|
[[package]]
|
|
1292
1424
|
name = "jobserver"
|
|
1293
|
-
version = "0.1.
|
|
1425
|
+
version = "0.1.32"
|
|
1294
1426
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1295
|
-
checksum = "
|
|
1427
|
+
checksum = "48d1dbcbbeb6a7fec7e059840aa538bd62aaccf972c7346c4d9d2059312853d0"
|
|
1296
1428
|
dependencies = [
|
|
1297
1429
|
"libc",
|
|
1298
1430
|
]
|
|
1299
1431
|
|
|
1300
1432
|
[[package]]
|
|
1301
1433
|
name = "js-sys"
|
|
1302
|
-
version = "0.3.
|
|
1434
|
+
version = "0.3.70"
|
|
1303
1435
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1304
|
-
checksum = "
|
|
1436
|
+
checksum = "1868808506b929d7b0cfa8f75951347aa71bb21144b7791bae35d9bccfcfe37a"
|
|
1305
1437
|
dependencies = [
|
|
1306
1438
|
"wasm-bindgen",
|
|
1307
1439
|
]
|
|
1308
1440
|
|
|
1309
1441
|
[[package]]
|
|
1310
1442
|
name = "lazy-regex"
|
|
1311
|
-
version = "3.
|
|
1443
|
+
version = "3.3.0"
|
|
1312
1444
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1313
|
-
checksum = "
|
|
1445
|
+
checksum = "8d8e41c97e6bc7ecb552016274b99fbb5d035e8de288c582d9b933af6677bfda"
|
|
1314
1446
|
dependencies = [
|
|
1315
1447
|
"lazy-regex-proc_macros",
|
|
1316
1448
|
"once_cell",
|
|
@@ -1319,53 +1451,57 @@ dependencies = [
|
|
|
1319
1451
|
|
|
1320
1452
|
[[package]]
|
|
1321
1453
|
name = "lazy-regex-proc_macros"
|
|
1322
|
-
version = "3.
|
|
1454
|
+
version = "3.3.0"
|
|
1323
1455
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1324
|
-
checksum = "
|
|
1456
|
+
checksum = "76e1d8b05d672c53cb9c7b920bbba8783845ae4f0b076e02a3db1d02c81b4163"
|
|
1325
1457
|
dependencies = [
|
|
1326
1458
|
"proc-macro2",
|
|
1327
1459
|
"quote",
|
|
1328
1460
|
"regex",
|
|
1329
|
-
"syn
|
|
1461
|
+
"syn",
|
|
1330
1462
|
]
|
|
1331
1463
|
|
|
1332
1464
|
[[package]]
|
|
1333
1465
|
name = "lazy_static"
|
|
1334
|
-
version = "1.
|
|
1466
|
+
version = "1.5.0"
|
|
1335
1467
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1336
|
-
checksum = "
|
|
1468
|
+
checksum = "bbd2bcb4c963f2ddae06a2efc7e9f3591312473c50c6685e1f298068316e66fe"
|
|
1337
1469
|
|
|
1338
1470
|
[[package]]
|
|
1339
1471
|
name = "libc"
|
|
1340
|
-
version = "0.2.
|
|
1472
|
+
version = "0.2.158"
|
|
1341
1473
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1342
|
-
checksum = "
|
|
1474
|
+
checksum = "d8adc4bb1803a324070e64a98ae98f38934d91957a99cfb3a43dcbc01bc56439"
|
|
1343
1475
|
|
|
1344
1476
|
[[package]]
|
|
1345
1477
|
name = "libflate"
|
|
1346
|
-
version = "1.
|
|
1478
|
+
version = "2.1.0"
|
|
1347
1479
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1348
|
-
checksum = "
|
|
1480
|
+
checksum = "45d9dfdc14ea4ef0900c1cddbc8dcd553fbaacd8a4a282cf4018ae9dd04fb21e"
|
|
1349
1481
|
dependencies = [
|
|
1350
1482
|
"adler32",
|
|
1483
|
+
"core2",
|
|
1351
1484
|
"crc32fast",
|
|
1485
|
+
"dary_heap",
|
|
1352
1486
|
"libflate_lz77",
|
|
1353
1487
|
]
|
|
1354
1488
|
|
|
1355
1489
|
[[package]]
|
|
1356
1490
|
name = "libflate_lz77"
|
|
1357
|
-
version = "1.
|
|
1491
|
+
version = "2.1.0"
|
|
1358
1492
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1359
|
-
checksum = "
|
|
1493
|
+
checksum = "e6e0d73b369f386f1c44abd9c570d5318f55ccde816ff4b562fa452e5182863d"
|
|
1360
1494
|
dependencies = [
|
|
1495
|
+
"core2",
|
|
1496
|
+
"hashbrown",
|
|
1361
1497
|
"rle-decode-fast",
|
|
1362
1498
|
]
|
|
1363
1499
|
|
|
1364
1500
|
[[package]]
|
|
1365
1501
|
name = "libgit2-sys"
|
|
1366
|
-
version = "0.
|
|
1502
|
+
version = "0.17.0+1.8.1"
|
|
1367
1503
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1368
|
-
checksum = "
|
|
1504
|
+
checksum = "10472326a8a6477c3c20a64547b0059e4b0d086869eee31e6d7da728a8eb7224"
|
|
1369
1505
|
dependencies = [
|
|
1370
1506
|
"cc",
|
|
1371
1507
|
"libc",
|
|
@@ -1385,15 +1521,15 @@ version = "0.1.3"
|
|
|
1385
1521
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1386
1522
|
checksum = "c0ff37bd590ca25063e35af745c343cb7a0271906fb7b37e4813e8f79f00268d"
|
|
1387
1523
|
dependencies = [
|
|
1388
|
-
"bitflags 2.
|
|
1524
|
+
"bitflags 2.6.0",
|
|
1389
1525
|
"libc",
|
|
1390
1526
|
]
|
|
1391
1527
|
|
|
1392
1528
|
[[package]]
|
|
1393
1529
|
name = "libz-sys"
|
|
1394
|
-
version = "1.1.
|
|
1530
|
+
version = "1.1.19"
|
|
1395
1531
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1396
|
-
checksum = "
|
|
1532
|
+
checksum = "fdc53a7799a7496ebc9fd29f31f7df80e83c9bda5299768af5f9e59eeea74647"
|
|
1397
1533
|
dependencies = [
|
|
1398
1534
|
"cc",
|
|
1399
1535
|
"libc",
|
|
@@ -1409,9 +1545,9 @@ checksum = "0717cef1bc8b636c6e1c1bbdefc09e6322da8a9321966e8928ef80d20f7f770f"
|
|
|
1409
1545
|
|
|
1410
1546
|
[[package]]
|
|
1411
1547
|
name = "linux-raw-sys"
|
|
1412
|
-
version = "0.4.
|
|
1548
|
+
version = "0.4.14"
|
|
1413
1549
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1414
|
-
checksum = "
|
|
1550
|
+
checksum = "78b3ae25bc7c8c38cec158d1f2757ee79e9b3740fbc7ccf0e59e4b08d793fa89"
|
|
1415
1551
|
|
|
1416
1552
|
[[package]]
|
|
1417
1553
|
name = "litrs"
|
|
@@ -1419,17 +1555,27 @@ version = "0.4.1"
|
|
|
1419
1555
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1420
1556
|
checksum = "b4ce301924b7887e9d637144fdade93f9dfff9b60981d4ac161db09720d39aa5"
|
|
1421
1557
|
|
|
1558
|
+
[[package]]
|
|
1559
|
+
name = "lock_api"
|
|
1560
|
+
version = "0.4.12"
|
|
1561
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1562
|
+
checksum = "07af8b9cdd281b7915f413fa73f29ebd5d55d0d3f0155584dade1ff18cea1b17"
|
|
1563
|
+
dependencies = [
|
|
1564
|
+
"autocfg",
|
|
1565
|
+
"scopeguard",
|
|
1566
|
+
]
|
|
1567
|
+
|
|
1422
1568
|
[[package]]
|
|
1423
1569
|
name = "log"
|
|
1424
|
-
version = "0.4.
|
|
1570
|
+
version = "0.4.22"
|
|
1425
1571
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1426
|
-
checksum = "
|
|
1572
|
+
checksum = "a7a70ba024b9dc04c27ea2f0c0548feb474ec5c54bba33a7f72f873a39d07b24"
|
|
1427
1573
|
|
|
1428
1574
|
[[package]]
|
|
1429
1575
|
name = "memchr"
|
|
1430
|
-
version = "2.7.
|
|
1576
|
+
version = "2.7.4"
|
|
1431
1577
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1432
|
-
checksum = "
|
|
1578
|
+
checksum = "78ca9ab1a0babb1e7d5695e3530886289c18cf2f87ec19a575a0abdce112e3a3"
|
|
1433
1579
|
|
|
1434
1580
|
[[package]]
|
|
1435
1581
|
name = "memmap2"
|
|
@@ -1440,6 +1586,15 @@ dependencies = [
|
|
|
1440
1586
|
"libc",
|
|
1441
1587
|
]
|
|
1442
1588
|
|
|
1589
|
+
[[package]]
|
|
1590
|
+
name = "memmap2"
|
|
1591
|
+
version = "0.9.4"
|
|
1592
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1593
|
+
checksum = "fe751422e4a8caa417e13c3ea66452215d7d63e19e604f4980461212f3ae1322"
|
|
1594
|
+
dependencies = [
|
|
1595
|
+
"libc",
|
|
1596
|
+
]
|
|
1597
|
+
|
|
1443
1598
|
[[package]]
|
|
1444
1599
|
name = "miette"
|
|
1445
1600
|
version = "5.10.0"
|
|
@@ -1460,7 +1615,7 @@ checksum = "49e7bc1560b95a3c4a25d03de42fe76ca718ab92d1a22a55b9b4cf67b3ae635c"
|
|
|
1460
1615
|
dependencies = [
|
|
1461
1616
|
"proc-macro2",
|
|
1462
1617
|
"quote",
|
|
1463
|
-
"syn
|
|
1618
|
+
"syn",
|
|
1464
1619
|
]
|
|
1465
1620
|
|
|
1466
1621
|
[[package]]
|
|
@@ -1477,34 +1632,56 @@ checksum = "68354c5c6bd36d73ff3feceb05efa59b6acb7626617f4962be322a825e61f79a"
|
|
|
1477
1632
|
|
|
1478
1633
|
[[package]]
|
|
1479
1634
|
name = "miniz_oxide"
|
|
1480
|
-
version = "0.7.
|
|
1635
|
+
version = "0.7.4"
|
|
1481
1636
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1482
|
-
checksum = "
|
|
1637
|
+
checksum = "b8a240ddb74feaf34a79a7add65a741f3167852fba007066dcac1ca548d89c08"
|
|
1483
1638
|
dependencies = [
|
|
1484
1639
|
"adler",
|
|
1485
1640
|
]
|
|
1486
1641
|
|
|
1642
|
+
[[package]]
|
|
1643
|
+
name = "miniz_oxide"
|
|
1644
|
+
version = "0.8.0"
|
|
1645
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1646
|
+
checksum = "e2d80299ef12ff69b16a84bb182e3b9df68b5a91574d3d4fa6e41b65deec4df1"
|
|
1647
|
+
dependencies = [
|
|
1648
|
+
"adler2",
|
|
1649
|
+
]
|
|
1650
|
+
|
|
1487
1651
|
[[package]]
|
|
1488
1652
|
name = "mio"
|
|
1489
|
-
version = "0.
|
|
1653
|
+
version = "1.0.2"
|
|
1490
1654
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1491
|
-
checksum = "
|
|
1655
|
+
checksum = "80e04d1dcff3aae0704555fe5fee3bcfaf3d1fdf8a7e521d5b9d2b42acb52cec"
|
|
1492
1656
|
dependencies = [
|
|
1657
|
+
"hermit-abi 0.3.9",
|
|
1493
1658
|
"libc",
|
|
1494
1659
|
"wasi",
|
|
1495
|
-
"windows-sys 0.
|
|
1660
|
+
"windows-sys 0.52.0",
|
|
1496
1661
|
]
|
|
1497
1662
|
|
|
1498
1663
|
[[package]]
|
|
1499
1664
|
name = "next_version"
|
|
1500
|
-
version = "0.2.
|
|
1665
|
+
version = "0.2.19"
|
|
1501
1666
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1502
|
-
checksum = "
|
|
1667
|
+
checksum = "54d3c80a6b8295afdfca9e26fb8be25a5a258e593f9efe52aa7f2c7a508b797a"
|
|
1503
1668
|
dependencies = [
|
|
1504
1669
|
"conventional_commit_parser",
|
|
1670
|
+
"regex",
|
|
1505
1671
|
"semver",
|
|
1506
1672
|
]
|
|
1507
1673
|
|
|
1674
|
+
[[package]]
|
|
1675
|
+
name = "nix"
|
|
1676
|
+
version = "0.26.4"
|
|
1677
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1678
|
+
checksum = "598beaf3cc6fdd9a5dfb1630c2800c7acd31df7aaf0f565796fba2b53ca1af1b"
|
|
1679
|
+
dependencies = [
|
|
1680
|
+
"bitflags 1.3.2",
|
|
1681
|
+
"cfg-if",
|
|
1682
|
+
"libc",
|
|
1683
|
+
]
|
|
1684
|
+
|
|
1508
1685
|
[[package]]
|
|
1509
1686
|
name = "nom"
|
|
1510
1687
|
version = "7.1.3"
|
|
@@ -1522,22 +1699,22 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
1522
1699
|
checksum = "51d515d32fb182ee37cda2ccdcb92950d6a3c2893aa280e540671c2cd0f3b1d9"
|
|
1523
1700
|
|
|
1524
1701
|
[[package]]
|
|
1525
|
-
name = "num-
|
|
1526
|
-
version = "0.
|
|
1702
|
+
name = "num-format"
|
|
1703
|
+
version = "0.4.4"
|
|
1527
1704
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1528
|
-
checksum = "
|
|
1705
|
+
checksum = "a652d9771a63711fd3c3deb670acfbe5c30a4072e664d7a3bf5a9e1056ac72c3"
|
|
1529
1706
|
dependencies = [
|
|
1530
|
-
"
|
|
1707
|
+
"arrayvec",
|
|
1708
|
+
"itoa",
|
|
1531
1709
|
]
|
|
1532
1710
|
|
|
1533
1711
|
[[package]]
|
|
1534
|
-
name = "
|
|
1535
|
-
version = "
|
|
1712
|
+
name = "num-traits"
|
|
1713
|
+
version = "0.2.19"
|
|
1536
1714
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1537
|
-
checksum = "
|
|
1715
|
+
checksum = "071dfc062690e90b734c0b2273ce72ad0ffa95f0c74596bc250dcfd960262841"
|
|
1538
1716
|
dependencies = [
|
|
1539
|
-
"
|
|
1540
|
-
"libc",
|
|
1717
|
+
"autocfg",
|
|
1541
1718
|
]
|
|
1542
1719
|
|
|
1543
1720
|
[[package]]
|
|
@@ -1548,9 +1725,9 @@ checksum = "830b246a0e5f20af87141b25c173cd1b609bd7779a4617d6ec582abaf90870f3"
|
|
|
1548
1725
|
|
|
1549
1726
|
[[package]]
|
|
1550
1727
|
name = "object"
|
|
1551
|
-
version = "0.
|
|
1728
|
+
version = "0.36.3"
|
|
1552
1729
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1553
|
-
checksum = "
|
|
1730
|
+
checksum = "27b64972346851a39438c60b341ebc01bba47464ae329e55cf343eb93964efd9"
|
|
1554
1731
|
dependencies = [
|
|
1555
1732
|
"memchr",
|
|
1556
1733
|
]
|
|
@@ -1567,6 +1744,29 @@ version = "0.2.0"
|
|
|
1567
1744
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1568
1745
|
checksum = "04744f49eae99ab78e0d5c0b603ab218f515ea8cfe5a456d7629ad883a3b6e7d"
|
|
1569
1746
|
|
|
1747
|
+
[[package]]
|
|
1748
|
+
name = "parking_lot"
|
|
1749
|
+
version = "0.12.3"
|
|
1750
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1751
|
+
checksum = "f1bf18183cf54e8d6059647fc3063646a1801cf30896933ec2311622cc4b9a27"
|
|
1752
|
+
dependencies = [
|
|
1753
|
+
"lock_api",
|
|
1754
|
+
"parking_lot_core",
|
|
1755
|
+
]
|
|
1756
|
+
|
|
1757
|
+
[[package]]
|
|
1758
|
+
name = "parking_lot_core"
|
|
1759
|
+
version = "0.9.10"
|
|
1760
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1761
|
+
checksum = "1e401f977ab385c9e4e3ab30627d6f26d00e2c73eef317493c4ec6d468726cf8"
|
|
1762
|
+
dependencies = [
|
|
1763
|
+
"cfg-if",
|
|
1764
|
+
"libc",
|
|
1765
|
+
"redox_syscall",
|
|
1766
|
+
"smallvec",
|
|
1767
|
+
"windows-targets 0.52.6",
|
|
1768
|
+
]
|
|
1769
|
+
|
|
1570
1770
|
[[package]]
|
|
1571
1771
|
name = "parse-zoneinfo"
|
|
1572
1772
|
version = "0.3.1"
|
|
@@ -1590,9 +1790,9 @@ checksum = "e3148f5046208a5d56bcfc03053e3ca6334e51da8dfb19b6cdc8b306fae3283e"
|
|
|
1590
1790
|
|
|
1591
1791
|
[[package]]
|
|
1592
1792
|
name = "pest"
|
|
1593
|
-
version = "2.7.
|
|
1793
|
+
version = "2.7.11"
|
|
1594
1794
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1595
|
-
checksum = "
|
|
1795
|
+
checksum = "cd53dff83f26735fdc1ca837098ccf133605d794cdae66acfc2bfac3ec809d95"
|
|
1596
1796
|
dependencies = [
|
|
1597
1797
|
"memchr",
|
|
1598
1798
|
"thiserror",
|
|
@@ -1601,9 +1801,9 @@ dependencies = [
|
|
|
1601
1801
|
|
|
1602
1802
|
[[package]]
|
|
1603
1803
|
name = "pest_derive"
|
|
1604
|
-
version = "2.7.
|
|
1804
|
+
version = "2.7.11"
|
|
1605
1805
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1606
|
-
checksum = "
|
|
1806
|
+
checksum = "2a548d2beca6773b1c244554d36fcf8548a8a58e74156968211567250e48e49a"
|
|
1607
1807
|
dependencies = [
|
|
1608
1808
|
"pest",
|
|
1609
1809
|
"pest_generator",
|
|
@@ -1611,22 +1811,22 @@ dependencies = [
|
|
|
1611
1811
|
|
|
1612
1812
|
[[package]]
|
|
1613
1813
|
name = "pest_generator"
|
|
1614
|
-
version = "2.7.
|
|
1814
|
+
version = "2.7.11"
|
|
1615
1815
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1616
|
-
checksum = "
|
|
1816
|
+
checksum = "3c93a82e8d145725dcbaf44e5ea887c8a869efdcc28706df2d08c69e17077183"
|
|
1617
1817
|
dependencies = [
|
|
1618
1818
|
"pest",
|
|
1619
1819
|
"pest_meta",
|
|
1620
1820
|
"proc-macro2",
|
|
1621
1821
|
"quote",
|
|
1622
|
-
"syn
|
|
1822
|
+
"syn",
|
|
1623
1823
|
]
|
|
1624
1824
|
|
|
1625
1825
|
[[package]]
|
|
1626
1826
|
name = "pest_meta"
|
|
1627
|
-
version = "2.7.
|
|
1827
|
+
version = "2.7.11"
|
|
1628
1828
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1629
|
-
checksum = "
|
|
1829
|
+
checksum = "a941429fea7e08bedec25e4f6785b6ffaacc6b755da98df5ef3e7dcf4a124c4f"
|
|
1630
1830
|
dependencies = [
|
|
1631
1831
|
"once_cell",
|
|
1632
1832
|
"pest",
|
|
@@ -1688,7 +1888,7 @@ checksum = "2f38a4412a78282e09a2cf38d195ea5420d15ba0602cb375210efbc877243965"
|
|
|
1688
1888
|
dependencies = [
|
|
1689
1889
|
"proc-macro2",
|
|
1690
1890
|
"quote",
|
|
1691
|
-
"syn
|
|
1891
|
+
"syn",
|
|
1692
1892
|
]
|
|
1693
1893
|
|
|
1694
1894
|
[[package]]
|
|
@@ -1711,9 +1911,9 @@ checksum = "d231b230927b5e4ad203db57bbcbee2802f6bce620b1e4a9024a07d94e2907ec"
|
|
|
1711
1911
|
|
|
1712
1912
|
[[package]]
|
|
1713
1913
|
name = "portable-atomic"
|
|
1714
|
-
version = "1.
|
|
1914
|
+
version = "1.7.0"
|
|
1715
1915
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1716
|
-
checksum = "
|
|
1916
|
+
checksum = "da544ee218f0d287a911e9c99a39a8c9bc8fcad3cb8db5959940044ecfc67265"
|
|
1717
1917
|
|
|
1718
1918
|
[[package]]
|
|
1719
1919
|
name = "powerfmt"
|
|
@@ -1721,11 +1921,35 @@ version = "0.2.0"
|
|
|
1721
1921
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1722
1922
|
checksum = "439ee305def115ba05938db6eb1644ff94165c5ab5e9420d1c1bcedbba909391"
|
|
1723
1923
|
|
|
1924
|
+
[[package]]
|
|
1925
|
+
name = "pprof"
|
|
1926
|
+
version = "0.13.0"
|
|
1927
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1928
|
+
checksum = "ef5c97c51bd34c7e742402e216abdeb44d415fbe6ae41d56b114723e953711cb"
|
|
1929
|
+
dependencies = [
|
|
1930
|
+
"backtrace",
|
|
1931
|
+
"cfg-if",
|
|
1932
|
+
"findshlibs",
|
|
1933
|
+
"inferno",
|
|
1934
|
+
"libc",
|
|
1935
|
+
"log",
|
|
1936
|
+
"nix",
|
|
1937
|
+
"once_cell",
|
|
1938
|
+
"parking_lot",
|
|
1939
|
+
"smallvec",
|
|
1940
|
+
"symbolic-demangle",
|
|
1941
|
+
"tempfile",
|
|
1942
|
+
"thiserror",
|
|
1943
|
+
]
|
|
1944
|
+
|
|
1724
1945
|
[[package]]
|
|
1725
1946
|
name = "ppv-lite86"
|
|
1726
|
-
version = "0.2.
|
|
1947
|
+
version = "0.2.20"
|
|
1727
1948
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1728
|
-
checksum = "
|
|
1949
|
+
checksum = "77957b295656769bb8ad2b6a6b09d897d94f05c41b069aede1fcdaa675eaea04"
|
|
1950
|
+
dependencies = [
|
|
1951
|
+
"zerocopy",
|
|
1952
|
+
]
|
|
1729
1953
|
|
|
1730
1954
|
[[package]]
|
|
1731
1955
|
name = "pretty_assertions"
|
|
@@ -1738,25 +1962,76 @@ dependencies = [
|
|
|
1738
1962
|
]
|
|
1739
1963
|
|
|
1740
1964
|
[[package]]
|
|
1741
|
-
name = "proc-
|
|
1742
|
-
version = "0.
|
|
1965
|
+
name = "proc-macro2"
|
|
1966
|
+
version = "1.0.86"
|
|
1743
1967
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1744
|
-
checksum = "
|
|
1968
|
+
checksum = "5e719e8df665df0d1c8fbfd238015744736151d4445ec0836b8e628aae103b77"
|
|
1969
|
+
dependencies = [
|
|
1970
|
+
"unicode-ident",
|
|
1971
|
+
]
|
|
1745
1972
|
|
|
1746
1973
|
[[package]]
|
|
1747
|
-
name = "
|
|
1748
|
-
version = "
|
|
1974
|
+
name = "quick-xml"
|
|
1975
|
+
version = "0.26.0"
|
|
1749
1976
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1750
|
-
checksum = "
|
|
1977
|
+
checksum = "7f50b1c63b38611e7d4d7f68b82d3ad0cc71a2ad2e7f61fc10f1328d917c93cd"
|
|
1751
1978
|
dependencies = [
|
|
1752
|
-
"
|
|
1979
|
+
"memchr",
|
|
1980
|
+
]
|
|
1981
|
+
|
|
1982
|
+
[[package]]
|
|
1983
|
+
name = "quinn"
|
|
1984
|
+
version = "0.11.3"
|
|
1985
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1986
|
+
checksum = "b22d8e7369034b9a7132bc2008cac12f2013c8132b45e0554e6e20e2617f2156"
|
|
1987
|
+
dependencies = [
|
|
1988
|
+
"bytes",
|
|
1989
|
+
"pin-project-lite",
|
|
1990
|
+
"quinn-proto",
|
|
1991
|
+
"quinn-udp",
|
|
1992
|
+
"rustc-hash",
|
|
1993
|
+
"rustls 0.23.12",
|
|
1994
|
+
"socket2",
|
|
1995
|
+
"thiserror",
|
|
1996
|
+
"tokio",
|
|
1997
|
+
"tracing",
|
|
1998
|
+
]
|
|
1999
|
+
|
|
2000
|
+
[[package]]
|
|
2001
|
+
name = "quinn-proto"
|
|
2002
|
+
version = "0.11.6"
|
|
2003
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2004
|
+
checksum = "ba92fb39ec7ad06ca2582c0ca834dfeadcaf06ddfc8e635c80aa7e1c05315fdd"
|
|
2005
|
+
dependencies = [
|
|
2006
|
+
"bytes",
|
|
2007
|
+
"rand",
|
|
2008
|
+
"ring",
|
|
2009
|
+
"rustc-hash",
|
|
2010
|
+
"rustls 0.23.12",
|
|
2011
|
+
"slab",
|
|
2012
|
+
"thiserror",
|
|
2013
|
+
"tinyvec",
|
|
2014
|
+
"tracing",
|
|
2015
|
+
]
|
|
2016
|
+
|
|
2017
|
+
[[package]]
|
|
2018
|
+
name = "quinn-udp"
|
|
2019
|
+
version = "0.5.4"
|
|
2020
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2021
|
+
checksum = "8bffec3605b73c6f1754535084a85229fa8a30f86014e6c81aeec4abb68b0285"
|
|
2022
|
+
dependencies = [
|
|
2023
|
+
"libc",
|
|
2024
|
+
"once_cell",
|
|
2025
|
+
"socket2",
|
|
2026
|
+
"tracing",
|
|
2027
|
+
"windows-sys 0.52.0",
|
|
1753
2028
|
]
|
|
1754
2029
|
|
|
1755
2030
|
[[package]]
|
|
1756
2031
|
name = "quote"
|
|
1757
|
-
version = "1.0.
|
|
2032
|
+
version = "1.0.37"
|
|
1758
2033
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1759
|
-
checksum = "
|
|
2034
|
+
checksum = "b5b9d34b8991d19d98081b46eacdd8eb58c6f2b201139f7c5f643cc155a633af"
|
|
1760
2035
|
dependencies = [
|
|
1761
2036
|
"proc-macro2",
|
|
1762
2037
|
]
|
|
@@ -1791,11 +2066,20 @@ dependencies = [
|
|
|
1791
2066
|
"getrandom",
|
|
1792
2067
|
]
|
|
1793
2068
|
|
|
2069
|
+
[[package]]
|
|
2070
|
+
name = "redox_syscall"
|
|
2071
|
+
version = "0.5.3"
|
|
2072
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2073
|
+
checksum = "2a908a6e00f1fdd0dfd9c0eb08ce85126f6d8bbda50017e74bc4a4b7d4a926a4"
|
|
2074
|
+
dependencies = [
|
|
2075
|
+
"bitflags 2.6.0",
|
|
2076
|
+
]
|
|
2077
|
+
|
|
1794
2078
|
[[package]]
|
|
1795
2079
|
name = "redox_users"
|
|
1796
|
-
version = "0.4.
|
|
2080
|
+
version = "0.4.6"
|
|
1797
2081
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1798
|
-
checksum = "
|
|
2082
|
+
checksum = "ba009ff324d1fc1b900bd1fdb31564febe58a8ccc8a6fdbb93b543d33b13ca43"
|
|
1799
2083
|
dependencies = [
|
|
1800
2084
|
"getrandom",
|
|
1801
2085
|
"libredox",
|
|
@@ -1804,9 +2088,9 @@ dependencies = [
|
|
|
1804
2088
|
|
|
1805
2089
|
[[package]]
|
|
1806
2090
|
name = "reflink-copy"
|
|
1807
|
-
version = "0.1.
|
|
2091
|
+
version = "0.1.19"
|
|
1808
2092
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1809
|
-
checksum = "
|
|
2093
|
+
checksum = "dc31414597d1cd7fdd2422798b7652a6329dda0fe0219e6335a13d5bcaa9aeb6"
|
|
1810
2094
|
dependencies = [
|
|
1811
2095
|
"cfg-if",
|
|
1812
2096
|
"rustix",
|
|
@@ -1815,9 +2099,9 @@ dependencies = [
|
|
|
1815
2099
|
|
|
1816
2100
|
[[package]]
|
|
1817
2101
|
name = "regex"
|
|
1818
|
-
version = "1.10.
|
|
2102
|
+
version = "1.10.6"
|
|
1819
2103
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1820
|
-
checksum = "
|
|
2104
|
+
checksum = "4219d74c6b67a3654a9fbebc4b419e22126d13d2f3c4a07ee0cb61ff79a79619"
|
|
1821
2105
|
dependencies = [
|
|
1822
2106
|
"aho-corasick",
|
|
1823
2107
|
"memchr",
|
|
@@ -1827,9 +2111,9 @@ dependencies = [
|
|
|
1827
2111
|
|
|
1828
2112
|
[[package]]
|
|
1829
2113
|
name = "regex-automata"
|
|
1830
|
-
version = "0.4.
|
|
2114
|
+
version = "0.4.7"
|
|
1831
2115
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1832
|
-
checksum = "
|
|
2116
|
+
checksum = "38caf58cc5ef2fed281f89292ef23f6365465ed9a41b7a7754eb4e26496c92df"
|
|
1833
2117
|
dependencies = [
|
|
1834
2118
|
"aho-corasick",
|
|
1835
2119
|
"memchr",
|
|
@@ -1838,9 +2122,9 @@ dependencies = [
|
|
|
1838
2122
|
|
|
1839
2123
|
[[package]]
|
|
1840
2124
|
name = "regex-syntax"
|
|
1841
|
-
version = "0.8.
|
|
2125
|
+
version = "0.8.4"
|
|
1842
2126
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1843
|
-
checksum = "
|
|
2127
|
+
checksum = "7a66a03ae7c801facd77a29370b4faec201768915ac14a721ba36f20bc9c209b"
|
|
1844
2128
|
|
|
1845
2129
|
[[package]]
|
|
1846
2130
|
name = "reqwest"
|
|
@@ -1856,7 +2140,7 @@ dependencies = [
|
|
|
1856
2140
|
"h2",
|
|
1857
2141
|
"http 0.2.12",
|
|
1858
2142
|
"http-body 0.4.6",
|
|
1859
|
-
"hyper 0.14.
|
|
2143
|
+
"hyper 0.14.30",
|
|
1860
2144
|
"hyper-rustls 0.24.2",
|
|
1861
2145
|
"ipnet",
|
|
1862
2146
|
"js-sys",
|
|
@@ -1870,7 +2154,7 @@ dependencies = [
|
|
|
1870
2154
|
"serde",
|
|
1871
2155
|
"serde_json",
|
|
1872
2156
|
"serde_urlencoded",
|
|
1873
|
-
"sync_wrapper",
|
|
2157
|
+
"sync_wrapper 0.1.2",
|
|
1874
2158
|
"system-configuration",
|
|
1875
2159
|
"tokio",
|
|
1876
2160
|
"tokio-rustls 0.24.1",
|
|
@@ -1880,14 +2164,14 @@ dependencies = [
|
|
|
1880
2164
|
"wasm-bindgen-futures",
|
|
1881
2165
|
"web-sys",
|
|
1882
2166
|
"webpki-roots 0.25.4",
|
|
1883
|
-
"winreg
|
|
2167
|
+
"winreg",
|
|
1884
2168
|
]
|
|
1885
2169
|
|
|
1886
2170
|
[[package]]
|
|
1887
2171
|
name = "reqwest"
|
|
1888
|
-
version = "0.12.
|
|
2172
|
+
version = "0.12.7"
|
|
1889
2173
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1890
|
-
checksum = "
|
|
2174
|
+
checksum = "f8f4955649ef5c38cc7f9e8aa41761d48fb9677197daea9984dc54f56aad5e63"
|
|
1891
2175
|
dependencies = [
|
|
1892
2176
|
"async-compression",
|
|
1893
2177
|
"base64 0.22.1",
|
|
@@ -1895,10 +2179,10 @@ dependencies = [
|
|
|
1895
2179
|
"futures-core",
|
|
1896
2180
|
"futures-util",
|
|
1897
2181
|
"http 1.1.0",
|
|
1898
|
-
"http-body 1.0.
|
|
2182
|
+
"http-body 1.0.1",
|
|
1899
2183
|
"http-body-util",
|
|
1900
|
-
"hyper 1.
|
|
1901
|
-
"hyper-rustls 0.
|
|
2184
|
+
"hyper 1.4.1",
|
|
2185
|
+
"hyper-rustls 0.27.2",
|
|
1902
2186
|
"hyper-util",
|
|
1903
2187
|
"ipnet",
|
|
1904
2188
|
"js-sys",
|
|
@@ -1907,40 +2191,50 @@ dependencies = [
|
|
|
1907
2191
|
"once_cell",
|
|
1908
2192
|
"percent-encoding",
|
|
1909
2193
|
"pin-project-lite",
|
|
1910
|
-
"
|
|
1911
|
-
"rustls
|
|
2194
|
+
"quinn",
|
|
2195
|
+
"rustls 0.23.12",
|
|
2196
|
+
"rustls-pemfile 2.1.3",
|
|
1912
2197
|
"rustls-pki-types",
|
|
1913
2198
|
"serde",
|
|
1914
2199
|
"serde_json",
|
|
1915
2200
|
"serde_urlencoded",
|
|
1916
|
-
"sync_wrapper",
|
|
2201
|
+
"sync_wrapper 1.0.1",
|
|
1917
2202
|
"tokio",
|
|
1918
|
-
"tokio-rustls 0.
|
|
2203
|
+
"tokio-rustls 0.26.0",
|
|
1919
2204
|
"tokio-util",
|
|
1920
2205
|
"tower-service",
|
|
1921
2206
|
"url",
|
|
1922
2207
|
"wasm-bindgen",
|
|
1923
2208
|
"wasm-bindgen-futures",
|
|
1924
2209
|
"web-sys",
|
|
1925
|
-
"webpki-roots 0.26.
|
|
1926
|
-
"
|
|
2210
|
+
"webpki-roots 0.26.3",
|
|
2211
|
+
"windows-registry",
|
|
1927
2212
|
]
|
|
1928
2213
|
|
|
1929
2214
|
[[package]]
|
|
1930
2215
|
name = "reqwest-middleware"
|
|
1931
|
-
version = "0.3.
|
|
2216
|
+
version = "0.3.3"
|
|
1932
2217
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1933
|
-
checksum = "
|
|
2218
|
+
checksum = "562ceb5a604d3f7c885a792d42c199fd8af239d0a51b2fa6a78aafa092452b04"
|
|
1934
2219
|
dependencies = [
|
|
1935
2220
|
"anyhow",
|
|
1936
2221
|
"async-trait",
|
|
1937
2222
|
"http 1.1.0",
|
|
1938
|
-
"reqwest 0.12.
|
|
2223
|
+
"reqwest 0.12.7",
|
|
1939
2224
|
"serde",
|
|
1940
2225
|
"thiserror",
|
|
1941
2226
|
"tower-service",
|
|
1942
2227
|
]
|
|
1943
2228
|
|
|
2229
|
+
[[package]]
|
|
2230
|
+
name = "rgb"
|
|
2231
|
+
version = "0.8.48"
|
|
2232
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2233
|
+
checksum = "0f86ae463694029097b846d8f99fd5536740602ae00022c0c50c5600720b2f71"
|
|
2234
|
+
dependencies = [
|
|
2235
|
+
"bytemuck",
|
|
2236
|
+
]
|
|
2237
|
+
|
|
1944
2238
|
[[package]]
|
|
1945
2239
|
name = "ring"
|
|
1946
2240
|
version = "0.17.8"
|
|
@@ -1964,15 +2258,15 @@ checksum = "3582f63211428f83597b51b2ddb88e2a91a9d52d12831f9d08f5e624e8977422"
|
|
|
1964
2258
|
|
|
1965
2259
|
[[package]]
|
|
1966
2260
|
name = "roff"
|
|
1967
|
-
version = "0.2.
|
|
2261
|
+
version = "0.2.2"
|
|
1968
2262
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1969
|
-
checksum = "
|
|
2263
|
+
checksum = "88f8660c1ff60292143c98d08fc6e2f654d722db50410e3f3797d40baaf9d8f3"
|
|
1970
2264
|
|
|
1971
2265
|
[[package]]
|
|
1972
2266
|
name = "rust-embed"
|
|
1973
|
-
version = "8.
|
|
2267
|
+
version = "8.5.0"
|
|
1974
2268
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1975
|
-
checksum = "
|
|
2269
|
+
checksum = "fa66af4a4fdd5e7ebc276f115e895611a34739a9c1c01028383d612d550953c0"
|
|
1976
2270
|
dependencies = [
|
|
1977
2271
|
"include-flate",
|
|
1978
2272
|
"rust-embed-impl",
|
|
@@ -1982,22 +2276,22 @@ dependencies = [
|
|
|
1982
2276
|
|
|
1983
2277
|
[[package]]
|
|
1984
2278
|
name = "rust-embed-impl"
|
|
1985
|
-
version = "8.
|
|
2279
|
+
version = "8.5.0"
|
|
1986
2280
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1987
|
-
checksum = "
|
|
2281
|
+
checksum = "6125dbc8867951125eec87294137f4e9c2c96566e61bf72c45095a7c77761478"
|
|
1988
2282
|
dependencies = [
|
|
1989
2283
|
"proc-macro2",
|
|
1990
2284
|
"quote",
|
|
1991
2285
|
"rust-embed-utils",
|
|
1992
|
-
"syn
|
|
2286
|
+
"syn",
|
|
1993
2287
|
"walkdir",
|
|
1994
2288
|
]
|
|
1995
2289
|
|
|
1996
2290
|
[[package]]
|
|
1997
2291
|
name = "rust-embed-utils"
|
|
1998
|
-
version = "8.
|
|
2292
|
+
version = "8.5.0"
|
|
1999
2293
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2000
|
-
checksum = "
|
|
2294
|
+
checksum = "2e5347777e9aacb56039b0e1f28785929a8a3b709e87482e7442c72e7c12529d"
|
|
2001
2295
|
dependencies = [
|
|
2002
2296
|
"sha2",
|
|
2003
2297
|
"walkdir",
|
|
@@ -2009,13 +2303,19 @@ version = "0.1.24"
|
|
|
2009
2303
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2010
2304
|
checksum = "719b953e2095829ee67db738b3bfa9fa368c94900df327b3f07fe6e794d2fe1f"
|
|
2011
2305
|
|
|
2306
|
+
[[package]]
|
|
2307
|
+
name = "rustc-hash"
|
|
2308
|
+
version = "2.0.0"
|
|
2309
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2310
|
+
checksum = "583034fd73374156e66797ed8e5b0d5690409c9226b22d87cb7f19821c05d152"
|
|
2311
|
+
|
|
2012
2312
|
[[package]]
|
|
2013
2313
|
name = "rustix"
|
|
2014
2314
|
version = "0.38.34"
|
|
2015
2315
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2016
2316
|
checksum = "70dc5ec042f7a43c4a73241207cecc9873a06d45debb38b329f8541d85c2730f"
|
|
2017
2317
|
dependencies = [
|
|
2018
|
-
"bitflags 2.
|
|
2318
|
+
"bitflags 2.6.0",
|
|
2019
2319
|
"errno",
|
|
2020
2320
|
"libc",
|
|
2021
2321
|
"linux-raw-sys",
|
|
@@ -2036,14 +2336,15 @@ dependencies = [
|
|
|
2036
2336
|
|
|
2037
2337
|
[[package]]
|
|
2038
2338
|
name = "rustls"
|
|
2039
|
-
version = "0.
|
|
2339
|
+
version = "0.23.12"
|
|
2040
2340
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2041
|
-
checksum = "
|
|
2341
|
+
checksum = "c58f8c84392efc0a126acce10fa59ff7b3d2ac06ab451a33f2741989b806b044"
|
|
2042
2342
|
dependencies = [
|
|
2043
2343
|
"log",
|
|
2344
|
+
"once_cell",
|
|
2044
2345
|
"ring",
|
|
2045
2346
|
"rustls-pki-types",
|
|
2046
|
-
"rustls-webpki 0.102.
|
|
2347
|
+
"rustls-webpki 0.102.6",
|
|
2047
2348
|
"subtle",
|
|
2048
2349
|
"zeroize",
|
|
2049
2350
|
]
|
|
@@ -2059,9 +2360,9 @@ dependencies = [
|
|
|
2059
2360
|
|
|
2060
2361
|
[[package]]
|
|
2061
2362
|
name = "rustls-pemfile"
|
|
2062
|
-
version = "2.1.
|
|
2363
|
+
version = "2.1.3"
|
|
2063
2364
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2064
|
-
checksum = "
|
|
2365
|
+
checksum = "196fe16b00e106300d3e45ecfcb764fa292a535d7326a29a5875c579c7417425"
|
|
2065
2366
|
dependencies = [
|
|
2066
2367
|
"base64 0.22.1",
|
|
2067
2368
|
"rustls-pki-types",
|
|
@@ -2069,9 +2370,9 @@ dependencies = [
|
|
|
2069
2370
|
|
|
2070
2371
|
[[package]]
|
|
2071
2372
|
name = "rustls-pki-types"
|
|
2072
|
-
version = "1.
|
|
2373
|
+
version = "1.8.0"
|
|
2073
2374
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2074
|
-
checksum = "
|
|
2375
|
+
checksum = "fc0a2ce646f8655401bb81e7927b812614bd5d91dbc968696be50603510fcaf0"
|
|
2075
2376
|
|
|
2076
2377
|
[[package]]
|
|
2077
2378
|
name = "rustls-webpki"
|
|
@@ -2085,9 +2386,9 @@ dependencies = [
|
|
|
2085
2386
|
|
|
2086
2387
|
[[package]]
|
|
2087
2388
|
name = "rustls-webpki"
|
|
2088
|
-
version = "0.102.
|
|
2389
|
+
version = "0.102.6"
|
|
2089
2390
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2090
|
-
checksum = "
|
|
2391
|
+
checksum = "8e6b52d4fda176fd835fdc55a835d4a89b8499cad995885a21149d5ad62f852e"
|
|
2091
2392
|
dependencies = [
|
|
2092
2393
|
"ring",
|
|
2093
2394
|
"rustls-pki-types",
|
|
@@ -2109,6 +2410,12 @@ dependencies = [
|
|
|
2109
2410
|
"winapi-util",
|
|
2110
2411
|
]
|
|
2111
2412
|
|
|
2413
|
+
[[package]]
|
|
2414
|
+
name = "scopeguard"
|
|
2415
|
+
version = "1.2.0"
|
|
2416
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2417
|
+
checksum = "94143f37725109f92c262ed2cf5e59bce7498c01bcc1502d7b9afe439a4e9f49"
|
|
2418
|
+
|
|
2112
2419
|
[[package]]
|
|
2113
2420
|
name = "sct"
|
|
2114
2421
|
version = "0.7.1"
|
|
@@ -2137,31 +2444,32 @@ checksum = "61697e0a1c7e512e84a621326239844a24d8207b4669b41bc18b32ea5cbf988b"
|
|
|
2137
2444
|
|
|
2138
2445
|
[[package]]
|
|
2139
2446
|
name = "serde"
|
|
2140
|
-
version = "1.0.
|
|
2447
|
+
version = "1.0.208"
|
|
2141
2448
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2142
|
-
checksum = "
|
|
2449
|
+
checksum = "cff085d2cb684faa248efb494c39b68e522822ac0de72ccf08109abde717cfb2"
|
|
2143
2450
|
dependencies = [
|
|
2144
2451
|
"serde_derive",
|
|
2145
2452
|
]
|
|
2146
2453
|
|
|
2147
2454
|
[[package]]
|
|
2148
2455
|
name = "serde_derive"
|
|
2149
|
-
version = "1.0.
|
|
2456
|
+
version = "1.0.208"
|
|
2150
2457
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2151
|
-
checksum = "
|
|
2458
|
+
checksum = "24008e81ff7613ed8e5ba0cfaf24e2c2f1e5b8a0495711e44fcd4882fca62bcf"
|
|
2152
2459
|
dependencies = [
|
|
2153
2460
|
"proc-macro2",
|
|
2154
2461
|
"quote",
|
|
2155
|
-
"syn
|
|
2462
|
+
"syn",
|
|
2156
2463
|
]
|
|
2157
2464
|
|
|
2158
2465
|
[[package]]
|
|
2159
2466
|
name = "serde_json"
|
|
2160
|
-
version = "1.0.
|
|
2467
|
+
version = "1.0.125"
|
|
2161
2468
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2162
|
-
checksum = "
|
|
2469
|
+
checksum = "83c8e735a073ccf5be70aa8066aa984eaf2fa000db6c8d0100ae605b366d31ed"
|
|
2163
2470
|
dependencies = [
|
|
2164
2471
|
"itoa",
|
|
2472
|
+
"memchr",
|
|
2165
2473
|
"ryu",
|
|
2166
2474
|
"serde",
|
|
2167
2475
|
]
|
|
@@ -2178,9 +2486,9 @@ dependencies = [
|
|
|
2178
2486
|
|
|
2179
2487
|
[[package]]
|
|
2180
2488
|
name = "serde_spanned"
|
|
2181
|
-
version = "0.6.
|
|
2489
|
+
version = "0.6.7"
|
|
2182
2490
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2183
|
-
checksum = "
|
|
2491
|
+
checksum = "eb5b1b31579f3811bf615c144393417496f152e12ac8b7663bf664f4a815306d"
|
|
2184
2492
|
dependencies = [
|
|
2185
2493
|
"serde",
|
|
2186
2494
|
]
|
|
@@ -2239,6 +2547,12 @@ dependencies = [
|
|
|
2239
2547
|
"dirs",
|
|
2240
2548
|
]
|
|
2241
2549
|
|
|
2550
|
+
[[package]]
|
|
2551
|
+
name = "shlex"
|
|
2552
|
+
version = "1.3.0"
|
|
2553
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2554
|
+
checksum = "0fda2ff0d084019ba4d7c6f371c95d8fd75ce3524c3cb8fb653a3023f6323e64"
|
|
2555
|
+
|
|
2242
2556
|
[[package]]
|
|
2243
2557
|
name = "siphasher"
|
|
2244
2558
|
version = "0.3.11"
|
|
@@ -2256,9 +2570,9 @@ dependencies = [
|
|
|
2256
2570
|
|
|
2257
2571
|
[[package]]
|
|
2258
2572
|
name = "slug"
|
|
2259
|
-
version = "0.1.
|
|
2573
|
+
version = "0.1.6"
|
|
2260
2574
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2261
|
-
checksum = "
|
|
2575
|
+
checksum = "882a80f72ee45de3cc9a5afeb2da0331d58df69e4e7d8eeb5d3c7784ae67e724"
|
|
2262
2576
|
dependencies = [
|
|
2263
2577
|
"deunicode",
|
|
2264
2578
|
"wasm-bindgen",
|
|
@@ -2303,6 +2617,18 @@ dependencies = [
|
|
|
2303
2617
|
"xxhash-rust",
|
|
2304
2618
|
]
|
|
2305
2619
|
|
|
2620
|
+
[[package]]
|
|
2621
|
+
name = "stable_deref_trait"
|
|
2622
|
+
version = "1.2.0"
|
|
2623
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2624
|
+
checksum = "a8f112729512f8e442d81f95a8a7ddf2b7c6b8a1a6f509a95864142b30cab2d3"
|
|
2625
|
+
|
|
2626
|
+
[[package]]
|
|
2627
|
+
name = "str_stack"
|
|
2628
|
+
version = "0.1.0"
|
|
2629
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2630
|
+
checksum = "9091b6114800a5f2141aee1d1b9d6ca3592ac062dc5decb3764ec5895a47b4eb"
|
|
2631
|
+
|
|
2306
2632
|
[[package]]
|
|
2307
2633
|
name = "strsim"
|
|
2308
2634
|
version = "0.11.1"
|
|
@@ -2311,26 +2637,38 @@ checksum = "7da8b5736845d9f2fcb837ea5d9e2628564b3b043a70948a3f0b778838c5fb4f"
|
|
|
2311
2637
|
|
|
2312
2638
|
[[package]]
|
|
2313
2639
|
name = "subtle"
|
|
2314
|
-
version = "2.
|
|
2640
|
+
version = "2.6.1"
|
|
2315
2641
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2316
|
-
checksum = "
|
|
2642
|
+
checksum = "13c2bddecc57b384dee18652358fb23172facb8a2c51ccc10d74c157bdea3292"
|
|
2317
2643
|
|
|
2318
2644
|
[[package]]
|
|
2319
|
-
name = "
|
|
2320
|
-
version = "
|
|
2645
|
+
name = "symbolic-common"
|
|
2646
|
+
version = "12.10.0"
|
|
2321
2647
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2322
|
-
checksum = "
|
|
2648
|
+
checksum = "16629323a4ec5268ad23a575110a724ad4544aae623451de600c747bf87b36cf"
|
|
2323
2649
|
dependencies = [
|
|
2324
|
-
"
|
|
2325
|
-
"
|
|
2326
|
-
"
|
|
2650
|
+
"debugid",
|
|
2651
|
+
"memmap2 0.9.4",
|
|
2652
|
+
"stable_deref_trait",
|
|
2653
|
+
"uuid",
|
|
2654
|
+
]
|
|
2655
|
+
|
|
2656
|
+
[[package]]
|
|
2657
|
+
name = "symbolic-demangle"
|
|
2658
|
+
version = "12.10.0"
|
|
2659
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2660
|
+
checksum = "48c043a45f08f41187414592b3ceb53fb0687da57209cc77401767fb69d5b596"
|
|
2661
|
+
dependencies = [
|
|
2662
|
+
"cpp_demangle",
|
|
2663
|
+
"rustc-demangle",
|
|
2664
|
+
"symbolic-common",
|
|
2327
2665
|
]
|
|
2328
2666
|
|
|
2329
2667
|
[[package]]
|
|
2330
2668
|
name = "syn"
|
|
2331
|
-
version = "2.0.
|
|
2669
|
+
version = "2.0.75"
|
|
2332
2670
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2333
|
-
checksum = "
|
|
2671
|
+
checksum = "f6af063034fc1935ede7be0122941bafa9bacb949334d090b77ca98b5817c7d9"
|
|
2334
2672
|
dependencies = [
|
|
2335
2673
|
"proc-macro2",
|
|
2336
2674
|
"quote",
|
|
@@ -2343,6 +2681,15 @@ version = "0.1.2"
|
|
|
2343
2681
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2344
2682
|
checksum = "2047c6ded9c721764247e62cd3b03c09ffc529b2ba5b10ec482ae507a4a70160"
|
|
2345
2683
|
|
|
2684
|
+
[[package]]
|
|
2685
|
+
name = "sync_wrapper"
|
|
2686
|
+
version = "1.0.1"
|
|
2687
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2688
|
+
checksum = "a7065abeca94b6a8a577f9bd45aa0867a2238b74e8eb67cf10d492bc39351394"
|
|
2689
|
+
dependencies = [
|
|
2690
|
+
"futures-core",
|
|
2691
|
+
]
|
|
2692
|
+
|
|
2346
2693
|
[[package]]
|
|
2347
2694
|
name = "system-configuration"
|
|
2348
2695
|
version = "0.5.1"
|
|
@@ -2364,16 +2711,23 @@ dependencies = [
|
|
|
2364
2711
|
"libc",
|
|
2365
2712
|
]
|
|
2366
2713
|
|
|
2714
|
+
[[package]]
|
|
2715
|
+
name = "temp-dir"
|
|
2716
|
+
version = "0.1.13"
|
|
2717
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2718
|
+
checksum = "1f227968ec00f0e5322f9b8173c7a0cbcff6181a0a5b28e9892491c286277231"
|
|
2719
|
+
|
|
2367
2720
|
[[package]]
|
|
2368
2721
|
name = "tempfile"
|
|
2369
|
-
version = "3.
|
|
2722
|
+
version = "3.12.0"
|
|
2370
2723
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2371
|
-
checksum = "
|
|
2724
|
+
checksum = "04cbcdd0c794ebb0d4cf35e88edd2f7d2c4c3e9a5a6dab322839b321c6a87a64"
|
|
2372
2725
|
dependencies = [
|
|
2373
2726
|
"cfg-if",
|
|
2374
2727
|
"fastrand",
|
|
2728
|
+
"once_cell",
|
|
2375
2729
|
"rustix",
|
|
2376
|
-
"windows-sys 0.
|
|
2730
|
+
"windows-sys 0.59.0",
|
|
2377
2731
|
]
|
|
2378
2732
|
|
|
2379
2733
|
[[package]]
|
|
@@ -2419,22 +2773,22 @@ dependencies = [
|
|
|
2419
2773
|
|
|
2420
2774
|
[[package]]
|
|
2421
2775
|
name = "thiserror"
|
|
2422
|
-
version = "1.0.
|
|
2776
|
+
version = "1.0.63"
|
|
2423
2777
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2424
|
-
checksum = "
|
|
2778
|
+
checksum = "c0342370b38b6a11b6cc11d6a805569958d54cfa061a29969c3b5ce2ea405724"
|
|
2425
2779
|
dependencies = [
|
|
2426
2780
|
"thiserror-impl",
|
|
2427
2781
|
]
|
|
2428
2782
|
|
|
2429
2783
|
[[package]]
|
|
2430
2784
|
name = "thiserror-impl"
|
|
2431
|
-
version = "1.0.
|
|
2785
|
+
version = "1.0.63"
|
|
2432
2786
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2433
|
-
checksum = "
|
|
2787
|
+
checksum = "a4558b58466b9ad7ca0f102865eccc95938dca1a74a856f2b57b6629050da261"
|
|
2434
2788
|
dependencies = [
|
|
2435
2789
|
"proc-macro2",
|
|
2436
2790
|
"quote",
|
|
2437
|
-
"syn
|
|
2791
|
+
"syn",
|
|
2438
2792
|
]
|
|
2439
2793
|
|
|
2440
2794
|
[[package]]
|
|
@@ -2470,9 +2824,9 @@ dependencies = [
|
|
|
2470
2824
|
|
|
2471
2825
|
[[package]]
|
|
2472
2826
|
name = "tinyvec"
|
|
2473
|
-
version = "1.
|
|
2827
|
+
version = "1.8.0"
|
|
2474
2828
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2475
|
-
checksum = "
|
|
2829
|
+
checksum = "445e881f4f6d382d5f27c034e25eb92edd7c784ceab92a0937db7f2e9471b938"
|
|
2476
2830
|
dependencies = [
|
|
2477
2831
|
"tinyvec_macros",
|
|
2478
2832
|
]
|
|
@@ -2485,30 +2839,29 @@ checksum = "1f3ccbac311fea05f86f61904b462b55fb3df8837a366dfc601a0161d0532f20"
|
|
|
2485
2839
|
|
|
2486
2840
|
[[package]]
|
|
2487
2841
|
name = "tokio"
|
|
2488
|
-
version = "1.
|
|
2842
|
+
version = "1.39.3"
|
|
2489
2843
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2490
|
-
checksum = "
|
|
2844
|
+
checksum = "9babc99b9923bfa4804bd74722ff02c0381021eafa4db9949217e3be8e84fff5"
|
|
2491
2845
|
dependencies = [
|
|
2492
2846
|
"backtrace",
|
|
2493
2847
|
"bytes",
|
|
2494
2848
|
"libc",
|
|
2495
2849
|
"mio",
|
|
2496
|
-
"num_cpus",
|
|
2497
2850
|
"pin-project-lite",
|
|
2498
2851
|
"socket2",
|
|
2499
2852
|
"tokio-macros",
|
|
2500
|
-
"windows-sys 0.
|
|
2853
|
+
"windows-sys 0.52.0",
|
|
2501
2854
|
]
|
|
2502
2855
|
|
|
2503
2856
|
[[package]]
|
|
2504
2857
|
name = "tokio-macros"
|
|
2505
|
-
version = "2.
|
|
2858
|
+
version = "2.4.0"
|
|
2506
2859
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2507
|
-
checksum = "
|
|
2860
|
+
checksum = "693d596312e88961bc67d7f1f97af8a70227d9f90c31bba5806eec004978d752"
|
|
2508
2861
|
dependencies = [
|
|
2509
2862
|
"proc-macro2",
|
|
2510
2863
|
"quote",
|
|
2511
|
-
"syn
|
|
2864
|
+
"syn",
|
|
2512
2865
|
]
|
|
2513
2866
|
|
|
2514
2867
|
[[package]]
|
|
@@ -2523,11 +2876,11 @@ dependencies = [
|
|
|
2523
2876
|
|
|
2524
2877
|
[[package]]
|
|
2525
2878
|
name = "tokio-rustls"
|
|
2526
|
-
version = "0.
|
|
2879
|
+
version = "0.26.0"
|
|
2527
2880
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2528
|
-
checksum = "
|
|
2881
|
+
checksum = "0c7bc40d0e5a97695bb96e27995cd3a08538541b0a846f65bba7a359f36700d4"
|
|
2529
2882
|
dependencies = [
|
|
2530
|
-
"rustls 0.
|
|
2883
|
+
"rustls 0.23.12",
|
|
2531
2884
|
"rustls-pki-types",
|
|
2532
2885
|
"tokio",
|
|
2533
2886
|
]
|
|
@@ -2558,9 +2911,9 @@ dependencies = [
|
|
|
2558
2911
|
|
|
2559
2912
|
[[package]]
|
|
2560
2913
|
name = "toml"
|
|
2561
|
-
version = "0.8.
|
|
2914
|
+
version = "0.8.19"
|
|
2562
2915
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2563
|
-
checksum = "
|
|
2916
|
+
checksum = "a1ed1f98e3fdc28d6d910e6737ae6ab1a93bf1985935a1193e68f93eeb68d24e"
|
|
2564
2917
|
dependencies = [
|
|
2565
2918
|
"serde",
|
|
2566
2919
|
"serde_spanned",
|
|
@@ -2570,18 +2923,18 @@ dependencies = [
|
|
|
2570
2923
|
|
|
2571
2924
|
[[package]]
|
|
2572
2925
|
name = "toml_datetime"
|
|
2573
|
-
version = "0.6.
|
|
2926
|
+
version = "0.6.8"
|
|
2574
2927
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2575
|
-
checksum = "
|
|
2928
|
+
checksum = "0dd7358ecb8fc2f8d014bf86f6f638ce72ba252a2c3a2572f2a795f1d23efb41"
|
|
2576
2929
|
dependencies = [
|
|
2577
2930
|
"serde",
|
|
2578
2931
|
]
|
|
2579
2932
|
|
|
2580
2933
|
[[package]]
|
|
2581
2934
|
name = "toml_edit"
|
|
2582
|
-
version = "0.22.
|
|
2935
|
+
version = "0.22.20"
|
|
2583
2936
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2584
|
-
checksum = "
|
|
2937
|
+
checksum = "583c44c02ad26b0c3f3066fe629275e50627026c51ac2e595cca4c230ce1ce1d"
|
|
2585
2938
|
dependencies = [
|
|
2586
2939
|
"indexmap",
|
|
2587
2940
|
"serde",
|
|
@@ -2603,20 +2956,19 @@ dependencies = [
|
|
|
2603
2956
|
"tokio",
|
|
2604
2957
|
"tower-layer",
|
|
2605
2958
|
"tower-service",
|
|
2606
|
-
"tracing",
|
|
2607
2959
|
]
|
|
2608
2960
|
|
|
2609
2961
|
[[package]]
|
|
2610
2962
|
name = "tower-layer"
|
|
2611
|
-
version = "0.3.
|
|
2963
|
+
version = "0.3.3"
|
|
2612
2964
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2613
|
-
checksum = "
|
|
2965
|
+
checksum = "121c2a6cda46980bb0fcd1647ffaf6cd3fc79a013de288782836f6df9c48780e"
|
|
2614
2966
|
|
|
2615
2967
|
[[package]]
|
|
2616
2968
|
name = "tower-service"
|
|
2617
|
-
version = "0.3.
|
|
2969
|
+
version = "0.3.3"
|
|
2618
2970
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2619
|
-
checksum = "
|
|
2971
|
+
checksum = "8df9b6e13f2d32c91b9bd719c00d1958837bc7dec474d94952798cc8e69eeec3"
|
|
2620
2972
|
|
|
2621
2973
|
[[package]]
|
|
2622
2974
|
name = "tracing"
|
|
@@ -2624,7 +2976,6 @@ version = "0.1.40"
|
|
|
2624
2976
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2625
2977
|
checksum = "c3523ab5a71916ccf420eebdf5521fcef02141234bbc0b8a49f2fdc4544364ef"
|
|
2626
2978
|
dependencies = [
|
|
2627
|
-
"log",
|
|
2628
2979
|
"pin-project-lite",
|
|
2629
2980
|
"tracing-core",
|
|
2630
2981
|
]
|
|
@@ -2738,9 +3089,9 @@ dependencies = [
|
|
|
2738
3089
|
|
|
2739
3090
|
[[package]]
|
|
2740
3091
|
name = "unicode-width"
|
|
2741
|
-
version = "0.1.
|
|
3092
|
+
version = "0.1.13"
|
|
2742
3093
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2743
|
-
checksum = "
|
|
3094
|
+
checksum = "0336d538f7abc86d282a4189614dfaa90810dfc2c6f6427eaf88e16311dd225d"
|
|
2744
3095
|
|
|
2745
3096
|
[[package]]
|
|
2746
3097
|
name = "untrusted"
|
|
@@ -2764,28 +3115,27 @@ dependencies = [
|
|
|
2764
3115
|
|
|
2765
3116
|
[[package]]
|
|
2766
3117
|
name = "ureq"
|
|
2767
|
-
version = "2.
|
|
3118
|
+
version = "2.10.1"
|
|
2768
3119
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2769
|
-
checksum = "
|
|
3120
|
+
checksum = "b74fc6b57825be3373f7054754755f03ac3a8f5d70015ccad699ba2029956f4a"
|
|
2770
3121
|
dependencies = [
|
|
2771
3122
|
"base64 0.22.1",
|
|
2772
3123
|
"flate2",
|
|
2773
3124
|
"log",
|
|
2774
3125
|
"once_cell",
|
|
2775
|
-
"rustls 0.
|
|
3126
|
+
"rustls 0.23.12",
|
|
2776
3127
|
"rustls-pki-types",
|
|
2777
|
-
"rustls-webpki 0.102.3",
|
|
2778
3128
|
"serde",
|
|
2779
3129
|
"serde_json",
|
|
2780
3130
|
"url",
|
|
2781
|
-
"webpki-roots 0.26.
|
|
3131
|
+
"webpki-roots 0.26.3",
|
|
2782
3132
|
]
|
|
2783
3133
|
|
|
2784
3134
|
[[package]]
|
|
2785
3135
|
name = "url"
|
|
2786
|
-
version = "2.5.
|
|
3136
|
+
version = "2.5.2"
|
|
2787
3137
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2788
|
-
checksum = "
|
|
3138
|
+
checksum = "22784dbdf76fdde8af1aeda5622b546b422b6fc585325248a2bf9f5e41e94d6c"
|
|
2789
3139
|
dependencies = [
|
|
2790
3140
|
"form_urlencoded",
|
|
2791
3141
|
"idna",
|
|
@@ -2793,11 +3143,23 @@ dependencies = [
|
|
|
2793
3143
|
"serde",
|
|
2794
3144
|
]
|
|
2795
3145
|
|
|
3146
|
+
[[package]]
|
|
3147
|
+
name = "urlencoding"
|
|
3148
|
+
version = "2.1.3"
|
|
3149
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3150
|
+
checksum = "daf8dba3b7eb870caf1ddeed7bc9d2a049f3cfdfae7cb521b087cc33ae4c49da"
|
|
3151
|
+
|
|
2796
3152
|
[[package]]
|
|
2797
3153
|
name = "utf8parse"
|
|
2798
|
-
version = "0.2.
|
|
3154
|
+
version = "0.2.2"
|
|
3155
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3156
|
+
checksum = "06abde3611657adf66d383f00b093d7faecc7fa57071cce2578660c9f1010821"
|
|
3157
|
+
|
|
3158
|
+
[[package]]
|
|
3159
|
+
name = "uuid"
|
|
3160
|
+
version = "1.10.0"
|
|
2799
3161
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2800
|
-
checksum = "
|
|
3162
|
+
checksum = "81dfa00651efa65069b0b6b651f4aaa31ba9e3c3ce0137aaad053604ee7e0314"
|
|
2801
3163
|
|
|
2802
3164
|
[[package]]
|
|
2803
3165
|
name = "vcpkg"
|
|
@@ -2807,9 +3169,15 @@ checksum = "accd4ea62f7bb7a82fe23066fb0957d48ef677f6eeb8215f372f52e48bb32426"
|
|
|
2807
3169
|
|
|
2808
3170
|
[[package]]
|
|
2809
3171
|
name = "version_check"
|
|
2810
|
-
version = "0.9.
|
|
3172
|
+
version = "0.9.5"
|
|
3173
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3174
|
+
checksum = "0b928f33d975fc6ad9f86c8f283853ad26bdd5b10b7f1542aa2fa15e2289105a"
|
|
3175
|
+
|
|
3176
|
+
[[package]]
|
|
3177
|
+
name = "virtue"
|
|
3178
|
+
version = "0.0.13"
|
|
2811
3179
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2812
|
-
checksum = "
|
|
3180
|
+
checksum = "9dcc60c0624df774c82a0ef104151231d37da4962957d691c011c852b2473314"
|
|
2813
3181
|
|
|
2814
3182
|
[[package]]
|
|
2815
3183
|
name = "walkdir"
|
|
@@ -2838,34 +3206,35 @@ checksum = "9c8d87e72b64a3b4db28d11ce29237c246188f4f51057d65a7eab63b7987e423"
|
|
|
2838
3206
|
|
|
2839
3207
|
[[package]]
|
|
2840
3208
|
name = "wasm-bindgen"
|
|
2841
|
-
version = "0.2.
|
|
3209
|
+
version = "0.2.93"
|
|
2842
3210
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2843
|
-
checksum = "
|
|
3211
|
+
checksum = "a82edfc16a6c469f5f44dc7b571814045d60404b55a0ee849f9bcfa2e63dd9b5"
|
|
2844
3212
|
dependencies = [
|
|
2845
3213
|
"cfg-if",
|
|
3214
|
+
"once_cell",
|
|
2846
3215
|
"wasm-bindgen-macro",
|
|
2847
3216
|
]
|
|
2848
3217
|
|
|
2849
3218
|
[[package]]
|
|
2850
3219
|
name = "wasm-bindgen-backend"
|
|
2851
|
-
version = "0.2.
|
|
3220
|
+
version = "0.2.93"
|
|
2852
3221
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2853
|
-
checksum = "
|
|
3222
|
+
checksum = "9de396da306523044d3302746f1208fa71d7532227f15e347e2d93e4145dd77b"
|
|
2854
3223
|
dependencies = [
|
|
2855
3224
|
"bumpalo",
|
|
2856
3225
|
"log",
|
|
2857
3226
|
"once_cell",
|
|
2858
3227
|
"proc-macro2",
|
|
2859
3228
|
"quote",
|
|
2860
|
-
"syn
|
|
3229
|
+
"syn",
|
|
2861
3230
|
"wasm-bindgen-shared",
|
|
2862
3231
|
]
|
|
2863
3232
|
|
|
2864
3233
|
[[package]]
|
|
2865
3234
|
name = "wasm-bindgen-futures"
|
|
2866
|
-
version = "0.4.
|
|
3235
|
+
version = "0.4.43"
|
|
2867
3236
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2868
|
-
checksum = "
|
|
3237
|
+
checksum = "61e9300f63a621e96ed275155c108eb6f843b6a26d053f122ab69724559dc8ed"
|
|
2869
3238
|
dependencies = [
|
|
2870
3239
|
"cfg-if",
|
|
2871
3240
|
"js-sys",
|
|
@@ -2875,9 +3244,9 @@ dependencies = [
|
|
|
2875
3244
|
|
|
2876
3245
|
[[package]]
|
|
2877
3246
|
name = "wasm-bindgen-macro"
|
|
2878
|
-
version = "0.2.
|
|
3247
|
+
version = "0.2.93"
|
|
2879
3248
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2880
|
-
checksum = "
|
|
3249
|
+
checksum = "585c4c91a46b072c92e908d99cb1dcdf95c5218eeb6f3bf1efa991ee7a68cccf"
|
|
2881
3250
|
dependencies = [
|
|
2882
3251
|
"quote",
|
|
2883
3252
|
"wasm-bindgen-macro-support",
|
|
@@ -2885,28 +3254,28 @@ dependencies = [
|
|
|
2885
3254
|
|
|
2886
3255
|
[[package]]
|
|
2887
3256
|
name = "wasm-bindgen-macro-support"
|
|
2888
|
-
version = "0.2.
|
|
3257
|
+
version = "0.2.93"
|
|
2889
3258
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2890
|
-
checksum = "
|
|
3259
|
+
checksum = "afc340c74d9005395cf9dd098506f7f44e38f2b4a21c6aaacf9a105ea5e1e836"
|
|
2891
3260
|
dependencies = [
|
|
2892
3261
|
"proc-macro2",
|
|
2893
3262
|
"quote",
|
|
2894
|
-
"syn
|
|
3263
|
+
"syn",
|
|
2895
3264
|
"wasm-bindgen-backend",
|
|
2896
3265
|
"wasm-bindgen-shared",
|
|
2897
3266
|
]
|
|
2898
3267
|
|
|
2899
3268
|
[[package]]
|
|
2900
3269
|
name = "wasm-bindgen-shared"
|
|
2901
|
-
version = "0.2.
|
|
3270
|
+
version = "0.2.93"
|
|
2902
3271
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2903
|
-
checksum = "
|
|
3272
|
+
checksum = "c62a0a307cb4a311d3a07867860911ca130c3494e8c2719593806c08bc5d0484"
|
|
2904
3273
|
|
|
2905
3274
|
[[package]]
|
|
2906
3275
|
name = "web-sys"
|
|
2907
|
-
version = "0.3.
|
|
3276
|
+
version = "0.3.70"
|
|
2908
3277
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2909
|
-
checksum = "
|
|
3278
|
+
checksum = "26fdeaafd9bd129f65e7c031593c24d62186301e0c72c8978fa1678be7d532c0"
|
|
2910
3279
|
dependencies = [
|
|
2911
3280
|
"js-sys",
|
|
2912
3281
|
"wasm-bindgen",
|
|
@@ -2920,30 +3289,52 @@ checksum = "5f20c57d8d7db6d3b86154206ae5d8fba62dd39573114de97c2cb0578251f8e1"
|
|
|
2920
3289
|
|
|
2921
3290
|
[[package]]
|
|
2922
3291
|
name = "webpki-roots"
|
|
2923
|
-
version = "0.26.
|
|
3292
|
+
version = "0.26.3"
|
|
2924
3293
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2925
|
-
checksum = "
|
|
3294
|
+
checksum = "bd7c23921eeb1713a4e851530e9b9756e4fb0e89978582942612524cf09f01cd"
|
|
2926
3295
|
dependencies = [
|
|
2927
3296
|
"rustls-pki-types",
|
|
2928
3297
|
]
|
|
2929
3298
|
|
|
3299
|
+
[[package]]
|
|
3300
|
+
name = "winapi"
|
|
3301
|
+
version = "0.3.9"
|
|
3302
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3303
|
+
checksum = "5c839a674fcd7a98952e593242ea400abe93992746761e38641405d28b00f419"
|
|
3304
|
+
dependencies = [
|
|
3305
|
+
"winapi-i686-pc-windows-gnu",
|
|
3306
|
+
"winapi-x86_64-pc-windows-gnu",
|
|
3307
|
+
]
|
|
3308
|
+
|
|
3309
|
+
[[package]]
|
|
3310
|
+
name = "winapi-i686-pc-windows-gnu"
|
|
3311
|
+
version = "0.4.0"
|
|
3312
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3313
|
+
checksum = "ac3b87c63620426dd9b991e5ce0329eff545bccbbb34f3be09ff6fb6ab51b7b6"
|
|
3314
|
+
|
|
2930
3315
|
[[package]]
|
|
2931
3316
|
name = "winapi-util"
|
|
2932
|
-
version = "0.1.
|
|
3317
|
+
version = "0.1.9"
|
|
2933
3318
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2934
|
-
checksum = "
|
|
3319
|
+
checksum = "cf221c93e13a30d793f7645a0e7762c55d169dbb0a49671918a2319d289b10bb"
|
|
2935
3320
|
dependencies = [
|
|
2936
|
-
"windows-sys 0.
|
|
3321
|
+
"windows-sys 0.59.0",
|
|
2937
3322
|
]
|
|
2938
3323
|
|
|
3324
|
+
[[package]]
|
|
3325
|
+
name = "winapi-x86_64-pc-windows-gnu"
|
|
3326
|
+
version = "0.4.0"
|
|
3327
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3328
|
+
checksum = "712e227841d057c1ee1cd2fb22fa7e5a5461ae8e48fa2ca79ec42cfc1931183f"
|
|
3329
|
+
|
|
2939
3330
|
[[package]]
|
|
2940
3331
|
name = "windows"
|
|
2941
|
-
version = "0.
|
|
3332
|
+
version = "0.58.0"
|
|
2942
3333
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2943
|
-
checksum = "
|
|
3334
|
+
checksum = "dd04d41d93c4992d421894c18c8b43496aa748dd4c081bac0dc93eb0489272b6"
|
|
2944
3335
|
dependencies = [
|
|
2945
|
-
"windows-core 0.
|
|
2946
|
-
"windows-targets 0.52.
|
|
3336
|
+
"windows-core 0.58.0",
|
|
3337
|
+
"windows-targets 0.52.6",
|
|
2947
3338
|
]
|
|
2948
3339
|
|
|
2949
3340
|
[[package]]
|
|
@@ -2952,50 +3343,72 @@ version = "0.52.0"
|
|
|
2952
3343
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2953
3344
|
checksum = "33ab640c8d7e35bf8ba19b884ba838ceb4fba93a4e8c65a9059d08afcfc683d9"
|
|
2954
3345
|
dependencies = [
|
|
2955
|
-
"windows-targets 0.52.
|
|
3346
|
+
"windows-targets 0.52.6",
|
|
2956
3347
|
]
|
|
2957
3348
|
|
|
2958
3349
|
[[package]]
|
|
2959
3350
|
name = "windows-core"
|
|
2960
|
-
version = "0.
|
|
3351
|
+
version = "0.58.0"
|
|
2961
3352
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2962
|
-
checksum = "
|
|
3353
|
+
checksum = "6ba6d44ec8c2591c134257ce647b7ea6b20335bf6379a27dac5f1641fcf59f99"
|
|
2963
3354
|
dependencies = [
|
|
2964
3355
|
"windows-implement",
|
|
2965
3356
|
"windows-interface",
|
|
2966
3357
|
"windows-result",
|
|
2967
|
-
"windows-
|
|
3358
|
+
"windows-strings",
|
|
3359
|
+
"windows-targets 0.52.6",
|
|
2968
3360
|
]
|
|
2969
3361
|
|
|
2970
3362
|
[[package]]
|
|
2971
3363
|
name = "windows-implement"
|
|
2972
|
-
version = "0.
|
|
3364
|
+
version = "0.58.0"
|
|
2973
3365
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2974
|
-
checksum = "
|
|
3366
|
+
checksum = "2bbd5b46c938e506ecbce286b6628a02171d56153ba733b6c741fc627ec9579b"
|
|
2975
3367
|
dependencies = [
|
|
2976
3368
|
"proc-macro2",
|
|
2977
3369
|
"quote",
|
|
2978
|
-
"syn
|
|
3370
|
+
"syn",
|
|
2979
3371
|
]
|
|
2980
3372
|
|
|
2981
3373
|
[[package]]
|
|
2982
3374
|
name = "windows-interface"
|
|
2983
|
-
version = "0.
|
|
3375
|
+
version = "0.58.0"
|
|
2984
3376
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2985
|
-
checksum = "
|
|
3377
|
+
checksum = "053c4c462dc91d3b1504c6fe5a726dd15e216ba718e84a0e46a88fbe5ded3515"
|
|
2986
3378
|
dependencies = [
|
|
2987
3379
|
"proc-macro2",
|
|
2988
3380
|
"quote",
|
|
2989
|
-
"syn
|
|
3381
|
+
"syn",
|
|
3382
|
+
]
|
|
3383
|
+
|
|
3384
|
+
[[package]]
|
|
3385
|
+
name = "windows-registry"
|
|
3386
|
+
version = "0.2.0"
|
|
3387
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3388
|
+
checksum = "e400001bb720a623c1c69032f8e3e4cf09984deec740f007dd2b03ec864804b0"
|
|
3389
|
+
dependencies = [
|
|
3390
|
+
"windows-result",
|
|
3391
|
+
"windows-strings",
|
|
3392
|
+
"windows-targets 0.52.6",
|
|
2990
3393
|
]
|
|
2991
3394
|
|
|
2992
3395
|
[[package]]
|
|
2993
3396
|
name = "windows-result"
|
|
2994
|
-
version = "0.
|
|
3397
|
+
version = "0.2.0"
|
|
2995
3398
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2996
|
-
checksum = "
|
|
3399
|
+
checksum = "1d1043d8214f791817bab27572aaa8af63732e11bf84aa21a45a78d6c317ae0e"
|
|
2997
3400
|
dependencies = [
|
|
2998
|
-
"windows-targets 0.52.
|
|
3401
|
+
"windows-targets 0.52.6",
|
|
3402
|
+
]
|
|
3403
|
+
|
|
3404
|
+
[[package]]
|
|
3405
|
+
name = "windows-strings"
|
|
3406
|
+
version = "0.1.0"
|
|
3407
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3408
|
+
checksum = "4cd9b125c486025df0eabcb585e62173c6c9eddcec5d117d3b6e8c30e2ee4d10"
|
|
3409
|
+
dependencies = [
|
|
3410
|
+
"windows-result",
|
|
3411
|
+
"windows-targets 0.52.6",
|
|
2999
3412
|
]
|
|
3000
3413
|
|
|
3001
3414
|
[[package]]
|
|
@@ -3013,7 +3426,16 @@ version = "0.52.0"
|
|
|
3013
3426
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3014
3427
|
checksum = "282be5f36a8ce781fad8c8ae18fa3f9beff57ec1b52cb3de0789201425d9a33d"
|
|
3015
3428
|
dependencies = [
|
|
3016
|
-
"windows-targets 0.52.
|
|
3429
|
+
"windows-targets 0.52.6",
|
|
3430
|
+
]
|
|
3431
|
+
|
|
3432
|
+
[[package]]
|
|
3433
|
+
name = "windows-sys"
|
|
3434
|
+
version = "0.59.0"
|
|
3435
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3436
|
+
checksum = "1e38bc4d79ed67fd075bcc251a1c39b32a1776bbe92e5bef1f0bf1f8c531853b"
|
|
3437
|
+
dependencies = [
|
|
3438
|
+
"windows-targets 0.52.6",
|
|
3017
3439
|
]
|
|
3018
3440
|
|
|
3019
3441
|
[[package]]
|
|
@@ -3033,18 +3455,18 @@ dependencies = [
|
|
|
3033
3455
|
|
|
3034
3456
|
[[package]]
|
|
3035
3457
|
name = "windows-targets"
|
|
3036
|
-
version = "0.52.
|
|
3458
|
+
version = "0.52.6"
|
|
3037
3459
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3038
|
-
checksum = "
|
|
3460
|
+
checksum = "9b724f72796e036ab90c1021d4780d4d3d648aca59e491e6b98e725b84e99973"
|
|
3039
3461
|
dependencies = [
|
|
3040
|
-
"windows_aarch64_gnullvm 0.52.
|
|
3041
|
-
"windows_aarch64_msvc 0.52.
|
|
3042
|
-
"windows_i686_gnu 0.52.
|
|
3462
|
+
"windows_aarch64_gnullvm 0.52.6",
|
|
3463
|
+
"windows_aarch64_msvc 0.52.6",
|
|
3464
|
+
"windows_i686_gnu 0.52.6",
|
|
3043
3465
|
"windows_i686_gnullvm",
|
|
3044
|
-
"windows_i686_msvc 0.52.
|
|
3045
|
-
"windows_x86_64_gnu 0.52.
|
|
3046
|
-
"windows_x86_64_gnullvm 0.52.
|
|
3047
|
-
"windows_x86_64_msvc 0.52.
|
|
3466
|
+
"windows_i686_msvc 0.52.6",
|
|
3467
|
+
"windows_x86_64_gnu 0.52.6",
|
|
3468
|
+
"windows_x86_64_gnullvm 0.52.6",
|
|
3469
|
+
"windows_x86_64_msvc 0.52.6",
|
|
3048
3470
|
]
|
|
3049
3471
|
|
|
3050
3472
|
[[package]]
|
|
@@ -3055,9 +3477,9 @@ checksum = "2b38e32f0abccf9987a4e3079dfb67dcd799fb61361e53e2882c3cbaf0d905d8"
|
|
|
3055
3477
|
|
|
3056
3478
|
[[package]]
|
|
3057
3479
|
name = "windows_aarch64_gnullvm"
|
|
3058
|
-
version = "0.52.
|
|
3480
|
+
version = "0.52.6"
|
|
3059
3481
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3060
|
-
checksum = "
|
|
3482
|
+
checksum = "32a4622180e7a0ec044bb555404c800bc9fd9ec262ec147edd5989ccd0c02cd3"
|
|
3061
3483
|
|
|
3062
3484
|
[[package]]
|
|
3063
3485
|
name = "windows_aarch64_msvc"
|
|
@@ -3067,9 +3489,9 @@ checksum = "dc35310971f3b2dbbf3f0690a219f40e2d9afcf64f9ab7cc1be722937c26b4bc"
|
|
|
3067
3489
|
|
|
3068
3490
|
[[package]]
|
|
3069
3491
|
name = "windows_aarch64_msvc"
|
|
3070
|
-
version = "0.52.
|
|
3492
|
+
version = "0.52.6"
|
|
3071
3493
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3072
|
-
checksum = "
|
|
3494
|
+
checksum = "09ec2a7bb152e2252b53fa7803150007879548bc709c039df7627cabbd05d469"
|
|
3073
3495
|
|
|
3074
3496
|
[[package]]
|
|
3075
3497
|
name = "windows_i686_gnu"
|
|
@@ -3079,15 +3501,15 @@ checksum = "a75915e7def60c94dcef72200b9a8e58e5091744960da64ec734a6c6e9b3743e"
|
|
|
3079
3501
|
|
|
3080
3502
|
[[package]]
|
|
3081
3503
|
name = "windows_i686_gnu"
|
|
3082
|
-
version = "0.52.
|
|
3504
|
+
version = "0.52.6"
|
|
3083
3505
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3084
|
-
checksum = "
|
|
3506
|
+
checksum = "8e9b5ad5ab802e97eb8e295ac6720e509ee4c243f69d781394014ebfe8bbfa0b"
|
|
3085
3507
|
|
|
3086
3508
|
[[package]]
|
|
3087
3509
|
name = "windows_i686_gnullvm"
|
|
3088
|
-
version = "0.52.
|
|
3510
|
+
version = "0.52.6"
|
|
3089
3511
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3090
|
-
checksum = "
|
|
3512
|
+
checksum = "0eee52d38c090b3caa76c563b86c3a4bd71ef1a819287c19d586d7334ae8ed66"
|
|
3091
3513
|
|
|
3092
3514
|
[[package]]
|
|
3093
3515
|
name = "windows_i686_msvc"
|
|
@@ -3097,9 +3519,9 @@ checksum = "8f55c233f70c4b27f66c523580f78f1004e8b5a8b659e05a4eb49d4166cca406"
|
|
|
3097
3519
|
|
|
3098
3520
|
[[package]]
|
|
3099
3521
|
name = "windows_i686_msvc"
|
|
3100
|
-
version = "0.52.
|
|
3522
|
+
version = "0.52.6"
|
|
3101
3523
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3102
|
-
checksum = "
|
|
3524
|
+
checksum = "240948bc05c5e7c6dabba28bf89d89ffce3e303022809e73deaefe4f6ec56c66"
|
|
3103
3525
|
|
|
3104
3526
|
[[package]]
|
|
3105
3527
|
name = "windows_x86_64_gnu"
|
|
@@ -3109,9 +3531,9 @@ checksum = "53d40abd2583d23e4718fddf1ebec84dbff8381c07cae67ff7768bbf19c6718e"
|
|
|
3109
3531
|
|
|
3110
3532
|
[[package]]
|
|
3111
3533
|
name = "windows_x86_64_gnu"
|
|
3112
|
-
version = "0.52.
|
|
3534
|
+
version = "0.52.6"
|
|
3113
3535
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3114
|
-
checksum = "
|
|
3536
|
+
checksum = "147a5c80aabfbf0c7d901cb5895d1de30ef2907eb21fbbab29ca94c5b08b1a78"
|
|
3115
3537
|
|
|
3116
3538
|
[[package]]
|
|
3117
3539
|
name = "windows_x86_64_gnullvm"
|
|
@@ -3121,9 +3543,9 @@ checksum = "0b7b52767868a23d5bab768e390dc5f5c55825b6d30b86c844ff2dc7414044cc"
|
|
|
3121
3543
|
|
|
3122
3544
|
[[package]]
|
|
3123
3545
|
name = "windows_x86_64_gnullvm"
|
|
3124
|
-
version = "0.52.
|
|
3546
|
+
version = "0.52.6"
|
|
3125
3547
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3126
|
-
checksum = "
|
|
3548
|
+
checksum = "24d5b23dc417412679681396f2b49f3de8c1473deb516bd34410872eff51ed0d"
|
|
3127
3549
|
|
|
3128
3550
|
[[package]]
|
|
3129
3551
|
name = "windows_x86_64_msvc"
|
|
@@ -3133,15 +3555,15 @@ checksum = "ed94fce61571a4006852b7389a063ab983c02eb1bb37b47f8272ce92d06d9538"
|
|
|
3133
3555
|
|
|
3134
3556
|
[[package]]
|
|
3135
3557
|
name = "windows_x86_64_msvc"
|
|
3136
|
-
version = "0.52.
|
|
3558
|
+
version = "0.52.6"
|
|
3137
3559
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3138
|
-
checksum = "
|
|
3560
|
+
checksum = "589f6da84c646204747d1270a2a5661ea66ed1cced2631d546fdfb155959f9ec"
|
|
3139
3561
|
|
|
3140
3562
|
[[package]]
|
|
3141
3563
|
name = "winnow"
|
|
3142
|
-
version = "0.6.
|
|
3564
|
+
version = "0.6.18"
|
|
3143
3565
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3144
|
-
checksum = "
|
|
3566
|
+
checksum = "68a9bda4691f099d435ad181000724da8e5899daa10713c2d432552b9ccd3a6f"
|
|
3145
3567
|
dependencies = [
|
|
3146
3568
|
"memchr",
|
|
3147
3569
|
]
|
|
@@ -3156,21 +3578,11 @@ dependencies = [
|
|
|
3156
3578
|
"windows-sys 0.48.0",
|
|
3157
3579
|
]
|
|
3158
3580
|
|
|
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
|
-
|
|
3169
3581
|
[[package]]
|
|
3170
3582
|
name = "xxhash-rust"
|
|
3171
|
-
version = "0.8.
|
|
3583
|
+
version = "0.8.12"
|
|
3172
3584
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3173
|
-
checksum = "
|
|
3585
|
+
checksum = "6a5cbf750400958819fb6178eaa83bee5cd9c29a26a40cc241df8c70fdd46984"
|
|
3174
3586
|
|
|
3175
3587
|
[[package]]
|
|
3176
3588
|
name = "yaml-rust"
|
|
@@ -3187,35 +3599,56 @@ version = "0.5.1"
|
|
|
3187
3599
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3188
3600
|
checksum = "09041cd90cf85f7f8b2df60c646f853b7f535ce68f85244eb6731cf89fa498ec"
|
|
3189
3601
|
|
|
3602
|
+
[[package]]
|
|
3603
|
+
name = "zerocopy"
|
|
3604
|
+
version = "0.7.35"
|
|
3605
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3606
|
+
checksum = "1b9b4fd18abc82b8136838da5d50bae7bdea537c574d8dc1a34ed098d6c166f0"
|
|
3607
|
+
dependencies = [
|
|
3608
|
+
"byteorder",
|
|
3609
|
+
"zerocopy-derive",
|
|
3610
|
+
]
|
|
3611
|
+
|
|
3612
|
+
[[package]]
|
|
3613
|
+
name = "zerocopy-derive"
|
|
3614
|
+
version = "0.7.35"
|
|
3615
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3616
|
+
checksum = "fa4f8080344d4671fb4e831a13ad1e68092748387dfc4f55e356242fae12ce3e"
|
|
3617
|
+
dependencies = [
|
|
3618
|
+
"proc-macro2",
|
|
3619
|
+
"quote",
|
|
3620
|
+
"syn",
|
|
3621
|
+
]
|
|
3622
|
+
|
|
3190
3623
|
[[package]]
|
|
3191
3624
|
name = "zeroize"
|
|
3192
|
-
version = "1.
|
|
3625
|
+
version = "1.8.1"
|
|
3193
3626
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3194
|
-
checksum = "
|
|
3627
|
+
checksum = "ced3678a2879b30306d323f4542626697a464a97c0a07c9aebf7ebca65cd4dde"
|
|
3195
3628
|
|
|
3196
3629
|
[[package]]
|
|
3197
3630
|
name = "zstd"
|
|
3198
|
-
version = "0.13.
|
|
3631
|
+
version = "0.13.2"
|
|
3199
3632
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3200
|
-
checksum = "
|
|
3633
|
+
checksum = "fcf2b778a664581e31e389454a7072dab1647606d44f7feea22cd5abb9c9f3f9"
|
|
3201
3634
|
dependencies = [
|
|
3202
3635
|
"zstd-safe",
|
|
3203
3636
|
]
|
|
3204
3637
|
|
|
3205
3638
|
[[package]]
|
|
3206
3639
|
name = "zstd-safe"
|
|
3207
|
-
version = "7.1
|
|
3640
|
+
version = "7.2.1"
|
|
3208
3641
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3209
|
-
checksum = "
|
|
3642
|
+
checksum = "54a3ab4db68cea366acc5c897c7b4d4d1b8994a9cd6e6f841f8964566a419059"
|
|
3210
3643
|
dependencies = [
|
|
3211
3644
|
"zstd-sys",
|
|
3212
3645
|
]
|
|
3213
3646
|
|
|
3214
3647
|
[[package]]
|
|
3215
3648
|
name = "zstd-sys"
|
|
3216
|
-
version = "2.0.
|
|
3649
|
+
version = "2.0.13+zstd.1.5.6"
|
|
3217
3650
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3218
|
-
checksum = "
|
|
3651
|
+
checksum = "38ff0f21cfee8f97d94cef41359e0c89aa6113028ab0291aa8ca0038995a95aa"
|
|
3219
3652
|
dependencies = [
|
|
3220
3653
|
"cc",
|
|
3221
3654
|
"pkg-config",
|