pake-cli 2.3.5 → 2.3.7
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.
- package/LICENSE +1 -1
- package/README.md +81 -55
- package/dist/cli.js +17 -26
- package/package.json +13 -13
- package/src-tauri/Cargo.lock +1344 -721
- package/src-tauri/Cargo.toml +2 -1
- package/src-tauri/icons/devv.icns +0 -0
- package/src-tauri/icons/juchats.icns +0 -0
- package/src-tauri/info.plist +11 -6
- package/src-tauri/pake.json +0 -5
- package/src-tauri/src/app/config.rs +0 -6
- package/src-tauri/src/app/menu.rs +10 -94
- package/src-tauri/src/inject/component.js +0 -128
- package/src-tauri/src/inject/event.js +7 -4
- package/src-tauri/src/inject/style.js +14 -4
- package/src-tauri/src/main.rs +12 -21
- package/src-tauri/tauri.conf.json +1 -1
package/src-tauri/Cargo.lock
CHANGED
|
@@ -4,9 +4,9 @@ version = 3
|
|
|
4
4
|
|
|
5
5
|
[[package]]
|
|
6
6
|
name = "addr2line"
|
|
7
|
-
version = "0.
|
|
7
|
+
version = "0.21.0"
|
|
8
8
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
9
|
-
checksum = "
|
|
9
|
+
checksum = "8a30b2e23b9e17a9f90641c7ab1549cd9b44f296d3ccbf309d2863cfe398a0cb"
|
|
10
10
|
dependencies = [
|
|
11
11
|
"gimli",
|
|
12
12
|
]
|
|
@@ -19,9 +19,9 @@ checksum = "f26201604c87b1e01bd3d98f8d5d9a8fcbb815e8cedb41ffccbeb4bf593a35fe"
|
|
|
19
19
|
|
|
20
20
|
[[package]]
|
|
21
21
|
name = "aho-corasick"
|
|
22
|
-
version = "1.
|
|
22
|
+
version = "1.1.3"
|
|
23
23
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
24
|
-
checksum = "
|
|
24
|
+
checksum = "8e60d3430d3a69478ad0993f19238d2df97c507009a52b3c10addcd7f6bcb916"
|
|
25
25
|
dependencies = [
|
|
26
26
|
"memchr",
|
|
27
27
|
]
|
|
@@ -58,9 +58,9 @@ dependencies = [
|
|
|
58
58
|
|
|
59
59
|
[[package]]
|
|
60
60
|
name = "anyhow"
|
|
61
|
-
version = "1.0.
|
|
61
|
+
version = "1.0.82"
|
|
62
62
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
63
|
-
checksum = "
|
|
63
|
+
checksum = "f538837af36e6f6a9be0faa67f9a314f8119e4e4b5867c6ab40ed60360142519"
|
|
64
64
|
|
|
65
65
|
[[package]]
|
|
66
66
|
name = "app"
|
|
@@ -71,37 +71,61 @@ dependencies = [
|
|
|
71
71
|
"serde_json",
|
|
72
72
|
"tauri",
|
|
73
73
|
"tauri-build",
|
|
74
|
+
"tauri-plugin-oauth",
|
|
74
75
|
"tauri-plugin-window-state",
|
|
75
76
|
]
|
|
76
77
|
|
|
78
|
+
[[package]]
|
|
79
|
+
name = "arboard"
|
|
80
|
+
version = "3.3.2"
|
|
81
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
82
|
+
checksum = "a2041f1943049c7978768d84e6d0fd95de98b76d6c4727b09e78ec253d29fa58"
|
|
83
|
+
dependencies = [
|
|
84
|
+
"clipboard-win",
|
|
85
|
+
"core-graphics 0.23.2",
|
|
86
|
+
"image",
|
|
87
|
+
"log",
|
|
88
|
+
"objc",
|
|
89
|
+
"objc-foundation",
|
|
90
|
+
"objc_id",
|
|
91
|
+
"parking_lot",
|
|
92
|
+
"thiserror",
|
|
93
|
+
"windows-sys 0.48.0",
|
|
94
|
+
"wl-clipboard-rs",
|
|
95
|
+
"x11rb",
|
|
96
|
+
]
|
|
97
|
+
|
|
77
98
|
[[package]]
|
|
78
99
|
name = "async-broadcast"
|
|
79
|
-
version = "0.
|
|
100
|
+
version = "0.7.0"
|
|
80
101
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
81
|
-
checksum = "
|
|
102
|
+
checksum = "258b52a1aa741b9f09783b2d86cf0aeeb617bbf847f6933340a39644227acbdb"
|
|
82
103
|
dependencies = [
|
|
83
|
-
"event-listener",
|
|
104
|
+
"event-listener 5.3.0",
|
|
105
|
+
"event-listener-strategy 0.5.2",
|
|
84
106
|
"futures-core",
|
|
107
|
+
"pin-project-lite",
|
|
85
108
|
]
|
|
86
109
|
|
|
87
110
|
[[package]]
|
|
88
111
|
name = "async-channel"
|
|
89
|
-
version = "
|
|
112
|
+
version = "2.2.1"
|
|
90
113
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
91
|
-
checksum = "
|
|
114
|
+
checksum = "136d4d23bcc79e27423727b36823d86233aad06dfea531837b038394d11e9928"
|
|
92
115
|
dependencies = [
|
|
93
116
|
"concurrent-queue",
|
|
94
|
-
"event-listener",
|
|
117
|
+
"event-listener 5.3.0",
|
|
118
|
+
"event-listener-strategy 0.5.2",
|
|
95
119
|
"futures-core",
|
|
120
|
+
"pin-project-lite",
|
|
96
121
|
]
|
|
97
122
|
|
|
98
123
|
[[package]]
|
|
99
124
|
name = "async-executor"
|
|
100
|
-
version = "1.
|
|
125
|
+
version = "1.11.0"
|
|
101
126
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
102
|
-
checksum = "
|
|
127
|
+
checksum = "b10202063978b3351199d68f8b22c4e47e4b1b822f8d43fd862d5ea8c006b29a"
|
|
103
128
|
dependencies = [
|
|
104
|
-
"async-lock",
|
|
105
129
|
"async-task",
|
|
106
130
|
"concurrent-queue",
|
|
107
131
|
"fastrand",
|
|
@@ -111,89 +135,109 @@ dependencies = [
|
|
|
111
135
|
|
|
112
136
|
[[package]]
|
|
113
137
|
name = "async-fs"
|
|
114
|
-
version = "1.
|
|
138
|
+
version = "2.1.2"
|
|
115
139
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
116
|
-
checksum = "
|
|
140
|
+
checksum = "ebcd09b382f40fcd159c2d695175b2ae620ffa5f3bd6f664131efff4e8b9e04a"
|
|
117
141
|
dependencies = [
|
|
118
142
|
"async-lock",
|
|
119
|
-
"autocfg",
|
|
120
143
|
"blocking",
|
|
121
144
|
"futures-lite",
|
|
122
145
|
]
|
|
123
146
|
|
|
124
147
|
[[package]]
|
|
125
148
|
name = "async-io"
|
|
126
|
-
version = "
|
|
149
|
+
version = "2.3.2"
|
|
127
150
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
128
|
-
checksum = "
|
|
151
|
+
checksum = "dcccb0f599cfa2f8ace422d3555572f47424da5648a4382a9dd0310ff8210884"
|
|
129
152
|
dependencies = [
|
|
130
153
|
"async-lock",
|
|
131
|
-
"autocfg",
|
|
132
154
|
"cfg-if",
|
|
133
155
|
"concurrent-queue",
|
|
156
|
+
"futures-io",
|
|
134
157
|
"futures-lite",
|
|
135
|
-
"log",
|
|
136
158
|
"parking",
|
|
137
159
|
"polling",
|
|
138
160
|
"rustix",
|
|
139
161
|
"slab",
|
|
140
|
-
"
|
|
141
|
-
"
|
|
162
|
+
"tracing",
|
|
163
|
+
"windows-sys 0.52.0",
|
|
142
164
|
]
|
|
143
165
|
|
|
144
166
|
[[package]]
|
|
145
167
|
name = "async-lock"
|
|
146
|
-
version = "
|
|
168
|
+
version = "3.3.0"
|
|
147
169
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
148
|
-
checksum = "
|
|
170
|
+
checksum = "d034b430882f8381900d3fe6f0aaa3ad94f2cb4ac519b429692a1bc2dda4ae7b"
|
|
149
171
|
dependencies = [
|
|
150
|
-
"event-listener",
|
|
172
|
+
"event-listener 4.0.3",
|
|
173
|
+
"event-listener-strategy 0.4.0",
|
|
174
|
+
"pin-project-lite",
|
|
151
175
|
]
|
|
152
176
|
|
|
153
177
|
[[package]]
|
|
154
178
|
name = "async-process"
|
|
155
|
-
version = "
|
|
179
|
+
version = "2.2.2"
|
|
156
180
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
157
|
-
checksum = "
|
|
181
|
+
checksum = "a53fc6301894e04a92cb2584fedde80cb25ba8e02d9dc39d4a87d036e22f397d"
|
|
158
182
|
dependencies = [
|
|
183
|
+
"async-channel",
|
|
159
184
|
"async-io",
|
|
160
185
|
"async-lock",
|
|
161
|
-
"
|
|
186
|
+
"async-signal",
|
|
187
|
+
"async-task",
|
|
162
188
|
"blocking",
|
|
163
189
|
"cfg-if",
|
|
164
|
-
"event-listener",
|
|
190
|
+
"event-listener 5.3.0",
|
|
165
191
|
"futures-lite",
|
|
166
192
|
"rustix",
|
|
167
|
-
"
|
|
168
|
-
"windows-sys 0.
|
|
193
|
+
"tracing",
|
|
194
|
+
"windows-sys 0.52.0",
|
|
169
195
|
]
|
|
170
196
|
|
|
171
197
|
[[package]]
|
|
172
198
|
name = "async-recursion"
|
|
173
|
-
version = "1.
|
|
199
|
+
version = "1.1.1"
|
|
174
200
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
175
|
-
checksum = "
|
|
201
|
+
checksum = "3b43422f69d8ff38f95f1b2bb76517c91589a924d1559a0e935d7c8ce0274c11"
|
|
176
202
|
dependencies = [
|
|
177
203
|
"proc-macro2",
|
|
178
204
|
"quote",
|
|
179
|
-
"syn 2.0.
|
|
205
|
+
"syn 2.0.60",
|
|
206
|
+
]
|
|
207
|
+
|
|
208
|
+
[[package]]
|
|
209
|
+
name = "async-signal"
|
|
210
|
+
version = "0.2.6"
|
|
211
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
212
|
+
checksum = "afe66191c335039c7bb78f99dc7520b0cbb166b3a1cb33a03f53d8a1c6f2afda"
|
|
213
|
+
dependencies = [
|
|
214
|
+
"async-io",
|
|
215
|
+
"async-lock",
|
|
216
|
+
"atomic-waker",
|
|
217
|
+
"cfg-if",
|
|
218
|
+
"futures-core",
|
|
219
|
+
"futures-io",
|
|
220
|
+
"rustix",
|
|
221
|
+
"signal-hook-registry",
|
|
222
|
+
"slab",
|
|
223
|
+
"windows-sys 0.52.0",
|
|
180
224
|
]
|
|
181
225
|
|
|
182
226
|
[[package]]
|
|
183
227
|
name = "async-task"
|
|
184
|
-
version = "4.
|
|
228
|
+
version = "4.7.1"
|
|
185
229
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
186
|
-
checksum = "
|
|
230
|
+
checksum = "8b75356056920673b02621b35afd0f7dda9306d03c79a30f5c56c44cf256e3de"
|
|
187
231
|
|
|
188
232
|
[[package]]
|
|
189
233
|
name = "async-trait"
|
|
190
|
-
version = "0.1.
|
|
234
|
+
version = "0.1.80"
|
|
191
235
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
192
|
-
checksum = "
|
|
236
|
+
checksum = "c6fa2087f2753a7da8cc1c0dbfcf89579dd57458e36769de5ac750b4671737ca"
|
|
193
237
|
dependencies = [
|
|
194
238
|
"proc-macro2",
|
|
195
239
|
"quote",
|
|
196
|
-
"syn 2.0.
|
|
240
|
+
"syn 2.0.60",
|
|
197
241
|
]
|
|
198
242
|
|
|
199
243
|
[[package]]
|
|
@@ -217,26 +261,26 @@ dependencies = [
|
|
|
217
261
|
"glib-sys",
|
|
218
262
|
"gobject-sys",
|
|
219
263
|
"libc",
|
|
220
|
-
"system-deps 6.
|
|
264
|
+
"system-deps 6.2.2",
|
|
221
265
|
]
|
|
222
266
|
|
|
223
267
|
[[package]]
|
|
224
268
|
name = "atomic-waker"
|
|
225
|
-
version = "1.1.
|
|
269
|
+
version = "1.1.2"
|
|
226
270
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
227
|
-
checksum = "
|
|
271
|
+
checksum = "1505bd5d3d116872e7271a6d4e16d81d0c8570876c8de68093a09ac269d8aac0"
|
|
228
272
|
|
|
229
273
|
[[package]]
|
|
230
274
|
name = "autocfg"
|
|
231
|
-
version = "1.
|
|
275
|
+
version = "1.2.0"
|
|
232
276
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
233
|
-
checksum = "
|
|
277
|
+
checksum = "f1fdabc7756949593fe60f30ec81974b613357de856987752631dea1e3394c80"
|
|
234
278
|
|
|
235
279
|
[[package]]
|
|
236
280
|
name = "backtrace"
|
|
237
|
-
version = "0.3.
|
|
281
|
+
version = "0.3.71"
|
|
238
282
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
239
|
-
checksum = "
|
|
283
|
+
checksum = "26b05800d2e817c8b3b4b54abd461726265fa9789ae34330622f2db9ee696f9d"
|
|
240
284
|
dependencies = [
|
|
241
285
|
"addr2line",
|
|
242
286
|
"cc",
|
|
@@ -255,9 +299,15 @@ checksum = "9e1b586273c5702936fe7b7d6896644d8be71e6314cfe09d3167c95f712589e8"
|
|
|
255
299
|
|
|
256
300
|
[[package]]
|
|
257
301
|
name = "base64"
|
|
258
|
-
version = "0.21.
|
|
302
|
+
version = "0.21.7"
|
|
303
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
304
|
+
checksum = "9d297deb1925b89f2ccc13d7635fa0714f12c87adce1c75356b39ca9b7178567"
|
|
305
|
+
|
|
306
|
+
[[package]]
|
|
307
|
+
name = "base64"
|
|
308
|
+
version = "0.22.0"
|
|
259
309
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
260
|
-
checksum = "
|
|
310
|
+
checksum = "9475866fec1451be56a3c2400fd081ff546538961565ccb5b7142cbd22bc7a51"
|
|
261
311
|
|
|
262
312
|
[[package]]
|
|
263
313
|
name = "bincode"
|
|
@@ -282,9 +332,9 @@ checksum = "bef38d45163c2f1dde094a7dfd33ccf595c92905c8f8f4fdc18d06fb1037718a"
|
|
|
282
332
|
|
|
283
333
|
[[package]]
|
|
284
334
|
name = "bitflags"
|
|
285
|
-
version = "2.
|
|
335
|
+
version = "2.5.0"
|
|
286
336
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
287
|
-
checksum = "
|
|
337
|
+
checksum = "cf4b9d6a944f767f8e5e0db018570623c85f3d925ac718db4e06d0187adb21c1"
|
|
288
338
|
|
|
289
339
|
[[package]]
|
|
290
340
|
name = "block"
|
|
@@ -303,24 +353,23 @@ dependencies = [
|
|
|
303
353
|
|
|
304
354
|
[[package]]
|
|
305
355
|
name = "blocking"
|
|
306
|
-
version = "1.
|
|
356
|
+
version = "1.6.0"
|
|
307
357
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
308
|
-
checksum = "
|
|
358
|
+
checksum = "495f7104e962b7356f0aeb34247aca1fe7d2e783b346582db7f2904cb5717e88"
|
|
309
359
|
dependencies = [
|
|
310
360
|
"async-channel",
|
|
311
361
|
"async-lock",
|
|
312
362
|
"async-task",
|
|
313
|
-
"
|
|
314
|
-
"fastrand",
|
|
363
|
+
"futures-io",
|
|
315
364
|
"futures-lite",
|
|
316
|
-
"
|
|
365
|
+
"piper",
|
|
317
366
|
]
|
|
318
367
|
|
|
319
368
|
[[package]]
|
|
320
369
|
name = "brotli"
|
|
321
|
-
version = "3.
|
|
370
|
+
version = "3.5.0"
|
|
322
371
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
323
|
-
checksum = "
|
|
372
|
+
checksum = "d640d25bc63c50fb1f0b545ffd80207d2e10a4c965530809b40ba3386825c391"
|
|
324
373
|
dependencies = [
|
|
325
374
|
"alloc-no-stdlib",
|
|
326
375
|
"alloc-stdlib",
|
|
@@ -329,9 +378,9 @@ dependencies = [
|
|
|
329
378
|
|
|
330
379
|
[[package]]
|
|
331
380
|
name = "brotli-decompressor"
|
|
332
|
-
version = "2.
|
|
381
|
+
version = "2.5.1"
|
|
333
382
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
334
|
-
checksum = "
|
|
383
|
+
checksum = "4e2e4afe60d7dd600fdd3de8d0f08c2b7ec039712e3b6137ff98b7004e82de4f"
|
|
335
384
|
dependencies = [
|
|
336
385
|
"alloc-no-stdlib",
|
|
337
386
|
"alloc-stdlib",
|
|
@@ -339,9 +388,9 @@ dependencies = [
|
|
|
339
388
|
|
|
340
389
|
[[package]]
|
|
341
390
|
name = "bstr"
|
|
342
|
-
version = "1.
|
|
391
|
+
version = "1.9.1"
|
|
343
392
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
344
|
-
checksum = "
|
|
393
|
+
checksum = "05efc5cfd9110c8416e471df0e96702d58690178e206e61b7173706673c93706"
|
|
345
394
|
dependencies = [
|
|
346
395
|
"memchr",
|
|
347
396
|
"serde",
|
|
@@ -349,27 +398,27 @@ dependencies = [
|
|
|
349
398
|
|
|
350
399
|
[[package]]
|
|
351
400
|
name = "bumpalo"
|
|
352
|
-
version = "3.
|
|
401
|
+
version = "3.16.0"
|
|
353
402
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
354
|
-
checksum = "
|
|
403
|
+
checksum = "79296716171880943b8470b5f8d03aa55eb2e645a4874bdbb28adb49162e012c"
|
|
355
404
|
|
|
356
405
|
[[package]]
|
|
357
406
|
name = "bytemuck"
|
|
358
|
-
version = "1.
|
|
407
|
+
version = "1.15.0"
|
|
359
408
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
360
|
-
checksum = "
|
|
409
|
+
checksum = "5d6d68c57235a3a081186990eca2867354726650f42f7516ca50c28d6281fd15"
|
|
361
410
|
|
|
362
411
|
[[package]]
|
|
363
412
|
name = "byteorder"
|
|
364
|
-
version = "1.
|
|
413
|
+
version = "1.5.0"
|
|
365
414
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
366
|
-
checksum = "
|
|
415
|
+
checksum = "1fd0f2584146f6f2ef48085050886acf353beff7305ebd1ae69500e27c67f64b"
|
|
367
416
|
|
|
368
417
|
[[package]]
|
|
369
418
|
name = "bytes"
|
|
370
|
-
version = "1.
|
|
419
|
+
version = "1.6.0"
|
|
371
420
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
372
|
-
checksum = "
|
|
421
|
+
checksum = "514de17de45fdb8dc022b1a7975556c53c86f9f0aa5f534b98977b171857c2c9"
|
|
373
422
|
dependencies = [
|
|
374
423
|
"serde",
|
|
375
424
|
]
|
|
@@ -395,7 +444,7 @@ checksum = "3c55d429bef56ac9172d25fecb85dc8068307d17acd74b377866b7a1ef25d3c8"
|
|
|
395
444
|
dependencies = [
|
|
396
445
|
"glib-sys",
|
|
397
446
|
"libc",
|
|
398
|
-
"system-deps 6.
|
|
447
|
+
"system-deps 6.2.2",
|
|
399
448
|
]
|
|
400
449
|
|
|
401
450
|
[[package]]
|
|
@@ -421,14 +470,14 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
421
470
|
checksum = "599aa35200ffff8f04c1925aa1acc92fa2e08874379ef42e210a80e527e60838"
|
|
422
471
|
dependencies = [
|
|
423
472
|
"serde",
|
|
424
|
-
"toml 0.7.
|
|
473
|
+
"toml 0.7.8",
|
|
425
474
|
]
|
|
426
475
|
|
|
427
476
|
[[package]]
|
|
428
477
|
name = "cc"
|
|
429
|
-
version = "1.0.
|
|
478
|
+
version = "1.0.95"
|
|
430
479
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
431
|
-
checksum = "
|
|
480
|
+
checksum = "d32a725bc159af97c3e629873bb9f88fb8cf8a4867175f76dc987815ea07c83b"
|
|
432
481
|
|
|
433
482
|
[[package]]
|
|
434
483
|
name = "cesu8"
|
|
@@ -444,7 +493,7 @@ checksum = "d38f2da7a0a2c4ccf0065be06397cc26a81f4e528be095826eee9d4adbb8c60f"
|
|
|
444
493
|
dependencies = [
|
|
445
494
|
"byteorder",
|
|
446
495
|
"fnv",
|
|
447
|
-
"uuid 1.
|
|
496
|
+
"uuid 1.8.0",
|
|
448
497
|
]
|
|
449
498
|
|
|
450
499
|
[[package]]
|
|
@@ -458,9 +507,9 @@ dependencies = [
|
|
|
458
507
|
|
|
459
508
|
[[package]]
|
|
460
509
|
name = "cfg-expr"
|
|
461
|
-
version = "0.15.
|
|
510
|
+
version = "0.15.8"
|
|
462
511
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
463
|
-
checksum = "
|
|
512
|
+
checksum = "d067ad48b8650848b989a59a86c6c36a995d02d2bf778d45c3c5d57bc2718f02"
|
|
464
513
|
dependencies = [
|
|
465
514
|
"smallvec",
|
|
466
515
|
"target-lexicon",
|
|
@@ -472,17 +521,32 @@ version = "1.0.0"
|
|
|
472
521
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
473
522
|
checksum = "baf1de4339761588bc0619e3cbc0120ee582ebb74b53b4efbf79117bd2da40fd"
|
|
474
523
|
|
|
524
|
+
[[package]]
|
|
525
|
+
name = "cfg_aliases"
|
|
526
|
+
version = "0.1.1"
|
|
527
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
528
|
+
checksum = "fd16c4719339c4530435d38e511904438d07cce7950afa3718a84ac36c10e89e"
|
|
529
|
+
|
|
475
530
|
[[package]]
|
|
476
531
|
name = "chrono"
|
|
477
|
-
version = "0.4.
|
|
532
|
+
version = "0.4.38"
|
|
478
533
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
479
|
-
checksum = "
|
|
534
|
+
checksum = "a21f936df1771bf62b77f047b726c4625ff2e8aa607c01ec06e5a05bd8463401"
|
|
480
535
|
dependencies = [
|
|
481
536
|
"android-tzdata",
|
|
482
537
|
"iana-time-zone",
|
|
483
538
|
"num-traits",
|
|
484
539
|
"serde",
|
|
485
|
-
"
|
|
540
|
+
"windows-targets 0.52.5",
|
|
541
|
+
]
|
|
542
|
+
|
|
543
|
+
[[package]]
|
|
544
|
+
name = "clipboard-win"
|
|
545
|
+
version = "5.3.1"
|
|
546
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
547
|
+
checksum = "79f4473f5144e20d9aceaf2972478f06ddf687831eafeeb434fbaf0acc4144ad"
|
|
548
|
+
dependencies = [
|
|
549
|
+
"error-code",
|
|
486
550
|
]
|
|
487
551
|
|
|
488
552
|
[[package]]
|
|
@@ -495,23 +559,22 @@ dependencies = [
|
|
|
495
559
|
"block",
|
|
496
560
|
"cocoa-foundation",
|
|
497
561
|
"core-foundation",
|
|
498
|
-
"core-graphics",
|
|
499
|
-
"foreign-types",
|
|
562
|
+
"core-graphics 0.22.3",
|
|
563
|
+
"foreign-types 0.3.2",
|
|
500
564
|
"libc",
|
|
501
565
|
"objc",
|
|
502
566
|
]
|
|
503
567
|
|
|
504
568
|
[[package]]
|
|
505
569
|
name = "cocoa-foundation"
|
|
506
|
-
version = "0.1.
|
|
570
|
+
version = "0.1.2"
|
|
507
571
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
508
|
-
checksum = "
|
|
572
|
+
checksum = "8c6234cbb2e4c785b456c0644748b1ac416dd045799740356f8363dfe00c93f7"
|
|
509
573
|
dependencies = [
|
|
510
574
|
"bitflags 1.3.2",
|
|
511
575
|
"block",
|
|
512
576
|
"core-foundation",
|
|
513
577
|
"core-graphics-types",
|
|
514
|
-
"foreign-types",
|
|
515
578
|
"libc",
|
|
516
579
|
"objc",
|
|
517
580
|
]
|
|
@@ -524,9 +587,9 @@ checksum = "3d7b894f5411737b7867f4827955924d7c254fc9f4d91a6aad6b097804b1018b"
|
|
|
524
587
|
|
|
525
588
|
[[package]]
|
|
526
589
|
name = "combine"
|
|
527
|
-
version = "4.6.
|
|
590
|
+
version = "4.6.7"
|
|
528
591
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
529
|
-
checksum = "
|
|
592
|
+
checksum = "ba5a308b75df32fe02788e748662718f03fde005016435c444eea572398219fd"
|
|
530
593
|
dependencies = [
|
|
531
594
|
"bytes",
|
|
532
595
|
"memchr",
|
|
@@ -534,9 +597,9 @@ dependencies = [
|
|
|
534
597
|
|
|
535
598
|
[[package]]
|
|
536
599
|
name = "concurrent-queue"
|
|
537
|
-
version = "2.
|
|
600
|
+
version = "2.5.0"
|
|
538
601
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
539
|
-
checksum = "
|
|
602
|
+
checksum = "4ca0197aee26d1ae37445ee532fefce43251d24cc7c166799f4d46817f1d3973"
|
|
540
603
|
dependencies = [
|
|
541
604
|
"crossbeam-utils",
|
|
542
605
|
]
|
|
@@ -549,9 +612,9 @@ checksum = "6245d59a3e82a7fc217c5828a6692dbc6dfb63a0c8c90495621f7b9d79704a0e"
|
|
|
549
612
|
|
|
550
613
|
[[package]]
|
|
551
614
|
name = "core-foundation"
|
|
552
|
-
version = "0.9.
|
|
615
|
+
version = "0.9.4"
|
|
553
616
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
554
|
-
checksum = "
|
|
617
|
+
checksum = "91e195e091a93c46f7102ec7818a2aa394e1e1771c3ab4825963fa03e45afb8f"
|
|
555
618
|
dependencies = [
|
|
556
619
|
"core-foundation-sys",
|
|
557
620
|
"libc",
|
|
@@ -559,9 +622,9 @@ dependencies = [
|
|
|
559
622
|
|
|
560
623
|
[[package]]
|
|
561
624
|
name = "core-foundation-sys"
|
|
562
|
-
version = "0.8.
|
|
625
|
+
version = "0.8.6"
|
|
563
626
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
564
|
-
checksum = "
|
|
627
|
+
checksum = "06ea2b9bc92be3c2baa9334a323ebca2d6f074ff852cd1d7b11064035cd3868f"
|
|
565
628
|
|
|
566
629
|
[[package]]
|
|
567
630
|
name = "core-graphics"
|
|
@@ -572,15 +635,28 @@ dependencies = [
|
|
|
572
635
|
"bitflags 1.3.2",
|
|
573
636
|
"core-foundation",
|
|
574
637
|
"core-graphics-types",
|
|
575
|
-
"foreign-types",
|
|
638
|
+
"foreign-types 0.3.2",
|
|
639
|
+
"libc",
|
|
640
|
+
]
|
|
641
|
+
|
|
642
|
+
[[package]]
|
|
643
|
+
name = "core-graphics"
|
|
644
|
+
version = "0.23.2"
|
|
645
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
646
|
+
checksum = "c07782be35f9e1140080c6b96f0d44b739e2278479f64e02fdab4e32dfd8b081"
|
|
647
|
+
dependencies = [
|
|
648
|
+
"bitflags 1.3.2",
|
|
649
|
+
"core-foundation",
|
|
650
|
+
"core-graphics-types",
|
|
651
|
+
"foreign-types 0.5.0",
|
|
576
652
|
"libc",
|
|
577
653
|
]
|
|
578
654
|
|
|
579
655
|
[[package]]
|
|
580
656
|
name = "core-graphics-types"
|
|
581
|
-
version = "0.1.
|
|
657
|
+
version = "0.1.3"
|
|
582
658
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
583
|
-
checksum = "
|
|
659
|
+
checksum = "45390e6114f68f718cc7a830514a96f903cccd70d02a8f6d9f643ac4ba45afaf"
|
|
584
660
|
dependencies = [
|
|
585
661
|
"bitflags 1.3.2",
|
|
586
662
|
"core-foundation",
|
|
@@ -589,41 +665,56 @@ dependencies = [
|
|
|
589
665
|
|
|
590
666
|
[[package]]
|
|
591
667
|
name = "cpufeatures"
|
|
592
|
-
version = "0.2.
|
|
668
|
+
version = "0.2.12"
|
|
593
669
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
594
|
-
checksum = "
|
|
670
|
+
checksum = "53fe5e26ff1b7aef8bca9c6080520cfb8d9333c7568e1829cef191a9723e5504"
|
|
595
671
|
dependencies = [
|
|
596
672
|
"libc",
|
|
597
673
|
]
|
|
598
674
|
|
|
599
675
|
[[package]]
|
|
600
676
|
name = "crc32fast"
|
|
601
|
-
version = "1.
|
|
677
|
+
version = "1.4.0"
|
|
602
678
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
603
|
-
checksum = "
|
|
679
|
+
checksum = "b3855a8a784b474f333699ef2bbca9db2c4a1f6d9088a90a2d25b1eb53111eaa"
|
|
604
680
|
dependencies = [
|
|
605
681
|
"cfg-if",
|
|
606
682
|
]
|
|
607
683
|
|
|
608
684
|
[[package]]
|
|
609
685
|
name = "crossbeam-channel"
|
|
610
|
-
version = "0.5.
|
|
686
|
+
version = "0.5.12"
|
|
611
687
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
612
|
-
checksum = "
|
|
688
|
+
checksum = "ab3db02a9c5b5121e1e42fbdb1aeb65f5e02624cc58c43f2884c6ccac0b82f95"
|
|
613
689
|
dependencies = [
|
|
614
|
-
"cfg-if",
|
|
615
690
|
"crossbeam-utils",
|
|
616
691
|
]
|
|
617
692
|
|
|
618
693
|
[[package]]
|
|
619
|
-
name = "crossbeam-
|
|
620
|
-
version = "0.8.
|
|
694
|
+
name = "crossbeam-deque"
|
|
695
|
+
version = "0.8.5"
|
|
621
696
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
622
|
-
checksum = "
|
|
697
|
+
checksum = "613f8cc01fe9cf1a3eb3d7f488fd2fa8388403e97039e2f73692932e291a770d"
|
|
623
698
|
dependencies = [
|
|
624
|
-
"
|
|
699
|
+
"crossbeam-epoch",
|
|
700
|
+
"crossbeam-utils",
|
|
701
|
+
]
|
|
702
|
+
|
|
703
|
+
[[package]]
|
|
704
|
+
name = "crossbeam-epoch"
|
|
705
|
+
version = "0.9.18"
|
|
706
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
707
|
+
checksum = "5b82ac4a3c2ca9c3460964f020e1402edd5753411d7737aa39c3714ad1b5420e"
|
|
708
|
+
dependencies = [
|
|
709
|
+
"crossbeam-utils",
|
|
625
710
|
]
|
|
626
711
|
|
|
712
|
+
[[package]]
|
|
713
|
+
name = "crossbeam-utils"
|
|
714
|
+
version = "0.8.19"
|
|
715
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
716
|
+
checksum = "248e3bacc7dc6baa3b21e405ee045c3047101a49145e7e9eca583ab4c2ca5345"
|
|
717
|
+
|
|
627
718
|
[[package]]
|
|
628
719
|
name = "crypto-common"
|
|
629
720
|
version = "0.1.6"
|
|
@@ -658,24 +749,24 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
658
749
|
checksum = "13b588ba4ac1a99f7f2964d24b3d896ddc6bf847ee3855dbd4366f058cfcd331"
|
|
659
750
|
dependencies = [
|
|
660
751
|
"quote",
|
|
661
|
-
"syn 2.0.
|
|
752
|
+
"syn 2.0.60",
|
|
662
753
|
]
|
|
663
754
|
|
|
664
755
|
[[package]]
|
|
665
756
|
name = "ctor"
|
|
666
|
-
version = "0.
|
|
757
|
+
version = "0.2.8"
|
|
667
758
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
668
|
-
checksum = "
|
|
759
|
+
checksum = "edb49164822f3ee45b17acd4a208cfc1251410cf0cad9a833234c9890774dd9f"
|
|
669
760
|
dependencies = [
|
|
670
761
|
"quote",
|
|
671
|
-
"syn
|
|
762
|
+
"syn 2.0.60",
|
|
672
763
|
]
|
|
673
764
|
|
|
674
765
|
[[package]]
|
|
675
766
|
name = "darling"
|
|
676
|
-
version = "0.20.
|
|
767
|
+
version = "0.20.8"
|
|
677
768
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
678
|
-
checksum = "
|
|
769
|
+
checksum = "54e36fcd13ed84ffdfda6f5be89b31287cbb80c439841fe69e04841435464391"
|
|
679
770
|
dependencies = [
|
|
680
771
|
"darling_core",
|
|
681
772
|
"darling_macro",
|
|
@@ -683,27 +774,37 @@ dependencies = [
|
|
|
683
774
|
|
|
684
775
|
[[package]]
|
|
685
776
|
name = "darling_core"
|
|
686
|
-
version = "0.20.
|
|
777
|
+
version = "0.20.8"
|
|
687
778
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
688
|
-
checksum = "
|
|
779
|
+
checksum = "9c2cf1c23a687a1feeb728783b993c4e1ad83d99f351801977dd809b48d0a70f"
|
|
689
780
|
dependencies = [
|
|
690
781
|
"fnv",
|
|
691
782
|
"ident_case",
|
|
692
783
|
"proc-macro2",
|
|
693
784
|
"quote",
|
|
694
785
|
"strsim",
|
|
695
|
-
"syn 2.0.
|
|
786
|
+
"syn 2.0.60",
|
|
696
787
|
]
|
|
697
788
|
|
|
698
789
|
[[package]]
|
|
699
790
|
name = "darling_macro"
|
|
700
|
-
version = "0.20.
|
|
791
|
+
version = "0.20.8"
|
|
701
792
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
702
|
-
checksum = "
|
|
793
|
+
checksum = "a668eda54683121533a393014d8692171709ff57a7d61f187b6e782719f8933f"
|
|
703
794
|
dependencies = [
|
|
704
795
|
"darling_core",
|
|
705
796
|
"quote",
|
|
706
|
-
"syn 2.0.
|
|
797
|
+
"syn 2.0.60",
|
|
798
|
+
]
|
|
799
|
+
|
|
800
|
+
[[package]]
|
|
801
|
+
name = "deranged"
|
|
802
|
+
version = "0.3.11"
|
|
803
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
804
|
+
checksum = "b42b6fa04a440b495c8b04d0e71b707c585f83cb9cb28cf8cd0d976c315e31b4"
|
|
805
|
+
dependencies = [
|
|
806
|
+
"powerfmt",
|
|
807
|
+
"serde",
|
|
707
808
|
]
|
|
708
809
|
|
|
709
810
|
[[package]]
|
|
@@ -717,6 +818,17 @@ dependencies = [
|
|
|
717
818
|
"syn 1.0.109",
|
|
718
819
|
]
|
|
719
820
|
|
|
821
|
+
[[package]]
|
|
822
|
+
name = "derive-new"
|
|
823
|
+
version = "0.6.0"
|
|
824
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
825
|
+
checksum = "d150dea618e920167e5973d70ae6ece4385b7164e0d799fe7c122dd0a5d912ad"
|
|
826
|
+
dependencies = [
|
|
827
|
+
"proc-macro2",
|
|
828
|
+
"quote",
|
|
829
|
+
"syn 2.0.60",
|
|
830
|
+
]
|
|
831
|
+
|
|
720
832
|
[[package]]
|
|
721
833
|
name = "derive_more"
|
|
722
834
|
version = "0.99.17"
|
|
@@ -767,6 +879,21 @@ version = "0.2.0"
|
|
|
767
879
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
768
880
|
checksum = "bd0c93bb4b0c6d9b77f4435b0ae98c24d17f1c45b2ff844c6151a07256ca923b"
|
|
769
881
|
|
|
882
|
+
[[package]]
|
|
883
|
+
name = "dlib"
|
|
884
|
+
version = "0.5.2"
|
|
885
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
886
|
+
checksum = "330c60081dcc4c72131f8eb70510f1ac07223e5d4163db481a04a0befcffa412"
|
|
887
|
+
dependencies = [
|
|
888
|
+
"libloading 0.8.3",
|
|
889
|
+
]
|
|
890
|
+
|
|
891
|
+
[[package]]
|
|
892
|
+
name = "downcast-rs"
|
|
893
|
+
version = "1.2.1"
|
|
894
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
895
|
+
checksum = "75b325c5dbd37f80359721ad39aca5a29fb04c89279657cffdda8736d0c0b9d2"
|
|
896
|
+
|
|
770
897
|
[[package]]
|
|
771
898
|
name = "dtoa"
|
|
772
899
|
version = "1.0.9"
|
|
@@ -790,15 +917,16 @@ checksum = "56ce8c6da7551ec6c462cbaf3bfbc75131ebbfa1c944aeaa9dab51ca1c5f0c3b"
|
|
|
790
917
|
|
|
791
918
|
[[package]]
|
|
792
919
|
name = "embed-resource"
|
|
793
|
-
version = "2.2
|
|
920
|
+
version = "2.4.2"
|
|
794
921
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
795
|
-
checksum = "
|
|
922
|
+
checksum = "c6985554d0688b687c5cb73898a34fbe3ad6c24c58c238a4d91d5e840670ee9d"
|
|
796
923
|
dependencies = [
|
|
797
924
|
"cc",
|
|
925
|
+
"memchr",
|
|
798
926
|
"rustc_version",
|
|
799
|
-
"toml 0.
|
|
927
|
+
"toml 0.8.12",
|
|
800
928
|
"vswhom",
|
|
801
|
-
"winreg 0.
|
|
929
|
+
"winreg 0.52.0",
|
|
802
930
|
]
|
|
803
931
|
|
|
804
932
|
[[package]]
|
|
@@ -809,18 +937,24 @@ checksum = "4ef6b89e5b37196644d8796de5268852ff179b44e96276cf4290264843743bb7"
|
|
|
809
937
|
|
|
810
938
|
[[package]]
|
|
811
939
|
name = "encoding_rs"
|
|
812
|
-
version = "0.8.
|
|
940
|
+
version = "0.8.34"
|
|
813
941
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
814
|
-
checksum = "
|
|
942
|
+
checksum = "b45de904aa0b010bce2ab45264d0631681847fa7b6f2eaa7dab7619943bc4f59"
|
|
815
943
|
dependencies = [
|
|
816
944
|
"cfg-if",
|
|
817
945
|
]
|
|
818
946
|
|
|
947
|
+
[[package]]
|
|
948
|
+
name = "endi"
|
|
949
|
+
version = "1.1.0"
|
|
950
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
951
|
+
checksum = "a3d8a32ae18130a3c84dd492d4215c3d913c3b07c6b63c2eb3eb7ff1101ab7bf"
|
|
952
|
+
|
|
819
953
|
[[package]]
|
|
820
954
|
name = "enumflags2"
|
|
821
|
-
version = "0.7.
|
|
955
|
+
version = "0.7.9"
|
|
822
956
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
823
|
-
checksum = "
|
|
957
|
+
checksum = "3278c9d5fb675e0a51dabcf4c0d355f692b064171535ba72361be1528a9d8e8d"
|
|
824
958
|
dependencies = [
|
|
825
959
|
"enumflags2_derive",
|
|
826
960
|
"serde",
|
|
@@ -828,13 +962,13 @@ dependencies = [
|
|
|
828
962
|
|
|
829
963
|
[[package]]
|
|
830
964
|
name = "enumflags2_derive"
|
|
831
|
-
version = "0.7.
|
|
965
|
+
version = "0.7.9"
|
|
832
966
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
833
|
-
checksum = "
|
|
967
|
+
checksum = "5c785274071b1b420972453b306eeca06acf4633829db4223b58a2a8c5953bc4"
|
|
834
968
|
dependencies = [
|
|
835
969
|
"proc-macro2",
|
|
836
970
|
"quote",
|
|
837
|
-
"syn 2.0.
|
|
971
|
+
"syn 2.0.60",
|
|
838
972
|
]
|
|
839
973
|
|
|
840
974
|
[[package]]
|
|
@@ -845,30 +979,61 @@ checksum = "5443807d6dff69373d433ab9ef5378ad8df50ca6298caf15de6e52e24aaf54d5"
|
|
|
845
979
|
|
|
846
980
|
[[package]]
|
|
847
981
|
name = "errno"
|
|
848
|
-
version = "0.3.
|
|
982
|
+
version = "0.3.8"
|
|
849
983
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
850
|
-
checksum = "
|
|
984
|
+
checksum = "a258e46cdc063eb8519c00b9fc845fc47bcfca4130e2f08e88665ceda8474245"
|
|
851
985
|
dependencies = [
|
|
852
|
-
"errno-dragonfly",
|
|
853
986
|
"libc",
|
|
854
|
-
"windows-sys 0.
|
|
987
|
+
"windows-sys 0.52.0",
|
|
855
988
|
]
|
|
856
989
|
|
|
857
990
|
[[package]]
|
|
858
|
-
name = "
|
|
859
|
-
version = "
|
|
991
|
+
name = "error-code"
|
|
992
|
+
version = "3.2.0"
|
|
860
993
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
861
|
-
checksum = "
|
|
994
|
+
checksum = "a0474425d51df81997e2f90a21591180b38eccf27292d755f3e30750225c175b"
|
|
995
|
+
|
|
996
|
+
[[package]]
|
|
997
|
+
name = "event-listener"
|
|
998
|
+
version = "4.0.3"
|
|
999
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1000
|
+
checksum = "67b215c49b2b248c855fb73579eb1f4f26c38ffdc12973e20e07b91d78d5646e"
|
|
862
1001
|
dependencies = [
|
|
863
|
-
"
|
|
864
|
-
"
|
|
1002
|
+
"concurrent-queue",
|
|
1003
|
+
"parking",
|
|
1004
|
+
"pin-project-lite",
|
|
865
1005
|
]
|
|
866
1006
|
|
|
867
1007
|
[[package]]
|
|
868
1008
|
name = "event-listener"
|
|
869
|
-
version = "
|
|
1009
|
+
version = "5.3.0"
|
|
1010
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1011
|
+
checksum = "6d9944b8ca13534cdfb2800775f8dd4902ff3fc75a50101466decadfdf322a24"
|
|
1012
|
+
dependencies = [
|
|
1013
|
+
"concurrent-queue",
|
|
1014
|
+
"parking",
|
|
1015
|
+
"pin-project-lite",
|
|
1016
|
+
]
|
|
1017
|
+
|
|
1018
|
+
[[package]]
|
|
1019
|
+
name = "event-listener-strategy"
|
|
1020
|
+
version = "0.4.0"
|
|
1021
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1022
|
+
checksum = "958e4d70b6d5e81971bebec42271ec641e7ff4e170a6fa605f2b8a8b65cb97d3"
|
|
1023
|
+
dependencies = [
|
|
1024
|
+
"event-listener 4.0.3",
|
|
1025
|
+
"pin-project-lite",
|
|
1026
|
+
]
|
|
1027
|
+
|
|
1028
|
+
[[package]]
|
|
1029
|
+
name = "event-listener-strategy"
|
|
1030
|
+
version = "0.5.2"
|
|
870
1031
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
871
|
-
checksum = "
|
|
1032
|
+
checksum = "0f214dc438f977e6d4e3500aaa277f5ad94ca83fbbd9b1a15713ce2344ccc5a1"
|
|
1033
|
+
dependencies = [
|
|
1034
|
+
"event-listener 5.3.0",
|
|
1035
|
+
"pin-project-lite",
|
|
1036
|
+
]
|
|
872
1037
|
|
|
873
1038
|
[[package]]
|
|
874
1039
|
name = "fallible-iterator"
|
|
@@ -878,18 +1043,15 @@ checksum = "4443176a9f2c162692bd3d352d745ef9413eec5782a80d8fd6f8a1ac692a07f7"
|
|
|
878
1043
|
|
|
879
1044
|
[[package]]
|
|
880
1045
|
name = "fastrand"
|
|
881
|
-
version = "1.
|
|
1046
|
+
version = "2.1.0"
|
|
882
1047
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
883
|
-
checksum = "
|
|
884
|
-
dependencies = [
|
|
885
|
-
"instant",
|
|
886
|
-
]
|
|
1048
|
+
checksum = "9fc0510504f03c51ada170672ac806f1f105a88aa97a5281117e1ddc3368e51a"
|
|
887
1049
|
|
|
888
1050
|
[[package]]
|
|
889
1051
|
name = "fdeflate"
|
|
890
|
-
version = "0.3.
|
|
1052
|
+
version = "0.3.4"
|
|
891
1053
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
892
|
-
checksum = "
|
|
1054
|
+
checksum = "4f9bfee30e4dedf0ab8b422f03af778d9612b63f502710fc500a334ebe2de645"
|
|
893
1055
|
dependencies = [
|
|
894
1056
|
"simd-adler32",
|
|
895
1057
|
]
|
|
@@ -900,27 +1062,33 @@ version = "0.3.6"
|
|
|
900
1062
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
901
1063
|
checksum = "38e2275cc4e4fc009b0669731a1e5ab7ebf11f469eaede2bab9309a5b4d6057f"
|
|
902
1064
|
dependencies = [
|
|
903
|
-
"memoffset 0.9.
|
|
1065
|
+
"memoffset 0.9.1",
|
|
904
1066
|
"rustc_version",
|
|
905
1067
|
]
|
|
906
1068
|
|
|
907
1069
|
[[package]]
|
|
908
1070
|
name = "filetime"
|
|
909
|
-
version = "0.2.
|
|
1071
|
+
version = "0.2.23"
|
|
910
1072
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
911
|
-
checksum = "
|
|
1073
|
+
checksum = "1ee447700ac8aa0b2f2bd7bc4462ad686ba06baa6727ac149a2d6277f0d240fd"
|
|
912
1074
|
dependencies = [
|
|
913
1075
|
"cfg-if",
|
|
914
1076
|
"libc",
|
|
915
|
-
"redox_syscall 0.
|
|
916
|
-
"windows-sys 0.
|
|
1077
|
+
"redox_syscall 0.4.1",
|
|
1078
|
+
"windows-sys 0.52.0",
|
|
917
1079
|
]
|
|
918
1080
|
|
|
1081
|
+
[[package]]
|
|
1082
|
+
name = "fixedbitset"
|
|
1083
|
+
version = "0.4.2"
|
|
1084
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1085
|
+
checksum = "0ce7134b9999ecaf8bcd65542e436736ef32ddca1b3e06094cb6ec5755203b80"
|
|
1086
|
+
|
|
919
1087
|
[[package]]
|
|
920
1088
|
name = "flate2"
|
|
921
|
-
version = "1.0.
|
|
1089
|
+
version = "1.0.29"
|
|
922
1090
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
923
|
-
checksum = "
|
|
1091
|
+
checksum = "4556222738635b7a3417ae6130d8f52201e45a0c4d1a907f0826383adb5f85e7"
|
|
924
1092
|
dependencies = [
|
|
925
1093
|
"crc32fast",
|
|
926
1094
|
"miniz_oxide",
|
|
@@ -938,7 +1106,28 @@ version = "0.3.2"
|
|
|
938
1106
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
939
1107
|
checksum = "f6f339eb8adc052cd2ca78910fda869aefa38d22d5cb648e6485e4d3fc06f3b1"
|
|
940
1108
|
dependencies = [
|
|
941
|
-
"foreign-types-shared",
|
|
1109
|
+
"foreign-types-shared 0.1.1",
|
|
1110
|
+
]
|
|
1111
|
+
|
|
1112
|
+
[[package]]
|
|
1113
|
+
name = "foreign-types"
|
|
1114
|
+
version = "0.5.0"
|
|
1115
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1116
|
+
checksum = "d737d9aa519fb7b749cbc3b962edcf310a8dd1f4b67c91c4f83975dbdd17d965"
|
|
1117
|
+
dependencies = [
|
|
1118
|
+
"foreign-types-macros",
|
|
1119
|
+
"foreign-types-shared 0.3.1",
|
|
1120
|
+
]
|
|
1121
|
+
|
|
1122
|
+
[[package]]
|
|
1123
|
+
name = "foreign-types-macros"
|
|
1124
|
+
version = "0.2.3"
|
|
1125
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1126
|
+
checksum = "1a5c6c585bc94aaf2c7b51dd4c2ba22680844aba4c687be581871a6f518c5742"
|
|
1127
|
+
dependencies = [
|
|
1128
|
+
"proc-macro2",
|
|
1129
|
+
"quote",
|
|
1130
|
+
"syn 2.0.60",
|
|
942
1131
|
]
|
|
943
1132
|
|
|
944
1133
|
[[package]]
|
|
@@ -947,11 +1136,17 @@ version = "0.1.1"
|
|
|
947
1136
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
948
1137
|
checksum = "00b0228411908ca8685dba7fc2cdd70ec9990a6e753e89b6ac91a84c40fbaf4b"
|
|
949
1138
|
|
|
1139
|
+
[[package]]
|
|
1140
|
+
name = "foreign-types-shared"
|
|
1141
|
+
version = "0.3.1"
|
|
1142
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1143
|
+
checksum = "aa9a19cbb55df58761df49b23516a86d432839add4af60fc256da840f66ed35b"
|
|
1144
|
+
|
|
950
1145
|
[[package]]
|
|
951
1146
|
name = "form_urlencoded"
|
|
952
|
-
version = "1.2.
|
|
1147
|
+
version = "1.2.1"
|
|
953
1148
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
954
|
-
checksum = "
|
|
1149
|
+
checksum = "e13624c2627564efccf4934284bdd98cbaa14e79b0b5a141218e507b3a823456"
|
|
955
1150
|
dependencies = [
|
|
956
1151
|
"percent-encoding",
|
|
957
1152
|
]
|
|
@@ -968,24 +1163,24 @@ dependencies = [
|
|
|
968
1163
|
|
|
969
1164
|
[[package]]
|
|
970
1165
|
name = "futures-channel"
|
|
971
|
-
version = "0.3.
|
|
1166
|
+
version = "0.3.30"
|
|
972
1167
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
973
|
-
checksum = "
|
|
1168
|
+
checksum = "eac8f7d7865dcb88bd4373ab671c8cf4508703796caa2b1985a9ca867b3fcb78"
|
|
974
1169
|
dependencies = [
|
|
975
1170
|
"futures-core",
|
|
976
1171
|
]
|
|
977
1172
|
|
|
978
1173
|
[[package]]
|
|
979
1174
|
name = "futures-core"
|
|
980
|
-
version = "0.3.
|
|
1175
|
+
version = "0.3.30"
|
|
981
1176
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
982
|
-
checksum = "
|
|
1177
|
+
checksum = "dfc6580bb841c5a68e9ef15c77ccc837b40a7504914d52e47b8b0e9bbda25a1d"
|
|
983
1178
|
|
|
984
1179
|
[[package]]
|
|
985
1180
|
name = "futures-executor"
|
|
986
|
-
version = "0.3.
|
|
1181
|
+
version = "0.3.30"
|
|
987
1182
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
988
|
-
checksum = "
|
|
1183
|
+
checksum = "a576fc72ae164fca6b9db127eaa9a9dda0d61316034f33a0a0d4eda41f02b01d"
|
|
989
1184
|
dependencies = [
|
|
990
1185
|
"futures-core",
|
|
991
1186
|
"futures-task",
|
|
@@ -994,53 +1189,51 @@ dependencies = [
|
|
|
994
1189
|
|
|
995
1190
|
[[package]]
|
|
996
1191
|
name = "futures-io"
|
|
997
|
-
version = "0.3.
|
|
1192
|
+
version = "0.3.30"
|
|
998
1193
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
999
|
-
checksum = "
|
|
1194
|
+
checksum = "a44623e20b9681a318efdd71c299b6b222ed6f231972bfe2f224ebad6311f0c1"
|
|
1000
1195
|
|
|
1001
1196
|
[[package]]
|
|
1002
1197
|
name = "futures-lite"
|
|
1003
|
-
version = "
|
|
1198
|
+
version = "2.3.0"
|
|
1004
1199
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1005
|
-
checksum = "
|
|
1200
|
+
checksum = "52527eb5074e35e9339c6b4e8d12600c7128b68fb25dcb9fa9dec18f7c25f3a5"
|
|
1006
1201
|
dependencies = [
|
|
1007
1202
|
"fastrand",
|
|
1008
1203
|
"futures-core",
|
|
1009
1204
|
"futures-io",
|
|
1010
|
-
"memchr",
|
|
1011
1205
|
"parking",
|
|
1012
1206
|
"pin-project-lite",
|
|
1013
|
-
"waker-fn",
|
|
1014
1207
|
]
|
|
1015
1208
|
|
|
1016
1209
|
[[package]]
|
|
1017
1210
|
name = "futures-macro"
|
|
1018
|
-
version = "0.3.
|
|
1211
|
+
version = "0.3.30"
|
|
1019
1212
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1020
|
-
checksum = "
|
|
1213
|
+
checksum = "87750cf4b7a4c0625b1529e4c543c2182106e4dedc60a2a6455e00d212c489ac"
|
|
1021
1214
|
dependencies = [
|
|
1022
1215
|
"proc-macro2",
|
|
1023
1216
|
"quote",
|
|
1024
|
-
"syn 2.0.
|
|
1217
|
+
"syn 2.0.60",
|
|
1025
1218
|
]
|
|
1026
1219
|
|
|
1027
1220
|
[[package]]
|
|
1028
1221
|
name = "futures-sink"
|
|
1029
|
-
version = "0.3.
|
|
1222
|
+
version = "0.3.30"
|
|
1030
1223
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1031
|
-
checksum = "
|
|
1224
|
+
checksum = "9fb8e00e87438d937621c1c6269e53f536c14d3fbd6a042bb24879e57d474fb5"
|
|
1032
1225
|
|
|
1033
1226
|
[[package]]
|
|
1034
1227
|
name = "futures-task"
|
|
1035
|
-
version = "0.3.
|
|
1228
|
+
version = "0.3.30"
|
|
1036
1229
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1037
|
-
checksum = "
|
|
1230
|
+
checksum = "38d84fa142264698cdce1a9f9172cf383a0c82de1bddcf3092901442c4097004"
|
|
1038
1231
|
|
|
1039
1232
|
[[package]]
|
|
1040
1233
|
name = "futures-util"
|
|
1041
|
-
version = "0.3.
|
|
1234
|
+
version = "0.3.30"
|
|
1042
1235
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1043
|
-
checksum = "
|
|
1236
|
+
checksum = "3d6401deb83407ab3da39eba7e33987a73c3df0c82b4bb5813ee871c19c41d48"
|
|
1044
1237
|
dependencies = [
|
|
1045
1238
|
"futures-core",
|
|
1046
1239
|
"futures-io",
|
|
@@ -1101,7 +1294,7 @@ dependencies = [
|
|
|
1101
1294
|
"glib-sys",
|
|
1102
1295
|
"gobject-sys",
|
|
1103
1296
|
"libc",
|
|
1104
|
-
"system-deps 6.
|
|
1297
|
+
"system-deps 6.2.2",
|
|
1105
1298
|
]
|
|
1106
1299
|
|
|
1107
1300
|
[[package]]
|
|
@@ -1118,7 +1311,7 @@ dependencies = [
|
|
|
1118
1311
|
"libc",
|
|
1119
1312
|
"pango-sys",
|
|
1120
1313
|
"pkg-config",
|
|
1121
|
-
"system-deps 6.
|
|
1314
|
+
"system-deps 6.2.2",
|
|
1122
1315
|
]
|
|
1123
1316
|
|
|
1124
1317
|
[[package]]
|
|
@@ -1132,7 +1325,7 @@ dependencies = [
|
|
|
1132
1325
|
"gobject-sys",
|
|
1133
1326
|
"libc",
|
|
1134
1327
|
"pkg-config",
|
|
1135
|
-
"system-deps 6.
|
|
1328
|
+
"system-deps 6.2.2",
|
|
1136
1329
|
]
|
|
1137
1330
|
|
|
1138
1331
|
[[package]]
|
|
@@ -1144,7 +1337,7 @@ dependencies = [
|
|
|
1144
1337
|
"gdk-sys",
|
|
1145
1338
|
"glib-sys",
|
|
1146
1339
|
"libc",
|
|
1147
|
-
"system-deps 6.
|
|
1340
|
+
"system-deps 6.2.2",
|
|
1148
1341
|
"x11",
|
|
1149
1342
|
]
|
|
1150
1343
|
|
|
@@ -1171,6 +1364,16 @@ dependencies = [
|
|
|
1171
1364
|
"version_check",
|
|
1172
1365
|
]
|
|
1173
1366
|
|
|
1367
|
+
[[package]]
|
|
1368
|
+
name = "gethostname"
|
|
1369
|
+
version = "0.4.3"
|
|
1370
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1371
|
+
checksum = "0176e0459c2e4a1fe232f984bca6890e681076abb9934f6cea7c326f3fc47818"
|
|
1372
|
+
dependencies = [
|
|
1373
|
+
"libc",
|
|
1374
|
+
"windows-targets 0.48.5",
|
|
1375
|
+
]
|
|
1376
|
+
|
|
1174
1377
|
[[package]]
|
|
1175
1378
|
name = "getrandom"
|
|
1176
1379
|
version = "0.1.16"
|
|
@@ -1184,9 +1387,9 @@ dependencies = [
|
|
|
1184
1387
|
|
|
1185
1388
|
[[package]]
|
|
1186
1389
|
name = "getrandom"
|
|
1187
|
-
version = "0.2.
|
|
1390
|
+
version = "0.2.14"
|
|
1188
1391
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1189
|
-
checksum = "
|
|
1392
|
+
checksum = "94b22e06ecb0110981051723910cbf0b5f5e09a2062dd7663334ee79a9d1286c"
|
|
1190
1393
|
dependencies = [
|
|
1191
1394
|
"cfg-if",
|
|
1192
1395
|
"libc",
|
|
@@ -1195,9 +1398,9 @@ dependencies = [
|
|
|
1195
1398
|
|
|
1196
1399
|
[[package]]
|
|
1197
1400
|
name = "gimli"
|
|
1198
|
-
version = "0.
|
|
1401
|
+
version = "0.28.1"
|
|
1199
1402
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1200
|
-
checksum = "
|
|
1403
|
+
checksum = "4271d37baee1b8c7e4b708028c57d816cf9d2434acb33a549475f78c181f6253"
|
|
1201
1404
|
|
|
1202
1405
|
[[package]]
|
|
1203
1406
|
name = "gio"
|
|
@@ -1225,7 +1428,7 @@ dependencies = [
|
|
|
1225
1428
|
"glib-sys",
|
|
1226
1429
|
"gobject-sys",
|
|
1227
1430
|
"libc",
|
|
1228
|
-
"system-deps 6.
|
|
1431
|
+
"system-deps 6.2.2",
|
|
1229
1432
|
"winapi",
|
|
1230
1433
|
]
|
|
1231
1434
|
|
|
@@ -1257,7 +1460,7 @@ checksum = "10c6ae9f6fa26f4fb2ac16b528d138d971ead56141de489f8111e259b9df3c4a"
|
|
|
1257
1460
|
dependencies = [
|
|
1258
1461
|
"anyhow",
|
|
1259
1462
|
"heck 0.4.1",
|
|
1260
|
-
"proc-macro-crate",
|
|
1463
|
+
"proc-macro-crate 1.3.1",
|
|
1261
1464
|
"proc-macro-error",
|
|
1262
1465
|
"proc-macro2",
|
|
1263
1466
|
"quote",
|
|
@@ -1271,7 +1474,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
1271
1474
|
checksum = "ef4b192f8e65e9cf76cbf4ea71fa8e3be4a0e18ffe3d68b8da6836974cc5bad4"
|
|
1272
1475
|
dependencies = [
|
|
1273
1476
|
"libc",
|
|
1274
|
-
"system-deps 6.
|
|
1477
|
+
"system-deps 6.2.2",
|
|
1275
1478
|
]
|
|
1276
1479
|
|
|
1277
1480
|
[[package]]
|
|
@@ -1282,15 +1485,15 @@ checksum = "d2fabcfbdc87f4758337ca535fb41a6d701b65693ce38287d856d1674551ec9b"
|
|
|
1282
1485
|
|
|
1283
1486
|
[[package]]
|
|
1284
1487
|
name = "globset"
|
|
1285
|
-
version = "0.4.
|
|
1488
|
+
version = "0.4.14"
|
|
1286
1489
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1287
|
-
checksum = "
|
|
1490
|
+
checksum = "57da3b9b5b85bd66f31093f8c408b90a74431672542466497dcbdfdc02034be1"
|
|
1288
1491
|
dependencies = [
|
|
1289
1492
|
"aho-corasick",
|
|
1290
1493
|
"bstr",
|
|
1291
|
-
"fnv",
|
|
1292
1494
|
"log",
|
|
1293
|
-
"regex",
|
|
1495
|
+
"regex-automata 0.4.6",
|
|
1496
|
+
"regex-syntax 0.8.3",
|
|
1294
1497
|
]
|
|
1295
1498
|
|
|
1296
1499
|
[[package]]
|
|
@@ -1301,7 +1504,7 @@ checksum = "0d57ce44246becd17153bd035ab4d32cfee096a657fc01f2231c9278378d1e0a"
|
|
|
1301
1504
|
dependencies = [
|
|
1302
1505
|
"glib-sys",
|
|
1303
1506
|
"libc",
|
|
1304
|
-
"system-deps 6.
|
|
1507
|
+
"system-deps 6.2.2",
|
|
1305
1508
|
]
|
|
1306
1509
|
|
|
1307
1510
|
[[package]]
|
|
@@ -1342,7 +1545,7 @@ dependencies = [
|
|
|
1342
1545
|
"gobject-sys",
|
|
1343
1546
|
"libc",
|
|
1344
1547
|
"pango-sys",
|
|
1345
|
-
"system-deps 6.
|
|
1548
|
+
"system-deps 6.2.2",
|
|
1346
1549
|
]
|
|
1347
1550
|
|
|
1348
1551
|
[[package]]
|
|
@@ -1352,7 +1555,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
1352
1555
|
checksum = "684c0456c086e8e7e9af73ec5b84e35938df394712054550e81558d21c44ab0d"
|
|
1353
1556
|
dependencies = [
|
|
1354
1557
|
"anyhow",
|
|
1355
|
-
"proc-macro-crate",
|
|
1558
|
+
"proc-macro-crate 1.3.1",
|
|
1356
1559
|
"proc-macro-error",
|
|
1357
1560
|
"proc-macro2",
|
|
1358
1561
|
"quote",
|
|
@@ -1361,9 +1564,9 @@ dependencies = [
|
|
|
1361
1564
|
|
|
1362
1565
|
[[package]]
|
|
1363
1566
|
name = "h2"
|
|
1364
|
-
version = "0.3.
|
|
1567
|
+
version = "0.3.26"
|
|
1365
1568
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1366
|
-
checksum = "
|
|
1569
|
+
checksum = "81fe527a889e1532da5c525686d96d4c2e74cdd345badf8dfef9f6b39dd5f5e8"
|
|
1367
1570
|
dependencies = [
|
|
1368
1571
|
"bytes",
|
|
1369
1572
|
"fnv",
|
|
@@ -1371,7 +1574,7 @@ dependencies = [
|
|
|
1371
1574
|
"futures-sink",
|
|
1372
1575
|
"futures-util",
|
|
1373
1576
|
"http",
|
|
1374
|
-
"indexmap
|
|
1577
|
+
"indexmap 2.2.6",
|
|
1375
1578
|
"slab",
|
|
1376
1579
|
"tokio",
|
|
1377
1580
|
"tokio-util",
|
|
@@ -1386,9 +1589,9 @@ checksum = "8a9ee70c43aaf417c914396645a0fa852624801b24ebb7ae78fe8272889ac888"
|
|
|
1386
1589
|
|
|
1387
1590
|
[[package]]
|
|
1388
1591
|
name = "hashbrown"
|
|
1389
|
-
version = "0.14.
|
|
1592
|
+
version = "0.14.3"
|
|
1390
1593
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1391
|
-
checksum = "
|
|
1594
|
+
checksum = "290f1a1d9242c78d09ce40a5e87e7554ee637af1351968159f4952f028f75604"
|
|
1392
1595
|
|
|
1393
1596
|
[[package]]
|
|
1394
1597
|
name = "heck"
|
|
@@ -1405,11 +1608,17 @@ version = "0.4.1"
|
|
|
1405
1608
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1406
1609
|
checksum = "95505c38b4572b2d910cecb0281560f54b440a19336cbbcb27bf6ce6adc6f5a8"
|
|
1407
1610
|
|
|
1611
|
+
[[package]]
|
|
1612
|
+
name = "heck"
|
|
1613
|
+
version = "0.5.0"
|
|
1614
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1615
|
+
checksum = "2304e00983f87ffb38b55b444b5e3b60a884b5d30c0fca7d82fe33449bbe55ea"
|
|
1616
|
+
|
|
1408
1617
|
[[package]]
|
|
1409
1618
|
name = "hermit-abi"
|
|
1410
|
-
version = "0.3.
|
|
1619
|
+
version = "0.3.9"
|
|
1411
1620
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1412
|
-
checksum = "
|
|
1621
|
+
checksum = "d231dfb89cfffdbc30e7fc41579ed6066ad03abda9e567ccafae602b97ec5024"
|
|
1413
1622
|
|
|
1414
1623
|
[[package]]
|
|
1415
1624
|
name = "hex"
|
|
@@ -1418,17 +1627,12 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
1418
1627
|
checksum = "7f24254aa9a54b5c858eaee2f5bccdb46aaf0e486a595ed5fd8f86ba55232a70"
|
|
1419
1628
|
|
|
1420
1629
|
[[package]]
|
|
1421
|
-
name = "
|
|
1422
|
-
version = "0.
|
|
1630
|
+
name = "home"
|
|
1631
|
+
version = "0.5.9"
|
|
1423
1632
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1424
|
-
checksum = "
|
|
1633
|
+
checksum = "e3d1354bf6b7235cb4a0576c2619fd4ed18183f689b12b006a0ee7329eeff9a5"
|
|
1425
1634
|
dependencies = [
|
|
1426
|
-
"
|
|
1427
|
-
"mac",
|
|
1428
|
-
"markup5ever 0.10.1",
|
|
1429
|
-
"proc-macro2",
|
|
1430
|
-
"quote",
|
|
1431
|
-
"syn 1.0.109",
|
|
1635
|
+
"windows-sys 0.52.0",
|
|
1432
1636
|
]
|
|
1433
1637
|
|
|
1434
1638
|
[[package]]
|
|
@@ -1439,7 +1643,7 @@ checksum = "bea68cab48b8459f17cf1c944c67ddc572d272d9f2b274140f223ecb1da4a3b7"
|
|
|
1439
1643
|
dependencies = [
|
|
1440
1644
|
"log",
|
|
1441
1645
|
"mac",
|
|
1442
|
-
"markup5ever
|
|
1646
|
+
"markup5ever",
|
|
1443
1647
|
"proc-macro2",
|
|
1444
1648
|
"quote",
|
|
1445
1649
|
"syn 1.0.109",
|
|
@@ -1447,20 +1651,20 @@ dependencies = [
|
|
|
1447
1651
|
|
|
1448
1652
|
[[package]]
|
|
1449
1653
|
name = "http"
|
|
1450
|
-
version = "0.2.
|
|
1654
|
+
version = "0.2.12"
|
|
1451
1655
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1452
|
-
checksum = "
|
|
1656
|
+
checksum = "601cbb57e577e2f5ef5be8e7b83f0f63994f25aa94d673e54a92d5c516d101f1"
|
|
1453
1657
|
dependencies = [
|
|
1454
1658
|
"bytes",
|
|
1455
1659
|
"fnv",
|
|
1456
|
-
"itoa 1.0.
|
|
1660
|
+
"itoa 1.0.11",
|
|
1457
1661
|
]
|
|
1458
1662
|
|
|
1459
1663
|
[[package]]
|
|
1460
1664
|
name = "http-body"
|
|
1461
|
-
version = "0.4.
|
|
1665
|
+
version = "0.4.6"
|
|
1462
1666
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1463
|
-
checksum = "
|
|
1667
|
+
checksum = "7ceab25649e9960c0311ea418d17bee82c0dcec1bd053b5f9a66e265a693bed2"
|
|
1464
1668
|
dependencies = [
|
|
1465
1669
|
"bytes",
|
|
1466
1670
|
"http",
|
|
@@ -1481,15 +1685,15 @@ checksum = "d897f394bad6a705d5f4104762e116a75639e470d80901eed05a860a95cb1904"
|
|
|
1481
1685
|
|
|
1482
1686
|
[[package]]
|
|
1483
1687
|
name = "httpdate"
|
|
1484
|
-
version = "1.0.
|
|
1688
|
+
version = "1.0.3"
|
|
1485
1689
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1486
|
-
checksum = "
|
|
1690
|
+
checksum = "df3b46402a9d5adb4c86a0cf463f42e19994e3ee891101b1841f30a545cb49a9"
|
|
1487
1691
|
|
|
1488
1692
|
[[package]]
|
|
1489
1693
|
name = "hyper"
|
|
1490
|
-
version = "0.14.
|
|
1694
|
+
version = "0.14.28"
|
|
1491
1695
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1492
|
-
checksum = "
|
|
1696
|
+
checksum = "bf96e135eb83a2a8ddf766e426a841d8ddd7449d5f00d34ea02b41d2f19eef80"
|
|
1493
1697
|
dependencies = [
|
|
1494
1698
|
"bytes",
|
|
1495
1699
|
"futures-channel",
|
|
@@ -1500,7 +1704,7 @@ dependencies = [
|
|
|
1500
1704
|
"http-body",
|
|
1501
1705
|
"httparse",
|
|
1502
1706
|
"httpdate",
|
|
1503
|
-
"itoa 1.0.
|
|
1707
|
+
"itoa 1.0.11",
|
|
1504
1708
|
"pin-project-lite",
|
|
1505
1709
|
"socket2",
|
|
1506
1710
|
"tokio",
|
|
@@ -1524,16 +1728,16 @@ dependencies = [
|
|
|
1524
1728
|
|
|
1525
1729
|
[[package]]
|
|
1526
1730
|
name = "iana-time-zone"
|
|
1527
|
-
version = "0.1.
|
|
1731
|
+
version = "0.1.60"
|
|
1528
1732
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1529
|
-
checksum = "
|
|
1733
|
+
checksum = "e7ffbb5a1b541ea2561f8c41c087286cc091e21e556a4f09a8f6cbf17b69b141"
|
|
1530
1734
|
dependencies = [
|
|
1531
1735
|
"android_system_properties",
|
|
1532
1736
|
"core-foundation-sys",
|
|
1533
1737
|
"iana-time-zone-haiku",
|
|
1534
1738
|
"js-sys",
|
|
1535
1739
|
"wasm-bindgen",
|
|
1536
|
-
"windows 0.
|
|
1740
|
+
"windows-core 0.52.0",
|
|
1537
1741
|
]
|
|
1538
1742
|
|
|
1539
1743
|
[[package]]
|
|
@@ -1563,9 +1767,9 @@ checksum = "b9e0384b61958566e926dc50660321d12159025e767c18e043daf26b70104c39"
|
|
|
1563
1767
|
|
|
1564
1768
|
[[package]]
|
|
1565
1769
|
name = "idna"
|
|
1566
|
-
version = "0.
|
|
1770
|
+
version = "0.5.0"
|
|
1567
1771
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1568
|
-
checksum = "
|
|
1772
|
+
checksum = "634d9b1461af396cad843f47fdba5597a4f9e6ddd4bfb6ff5d85028c25cb12f6"
|
|
1569
1773
|
dependencies = [
|
|
1570
1774
|
"unicode-bidi",
|
|
1571
1775
|
"unicode-normalization",
|
|
@@ -1573,32 +1777,32 @@ dependencies = [
|
|
|
1573
1777
|
|
|
1574
1778
|
[[package]]
|
|
1575
1779
|
name = "ignore"
|
|
1576
|
-
version = "0.4.
|
|
1780
|
+
version = "0.4.22"
|
|
1577
1781
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1578
|
-
checksum = "
|
|
1782
|
+
checksum = "b46810df39e66e925525d6e38ce1e7f6e1d208f72dc39757880fcb66e2c58af1"
|
|
1579
1783
|
dependencies = [
|
|
1784
|
+
"crossbeam-deque",
|
|
1580
1785
|
"globset",
|
|
1581
|
-
"lazy_static",
|
|
1582
1786
|
"log",
|
|
1583
1787
|
"memchr",
|
|
1584
|
-
"regex",
|
|
1788
|
+
"regex-automata 0.4.6",
|
|
1585
1789
|
"same-file",
|
|
1586
|
-
"thread_local",
|
|
1587
1790
|
"walkdir",
|
|
1588
1791
|
"winapi-util",
|
|
1589
1792
|
]
|
|
1590
1793
|
|
|
1591
1794
|
[[package]]
|
|
1592
1795
|
name = "image"
|
|
1593
|
-
version = "0.24.
|
|
1796
|
+
version = "0.24.9"
|
|
1594
1797
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1595
|
-
checksum = "
|
|
1798
|
+
checksum = "5690139d2f55868e080017335e4b94cb7414274c74f1669c84fb5feba2c9f69d"
|
|
1596
1799
|
dependencies = [
|
|
1597
1800
|
"bytemuck",
|
|
1598
1801
|
"byteorder",
|
|
1599
1802
|
"color_quant",
|
|
1600
|
-
"num-rational",
|
|
1601
1803
|
"num-traits",
|
|
1804
|
+
"png",
|
|
1805
|
+
"tiff",
|
|
1602
1806
|
]
|
|
1603
1807
|
|
|
1604
1808
|
[[package]]
|
|
@@ -1614,19 +1818,20 @@ dependencies = [
|
|
|
1614
1818
|
|
|
1615
1819
|
[[package]]
|
|
1616
1820
|
name = "indexmap"
|
|
1617
|
-
version = "2.
|
|
1821
|
+
version = "2.2.6"
|
|
1618
1822
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1619
|
-
checksum = "
|
|
1823
|
+
checksum = "168fb715dda47215e360912c096649d23d58bf392ac62f73919e831745e40f26"
|
|
1620
1824
|
dependencies = [
|
|
1621
1825
|
"equivalent",
|
|
1622
|
-
"hashbrown 0.14.
|
|
1826
|
+
"hashbrown 0.14.3",
|
|
1827
|
+
"serde",
|
|
1623
1828
|
]
|
|
1624
1829
|
|
|
1625
1830
|
[[package]]
|
|
1626
1831
|
name = "infer"
|
|
1627
|
-
version = "0.
|
|
1832
|
+
version = "0.13.0"
|
|
1628
1833
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1629
|
-
checksum = "
|
|
1834
|
+
checksum = "f551f8c3a39f68f986517db0d1759de85881894fdc7db798bd2a9df9cb04b7fc"
|
|
1630
1835
|
dependencies = [
|
|
1631
1836
|
"cfb",
|
|
1632
1837
|
]
|
|
@@ -1641,21 +1846,10 @@ dependencies = [
|
|
|
1641
1846
|
]
|
|
1642
1847
|
|
|
1643
1848
|
[[package]]
|
|
1644
|
-
name = "
|
|
1645
|
-
version = "
|
|
1849
|
+
name = "ipnet"
|
|
1850
|
+
version = "2.9.0"
|
|
1646
1851
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1647
|
-
checksum = "
|
|
1648
|
-
dependencies = [
|
|
1649
|
-
"hermit-abi",
|
|
1650
|
-
"libc",
|
|
1651
|
-
"windows-sys 0.48.0",
|
|
1652
|
-
]
|
|
1653
|
-
|
|
1654
|
-
[[package]]
|
|
1655
|
-
name = "ipnet"
|
|
1656
|
-
version = "2.8.0"
|
|
1657
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1658
|
-
checksum = "28b29a3cd74f0f4598934efe3aeba42bae0eb4680554128851ebbecb02af14e6"
|
|
1852
|
+
checksum = "8f518f335dce6725a761382244631d86cf0ccb2863413590b31338feb467f9c3"
|
|
1659
1853
|
|
|
1660
1854
|
[[package]]
|
|
1661
1855
|
name = "itoa"
|
|
@@ -1665,9 +1859,9 @@ checksum = "b71991ff56294aa922b450139ee08b3bfc70982c6b2c7562771375cf73542dd4"
|
|
|
1665
1859
|
|
|
1666
1860
|
[[package]]
|
|
1667
1861
|
name = "itoa"
|
|
1668
|
-
version = "1.0.
|
|
1862
|
+
version = "1.0.11"
|
|
1669
1863
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1670
|
-
checksum = "
|
|
1864
|
+
checksum = "49f1f14873335454500d59611f1cf4a4b0f786f9ac11f4312a78e4cf2566695b"
|
|
1671
1865
|
|
|
1672
1866
|
[[package]]
|
|
1673
1867
|
name = "javascriptcore-rs"
|
|
@@ -1712,11 +1906,17 @@ version = "0.3.0"
|
|
|
1712
1906
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1713
1907
|
checksum = "8eaf4bc02d17cbdd7ff4c7438cafcdf7fb9a4613313ad11b4f8fefe7d3fa0130"
|
|
1714
1908
|
|
|
1909
|
+
[[package]]
|
|
1910
|
+
name = "jpeg-decoder"
|
|
1911
|
+
version = "0.3.1"
|
|
1912
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1913
|
+
checksum = "f5d4a7da358eff58addd2877a45865158f0d78c911d43a5784ceb7bbf52833b0"
|
|
1914
|
+
|
|
1715
1915
|
[[package]]
|
|
1716
1916
|
name = "js-sys"
|
|
1717
|
-
version = "0.3.
|
|
1917
|
+
version = "0.3.69"
|
|
1718
1918
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1719
|
-
checksum = "
|
|
1919
|
+
checksum = "29c15563dc2726973df627357ce0c9ddddbea194836909d655df6a75d2cf296d"
|
|
1720
1920
|
dependencies = [
|
|
1721
1921
|
"wasm-bindgen",
|
|
1722
1922
|
]
|
|
@@ -1729,9 +1929,9 @@ checksum = "078e285eafdfb6c4b434e0d31e8cfcb5115b651496faca5749b88fafd4f23bfd"
|
|
|
1729
1929
|
|
|
1730
1930
|
[[package]]
|
|
1731
1931
|
name = "json-patch"
|
|
1732
|
-
version = "1.
|
|
1932
|
+
version = "1.2.0"
|
|
1733
1933
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1734
|
-
checksum = "
|
|
1934
|
+
checksum = "55ff1e1486799e3f64129f8ccad108b38290df9cd7015cd31bed17239f0789d6"
|
|
1735
1935
|
dependencies = [
|
|
1736
1936
|
"serde",
|
|
1737
1937
|
"serde_json",
|
|
@@ -1739,18 +1939,6 @@ dependencies = [
|
|
|
1739
1939
|
"treediff",
|
|
1740
1940
|
]
|
|
1741
1941
|
|
|
1742
|
-
[[package]]
|
|
1743
|
-
name = "kuchiki"
|
|
1744
|
-
version = "0.8.1"
|
|
1745
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1746
|
-
checksum = "1ea8e9c6e031377cff82ee3001dc8026cdf431ed4e2e6b51f98ab8c73484a358"
|
|
1747
|
-
dependencies = [
|
|
1748
|
-
"cssparser",
|
|
1749
|
-
"html5ever 0.25.2",
|
|
1750
|
-
"matches",
|
|
1751
|
-
"selectors",
|
|
1752
|
-
]
|
|
1753
|
-
|
|
1754
1942
|
[[package]]
|
|
1755
1943
|
name = "kuchikiki"
|
|
1756
1944
|
version = "0.8.2"
|
|
@@ -1758,7 +1946,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
1758
1946
|
checksum = "f29e4755b7b995046f510a7520c42b2fed58b77bd94d5a87a8eb43d2fd126da8"
|
|
1759
1947
|
dependencies = [
|
|
1760
1948
|
"cssparser",
|
|
1761
|
-
"html5ever
|
|
1949
|
+
"html5ever",
|
|
1762
1950
|
"indexmap 1.9.3",
|
|
1763
1951
|
"matches",
|
|
1764
1952
|
"selectors",
|
|
@@ -1790,15 +1978,15 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
1790
1978
|
checksum = "f1b3b6681973cea8cc3bce7391e6d7d5502720b80a581c9a95c9cbaf592826aa"
|
|
1791
1979
|
dependencies = [
|
|
1792
1980
|
"gtk-sys",
|
|
1793
|
-
"libloading",
|
|
1981
|
+
"libloading 0.7.4",
|
|
1794
1982
|
"once_cell",
|
|
1795
1983
|
]
|
|
1796
1984
|
|
|
1797
1985
|
[[package]]
|
|
1798
1986
|
name = "libc"
|
|
1799
|
-
version = "0.2.
|
|
1987
|
+
version = "0.2.153"
|
|
1800
1988
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1801
|
-
checksum = "
|
|
1989
|
+
checksum = "9c198f91728a82281a64e1f4f9eeb25d82cb32a5de251c6bd1b5154d63a8e7bd"
|
|
1802
1990
|
|
|
1803
1991
|
[[package]]
|
|
1804
1992
|
name = "libloading"
|
|
@@ -1811,25 +1999,42 @@ dependencies = [
|
|
|
1811
1999
|
]
|
|
1812
2000
|
|
|
1813
2001
|
[[package]]
|
|
1814
|
-
name = "
|
|
1815
|
-
version = "0.
|
|
2002
|
+
name = "libloading"
|
|
2003
|
+
version = "0.8.3"
|
|
1816
2004
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1817
|
-
checksum = "
|
|
2005
|
+
checksum = "0c2a198fb6b0eada2a8df47933734e6d35d350665a33a3593d7164fa52c75c19"
|
|
1818
2006
|
dependencies = [
|
|
1819
|
-
"
|
|
2007
|
+
"cfg-if",
|
|
2008
|
+
"windows-targets 0.52.5",
|
|
2009
|
+
]
|
|
2010
|
+
|
|
2011
|
+
[[package]]
|
|
2012
|
+
name = "libredox"
|
|
2013
|
+
version = "0.1.3"
|
|
2014
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2015
|
+
checksum = "c0ff37bd590ca25063e35af745c343cb7a0271906fb7b37e4813e8f79f00268d"
|
|
2016
|
+
dependencies = [
|
|
2017
|
+
"bitflags 2.5.0",
|
|
2018
|
+
"libc",
|
|
1820
2019
|
]
|
|
1821
2020
|
|
|
2021
|
+
[[package]]
|
|
2022
|
+
name = "line-wrap"
|
|
2023
|
+
version = "0.2.0"
|
|
2024
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2025
|
+
checksum = "dd1bc4d24ad230d21fb898d1116b1801d7adfc449d42026475862ab48b11e70e"
|
|
2026
|
+
|
|
1822
2027
|
[[package]]
|
|
1823
2028
|
name = "linux-raw-sys"
|
|
1824
|
-
version = "0.
|
|
2029
|
+
version = "0.4.13"
|
|
1825
2030
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1826
|
-
checksum = "
|
|
2031
|
+
checksum = "01cda141df6706de531b6c46c3a33ecca755538219bd484262fa09410c13539c"
|
|
1827
2032
|
|
|
1828
2033
|
[[package]]
|
|
1829
2034
|
name = "lock_api"
|
|
1830
|
-
version = "0.4.
|
|
2035
|
+
version = "0.4.12"
|
|
1831
2036
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1832
|
-
checksum = "
|
|
2037
|
+
checksum = "07af8b9cdd281b7915f413fa73f29ebd5d55d0d3f0155584dade1ff18cea1b17"
|
|
1833
2038
|
dependencies = [
|
|
1834
2039
|
"autocfg",
|
|
1835
2040
|
"scopeguard",
|
|
@@ -1837,9 +2042,9 @@ dependencies = [
|
|
|
1837
2042
|
|
|
1838
2043
|
[[package]]
|
|
1839
2044
|
name = "log"
|
|
1840
|
-
version = "0.4.
|
|
2045
|
+
version = "0.4.21"
|
|
1841
2046
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1842
|
-
checksum = "
|
|
2047
|
+
checksum = "90ed8c1e510134f979dbc4f070f87d4313098b704861a105fe34231c70a3901c"
|
|
1843
2048
|
|
|
1844
2049
|
[[package]]
|
|
1845
2050
|
name = "loom"
|
|
@@ -1864,9 +2069,9 @@ checksum = "c41e0c4fef86961ac6d6f8a82609f55f31b05e4fce149ac5710e439df7619ba4"
|
|
|
1864
2069
|
|
|
1865
2070
|
[[package]]
|
|
1866
2071
|
name = "mac-notification-sys"
|
|
1867
|
-
version = "0.
|
|
2072
|
+
version = "0.6.1"
|
|
1868
2073
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1869
|
-
checksum = "
|
|
2074
|
+
checksum = "51fca4d74ff9dbaac16a01b924bc3693fa2bba0862c2c633abc73f9a8ea21f64"
|
|
1870
2075
|
dependencies = [
|
|
1871
2076
|
"cc",
|
|
1872
2077
|
"dirs-next",
|
|
@@ -1884,20 +2089,6 @@ dependencies = [
|
|
|
1884
2089
|
"libc",
|
|
1885
2090
|
]
|
|
1886
2091
|
|
|
1887
|
-
[[package]]
|
|
1888
|
-
name = "markup5ever"
|
|
1889
|
-
version = "0.10.1"
|
|
1890
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1891
|
-
checksum = "a24f40fb03852d1cdd84330cddcaf98e9ec08a7b7768e952fad3b4cf048ec8fd"
|
|
1892
|
-
dependencies = [
|
|
1893
|
-
"log",
|
|
1894
|
-
"phf 0.8.0",
|
|
1895
|
-
"phf_codegen 0.8.0",
|
|
1896
|
-
"string_cache",
|
|
1897
|
-
"string_cache_codegen",
|
|
1898
|
-
"tendril",
|
|
1899
|
-
]
|
|
1900
|
-
|
|
1901
2092
|
[[package]]
|
|
1902
2093
|
name = "markup5ever"
|
|
1903
2094
|
version = "0.11.0"
|
|
@@ -1929,9 +2120,9 @@ checksum = "2532096657941c2fea9c289d370a250971c689d4f143798ff67113ec042024a5"
|
|
|
1929
2120
|
|
|
1930
2121
|
[[package]]
|
|
1931
2122
|
name = "memchr"
|
|
1932
|
-
version = "2.
|
|
2123
|
+
version = "2.7.2"
|
|
1933
2124
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1934
|
-
checksum = "
|
|
2125
|
+
checksum = "6c8640c5d730cb13ebd907d8d04b52f55ac9a2eec55b440c8892f40d56c76c1d"
|
|
1935
2126
|
|
|
1936
2127
|
[[package]]
|
|
1937
2128
|
name = "memmap2"
|
|
@@ -1953,9 +2144,9 @@ dependencies = [
|
|
|
1953
2144
|
|
|
1954
2145
|
[[package]]
|
|
1955
2146
|
name = "memoffset"
|
|
1956
|
-
version = "0.9.
|
|
2147
|
+
version = "0.9.1"
|
|
1957
2148
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1958
|
-
checksum = "
|
|
2149
|
+
checksum = "488016bfae457b036d996092f6cb448677611ce4449e970ceaf42695203f218a"
|
|
1959
2150
|
dependencies = [
|
|
1960
2151
|
"autocfg",
|
|
1961
2152
|
]
|
|
@@ -1966,11 +2157,17 @@ version = "0.3.17"
|
|
|
1966
2157
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1967
2158
|
checksum = "6877bb514081ee2a7ff5ef9de3281f14a4dd4bceac4c09388074a6b5df8a139a"
|
|
1968
2159
|
|
|
2160
|
+
[[package]]
|
|
2161
|
+
name = "minimal-lexical"
|
|
2162
|
+
version = "0.2.1"
|
|
2163
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2164
|
+
checksum = "68354c5c6bd36d73ff3feceb05efa59b6acb7626617f4962be322a825e61f79a"
|
|
2165
|
+
|
|
1969
2166
|
[[package]]
|
|
1970
2167
|
name = "miniz_oxide"
|
|
1971
|
-
version = "0.7.
|
|
2168
|
+
version = "0.7.2"
|
|
1972
2169
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1973
|
-
checksum = "
|
|
2170
|
+
checksum = "9d811f3e15f28568be3407c8e7fdb6514c1cda3cb30683f15b6a1a1dc4ea14a7"
|
|
1974
2171
|
dependencies = [
|
|
1975
2172
|
"adler",
|
|
1976
2173
|
"simd-adler32",
|
|
@@ -1978,9 +2175,9 @@ dependencies = [
|
|
|
1978
2175
|
|
|
1979
2176
|
[[package]]
|
|
1980
2177
|
name = "mio"
|
|
1981
|
-
version = "0.8.
|
|
2178
|
+
version = "0.8.11"
|
|
1982
2179
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1983
|
-
checksum = "
|
|
2180
|
+
checksum = "a4a650543ca06a924e8b371db273b2756685faae30f8487da1b56505a8f78b0c"
|
|
1984
2181
|
dependencies = [
|
|
1985
2182
|
"libc",
|
|
1986
2183
|
"wasi 0.11.0+wasi-snapshot-preview1",
|
|
@@ -2041,21 +2238,33 @@ dependencies = [
|
|
|
2041
2238
|
|
|
2042
2239
|
[[package]]
|
|
2043
2240
|
name = "new_debug_unreachable"
|
|
2044
|
-
version = "1.0.
|
|
2241
|
+
version = "1.0.6"
|
|
2045
2242
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2046
|
-
checksum = "
|
|
2243
|
+
checksum = "650eef8c711430f1a879fdd01d4745a7deea475becfb90269c06775983bbf086"
|
|
2047
2244
|
|
|
2048
2245
|
[[package]]
|
|
2049
2246
|
name = "nix"
|
|
2050
|
-
version = "0.26.
|
|
2247
|
+
version = "0.26.4"
|
|
2051
2248
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2052
|
-
checksum = "
|
|
2249
|
+
checksum = "598beaf3cc6fdd9a5dfb1630c2800c7acd31df7aaf0f565796fba2b53ca1af1b"
|
|
2053
2250
|
dependencies = [
|
|
2054
2251
|
"bitflags 1.3.2",
|
|
2055
2252
|
"cfg-if",
|
|
2056
2253
|
"libc",
|
|
2057
2254
|
"memoffset 0.7.1",
|
|
2058
|
-
|
|
2255
|
+
]
|
|
2256
|
+
|
|
2257
|
+
[[package]]
|
|
2258
|
+
name = "nix"
|
|
2259
|
+
version = "0.28.0"
|
|
2260
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2261
|
+
checksum = "ab2156c4fce2f8df6c499cc1c763e4394b7482525bf2a9701c9d79d215f519e4"
|
|
2262
|
+
dependencies = [
|
|
2263
|
+
"bitflags 2.5.0",
|
|
2264
|
+
"cfg-if",
|
|
2265
|
+
"cfg_aliases",
|
|
2266
|
+
"libc",
|
|
2267
|
+
"memoffset 0.9.1",
|
|
2059
2268
|
]
|
|
2060
2269
|
|
|
2061
2270
|
[[package]]
|
|
@@ -2064,11 +2273,21 @@ version = "0.1.14"
|
|
|
2064
2273
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2065
2274
|
checksum = "72ef4a56884ca558e5ddb05a1d1e7e1bfd9a68d9ed024c21704cc98872dae1bb"
|
|
2066
2275
|
|
|
2276
|
+
[[package]]
|
|
2277
|
+
name = "nom"
|
|
2278
|
+
version = "7.1.3"
|
|
2279
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2280
|
+
checksum = "d273983c5a657a70a3e8f2a01329822f3b8c8172b73826411a55751e404a0a4a"
|
|
2281
|
+
dependencies = [
|
|
2282
|
+
"memchr",
|
|
2283
|
+
"minimal-lexical",
|
|
2284
|
+
]
|
|
2285
|
+
|
|
2067
2286
|
[[package]]
|
|
2068
2287
|
name = "notify-rust"
|
|
2069
|
-
version = "4.
|
|
2288
|
+
version = "4.11.0"
|
|
2070
2289
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2071
|
-
checksum = "
|
|
2290
|
+
checksum = "5312f837191c317644f313f7b2b39f9cb1496570c74f7c17152dd3961219551f"
|
|
2072
2291
|
dependencies = [
|
|
2073
2292
|
"log",
|
|
2074
2293
|
"mac-notification-sys",
|
|
@@ -2088,31 +2307,16 @@ dependencies = [
|
|
|
2088
2307
|
]
|
|
2089
2308
|
|
|
2090
2309
|
[[package]]
|
|
2091
|
-
name = "num-
|
|
2092
|
-
version = "0.1.
|
|
2093
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2094
|
-
checksum = "225d3389fb3509a24c93f5c29eb6bde2586b98d9f016636dff58d7c6f7569cd9"
|
|
2095
|
-
dependencies = [
|
|
2096
|
-
"autocfg",
|
|
2097
|
-
"num-traits",
|
|
2098
|
-
]
|
|
2099
|
-
|
|
2100
|
-
[[package]]
|
|
2101
|
-
name = "num-rational"
|
|
2102
|
-
version = "0.4.1"
|
|
2310
|
+
name = "num-conv"
|
|
2311
|
+
version = "0.1.0"
|
|
2103
2312
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2104
|
-
checksum = "
|
|
2105
|
-
dependencies = [
|
|
2106
|
-
"autocfg",
|
|
2107
|
-
"num-integer",
|
|
2108
|
-
"num-traits",
|
|
2109
|
-
]
|
|
2313
|
+
checksum = "51d515d32fb182ee37cda2ccdcb92950d6a3c2893aa280e540671c2cd0f3b1d9"
|
|
2110
2314
|
|
|
2111
2315
|
[[package]]
|
|
2112
2316
|
name = "num-traits"
|
|
2113
|
-
version = "0.2.
|
|
2317
|
+
version = "0.2.18"
|
|
2114
2318
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2115
|
-
checksum = "
|
|
2319
|
+
checksum = "da0df0e5185db44f69b44f26786fe401b6c293d1907744beaa7fa62b2e5a517a"
|
|
2116
2320
|
dependencies = [
|
|
2117
2321
|
"autocfg",
|
|
2118
2322
|
]
|
|
@@ -2142,7 +2346,7 @@ version = "0.5.11"
|
|
|
2142
2346
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2143
2347
|
checksum = "dcbff9bc912032c62bf65ef1d5aea88983b420f4f839db1e9b0c281a25c9c799"
|
|
2144
2348
|
dependencies = [
|
|
2145
|
-
"proc-macro-crate",
|
|
2349
|
+
"proc-macro-crate 1.3.1",
|
|
2146
2350
|
"proc-macro2",
|
|
2147
2351
|
"quote",
|
|
2148
2352
|
"syn 1.0.109",
|
|
@@ -2189,18 +2393,18 @@ dependencies = [
|
|
|
2189
2393
|
|
|
2190
2394
|
[[package]]
|
|
2191
2395
|
name = "object"
|
|
2192
|
-
version = "0.
|
|
2396
|
+
version = "0.32.2"
|
|
2193
2397
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2194
|
-
checksum = "
|
|
2398
|
+
checksum = "a6a622008b6e321afc04970976f62ee297fdbaa6f95318ca343e3eebb9648441"
|
|
2195
2399
|
dependencies = [
|
|
2196
2400
|
"memchr",
|
|
2197
2401
|
]
|
|
2198
2402
|
|
|
2199
2403
|
[[package]]
|
|
2200
2404
|
name = "once_cell"
|
|
2201
|
-
version = "1.
|
|
2405
|
+
version = "1.19.0"
|
|
2202
2406
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2203
|
-
checksum = "
|
|
2407
|
+
checksum = "3fdb12b2476b595f9358c5161aa467c2438859caa136dec86c26fdd2efe17b92"
|
|
2204
2408
|
|
|
2205
2409
|
[[package]]
|
|
2206
2410
|
name = "open"
|
|
@@ -2214,13 +2418,13 @@ dependencies = [
|
|
|
2214
2418
|
|
|
2215
2419
|
[[package]]
|
|
2216
2420
|
name = "openssl"
|
|
2217
|
-
version = "0.10.
|
|
2421
|
+
version = "0.10.64"
|
|
2218
2422
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2219
|
-
checksum = "
|
|
2423
|
+
checksum = "95a0481286a310808298130d22dd1fef0fa571e05a8f44ec801801e84b216b1f"
|
|
2220
2424
|
dependencies = [
|
|
2221
|
-
"bitflags
|
|
2425
|
+
"bitflags 2.5.0",
|
|
2222
2426
|
"cfg-if",
|
|
2223
|
-
"foreign-types",
|
|
2427
|
+
"foreign-types 0.3.2",
|
|
2224
2428
|
"libc",
|
|
2225
2429
|
"once_cell",
|
|
2226
2430
|
"openssl-macros",
|
|
@@ -2235,7 +2439,7 @@ checksum = "a948666b637a0f465e8564c73e89d4dde00d72d4d473cc972f390fc3dcee7d9c"
|
|
|
2235
2439
|
dependencies = [
|
|
2236
2440
|
"proc-macro2",
|
|
2237
2441
|
"quote",
|
|
2238
|
-
"syn 2.0.
|
|
2442
|
+
"syn 2.0.60",
|
|
2239
2443
|
]
|
|
2240
2444
|
|
|
2241
2445
|
[[package]]
|
|
@@ -2246,9 +2450,9 @@ checksum = "ff011a302c396a5197692431fc1948019154afc178baf7d8e37367442a4601cf"
|
|
|
2246
2450
|
|
|
2247
2451
|
[[package]]
|
|
2248
2452
|
name = "openssl-sys"
|
|
2249
|
-
version = "0.9.
|
|
2453
|
+
version = "0.9.102"
|
|
2250
2454
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2251
|
-
checksum = "
|
|
2455
|
+
checksum = "c597637d56fbc83893a35eb0dd04b2b8e7a50c91e64e9493e398b5df4fb45fa2"
|
|
2252
2456
|
dependencies = [
|
|
2253
2457
|
"cc",
|
|
2254
2458
|
"libc",
|
|
@@ -2268,23 +2472,23 @@ dependencies = [
|
|
|
2268
2472
|
|
|
2269
2473
|
[[package]]
|
|
2270
2474
|
name = "os_info"
|
|
2271
|
-
version = "3.
|
|
2475
|
+
version = "3.8.2"
|
|
2272
2476
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2273
|
-
checksum = "
|
|
2477
|
+
checksum = "ae99c7fa6dd38c7cafe1ec085e804f8f555a2f8659b0dbe03f1f9963a9b51092"
|
|
2274
2478
|
dependencies = [
|
|
2275
2479
|
"log",
|
|
2276
2480
|
"serde",
|
|
2277
|
-
"
|
|
2481
|
+
"windows-sys 0.52.0",
|
|
2278
2482
|
]
|
|
2279
2483
|
|
|
2280
2484
|
[[package]]
|
|
2281
2485
|
name = "os_pipe"
|
|
2282
|
-
version = "1.1.
|
|
2486
|
+
version = "1.1.5"
|
|
2283
2487
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2284
|
-
checksum = "
|
|
2488
|
+
checksum = "57119c3b893986491ec9aa85056780d3a0f3cf4da7cc09dd3650dbd6c6738fb9"
|
|
2285
2489
|
dependencies = [
|
|
2286
2490
|
"libc",
|
|
2287
|
-
"windows-sys 0.
|
|
2491
|
+
"windows-sys 0.52.0",
|
|
2288
2492
|
]
|
|
2289
2493
|
|
|
2290
2494
|
[[package]]
|
|
@@ -2315,20 +2519,20 @@ dependencies = [
|
|
|
2315
2519
|
"glib-sys",
|
|
2316
2520
|
"gobject-sys",
|
|
2317
2521
|
"libc",
|
|
2318
|
-
"system-deps 6.
|
|
2522
|
+
"system-deps 6.2.2",
|
|
2319
2523
|
]
|
|
2320
2524
|
|
|
2321
2525
|
[[package]]
|
|
2322
2526
|
name = "parking"
|
|
2323
|
-
version = "2.
|
|
2527
|
+
version = "2.2.0"
|
|
2324
2528
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2325
|
-
checksum = "
|
|
2529
|
+
checksum = "bb813b8af86854136c6922af0598d719255ecb2179515e6e7730d468f05c9cae"
|
|
2326
2530
|
|
|
2327
2531
|
[[package]]
|
|
2328
2532
|
name = "parking_lot"
|
|
2329
|
-
version = "0.12.
|
|
2533
|
+
version = "0.12.2"
|
|
2330
2534
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2331
|
-
checksum = "
|
|
2535
|
+
checksum = "7e4af0ca4f6caed20e900d564c242b8e5d4903fdacf31d3daf527b66fe6f42fb"
|
|
2332
2536
|
dependencies = [
|
|
2333
2537
|
"lock_api",
|
|
2334
2538
|
"parking_lot_core",
|
|
@@ -2336,15 +2540,15 @@ dependencies = [
|
|
|
2336
2540
|
|
|
2337
2541
|
[[package]]
|
|
2338
2542
|
name = "parking_lot_core"
|
|
2339
|
-
version = "0.9.
|
|
2543
|
+
version = "0.9.10"
|
|
2340
2544
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2341
|
-
checksum = "
|
|
2545
|
+
checksum = "1e401f977ab385c9e4e3ab30627d6f26d00e2c73eef317493c4ec6d468726cf8"
|
|
2342
2546
|
dependencies = [
|
|
2343
2547
|
"cfg-if",
|
|
2344
2548
|
"libc",
|
|
2345
|
-
"redox_syscall 0.
|
|
2549
|
+
"redox_syscall 0.5.1",
|
|
2346
2550
|
"smallvec",
|
|
2347
|
-
"windows-targets 0.
|
|
2551
|
+
"windows-targets 0.52.5",
|
|
2348
2552
|
]
|
|
2349
2553
|
|
|
2350
2554
|
[[package]]
|
|
@@ -2366,9 +2570,19 @@ dependencies = [
|
|
|
2366
2570
|
|
|
2367
2571
|
[[package]]
|
|
2368
2572
|
name = "percent-encoding"
|
|
2369
|
-
version = "2.3.
|
|
2573
|
+
version = "2.3.1"
|
|
2574
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2575
|
+
checksum = "e3148f5046208a5d56bcfc03053e3ca6334e51da8dfb19b6cdc8b306fae3283e"
|
|
2576
|
+
|
|
2577
|
+
[[package]]
|
|
2578
|
+
name = "petgraph"
|
|
2579
|
+
version = "0.6.4"
|
|
2370
2580
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2371
|
-
checksum = "
|
|
2581
|
+
checksum = "e1d3afd2628e69da2be385eb6f2fd57c8ac7977ceeff6dc166ff1657b0e386a9"
|
|
2582
|
+
dependencies = [
|
|
2583
|
+
"fixedbitset",
|
|
2584
|
+
"indexmap 2.2.6",
|
|
2585
|
+
]
|
|
2372
2586
|
|
|
2373
2587
|
[[package]]
|
|
2374
2588
|
name = "phf"
|
|
@@ -2387,9 +2601,17 @@ version = "0.10.1"
|
|
|
2387
2601
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2388
2602
|
checksum = "fabbf1ead8a5bcbc20f5f8b939ee3f5b0f6f281b6ad3468b84656b658b455259"
|
|
2389
2603
|
dependencies = [
|
|
2390
|
-
"phf_macros 0.10.0",
|
|
2391
2604
|
"phf_shared 0.10.0",
|
|
2392
|
-
|
|
2605
|
+
]
|
|
2606
|
+
|
|
2607
|
+
[[package]]
|
|
2608
|
+
name = "phf"
|
|
2609
|
+
version = "0.11.2"
|
|
2610
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2611
|
+
checksum = "ade2d8b8f33c7333b51bcf0428d37e217e9f32192ae4772156f65063b8ce03dc"
|
|
2612
|
+
dependencies = [
|
|
2613
|
+
"phf_macros 0.11.2",
|
|
2614
|
+
"phf_shared 0.11.2",
|
|
2393
2615
|
]
|
|
2394
2616
|
|
|
2395
2617
|
[[package]]
|
|
@@ -2432,6 +2654,16 @@ dependencies = [
|
|
|
2432
2654
|
"rand 0.8.5",
|
|
2433
2655
|
]
|
|
2434
2656
|
|
|
2657
|
+
[[package]]
|
|
2658
|
+
name = "phf_generator"
|
|
2659
|
+
version = "0.11.2"
|
|
2660
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2661
|
+
checksum = "48e4cc64c2ad9ebe670cb8fd69dd50ae301650392e81c05f9bfcb2d5bdbc24b0"
|
|
2662
|
+
dependencies = [
|
|
2663
|
+
"phf_shared 0.11.2",
|
|
2664
|
+
"rand 0.8.5",
|
|
2665
|
+
]
|
|
2666
|
+
|
|
2435
2667
|
[[package]]
|
|
2436
2668
|
name = "phf_macros"
|
|
2437
2669
|
version = "0.8.0"
|
|
@@ -2448,16 +2680,15 @@ dependencies = [
|
|
|
2448
2680
|
|
|
2449
2681
|
[[package]]
|
|
2450
2682
|
name = "phf_macros"
|
|
2451
|
-
version = "0.
|
|
2683
|
+
version = "0.11.2"
|
|
2452
2684
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2453
|
-
checksum = "
|
|
2685
|
+
checksum = "3444646e286606587e49f3bcf1679b8cef1dc2c5ecc29ddacaffc305180d464b"
|
|
2454
2686
|
dependencies = [
|
|
2455
|
-
"phf_generator 0.
|
|
2456
|
-
"phf_shared 0.
|
|
2457
|
-
"proc-macro-hack",
|
|
2687
|
+
"phf_generator 0.11.2",
|
|
2688
|
+
"phf_shared 0.11.2",
|
|
2458
2689
|
"proc-macro2",
|
|
2459
2690
|
"quote",
|
|
2460
|
-
"syn
|
|
2691
|
+
"syn 2.0.60",
|
|
2461
2692
|
]
|
|
2462
2693
|
|
|
2463
2694
|
[[package]]
|
|
@@ -2478,6 +2709,15 @@ dependencies = [
|
|
|
2478
2709
|
"siphasher",
|
|
2479
2710
|
]
|
|
2480
2711
|
|
|
2712
|
+
[[package]]
|
|
2713
|
+
name = "phf_shared"
|
|
2714
|
+
version = "0.11.2"
|
|
2715
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2716
|
+
checksum = "90fcb95eef784c2ac79119d1dd819e162b5da872ce6f3c3abe1e8ca1c082f72b"
|
|
2717
|
+
dependencies = [
|
|
2718
|
+
"siphasher",
|
|
2719
|
+
]
|
|
2720
|
+
|
|
2481
2721
|
[[package]]
|
|
2482
2722
|
name = "pico-args"
|
|
2483
2723
|
version = "0.5.0"
|
|
@@ -2486,9 +2726,9 @@ checksum = "5be167a7af36ee22fe3115051bc51f6e6c7054c9348e28deb4f49bd6f705a315"
|
|
|
2486
2726
|
|
|
2487
2727
|
[[package]]
|
|
2488
2728
|
name = "pin-project-lite"
|
|
2489
|
-
version = "0.2.
|
|
2729
|
+
version = "0.2.14"
|
|
2490
2730
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2491
|
-
checksum = "
|
|
2731
|
+
checksum = "bda66fc9667c18cb2758a2ac84d1167245054bcf85d5d1aaa6923f45801bdd02"
|
|
2492
2732
|
|
|
2493
2733
|
[[package]]
|
|
2494
2734
|
name = "pin-utils"
|
|
@@ -2496,31 +2736,42 @@ version = "0.1.0"
|
|
|
2496
2736
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2497
2737
|
checksum = "8b870d8c151b6f2fb93e84a13146138f05d02ed11c7e7c54f8826aaaf7c9f184"
|
|
2498
2738
|
|
|
2739
|
+
[[package]]
|
|
2740
|
+
name = "piper"
|
|
2741
|
+
version = "0.2.1"
|
|
2742
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2743
|
+
checksum = "668d31b1c4eba19242f2088b2bf3316b82ca31082a8335764db4e083db7485d4"
|
|
2744
|
+
dependencies = [
|
|
2745
|
+
"atomic-waker",
|
|
2746
|
+
"fastrand",
|
|
2747
|
+
"futures-io",
|
|
2748
|
+
]
|
|
2749
|
+
|
|
2499
2750
|
[[package]]
|
|
2500
2751
|
name = "pkg-config"
|
|
2501
|
-
version = "0.3.
|
|
2752
|
+
version = "0.3.30"
|
|
2502
2753
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2503
|
-
checksum = "
|
|
2754
|
+
checksum = "d231b230927b5e4ad203db57bbcbee2802f6bce620b1e4a9024a07d94e2907ec"
|
|
2504
2755
|
|
|
2505
2756
|
[[package]]
|
|
2506
2757
|
name = "plist"
|
|
2507
|
-
version = "1.
|
|
2758
|
+
version = "1.6.1"
|
|
2508
2759
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2509
|
-
checksum = "
|
|
2760
|
+
checksum = "d9d34169e64b3c7a80c8621a48adaf44e0cf62c78a9b25dd9dd35f1881a17cf9"
|
|
2510
2761
|
dependencies = [
|
|
2511
|
-
"base64 0.21.
|
|
2512
|
-
"indexmap
|
|
2762
|
+
"base64 0.21.7",
|
|
2763
|
+
"indexmap 2.2.6",
|
|
2513
2764
|
"line-wrap",
|
|
2514
|
-
"quick-xml
|
|
2765
|
+
"quick-xml",
|
|
2515
2766
|
"serde",
|
|
2516
2767
|
"time",
|
|
2517
2768
|
]
|
|
2518
2769
|
|
|
2519
2770
|
[[package]]
|
|
2520
2771
|
name = "png"
|
|
2521
|
-
version = "0.17.
|
|
2772
|
+
version = "0.17.13"
|
|
2522
2773
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2523
|
-
checksum = "
|
|
2774
|
+
checksum = "06e4b0d3d1312775e782c86c91a111aa1f910cbb65e1337f9975b5f9a554b5e1"
|
|
2524
2775
|
dependencies = [
|
|
2525
2776
|
"bitflags 1.3.2",
|
|
2526
2777
|
"crc32fast",
|
|
@@ -2531,20 +2782,25 @@ dependencies = [
|
|
|
2531
2782
|
|
|
2532
2783
|
[[package]]
|
|
2533
2784
|
name = "polling"
|
|
2534
|
-
version = "
|
|
2785
|
+
version = "3.7.0"
|
|
2535
2786
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2536
|
-
checksum = "
|
|
2787
|
+
checksum = "645493cf344456ef24219d02a768cf1fb92ddf8c92161679ae3d91b91a637be3"
|
|
2537
2788
|
dependencies = [
|
|
2538
|
-
"autocfg",
|
|
2539
|
-
"bitflags 1.3.2",
|
|
2540
2789
|
"cfg-if",
|
|
2541
2790
|
"concurrent-queue",
|
|
2542
|
-
"
|
|
2543
|
-
"log",
|
|
2791
|
+
"hermit-abi",
|
|
2544
2792
|
"pin-project-lite",
|
|
2545
|
-
"
|
|
2793
|
+
"rustix",
|
|
2794
|
+
"tracing",
|
|
2795
|
+
"windows-sys 0.52.0",
|
|
2546
2796
|
]
|
|
2547
2797
|
|
|
2798
|
+
[[package]]
|
|
2799
|
+
name = "powerfmt"
|
|
2800
|
+
version = "0.2.0"
|
|
2801
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2802
|
+
checksum = "439ee305def115ba05938db6eb1644ff94165c5ab5e9420d1c1bcedbba909391"
|
|
2803
|
+
|
|
2548
2804
|
[[package]]
|
|
2549
2805
|
name = "ppv-lite86"
|
|
2550
2806
|
version = "0.2.17"
|
|
@@ -2564,7 +2820,16 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
2564
2820
|
checksum = "7f4c021e1093a56626774e81216a4ce732a735e5bad4868a03f3ed65ca0c3919"
|
|
2565
2821
|
dependencies = [
|
|
2566
2822
|
"once_cell",
|
|
2567
|
-
"toml_edit",
|
|
2823
|
+
"toml_edit 0.19.15",
|
|
2824
|
+
]
|
|
2825
|
+
|
|
2826
|
+
[[package]]
|
|
2827
|
+
name = "proc-macro-crate"
|
|
2828
|
+
version = "3.1.0"
|
|
2829
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2830
|
+
checksum = "6d37c51ca738a55da99dc0c4a34860fd675453b8b36209178c2249bb13651284"
|
|
2831
|
+
dependencies = [
|
|
2832
|
+
"toml_edit 0.21.1",
|
|
2568
2833
|
]
|
|
2569
2834
|
|
|
2570
2835
|
[[package]]
|
|
@@ -2599,36 +2864,27 @@ checksum = "dc375e1527247fe1a97d8b7156678dfe7c1af2fc075c9a4db3690ecd2a148068"
|
|
|
2599
2864
|
|
|
2600
2865
|
[[package]]
|
|
2601
2866
|
name = "proc-macro2"
|
|
2602
|
-
version = "1.0.
|
|
2867
|
+
version = "1.0.81"
|
|
2603
2868
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2604
|
-
checksum = "
|
|
2869
|
+
checksum = "3d1597b0c024618f09a9c3b8655b7e430397a36d23fdafec26d6965e9eec3eba"
|
|
2605
2870
|
dependencies = [
|
|
2606
2871
|
"unicode-ident",
|
|
2607
2872
|
]
|
|
2608
2873
|
|
|
2609
2874
|
[[package]]
|
|
2610
2875
|
name = "quick-xml"
|
|
2611
|
-
version = "0.
|
|
2612
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2613
|
-
checksum = "11bafc859c6815fbaffbbbf4229ecb767ac913fecb27f9ad4343662e9ef099ea"
|
|
2614
|
-
dependencies = [
|
|
2615
|
-
"memchr",
|
|
2616
|
-
]
|
|
2617
|
-
|
|
2618
|
-
[[package]]
|
|
2619
|
-
name = "quick-xml"
|
|
2620
|
-
version = "0.29.0"
|
|
2876
|
+
version = "0.31.0"
|
|
2621
2877
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2622
|
-
checksum = "
|
|
2878
|
+
checksum = "1004a344b30a54e2ee58d66a71b32d2db2feb0a31f9a2d302bf0536f15de2a33"
|
|
2623
2879
|
dependencies = [
|
|
2624
2880
|
"memchr",
|
|
2625
2881
|
]
|
|
2626
2882
|
|
|
2627
2883
|
[[package]]
|
|
2628
2884
|
name = "quote"
|
|
2629
|
-
version = "1.0.
|
|
2885
|
+
version = "1.0.36"
|
|
2630
2886
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2631
|
-
checksum = "
|
|
2887
|
+
checksum = "0fa76aaf39101c457836aec0ce2316dbdc3ab723cdda1c6bd4e6ad4208acaca7"
|
|
2632
2888
|
dependencies = [
|
|
2633
2889
|
"proc-macro2",
|
|
2634
2890
|
]
|
|
@@ -2693,7 +2949,7 @@ version = "0.6.4"
|
|
|
2693
2949
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2694
2950
|
checksum = "ec0be4795e2f6a28069bec0b5ff3e2ac9bafc99e6a9a7dc3547996c5c816922c"
|
|
2695
2951
|
dependencies = [
|
|
2696
|
-
"getrandom 0.2.
|
|
2952
|
+
"getrandom 0.2.14",
|
|
2697
2953
|
]
|
|
2698
2954
|
|
|
2699
2955
|
[[package]]
|
|
@@ -2722,43 +2978,43 @@ checksum = "f2ff9a1f06a88b01621b7ae906ef0211290d1c8a168a15542486a8f61c0833b9"
|
|
|
2722
2978
|
|
|
2723
2979
|
[[package]]
|
|
2724
2980
|
name = "redox_syscall"
|
|
2725
|
-
version = "0.
|
|
2981
|
+
version = "0.4.1"
|
|
2726
2982
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2727
|
-
checksum = "
|
|
2983
|
+
checksum = "4722d768eff46b75989dd134e5c353f0d6296e5aaa3132e776cbdb56be7731aa"
|
|
2728
2984
|
dependencies = [
|
|
2729
2985
|
"bitflags 1.3.2",
|
|
2730
2986
|
]
|
|
2731
2987
|
|
|
2732
2988
|
[[package]]
|
|
2733
2989
|
name = "redox_syscall"
|
|
2734
|
-
version = "0.
|
|
2990
|
+
version = "0.5.1"
|
|
2735
2991
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2736
|
-
checksum = "
|
|
2992
|
+
checksum = "469052894dcb553421e483e4209ee581a45100d31b4018de03e5a7ad86374a7e"
|
|
2737
2993
|
dependencies = [
|
|
2738
|
-
"bitflags
|
|
2994
|
+
"bitflags 2.5.0",
|
|
2739
2995
|
]
|
|
2740
2996
|
|
|
2741
2997
|
[[package]]
|
|
2742
2998
|
name = "redox_users"
|
|
2743
|
-
version = "0.4.
|
|
2999
|
+
version = "0.4.5"
|
|
2744
3000
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2745
|
-
checksum = "
|
|
3001
|
+
checksum = "bd283d9651eeda4b2a83a43c1c91b266c40fd76ecd39a50a8c630ae69dc72891"
|
|
2746
3002
|
dependencies = [
|
|
2747
|
-
"getrandom 0.2.
|
|
2748
|
-
"
|
|
3003
|
+
"getrandom 0.2.14",
|
|
3004
|
+
"libredox",
|
|
2749
3005
|
"thiserror",
|
|
2750
3006
|
]
|
|
2751
3007
|
|
|
2752
3008
|
[[package]]
|
|
2753
3009
|
name = "regex"
|
|
2754
|
-
version = "1.
|
|
3010
|
+
version = "1.10.4"
|
|
2755
3011
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2756
|
-
checksum = "
|
|
3012
|
+
checksum = "c117dbdfde9c8308975b6a18d71f3f385c89461f7b3fb054288ecf2a2058ba4c"
|
|
2757
3013
|
dependencies = [
|
|
2758
3014
|
"aho-corasick",
|
|
2759
3015
|
"memchr",
|
|
2760
|
-
"regex-automata 0.
|
|
2761
|
-
"regex-syntax 0.
|
|
3016
|
+
"regex-automata 0.4.6",
|
|
3017
|
+
"regex-syntax 0.8.3",
|
|
2762
3018
|
]
|
|
2763
3019
|
|
|
2764
3020
|
[[package]]
|
|
@@ -2772,13 +3028,13 @@ dependencies = [
|
|
|
2772
3028
|
|
|
2773
3029
|
[[package]]
|
|
2774
3030
|
name = "regex-automata"
|
|
2775
|
-
version = "0.
|
|
3031
|
+
version = "0.4.6"
|
|
2776
3032
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2777
|
-
checksum = "
|
|
3033
|
+
checksum = "86b83b8b9847f9bf95ef68afb0b8e6cdb80f498442f5179a29fad448fcc1eaea"
|
|
2778
3034
|
dependencies = [
|
|
2779
3035
|
"aho-corasick",
|
|
2780
3036
|
"memchr",
|
|
2781
|
-
"regex-syntax 0.
|
|
3037
|
+
"regex-syntax 0.8.3",
|
|
2782
3038
|
]
|
|
2783
3039
|
|
|
2784
3040
|
[[package]]
|
|
@@ -2789,17 +3045,17 @@ checksum = "f162c6dd7b008981e4d40210aca20b4bd0f9b60ca9271061b07f78537722f2e1"
|
|
|
2789
3045
|
|
|
2790
3046
|
[[package]]
|
|
2791
3047
|
name = "regex-syntax"
|
|
2792
|
-
version = "0.
|
|
3048
|
+
version = "0.8.3"
|
|
2793
3049
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2794
|
-
checksum = "
|
|
3050
|
+
checksum = "adad44e29e4c806119491a7f06f03de4d1af22c3a680dd47f1e6e179439d1f56"
|
|
2795
3051
|
|
|
2796
3052
|
[[package]]
|
|
2797
3053
|
name = "reqwest"
|
|
2798
|
-
version = "0.11.
|
|
3054
|
+
version = "0.11.27"
|
|
2799
3055
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2800
|
-
checksum = "
|
|
3056
|
+
checksum = "dd67538700a17451e7cba03ac727fb961abb7607553461627b97de0b89cf4a62"
|
|
2801
3057
|
dependencies = [
|
|
2802
|
-
"base64 0.21.
|
|
3058
|
+
"base64 0.21.7",
|
|
2803
3059
|
"bytes",
|
|
2804
3060
|
"encoding_rs",
|
|
2805
3061
|
"futures-core",
|
|
@@ -2817,9 +3073,12 @@ dependencies = [
|
|
|
2817
3073
|
"once_cell",
|
|
2818
3074
|
"percent-encoding",
|
|
2819
3075
|
"pin-project-lite",
|
|
3076
|
+
"rustls-pemfile",
|
|
2820
3077
|
"serde",
|
|
2821
3078
|
"serde_json",
|
|
2822
3079
|
"serde_urlencoded",
|
|
3080
|
+
"sync_wrapper",
|
|
3081
|
+
"system-configuration",
|
|
2823
3082
|
"tokio",
|
|
2824
3083
|
"tokio-native-tls",
|
|
2825
3084
|
"tokio-util",
|
|
@@ -2829,7 +3088,7 @@ dependencies = [
|
|
|
2829
3088
|
"wasm-bindgen-futures",
|
|
2830
3089
|
"wasm-streams",
|
|
2831
3090
|
"web-sys",
|
|
2832
|
-
"winreg 0.
|
|
3091
|
+
"winreg 0.50.0",
|
|
2833
3092
|
]
|
|
2834
3093
|
|
|
2835
3094
|
[[package]]
|
|
@@ -2873,35 +3132,37 @@ dependencies = [
|
|
|
2873
3132
|
|
|
2874
3133
|
[[package]]
|
|
2875
3134
|
name = "rustix"
|
|
2876
|
-
version = "0.
|
|
3135
|
+
version = "0.38.34"
|
|
2877
3136
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2878
|
-
checksum = "
|
|
3137
|
+
checksum = "70dc5ec042f7a43c4a73241207cecc9873a06d45debb38b329f8541d85c2730f"
|
|
2879
3138
|
dependencies = [
|
|
2880
|
-
"bitflags
|
|
3139
|
+
"bitflags 2.5.0",
|
|
2881
3140
|
"errno",
|
|
2882
|
-
"io-lifetimes",
|
|
2883
3141
|
"libc",
|
|
2884
3142
|
"linux-raw-sys",
|
|
2885
|
-
"windows-sys 0.
|
|
3143
|
+
"windows-sys 0.52.0",
|
|
2886
3144
|
]
|
|
2887
3145
|
|
|
2888
3146
|
[[package]]
|
|
2889
|
-
name = "
|
|
2890
|
-
version = "1.0.
|
|
3147
|
+
name = "rustls-pemfile"
|
|
3148
|
+
version = "1.0.4"
|
|
2891
3149
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2892
|
-
checksum = "
|
|
3150
|
+
checksum = "1c74cae0a4cf6ccbbf5f359f08efdf8ee7e1dc532573bf0db71968cb56b1448c"
|
|
3151
|
+
dependencies = [
|
|
3152
|
+
"base64 0.21.7",
|
|
3153
|
+
]
|
|
2893
3154
|
|
|
2894
3155
|
[[package]]
|
|
2895
|
-
name = "
|
|
3156
|
+
name = "rustversion"
|
|
2896
3157
|
version = "1.0.15"
|
|
2897
3158
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2898
|
-
checksum = "
|
|
3159
|
+
checksum = "80af6f9131f277a45a3fba6ce8e2258037bb0477a67e610d3c1fe046ab31de47"
|
|
2899
3160
|
|
|
2900
3161
|
[[package]]
|
|
2901
|
-
name = "
|
|
2902
|
-
version = "0.
|
|
3162
|
+
name = "ryu"
|
|
3163
|
+
version = "1.0.17"
|
|
2903
3164
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2904
|
-
checksum = "
|
|
3165
|
+
checksum = "e86697c916019a8588c99b5fac3cead74ec0b4b819707a682fd4d23fa0ce1ba1"
|
|
2905
3166
|
|
|
2906
3167
|
[[package]]
|
|
2907
3168
|
name = "same-file"
|
|
@@ -2914,11 +3175,11 @@ dependencies = [
|
|
|
2914
3175
|
|
|
2915
3176
|
[[package]]
|
|
2916
3177
|
name = "schannel"
|
|
2917
|
-
version = "0.1.
|
|
3178
|
+
version = "0.1.23"
|
|
2918
3179
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2919
|
-
checksum = "
|
|
3180
|
+
checksum = "fbc91545643bcf3a0bbb6569265615222618bdf33ce4ffbbd13c4bbd4c093534"
|
|
2920
3181
|
dependencies = [
|
|
2921
|
-
"windows-sys 0.
|
|
3182
|
+
"windows-sys 0.52.0",
|
|
2922
3183
|
]
|
|
2923
3184
|
|
|
2924
3185
|
[[package]]
|
|
@@ -2941,9 +3202,9 @@ checksum = "fda28d4b4830b807a8b43f7b0e6b5df875311b3e7621d84577188c175b6ec1ec"
|
|
|
2941
3202
|
|
|
2942
3203
|
[[package]]
|
|
2943
3204
|
name = "security-framework"
|
|
2944
|
-
version = "2.
|
|
3205
|
+
version = "2.10.0"
|
|
2945
3206
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2946
|
-
checksum = "
|
|
3207
|
+
checksum = "770452e37cad93e0a50d5abc3990d2bc351c36d0328f86cefec2f2fb206eaef6"
|
|
2947
3208
|
dependencies = [
|
|
2948
3209
|
"bitflags 1.3.2",
|
|
2949
3210
|
"core-foundation",
|
|
@@ -2954,9 +3215,9 @@ dependencies = [
|
|
|
2954
3215
|
|
|
2955
3216
|
[[package]]
|
|
2956
3217
|
name = "security-framework-sys"
|
|
2957
|
-
version = "2.
|
|
3218
|
+
version = "2.10.0"
|
|
2958
3219
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2959
|
-
checksum = "
|
|
3220
|
+
checksum = "41f3cc463c0ef97e11c3461a9d3787412d30e8e7eb907c79180c4a57bf7c04ef"
|
|
2960
3221
|
dependencies = [
|
|
2961
3222
|
"core-foundation-sys",
|
|
2962
3223
|
"libc",
|
|
@@ -2984,60 +3245,61 @@ dependencies = [
|
|
|
2984
3245
|
|
|
2985
3246
|
[[package]]
|
|
2986
3247
|
name = "semver"
|
|
2987
|
-
version = "1.0.
|
|
3248
|
+
version = "1.0.22"
|
|
2988
3249
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2989
|
-
checksum = "
|
|
3250
|
+
checksum = "92d43fe69e652f3df9bdc2b85b2854a0825b86e4fb76bc44d945137d053639ca"
|
|
2990
3251
|
dependencies = [
|
|
2991
3252
|
"serde",
|
|
2992
3253
|
]
|
|
2993
3254
|
|
|
2994
3255
|
[[package]]
|
|
2995
3256
|
name = "serde"
|
|
2996
|
-
version = "1.0.
|
|
3257
|
+
version = "1.0.199"
|
|
2997
3258
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2998
|
-
checksum = "
|
|
3259
|
+
checksum = "0c9f6e76df036c77cd94996771fb40db98187f096dd0b9af39c6c6e452ba966a"
|
|
2999
3260
|
dependencies = [
|
|
3000
3261
|
"serde_derive",
|
|
3001
3262
|
]
|
|
3002
3263
|
|
|
3003
3264
|
[[package]]
|
|
3004
3265
|
name = "serde_derive"
|
|
3005
|
-
version = "1.0.
|
|
3266
|
+
version = "1.0.199"
|
|
3006
3267
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3007
|
-
checksum = "
|
|
3268
|
+
checksum = "11bd257a6541e141e42ca6d24ae26f7714887b47e89aa739099104c7e4d3b7fc"
|
|
3008
3269
|
dependencies = [
|
|
3009
3270
|
"proc-macro2",
|
|
3010
3271
|
"quote",
|
|
3011
|
-
"syn 2.0.
|
|
3272
|
+
"syn 2.0.60",
|
|
3012
3273
|
]
|
|
3013
3274
|
|
|
3014
3275
|
[[package]]
|
|
3015
3276
|
name = "serde_json"
|
|
3016
|
-
version = "1.0.
|
|
3277
|
+
version = "1.0.116"
|
|
3017
3278
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3018
|
-
checksum = "
|
|
3279
|
+
checksum = "3e17db7126d17feb94eb3fad46bf1a96b034e8aacbc2e775fe81505f8b0b2813"
|
|
3019
3280
|
dependencies = [
|
|
3020
|
-
"
|
|
3281
|
+
"indexmap 2.2.6",
|
|
3282
|
+
"itoa 1.0.11",
|
|
3021
3283
|
"ryu",
|
|
3022
3284
|
"serde",
|
|
3023
3285
|
]
|
|
3024
3286
|
|
|
3025
3287
|
[[package]]
|
|
3026
3288
|
name = "serde_repr"
|
|
3027
|
-
version = "0.1.
|
|
3289
|
+
version = "0.1.19"
|
|
3028
3290
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3029
|
-
checksum = "
|
|
3291
|
+
checksum = "6c64451ba24fc7a6a2d60fc75dd9c83c90903b19028d4eff35e88fc1e86564e9"
|
|
3030
3292
|
dependencies = [
|
|
3031
3293
|
"proc-macro2",
|
|
3032
3294
|
"quote",
|
|
3033
|
-
"syn 2.0.
|
|
3295
|
+
"syn 2.0.60",
|
|
3034
3296
|
]
|
|
3035
3297
|
|
|
3036
3298
|
[[package]]
|
|
3037
3299
|
name = "serde_spanned"
|
|
3038
|
-
version = "0.6.
|
|
3300
|
+
version = "0.6.5"
|
|
3039
3301
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3040
|
-
checksum = "
|
|
3302
|
+
checksum = "eb3622f419d1296904700073ea6cc23ad690adbd66f13ea683df73298736f0c1"
|
|
3041
3303
|
dependencies = [
|
|
3042
3304
|
"serde",
|
|
3043
3305
|
]
|
|
@@ -3049,22 +3311,24 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
3049
3311
|
checksum = "d3491c14715ca2294c4d6a88f15e84739788c1d030eed8c110436aafdaa2f3fd"
|
|
3050
3312
|
dependencies = [
|
|
3051
3313
|
"form_urlencoded",
|
|
3052
|
-
"itoa 1.0.
|
|
3314
|
+
"itoa 1.0.11",
|
|
3053
3315
|
"ryu",
|
|
3054
3316
|
"serde",
|
|
3055
3317
|
]
|
|
3056
3318
|
|
|
3057
3319
|
[[package]]
|
|
3058
3320
|
name = "serde_with"
|
|
3059
|
-
version = "3.
|
|
3321
|
+
version = "3.8.0"
|
|
3060
3322
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3061
|
-
checksum = "
|
|
3323
|
+
checksum = "2c85f8e96d1d6857f13768fcbd895fcb06225510022a2774ed8b5150581847b0"
|
|
3062
3324
|
dependencies = [
|
|
3063
|
-
"base64 0.
|
|
3325
|
+
"base64 0.22.0",
|
|
3064
3326
|
"chrono",
|
|
3065
3327
|
"hex",
|
|
3066
3328
|
"indexmap 1.9.3",
|
|
3329
|
+
"indexmap 2.2.6",
|
|
3067
3330
|
"serde",
|
|
3331
|
+
"serde_derive",
|
|
3068
3332
|
"serde_json",
|
|
3069
3333
|
"serde_with_macros",
|
|
3070
3334
|
"time",
|
|
@@ -3072,14 +3336,14 @@ dependencies = [
|
|
|
3072
3336
|
|
|
3073
3337
|
[[package]]
|
|
3074
3338
|
name = "serde_with_macros"
|
|
3075
|
-
version = "3.
|
|
3339
|
+
version = "3.8.0"
|
|
3076
3340
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3077
|
-
checksum = "
|
|
3341
|
+
checksum = "c8b3a576c4eb2924262d5951a3b737ccaf16c931e39a2810c36f9a7e25575557"
|
|
3078
3342
|
dependencies = [
|
|
3079
3343
|
"darling",
|
|
3080
3344
|
"proc-macro2",
|
|
3081
3345
|
"quote",
|
|
3082
|
-
"syn 2.0.
|
|
3346
|
+
"syn 2.0.60",
|
|
3083
3347
|
]
|
|
3084
3348
|
|
|
3085
3349
|
[[package]]
|
|
@@ -3116,9 +3380,9 @@ dependencies = [
|
|
|
3116
3380
|
|
|
3117
3381
|
[[package]]
|
|
3118
3382
|
name = "sha1"
|
|
3119
|
-
version = "0.10.
|
|
3383
|
+
version = "0.10.6"
|
|
3120
3384
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3121
|
-
checksum = "
|
|
3385
|
+
checksum = "e3bf829a2d51ab4a5ddf1352d8470c140cadc8301b2ae1789db023f01cedd6ba"
|
|
3122
3386
|
dependencies = [
|
|
3123
3387
|
"cfg-if",
|
|
3124
3388
|
"cpufeatures",
|
|
@@ -3127,9 +3391,9 @@ dependencies = [
|
|
|
3127
3391
|
|
|
3128
3392
|
[[package]]
|
|
3129
3393
|
name = "sha2"
|
|
3130
|
-
version = "0.10.
|
|
3394
|
+
version = "0.10.8"
|
|
3131
3395
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3132
|
-
checksum = "
|
|
3396
|
+
checksum = "793db75ad2bcafc3ffa7c68b215fee268f537982cd901d132f89c6343f3a3dc8"
|
|
3133
3397
|
dependencies = [
|
|
3134
3398
|
"cfg-if",
|
|
3135
3399
|
"cpufeatures",
|
|
@@ -3138,9 +3402,9 @@ dependencies = [
|
|
|
3138
3402
|
|
|
3139
3403
|
[[package]]
|
|
3140
3404
|
name = "sharded-slab"
|
|
3141
|
-
version = "0.1.
|
|
3405
|
+
version = "0.1.7"
|
|
3142
3406
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3143
|
-
checksum = "
|
|
3407
|
+
checksum = "f40ca3c46823713e0d4209592e8d6e826aa57e928f09752619fc696c499637f6"
|
|
3144
3408
|
dependencies = [
|
|
3145
3409
|
"lazy_static",
|
|
3146
3410
|
]
|
|
@@ -3155,60 +3419,50 @@ dependencies = [
|
|
|
3155
3419
|
"winapi",
|
|
3156
3420
|
]
|
|
3157
3421
|
|
|
3158
|
-
[[package]]
|
|
3159
|
-
name = "signal-hook"
|
|
3160
|
-
version = "0.3.17"
|
|
3161
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3162
|
-
checksum = "8621587d4798caf8eb44879d42e56b9a93ea5dcd315a6487c357130095b62801"
|
|
3163
|
-
dependencies = [
|
|
3164
|
-
"libc",
|
|
3165
|
-
"signal-hook-registry",
|
|
3166
|
-
]
|
|
3167
|
-
|
|
3168
3422
|
[[package]]
|
|
3169
3423
|
name = "signal-hook-registry"
|
|
3170
|
-
version = "1.4.
|
|
3424
|
+
version = "1.4.2"
|
|
3171
3425
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3172
|
-
checksum = "
|
|
3426
|
+
checksum = "a9e9e0b4211b72e7b8b6e85c807d36c212bdb33ea8587f7569562a84df5465b1"
|
|
3173
3427
|
dependencies = [
|
|
3174
3428
|
"libc",
|
|
3175
3429
|
]
|
|
3176
3430
|
|
|
3177
3431
|
[[package]]
|
|
3178
3432
|
name = "simd-adler32"
|
|
3179
|
-
version = "0.3.
|
|
3433
|
+
version = "0.3.7"
|
|
3180
3434
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3181
|
-
checksum = "
|
|
3435
|
+
checksum = "d66dc143e6b11c1eddc06d5c423cfc97062865baf299914ab64caa38182078fe"
|
|
3182
3436
|
|
|
3183
3437
|
[[package]]
|
|
3184
3438
|
name = "siphasher"
|
|
3185
|
-
version = "0.3.
|
|
3439
|
+
version = "0.3.11"
|
|
3186
3440
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3187
|
-
checksum = "
|
|
3441
|
+
checksum = "38b58827f4464d87d377d175e90bf58eb00fd8716ff0a62f80356b5e61555d0d"
|
|
3188
3442
|
|
|
3189
3443
|
[[package]]
|
|
3190
3444
|
name = "slab"
|
|
3191
|
-
version = "0.4.
|
|
3445
|
+
version = "0.4.9"
|
|
3192
3446
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3193
|
-
checksum = "
|
|
3447
|
+
checksum = "8f92a496fb766b417c996b9c5e57daf2f7ad3b0bebe1ccfca4856390e3d3bb67"
|
|
3194
3448
|
dependencies = [
|
|
3195
3449
|
"autocfg",
|
|
3196
3450
|
]
|
|
3197
3451
|
|
|
3198
3452
|
[[package]]
|
|
3199
3453
|
name = "smallvec"
|
|
3200
|
-
version = "1.
|
|
3454
|
+
version = "1.13.2"
|
|
3201
3455
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3202
|
-
checksum = "
|
|
3456
|
+
checksum = "3c5e1a9a646d36c3599cd173a41282daf47c44583ad367b8e6837255952e5c67"
|
|
3203
3457
|
|
|
3204
3458
|
[[package]]
|
|
3205
3459
|
name = "socket2"
|
|
3206
|
-
version = "0.
|
|
3460
|
+
version = "0.5.6"
|
|
3207
3461
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3208
|
-
checksum = "
|
|
3462
|
+
checksum = "05ffd9c0a93b7543e062e759284fcf5f5e3b098501104bfbdde4d404db792871"
|
|
3209
3463
|
dependencies = [
|
|
3210
3464
|
"libc",
|
|
3211
|
-
"
|
|
3465
|
+
"windows-sys 0.52.0",
|
|
3212
3466
|
]
|
|
3213
3467
|
|
|
3214
3468
|
[[package]]
|
|
@@ -3305,15 +3559,21 @@ dependencies = [
|
|
|
3305
3559
|
|
|
3306
3560
|
[[package]]
|
|
3307
3561
|
name = "syn"
|
|
3308
|
-
version = "2.0.
|
|
3562
|
+
version = "2.0.60"
|
|
3309
3563
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3310
|
-
checksum = "
|
|
3564
|
+
checksum = "909518bc7b1c9b779f1bbf07f2929d35af9f0f37e47c6e9ef7f9dddc1e1821f3"
|
|
3311
3565
|
dependencies = [
|
|
3312
3566
|
"proc-macro2",
|
|
3313
3567
|
"quote",
|
|
3314
3568
|
"unicode-ident",
|
|
3315
3569
|
]
|
|
3316
3570
|
|
|
3571
|
+
[[package]]
|
|
3572
|
+
name = "sync_wrapper"
|
|
3573
|
+
version = "0.1.2"
|
|
3574
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3575
|
+
checksum = "2047c6ded9c721764247e62cd3b03c09ffc529b2ba5b10ec482ae507a4a70160"
|
|
3576
|
+
|
|
3317
3577
|
[[package]]
|
|
3318
3578
|
name = "sys-locale"
|
|
3319
3579
|
version = "0.2.4"
|
|
@@ -3327,6 +3587,27 @@ dependencies = [
|
|
|
3327
3587
|
"windows-sys 0.45.0",
|
|
3328
3588
|
]
|
|
3329
3589
|
|
|
3590
|
+
[[package]]
|
|
3591
|
+
name = "system-configuration"
|
|
3592
|
+
version = "0.5.1"
|
|
3593
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3594
|
+
checksum = "ba3a3adc5c275d719af8cb4272ea1c4a6d668a777f37e115f6d11ddbc1c8e0e7"
|
|
3595
|
+
dependencies = [
|
|
3596
|
+
"bitflags 1.3.2",
|
|
3597
|
+
"core-foundation",
|
|
3598
|
+
"system-configuration-sys",
|
|
3599
|
+
]
|
|
3600
|
+
|
|
3601
|
+
[[package]]
|
|
3602
|
+
name = "system-configuration-sys"
|
|
3603
|
+
version = "0.5.0"
|
|
3604
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3605
|
+
checksum = "a75fb188eb626b924683e3b95e3a48e63551fcfb51949de2f06a9d91dbee93c9"
|
|
3606
|
+
dependencies = [
|
|
3607
|
+
"core-foundation-sys",
|
|
3608
|
+
"libc",
|
|
3609
|
+
]
|
|
3610
|
+
|
|
3330
3611
|
[[package]]
|
|
3331
3612
|
name = "system-deps"
|
|
3332
3613
|
version = "5.0.0"
|
|
@@ -3342,29 +3623,29 @@ dependencies = [
|
|
|
3342
3623
|
|
|
3343
3624
|
[[package]]
|
|
3344
3625
|
name = "system-deps"
|
|
3345
|
-
version = "6.
|
|
3626
|
+
version = "6.2.2"
|
|
3346
3627
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3347
|
-
checksum = "
|
|
3628
|
+
checksum = "a3e535eb8dded36d55ec13eddacd30dec501792ff23a0b1682c38601b8cf2349"
|
|
3348
3629
|
dependencies = [
|
|
3349
|
-
"cfg-expr 0.15.
|
|
3350
|
-
"heck 0.
|
|
3630
|
+
"cfg-expr 0.15.8",
|
|
3631
|
+
"heck 0.5.0",
|
|
3351
3632
|
"pkg-config",
|
|
3352
|
-
"toml 0.
|
|
3353
|
-
"version-compare 0.
|
|
3633
|
+
"toml 0.8.12",
|
|
3634
|
+
"version-compare 0.2.0",
|
|
3354
3635
|
]
|
|
3355
3636
|
|
|
3356
3637
|
[[package]]
|
|
3357
3638
|
name = "tao"
|
|
3358
|
-
version = "0.16.
|
|
3639
|
+
version = "0.16.9"
|
|
3359
3640
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3360
|
-
checksum = "
|
|
3641
|
+
checksum = "575c856fc21e551074869dcfaad8f706412bd5b803dfa0fbf6881c4ff4bfafab"
|
|
3361
3642
|
dependencies = [
|
|
3362
3643
|
"bitflags 1.3.2",
|
|
3363
3644
|
"cairo-rs",
|
|
3364
3645
|
"cc",
|
|
3365
3646
|
"cocoa",
|
|
3366
3647
|
"core-foundation",
|
|
3367
|
-
"core-graphics",
|
|
3648
|
+
"core-graphics 0.22.3",
|
|
3368
3649
|
"crossbeam-channel",
|
|
3369
3650
|
"dirs-next",
|
|
3370
3651
|
"dispatch",
|
|
@@ -3396,17 +3677,17 @@ dependencies = [
|
|
|
3396
3677
|
"serde",
|
|
3397
3678
|
"tao-macros",
|
|
3398
3679
|
"unicode-segmentation",
|
|
3399
|
-
"uuid 1.
|
|
3680
|
+
"uuid 1.8.0",
|
|
3400
3681
|
"windows 0.39.0",
|
|
3401
|
-
"windows-implement",
|
|
3682
|
+
"windows-implement 0.39.0",
|
|
3402
3683
|
"x11-dl",
|
|
3403
3684
|
]
|
|
3404
3685
|
|
|
3405
3686
|
[[package]]
|
|
3406
3687
|
name = "tao-macros"
|
|
3407
|
-
version = "0.1.
|
|
3688
|
+
version = "0.1.2"
|
|
3408
3689
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3409
|
-
checksum = "
|
|
3690
|
+
checksum = "ec114582505d158b669b136e6851f85840c109819d77c42bb7c0709f727d18c2"
|
|
3410
3691
|
dependencies = [
|
|
3411
3692
|
"proc-macro2",
|
|
3412
3693
|
"quote",
|
|
@@ -3415,9 +3696,9 @@ dependencies = [
|
|
|
3415
3696
|
|
|
3416
3697
|
[[package]]
|
|
3417
3698
|
name = "tar"
|
|
3418
|
-
version = "0.4.
|
|
3699
|
+
version = "0.4.40"
|
|
3419
3700
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3420
|
-
checksum = "
|
|
3701
|
+
checksum = "b16afcea1f22891c49a00c751c7b63b2233284064f11a200fc624137c51e2ddb"
|
|
3421
3702
|
dependencies = [
|
|
3422
3703
|
"filetime",
|
|
3423
3704
|
"libc",
|
|
@@ -3426,20 +3707,21 @@ dependencies = [
|
|
|
3426
3707
|
|
|
3427
3708
|
[[package]]
|
|
3428
3709
|
name = "target-lexicon"
|
|
3429
|
-
version = "0.12.
|
|
3710
|
+
version = "0.12.14"
|
|
3430
3711
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3431
|
-
checksum = "
|
|
3712
|
+
checksum = "e1fc403891a21bcfb7c37834ba66a547a8f402146eba7265b5a6d88059c9ff2f"
|
|
3432
3713
|
|
|
3433
3714
|
[[package]]
|
|
3434
3715
|
name = "tauri"
|
|
3435
|
-
version = "1.
|
|
3716
|
+
version = "1.6.2"
|
|
3436
3717
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3437
|
-
checksum = "
|
|
3718
|
+
checksum = "047aefcc7721bfb8024a9bc39d4719112262610502de7a224fa62c4570cd78d4"
|
|
3438
3719
|
dependencies = [
|
|
3439
3720
|
"anyhow",
|
|
3440
3721
|
"bytes",
|
|
3441
3722
|
"cocoa",
|
|
3442
3723
|
"dirs-next",
|
|
3724
|
+
"dunce",
|
|
3443
3725
|
"embed_plist",
|
|
3444
3726
|
"encoding_rs",
|
|
3445
3727
|
"flate2",
|
|
@@ -3447,9 +3729,11 @@ dependencies = [
|
|
|
3447
3729
|
"glib",
|
|
3448
3730
|
"glob",
|
|
3449
3731
|
"gtk",
|
|
3450
|
-
"heck 0.
|
|
3732
|
+
"heck 0.5.0",
|
|
3451
3733
|
"http",
|
|
3452
3734
|
"ignore",
|
|
3735
|
+
"indexmap 1.9.3",
|
|
3736
|
+
"nix 0.26.4",
|
|
3453
3737
|
"notify-rust",
|
|
3454
3738
|
"objc",
|
|
3455
3739
|
"once_cell",
|
|
@@ -3479,7 +3763,7 @@ dependencies = [
|
|
|
3479
3763
|
"thiserror",
|
|
3480
3764
|
"tokio",
|
|
3481
3765
|
"url",
|
|
3482
|
-
"uuid 1.
|
|
3766
|
+
"uuid 1.8.0",
|
|
3483
3767
|
"webkit2gtk",
|
|
3484
3768
|
"webview2-com",
|
|
3485
3769
|
"windows 0.39.0",
|
|
@@ -3487,9 +3771,9 @@ dependencies = [
|
|
|
3487
3771
|
|
|
3488
3772
|
[[package]]
|
|
3489
3773
|
name = "tauri-build"
|
|
3490
|
-
version = "1.5.
|
|
3774
|
+
version = "1.5.1"
|
|
3491
3775
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3492
|
-
checksum = "
|
|
3776
|
+
checksum = "e9914a4715e0b75d9f387a285c7e26b5bbfeb1249ad9f842675a82481565c532"
|
|
3493
3777
|
dependencies = [
|
|
3494
3778
|
"anyhow",
|
|
3495
3779
|
"cargo_toml",
|
|
@@ -3506,11 +3790,11 @@ dependencies = [
|
|
|
3506
3790
|
|
|
3507
3791
|
[[package]]
|
|
3508
3792
|
name = "tauri-codegen"
|
|
3509
|
-
version = "1.4.
|
|
3793
|
+
version = "1.4.2"
|
|
3510
3794
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3511
|
-
checksum = "
|
|
3795
|
+
checksum = "a1554c5857f65dbc377cefb6b97c8ac77b1cb2a90d30d3448114d5d6b48a77fc"
|
|
3512
3796
|
dependencies = [
|
|
3513
|
-
"base64 0.21.
|
|
3797
|
+
"base64 0.21.7",
|
|
3514
3798
|
"brotli",
|
|
3515
3799
|
"ico",
|
|
3516
3800
|
"json-patch",
|
|
@@ -3526,15 +3810,15 @@ dependencies = [
|
|
|
3526
3810
|
"tauri-utils",
|
|
3527
3811
|
"thiserror",
|
|
3528
3812
|
"time",
|
|
3529
|
-
"uuid 1.
|
|
3813
|
+
"uuid 1.8.0",
|
|
3530
3814
|
"walkdir",
|
|
3531
3815
|
]
|
|
3532
3816
|
|
|
3533
3817
|
[[package]]
|
|
3534
3818
|
name = "tauri-macros"
|
|
3535
|
-
version = "1.4.
|
|
3819
|
+
version = "1.4.3"
|
|
3536
3820
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3537
|
-
checksum = "
|
|
3821
|
+
checksum = "277abf361a3a6993ec16bcbb179de0d6518009b851090a01adfea12ac89fa875"
|
|
3538
3822
|
dependencies = [
|
|
3539
3823
|
"heck 0.4.1",
|
|
3540
3824
|
"proc-macro2",
|
|
@@ -3544,13 +3828,25 @@ dependencies = [
|
|
|
3544
3828
|
"tauri-utils",
|
|
3545
3829
|
]
|
|
3546
3830
|
|
|
3831
|
+
[[package]]
|
|
3832
|
+
name = "tauri-plugin-oauth"
|
|
3833
|
+
version = "0.0.0-alpha.0"
|
|
3834
|
+
source = "git+https://github.com/FabianLars/tauri-plugin-oauth?branch=main#50dadbf4a81cba51f625587b7722892f0b4316a6"
|
|
3835
|
+
dependencies = [
|
|
3836
|
+
"httparse",
|
|
3837
|
+
"log",
|
|
3838
|
+
"serde",
|
|
3839
|
+
"tauri",
|
|
3840
|
+
"url",
|
|
3841
|
+
]
|
|
3842
|
+
|
|
3547
3843
|
[[package]]
|
|
3548
3844
|
name = "tauri-plugin-window-state"
|
|
3549
|
-
version = "0.1.
|
|
3550
|
-
source = "git+https://github.com/tauri-apps/plugins-workspace?branch=v1#
|
|
3845
|
+
version = "0.1.1"
|
|
3846
|
+
source = "git+https://github.com/tauri-apps/plugins-workspace?branch=v1#5e3900e682e13f3759b439116ae2f77a6d389ca2"
|
|
3551
3847
|
dependencies = [
|
|
3552
3848
|
"bincode",
|
|
3553
|
-
"bitflags 2.
|
|
3849
|
+
"bitflags 2.5.0",
|
|
3554
3850
|
"log",
|
|
3555
3851
|
"serde",
|
|
3556
3852
|
"serde_json",
|
|
@@ -3560,9 +3856,9 @@ dependencies = [
|
|
|
3560
3856
|
|
|
3561
3857
|
[[package]]
|
|
3562
3858
|
name = "tauri-runtime"
|
|
3563
|
-
version = "0.14.
|
|
3859
|
+
version = "0.14.2"
|
|
3564
3860
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3565
|
-
checksum = "
|
|
3861
|
+
checksum = "cf2d0652aa2891ff3e9caa2401405257ea29ab8372cce01f186a5825f1bd0e76"
|
|
3566
3862
|
dependencies = [
|
|
3567
3863
|
"gtk",
|
|
3568
3864
|
"http",
|
|
@@ -3574,17 +3870,18 @@ dependencies = [
|
|
|
3574
3870
|
"tauri-utils",
|
|
3575
3871
|
"thiserror",
|
|
3576
3872
|
"url",
|
|
3577
|
-
"uuid 1.
|
|
3873
|
+
"uuid 1.8.0",
|
|
3578
3874
|
"webview2-com",
|
|
3579
3875
|
"windows 0.39.0",
|
|
3580
3876
|
]
|
|
3581
3877
|
|
|
3582
3878
|
[[package]]
|
|
3583
3879
|
name = "tauri-runtime-wry"
|
|
3584
|
-
version = "0.14.
|
|
3880
|
+
version = "0.14.5"
|
|
3585
3881
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3586
|
-
checksum = "
|
|
3882
|
+
checksum = "067c56fc153b3caf406d7cd6de4486c80d1d66c0f414f39e94cb2f5543f6445f"
|
|
3587
3883
|
dependencies = [
|
|
3884
|
+
"arboard",
|
|
3588
3885
|
"cocoa",
|
|
3589
3886
|
"gtk",
|
|
3590
3887
|
"percent-encoding",
|
|
@@ -3592,7 +3889,7 @@ dependencies = [
|
|
|
3592
3889
|
"raw-window-handle",
|
|
3593
3890
|
"tauri-runtime",
|
|
3594
3891
|
"tauri-utils",
|
|
3595
|
-
"uuid 1.
|
|
3892
|
+
"uuid 1.8.0",
|
|
3596
3893
|
"webkit2gtk",
|
|
3597
3894
|
"webview2-com",
|
|
3598
3895
|
"windows 0.39.0",
|
|
@@ -3601,22 +3898,22 @@ dependencies = [
|
|
|
3601
3898
|
|
|
3602
3899
|
[[package]]
|
|
3603
3900
|
name = "tauri-utils"
|
|
3604
|
-
version = "1.5.
|
|
3901
|
+
version = "1.5.3"
|
|
3605
3902
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3606
|
-
checksum = "
|
|
3903
|
+
checksum = "75ad0bbb31fccd1f4c56275d0a5c3abdf1f59999f72cb4ef8b79b4ed42082a21"
|
|
3607
3904
|
dependencies = [
|
|
3608
3905
|
"brotli",
|
|
3609
3906
|
"ctor",
|
|
3610
3907
|
"dunce",
|
|
3611
3908
|
"glob",
|
|
3612
3909
|
"heck 0.4.1",
|
|
3613
|
-
"html5ever
|
|
3910
|
+
"html5ever",
|
|
3614
3911
|
"infer",
|
|
3615
3912
|
"json-patch",
|
|
3616
3913
|
"kuchikiki",
|
|
3617
3914
|
"log",
|
|
3618
3915
|
"memchr",
|
|
3619
|
-
"phf 0.
|
|
3916
|
+
"phf 0.11.2",
|
|
3620
3917
|
"proc-macro2",
|
|
3621
3918
|
"quote",
|
|
3622
3919
|
"semver",
|
|
@@ -3626,7 +3923,7 @@ dependencies = [
|
|
|
3626
3923
|
"thiserror",
|
|
3627
3924
|
"url",
|
|
3628
3925
|
"walkdir",
|
|
3629
|
-
"windows
|
|
3926
|
+
"windows-version",
|
|
3630
3927
|
]
|
|
3631
3928
|
|
|
3632
3929
|
[[package]]
|
|
@@ -3636,31 +3933,30 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
3636
3933
|
checksum = "5993dc129e544393574288923d1ec447c857f3f644187f4fbf7d9a875fbfc4fb"
|
|
3637
3934
|
dependencies = [
|
|
3638
3935
|
"embed-resource",
|
|
3639
|
-
"toml 0.7.
|
|
3936
|
+
"toml 0.7.8",
|
|
3640
3937
|
]
|
|
3641
3938
|
|
|
3642
3939
|
[[package]]
|
|
3643
3940
|
name = "tauri-winrt-notification"
|
|
3644
|
-
version = "0.1
|
|
3941
|
+
version = "0.2.1"
|
|
3645
3942
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3646
|
-
checksum = "
|
|
3943
|
+
checksum = "f89f5fb70d6f62381f5d9b2ba9008196150b40b75f3068eb24faeddf1c686871"
|
|
3647
3944
|
dependencies = [
|
|
3648
|
-
"quick-xml
|
|
3649
|
-
"windows 0.
|
|
3945
|
+
"quick-xml",
|
|
3946
|
+
"windows 0.56.0",
|
|
3947
|
+
"windows-version",
|
|
3650
3948
|
]
|
|
3651
3949
|
|
|
3652
3950
|
[[package]]
|
|
3653
3951
|
name = "tempfile"
|
|
3654
|
-
version = "3.
|
|
3952
|
+
version = "3.10.1"
|
|
3655
3953
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3656
|
-
checksum = "
|
|
3954
|
+
checksum = "85b77fafb263dd9d05cbeac119526425676db3784113aa9295c88498cbf8bff1"
|
|
3657
3955
|
dependencies = [
|
|
3658
|
-
"autocfg",
|
|
3659
3956
|
"cfg-if",
|
|
3660
3957
|
"fastrand",
|
|
3661
|
-
"redox_syscall 0.3.5",
|
|
3662
3958
|
"rustix",
|
|
3663
|
-
"windows-sys 0.
|
|
3959
|
+
"windows-sys 0.52.0",
|
|
3664
3960
|
]
|
|
3665
3961
|
|
|
3666
3962
|
[[package]]
|
|
@@ -3692,41 +3988,55 @@ checksum = "8eaa81235c7058867fa8c0e7314f33dcce9c215f535d1913822a2b3f5e289f3c"
|
|
|
3692
3988
|
|
|
3693
3989
|
[[package]]
|
|
3694
3990
|
name = "thiserror"
|
|
3695
|
-
version = "1.0.
|
|
3991
|
+
version = "1.0.59"
|
|
3696
3992
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3697
|
-
checksum = "
|
|
3993
|
+
checksum = "f0126ad08bff79f29fc3ae6a55cc72352056dfff61e3ff8bb7129476d44b23aa"
|
|
3698
3994
|
dependencies = [
|
|
3699
3995
|
"thiserror-impl",
|
|
3700
3996
|
]
|
|
3701
3997
|
|
|
3702
3998
|
[[package]]
|
|
3703
3999
|
name = "thiserror-impl"
|
|
3704
|
-
version = "1.0.
|
|
4000
|
+
version = "1.0.59"
|
|
3705
4001
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3706
|
-
checksum = "
|
|
4002
|
+
checksum = "d1cd413b5d558b4c5bf3680e324a6fa5014e7b7c067a51e69dbdf47eb7148b66"
|
|
3707
4003
|
dependencies = [
|
|
3708
4004
|
"proc-macro2",
|
|
3709
4005
|
"quote",
|
|
3710
|
-
"syn 2.0.
|
|
4006
|
+
"syn 2.0.60",
|
|
3711
4007
|
]
|
|
3712
4008
|
|
|
3713
4009
|
[[package]]
|
|
3714
4010
|
name = "thread_local"
|
|
3715
|
-
version = "1.1.
|
|
4011
|
+
version = "1.1.8"
|
|
3716
4012
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3717
|
-
checksum = "
|
|
4013
|
+
checksum = "8b9ef9bad013ada3808854ceac7b46812a6465ba368859a37e2100283d2d719c"
|
|
3718
4014
|
dependencies = [
|
|
3719
4015
|
"cfg-if",
|
|
3720
4016
|
"once_cell",
|
|
3721
4017
|
]
|
|
3722
4018
|
|
|
4019
|
+
[[package]]
|
|
4020
|
+
name = "tiff"
|
|
4021
|
+
version = "0.9.1"
|
|
4022
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4023
|
+
checksum = "ba1310fcea54c6a9a4fd1aad794ecc02c31682f6bfbecdf460bf19533eed1e3e"
|
|
4024
|
+
dependencies = [
|
|
4025
|
+
"flate2",
|
|
4026
|
+
"jpeg-decoder",
|
|
4027
|
+
"weezl",
|
|
4028
|
+
]
|
|
4029
|
+
|
|
3723
4030
|
[[package]]
|
|
3724
4031
|
name = "time"
|
|
3725
|
-
version = "0.3.
|
|
4032
|
+
version = "0.3.36"
|
|
3726
4033
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3727
|
-
checksum = "
|
|
4034
|
+
checksum = "5dfd88e563464686c916c7e46e623e520ddc6d79fa6641390f2e3fa86e83e885"
|
|
3728
4035
|
dependencies = [
|
|
3729
|
-
"
|
|
4036
|
+
"deranged",
|
|
4037
|
+
"itoa 1.0.11",
|
|
4038
|
+
"num-conv",
|
|
4039
|
+
"powerfmt",
|
|
3730
4040
|
"serde",
|
|
3731
4041
|
"time-core",
|
|
3732
4042
|
"time-macros",
|
|
@@ -3734,16 +4044,17 @@ dependencies = [
|
|
|
3734
4044
|
|
|
3735
4045
|
[[package]]
|
|
3736
4046
|
name = "time-core"
|
|
3737
|
-
version = "0.1.
|
|
4047
|
+
version = "0.1.2"
|
|
3738
4048
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3739
|
-
checksum = "
|
|
4049
|
+
checksum = "ef927ca75afb808a4d64dd374f00a2adf8d0fcff8e7b184af886c3c87ec4a3f3"
|
|
3740
4050
|
|
|
3741
4051
|
[[package]]
|
|
3742
4052
|
name = "time-macros"
|
|
3743
|
-
version = "0.2.
|
|
4053
|
+
version = "0.2.18"
|
|
3744
4054
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3745
|
-
checksum = "
|
|
4055
|
+
checksum = "3f252a68540fde3a3877aeea552b832b40ab9a69e318efd078774a01ddee1ccf"
|
|
3746
4056
|
dependencies = [
|
|
4057
|
+
"num-conv",
|
|
3747
4058
|
"time-core",
|
|
3748
4059
|
]
|
|
3749
4060
|
|
|
@@ -3764,11 +4075,10 @@ checksum = "1f3ccbac311fea05f86f61904b462b55fb3df8837a366dfc601a0161d0532f20"
|
|
|
3764
4075
|
|
|
3765
4076
|
[[package]]
|
|
3766
4077
|
name = "tokio"
|
|
3767
|
-
version = "1.
|
|
4078
|
+
version = "1.37.0"
|
|
3768
4079
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3769
|
-
checksum = "
|
|
4080
|
+
checksum = "1adbebffeca75fcfd058afa480fb6c0b81e165a0323f9c9d39c9697e37c46787"
|
|
3770
4081
|
dependencies = [
|
|
3771
|
-
"autocfg",
|
|
3772
4082
|
"backtrace",
|
|
3773
4083
|
"bytes",
|
|
3774
4084
|
"libc",
|
|
@@ -3791,9 +4101,9 @@ dependencies = [
|
|
|
3791
4101
|
|
|
3792
4102
|
[[package]]
|
|
3793
4103
|
name = "tokio-util"
|
|
3794
|
-
version = "0.7.
|
|
4104
|
+
version = "0.7.10"
|
|
3795
4105
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3796
|
-
checksum = "
|
|
4106
|
+
checksum = "5419f34732d9eb6ee4c3578b7989078579b7f039cbbb9ca2c4da015749371e15"
|
|
3797
4107
|
dependencies = [
|
|
3798
4108
|
"bytes",
|
|
3799
4109
|
"futures-core",
|
|
@@ -3814,36 +4124,72 @@ dependencies = [
|
|
|
3814
4124
|
|
|
3815
4125
|
[[package]]
|
|
3816
4126
|
name = "toml"
|
|
3817
|
-
version = "0.7.
|
|
4127
|
+
version = "0.7.8"
|
|
4128
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4129
|
+
checksum = "dd79e69d3b627db300ff956027cc6c3798cef26d22526befdfcd12feeb6d2257"
|
|
4130
|
+
dependencies = [
|
|
4131
|
+
"serde",
|
|
4132
|
+
"serde_spanned",
|
|
4133
|
+
"toml_datetime",
|
|
4134
|
+
"toml_edit 0.19.15",
|
|
4135
|
+
]
|
|
4136
|
+
|
|
4137
|
+
[[package]]
|
|
4138
|
+
name = "toml"
|
|
4139
|
+
version = "0.8.12"
|
|
3818
4140
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3819
|
-
checksum = "
|
|
4141
|
+
checksum = "e9dd1545e8208b4a5af1aa9bbd0b4cf7e9ea08fabc5d0a5c67fcaafa17433aa3"
|
|
3820
4142
|
dependencies = [
|
|
3821
4143
|
"serde",
|
|
3822
4144
|
"serde_spanned",
|
|
3823
4145
|
"toml_datetime",
|
|
3824
|
-
"toml_edit",
|
|
4146
|
+
"toml_edit 0.22.12",
|
|
3825
4147
|
]
|
|
3826
4148
|
|
|
3827
4149
|
[[package]]
|
|
3828
4150
|
name = "toml_datetime"
|
|
3829
|
-
version = "0.6.
|
|
4151
|
+
version = "0.6.5"
|
|
3830
4152
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3831
|
-
checksum = "
|
|
4153
|
+
checksum = "3550f4e9685620ac18a50ed434eb3aec30db8ba93b0287467bca5826ea25baf1"
|
|
3832
4154
|
dependencies = [
|
|
3833
4155
|
"serde",
|
|
3834
4156
|
]
|
|
3835
4157
|
|
|
3836
4158
|
[[package]]
|
|
3837
4159
|
name = "toml_edit"
|
|
3838
|
-
version = "0.19.
|
|
4160
|
+
version = "0.19.15"
|
|
3839
4161
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3840
|
-
checksum = "
|
|
4162
|
+
checksum = "1b5bb770da30e5cbfde35a2d7b9b8a2c4b8ef89548a7a6aeab5c9a576e3e7421"
|
|
3841
4163
|
dependencies = [
|
|
3842
|
-
"indexmap 2.
|
|
4164
|
+
"indexmap 2.2.6",
|
|
3843
4165
|
"serde",
|
|
3844
4166
|
"serde_spanned",
|
|
3845
4167
|
"toml_datetime",
|
|
3846
|
-
"winnow",
|
|
4168
|
+
"winnow 0.5.40",
|
|
4169
|
+
]
|
|
4170
|
+
|
|
4171
|
+
[[package]]
|
|
4172
|
+
name = "toml_edit"
|
|
4173
|
+
version = "0.21.1"
|
|
4174
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4175
|
+
checksum = "6a8534fd7f78b5405e860340ad6575217ce99f38d4d5c8f2442cb5ecb50090e1"
|
|
4176
|
+
dependencies = [
|
|
4177
|
+
"indexmap 2.2.6",
|
|
4178
|
+
"toml_datetime",
|
|
4179
|
+
"winnow 0.5.40",
|
|
4180
|
+
]
|
|
4181
|
+
|
|
4182
|
+
[[package]]
|
|
4183
|
+
name = "toml_edit"
|
|
4184
|
+
version = "0.22.12"
|
|
4185
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4186
|
+
checksum = "d3328d4f68a705b2a4498da1d580585d39a6510f98318a2cec3018a7ec61ddef"
|
|
4187
|
+
dependencies = [
|
|
4188
|
+
"indexmap 2.2.6",
|
|
4189
|
+
"serde",
|
|
4190
|
+
"serde_spanned",
|
|
4191
|
+
"toml_datetime",
|
|
4192
|
+
"winnow 0.6.7",
|
|
3847
4193
|
]
|
|
3848
4194
|
|
|
3849
4195
|
[[package]]
|
|
@@ -3854,11 +4200,10 @@ checksum = "b6bc1c9ce2b5135ac7f93c72918fc37feb872bdc6a5533a8b85eb4b86bfdae52"
|
|
|
3854
4200
|
|
|
3855
4201
|
[[package]]
|
|
3856
4202
|
name = "tracing"
|
|
3857
|
-
version = "0.1.
|
|
4203
|
+
version = "0.1.40"
|
|
3858
4204
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3859
|
-
checksum = "
|
|
4205
|
+
checksum = "c3523ab5a71916ccf420eebdf5521fcef02141234bbc0b8a49f2fdc4544364ef"
|
|
3860
4206
|
dependencies = [
|
|
3861
|
-
"cfg-if",
|
|
3862
4207
|
"pin-project-lite",
|
|
3863
4208
|
"tracing-attributes",
|
|
3864
4209
|
"tracing-core",
|
|
@@ -3866,20 +4211,20 @@ dependencies = [
|
|
|
3866
4211
|
|
|
3867
4212
|
[[package]]
|
|
3868
4213
|
name = "tracing-attributes"
|
|
3869
|
-
version = "0.1.
|
|
4214
|
+
version = "0.1.27"
|
|
3870
4215
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3871
|
-
checksum = "
|
|
4216
|
+
checksum = "34704c8d6ebcbc939824180af020566b01a7c01f80641264eba0999f6c2b6be7"
|
|
3872
4217
|
dependencies = [
|
|
3873
4218
|
"proc-macro2",
|
|
3874
4219
|
"quote",
|
|
3875
|
-
"syn 2.0.
|
|
4220
|
+
"syn 2.0.60",
|
|
3876
4221
|
]
|
|
3877
4222
|
|
|
3878
4223
|
[[package]]
|
|
3879
4224
|
name = "tracing-core"
|
|
3880
|
-
version = "0.1.
|
|
4225
|
+
version = "0.1.32"
|
|
3881
4226
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3882
|
-
checksum = "
|
|
4227
|
+
checksum = "c06d3da6113f116aaee68e4d601191614c9053067f9ab7f6edbcb161237daa54"
|
|
3883
4228
|
dependencies = [
|
|
3884
4229
|
"once_cell",
|
|
3885
4230
|
"valuable",
|
|
@@ -3887,20 +4232,20 @@ dependencies = [
|
|
|
3887
4232
|
|
|
3888
4233
|
[[package]]
|
|
3889
4234
|
name = "tracing-log"
|
|
3890
|
-
version = "0.
|
|
4235
|
+
version = "0.2.0"
|
|
3891
4236
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3892
|
-
checksum = "
|
|
4237
|
+
checksum = "ee855f1f400bd0e5c02d150ae5de3840039a3f54b025156404e34c23c03f47c3"
|
|
3893
4238
|
dependencies = [
|
|
3894
|
-
"lazy_static",
|
|
3895
4239
|
"log",
|
|
4240
|
+
"once_cell",
|
|
3896
4241
|
"tracing-core",
|
|
3897
4242
|
]
|
|
3898
4243
|
|
|
3899
4244
|
[[package]]
|
|
3900
4245
|
name = "tracing-subscriber"
|
|
3901
|
-
version = "0.3.
|
|
4246
|
+
version = "0.3.18"
|
|
3902
4247
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3903
|
-
checksum = "
|
|
4248
|
+
checksum = "ad0f048c97dbd9faa9b7df56362b8ebcaa52adb06b498c050d2f4e32f90a7a8b"
|
|
3904
4249
|
dependencies = [
|
|
3905
4250
|
"matchers",
|
|
3906
4251
|
"nu-ansi-term",
|
|
@@ -3914,69 +4259,84 @@ dependencies = [
|
|
|
3914
4259
|
"tracing-log",
|
|
3915
4260
|
]
|
|
3916
4261
|
|
|
4262
|
+
[[package]]
|
|
4263
|
+
name = "tree_magic_mini"
|
|
4264
|
+
version = "3.1.4"
|
|
4265
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4266
|
+
checksum = "77ee137597cdb361b55a4746983e4ac1b35ab6024396a419944ad473bb915265"
|
|
4267
|
+
dependencies = [
|
|
4268
|
+
"fnv",
|
|
4269
|
+
"home",
|
|
4270
|
+
"memchr",
|
|
4271
|
+
"nom",
|
|
4272
|
+
"once_cell",
|
|
4273
|
+
"petgraph",
|
|
4274
|
+
]
|
|
4275
|
+
|
|
3917
4276
|
[[package]]
|
|
3918
4277
|
name = "treediff"
|
|
3919
|
-
version = "4.0.
|
|
4278
|
+
version = "4.0.3"
|
|
3920
4279
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3921
|
-
checksum = "
|
|
4280
|
+
checksum = "4d127780145176e2b5d16611cc25a900150e86e9fd79d3bde6ff3a37359c9cb5"
|
|
3922
4281
|
dependencies = [
|
|
3923
4282
|
"serde_json",
|
|
3924
4283
|
]
|
|
3925
4284
|
|
|
3926
4285
|
[[package]]
|
|
3927
4286
|
name = "try-lock"
|
|
3928
|
-
version = "0.2.
|
|
4287
|
+
version = "0.2.5"
|
|
3929
4288
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3930
|
-
checksum = "
|
|
4289
|
+
checksum = "e421abadd41a4225275504ea4d6566923418b7f05506fbc9c0fe86ba7396114b"
|
|
3931
4290
|
|
|
3932
4291
|
[[package]]
|
|
3933
4292
|
name = "typenum"
|
|
3934
|
-
version = "1.
|
|
4293
|
+
version = "1.17.0"
|
|
3935
4294
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3936
|
-
checksum = "
|
|
4295
|
+
checksum = "42ff0bf0c66b8238c6f3b578df37d0b7848e55df8577b3f74f92a69acceeb825"
|
|
3937
4296
|
|
|
3938
4297
|
[[package]]
|
|
3939
4298
|
name = "uds_windows"
|
|
3940
|
-
version = "1.0
|
|
4299
|
+
version = "1.1.0"
|
|
3941
4300
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3942
|
-
checksum = "
|
|
4301
|
+
checksum = "89daebc3e6fd160ac4aa9fc8b3bf71e1f74fbf92367ae71fb83a037e8bf164b9"
|
|
3943
4302
|
dependencies = [
|
|
4303
|
+
"memoffset 0.9.1",
|
|
3944
4304
|
"tempfile",
|
|
3945
4305
|
"winapi",
|
|
3946
4306
|
]
|
|
3947
4307
|
|
|
3948
4308
|
[[package]]
|
|
3949
4309
|
name = "unicode-bidi"
|
|
3950
|
-
version = "0.3.
|
|
4310
|
+
version = "0.3.15"
|
|
3951
4311
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3952
|
-
checksum = "
|
|
4312
|
+
checksum = "08f95100a766bf4f8f28f90d77e0a5461bbdb219042e7679bebe79004fed8d75"
|
|
3953
4313
|
|
|
3954
4314
|
[[package]]
|
|
3955
4315
|
name = "unicode-ident"
|
|
3956
|
-
version = "1.0.
|
|
4316
|
+
version = "1.0.12"
|
|
3957
4317
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3958
|
-
checksum = "
|
|
4318
|
+
checksum = "3354b9ac3fae1ff6755cb6db53683adb661634f67557942dea4facebec0fee4b"
|
|
3959
4319
|
|
|
3960
4320
|
[[package]]
|
|
3961
4321
|
name = "unicode-normalization"
|
|
3962
|
-
version = "0.1.
|
|
4322
|
+
version = "0.1.23"
|
|
3963
4323
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3964
|
-
checksum = "
|
|
4324
|
+
checksum = "a56d1686db2308d901306f92a263857ef59ea39678a5458e7cb17f01415101f5"
|
|
3965
4325
|
dependencies = [
|
|
3966
4326
|
"tinyvec",
|
|
3967
4327
|
]
|
|
3968
4328
|
|
|
3969
4329
|
[[package]]
|
|
3970
4330
|
name = "unicode-segmentation"
|
|
3971
|
-
version = "1.
|
|
4331
|
+
version = "1.11.0"
|
|
3972
4332
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3973
|
-
checksum = "
|
|
4333
|
+
checksum = "d4c87d22b6e3f4a18d4d40ef354e97c90fcb14dd91d7dc0aa9d8a1172ebf7202"
|
|
3974
4334
|
|
|
3975
4335
|
[[package]]
|
|
3976
4336
|
name = "url"
|
|
3977
|
-
version = "2.
|
|
4337
|
+
version = "2.5.0"
|
|
3978
4338
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3979
|
-
checksum = "
|
|
4339
|
+
checksum = "31e6302e3bb753d46e83516cae55ae196fc0c309407cf11ab35cc51a4c2a4633"
|
|
3980
4340
|
dependencies = [
|
|
3981
4341
|
"form_urlencoded",
|
|
3982
4342
|
"idna",
|
|
@@ -3998,11 +4358,11 @@ checksum = "bc5cf98d8186244414c848017f0e2676b3fcb46807f6668a97dfe67359a3c4b7"
|
|
|
3998
4358
|
|
|
3999
4359
|
[[package]]
|
|
4000
4360
|
name = "uuid"
|
|
4001
|
-
version = "1.
|
|
4361
|
+
version = "1.8.0"
|
|
4002
4362
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4003
|
-
checksum = "
|
|
4363
|
+
checksum = "a183cf7feeba97b4dd1c0d46788634f6221d87fa961b305bed08c851829efcc0"
|
|
4004
4364
|
dependencies = [
|
|
4005
|
-
"getrandom 0.2.
|
|
4365
|
+
"getrandom 0.2.14",
|
|
4006
4366
|
]
|
|
4007
4367
|
|
|
4008
4368
|
[[package]]
|
|
@@ -4025,9 +4385,9 @@ checksum = "1c18c859eead79d8b95d09e4678566e8d70105c4e7b251f707a03df32442661b"
|
|
|
4025
4385
|
|
|
4026
4386
|
[[package]]
|
|
4027
4387
|
name = "version-compare"
|
|
4028
|
-
version = "0.
|
|
4388
|
+
version = "0.2.0"
|
|
4029
4389
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4030
|
-
checksum = "
|
|
4390
|
+
checksum = "852e951cb7832cb45cb1169900d19760cfa39b82bc0ea9c0e5a14ae88411c98b"
|
|
4031
4391
|
|
|
4032
4392
|
[[package]]
|
|
4033
4393
|
name = "version_check"
|
|
@@ -4055,17 +4415,11 @@ dependencies = [
|
|
|
4055
4415
|
"libc",
|
|
4056
4416
|
]
|
|
4057
4417
|
|
|
4058
|
-
[[package]]
|
|
4059
|
-
name = "waker-fn"
|
|
4060
|
-
version = "1.1.0"
|
|
4061
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4062
|
-
checksum = "9d5b2c62b4012a3e1eca5a7e077d13b3bf498c4073e33ccd58626607748ceeca"
|
|
4063
|
-
|
|
4064
4418
|
[[package]]
|
|
4065
4419
|
name = "walkdir"
|
|
4066
|
-
version = "2.
|
|
4420
|
+
version = "2.5.0"
|
|
4067
4421
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4068
|
-
checksum = "
|
|
4422
|
+
checksum = "29790946404f91d9c5d06f9874efddea1dc06c5efe94541a7d6863108e3a5e4b"
|
|
4069
4423
|
dependencies = [
|
|
4070
4424
|
"same-file",
|
|
4071
4425
|
"winapi-util",
|
|
@@ -4094,9 +4448,9 @@ checksum = "9c8d87e72b64a3b4db28d11ce29237c246188f4f51057d65a7eab63b7987e423"
|
|
|
4094
4448
|
|
|
4095
4449
|
[[package]]
|
|
4096
4450
|
name = "wasm-bindgen"
|
|
4097
|
-
version = "0.2.
|
|
4451
|
+
version = "0.2.92"
|
|
4098
4452
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4099
|
-
checksum = "
|
|
4453
|
+
checksum = "4be2531df63900aeb2bca0daaaddec08491ee64ceecbee5076636a3b026795a8"
|
|
4100
4454
|
dependencies = [
|
|
4101
4455
|
"cfg-if",
|
|
4102
4456
|
"wasm-bindgen-macro",
|
|
@@ -4104,24 +4458,24 @@ dependencies = [
|
|
|
4104
4458
|
|
|
4105
4459
|
[[package]]
|
|
4106
4460
|
name = "wasm-bindgen-backend"
|
|
4107
|
-
version = "0.2.
|
|
4461
|
+
version = "0.2.92"
|
|
4108
4462
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4109
|
-
checksum = "
|
|
4463
|
+
checksum = "614d787b966d3989fa7bb98a654e369c762374fd3213d212cfc0251257e747da"
|
|
4110
4464
|
dependencies = [
|
|
4111
4465
|
"bumpalo",
|
|
4112
4466
|
"log",
|
|
4113
4467
|
"once_cell",
|
|
4114
4468
|
"proc-macro2",
|
|
4115
4469
|
"quote",
|
|
4116
|
-
"syn 2.0.
|
|
4470
|
+
"syn 2.0.60",
|
|
4117
4471
|
"wasm-bindgen-shared",
|
|
4118
4472
|
]
|
|
4119
4473
|
|
|
4120
4474
|
[[package]]
|
|
4121
4475
|
name = "wasm-bindgen-futures"
|
|
4122
|
-
version = "0.4.
|
|
4476
|
+
version = "0.4.42"
|
|
4123
4477
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4124
|
-
checksum = "
|
|
4478
|
+
checksum = "76bc14366121efc8dbb487ab05bcc9d346b3b5ec0eaa76e46594cabbe51762c0"
|
|
4125
4479
|
dependencies = [
|
|
4126
4480
|
"cfg-if",
|
|
4127
4481
|
"js-sys",
|
|
@@ -4131,9 +4485,9 @@ dependencies = [
|
|
|
4131
4485
|
|
|
4132
4486
|
[[package]]
|
|
4133
4487
|
name = "wasm-bindgen-macro"
|
|
4134
|
-
version = "0.2.
|
|
4488
|
+
version = "0.2.92"
|
|
4135
4489
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4136
|
-
checksum = "
|
|
4490
|
+
checksum = "a1f8823de937b71b9460c0c34e25f3da88250760bec0ebac694b49997550d726"
|
|
4137
4491
|
dependencies = [
|
|
4138
4492
|
"quote",
|
|
4139
4493
|
"wasm-bindgen-macro-support",
|
|
@@ -4141,28 +4495,28 @@ dependencies = [
|
|
|
4141
4495
|
|
|
4142
4496
|
[[package]]
|
|
4143
4497
|
name = "wasm-bindgen-macro-support"
|
|
4144
|
-
version = "0.2.
|
|
4498
|
+
version = "0.2.92"
|
|
4145
4499
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4146
|
-
checksum = "
|
|
4500
|
+
checksum = "e94f17b526d0a461a191c78ea52bbce64071ed5c04c9ffe424dcb38f74171bb7"
|
|
4147
4501
|
dependencies = [
|
|
4148
4502
|
"proc-macro2",
|
|
4149
4503
|
"quote",
|
|
4150
|
-
"syn 2.0.
|
|
4504
|
+
"syn 2.0.60",
|
|
4151
4505
|
"wasm-bindgen-backend",
|
|
4152
4506
|
"wasm-bindgen-shared",
|
|
4153
4507
|
]
|
|
4154
4508
|
|
|
4155
4509
|
[[package]]
|
|
4156
4510
|
name = "wasm-bindgen-shared"
|
|
4157
|
-
version = "0.2.
|
|
4511
|
+
version = "0.2.92"
|
|
4158
4512
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4159
|
-
checksum = "
|
|
4513
|
+
checksum = "af190c94f2773fdb3729c55b007a722abb5384da03bc0986df4c289bf5567e96"
|
|
4160
4514
|
|
|
4161
4515
|
[[package]]
|
|
4162
4516
|
name = "wasm-streams"
|
|
4163
|
-
version = "0.
|
|
4517
|
+
version = "0.4.0"
|
|
4164
4518
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4165
|
-
checksum = "
|
|
4519
|
+
checksum = "b65dc4c90b63b118468cf747d8bf3566c1913ef60be765b5730ead9e0a3ba129"
|
|
4166
4520
|
dependencies = [
|
|
4167
4521
|
"futures-util",
|
|
4168
4522
|
"js-sys",
|
|
@@ -4171,11 +4525,84 @@ dependencies = [
|
|
|
4171
4525
|
"web-sys",
|
|
4172
4526
|
]
|
|
4173
4527
|
|
|
4528
|
+
[[package]]
|
|
4529
|
+
name = "wayland-backend"
|
|
4530
|
+
version = "0.3.3"
|
|
4531
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4532
|
+
checksum = "9d50fa61ce90d76474c87f5fc002828d81b32677340112b4ef08079a9d459a40"
|
|
4533
|
+
dependencies = [
|
|
4534
|
+
"cc",
|
|
4535
|
+
"downcast-rs",
|
|
4536
|
+
"rustix",
|
|
4537
|
+
"scoped-tls",
|
|
4538
|
+
"smallvec",
|
|
4539
|
+
"wayland-sys",
|
|
4540
|
+
]
|
|
4541
|
+
|
|
4542
|
+
[[package]]
|
|
4543
|
+
name = "wayland-client"
|
|
4544
|
+
version = "0.31.2"
|
|
4545
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4546
|
+
checksum = "82fb96ee935c2cea6668ccb470fb7771f6215d1691746c2d896b447a00ad3f1f"
|
|
4547
|
+
dependencies = [
|
|
4548
|
+
"bitflags 2.5.0",
|
|
4549
|
+
"rustix",
|
|
4550
|
+
"wayland-backend",
|
|
4551
|
+
"wayland-scanner",
|
|
4552
|
+
]
|
|
4553
|
+
|
|
4554
|
+
[[package]]
|
|
4555
|
+
name = "wayland-protocols"
|
|
4556
|
+
version = "0.31.2"
|
|
4557
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4558
|
+
checksum = "8f81f365b8b4a97f422ac0e8737c438024b5951734506b0e1d775c73030561f4"
|
|
4559
|
+
dependencies = [
|
|
4560
|
+
"bitflags 2.5.0",
|
|
4561
|
+
"wayland-backend",
|
|
4562
|
+
"wayland-client",
|
|
4563
|
+
"wayland-scanner",
|
|
4564
|
+
]
|
|
4565
|
+
|
|
4566
|
+
[[package]]
|
|
4567
|
+
name = "wayland-protocols-wlr"
|
|
4568
|
+
version = "0.2.0"
|
|
4569
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4570
|
+
checksum = "ad1f61b76b6c2d8742e10f9ba5c3737f6530b4c243132c2a2ccc8aa96fe25cd6"
|
|
4571
|
+
dependencies = [
|
|
4572
|
+
"bitflags 2.5.0",
|
|
4573
|
+
"wayland-backend",
|
|
4574
|
+
"wayland-client",
|
|
4575
|
+
"wayland-protocols",
|
|
4576
|
+
"wayland-scanner",
|
|
4577
|
+
]
|
|
4578
|
+
|
|
4579
|
+
[[package]]
|
|
4580
|
+
name = "wayland-scanner"
|
|
4581
|
+
version = "0.31.1"
|
|
4582
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4583
|
+
checksum = "63b3a62929287001986fb58c789dce9b67604a397c15c611ad9f747300b6c283"
|
|
4584
|
+
dependencies = [
|
|
4585
|
+
"proc-macro2",
|
|
4586
|
+
"quick-xml",
|
|
4587
|
+
"quote",
|
|
4588
|
+
]
|
|
4589
|
+
|
|
4590
|
+
[[package]]
|
|
4591
|
+
name = "wayland-sys"
|
|
4592
|
+
version = "0.31.1"
|
|
4593
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4594
|
+
checksum = "15a0c8eaff5216d07f226cb7a549159267f3467b289d9a2e52fd3ef5aae2b7af"
|
|
4595
|
+
dependencies = [
|
|
4596
|
+
"dlib",
|
|
4597
|
+
"log",
|
|
4598
|
+
"pkg-config",
|
|
4599
|
+
]
|
|
4600
|
+
|
|
4174
4601
|
[[package]]
|
|
4175
4602
|
name = "web-sys"
|
|
4176
|
-
version = "0.3.
|
|
4603
|
+
version = "0.3.69"
|
|
4177
4604
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4178
|
-
checksum = "
|
|
4605
|
+
checksum = "77afa9a11836342370f4817622a2f0f418b134426d91a82dfb48f532d2ec13ef"
|
|
4179
4606
|
dependencies = [
|
|
4180
4607
|
"js-sys",
|
|
4181
4608
|
"wasm-bindgen",
|
|
@@ -4225,7 +4652,7 @@ dependencies = [
|
|
|
4225
4652
|
"pango-sys",
|
|
4226
4653
|
"pkg-config",
|
|
4227
4654
|
"soup2-sys",
|
|
4228
|
-
"system-deps 6.
|
|
4655
|
+
"system-deps 6.2.2",
|
|
4229
4656
|
]
|
|
4230
4657
|
|
|
4231
4658
|
[[package]]
|
|
@@ -4237,7 +4664,7 @@ dependencies = [
|
|
|
4237
4664
|
"webview2-com-macros",
|
|
4238
4665
|
"webview2-com-sys",
|
|
4239
4666
|
"windows 0.39.0",
|
|
4240
|
-
"windows-implement",
|
|
4667
|
+
"windows-implement 0.39.0",
|
|
4241
4668
|
]
|
|
4242
4669
|
|
|
4243
4670
|
[[package]]
|
|
@@ -4266,6 +4693,12 @@ dependencies = [
|
|
|
4266
4693
|
"windows-metadata",
|
|
4267
4694
|
]
|
|
4268
4695
|
|
|
4696
|
+
[[package]]
|
|
4697
|
+
name = "weezl"
|
|
4698
|
+
version = "0.1.8"
|
|
4699
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4700
|
+
checksum = "53a85b86a771b1c87058196170769dd264f66c0782acf1ae6cc51bfd64b39082"
|
|
4701
|
+
|
|
4269
4702
|
[[package]]
|
|
4270
4703
|
name = "winapi"
|
|
4271
4704
|
version = "0.3.9"
|
|
@@ -4284,11 +4717,11 @@ checksum = "ac3b87c63620426dd9b991e5ce0329eff545bccbbb34f3be09ff6fb6ab51b7b6"
|
|
|
4284
4717
|
|
|
4285
4718
|
[[package]]
|
|
4286
4719
|
name = "winapi-util"
|
|
4287
|
-
version = "0.1.
|
|
4720
|
+
version = "0.1.8"
|
|
4288
4721
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4289
|
-
checksum = "
|
|
4722
|
+
checksum = "4d4cc384e1e73b93bafa6fb4f1df8c41695c8a91cf9c4c64358067d15a7b6c6b"
|
|
4290
4723
|
dependencies = [
|
|
4291
|
-
"
|
|
4724
|
+
"windows-sys 0.52.0",
|
|
4292
4725
|
]
|
|
4293
4726
|
|
|
4294
4727
|
[[package]]
|
|
@@ -4316,7 +4749,7 @@ version = "0.39.0"
|
|
|
4316
4749
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4317
4750
|
checksum = "f1c4bd0a50ac6020f65184721f758dba47bb9fbc2133df715ec74a237b26794a"
|
|
4318
4751
|
dependencies = [
|
|
4319
|
-
"windows-implement",
|
|
4752
|
+
"windows-implement 0.39.0",
|
|
4320
4753
|
"windows_aarch64_msvc 0.39.0",
|
|
4321
4754
|
"windows_i686_gnu 0.39.0",
|
|
4322
4755
|
"windows_i686_msvc 0.39.0",
|
|
@@ -4330,7 +4763,17 @@ version = "0.48.0"
|
|
|
4330
4763
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4331
4764
|
checksum = "e686886bc078bc1b0b600cac0147aadb815089b6e4da64016cbd754b6342700f"
|
|
4332
4765
|
dependencies = [
|
|
4333
|
-
"windows-targets 0.48.
|
|
4766
|
+
"windows-targets 0.48.5",
|
|
4767
|
+
]
|
|
4768
|
+
|
|
4769
|
+
[[package]]
|
|
4770
|
+
name = "windows"
|
|
4771
|
+
version = "0.56.0"
|
|
4772
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4773
|
+
checksum = "1de69df01bdf1ead2f4ac895dc77c9351aefff65b2f3db429a343f9cbf05e132"
|
|
4774
|
+
dependencies = [
|
|
4775
|
+
"windows-core 0.56.0",
|
|
4776
|
+
"windows-targets 0.52.5",
|
|
4334
4777
|
]
|
|
4335
4778
|
|
|
4336
4779
|
[[package]]
|
|
@@ -4343,6 +4786,27 @@ dependencies = [
|
|
|
4343
4786
|
"windows-tokens",
|
|
4344
4787
|
]
|
|
4345
4788
|
|
|
4789
|
+
[[package]]
|
|
4790
|
+
name = "windows-core"
|
|
4791
|
+
version = "0.52.0"
|
|
4792
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4793
|
+
checksum = "33ab640c8d7e35bf8ba19b884ba838ceb4fba93a4e8c65a9059d08afcfc683d9"
|
|
4794
|
+
dependencies = [
|
|
4795
|
+
"windows-targets 0.52.5",
|
|
4796
|
+
]
|
|
4797
|
+
|
|
4798
|
+
[[package]]
|
|
4799
|
+
name = "windows-core"
|
|
4800
|
+
version = "0.56.0"
|
|
4801
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4802
|
+
checksum = "4698e52ed2d08f8658ab0c39512a7c00ee5fe2688c65f8c0a4f06750d729f2a6"
|
|
4803
|
+
dependencies = [
|
|
4804
|
+
"windows-implement 0.56.0",
|
|
4805
|
+
"windows-interface",
|
|
4806
|
+
"windows-result",
|
|
4807
|
+
"windows-targets 0.52.5",
|
|
4808
|
+
]
|
|
4809
|
+
|
|
4346
4810
|
[[package]]
|
|
4347
4811
|
name = "windows-implement"
|
|
4348
4812
|
version = "0.39.0"
|
|
@@ -4353,12 +4817,43 @@ dependencies = [
|
|
|
4353
4817
|
"windows-tokens",
|
|
4354
4818
|
]
|
|
4355
4819
|
|
|
4820
|
+
[[package]]
|
|
4821
|
+
name = "windows-implement"
|
|
4822
|
+
version = "0.56.0"
|
|
4823
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4824
|
+
checksum = "f6fc35f58ecd95a9b71c4f2329b911016e6bec66b3f2e6a4aad86bd2e99e2f9b"
|
|
4825
|
+
dependencies = [
|
|
4826
|
+
"proc-macro2",
|
|
4827
|
+
"quote",
|
|
4828
|
+
"syn 2.0.60",
|
|
4829
|
+
]
|
|
4830
|
+
|
|
4831
|
+
[[package]]
|
|
4832
|
+
name = "windows-interface"
|
|
4833
|
+
version = "0.56.0"
|
|
4834
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4835
|
+
checksum = "08990546bf4edef8f431fa6326e032865f27138718c587dc21bc0265bbcb57cc"
|
|
4836
|
+
dependencies = [
|
|
4837
|
+
"proc-macro2",
|
|
4838
|
+
"quote",
|
|
4839
|
+
"syn 2.0.60",
|
|
4840
|
+
]
|
|
4841
|
+
|
|
4356
4842
|
[[package]]
|
|
4357
4843
|
name = "windows-metadata"
|
|
4358
4844
|
version = "0.39.0"
|
|
4359
4845
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4360
4846
|
checksum = "9ee5e275231f07c6e240d14f34e1b635bf1faa1c76c57cfd59a5cdb9848e4278"
|
|
4361
4847
|
|
|
4848
|
+
[[package]]
|
|
4849
|
+
name = "windows-result"
|
|
4850
|
+
version = "0.1.1"
|
|
4851
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4852
|
+
checksum = "749f0da9cc72d82e600d8d2e44cadd0b9eedb9038f71a1c58556ac1c5791813b"
|
|
4853
|
+
dependencies = [
|
|
4854
|
+
"windows-targets 0.52.5",
|
|
4855
|
+
]
|
|
4856
|
+
|
|
4362
4857
|
[[package]]
|
|
4363
4858
|
name = "windows-sys"
|
|
4364
4859
|
version = "0.42.0"
|
|
@@ -4389,7 +4884,16 @@ version = "0.48.0"
|
|
|
4389
4884
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4390
4885
|
checksum = "677d2418bec65e3338edb076e806bc1ec15693c5d0104683f2efe857f61056a9"
|
|
4391
4886
|
dependencies = [
|
|
4392
|
-
"windows-targets 0.48.
|
|
4887
|
+
"windows-targets 0.48.5",
|
|
4888
|
+
]
|
|
4889
|
+
|
|
4890
|
+
[[package]]
|
|
4891
|
+
name = "windows-sys"
|
|
4892
|
+
version = "0.52.0"
|
|
4893
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4894
|
+
checksum = "282be5f36a8ce781fad8c8ae18fa3f9beff57ec1b52cb3de0789201425d9a33d"
|
|
4895
|
+
dependencies = [
|
|
4896
|
+
"windows-targets 0.52.5",
|
|
4393
4897
|
]
|
|
4394
4898
|
|
|
4395
4899
|
[[package]]
|
|
@@ -4409,17 +4913,33 @@ dependencies = [
|
|
|
4409
4913
|
|
|
4410
4914
|
[[package]]
|
|
4411
4915
|
name = "windows-targets"
|
|
4412
|
-
version = "0.48.
|
|
4916
|
+
version = "0.48.5"
|
|
4413
4917
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4414
|
-
checksum = "
|
|
4918
|
+
checksum = "9a2fa6e2155d7247be68c096456083145c183cbbbc2764150dda45a87197940c"
|
|
4415
4919
|
dependencies = [
|
|
4416
|
-
"windows_aarch64_gnullvm 0.48.
|
|
4417
|
-
"windows_aarch64_msvc 0.48.
|
|
4418
|
-
"windows_i686_gnu 0.48.
|
|
4419
|
-
"windows_i686_msvc 0.48.
|
|
4420
|
-
"windows_x86_64_gnu 0.48.
|
|
4421
|
-
"windows_x86_64_gnullvm 0.48.
|
|
4422
|
-
"windows_x86_64_msvc 0.48.
|
|
4920
|
+
"windows_aarch64_gnullvm 0.48.5",
|
|
4921
|
+
"windows_aarch64_msvc 0.48.5",
|
|
4922
|
+
"windows_i686_gnu 0.48.5",
|
|
4923
|
+
"windows_i686_msvc 0.48.5",
|
|
4924
|
+
"windows_x86_64_gnu 0.48.5",
|
|
4925
|
+
"windows_x86_64_gnullvm 0.48.5",
|
|
4926
|
+
"windows_x86_64_msvc 0.48.5",
|
|
4927
|
+
]
|
|
4928
|
+
|
|
4929
|
+
[[package]]
|
|
4930
|
+
name = "windows-targets"
|
|
4931
|
+
version = "0.52.5"
|
|
4932
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4933
|
+
checksum = "6f0713a46559409d202e70e28227288446bf7841d3211583a4b53e3f6d96e7eb"
|
|
4934
|
+
dependencies = [
|
|
4935
|
+
"windows_aarch64_gnullvm 0.52.5",
|
|
4936
|
+
"windows_aarch64_msvc 0.52.5",
|
|
4937
|
+
"windows_i686_gnu 0.52.5",
|
|
4938
|
+
"windows_i686_gnullvm",
|
|
4939
|
+
"windows_i686_msvc 0.52.5",
|
|
4940
|
+
"windows_x86_64_gnu 0.52.5",
|
|
4941
|
+
"windows_x86_64_gnullvm 0.52.5",
|
|
4942
|
+
"windows_x86_64_msvc 0.52.5",
|
|
4423
4943
|
]
|
|
4424
4944
|
|
|
4425
4945
|
[[package]]
|
|
@@ -4428,6 +4948,15 @@ version = "0.39.0"
|
|
|
4428
4948
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4429
4949
|
checksum = "f838de2fe15fe6bac988e74b798f26499a8b21a9d97edec321e79b28d1d7f597"
|
|
4430
4950
|
|
|
4951
|
+
[[package]]
|
|
4952
|
+
name = "windows-version"
|
|
4953
|
+
version = "0.1.1"
|
|
4954
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4955
|
+
checksum = "6998aa457c9ba8ff2fb9f13e9d2a930dabcea28f1d0ab94d687d8b3654844515"
|
|
4956
|
+
dependencies = [
|
|
4957
|
+
"windows-targets 0.52.5",
|
|
4958
|
+
]
|
|
4959
|
+
|
|
4431
4960
|
[[package]]
|
|
4432
4961
|
name = "windows_aarch64_gnullvm"
|
|
4433
4962
|
version = "0.42.2"
|
|
@@ -4436,9 +4965,15 @@ checksum = "597a5118570b68bc08d8d59125332c54f1ba9d9adeedeef5b99b02ba2b0698f8"
|
|
|
4436
4965
|
|
|
4437
4966
|
[[package]]
|
|
4438
4967
|
name = "windows_aarch64_gnullvm"
|
|
4439
|
-
version = "0.48.
|
|
4968
|
+
version = "0.48.5"
|
|
4969
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4970
|
+
checksum = "2b38e32f0abccf9987a4e3079dfb67dcd799fb61361e53e2882c3cbaf0d905d8"
|
|
4971
|
+
|
|
4972
|
+
[[package]]
|
|
4973
|
+
name = "windows_aarch64_gnullvm"
|
|
4974
|
+
version = "0.52.5"
|
|
4440
4975
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4441
|
-
checksum = "
|
|
4976
|
+
checksum = "7088eed71e8b8dda258ecc8bac5fb1153c5cffaf2578fc8ff5d61e23578d3263"
|
|
4442
4977
|
|
|
4443
4978
|
[[package]]
|
|
4444
4979
|
name = "windows_aarch64_msvc"
|
|
@@ -4460,9 +4995,15 @@ checksum = "e08e8864a60f06ef0d0ff4ba04124db8b0fb3be5776a5cd47641e942e58c4d43"
|
|
|
4460
4995
|
|
|
4461
4996
|
[[package]]
|
|
4462
4997
|
name = "windows_aarch64_msvc"
|
|
4463
|
-
version = "0.48.
|
|
4998
|
+
version = "0.48.5"
|
|
4464
4999
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4465
|
-
checksum = "
|
|
5000
|
+
checksum = "dc35310971f3b2dbbf3f0690a219f40e2d9afcf64f9ab7cc1be722937c26b4bc"
|
|
5001
|
+
|
|
5002
|
+
[[package]]
|
|
5003
|
+
name = "windows_aarch64_msvc"
|
|
5004
|
+
version = "0.52.5"
|
|
5005
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
5006
|
+
checksum = "9985fd1504e250c615ca5f281c3f7a6da76213ebd5ccc9561496568a2752afb6"
|
|
4466
5007
|
|
|
4467
5008
|
[[package]]
|
|
4468
5009
|
name = "windows_i686_gnu"
|
|
@@ -4484,9 +5025,21 @@ checksum = "c61d927d8da41da96a81f029489353e68739737d3beca43145c8afec9a31a84f"
|
|
|
4484
5025
|
|
|
4485
5026
|
[[package]]
|
|
4486
5027
|
name = "windows_i686_gnu"
|
|
4487
|
-
version = "0.48.
|
|
5028
|
+
version = "0.48.5"
|
|
5029
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
5030
|
+
checksum = "a75915e7def60c94dcef72200b9a8e58e5091744960da64ec734a6c6e9b3743e"
|
|
5031
|
+
|
|
5032
|
+
[[package]]
|
|
5033
|
+
name = "windows_i686_gnu"
|
|
5034
|
+
version = "0.52.5"
|
|
5035
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
5036
|
+
checksum = "88ba073cf16d5372720ec942a8ccbf61626074c6d4dd2e745299726ce8b89670"
|
|
5037
|
+
|
|
5038
|
+
[[package]]
|
|
5039
|
+
name = "windows_i686_gnullvm"
|
|
5040
|
+
version = "0.52.5"
|
|
4488
5041
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4489
|
-
checksum = "
|
|
5042
|
+
checksum = "87f4261229030a858f36b459e748ae97545d6f1ec60e5e0d6a3d32e0dc232ee9"
|
|
4490
5043
|
|
|
4491
5044
|
[[package]]
|
|
4492
5045
|
name = "windows_i686_msvc"
|
|
@@ -4508,9 +5061,15 @@ checksum = "44d840b6ec649f480a41c8d80f9c65108b92d89345dd94027bfe06ac444d1060"
|
|
|
4508
5061
|
|
|
4509
5062
|
[[package]]
|
|
4510
5063
|
name = "windows_i686_msvc"
|
|
4511
|
-
version = "0.48.
|
|
5064
|
+
version = "0.48.5"
|
|
5065
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
5066
|
+
checksum = "8f55c233f70c4b27f66c523580f78f1004e8b5a8b659e05a4eb49d4166cca406"
|
|
5067
|
+
|
|
5068
|
+
[[package]]
|
|
5069
|
+
name = "windows_i686_msvc"
|
|
5070
|
+
version = "0.52.5"
|
|
4512
5071
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4513
|
-
checksum = "
|
|
5072
|
+
checksum = "db3c2bf3d13d5b658be73463284eaf12830ac9a26a90c717b7f771dfe97487bf"
|
|
4514
5073
|
|
|
4515
5074
|
[[package]]
|
|
4516
5075
|
name = "windows_x86_64_gnu"
|
|
@@ -4532,9 +5091,15 @@ checksum = "8de912b8b8feb55c064867cf047dda097f92d51efad5b491dfb98f6bbb70cb36"
|
|
|
4532
5091
|
|
|
4533
5092
|
[[package]]
|
|
4534
5093
|
name = "windows_x86_64_gnu"
|
|
4535
|
-
version = "0.48.
|
|
5094
|
+
version = "0.48.5"
|
|
4536
5095
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4537
|
-
checksum = "
|
|
5096
|
+
checksum = "53d40abd2583d23e4718fddf1ebec84dbff8381c07cae67ff7768bbf19c6718e"
|
|
5097
|
+
|
|
5098
|
+
[[package]]
|
|
5099
|
+
name = "windows_x86_64_gnu"
|
|
5100
|
+
version = "0.52.5"
|
|
5101
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
5102
|
+
checksum = "4e4246f76bdeff09eb48875a0fd3e2af6aada79d409d33011886d3e1581517d9"
|
|
4538
5103
|
|
|
4539
5104
|
[[package]]
|
|
4540
5105
|
name = "windows_x86_64_gnullvm"
|
|
@@ -4544,9 +5109,15 @@ checksum = "26d41b46a36d453748aedef1486d5c7a85db22e56aff34643984ea85514e94a3"
|
|
|
4544
5109
|
|
|
4545
5110
|
[[package]]
|
|
4546
5111
|
name = "windows_x86_64_gnullvm"
|
|
4547
|
-
version = "0.48.
|
|
5112
|
+
version = "0.48.5"
|
|
5113
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
5114
|
+
checksum = "0b7b52767868a23d5bab768e390dc5f5c55825b6d30b86c844ff2dc7414044cc"
|
|
5115
|
+
|
|
5116
|
+
[[package]]
|
|
5117
|
+
name = "windows_x86_64_gnullvm"
|
|
5118
|
+
version = "0.52.5"
|
|
4548
5119
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4549
|
-
checksum = "
|
|
5120
|
+
checksum = "852298e482cd67c356ddd9570386e2862b5673c85bd5f88df9ab6802b334c596"
|
|
4550
5121
|
|
|
4551
5122
|
[[package]]
|
|
4552
5123
|
name = "windows_x86_64_msvc"
|
|
@@ -4568,57 +5139,93 @@ checksum = "9aec5da331524158c6d1a4ac0ab1541149c0b9505fde06423b02f5ef0106b9f0"
|
|
|
4568
5139
|
|
|
4569
5140
|
[[package]]
|
|
4570
5141
|
name = "windows_x86_64_msvc"
|
|
4571
|
-
version = "0.48.
|
|
5142
|
+
version = "0.48.5"
|
|
5143
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
5144
|
+
checksum = "ed94fce61571a4006852b7389a063ab983c02eb1bb37b47f8272ce92d06d9538"
|
|
5145
|
+
|
|
5146
|
+
[[package]]
|
|
5147
|
+
name = "windows_x86_64_msvc"
|
|
5148
|
+
version = "0.52.5"
|
|
4572
5149
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4573
|
-
checksum = "
|
|
5150
|
+
checksum = "bec47e5bfd1bff0eeaf6d8b485cc1074891a197ab4225d504cb7a1ab88b02bf0"
|
|
4574
5151
|
|
|
4575
5152
|
[[package]]
|
|
4576
5153
|
name = "winnow"
|
|
4577
|
-
version = "0.5.
|
|
5154
|
+
version = "0.5.40"
|
|
4578
5155
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4579
|
-
checksum = "
|
|
5156
|
+
checksum = "f593a95398737aeed53e489c785df13f3618e41dbcd6718c6addbf1395aa6876"
|
|
5157
|
+
dependencies = [
|
|
5158
|
+
"memchr",
|
|
5159
|
+
]
|
|
5160
|
+
|
|
5161
|
+
[[package]]
|
|
5162
|
+
name = "winnow"
|
|
5163
|
+
version = "0.6.7"
|
|
5164
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
5165
|
+
checksum = "14b9415ee827af173ebb3f15f9083df5a122eb93572ec28741fb153356ea2578"
|
|
4580
5166
|
dependencies = [
|
|
4581
5167
|
"memchr",
|
|
4582
5168
|
]
|
|
4583
5169
|
|
|
4584
5170
|
[[package]]
|
|
4585
5171
|
name = "winreg"
|
|
4586
|
-
version = "0.
|
|
5172
|
+
version = "0.50.0"
|
|
4587
5173
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4588
|
-
checksum = "
|
|
5174
|
+
checksum = "524e57b2c537c0f9b1e69f1965311ec12182b4122e45035b1508cd24d2adadb1"
|
|
4589
5175
|
dependencies = [
|
|
4590
|
-
"
|
|
5176
|
+
"cfg-if",
|
|
5177
|
+
"windows-sys 0.48.0",
|
|
4591
5178
|
]
|
|
4592
5179
|
|
|
4593
5180
|
[[package]]
|
|
4594
5181
|
name = "winreg"
|
|
4595
|
-
version = "0.
|
|
5182
|
+
version = "0.52.0"
|
|
4596
5183
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4597
|
-
checksum = "
|
|
5184
|
+
checksum = "a277a57398d4bfa075df44f501a17cfdf8542d224f0d36095a2adc7aee4ef0a5"
|
|
4598
5185
|
dependencies = [
|
|
4599
5186
|
"cfg-if",
|
|
4600
|
-
"
|
|
5187
|
+
"windows-sys 0.48.0",
|
|
5188
|
+
]
|
|
5189
|
+
|
|
5190
|
+
[[package]]
|
|
5191
|
+
name = "wl-clipboard-rs"
|
|
5192
|
+
version = "0.8.1"
|
|
5193
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
5194
|
+
checksum = "12b41773911497b18ca8553c3daaf8ec9fe9819caf93d451d3055f69de028adb"
|
|
5195
|
+
dependencies = [
|
|
5196
|
+
"derive-new",
|
|
5197
|
+
"libc",
|
|
5198
|
+
"log",
|
|
5199
|
+
"nix 0.28.0",
|
|
5200
|
+
"os_pipe",
|
|
5201
|
+
"tempfile",
|
|
5202
|
+
"thiserror",
|
|
5203
|
+
"tree_magic_mini",
|
|
5204
|
+
"wayland-backend",
|
|
5205
|
+
"wayland-client",
|
|
5206
|
+
"wayland-protocols",
|
|
5207
|
+
"wayland-protocols-wlr",
|
|
4601
5208
|
]
|
|
4602
5209
|
|
|
4603
5210
|
[[package]]
|
|
4604
5211
|
name = "wry"
|
|
4605
|
-
version = "0.24.
|
|
5212
|
+
version = "0.24.8"
|
|
4606
5213
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4607
|
-
checksum = "
|
|
5214
|
+
checksum = "a04e72739ee84a218e3dbf8625888eadc874285637003ed21ab96a1bbbb538ec"
|
|
4608
5215
|
dependencies = [
|
|
4609
5216
|
"base64 0.13.1",
|
|
4610
5217
|
"block",
|
|
4611
5218
|
"cocoa",
|
|
4612
|
-
"core-graphics",
|
|
5219
|
+
"core-graphics 0.22.3",
|
|
4613
5220
|
"crossbeam-channel",
|
|
4614
5221
|
"dunce",
|
|
4615
5222
|
"gdk",
|
|
4616
5223
|
"gio",
|
|
4617
5224
|
"glib",
|
|
4618
5225
|
"gtk",
|
|
4619
|
-
"html5ever
|
|
5226
|
+
"html5ever",
|
|
4620
5227
|
"http",
|
|
4621
|
-
"
|
|
5228
|
+
"kuchikiki",
|
|
4622
5229
|
"libc",
|
|
4623
5230
|
"log",
|
|
4624
5231
|
"objc",
|
|
@@ -4635,7 +5242,7 @@ dependencies = [
|
|
|
4635
5242
|
"webkit2gtk-sys",
|
|
4636
5243
|
"webview2-com",
|
|
4637
5244
|
"windows 0.39.0",
|
|
4638
|
-
"windows-implement",
|
|
5245
|
+
"windows-implement 0.39.0",
|
|
4639
5246
|
]
|
|
4640
5247
|
|
|
4641
5248
|
[[package]]
|
|
@@ -4659,30 +5266,49 @@ dependencies = [
|
|
|
4659
5266
|
"pkg-config",
|
|
4660
5267
|
]
|
|
4661
5268
|
|
|
5269
|
+
[[package]]
|
|
5270
|
+
name = "x11rb"
|
|
5271
|
+
version = "0.13.0"
|
|
5272
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
5273
|
+
checksum = "f8f25ead8c7e4cba123243a6367da5d3990e0d3affa708ea19dce96356bd9f1a"
|
|
5274
|
+
dependencies = [
|
|
5275
|
+
"gethostname",
|
|
5276
|
+
"rustix",
|
|
5277
|
+
"x11rb-protocol",
|
|
5278
|
+
]
|
|
5279
|
+
|
|
5280
|
+
[[package]]
|
|
5281
|
+
name = "x11rb-protocol"
|
|
5282
|
+
version = "0.13.0"
|
|
5283
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
5284
|
+
checksum = "e63e71c4b8bd9ffec2c963173a4dc4cbde9ee96961d4fcb4429db9929b606c34"
|
|
5285
|
+
|
|
4662
5286
|
[[package]]
|
|
4663
5287
|
name = "xattr"
|
|
4664
|
-
version = "
|
|
5288
|
+
version = "1.3.1"
|
|
4665
5289
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4666
|
-
checksum = "
|
|
5290
|
+
checksum = "8da84f1a25939b27f6820d92aed108f83ff920fdf11a7b19366c27c4cda81d4f"
|
|
4667
5291
|
dependencies = [
|
|
4668
5292
|
"libc",
|
|
5293
|
+
"linux-raw-sys",
|
|
5294
|
+
"rustix",
|
|
4669
5295
|
]
|
|
4670
5296
|
|
|
4671
5297
|
[[package]]
|
|
4672
5298
|
name = "xdg-home"
|
|
4673
|
-
version = "1.
|
|
5299
|
+
version = "1.1.0"
|
|
4674
5300
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4675
|
-
checksum = "
|
|
5301
|
+
checksum = "21e5a325c3cb8398ad6cf859c1135b25dd29e186679cf2da7581d9679f63b38e"
|
|
4676
5302
|
dependencies = [
|
|
4677
|
-
"
|
|
5303
|
+
"libc",
|
|
4678
5304
|
"winapi",
|
|
4679
5305
|
]
|
|
4680
5306
|
|
|
4681
5307
|
[[package]]
|
|
4682
5308
|
name = "zbus"
|
|
4683
|
-
version = "
|
|
5309
|
+
version = "4.1.2"
|
|
4684
5310
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4685
|
-
checksum = "
|
|
5311
|
+
checksum = "c9ff46f2a25abd690ed072054733e0bc3157e3d4c45f41bd183dce09c2ff8ab9"
|
|
4686
5312
|
dependencies = [
|
|
4687
5313
|
"async-broadcast",
|
|
4688
5314
|
"async-executor",
|
|
@@ -4694,16 +5320,14 @@ dependencies = [
|
|
|
4694
5320
|
"async-task",
|
|
4695
5321
|
"async-trait",
|
|
4696
5322
|
"blocking",
|
|
4697
|
-
"byteorder",
|
|
4698
5323
|
"derivative",
|
|
4699
5324
|
"enumflags2",
|
|
4700
|
-
"event-listener",
|
|
5325
|
+
"event-listener 5.3.0",
|
|
4701
5326
|
"futures-core",
|
|
4702
5327
|
"futures-sink",
|
|
4703
5328
|
"futures-util",
|
|
4704
5329
|
"hex",
|
|
4705
|
-
"nix",
|
|
4706
|
-
"once_cell",
|
|
5330
|
+
"nix 0.28.0",
|
|
4707
5331
|
"ordered-stream",
|
|
4708
5332
|
"rand 0.8.5",
|
|
4709
5333
|
"serde",
|
|
@@ -4712,7 +5336,7 @@ dependencies = [
|
|
|
4712
5336
|
"static_assertions",
|
|
4713
5337
|
"tracing",
|
|
4714
5338
|
"uds_windows",
|
|
4715
|
-
"
|
|
5339
|
+
"windows-sys 0.52.0",
|
|
4716
5340
|
"xdg-home",
|
|
4717
5341
|
"zbus_macros",
|
|
4718
5342
|
"zbus_names",
|
|
@@ -4721,11 +5345,11 @@ dependencies = [
|
|
|
4721
5345
|
|
|
4722
5346
|
[[package]]
|
|
4723
5347
|
name = "zbus_macros"
|
|
4724
|
-
version = "
|
|
5348
|
+
version = "4.1.2"
|
|
4725
5349
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4726
|
-
checksum = "
|
|
5350
|
+
checksum = "4e0e3852c93dcdb49c9462afe67a2a468f7bd464150d866e861eaf06208633e0"
|
|
4727
5351
|
dependencies = [
|
|
4728
|
-
"proc-macro-crate",
|
|
5352
|
+
"proc-macro-crate 3.1.0",
|
|
4729
5353
|
"proc-macro2",
|
|
4730
5354
|
"quote",
|
|
4731
5355
|
"regex",
|
|
@@ -4735,9 +5359,9 @@ dependencies = [
|
|
|
4735
5359
|
|
|
4736
5360
|
[[package]]
|
|
4737
5361
|
name = "zbus_names"
|
|
4738
|
-
version = "
|
|
5362
|
+
version = "3.0.0"
|
|
4739
5363
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4740
|
-
checksum = "
|
|
5364
|
+
checksum = "4b9b1fef7d021261cc16cba64c351d291b715febe0fa10dc3a443ac5a5022e6c"
|
|
4741
5365
|
dependencies = [
|
|
4742
5366
|
"serde",
|
|
4743
5367
|
"static_assertions",
|
|
@@ -4746,13 +5370,12 @@ dependencies = [
|
|
|
4746
5370
|
|
|
4747
5371
|
[[package]]
|
|
4748
5372
|
name = "zvariant"
|
|
4749
|
-
version = "
|
|
5373
|
+
version = "4.0.2"
|
|
4750
5374
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4751
|
-
checksum = "
|
|
5375
|
+
checksum = "2c1b3ca6db667bfada0f1ebfc94b2b1759ba25472ee5373d4551bb892616389a"
|
|
4752
5376
|
dependencies = [
|
|
4753
|
-
"
|
|
5377
|
+
"endi",
|
|
4754
5378
|
"enumflags2",
|
|
4755
|
-
"libc",
|
|
4756
5379
|
"serde",
|
|
4757
5380
|
"static_assertions",
|
|
4758
5381
|
"zvariant_derive",
|
|
@@ -4760,11 +5383,11 @@ dependencies = [
|
|
|
4760
5383
|
|
|
4761
5384
|
[[package]]
|
|
4762
5385
|
name = "zvariant_derive"
|
|
4763
|
-
version = "
|
|
5386
|
+
version = "4.0.2"
|
|
4764
5387
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4765
|
-
checksum = "
|
|
5388
|
+
checksum = "b7a4b236063316163b69039f77ce3117accb41a09567fd24c168e43491e521bc"
|
|
4766
5389
|
dependencies = [
|
|
4767
|
-
"proc-macro-crate",
|
|
5390
|
+
"proc-macro-crate 3.1.0",
|
|
4768
5391
|
"proc-macro2",
|
|
4769
5392
|
"quote",
|
|
4770
5393
|
"syn 1.0.109",
|
|
@@ -4773,9 +5396,9 @@ dependencies = [
|
|
|
4773
5396
|
|
|
4774
5397
|
[[package]]
|
|
4775
5398
|
name = "zvariant_utils"
|
|
4776
|
-
version = "1.0
|
|
5399
|
+
version = "1.1.0"
|
|
4777
5400
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4778
|
-
checksum = "
|
|
5401
|
+
checksum = "00bedb16a193cc12451873fee2a1bc6550225acece0e36f333e68326c73c8172"
|
|
4779
5402
|
dependencies = [
|
|
4780
5403
|
"proc-macro2",
|
|
4781
5404
|
"quote",
|