pake-cli 2.3.6 → 2.3.8
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 +78 -52
- package/dist/cli.js +19 -27
- package/package.json +14 -13
- package/src-tauri/.cargo/config.toml +10 -0
- package/src-tauri/Cargo.lock +1415 -742
- package/src-tauri/Cargo.toml +7 -6
- package/src-tauri/icons/devv.icns +0 -0
- package/src-tauri/icons/juchats.icns +0 -0
- 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.83"
|
|
62
62
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
63
|
-
checksum = "
|
|
63
|
+
checksum = "25bdb32cbbdce2b519a9cd7df3a678443100e265d5e25ca763b7572a5104f5f3"
|
|
64
64
|
|
|
65
65
|
[[package]]
|
|
66
66
|
name = "app"
|
|
@@ -71,37 +71,60 @@ 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.4.0"
|
|
81
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
82
|
+
checksum = "9fb4009533e8ff8f1450a5bcbc30f4242a1d34442221f72314bea1f5dc9c7f89"
|
|
83
|
+
dependencies = [
|
|
84
|
+
"clipboard-win",
|
|
85
|
+
"core-graphics 0.23.2",
|
|
86
|
+
"image 0.25.1",
|
|
87
|
+
"log",
|
|
88
|
+
"objc2",
|
|
89
|
+
"objc2-app-kit",
|
|
90
|
+
"objc2-foundation",
|
|
91
|
+
"parking_lot",
|
|
92
|
+
"windows-sys 0.48.0",
|
|
93
|
+
"wl-clipboard-rs",
|
|
94
|
+
"x11rb",
|
|
95
|
+
]
|
|
96
|
+
|
|
77
97
|
[[package]]
|
|
78
98
|
name = "async-broadcast"
|
|
79
|
-
version = "0.
|
|
99
|
+
version = "0.7.0"
|
|
80
100
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
81
|
-
checksum = "
|
|
101
|
+
checksum = "258b52a1aa741b9f09783b2d86cf0aeeb617bbf847f6933340a39644227acbdb"
|
|
82
102
|
dependencies = [
|
|
83
|
-
"event-listener",
|
|
103
|
+
"event-listener 5.3.0",
|
|
104
|
+
"event-listener-strategy 0.5.2",
|
|
84
105
|
"futures-core",
|
|
106
|
+
"pin-project-lite",
|
|
85
107
|
]
|
|
86
108
|
|
|
87
109
|
[[package]]
|
|
88
110
|
name = "async-channel"
|
|
89
|
-
version = "
|
|
111
|
+
version = "2.2.1"
|
|
90
112
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
91
|
-
checksum = "
|
|
113
|
+
checksum = "136d4d23bcc79e27423727b36823d86233aad06dfea531837b038394d11e9928"
|
|
92
114
|
dependencies = [
|
|
93
115
|
"concurrent-queue",
|
|
94
|
-
"event-listener",
|
|
116
|
+
"event-listener 5.3.0",
|
|
117
|
+
"event-listener-strategy 0.5.2",
|
|
95
118
|
"futures-core",
|
|
119
|
+
"pin-project-lite",
|
|
96
120
|
]
|
|
97
121
|
|
|
98
122
|
[[package]]
|
|
99
123
|
name = "async-executor"
|
|
100
|
-
version = "1.
|
|
124
|
+
version = "1.11.0"
|
|
101
125
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
102
|
-
checksum = "
|
|
126
|
+
checksum = "b10202063978b3351199d68f8b22c4e47e4b1b822f8d43fd862d5ea8c006b29a"
|
|
103
127
|
dependencies = [
|
|
104
|
-
"async-lock",
|
|
105
128
|
"async-task",
|
|
106
129
|
"concurrent-queue",
|
|
107
130
|
"fastrand",
|
|
@@ -111,89 +134,109 @@ dependencies = [
|
|
|
111
134
|
|
|
112
135
|
[[package]]
|
|
113
136
|
name = "async-fs"
|
|
114
|
-
version = "1.
|
|
137
|
+
version = "2.1.2"
|
|
115
138
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
116
|
-
checksum = "
|
|
139
|
+
checksum = "ebcd09b382f40fcd159c2d695175b2ae620ffa5f3bd6f664131efff4e8b9e04a"
|
|
117
140
|
dependencies = [
|
|
118
141
|
"async-lock",
|
|
119
|
-
"autocfg",
|
|
120
142
|
"blocking",
|
|
121
143
|
"futures-lite",
|
|
122
144
|
]
|
|
123
145
|
|
|
124
146
|
[[package]]
|
|
125
147
|
name = "async-io"
|
|
126
|
-
version = "
|
|
148
|
+
version = "2.3.2"
|
|
127
149
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
128
|
-
checksum = "
|
|
150
|
+
checksum = "dcccb0f599cfa2f8ace422d3555572f47424da5648a4382a9dd0310ff8210884"
|
|
129
151
|
dependencies = [
|
|
130
152
|
"async-lock",
|
|
131
|
-
"autocfg",
|
|
132
153
|
"cfg-if",
|
|
133
154
|
"concurrent-queue",
|
|
155
|
+
"futures-io",
|
|
134
156
|
"futures-lite",
|
|
135
|
-
"log",
|
|
136
157
|
"parking",
|
|
137
158
|
"polling",
|
|
138
159
|
"rustix",
|
|
139
160
|
"slab",
|
|
140
|
-
"
|
|
141
|
-
"
|
|
161
|
+
"tracing",
|
|
162
|
+
"windows-sys 0.52.0",
|
|
142
163
|
]
|
|
143
164
|
|
|
144
165
|
[[package]]
|
|
145
166
|
name = "async-lock"
|
|
146
|
-
version = "
|
|
167
|
+
version = "3.3.0"
|
|
147
168
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
148
|
-
checksum = "
|
|
169
|
+
checksum = "d034b430882f8381900d3fe6f0aaa3ad94f2cb4ac519b429692a1bc2dda4ae7b"
|
|
149
170
|
dependencies = [
|
|
150
|
-
"event-listener",
|
|
171
|
+
"event-listener 4.0.3",
|
|
172
|
+
"event-listener-strategy 0.4.0",
|
|
173
|
+
"pin-project-lite",
|
|
151
174
|
]
|
|
152
175
|
|
|
153
176
|
[[package]]
|
|
154
177
|
name = "async-process"
|
|
155
|
-
version = "
|
|
178
|
+
version = "2.2.2"
|
|
156
179
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
157
|
-
checksum = "
|
|
180
|
+
checksum = "a53fc6301894e04a92cb2584fedde80cb25ba8e02d9dc39d4a87d036e22f397d"
|
|
158
181
|
dependencies = [
|
|
182
|
+
"async-channel",
|
|
159
183
|
"async-io",
|
|
160
184
|
"async-lock",
|
|
161
|
-
"
|
|
185
|
+
"async-signal",
|
|
186
|
+
"async-task",
|
|
162
187
|
"blocking",
|
|
163
188
|
"cfg-if",
|
|
164
|
-
"event-listener",
|
|
189
|
+
"event-listener 5.3.0",
|
|
165
190
|
"futures-lite",
|
|
166
191
|
"rustix",
|
|
167
|
-
"
|
|
168
|
-
"windows-sys 0.
|
|
192
|
+
"tracing",
|
|
193
|
+
"windows-sys 0.52.0",
|
|
169
194
|
]
|
|
170
195
|
|
|
171
196
|
[[package]]
|
|
172
197
|
name = "async-recursion"
|
|
173
|
-
version = "1.
|
|
198
|
+
version = "1.1.1"
|
|
174
199
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
175
|
-
checksum = "
|
|
200
|
+
checksum = "3b43422f69d8ff38f95f1b2bb76517c91589a924d1559a0e935d7c8ce0274c11"
|
|
176
201
|
dependencies = [
|
|
177
202
|
"proc-macro2",
|
|
178
203
|
"quote",
|
|
179
|
-
"syn 2.0.
|
|
204
|
+
"syn 2.0.61",
|
|
205
|
+
]
|
|
206
|
+
|
|
207
|
+
[[package]]
|
|
208
|
+
name = "async-signal"
|
|
209
|
+
version = "0.2.6"
|
|
210
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
211
|
+
checksum = "afe66191c335039c7bb78f99dc7520b0cbb166b3a1cb33a03f53d8a1c6f2afda"
|
|
212
|
+
dependencies = [
|
|
213
|
+
"async-io",
|
|
214
|
+
"async-lock",
|
|
215
|
+
"atomic-waker",
|
|
216
|
+
"cfg-if",
|
|
217
|
+
"futures-core",
|
|
218
|
+
"futures-io",
|
|
219
|
+
"rustix",
|
|
220
|
+
"signal-hook-registry",
|
|
221
|
+
"slab",
|
|
222
|
+
"windows-sys 0.52.0",
|
|
180
223
|
]
|
|
181
224
|
|
|
182
225
|
[[package]]
|
|
183
226
|
name = "async-task"
|
|
184
|
-
version = "4.
|
|
227
|
+
version = "4.7.1"
|
|
185
228
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
186
|
-
checksum = "
|
|
229
|
+
checksum = "8b75356056920673b02621b35afd0f7dda9306d03c79a30f5c56c44cf256e3de"
|
|
187
230
|
|
|
188
231
|
[[package]]
|
|
189
232
|
name = "async-trait"
|
|
190
|
-
version = "0.1.
|
|
233
|
+
version = "0.1.80"
|
|
191
234
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
192
|
-
checksum = "
|
|
235
|
+
checksum = "c6fa2087f2753a7da8cc1c0dbfcf89579dd57458e36769de5ac750b4671737ca"
|
|
193
236
|
dependencies = [
|
|
194
237
|
"proc-macro2",
|
|
195
238
|
"quote",
|
|
196
|
-
"syn 2.0.
|
|
239
|
+
"syn 2.0.61",
|
|
197
240
|
]
|
|
198
241
|
|
|
199
242
|
[[package]]
|
|
@@ -217,26 +260,26 @@ dependencies = [
|
|
|
217
260
|
"glib-sys",
|
|
218
261
|
"gobject-sys",
|
|
219
262
|
"libc",
|
|
220
|
-
"system-deps 6.
|
|
263
|
+
"system-deps 6.2.2",
|
|
221
264
|
]
|
|
222
265
|
|
|
223
266
|
[[package]]
|
|
224
267
|
name = "atomic-waker"
|
|
225
|
-
version = "1.1.
|
|
268
|
+
version = "1.1.2"
|
|
226
269
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
227
|
-
checksum = "
|
|
270
|
+
checksum = "1505bd5d3d116872e7271a6d4e16d81d0c8570876c8de68093a09ac269d8aac0"
|
|
228
271
|
|
|
229
272
|
[[package]]
|
|
230
273
|
name = "autocfg"
|
|
231
|
-
version = "1.
|
|
274
|
+
version = "1.3.0"
|
|
232
275
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
233
|
-
checksum = "
|
|
276
|
+
checksum = "0c4b4d0bd25bd0b74681c0ad21497610ce1b7c91b1022cd21c80c6fbdd9476b0"
|
|
234
277
|
|
|
235
278
|
[[package]]
|
|
236
279
|
name = "backtrace"
|
|
237
|
-
version = "0.3.
|
|
280
|
+
version = "0.3.71"
|
|
238
281
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
239
|
-
checksum = "
|
|
282
|
+
checksum = "26b05800d2e817c8b3b4b54abd461726265fa9789ae34330622f2db9ee696f9d"
|
|
240
283
|
dependencies = [
|
|
241
284
|
"addr2line",
|
|
242
285
|
"cc",
|
|
@@ -255,9 +298,15 @@ checksum = "9e1b586273c5702936fe7b7d6896644d8be71e6314cfe09d3167c95f712589e8"
|
|
|
255
298
|
|
|
256
299
|
[[package]]
|
|
257
300
|
name = "base64"
|
|
258
|
-
version = "0.21.
|
|
301
|
+
version = "0.21.7"
|
|
302
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
303
|
+
checksum = "9d297deb1925b89f2ccc13d7635fa0714f12c87adce1c75356b39ca9b7178567"
|
|
304
|
+
|
|
305
|
+
[[package]]
|
|
306
|
+
name = "base64"
|
|
307
|
+
version = "0.22.1"
|
|
259
308
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
260
|
-
checksum = "
|
|
309
|
+
checksum = "72b3254f16251a8381aa12e40e3c4d2f0199f8c6508fbecb9d91f575e0fbb8c6"
|
|
261
310
|
|
|
262
311
|
[[package]]
|
|
263
312
|
name = "bincode"
|
|
@@ -282,9 +331,9 @@ checksum = "bef38d45163c2f1dde094a7dfd33ccf595c92905c8f8f4fdc18d06fb1037718a"
|
|
|
282
331
|
|
|
283
332
|
[[package]]
|
|
284
333
|
name = "bitflags"
|
|
285
|
-
version = "2.
|
|
334
|
+
version = "2.5.0"
|
|
286
335
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
287
|
-
checksum = "
|
|
336
|
+
checksum = "cf4b9d6a944f767f8e5e0db018570623c85f3d925ac718db4e06d0187adb21c1"
|
|
288
337
|
|
|
289
338
|
[[package]]
|
|
290
339
|
name = "block"
|
|
@@ -301,26 +350,34 @@ dependencies = [
|
|
|
301
350
|
"generic-array",
|
|
302
351
|
]
|
|
303
352
|
|
|
353
|
+
[[package]]
|
|
354
|
+
name = "block2"
|
|
355
|
+
version = "0.5.0"
|
|
356
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
357
|
+
checksum = "43ff7d91d3c1d568065b06c899777d1e48dcf76103a672a0adbc238a7f247f1e"
|
|
358
|
+
dependencies = [
|
|
359
|
+
"objc2",
|
|
360
|
+
]
|
|
361
|
+
|
|
304
362
|
[[package]]
|
|
305
363
|
name = "blocking"
|
|
306
|
-
version = "1.
|
|
364
|
+
version = "1.6.0"
|
|
307
365
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
308
|
-
checksum = "
|
|
366
|
+
checksum = "495f7104e962b7356f0aeb34247aca1fe7d2e783b346582db7f2904cb5717e88"
|
|
309
367
|
dependencies = [
|
|
310
368
|
"async-channel",
|
|
311
369
|
"async-lock",
|
|
312
370
|
"async-task",
|
|
313
|
-
"
|
|
314
|
-
"fastrand",
|
|
371
|
+
"futures-io",
|
|
315
372
|
"futures-lite",
|
|
316
|
-
"
|
|
373
|
+
"piper",
|
|
317
374
|
]
|
|
318
375
|
|
|
319
376
|
[[package]]
|
|
320
377
|
name = "brotli"
|
|
321
|
-
version = "3.
|
|
378
|
+
version = "3.5.0"
|
|
322
379
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
323
|
-
checksum = "
|
|
380
|
+
checksum = "d640d25bc63c50fb1f0b545ffd80207d2e10a4c965530809b40ba3386825c391"
|
|
324
381
|
dependencies = [
|
|
325
382
|
"alloc-no-stdlib",
|
|
326
383
|
"alloc-stdlib",
|
|
@@ -329,9 +386,9 @@ dependencies = [
|
|
|
329
386
|
|
|
330
387
|
[[package]]
|
|
331
388
|
name = "brotli-decompressor"
|
|
332
|
-
version = "2.
|
|
389
|
+
version = "2.5.1"
|
|
333
390
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
334
|
-
checksum = "
|
|
391
|
+
checksum = "4e2e4afe60d7dd600fdd3de8d0f08c2b7ec039712e3b6137ff98b7004e82de4f"
|
|
335
392
|
dependencies = [
|
|
336
393
|
"alloc-no-stdlib",
|
|
337
394
|
"alloc-stdlib",
|
|
@@ -339,9 +396,9 @@ dependencies = [
|
|
|
339
396
|
|
|
340
397
|
[[package]]
|
|
341
398
|
name = "bstr"
|
|
342
|
-
version = "1.
|
|
399
|
+
version = "1.9.1"
|
|
343
400
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
344
|
-
checksum = "
|
|
401
|
+
checksum = "05efc5cfd9110c8416e471df0e96702d58690178e206e61b7173706673c93706"
|
|
345
402
|
dependencies = [
|
|
346
403
|
"memchr",
|
|
347
404
|
"serde",
|
|
@@ -349,27 +406,27 @@ dependencies = [
|
|
|
349
406
|
|
|
350
407
|
[[package]]
|
|
351
408
|
name = "bumpalo"
|
|
352
|
-
version = "3.
|
|
409
|
+
version = "3.16.0"
|
|
353
410
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
354
|
-
checksum = "
|
|
411
|
+
checksum = "79296716171880943b8470b5f8d03aa55eb2e645a4874bdbb28adb49162e012c"
|
|
355
412
|
|
|
356
413
|
[[package]]
|
|
357
414
|
name = "bytemuck"
|
|
358
|
-
version = "1.
|
|
415
|
+
version = "1.15.0"
|
|
359
416
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
360
|
-
checksum = "
|
|
417
|
+
checksum = "5d6d68c57235a3a081186990eca2867354726650f42f7516ca50c28d6281fd15"
|
|
361
418
|
|
|
362
419
|
[[package]]
|
|
363
420
|
name = "byteorder"
|
|
364
|
-
version = "1.
|
|
421
|
+
version = "1.5.0"
|
|
365
422
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
366
|
-
checksum = "
|
|
423
|
+
checksum = "1fd0f2584146f6f2ef48085050886acf353beff7305ebd1ae69500e27c67f64b"
|
|
367
424
|
|
|
368
425
|
[[package]]
|
|
369
426
|
name = "bytes"
|
|
370
|
-
version = "1.
|
|
427
|
+
version = "1.6.0"
|
|
371
428
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
372
|
-
checksum = "
|
|
429
|
+
checksum = "514de17de45fdb8dc022b1a7975556c53c86f9f0aa5f534b98977b171857c2c9"
|
|
373
430
|
dependencies = [
|
|
374
431
|
"serde",
|
|
375
432
|
]
|
|
@@ -395,7 +452,7 @@ checksum = "3c55d429bef56ac9172d25fecb85dc8068307d17acd74b377866b7a1ef25d3c8"
|
|
|
395
452
|
dependencies = [
|
|
396
453
|
"glib-sys",
|
|
397
454
|
"libc",
|
|
398
|
-
"system-deps 6.
|
|
455
|
+
"system-deps 6.2.2",
|
|
399
456
|
]
|
|
400
457
|
|
|
401
458
|
[[package]]
|
|
@@ -421,14 +478,14 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
421
478
|
checksum = "599aa35200ffff8f04c1925aa1acc92fa2e08874379ef42e210a80e527e60838"
|
|
422
479
|
dependencies = [
|
|
423
480
|
"serde",
|
|
424
|
-
"toml 0.7.
|
|
481
|
+
"toml 0.7.8",
|
|
425
482
|
]
|
|
426
483
|
|
|
427
484
|
[[package]]
|
|
428
485
|
name = "cc"
|
|
429
|
-
version = "1.0.
|
|
486
|
+
version = "1.0.97"
|
|
430
487
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
431
|
-
checksum = "
|
|
488
|
+
checksum = "099a5357d84c4c61eb35fc8eafa9a79a902c2f76911e5747ced4e032edd8d9b4"
|
|
432
489
|
|
|
433
490
|
[[package]]
|
|
434
491
|
name = "cesu8"
|
|
@@ -444,7 +501,7 @@ checksum = "d38f2da7a0a2c4ccf0065be06397cc26a81f4e528be095826eee9d4adbb8c60f"
|
|
|
444
501
|
dependencies = [
|
|
445
502
|
"byteorder",
|
|
446
503
|
"fnv",
|
|
447
|
-
"uuid 1.
|
|
504
|
+
"uuid 1.8.0",
|
|
448
505
|
]
|
|
449
506
|
|
|
450
507
|
[[package]]
|
|
@@ -458,9 +515,9 @@ dependencies = [
|
|
|
458
515
|
|
|
459
516
|
[[package]]
|
|
460
517
|
name = "cfg-expr"
|
|
461
|
-
version = "0.15.
|
|
518
|
+
version = "0.15.8"
|
|
462
519
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
463
|
-
checksum = "
|
|
520
|
+
checksum = "d067ad48b8650848b989a59a86c6c36a995d02d2bf778d45c3c5d57bc2718f02"
|
|
464
521
|
dependencies = [
|
|
465
522
|
"smallvec",
|
|
466
523
|
"target-lexicon",
|
|
@@ -472,17 +529,32 @@ version = "1.0.0"
|
|
|
472
529
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
473
530
|
checksum = "baf1de4339761588bc0619e3cbc0120ee582ebb74b53b4efbf79117bd2da40fd"
|
|
474
531
|
|
|
532
|
+
[[package]]
|
|
533
|
+
name = "cfg_aliases"
|
|
534
|
+
version = "0.1.1"
|
|
535
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
536
|
+
checksum = "fd16c4719339c4530435d38e511904438d07cce7950afa3718a84ac36c10e89e"
|
|
537
|
+
|
|
475
538
|
[[package]]
|
|
476
539
|
name = "chrono"
|
|
477
|
-
version = "0.4.
|
|
540
|
+
version = "0.4.38"
|
|
478
541
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
479
|
-
checksum = "
|
|
542
|
+
checksum = "a21f936df1771bf62b77f047b726c4625ff2e8aa607c01ec06e5a05bd8463401"
|
|
480
543
|
dependencies = [
|
|
481
544
|
"android-tzdata",
|
|
482
545
|
"iana-time-zone",
|
|
483
546
|
"num-traits",
|
|
484
547
|
"serde",
|
|
485
|
-
"
|
|
548
|
+
"windows-targets 0.52.5",
|
|
549
|
+
]
|
|
550
|
+
|
|
551
|
+
[[package]]
|
|
552
|
+
name = "clipboard-win"
|
|
553
|
+
version = "5.3.1"
|
|
554
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
555
|
+
checksum = "79f4473f5144e20d9aceaf2972478f06ddf687831eafeeb434fbaf0acc4144ad"
|
|
556
|
+
dependencies = [
|
|
557
|
+
"error-code",
|
|
486
558
|
]
|
|
487
559
|
|
|
488
560
|
[[package]]
|
|
@@ -495,23 +567,22 @@ dependencies = [
|
|
|
495
567
|
"block",
|
|
496
568
|
"cocoa-foundation",
|
|
497
569
|
"core-foundation",
|
|
498
|
-
"core-graphics",
|
|
499
|
-
"foreign-types",
|
|
570
|
+
"core-graphics 0.22.3",
|
|
571
|
+
"foreign-types 0.3.2",
|
|
500
572
|
"libc",
|
|
501
573
|
"objc",
|
|
502
574
|
]
|
|
503
575
|
|
|
504
576
|
[[package]]
|
|
505
577
|
name = "cocoa-foundation"
|
|
506
|
-
version = "0.1.
|
|
578
|
+
version = "0.1.2"
|
|
507
579
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
508
|
-
checksum = "
|
|
580
|
+
checksum = "8c6234cbb2e4c785b456c0644748b1ac416dd045799740356f8363dfe00c93f7"
|
|
509
581
|
dependencies = [
|
|
510
582
|
"bitflags 1.3.2",
|
|
511
583
|
"block",
|
|
512
584
|
"core-foundation",
|
|
513
585
|
"core-graphics-types",
|
|
514
|
-
"foreign-types",
|
|
515
586
|
"libc",
|
|
516
587
|
"objc",
|
|
517
588
|
]
|
|
@@ -524,9 +595,9 @@ checksum = "3d7b894f5411737b7867f4827955924d7c254fc9f4d91a6aad6b097804b1018b"
|
|
|
524
595
|
|
|
525
596
|
[[package]]
|
|
526
597
|
name = "combine"
|
|
527
|
-
version = "4.6.
|
|
598
|
+
version = "4.6.7"
|
|
528
599
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
529
|
-
checksum = "
|
|
600
|
+
checksum = "ba5a308b75df32fe02788e748662718f03fde005016435c444eea572398219fd"
|
|
530
601
|
dependencies = [
|
|
531
602
|
"bytes",
|
|
532
603
|
"memchr",
|
|
@@ -534,9 +605,9 @@ dependencies = [
|
|
|
534
605
|
|
|
535
606
|
[[package]]
|
|
536
607
|
name = "concurrent-queue"
|
|
537
|
-
version = "2.
|
|
608
|
+
version = "2.5.0"
|
|
538
609
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
539
|
-
checksum = "
|
|
610
|
+
checksum = "4ca0197aee26d1ae37445ee532fefce43251d24cc7c166799f4d46817f1d3973"
|
|
540
611
|
dependencies = [
|
|
541
612
|
"crossbeam-utils",
|
|
542
613
|
]
|
|
@@ -549,9 +620,9 @@ checksum = "6245d59a3e82a7fc217c5828a6692dbc6dfb63a0c8c90495621f7b9d79704a0e"
|
|
|
549
620
|
|
|
550
621
|
[[package]]
|
|
551
622
|
name = "core-foundation"
|
|
552
|
-
version = "0.9.
|
|
623
|
+
version = "0.9.4"
|
|
553
624
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
554
|
-
checksum = "
|
|
625
|
+
checksum = "91e195e091a93c46f7102ec7818a2aa394e1e1771c3ab4825963fa03e45afb8f"
|
|
555
626
|
dependencies = [
|
|
556
627
|
"core-foundation-sys",
|
|
557
628
|
"libc",
|
|
@@ -559,9 +630,9 @@ dependencies = [
|
|
|
559
630
|
|
|
560
631
|
[[package]]
|
|
561
632
|
name = "core-foundation-sys"
|
|
562
|
-
version = "0.8.
|
|
633
|
+
version = "0.8.6"
|
|
563
634
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
564
|
-
checksum = "
|
|
635
|
+
checksum = "06ea2b9bc92be3c2baa9334a323ebca2d6f074ff852cd1d7b11064035cd3868f"
|
|
565
636
|
|
|
566
637
|
[[package]]
|
|
567
638
|
name = "core-graphics"
|
|
@@ -572,15 +643,28 @@ dependencies = [
|
|
|
572
643
|
"bitflags 1.3.2",
|
|
573
644
|
"core-foundation",
|
|
574
645
|
"core-graphics-types",
|
|
575
|
-
"foreign-types",
|
|
646
|
+
"foreign-types 0.3.2",
|
|
647
|
+
"libc",
|
|
648
|
+
]
|
|
649
|
+
|
|
650
|
+
[[package]]
|
|
651
|
+
name = "core-graphics"
|
|
652
|
+
version = "0.23.2"
|
|
653
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
654
|
+
checksum = "c07782be35f9e1140080c6b96f0d44b739e2278479f64e02fdab4e32dfd8b081"
|
|
655
|
+
dependencies = [
|
|
656
|
+
"bitflags 1.3.2",
|
|
657
|
+
"core-foundation",
|
|
658
|
+
"core-graphics-types",
|
|
659
|
+
"foreign-types 0.5.0",
|
|
576
660
|
"libc",
|
|
577
661
|
]
|
|
578
662
|
|
|
579
663
|
[[package]]
|
|
580
664
|
name = "core-graphics-types"
|
|
581
|
-
version = "0.1.
|
|
665
|
+
version = "0.1.3"
|
|
582
666
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
583
|
-
checksum = "
|
|
667
|
+
checksum = "45390e6114f68f718cc7a830514a96f903cccd70d02a8f6d9f643ac4ba45afaf"
|
|
584
668
|
dependencies = [
|
|
585
669
|
"bitflags 1.3.2",
|
|
586
670
|
"core-foundation",
|
|
@@ -589,41 +673,56 @@ dependencies = [
|
|
|
589
673
|
|
|
590
674
|
[[package]]
|
|
591
675
|
name = "cpufeatures"
|
|
592
|
-
version = "0.2.
|
|
676
|
+
version = "0.2.12"
|
|
593
677
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
594
|
-
checksum = "
|
|
678
|
+
checksum = "53fe5e26ff1b7aef8bca9c6080520cfb8d9333c7568e1829cef191a9723e5504"
|
|
595
679
|
dependencies = [
|
|
596
680
|
"libc",
|
|
597
681
|
]
|
|
598
682
|
|
|
599
683
|
[[package]]
|
|
600
684
|
name = "crc32fast"
|
|
601
|
-
version = "1.
|
|
685
|
+
version = "1.4.0"
|
|
602
686
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
603
|
-
checksum = "
|
|
687
|
+
checksum = "b3855a8a784b474f333699ef2bbca9db2c4a1f6d9088a90a2d25b1eb53111eaa"
|
|
604
688
|
dependencies = [
|
|
605
689
|
"cfg-if",
|
|
606
690
|
]
|
|
607
691
|
|
|
608
692
|
[[package]]
|
|
609
693
|
name = "crossbeam-channel"
|
|
610
|
-
version = "0.5.
|
|
694
|
+
version = "0.5.12"
|
|
611
695
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
612
|
-
checksum = "
|
|
696
|
+
checksum = "ab3db02a9c5b5121e1e42fbdb1aeb65f5e02624cc58c43f2884c6ccac0b82f95"
|
|
613
697
|
dependencies = [
|
|
614
|
-
"cfg-if",
|
|
615
698
|
"crossbeam-utils",
|
|
616
699
|
]
|
|
617
700
|
|
|
618
701
|
[[package]]
|
|
619
|
-
name = "crossbeam-
|
|
620
|
-
version = "0.8.
|
|
702
|
+
name = "crossbeam-deque"
|
|
703
|
+
version = "0.8.5"
|
|
621
704
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
622
|
-
checksum = "
|
|
705
|
+
checksum = "613f8cc01fe9cf1a3eb3d7f488fd2fa8388403e97039e2f73692932e291a770d"
|
|
623
706
|
dependencies = [
|
|
624
|
-
"
|
|
707
|
+
"crossbeam-epoch",
|
|
708
|
+
"crossbeam-utils",
|
|
709
|
+
]
|
|
710
|
+
|
|
711
|
+
[[package]]
|
|
712
|
+
name = "crossbeam-epoch"
|
|
713
|
+
version = "0.9.18"
|
|
714
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
715
|
+
checksum = "5b82ac4a3c2ca9c3460964f020e1402edd5753411d7737aa39c3714ad1b5420e"
|
|
716
|
+
dependencies = [
|
|
717
|
+
"crossbeam-utils",
|
|
625
718
|
]
|
|
626
719
|
|
|
720
|
+
[[package]]
|
|
721
|
+
name = "crossbeam-utils"
|
|
722
|
+
version = "0.8.19"
|
|
723
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
724
|
+
checksum = "248e3bacc7dc6baa3b21e405ee045c3047101a49145e7e9eca583ab4c2ca5345"
|
|
725
|
+
|
|
627
726
|
[[package]]
|
|
628
727
|
name = "crypto-common"
|
|
629
728
|
version = "0.1.6"
|
|
@@ -658,24 +757,24 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
658
757
|
checksum = "13b588ba4ac1a99f7f2964d24b3d896ddc6bf847ee3855dbd4366f058cfcd331"
|
|
659
758
|
dependencies = [
|
|
660
759
|
"quote",
|
|
661
|
-
"syn 2.0.
|
|
760
|
+
"syn 2.0.61",
|
|
662
761
|
]
|
|
663
762
|
|
|
664
763
|
[[package]]
|
|
665
764
|
name = "ctor"
|
|
666
|
-
version = "0.
|
|
765
|
+
version = "0.2.8"
|
|
667
766
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
668
|
-
checksum = "
|
|
767
|
+
checksum = "edb49164822f3ee45b17acd4a208cfc1251410cf0cad9a833234c9890774dd9f"
|
|
669
768
|
dependencies = [
|
|
670
769
|
"quote",
|
|
671
|
-
"syn
|
|
770
|
+
"syn 2.0.61",
|
|
672
771
|
]
|
|
673
772
|
|
|
674
773
|
[[package]]
|
|
675
774
|
name = "darling"
|
|
676
|
-
version = "0.20.
|
|
775
|
+
version = "0.20.8"
|
|
677
776
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
678
|
-
checksum = "
|
|
777
|
+
checksum = "54e36fcd13ed84ffdfda6f5be89b31287cbb80c439841fe69e04841435464391"
|
|
679
778
|
dependencies = [
|
|
680
779
|
"darling_core",
|
|
681
780
|
"darling_macro",
|
|
@@ -683,38 +782,48 @@ dependencies = [
|
|
|
683
782
|
|
|
684
783
|
[[package]]
|
|
685
784
|
name = "darling_core"
|
|
686
|
-
version = "0.20.
|
|
785
|
+
version = "0.20.8"
|
|
687
786
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
688
|
-
checksum = "
|
|
787
|
+
checksum = "9c2cf1c23a687a1feeb728783b993c4e1ad83d99f351801977dd809b48d0a70f"
|
|
689
788
|
dependencies = [
|
|
690
789
|
"fnv",
|
|
691
790
|
"ident_case",
|
|
692
791
|
"proc-macro2",
|
|
693
792
|
"quote",
|
|
694
793
|
"strsim",
|
|
695
|
-
"syn 2.0.
|
|
794
|
+
"syn 2.0.61",
|
|
696
795
|
]
|
|
697
796
|
|
|
698
797
|
[[package]]
|
|
699
798
|
name = "darling_macro"
|
|
700
|
-
version = "0.20.
|
|
799
|
+
version = "0.20.8"
|
|
701
800
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
702
|
-
checksum = "
|
|
801
|
+
checksum = "a668eda54683121533a393014d8692171709ff57a7d61f187b6e782719f8933f"
|
|
703
802
|
dependencies = [
|
|
704
803
|
"darling_core",
|
|
705
804
|
"quote",
|
|
706
|
-
"syn 2.0.
|
|
805
|
+
"syn 2.0.61",
|
|
707
806
|
]
|
|
708
807
|
|
|
709
808
|
[[package]]
|
|
710
|
-
name = "
|
|
711
|
-
version = "
|
|
809
|
+
name = "deranged"
|
|
810
|
+
version = "0.3.11"
|
|
811
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
812
|
+
checksum = "b42b6fa04a440b495c8b04d0e71b707c585f83cb9cb28cf8cd0d976c315e31b4"
|
|
813
|
+
dependencies = [
|
|
814
|
+
"powerfmt",
|
|
815
|
+
"serde",
|
|
816
|
+
]
|
|
817
|
+
|
|
818
|
+
[[package]]
|
|
819
|
+
name = "derive-new"
|
|
820
|
+
version = "0.6.0"
|
|
712
821
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
713
|
-
checksum = "
|
|
822
|
+
checksum = "d150dea618e920167e5973d70ae6ece4385b7164e0d799fe7c122dd0a5d912ad"
|
|
714
823
|
dependencies = [
|
|
715
824
|
"proc-macro2",
|
|
716
825
|
"quote",
|
|
717
|
-
"syn
|
|
826
|
+
"syn 2.0.61",
|
|
718
827
|
]
|
|
719
828
|
|
|
720
829
|
[[package]]
|
|
@@ -767,6 +876,21 @@ version = "0.2.0"
|
|
|
767
876
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
768
877
|
checksum = "bd0c93bb4b0c6d9b77f4435b0ae98c24d17f1c45b2ff844c6151a07256ca923b"
|
|
769
878
|
|
|
879
|
+
[[package]]
|
|
880
|
+
name = "dlib"
|
|
881
|
+
version = "0.5.2"
|
|
882
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
883
|
+
checksum = "330c60081dcc4c72131f8eb70510f1ac07223e5d4163db481a04a0befcffa412"
|
|
884
|
+
dependencies = [
|
|
885
|
+
"libloading 0.8.3",
|
|
886
|
+
]
|
|
887
|
+
|
|
888
|
+
[[package]]
|
|
889
|
+
name = "downcast-rs"
|
|
890
|
+
version = "1.2.1"
|
|
891
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
892
|
+
checksum = "75b325c5dbd37f80359721ad39aca5a29fb04c89279657cffdda8736d0c0b9d2"
|
|
893
|
+
|
|
770
894
|
[[package]]
|
|
771
895
|
name = "dtoa"
|
|
772
896
|
version = "1.0.9"
|
|
@@ -790,15 +914,16 @@ checksum = "56ce8c6da7551ec6c462cbaf3bfbc75131ebbfa1c944aeaa9dab51ca1c5f0c3b"
|
|
|
790
914
|
|
|
791
915
|
[[package]]
|
|
792
916
|
name = "embed-resource"
|
|
793
|
-
version = "2.2
|
|
917
|
+
version = "2.4.2"
|
|
794
918
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
795
|
-
checksum = "
|
|
919
|
+
checksum = "c6985554d0688b687c5cb73898a34fbe3ad6c24c58c238a4d91d5e840670ee9d"
|
|
796
920
|
dependencies = [
|
|
797
921
|
"cc",
|
|
922
|
+
"memchr",
|
|
798
923
|
"rustc_version",
|
|
799
|
-
"toml 0.
|
|
924
|
+
"toml 0.8.12",
|
|
800
925
|
"vswhom",
|
|
801
|
-
"winreg 0.
|
|
926
|
+
"winreg 0.52.0",
|
|
802
927
|
]
|
|
803
928
|
|
|
804
929
|
[[package]]
|
|
@@ -809,18 +934,24 @@ checksum = "4ef6b89e5b37196644d8796de5268852ff179b44e96276cf4290264843743bb7"
|
|
|
809
934
|
|
|
810
935
|
[[package]]
|
|
811
936
|
name = "encoding_rs"
|
|
812
|
-
version = "0.8.
|
|
937
|
+
version = "0.8.34"
|
|
813
938
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
814
|
-
checksum = "
|
|
939
|
+
checksum = "b45de904aa0b010bce2ab45264d0631681847fa7b6f2eaa7dab7619943bc4f59"
|
|
815
940
|
dependencies = [
|
|
816
941
|
"cfg-if",
|
|
817
942
|
]
|
|
818
943
|
|
|
944
|
+
[[package]]
|
|
945
|
+
name = "endi"
|
|
946
|
+
version = "1.1.0"
|
|
947
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
948
|
+
checksum = "a3d8a32ae18130a3c84dd492d4215c3d913c3b07c6b63c2eb3eb7ff1101ab7bf"
|
|
949
|
+
|
|
819
950
|
[[package]]
|
|
820
951
|
name = "enumflags2"
|
|
821
|
-
version = "0.7.
|
|
952
|
+
version = "0.7.9"
|
|
822
953
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
823
|
-
checksum = "
|
|
954
|
+
checksum = "3278c9d5fb675e0a51dabcf4c0d355f692b064171535ba72361be1528a9d8e8d"
|
|
824
955
|
dependencies = [
|
|
825
956
|
"enumflags2_derive",
|
|
826
957
|
"serde",
|
|
@@ -828,13 +959,13 @@ dependencies = [
|
|
|
828
959
|
|
|
829
960
|
[[package]]
|
|
830
961
|
name = "enumflags2_derive"
|
|
831
|
-
version = "0.7.
|
|
962
|
+
version = "0.7.9"
|
|
832
963
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
833
|
-
checksum = "
|
|
964
|
+
checksum = "5c785274071b1b420972453b306eeca06acf4633829db4223b58a2a8c5953bc4"
|
|
834
965
|
dependencies = [
|
|
835
966
|
"proc-macro2",
|
|
836
967
|
"quote",
|
|
837
|
-
"syn 2.0.
|
|
968
|
+
"syn 2.0.61",
|
|
838
969
|
]
|
|
839
970
|
|
|
840
971
|
[[package]]
|
|
@@ -845,30 +976,61 @@ checksum = "5443807d6dff69373d433ab9ef5378ad8df50ca6298caf15de6e52e24aaf54d5"
|
|
|
845
976
|
|
|
846
977
|
[[package]]
|
|
847
978
|
name = "errno"
|
|
848
|
-
version = "0.3.
|
|
979
|
+
version = "0.3.8"
|
|
849
980
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
850
|
-
checksum = "
|
|
981
|
+
checksum = "a258e46cdc063eb8519c00b9fc845fc47bcfca4130e2f08e88665ceda8474245"
|
|
851
982
|
dependencies = [
|
|
852
|
-
"errno-dragonfly",
|
|
853
983
|
"libc",
|
|
854
|
-
"windows-sys 0.
|
|
984
|
+
"windows-sys 0.52.0",
|
|
855
985
|
]
|
|
856
986
|
|
|
857
987
|
[[package]]
|
|
858
|
-
name = "
|
|
859
|
-
version = "
|
|
988
|
+
name = "error-code"
|
|
989
|
+
version = "3.2.0"
|
|
990
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
991
|
+
checksum = "a0474425d51df81997e2f90a21591180b38eccf27292d755f3e30750225c175b"
|
|
992
|
+
|
|
993
|
+
[[package]]
|
|
994
|
+
name = "event-listener"
|
|
995
|
+
version = "4.0.3"
|
|
860
996
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
861
|
-
checksum = "
|
|
997
|
+
checksum = "67b215c49b2b248c855fb73579eb1f4f26c38ffdc12973e20e07b91d78d5646e"
|
|
862
998
|
dependencies = [
|
|
863
|
-
"
|
|
864
|
-
"
|
|
999
|
+
"concurrent-queue",
|
|
1000
|
+
"parking",
|
|
1001
|
+
"pin-project-lite",
|
|
865
1002
|
]
|
|
866
1003
|
|
|
867
1004
|
[[package]]
|
|
868
1005
|
name = "event-listener"
|
|
869
|
-
version = "
|
|
1006
|
+
version = "5.3.0"
|
|
1007
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1008
|
+
checksum = "6d9944b8ca13534cdfb2800775f8dd4902ff3fc75a50101466decadfdf322a24"
|
|
1009
|
+
dependencies = [
|
|
1010
|
+
"concurrent-queue",
|
|
1011
|
+
"parking",
|
|
1012
|
+
"pin-project-lite",
|
|
1013
|
+
]
|
|
1014
|
+
|
|
1015
|
+
[[package]]
|
|
1016
|
+
name = "event-listener-strategy"
|
|
1017
|
+
version = "0.4.0"
|
|
1018
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1019
|
+
checksum = "958e4d70b6d5e81971bebec42271ec641e7ff4e170a6fa605f2b8a8b65cb97d3"
|
|
1020
|
+
dependencies = [
|
|
1021
|
+
"event-listener 4.0.3",
|
|
1022
|
+
"pin-project-lite",
|
|
1023
|
+
]
|
|
1024
|
+
|
|
1025
|
+
[[package]]
|
|
1026
|
+
name = "event-listener-strategy"
|
|
1027
|
+
version = "0.5.2"
|
|
870
1028
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
871
|
-
checksum = "
|
|
1029
|
+
checksum = "0f214dc438f977e6d4e3500aaa277f5ad94ca83fbbd9b1a15713ce2344ccc5a1"
|
|
1030
|
+
dependencies = [
|
|
1031
|
+
"event-listener 5.3.0",
|
|
1032
|
+
"pin-project-lite",
|
|
1033
|
+
]
|
|
872
1034
|
|
|
873
1035
|
[[package]]
|
|
874
1036
|
name = "fallible-iterator"
|
|
@@ -878,18 +1040,15 @@ checksum = "4443176a9f2c162692bd3d352d745ef9413eec5782a80d8fd6f8a1ac692a07f7"
|
|
|
878
1040
|
|
|
879
1041
|
[[package]]
|
|
880
1042
|
name = "fastrand"
|
|
881
|
-
version = "1.
|
|
1043
|
+
version = "2.1.0"
|
|
882
1044
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
883
|
-
checksum = "
|
|
884
|
-
dependencies = [
|
|
885
|
-
"instant",
|
|
886
|
-
]
|
|
1045
|
+
checksum = "9fc0510504f03c51ada170672ac806f1f105a88aa97a5281117e1ddc3368e51a"
|
|
887
1046
|
|
|
888
1047
|
[[package]]
|
|
889
1048
|
name = "fdeflate"
|
|
890
|
-
version = "0.3.
|
|
1049
|
+
version = "0.3.4"
|
|
891
1050
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
892
|
-
checksum = "
|
|
1051
|
+
checksum = "4f9bfee30e4dedf0ab8b422f03af778d9612b63f502710fc500a334ebe2de645"
|
|
893
1052
|
dependencies = [
|
|
894
1053
|
"simd-adler32",
|
|
895
1054
|
]
|
|
@@ -900,27 +1059,33 @@ version = "0.3.6"
|
|
|
900
1059
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
901
1060
|
checksum = "38e2275cc4e4fc009b0669731a1e5ab7ebf11f469eaede2bab9309a5b4d6057f"
|
|
902
1061
|
dependencies = [
|
|
903
|
-
"memoffset 0.9.
|
|
1062
|
+
"memoffset 0.9.1",
|
|
904
1063
|
"rustc_version",
|
|
905
1064
|
]
|
|
906
1065
|
|
|
907
1066
|
[[package]]
|
|
908
1067
|
name = "filetime"
|
|
909
|
-
version = "0.2.
|
|
1068
|
+
version = "0.2.23"
|
|
910
1069
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
911
|
-
checksum = "
|
|
1070
|
+
checksum = "1ee447700ac8aa0b2f2bd7bc4462ad686ba06baa6727ac149a2d6277f0d240fd"
|
|
912
1071
|
dependencies = [
|
|
913
1072
|
"cfg-if",
|
|
914
1073
|
"libc",
|
|
915
|
-
"redox_syscall 0.
|
|
916
|
-
"windows-sys 0.
|
|
1074
|
+
"redox_syscall 0.4.1",
|
|
1075
|
+
"windows-sys 0.52.0",
|
|
917
1076
|
]
|
|
918
1077
|
|
|
1078
|
+
[[package]]
|
|
1079
|
+
name = "fixedbitset"
|
|
1080
|
+
version = "0.4.2"
|
|
1081
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1082
|
+
checksum = "0ce7134b9999ecaf8bcd65542e436736ef32ddca1b3e06094cb6ec5755203b80"
|
|
1083
|
+
|
|
919
1084
|
[[package]]
|
|
920
1085
|
name = "flate2"
|
|
921
|
-
version = "1.0.
|
|
1086
|
+
version = "1.0.30"
|
|
922
1087
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
923
|
-
checksum = "
|
|
1088
|
+
checksum = "5f54427cfd1c7829e2a139fcefea601bf088ebca651d2bf53ebc600eac295dae"
|
|
924
1089
|
dependencies = [
|
|
925
1090
|
"crc32fast",
|
|
926
1091
|
"miniz_oxide",
|
|
@@ -938,7 +1103,28 @@ version = "0.3.2"
|
|
|
938
1103
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
939
1104
|
checksum = "f6f339eb8adc052cd2ca78910fda869aefa38d22d5cb648e6485e4d3fc06f3b1"
|
|
940
1105
|
dependencies = [
|
|
941
|
-
"foreign-types-shared",
|
|
1106
|
+
"foreign-types-shared 0.1.1",
|
|
1107
|
+
]
|
|
1108
|
+
|
|
1109
|
+
[[package]]
|
|
1110
|
+
name = "foreign-types"
|
|
1111
|
+
version = "0.5.0"
|
|
1112
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1113
|
+
checksum = "d737d9aa519fb7b749cbc3b962edcf310a8dd1f4b67c91c4f83975dbdd17d965"
|
|
1114
|
+
dependencies = [
|
|
1115
|
+
"foreign-types-macros",
|
|
1116
|
+
"foreign-types-shared 0.3.1",
|
|
1117
|
+
]
|
|
1118
|
+
|
|
1119
|
+
[[package]]
|
|
1120
|
+
name = "foreign-types-macros"
|
|
1121
|
+
version = "0.2.3"
|
|
1122
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1123
|
+
checksum = "1a5c6c585bc94aaf2c7b51dd4c2ba22680844aba4c687be581871a6f518c5742"
|
|
1124
|
+
dependencies = [
|
|
1125
|
+
"proc-macro2",
|
|
1126
|
+
"quote",
|
|
1127
|
+
"syn 2.0.61",
|
|
942
1128
|
]
|
|
943
1129
|
|
|
944
1130
|
[[package]]
|
|
@@ -947,11 +1133,17 @@ version = "0.1.1"
|
|
|
947
1133
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
948
1134
|
checksum = "00b0228411908ca8685dba7fc2cdd70ec9990a6e753e89b6ac91a84c40fbaf4b"
|
|
949
1135
|
|
|
1136
|
+
[[package]]
|
|
1137
|
+
name = "foreign-types-shared"
|
|
1138
|
+
version = "0.3.1"
|
|
1139
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1140
|
+
checksum = "aa9a19cbb55df58761df49b23516a86d432839add4af60fc256da840f66ed35b"
|
|
1141
|
+
|
|
950
1142
|
[[package]]
|
|
951
1143
|
name = "form_urlencoded"
|
|
952
|
-
version = "1.2.
|
|
1144
|
+
version = "1.2.1"
|
|
953
1145
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
954
|
-
checksum = "
|
|
1146
|
+
checksum = "e13624c2627564efccf4934284bdd98cbaa14e79b0b5a141218e507b3a823456"
|
|
955
1147
|
dependencies = [
|
|
956
1148
|
"percent-encoding",
|
|
957
1149
|
]
|
|
@@ -968,24 +1160,24 @@ dependencies = [
|
|
|
968
1160
|
|
|
969
1161
|
[[package]]
|
|
970
1162
|
name = "futures-channel"
|
|
971
|
-
version = "0.3.
|
|
1163
|
+
version = "0.3.30"
|
|
972
1164
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
973
|
-
checksum = "
|
|
1165
|
+
checksum = "eac8f7d7865dcb88bd4373ab671c8cf4508703796caa2b1985a9ca867b3fcb78"
|
|
974
1166
|
dependencies = [
|
|
975
1167
|
"futures-core",
|
|
976
1168
|
]
|
|
977
1169
|
|
|
978
1170
|
[[package]]
|
|
979
1171
|
name = "futures-core"
|
|
980
|
-
version = "0.3.
|
|
1172
|
+
version = "0.3.30"
|
|
981
1173
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
982
|
-
checksum = "
|
|
1174
|
+
checksum = "dfc6580bb841c5a68e9ef15c77ccc837b40a7504914d52e47b8b0e9bbda25a1d"
|
|
983
1175
|
|
|
984
1176
|
[[package]]
|
|
985
1177
|
name = "futures-executor"
|
|
986
|
-
version = "0.3.
|
|
1178
|
+
version = "0.3.30"
|
|
987
1179
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
988
|
-
checksum = "
|
|
1180
|
+
checksum = "a576fc72ae164fca6b9db127eaa9a9dda0d61316034f33a0a0d4eda41f02b01d"
|
|
989
1181
|
dependencies = [
|
|
990
1182
|
"futures-core",
|
|
991
1183
|
"futures-task",
|
|
@@ -994,53 +1186,51 @@ dependencies = [
|
|
|
994
1186
|
|
|
995
1187
|
[[package]]
|
|
996
1188
|
name = "futures-io"
|
|
997
|
-
version = "0.3.
|
|
1189
|
+
version = "0.3.30"
|
|
998
1190
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
999
|
-
checksum = "
|
|
1191
|
+
checksum = "a44623e20b9681a318efdd71c299b6b222ed6f231972bfe2f224ebad6311f0c1"
|
|
1000
1192
|
|
|
1001
1193
|
[[package]]
|
|
1002
1194
|
name = "futures-lite"
|
|
1003
|
-
version = "
|
|
1195
|
+
version = "2.3.0"
|
|
1004
1196
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1005
|
-
checksum = "
|
|
1197
|
+
checksum = "52527eb5074e35e9339c6b4e8d12600c7128b68fb25dcb9fa9dec18f7c25f3a5"
|
|
1006
1198
|
dependencies = [
|
|
1007
1199
|
"fastrand",
|
|
1008
1200
|
"futures-core",
|
|
1009
1201
|
"futures-io",
|
|
1010
|
-
"memchr",
|
|
1011
1202
|
"parking",
|
|
1012
1203
|
"pin-project-lite",
|
|
1013
|
-
"waker-fn",
|
|
1014
1204
|
]
|
|
1015
1205
|
|
|
1016
1206
|
[[package]]
|
|
1017
1207
|
name = "futures-macro"
|
|
1018
|
-
version = "0.3.
|
|
1208
|
+
version = "0.3.30"
|
|
1019
1209
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1020
|
-
checksum = "
|
|
1210
|
+
checksum = "87750cf4b7a4c0625b1529e4c543c2182106e4dedc60a2a6455e00d212c489ac"
|
|
1021
1211
|
dependencies = [
|
|
1022
1212
|
"proc-macro2",
|
|
1023
1213
|
"quote",
|
|
1024
|
-
"syn 2.0.
|
|
1214
|
+
"syn 2.0.61",
|
|
1025
1215
|
]
|
|
1026
1216
|
|
|
1027
1217
|
[[package]]
|
|
1028
1218
|
name = "futures-sink"
|
|
1029
|
-
version = "0.3.
|
|
1219
|
+
version = "0.3.30"
|
|
1030
1220
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1031
|
-
checksum = "
|
|
1221
|
+
checksum = "9fb8e00e87438d937621c1c6269e53f536c14d3fbd6a042bb24879e57d474fb5"
|
|
1032
1222
|
|
|
1033
1223
|
[[package]]
|
|
1034
1224
|
name = "futures-task"
|
|
1035
|
-
version = "0.3.
|
|
1225
|
+
version = "0.3.30"
|
|
1036
1226
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1037
|
-
checksum = "
|
|
1227
|
+
checksum = "38d84fa142264698cdce1a9f9172cf383a0c82de1bddcf3092901442c4097004"
|
|
1038
1228
|
|
|
1039
1229
|
[[package]]
|
|
1040
1230
|
name = "futures-util"
|
|
1041
|
-
version = "0.3.
|
|
1231
|
+
version = "0.3.30"
|
|
1042
1232
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1043
|
-
checksum = "
|
|
1233
|
+
checksum = "3d6401deb83407ab3da39eba7e33987a73c3df0c82b4bb5813ee871c19c41d48"
|
|
1044
1234
|
dependencies = [
|
|
1045
1235
|
"futures-core",
|
|
1046
1236
|
"futures-io",
|
|
@@ -1101,7 +1291,7 @@ dependencies = [
|
|
|
1101
1291
|
"glib-sys",
|
|
1102
1292
|
"gobject-sys",
|
|
1103
1293
|
"libc",
|
|
1104
|
-
"system-deps 6.
|
|
1294
|
+
"system-deps 6.2.2",
|
|
1105
1295
|
]
|
|
1106
1296
|
|
|
1107
1297
|
[[package]]
|
|
@@ -1118,7 +1308,7 @@ dependencies = [
|
|
|
1118
1308
|
"libc",
|
|
1119
1309
|
"pango-sys",
|
|
1120
1310
|
"pkg-config",
|
|
1121
|
-
"system-deps 6.
|
|
1311
|
+
"system-deps 6.2.2",
|
|
1122
1312
|
]
|
|
1123
1313
|
|
|
1124
1314
|
[[package]]
|
|
@@ -1132,7 +1322,7 @@ dependencies = [
|
|
|
1132
1322
|
"gobject-sys",
|
|
1133
1323
|
"libc",
|
|
1134
1324
|
"pkg-config",
|
|
1135
|
-
"system-deps 6.
|
|
1325
|
+
"system-deps 6.2.2",
|
|
1136
1326
|
]
|
|
1137
1327
|
|
|
1138
1328
|
[[package]]
|
|
@@ -1144,7 +1334,7 @@ dependencies = [
|
|
|
1144
1334
|
"gdk-sys",
|
|
1145
1335
|
"glib-sys",
|
|
1146
1336
|
"libc",
|
|
1147
|
-
"system-deps 6.
|
|
1337
|
+
"system-deps 6.2.2",
|
|
1148
1338
|
"x11",
|
|
1149
1339
|
]
|
|
1150
1340
|
|
|
@@ -1171,6 +1361,16 @@ dependencies = [
|
|
|
1171
1361
|
"version_check",
|
|
1172
1362
|
]
|
|
1173
1363
|
|
|
1364
|
+
[[package]]
|
|
1365
|
+
name = "gethostname"
|
|
1366
|
+
version = "0.4.3"
|
|
1367
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1368
|
+
checksum = "0176e0459c2e4a1fe232f984bca6890e681076abb9934f6cea7c326f3fc47818"
|
|
1369
|
+
dependencies = [
|
|
1370
|
+
"libc",
|
|
1371
|
+
"windows-targets 0.48.5",
|
|
1372
|
+
]
|
|
1373
|
+
|
|
1174
1374
|
[[package]]
|
|
1175
1375
|
name = "getrandom"
|
|
1176
1376
|
version = "0.1.16"
|
|
@@ -1184,9 +1384,9 @@ dependencies = [
|
|
|
1184
1384
|
|
|
1185
1385
|
[[package]]
|
|
1186
1386
|
name = "getrandom"
|
|
1187
|
-
version = "0.2.
|
|
1387
|
+
version = "0.2.15"
|
|
1188
1388
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1189
|
-
checksum = "
|
|
1389
|
+
checksum = "c4567c8db10ae91089c99af84c68c38da3ec2f087c3f82960bcdbf3656b6f4d7"
|
|
1190
1390
|
dependencies = [
|
|
1191
1391
|
"cfg-if",
|
|
1192
1392
|
"libc",
|
|
@@ -1195,9 +1395,9 @@ dependencies = [
|
|
|
1195
1395
|
|
|
1196
1396
|
[[package]]
|
|
1197
1397
|
name = "gimli"
|
|
1198
|
-
version = "0.
|
|
1398
|
+
version = "0.28.1"
|
|
1199
1399
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1200
|
-
checksum = "
|
|
1400
|
+
checksum = "4271d37baee1b8c7e4b708028c57d816cf9d2434acb33a549475f78c181f6253"
|
|
1201
1401
|
|
|
1202
1402
|
[[package]]
|
|
1203
1403
|
name = "gio"
|
|
@@ -1225,7 +1425,7 @@ dependencies = [
|
|
|
1225
1425
|
"glib-sys",
|
|
1226
1426
|
"gobject-sys",
|
|
1227
1427
|
"libc",
|
|
1228
|
-
"system-deps 6.
|
|
1428
|
+
"system-deps 6.2.2",
|
|
1229
1429
|
"winapi",
|
|
1230
1430
|
]
|
|
1231
1431
|
|
|
@@ -1257,7 +1457,7 @@ checksum = "10c6ae9f6fa26f4fb2ac16b528d138d971ead56141de489f8111e259b9df3c4a"
|
|
|
1257
1457
|
dependencies = [
|
|
1258
1458
|
"anyhow",
|
|
1259
1459
|
"heck 0.4.1",
|
|
1260
|
-
"proc-macro-crate",
|
|
1460
|
+
"proc-macro-crate 1.3.1",
|
|
1261
1461
|
"proc-macro-error",
|
|
1262
1462
|
"proc-macro2",
|
|
1263
1463
|
"quote",
|
|
@@ -1271,7 +1471,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
1271
1471
|
checksum = "ef4b192f8e65e9cf76cbf4ea71fa8e3be4a0e18ffe3d68b8da6836974cc5bad4"
|
|
1272
1472
|
dependencies = [
|
|
1273
1473
|
"libc",
|
|
1274
|
-
"system-deps 6.
|
|
1474
|
+
"system-deps 6.2.2",
|
|
1275
1475
|
]
|
|
1276
1476
|
|
|
1277
1477
|
[[package]]
|
|
@@ -1282,15 +1482,15 @@ checksum = "d2fabcfbdc87f4758337ca535fb41a6d701b65693ce38287d856d1674551ec9b"
|
|
|
1282
1482
|
|
|
1283
1483
|
[[package]]
|
|
1284
1484
|
name = "globset"
|
|
1285
|
-
version = "0.4.
|
|
1485
|
+
version = "0.4.14"
|
|
1286
1486
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1287
|
-
checksum = "
|
|
1487
|
+
checksum = "57da3b9b5b85bd66f31093f8c408b90a74431672542466497dcbdfdc02034be1"
|
|
1288
1488
|
dependencies = [
|
|
1289
1489
|
"aho-corasick",
|
|
1290
1490
|
"bstr",
|
|
1291
|
-
"fnv",
|
|
1292
1491
|
"log",
|
|
1293
|
-
"regex",
|
|
1492
|
+
"regex-automata 0.4.6",
|
|
1493
|
+
"regex-syntax 0.8.3",
|
|
1294
1494
|
]
|
|
1295
1495
|
|
|
1296
1496
|
[[package]]
|
|
@@ -1301,7 +1501,7 @@ checksum = "0d57ce44246becd17153bd035ab4d32cfee096a657fc01f2231c9278378d1e0a"
|
|
|
1301
1501
|
dependencies = [
|
|
1302
1502
|
"glib-sys",
|
|
1303
1503
|
"libc",
|
|
1304
|
-
"system-deps 6.
|
|
1504
|
+
"system-deps 6.2.2",
|
|
1305
1505
|
]
|
|
1306
1506
|
|
|
1307
1507
|
[[package]]
|
|
@@ -1342,7 +1542,7 @@ dependencies = [
|
|
|
1342
1542
|
"gobject-sys",
|
|
1343
1543
|
"libc",
|
|
1344
1544
|
"pango-sys",
|
|
1345
|
-
"system-deps 6.
|
|
1545
|
+
"system-deps 6.2.2",
|
|
1346
1546
|
]
|
|
1347
1547
|
|
|
1348
1548
|
[[package]]
|
|
@@ -1352,7 +1552,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
1352
1552
|
checksum = "684c0456c086e8e7e9af73ec5b84e35938df394712054550e81558d21c44ab0d"
|
|
1353
1553
|
dependencies = [
|
|
1354
1554
|
"anyhow",
|
|
1355
|
-
"proc-macro-crate",
|
|
1555
|
+
"proc-macro-crate 1.3.1",
|
|
1356
1556
|
"proc-macro-error",
|
|
1357
1557
|
"proc-macro2",
|
|
1358
1558
|
"quote",
|
|
@@ -1361,9 +1561,9 @@ dependencies = [
|
|
|
1361
1561
|
|
|
1362
1562
|
[[package]]
|
|
1363
1563
|
name = "h2"
|
|
1364
|
-
version = "0.3.
|
|
1564
|
+
version = "0.3.26"
|
|
1365
1565
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1366
|
-
checksum = "
|
|
1566
|
+
checksum = "81fe527a889e1532da5c525686d96d4c2e74cdd345badf8dfef9f6b39dd5f5e8"
|
|
1367
1567
|
dependencies = [
|
|
1368
1568
|
"bytes",
|
|
1369
1569
|
"fnv",
|
|
@@ -1371,7 +1571,7 @@ dependencies = [
|
|
|
1371
1571
|
"futures-sink",
|
|
1372
1572
|
"futures-util",
|
|
1373
1573
|
"http",
|
|
1374
|
-
"indexmap
|
|
1574
|
+
"indexmap 2.2.6",
|
|
1375
1575
|
"slab",
|
|
1376
1576
|
"tokio",
|
|
1377
1577
|
"tokio-util",
|
|
@@ -1386,9 +1586,9 @@ checksum = "8a9ee70c43aaf417c914396645a0fa852624801b24ebb7ae78fe8272889ac888"
|
|
|
1386
1586
|
|
|
1387
1587
|
[[package]]
|
|
1388
1588
|
name = "hashbrown"
|
|
1389
|
-
version = "0.14.
|
|
1589
|
+
version = "0.14.5"
|
|
1390
1590
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1391
|
-
checksum = "
|
|
1591
|
+
checksum = "e5274423e17b7c9fc20b6e7e208532f9b19825d82dfd615708b70edd83df41f1"
|
|
1392
1592
|
|
|
1393
1593
|
[[package]]
|
|
1394
1594
|
name = "heck"
|
|
@@ -1405,11 +1605,17 @@ version = "0.4.1"
|
|
|
1405
1605
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1406
1606
|
checksum = "95505c38b4572b2d910cecb0281560f54b440a19336cbbcb27bf6ce6adc6f5a8"
|
|
1407
1607
|
|
|
1608
|
+
[[package]]
|
|
1609
|
+
name = "heck"
|
|
1610
|
+
version = "0.5.0"
|
|
1611
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1612
|
+
checksum = "2304e00983f87ffb38b55b444b5e3b60a884b5d30c0fca7d82fe33449bbe55ea"
|
|
1613
|
+
|
|
1408
1614
|
[[package]]
|
|
1409
1615
|
name = "hermit-abi"
|
|
1410
|
-
version = "0.3.
|
|
1616
|
+
version = "0.3.9"
|
|
1411
1617
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1412
|
-
checksum = "
|
|
1618
|
+
checksum = "d231dfb89cfffdbc30e7fc41579ed6066ad03abda9e567ccafae602b97ec5024"
|
|
1413
1619
|
|
|
1414
1620
|
[[package]]
|
|
1415
1621
|
name = "hex"
|
|
@@ -1418,17 +1624,12 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
1418
1624
|
checksum = "7f24254aa9a54b5c858eaee2f5bccdb46aaf0e486a595ed5fd8f86ba55232a70"
|
|
1419
1625
|
|
|
1420
1626
|
[[package]]
|
|
1421
|
-
name = "
|
|
1422
|
-
version = "0.
|
|
1627
|
+
name = "home"
|
|
1628
|
+
version = "0.5.9"
|
|
1423
1629
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1424
|
-
checksum = "
|
|
1630
|
+
checksum = "e3d1354bf6b7235cb4a0576c2619fd4ed18183f689b12b006a0ee7329eeff9a5"
|
|
1425
1631
|
dependencies = [
|
|
1426
|
-
"
|
|
1427
|
-
"mac",
|
|
1428
|
-
"markup5ever 0.10.1",
|
|
1429
|
-
"proc-macro2",
|
|
1430
|
-
"quote",
|
|
1431
|
-
"syn 1.0.109",
|
|
1632
|
+
"windows-sys 0.52.0",
|
|
1432
1633
|
]
|
|
1433
1634
|
|
|
1434
1635
|
[[package]]
|
|
@@ -1439,7 +1640,7 @@ checksum = "bea68cab48b8459f17cf1c944c67ddc572d272d9f2b274140f223ecb1da4a3b7"
|
|
|
1439
1640
|
dependencies = [
|
|
1440
1641
|
"log",
|
|
1441
1642
|
"mac",
|
|
1442
|
-
"markup5ever
|
|
1643
|
+
"markup5ever",
|
|
1443
1644
|
"proc-macro2",
|
|
1444
1645
|
"quote",
|
|
1445
1646
|
"syn 1.0.109",
|
|
@@ -1447,20 +1648,20 @@ dependencies = [
|
|
|
1447
1648
|
|
|
1448
1649
|
[[package]]
|
|
1449
1650
|
name = "http"
|
|
1450
|
-
version = "0.2.
|
|
1651
|
+
version = "0.2.12"
|
|
1451
1652
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1452
|
-
checksum = "
|
|
1653
|
+
checksum = "601cbb57e577e2f5ef5be8e7b83f0f63994f25aa94d673e54a92d5c516d101f1"
|
|
1453
1654
|
dependencies = [
|
|
1454
1655
|
"bytes",
|
|
1455
1656
|
"fnv",
|
|
1456
|
-
"itoa 1.0.
|
|
1657
|
+
"itoa 1.0.11",
|
|
1457
1658
|
]
|
|
1458
1659
|
|
|
1459
1660
|
[[package]]
|
|
1460
1661
|
name = "http-body"
|
|
1461
|
-
version = "0.4.
|
|
1662
|
+
version = "0.4.6"
|
|
1462
1663
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1463
|
-
checksum = "
|
|
1664
|
+
checksum = "7ceab25649e9960c0311ea418d17bee82c0dcec1bd053b5f9a66e265a693bed2"
|
|
1464
1665
|
dependencies = [
|
|
1465
1666
|
"bytes",
|
|
1466
1667
|
"http",
|
|
@@ -1481,15 +1682,15 @@ checksum = "d897f394bad6a705d5f4104762e116a75639e470d80901eed05a860a95cb1904"
|
|
|
1481
1682
|
|
|
1482
1683
|
[[package]]
|
|
1483
1684
|
name = "httpdate"
|
|
1484
|
-
version = "1.0.
|
|
1685
|
+
version = "1.0.3"
|
|
1485
1686
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1486
|
-
checksum = "
|
|
1687
|
+
checksum = "df3b46402a9d5adb4c86a0cf463f42e19994e3ee891101b1841f30a545cb49a9"
|
|
1487
1688
|
|
|
1488
1689
|
[[package]]
|
|
1489
1690
|
name = "hyper"
|
|
1490
|
-
version = "0.14.
|
|
1691
|
+
version = "0.14.28"
|
|
1491
1692
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1492
|
-
checksum = "
|
|
1693
|
+
checksum = "bf96e135eb83a2a8ddf766e426a841d8ddd7449d5f00d34ea02b41d2f19eef80"
|
|
1493
1694
|
dependencies = [
|
|
1494
1695
|
"bytes",
|
|
1495
1696
|
"futures-channel",
|
|
@@ -1500,7 +1701,7 @@ dependencies = [
|
|
|
1500
1701
|
"http-body",
|
|
1501
1702
|
"httparse",
|
|
1502
1703
|
"httpdate",
|
|
1503
|
-
"itoa 1.0.
|
|
1704
|
+
"itoa 1.0.11",
|
|
1504
1705
|
"pin-project-lite",
|
|
1505
1706
|
"socket2",
|
|
1506
1707
|
"tokio",
|
|
@@ -1524,16 +1725,16 @@ dependencies = [
|
|
|
1524
1725
|
|
|
1525
1726
|
[[package]]
|
|
1526
1727
|
name = "iana-time-zone"
|
|
1527
|
-
version = "0.1.
|
|
1728
|
+
version = "0.1.60"
|
|
1528
1729
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1529
|
-
checksum = "
|
|
1730
|
+
checksum = "e7ffbb5a1b541ea2561f8c41c087286cc091e21e556a4f09a8f6cbf17b69b141"
|
|
1530
1731
|
dependencies = [
|
|
1531
1732
|
"android_system_properties",
|
|
1532
1733
|
"core-foundation-sys",
|
|
1533
1734
|
"iana-time-zone-haiku",
|
|
1534
1735
|
"js-sys",
|
|
1535
1736
|
"wasm-bindgen",
|
|
1536
|
-
"windows 0.
|
|
1737
|
+
"windows-core 0.52.0",
|
|
1537
1738
|
]
|
|
1538
1739
|
|
|
1539
1740
|
[[package]]
|
|
@@ -1563,9 +1764,9 @@ checksum = "b9e0384b61958566e926dc50660321d12159025e767c18e043daf26b70104c39"
|
|
|
1563
1764
|
|
|
1564
1765
|
[[package]]
|
|
1565
1766
|
name = "idna"
|
|
1566
|
-
version = "0.
|
|
1767
|
+
version = "0.5.0"
|
|
1567
1768
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1568
|
-
checksum = "
|
|
1769
|
+
checksum = "634d9b1461af396cad843f47fdba5597a4f9e6ddd4bfb6ff5d85028c25cb12f6"
|
|
1569
1770
|
dependencies = [
|
|
1570
1771
|
"unicode-bidi",
|
|
1571
1772
|
"unicode-normalization",
|
|
@@ -1573,34 +1774,45 @@ dependencies = [
|
|
|
1573
1774
|
|
|
1574
1775
|
[[package]]
|
|
1575
1776
|
name = "ignore"
|
|
1576
|
-
version = "0.4.
|
|
1777
|
+
version = "0.4.22"
|
|
1577
1778
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1578
|
-
checksum = "
|
|
1779
|
+
checksum = "b46810df39e66e925525d6e38ce1e7f6e1d208f72dc39757880fcb66e2c58af1"
|
|
1579
1780
|
dependencies = [
|
|
1781
|
+
"crossbeam-deque",
|
|
1580
1782
|
"globset",
|
|
1581
|
-
"lazy_static",
|
|
1582
1783
|
"log",
|
|
1583
1784
|
"memchr",
|
|
1584
|
-
"regex",
|
|
1785
|
+
"regex-automata 0.4.6",
|
|
1585
1786
|
"same-file",
|
|
1586
|
-
"thread_local",
|
|
1587
1787
|
"walkdir",
|
|
1588
1788
|
"winapi-util",
|
|
1589
1789
|
]
|
|
1590
1790
|
|
|
1591
1791
|
[[package]]
|
|
1592
1792
|
name = "image"
|
|
1593
|
-
version = "0.24.
|
|
1793
|
+
version = "0.24.9"
|
|
1594
1794
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1595
|
-
checksum = "
|
|
1795
|
+
checksum = "5690139d2f55868e080017335e4b94cb7414274c74f1669c84fb5feba2c9f69d"
|
|
1596
1796
|
dependencies = [
|
|
1597
1797
|
"bytemuck",
|
|
1598
1798
|
"byteorder",
|
|
1599
1799
|
"color_quant",
|
|
1600
|
-
"num-rational",
|
|
1601
1800
|
"num-traits",
|
|
1602
1801
|
]
|
|
1603
1802
|
|
|
1803
|
+
[[package]]
|
|
1804
|
+
name = "image"
|
|
1805
|
+
version = "0.25.1"
|
|
1806
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1807
|
+
checksum = "fd54d660e773627692c524beaad361aca785a4f9f5730ce91f42aabe5bce3d11"
|
|
1808
|
+
dependencies = [
|
|
1809
|
+
"bytemuck",
|
|
1810
|
+
"byteorder",
|
|
1811
|
+
"num-traits",
|
|
1812
|
+
"png",
|
|
1813
|
+
"tiff",
|
|
1814
|
+
]
|
|
1815
|
+
|
|
1604
1816
|
[[package]]
|
|
1605
1817
|
name = "indexmap"
|
|
1606
1818
|
version = "1.9.3"
|
|
@@ -1614,19 +1826,20 @@ dependencies = [
|
|
|
1614
1826
|
|
|
1615
1827
|
[[package]]
|
|
1616
1828
|
name = "indexmap"
|
|
1617
|
-
version = "2.
|
|
1829
|
+
version = "2.2.6"
|
|
1618
1830
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1619
|
-
checksum = "
|
|
1831
|
+
checksum = "168fb715dda47215e360912c096649d23d58bf392ac62f73919e831745e40f26"
|
|
1620
1832
|
dependencies = [
|
|
1621
1833
|
"equivalent",
|
|
1622
|
-
"hashbrown 0.14.
|
|
1834
|
+
"hashbrown 0.14.5",
|
|
1835
|
+
"serde",
|
|
1623
1836
|
]
|
|
1624
1837
|
|
|
1625
1838
|
[[package]]
|
|
1626
1839
|
name = "infer"
|
|
1627
|
-
version = "0.
|
|
1840
|
+
version = "0.13.0"
|
|
1628
1841
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1629
|
-
checksum = "
|
|
1842
|
+
checksum = "f551f8c3a39f68f986517db0d1759de85881894fdc7db798bd2a9df9cb04b7fc"
|
|
1630
1843
|
dependencies = [
|
|
1631
1844
|
"cfb",
|
|
1632
1845
|
]
|
|
@@ -1641,21 +1854,10 @@ dependencies = [
|
|
|
1641
1854
|
]
|
|
1642
1855
|
|
|
1643
1856
|
[[package]]
|
|
1644
|
-
name = "
|
|
1645
|
-
version = "
|
|
1857
|
+
name = "ipnet"
|
|
1858
|
+
version = "2.9.0"
|
|
1646
1859
|
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"
|
|
1860
|
+
checksum = "8f518f335dce6725a761382244631d86cf0ccb2863413590b31338feb467f9c3"
|
|
1659
1861
|
|
|
1660
1862
|
[[package]]
|
|
1661
1863
|
name = "itoa"
|
|
@@ -1665,9 +1867,9 @@ checksum = "b71991ff56294aa922b450139ee08b3bfc70982c6b2c7562771375cf73542dd4"
|
|
|
1665
1867
|
|
|
1666
1868
|
[[package]]
|
|
1667
1869
|
name = "itoa"
|
|
1668
|
-
version = "1.0.
|
|
1870
|
+
version = "1.0.11"
|
|
1669
1871
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1670
|
-
checksum = "
|
|
1872
|
+
checksum = "49f1f14873335454500d59611f1cf4a4b0f786f9ac11f4312a78e4cf2566695b"
|
|
1671
1873
|
|
|
1672
1874
|
[[package]]
|
|
1673
1875
|
name = "javascriptcore-rs"
|
|
@@ -1712,11 +1914,17 @@ version = "0.3.0"
|
|
|
1712
1914
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1713
1915
|
checksum = "8eaf4bc02d17cbdd7ff4c7438cafcdf7fb9a4613313ad11b4f8fefe7d3fa0130"
|
|
1714
1916
|
|
|
1917
|
+
[[package]]
|
|
1918
|
+
name = "jpeg-decoder"
|
|
1919
|
+
version = "0.3.1"
|
|
1920
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1921
|
+
checksum = "f5d4a7da358eff58addd2877a45865158f0d78c911d43a5784ceb7bbf52833b0"
|
|
1922
|
+
|
|
1715
1923
|
[[package]]
|
|
1716
1924
|
name = "js-sys"
|
|
1717
|
-
version = "0.3.
|
|
1925
|
+
version = "0.3.69"
|
|
1718
1926
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1719
|
-
checksum = "
|
|
1927
|
+
checksum = "29c15563dc2726973df627357ce0c9ddddbea194836909d655df6a75d2cf296d"
|
|
1720
1928
|
dependencies = [
|
|
1721
1929
|
"wasm-bindgen",
|
|
1722
1930
|
]
|
|
@@ -1729,26 +1937,13 @@ checksum = "078e285eafdfb6c4b434e0d31e8cfcb5115b651496faca5749b88fafd4f23bfd"
|
|
|
1729
1937
|
|
|
1730
1938
|
[[package]]
|
|
1731
1939
|
name = "json-patch"
|
|
1732
|
-
version = "1.
|
|
1940
|
+
version = "1.4.0"
|
|
1733
1941
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1734
|
-
checksum = "
|
|
1942
|
+
checksum = "ec9ad60d674508f3ca8f380a928cfe7b096bc729c4e2dbfe3852bc45da3ab30b"
|
|
1735
1943
|
dependencies = [
|
|
1736
1944
|
"serde",
|
|
1737
1945
|
"serde_json",
|
|
1738
1946
|
"thiserror",
|
|
1739
|
-
"treediff",
|
|
1740
|
-
]
|
|
1741
|
-
|
|
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
1947
|
]
|
|
1753
1948
|
|
|
1754
1949
|
[[package]]
|
|
@@ -1758,7 +1953,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
1758
1953
|
checksum = "f29e4755b7b995046f510a7520c42b2fed58b77bd94d5a87a8eb43d2fd126da8"
|
|
1759
1954
|
dependencies = [
|
|
1760
1955
|
"cssparser",
|
|
1761
|
-
"html5ever
|
|
1956
|
+
"html5ever",
|
|
1762
1957
|
"indexmap 1.9.3",
|
|
1763
1958
|
"matches",
|
|
1764
1959
|
"selectors",
|
|
@@ -1790,15 +1985,15 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
1790
1985
|
checksum = "f1b3b6681973cea8cc3bce7391e6d7d5502720b80a581c9a95c9cbaf592826aa"
|
|
1791
1986
|
dependencies = [
|
|
1792
1987
|
"gtk-sys",
|
|
1793
|
-
"libloading",
|
|
1988
|
+
"libloading 0.7.4",
|
|
1794
1989
|
"once_cell",
|
|
1795
1990
|
]
|
|
1796
1991
|
|
|
1797
1992
|
[[package]]
|
|
1798
1993
|
name = "libc"
|
|
1799
|
-
version = "0.2.
|
|
1994
|
+
version = "0.2.154"
|
|
1800
1995
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1801
|
-
checksum = "
|
|
1996
|
+
checksum = "ae743338b92ff9146ce83992f766a31066a91a8c84a45e0e9f21e7cf6de6d346"
|
|
1802
1997
|
|
|
1803
1998
|
[[package]]
|
|
1804
1999
|
name = "libloading"
|
|
@@ -1811,25 +2006,42 @@ dependencies = [
|
|
|
1811
2006
|
]
|
|
1812
2007
|
|
|
1813
2008
|
[[package]]
|
|
1814
|
-
name = "
|
|
1815
|
-
version = "0.
|
|
2009
|
+
name = "libloading"
|
|
2010
|
+
version = "0.8.3"
|
|
2011
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2012
|
+
checksum = "0c2a198fb6b0eada2a8df47933734e6d35d350665a33a3593d7164fa52c75c19"
|
|
2013
|
+
dependencies = [
|
|
2014
|
+
"cfg-if",
|
|
2015
|
+
"windows-targets 0.52.5",
|
|
2016
|
+
]
|
|
2017
|
+
|
|
2018
|
+
[[package]]
|
|
2019
|
+
name = "libredox"
|
|
2020
|
+
version = "0.1.3"
|
|
1816
2021
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1817
|
-
checksum = "
|
|
2022
|
+
checksum = "c0ff37bd590ca25063e35af745c343cb7a0271906fb7b37e4813e8f79f00268d"
|
|
1818
2023
|
dependencies = [
|
|
1819
|
-
"
|
|
2024
|
+
"bitflags 2.5.0",
|
|
2025
|
+
"libc",
|
|
1820
2026
|
]
|
|
1821
2027
|
|
|
2028
|
+
[[package]]
|
|
2029
|
+
name = "line-wrap"
|
|
2030
|
+
version = "0.2.0"
|
|
2031
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2032
|
+
checksum = "dd1bc4d24ad230d21fb898d1116b1801d7adfc449d42026475862ab48b11e70e"
|
|
2033
|
+
|
|
1822
2034
|
[[package]]
|
|
1823
2035
|
name = "linux-raw-sys"
|
|
1824
|
-
version = "0.
|
|
2036
|
+
version = "0.4.13"
|
|
1825
2037
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1826
|
-
checksum = "
|
|
2038
|
+
checksum = "01cda141df6706de531b6c46c3a33ecca755538219bd484262fa09410c13539c"
|
|
1827
2039
|
|
|
1828
2040
|
[[package]]
|
|
1829
2041
|
name = "lock_api"
|
|
1830
|
-
version = "0.4.
|
|
2042
|
+
version = "0.4.12"
|
|
1831
2043
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1832
|
-
checksum = "
|
|
2044
|
+
checksum = "07af8b9cdd281b7915f413fa73f29ebd5d55d0d3f0155584dade1ff18cea1b17"
|
|
1833
2045
|
dependencies = [
|
|
1834
2046
|
"autocfg",
|
|
1835
2047
|
"scopeguard",
|
|
@@ -1837,9 +2049,9 @@ dependencies = [
|
|
|
1837
2049
|
|
|
1838
2050
|
[[package]]
|
|
1839
2051
|
name = "log"
|
|
1840
|
-
version = "0.4.
|
|
2052
|
+
version = "0.4.21"
|
|
1841
2053
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1842
|
-
checksum = "
|
|
2054
|
+
checksum = "90ed8c1e510134f979dbc4f070f87d4313098b704861a105fe34231c70a3901c"
|
|
1843
2055
|
|
|
1844
2056
|
[[package]]
|
|
1845
2057
|
name = "loom"
|
|
@@ -1864,9 +2076,9 @@ checksum = "c41e0c4fef86961ac6d6f8a82609f55f31b05e4fce149ac5710e439df7619ba4"
|
|
|
1864
2076
|
|
|
1865
2077
|
[[package]]
|
|
1866
2078
|
name = "mac-notification-sys"
|
|
1867
|
-
version = "0.
|
|
2079
|
+
version = "0.6.1"
|
|
1868
2080
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1869
|
-
checksum = "
|
|
2081
|
+
checksum = "51fca4d74ff9dbaac16a01b924bc3693fa2bba0862c2c633abc73f9a8ea21f64"
|
|
1870
2082
|
dependencies = [
|
|
1871
2083
|
"cc",
|
|
1872
2084
|
"dirs-next",
|
|
@@ -1884,20 +2096,6 @@ dependencies = [
|
|
|
1884
2096
|
"libc",
|
|
1885
2097
|
]
|
|
1886
2098
|
|
|
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
2099
|
[[package]]
|
|
1902
2100
|
name = "markup5ever"
|
|
1903
2101
|
version = "0.11.0"
|
|
@@ -1929,9 +2127,9 @@ checksum = "2532096657941c2fea9c289d370a250971c689d4f143798ff67113ec042024a5"
|
|
|
1929
2127
|
|
|
1930
2128
|
[[package]]
|
|
1931
2129
|
name = "memchr"
|
|
1932
|
-
version = "2.
|
|
2130
|
+
version = "2.7.2"
|
|
1933
2131
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1934
|
-
checksum = "
|
|
2132
|
+
checksum = "6c8640c5d730cb13ebd907d8d04b52f55ac9a2eec55b440c8892f40d56c76c1d"
|
|
1935
2133
|
|
|
1936
2134
|
[[package]]
|
|
1937
2135
|
name = "memmap2"
|
|
@@ -1953,9 +2151,9 @@ dependencies = [
|
|
|
1953
2151
|
|
|
1954
2152
|
[[package]]
|
|
1955
2153
|
name = "memoffset"
|
|
1956
|
-
version = "0.9.
|
|
2154
|
+
version = "0.9.1"
|
|
1957
2155
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1958
|
-
checksum = "
|
|
2156
|
+
checksum = "488016bfae457b036d996092f6cb448677611ce4449e970ceaf42695203f218a"
|
|
1959
2157
|
dependencies = [
|
|
1960
2158
|
"autocfg",
|
|
1961
2159
|
]
|
|
@@ -1966,11 +2164,17 @@ version = "0.3.17"
|
|
|
1966
2164
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1967
2165
|
checksum = "6877bb514081ee2a7ff5ef9de3281f14a4dd4bceac4c09388074a6b5df8a139a"
|
|
1968
2166
|
|
|
2167
|
+
[[package]]
|
|
2168
|
+
name = "minimal-lexical"
|
|
2169
|
+
version = "0.2.1"
|
|
2170
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2171
|
+
checksum = "68354c5c6bd36d73ff3feceb05efa59b6acb7626617f4962be322a825e61f79a"
|
|
2172
|
+
|
|
1969
2173
|
[[package]]
|
|
1970
2174
|
name = "miniz_oxide"
|
|
1971
|
-
version = "0.7.
|
|
2175
|
+
version = "0.7.2"
|
|
1972
2176
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1973
|
-
checksum = "
|
|
2177
|
+
checksum = "9d811f3e15f28568be3407c8e7fdb6514c1cda3cb30683f15b6a1a1dc4ea14a7"
|
|
1974
2178
|
dependencies = [
|
|
1975
2179
|
"adler",
|
|
1976
2180
|
"simd-adler32",
|
|
@@ -1978,9 +2182,9 @@ dependencies = [
|
|
|
1978
2182
|
|
|
1979
2183
|
[[package]]
|
|
1980
2184
|
name = "mio"
|
|
1981
|
-
version = "0.8.
|
|
2185
|
+
version = "0.8.11"
|
|
1982
2186
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1983
|
-
checksum = "
|
|
2187
|
+
checksum = "a4a650543ca06a924e8b371db273b2756685faae30f8487da1b56505a8f78b0c"
|
|
1984
2188
|
dependencies = [
|
|
1985
2189
|
"libc",
|
|
1986
2190
|
"wasi 0.11.0+wasi-snapshot-preview1",
|
|
@@ -2041,21 +2245,33 @@ dependencies = [
|
|
|
2041
2245
|
|
|
2042
2246
|
[[package]]
|
|
2043
2247
|
name = "new_debug_unreachable"
|
|
2044
|
-
version = "1.0.
|
|
2248
|
+
version = "1.0.6"
|
|
2045
2249
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2046
|
-
checksum = "
|
|
2250
|
+
checksum = "650eef8c711430f1a879fdd01d4745a7deea475becfb90269c06775983bbf086"
|
|
2047
2251
|
|
|
2048
2252
|
[[package]]
|
|
2049
2253
|
name = "nix"
|
|
2050
|
-
version = "0.26.
|
|
2254
|
+
version = "0.26.4"
|
|
2051
2255
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2052
|
-
checksum = "
|
|
2256
|
+
checksum = "598beaf3cc6fdd9a5dfb1630c2800c7acd31df7aaf0f565796fba2b53ca1af1b"
|
|
2053
2257
|
dependencies = [
|
|
2054
2258
|
"bitflags 1.3.2",
|
|
2055
2259
|
"cfg-if",
|
|
2056
2260
|
"libc",
|
|
2057
2261
|
"memoffset 0.7.1",
|
|
2058
|
-
|
|
2262
|
+
]
|
|
2263
|
+
|
|
2264
|
+
[[package]]
|
|
2265
|
+
name = "nix"
|
|
2266
|
+
version = "0.28.0"
|
|
2267
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2268
|
+
checksum = "ab2156c4fce2f8df6c499cc1c763e4394b7482525bf2a9701c9d79d215f519e4"
|
|
2269
|
+
dependencies = [
|
|
2270
|
+
"bitflags 2.5.0",
|
|
2271
|
+
"cfg-if",
|
|
2272
|
+
"cfg_aliases",
|
|
2273
|
+
"libc",
|
|
2274
|
+
"memoffset 0.9.1",
|
|
2059
2275
|
]
|
|
2060
2276
|
|
|
2061
2277
|
[[package]]
|
|
@@ -2064,11 +2280,21 @@ version = "0.1.14"
|
|
|
2064
2280
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2065
2281
|
checksum = "72ef4a56884ca558e5ddb05a1d1e7e1bfd9a68d9ed024c21704cc98872dae1bb"
|
|
2066
2282
|
|
|
2283
|
+
[[package]]
|
|
2284
|
+
name = "nom"
|
|
2285
|
+
version = "7.1.3"
|
|
2286
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2287
|
+
checksum = "d273983c5a657a70a3e8f2a01329822f3b8c8172b73826411a55751e404a0a4a"
|
|
2288
|
+
dependencies = [
|
|
2289
|
+
"memchr",
|
|
2290
|
+
"minimal-lexical",
|
|
2291
|
+
]
|
|
2292
|
+
|
|
2067
2293
|
[[package]]
|
|
2068
2294
|
name = "notify-rust"
|
|
2069
|
-
version = "4.
|
|
2295
|
+
version = "4.11.0"
|
|
2070
2296
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2071
|
-
checksum = "
|
|
2297
|
+
checksum = "5312f837191c317644f313f7b2b39f9cb1496570c74f7c17152dd3961219551f"
|
|
2072
2298
|
dependencies = [
|
|
2073
2299
|
"log",
|
|
2074
2300
|
"mac-notification-sys",
|
|
@@ -2088,31 +2314,16 @@ dependencies = [
|
|
|
2088
2314
|
]
|
|
2089
2315
|
|
|
2090
2316
|
[[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"
|
|
2317
|
+
name = "num-conv"
|
|
2318
|
+
version = "0.1.0"
|
|
2103
2319
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2104
|
-
checksum = "
|
|
2105
|
-
dependencies = [
|
|
2106
|
-
"autocfg",
|
|
2107
|
-
"num-integer",
|
|
2108
|
-
"num-traits",
|
|
2109
|
-
]
|
|
2320
|
+
checksum = "51d515d32fb182ee37cda2ccdcb92950d6a3c2893aa280e540671c2cd0f3b1d9"
|
|
2110
2321
|
|
|
2111
2322
|
[[package]]
|
|
2112
2323
|
name = "num-traits"
|
|
2113
|
-
version = "0.2.
|
|
2324
|
+
version = "0.2.19"
|
|
2114
2325
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2115
|
-
checksum = "
|
|
2326
|
+
checksum = "071dfc062690e90b734c0b2273ce72ad0ffa95f0c74596bc250dcfd960262841"
|
|
2116
2327
|
dependencies = [
|
|
2117
2328
|
"autocfg",
|
|
2118
2329
|
]
|
|
@@ -2142,7 +2353,7 @@ version = "0.5.11"
|
|
|
2142
2353
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2143
2354
|
checksum = "dcbff9bc912032c62bf65ef1d5aea88983b420f4f839db1e9b0c281a25c9c799"
|
|
2144
2355
|
dependencies = [
|
|
2145
|
-
"proc-macro-crate",
|
|
2356
|
+
"proc-macro-crate 1.3.1",
|
|
2146
2357
|
"proc-macro2",
|
|
2147
2358
|
"quote",
|
|
2148
2359
|
"syn 1.0.109",
|
|
@@ -2169,6 +2380,61 @@ dependencies = [
|
|
|
2169
2380
|
"objc_id",
|
|
2170
2381
|
]
|
|
2171
2382
|
|
|
2383
|
+
[[package]]
|
|
2384
|
+
name = "objc-sys"
|
|
2385
|
+
version = "0.3.3"
|
|
2386
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2387
|
+
checksum = "da284c198fb9b7b0603f8635185e85fbd5b64ee154b1ed406d489077de2d6d60"
|
|
2388
|
+
|
|
2389
|
+
[[package]]
|
|
2390
|
+
name = "objc2"
|
|
2391
|
+
version = "0.5.1"
|
|
2392
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2393
|
+
checksum = "b4b25e1034d0e636cd84707ccdaa9f81243d399196b8a773946dcffec0401659"
|
|
2394
|
+
dependencies = [
|
|
2395
|
+
"objc-sys",
|
|
2396
|
+
"objc2-encode",
|
|
2397
|
+
]
|
|
2398
|
+
|
|
2399
|
+
[[package]]
|
|
2400
|
+
name = "objc2-app-kit"
|
|
2401
|
+
version = "0.2.0"
|
|
2402
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2403
|
+
checksum = "fb79768a710a9a1798848179edb186d1af7e8a8679f369e4b8d201dd2a034047"
|
|
2404
|
+
dependencies = [
|
|
2405
|
+
"block2",
|
|
2406
|
+
"objc2",
|
|
2407
|
+
"objc2-core-data",
|
|
2408
|
+
"objc2-foundation",
|
|
2409
|
+
]
|
|
2410
|
+
|
|
2411
|
+
[[package]]
|
|
2412
|
+
name = "objc2-core-data"
|
|
2413
|
+
version = "0.2.0"
|
|
2414
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2415
|
+
checksum = "6e092bc42eaf30a08844e6a076938c60751225ec81431ab89f5d1ccd9f958d6c"
|
|
2416
|
+
dependencies = [
|
|
2417
|
+
"block2",
|
|
2418
|
+
"objc2",
|
|
2419
|
+
"objc2-foundation",
|
|
2420
|
+
]
|
|
2421
|
+
|
|
2422
|
+
[[package]]
|
|
2423
|
+
name = "objc2-encode"
|
|
2424
|
+
version = "4.0.1"
|
|
2425
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2426
|
+
checksum = "88658da63e4cc2c8adb1262902cd6af51094df0488b760d6fd27194269c0950a"
|
|
2427
|
+
|
|
2428
|
+
[[package]]
|
|
2429
|
+
name = "objc2-foundation"
|
|
2430
|
+
version = "0.2.0"
|
|
2431
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2432
|
+
checksum = "cfaefe14254871ea16c7d88968c0ff14ba554712a20d76421eec52f0a7fb8904"
|
|
2433
|
+
dependencies = [
|
|
2434
|
+
"block2",
|
|
2435
|
+
"objc2",
|
|
2436
|
+
]
|
|
2437
|
+
|
|
2172
2438
|
[[package]]
|
|
2173
2439
|
name = "objc_exception"
|
|
2174
2440
|
version = "0.1.2"
|
|
@@ -2189,18 +2455,18 @@ dependencies = [
|
|
|
2189
2455
|
|
|
2190
2456
|
[[package]]
|
|
2191
2457
|
name = "object"
|
|
2192
|
-
version = "0.
|
|
2458
|
+
version = "0.32.2"
|
|
2193
2459
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2194
|
-
checksum = "
|
|
2460
|
+
checksum = "a6a622008b6e321afc04970976f62ee297fdbaa6f95318ca343e3eebb9648441"
|
|
2195
2461
|
dependencies = [
|
|
2196
2462
|
"memchr",
|
|
2197
2463
|
]
|
|
2198
2464
|
|
|
2199
2465
|
[[package]]
|
|
2200
2466
|
name = "once_cell"
|
|
2201
|
-
version = "1.
|
|
2467
|
+
version = "1.19.0"
|
|
2202
2468
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2203
|
-
checksum = "
|
|
2469
|
+
checksum = "3fdb12b2476b595f9358c5161aa467c2438859caa136dec86c26fdd2efe17b92"
|
|
2204
2470
|
|
|
2205
2471
|
[[package]]
|
|
2206
2472
|
name = "open"
|
|
@@ -2214,13 +2480,13 @@ dependencies = [
|
|
|
2214
2480
|
|
|
2215
2481
|
[[package]]
|
|
2216
2482
|
name = "openssl"
|
|
2217
|
-
version = "0.10.
|
|
2483
|
+
version = "0.10.64"
|
|
2218
2484
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2219
|
-
checksum = "
|
|
2485
|
+
checksum = "95a0481286a310808298130d22dd1fef0fa571e05a8f44ec801801e84b216b1f"
|
|
2220
2486
|
dependencies = [
|
|
2221
|
-
"bitflags
|
|
2487
|
+
"bitflags 2.5.0",
|
|
2222
2488
|
"cfg-if",
|
|
2223
|
-
"foreign-types",
|
|
2489
|
+
"foreign-types 0.3.2",
|
|
2224
2490
|
"libc",
|
|
2225
2491
|
"once_cell",
|
|
2226
2492
|
"openssl-macros",
|
|
@@ -2235,7 +2501,7 @@ checksum = "a948666b637a0f465e8564c73e89d4dde00d72d4d473cc972f390fc3dcee7d9c"
|
|
|
2235
2501
|
dependencies = [
|
|
2236
2502
|
"proc-macro2",
|
|
2237
2503
|
"quote",
|
|
2238
|
-
"syn 2.0.
|
|
2504
|
+
"syn 2.0.61",
|
|
2239
2505
|
]
|
|
2240
2506
|
|
|
2241
2507
|
[[package]]
|
|
@@ -2246,9 +2512,9 @@ checksum = "ff011a302c396a5197692431fc1948019154afc178baf7d8e37367442a4601cf"
|
|
|
2246
2512
|
|
|
2247
2513
|
[[package]]
|
|
2248
2514
|
name = "openssl-sys"
|
|
2249
|
-
version = "0.9.
|
|
2515
|
+
version = "0.9.102"
|
|
2250
2516
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2251
|
-
checksum = "
|
|
2517
|
+
checksum = "c597637d56fbc83893a35eb0dd04b2b8e7a50c91e64e9493e398b5df4fb45fa2"
|
|
2252
2518
|
dependencies = [
|
|
2253
2519
|
"cc",
|
|
2254
2520
|
"libc",
|
|
@@ -2268,23 +2534,23 @@ dependencies = [
|
|
|
2268
2534
|
|
|
2269
2535
|
[[package]]
|
|
2270
2536
|
name = "os_info"
|
|
2271
|
-
version = "3.
|
|
2537
|
+
version = "3.8.2"
|
|
2272
2538
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2273
|
-
checksum = "
|
|
2539
|
+
checksum = "ae99c7fa6dd38c7cafe1ec085e804f8f555a2f8659b0dbe03f1f9963a9b51092"
|
|
2274
2540
|
dependencies = [
|
|
2275
2541
|
"log",
|
|
2276
2542
|
"serde",
|
|
2277
|
-
"
|
|
2543
|
+
"windows-sys 0.52.0",
|
|
2278
2544
|
]
|
|
2279
2545
|
|
|
2280
2546
|
[[package]]
|
|
2281
2547
|
name = "os_pipe"
|
|
2282
|
-
version = "1.1.
|
|
2548
|
+
version = "1.1.5"
|
|
2283
2549
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2284
|
-
checksum = "
|
|
2550
|
+
checksum = "57119c3b893986491ec9aa85056780d3a0f3cf4da7cc09dd3650dbd6c6738fb9"
|
|
2285
2551
|
dependencies = [
|
|
2286
2552
|
"libc",
|
|
2287
|
-
"windows-sys 0.
|
|
2553
|
+
"windows-sys 0.52.0",
|
|
2288
2554
|
]
|
|
2289
2555
|
|
|
2290
2556
|
[[package]]
|
|
@@ -2315,20 +2581,20 @@ dependencies = [
|
|
|
2315
2581
|
"glib-sys",
|
|
2316
2582
|
"gobject-sys",
|
|
2317
2583
|
"libc",
|
|
2318
|
-
"system-deps 6.
|
|
2584
|
+
"system-deps 6.2.2",
|
|
2319
2585
|
]
|
|
2320
2586
|
|
|
2321
2587
|
[[package]]
|
|
2322
2588
|
name = "parking"
|
|
2323
|
-
version = "2.
|
|
2589
|
+
version = "2.2.0"
|
|
2324
2590
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2325
|
-
checksum = "
|
|
2591
|
+
checksum = "bb813b8af86854136c6922af0598d719255ecb2179515e6e7730d468f05c9cae"
|
|
2326
2592
|
|
|
2327
2593
|
[[package]]
|
|
2328
2594
|
name = "parking_lot"
|
|
2329
|
-
version = "0.12.
|
|
2595
|
+
version = "0.12.2"
|
|
2330
2596
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2331
|
-
checksum = "
|
|
2597
|
+
checksum = "7e4af0ca4f6caed20e900d564c242b8e5d4903fdacf31d3daf527b66fe6f42fb"
|
|
2332
2598
|
dependencies = [
|
|
2333
2599
|
"lock_api",
|
|
2334
2600
|
"parking_lot_core",
|
|
@@ -2336,15 +2602,15 @@ dependencies = [
|
|
|
2336
2602
|
|
|
2337
2603
|
[[package]]
|
|
2338
2604
|
name = "parking_lot_core"
|
|
2339
|
-
version = "0.9.
|
|
2605
|
+
version = "0.9.10"
|
|
2340
2606
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2341
|
-
checksum = "
|
|
2607
|
+
checksum = "1e401f977ab385c9e4e3ab30627d6f26d00e2c73eef317493c4ec6d468726cf8"
|
|
2342
2608
|
dependencies = [
|
|
2343
2609
|
"cfg-if",
|
|
2344
2610
|
"libc",
|
|
2345
|
-
"redox_syscall 0.
|
|
2611
|
+
"redox_syscall 0.5.1",
|
|
2346
2612
|
"smallvec",
|
|
2347
|
-
"windows-targets 0.
|
|
2613
|
+
"windows-targets 0.52.5",
|
|
2348
2614
|
]
|
|
2349
2615
|
|
|
2350
2616
|
[[package]]
|
|
@@ -2366,9 +2632,19 @@ dependencies = [
|
|
|
2366
2632
|
|
|
2367
2633
|
[[package]]
|
|
2368
2634
|
name = "percent-encoding"
|
|
2369
|
-
version = "2.3.
|
|
2635
|
+
version = "2.3.1"
|
|
2636
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2637
|
+
checksum = "e3148f5046208a5d56bcfc03053e3ca6334e51da8dfb19b6cdc8b306fae3283e"
|
|
2638
|
+
|
|
2639
|
+
[[package]]
|
|
2640
|
+
name = "petgraph"
|
|
2641
|
+
version = "0.6.4"
|
|
2370
2642
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2371
|
-
checksum = "
|
|
2643
|
+
checksum = "e1d3afd2628e69da2be385eb6f2fd57c8ac7977ceeff6dc166ff1657b0e386a9"
|
|
2644
|
+
dependencies = [
|
|
2645
|
+
"fixedbitset",
|
|
2646
|
+
"indexmap 2.2.6",
|
|
2647
|
+
]
|
|
2372
2648
|
|
|
2373
2649
|
[[package]]
|
|
2374
2650
|
name = "phf"
|
|
@@ -2387,9 +2663,17 @@ version = "0.10.1"
|
|
|
2387
2663
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2388
2664
|
checksum = "fabbf1ead8a5bcbc20f5f8b939ee3f5b0f6f281b6ad3468b84656b658b455259"
|
|
2389
2665
|
dependencies = [
|
|
2390
|
-
"phf_macros 0.10.0",
|
|
2391
2666
|
"phf_shared 0.10.0",
|
|
2392
|
-
|
|
2667
|
+
]
|
|
2668
|
+
|
|
2669
|
+
[[package]]
|
|
2670
|
+
name = "phf"
|
|
2671
|
+
version = "0.11.2"
|
|
2672
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2673
|
+
checksum = "ade2d8b8f33c7333b51bcf0428d37e217e9f32192ae4772156f65063b8ce03dc"
|
|
2674
|
+
dependencies = [
|
|
2675
|
+
"phf_macros 0.11.2",
|
|
2676
|
+
"phf_shared 0.11.2",
|
|
2393
2677
|
]
|
|
2394
2678
|
|
|
2395
2679
|
[[package]]
|
|
@@ -2432,6 +2716,16 @@ dependencies = [
|
|
|
2432
2716
|
"rand 0.8.5",
|
|
2433
2717
|
]
|
|
2434
2718
|
|
|
2719
|
+
[[package]]
|
|
2720
|
+
name = "phf_generator"
|
|
2721
|
+
version = "0.11.2"
|
|
2722
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2723
|
+
checksum = "48e4cc64c2ad9ebe670cb8fd69dd50ae301650392e81c05f9bfcb2d5bdbc24b0"
|
|
2724
|
+
dependencies = [
|
|
2725
|
+
"phf_shared 0.11.2",
|
|
2726
|
+
"rand 0.8.5",
|
|
2727
|
+
]
|
|
2728
|
+
|
|
2435
2729
|
[[package]]
|
|
2436
2730
|
name = "phf_macros"
|
|
2437
2731
|
version = "0.8.0"
|
|
@@ -2448,16 +2742,15 @@ dependencies = [
|
|
|
2448
2742
|
|
|
2449
2743
|
[[package]]
|
|
2450
2744
|
name = "phf_macros"
|
|
2451
|
-
version = "0.
|
|
2745
|
+
version = "0.11.2"
|
|
2452
2746
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2453
|
-
checksum = "
|
|
2747
|
+
checksum = "3444646e286606587e49f3bcf1679b8cef1dc2c5ecc29ddacaffc305180d464b"
|
|
2454
2748
|
dependencies = [
|
|
2455
|
-
"phf_generator 0.
|
|
2456
|
-
"phf_shared 0.
|
|
2457
|
-
"proc-macro-hack",
|
|
2749
|
+
"phf_generator 0.11.2",
|
|
2750
|
+
"phf_shared 0.11.2",
|
|
2458
2751
|
"proc-macro2",
|
|
2459
2752
|
"quote",
|
|
2460
|
-
"syn
|
|
2753
|
+
"syn 2.0.61",
|
|
2461
2754
|
]
|
|
2462
2755
|
|
|
2463
2756
|
[[package]]
|
|
@@ -2478,6 +2771,15 @@ dependencies = [
|
|
|
2478
2771
|
"siphasher",
|
|
2479
2772
|
]
|
|
2480
2773
|
|
|
2774
|
+
[[package]]
|
|
2775
|
+
name = "phf_shared"
|
|
2776
|
+
version = "0.11.2"
|
|
2777
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2778
|
+
checksum = "90fcb95eef784c2ac79119d1dd819e162b5da872ce6f3c3abe1e8ca1c082f72b"
|
|
2779
|
+
dependencies = [
|
|
2780
|
+
"siphasher",
|
|
2781
|
+
]
|
|
2782
|
+
|
|
2481
2783
|
[[package]]
|
|
2482
2784
|
name = "pico-args"
|
|
2483
2785
|
version = "0.5.0"
|
|
@@ -2486,9 +2788,9 @@ checksum = "5be167a7af36ee22fe3115051bc51f6e6c7054c9348e28deb4f49bd6f705a315"
|
|
|
2486
2788
|
|
|
2487
2789
|
[[package]]
|
|
2488
2790
|
name = "pin-project-lite"
|
|
2489
|
-
version = "0.2.
|
|
2791
|
+
version = "0.2.14"
|
|
2490
2792
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2491
|
-
checksum = "
|
|
2793
|
+
checksum = "bda66fc9667c18cb2758a2ac84d1167245054bcf85d5d1aaa6923f45801bdd02"
|
|
2492
2794
|
|
|
2493
2795
|
[[package]]
|
|
2494
2796
|
name = "pin-utils"
|
|
@@ -2496,31 +2798,42 @@ version = "0.1.0"
|
|
|
2496
2798
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2497
2799
|
checksum = "8b870d8c151b6f2fb93e84a13146138f05d02ed11c7e7c54f8826aaaf7c9f184"
|
|
2498
2800
|
|
|
2801
|
+
[[package]]
|
|
2802
|
+
name = "piper"
|
|
2803
|
+
version = "0.2.1"
|
|
2804
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2805
|
+
checksum = "668d31b1c4eba19242f2088b2bf3316b82ca31082a8335764db4e083db7485d4"
|
|
2806
|
+
dependencies = [
|
|
2807
|
+
"atomic-waker",
|
|
2808
|
+
"fastrand",
|
|
2809
|
+
"futures-io",
|
|
2810
|
+
]
|
|
2811
|
+
|
|
2499
2812
|
[[package]]
|
|
2500
2813
|
name = "pkg-config"
|
|
2501
|
-
version = "0.3.
|
|
2814
|
+
version = "0.3.30"
|
|
2502
2815
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2503
|
-
checksum = "
|
|
2816
|
+
checksum = "d231b230927b5e4ad203db57bbcbee2802f6bce620b1e4a9024a07d94e2907ec"
|
|
2504
2817
|
|
|
2505
2818
|
[[package]]
|
|
2506
2819
|
name = "plist"
|
|
2507
|
-
version = "1.
|
|
2820
|
+
version = "1.6.1"
|
|
2508
2821
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2509
|
-
checksum = "
|
|
2822
|
+
checksum = "d9d34169e64b3c7a80c8621a48adaf44e0cf62c78a9b25dd9dd35f1881a17cf9"
|
|
2510
2823
|
dependencies = [
|
|
2511
|
-
"base64 0.21.
|
|
2512
|
-
"indexmap
|
|
2824
|
+
"base64 0.21.7",
|
|
2825
|
+
"indexmap 2.2.6",
|
|
2513
2826
|
"line-wrap",
|
|
2514
|
-
"quick-xml
|
|
2827
|
+
"quick-xml",
|
|
2515
2828
|
"serde",
|
|
2516
2829
|
"time",
|
|
2517
2830
|
]
|
|
2518
2831
|
|
|
2519
2832
|
[[package]]
|
|
2520
2833
|
name = "png"
|
|
2521
|
-
version = "0.17.
|
|
2834
|
+
version = "0.17.13"
|
|
2522
2835
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2523
|
-
checksum = "
|
|
2836
|
+
checksum = "06e4b0d3d1312775e782c86c91a111aa1f910cbb65e1337f9975b5f9a554b5e1"
|
|
2524
2837
|
dependencies = [
|
|
2525
2838
|
"bitflags 1.3.2",
|
|
2526
2839
|
"crc32fast",
|
|
@@ -2531,20 +2844,25 @@ dependencies = [
|
|
|
2531
2844
|
|
|
2532
2845
|
[[package]]
|
|
2533
2846
|
name = "polling"
|
|
2534
|
-
version = "
|
|
2847
|
+
version = "3.7.0"
|
|
2535
2848
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2536
|
-
checksum = "
|
|
2849
|
+
checksum = "645493cf344456ef24219d02a768cf1fb92ddf8c92161679ae3d91b91a637be3"
|
|
2537
2850
|
dependencies = [
|
|
2538
|
-
"autocfg",
|
|
2539
|
-
"bitflags 1.3.2",
|
|
2540
2851
|
"cfg-if",
|
|
2541
2852
|
"concurrent-queue",
|
|
2542
|
-
"
|
|
2543
|
-
"log",
|
|
2853
|
+
"hermit-abi",
|
|
2544
2854
|
"pin-project-lite",
|
|
2545
|
-
"
|
|
2855
|
+
"rustix",
|
|
2856
|
+
"tracing",
|
|
2857
|
+
"windows-sys 0.52.0",
|
|
2546
2858
|
]
|
|
2547
2859
|
|
|
2860
|
+
[[package]]
|
|
2861
|
+
name = "powerfmt"
|
|
2862
|
+
version = "0.2.0"
|
|
2863
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2864
|
+
checksum = "439ee305def115ba05938db6eb1644ff94165c5ab5e9420d1c1bcedbba909391"
|
|
2865
|
+
|
|
2548
2866
|
[[package]]
|
|
2549
2867
|
name = "ppv-lite86"
|
|
2550
2868
|
version = "0.2.17"
|
|
@@ -2564,7 +2882,16 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
2564
2882
|
checksum = "7f4c021e1093a56626774e81216a4ce732a735e5bad4868a03f3ed65ca0c3919"
|
|
2565
2883
|
dependencies = [
|
|
2566
2884
|
"once_cell",
|
|
2567
|
-
"toml_edit",
|
|
2885
|
+
"toml_edit 0.19.15",
|
|
2886
|
+
]
|
|
2887
|
+
|
|
2888
|
+
[[package]]
|
|
2889
|
+
name = "proc-macro-crate"
|
|
2890
|
+
version = "3.1.0"
|
|
2891
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2892
|
+
checksum = "6d37c51ca738a55da99dc0c4a34860fd675453b8b36209178c2249bb13651284"
|
|
2893
|
+
dependencies = [
|
|
2894
|
+
"toml_edit 0.21.1",
|
|
2568
2895
|
]
|
|
2569
2896
|
|
|
2570
2897
|
[[package]]
|
|
@@ -2599,36 +2926,27 @@ checksum = "dc375e1527247fe1a97d8b7156678dfe7c1af2fc075c9a4db3690ecd2a148068"
|
|
|
2599
2926
|
|
|
2600
2927
|
[[package]]
|
|
2601
2928
|
name = "proc-macro2"
|
|
2602
|
-
version = "1.0.
|
|
2929
|
+
version = "1.0.82"
|
|
2603
2930
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2604
|
-
checksum = "
|
|
2931
|
+
checksum = "8ad3d49ab951a01fbaafe34f2ec74122942fe18a3f9814c3268f1bb72042131b"
|
|
2605
2932
|
dependencies = [
|
|
2606
2933
|
"unicode-ident",
|
|
2607
2934
|
]
|
|
2608
2935
|
|
|
2609
2936
|
[[package]]
|
|
2610
2937
|
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"
|
|
2938
|
+
version = "0.31.0"
|
|
2621
2939
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2622
|
-
checksum = "
|
|
2940
|
+
checksum = "1004a344b30a54e2ee58d66a71b32d2db2feb0a31f9a2d302bf0536f15de2a33"
|
|
2623
2941
|
dependencies = [
|
|
2624
2942
|
"memchr",
|
|
2625
2943
|
]
|
|
2626
2944
|
|
|
2627
2945
|
[[package]]
|
|
2628
2946
|
name = "quote"
|
|
2629
|
-
version = "1.0.
|
|
2947
|
+
version = "1.0.36"
|
|
2630
2948
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2631
|
-
checksum = "
|
|
2949
|
+
checksum = "0fa76aaf39101c457836aec0ce2316dbdc3ab723cdda1c6bd4e6ad4208acaca7"
|
|
2632
2950
|
dependencies = [
|
|
2633
2951
|
"proc-macro2",
|
|
2634
2952
|
]
|
|
@@ -2693,7 +3011,7 @@ version = "0.6.4"
|
|
|
2693
3011
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2694
3012
|
checksum = "ec0be4795e2f6a28069bec0b5ff3e2ac9bafc99e6a9a7dc3547996c5c816922c"
|
|
2695
3013
|
dependencies = [
|
|
2696
|
-
"getrandom 0.2.
|
|
3014
|
+
"getrandom 0.2.15",
|
|
2697
3015
|
]
|
|
2698
3016
|
|
|
2699
3017
|
[[package]]
|
|
@@ -2722,43 +3040,43 @@ checksum = "f2ff9a1f06a88b01621b7ae906ef0211290d1c8a168a15542486a8f61c0833b9"
|
|
|
2722
3040
|
|
|
2723
3041
|
[[package]]
|
|
2724
3042
|
name = "redox_syscall"
|
|
2725
|
-
version = "0.
|
|
3043
|
+
version = "0.4.1"
|
|
2726
3044
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2727
|
-
checksum = "
|
|
3045
|
+
checksum = "4722d768eff46b75989dd134e5c353f0d6296e5aaa3132e776cbdb56be7731aa"
|
|
2728
3046
|
dependencies = [
|
|
2729
3047
|
"bitflags 1.3.2",
|
|
2730
3048
|
]
|
|
2731
3049
|
|
|
2732
3050
|
[[package]]
|
|
2733
3051
|
name = "redox_syscall"
|
|
2734
|
-
version = "0.
|
|
3052
|
+
version = "0.5.1"
|
|
2735
3053
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2736
|
-
checksum = "
|
|
3054
|
+
checksum = "469052894dcb553421e483e4209ee581a45100d31b4018de03e5a7ad86374a7e"
|
|
2737
3055
|
dependencies = [
|
|
2738
|
-
"bitflags
|
|
3056
|
+
"bitflags 2.5.0",
|
|
2739
3057
|
]
|
|
2740
3058
|
|
|
2741
3059
|
[[package]]
|
|
2742
3060
|
name = "redox_users"
|
|
2743
|
-
version = "0.4.
|
|
3061
|
+
version = "0.4.5"
|
|
2744
3062
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2745
|
-
checksum = "
|
|
3063
|
+
checksum = "bd283d9651eeda4b2a83a43c1c91b266c40fd76ecd39a50a8c630ae69dc72891"
|
|
2746
3064
|
dependencies = [
|
|
2747
|
-
"getrandom 0.2.
|
|
2748
|
-
"
|
|
3065
|
+
"getrandom 0.2.15",
|
|
3066
|
+
"libredox",
|
|
2749
3067
|
"thiserror",
|
|
2750
3068
|
]
|
|
2751
3069
|
|
|
2752
3070
|
[[package]]
|
|
2753
3071
|
name = "regex"
|
|
2754
|
-
version = "1.
|
|
3072
|
+
version = "1.10.4"
|
|
2755
3073
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2756
|
-
checksum = "
|
|
3074
|
+
checksum = "c117dbdfde9c8308975b6a18d71f3f385c89461f7b3fb054288ecf2a2058ba4c"
|
|
2757
3075
|
dependencies = [
|
|
2758
3076
|
"aho-corasick",
|
|
2759
3077
|
"memchr",
|
|
2760
|
-
"regex-automata 0.
|
|
2761
|
-
"regex-syntax 0.
|
|
3078
|
+
"regex-automata 0.4.6",
|
|
3079
|
+
"regex-syntax 0.8.3",
|
|
2762
3080
|
]
|
|
2763
3081
|
|
|
2764
3082
|
[[package]]
|
|
@@ -2772,13 +3090,13 @@ dependencies = [
|
|
|
2772
3090
|
|
|
2773
3091
|
[[package]]
|
|
2774
3092
|
name = "regex-automata"
|
|
2775
|
-
version = "0.
|
|
3093
|
+
version = "0.4.6"
|
|
2776
3094
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2777
|
-
checksum = "
|
|
3095
|
+
checksum = "86b83b8b9847f9bf95ef68afb0b8e6cdb80f498442f5179a29fad448fcc1eaea"
|
|
2778
3096
|
dependencies = [
|
|
2779
3097
|
"aho-corasick",
|
|
2780
3098
|
"memchr",
|
|
2781
|
-
"regex-syntax 0.
|
|
3099
|
+
"regex-syntax 0.8.3",
|
|
2782
3100
|
]
|
|
2783
3101
|
|
|
2784
3102
|
[[package]]
|
|
@@ -2789,17 +3107,17 @@ checksum = "f162c6dd7b008981e4d40210aca20b4bd0f9b60ca9271061b07f78537722f2e1"
|
|
|
2789
3107
|
|
|
2790
3108
|
[[package]]
|
|
2791
3109
|
name = "regex-syntax"
|
|
2792
|
-
version = "0.
|
|
3110
|
+
version = "0.8.3"
|
|
2793
3111
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2794
|
-
checksum = "
|
|
3112
|
+
checksum = "adad44e29e4c806119491a7f06f03de4d1af22c3a680dd47f1e6e179439d1f56"
|
|
2795
3113
|
|
|
2796
3114
|
[[package]]
|
|
2797
3115
|
name = "reqwest"
|
|
2798
|
-
version = "0.11.
|
|
3116
|
+
version = "0.11.27"
|
|
2799
3117
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2800
|
-
checksum = "
|
|
3118
|
+
checksum = "dd67538700a17451e7cba03ac727fb961abb7607553461627b97de0b89cf4a62"
|
|
2801
3119
|
dependencies = [
|
|
2802
|
-
"base64 0.21.
|
|
3120
|
+
"base64 0.21.7",
|
|
2803
3121
|
"bytes",
|
|
2804
3122
|
"encoding_rs",
|
|
2805
3123
|
"futures-core",
|
|
@@ -2817,9 +3135,12 @@ dependencies = [
|
|
|
2817
3135
|
"once_cell",
|
|
2818
3136
|
"percent-encoding",
|
|
2819
3137
|
"pin-project-lite",
|
|
3138
|
+
"rustls-pemfile",
|
|
2820
3139
|
"serde",
|
|
2821
3140
|
"serde_json",
|
|
2822
3141
|
"serde_urlencoded",
|
|
3142
|
+
"sync_wrapper",
|
|
3143
|
+
"system-configuration",
|
|
2823
3144
|
"tokio",
|
|
2824
3145
|
"tokio-native-tls",
|
|
2825
3146
|
"tokio-util",
|
|
@@ -2829,7 +3150,7 @@ dependencies = [
|
|
|
2829
3150
|
"wasm-bindgen-futures",
|
|
2830
3151
|
"wasm-streams",
|
|
2831
3152
|
"web-sys",
|
|
2832
|
-
"winreg 0.
|
|
3153
|
+
"winreg 0.50.0",
|
|
2833
3154
|
]
|
|
2834
3155
|
|
|
2835
3156
|
[[package]]
|
|
@@ -2873,35 +3194,37 @@ dependencies = [
|
|
|
2873
3194
|
|
|
2874
3195
|
[[package]]
|
|
2875
3196
|
name = "rustix"
|
|
2876
|
-
version = "0.
|
|
3197
|
+
version = "0.38.34"
|
|
2877
3198
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2878
|
-
checksum = "
|
|
3199
|
+
checksum = "70dc5ec042f7a43c4a73241207cecc9873a06d45debb38b329f8541d85c2730f"
|
|
2879
3200
|
dependencies = [
|
|
2880
|
-
"bitflags
|
|
3201
|
+
"bitflags 2.5.0",
|
|
2881
3202
|
"errno",
|
|
2882
|
-
"io-lifetimes",
|
|
2883
3203
|
"libc",
|
|
2884
3204
|
"linux-raw-sys",
|
|
2885
|
-
"windows-sys 0.
|
|
3205
|
+
"windows-sys 0.52.0",
|
|
2886
3206
|
]
|
|
2887
3207
|
|
|
2888
3208
|
[[package]]
|
|
2889
|
-
name = "
|
|
2890
|
-
version = "1.0.
|
|
3209
|
+
name = "rustls-pemfile"
|
|
3210
|
+
version = "1.0.4"
|
|
2891
3211
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2892
|
-
checksum = "
|
|
3212
|
+
checksum = "1c74cae0a4cf6ccbbf5f359f08efdf8ee7e1dc532573bf0db71968cb56b1448c"
|
|
3213
|
+
dependencies = [
|
|
3214
|
+
"base64 0.21.7",
|
|
3215
|
+
]
|
|
2893
3216
|
|
|
2894
3217
|
[[package]]
|
|
2895
|
-
name = "
|
|
2896
|
-
version = "1.0.
|
|
3218
|
+
name = "rustversion"
|
|
3219
|
+
version = "1.0.16"
|
|
2897
3220
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2898
|
-
checksum = "
|
|
3221
|
+
checksum = "092474d1a01ea8278f69e6a358998405fae5b8b963ddaeb2b0b04a128bf1dfb0"
|
|
2899
3222
|
|
|
2900
3223
|
[[package]]
|
|
2901
|
-
name = "
|
|
2902
|
-
version = "0.
|
|
3224
|
+
name = "ryu"
|
|
3225
|
+
version = "1.0.18"
|
|
2903
3226
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2904
|
-
checksum = "
|
|
3227
|
+
checksum = "f3cb5ba0dc43242ce17de99c180e96db90b235b8a9fdc9543c96d2209116bd9f"
|
|
2905
3228
|
|
|
2906
3229
|
[[package]]
|
|
2907
3230
|
name = "same-file"
|
|
@@ -2914,11 +3237,11 @@ dependencies = [
|
|
|
2914
3237
|
|
|
2915
3238
|
[[package]]
|
|
2916
3239
|
name = "schannel"
|
|
2917
|
-
version = "0.1.
|
|
3240
|
+
version = "0.1.23"
|
|
2918
3241
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2919
|
-
checksum = "
|
|
3242
|
+
checksum = "fbc91545643bcf3a0bbb6569265615222618bdf33ce4ffbbd13c4bbd4c093534"
|
|
2920
3243
|
dependencies = [
|
|
2921
|
-
"windows-sys 0.
|
|
3244
|
+
"windows-sys 0.52.0",
|
|
2922
3245
|
]
|
|
2923
3246
|
|
|
2924
3247
|
[[package]]
|
|
@@ -2941,11 +3264,11 @@ checksum = "fda28d4b4830b807a8b43f7b0e6b5df875311b3e7621d84577188c175b6ec1ec"
|
|
|
2941
3264
|
|
|
2942
3265
|
[[package]]
|
|
2943
3266
|
name = "security-framework"
|
|
2944
|
-
version = "2.
|
|
3267
|
+
version = "2.11.0"
|
|
2945
3268
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2946
|
-
checksum = "
|
|
3269
|
+
checksum = "c627723fd09706bacdb5cf41499e95098555af3c3c29d014dc3c458ef6be11c0"
|
|
2947
3270
|
dependencies = [
|
|
2948
|
-
"bitflags
|
|
3271
|
+
"bitflags 2.5.0",
|
|
2949
3272
|
"core-foundation",
|
|
2950
3273
|
"core-foundation-sys",
|
|
2951
3274
|
"libc",
|
|
@@ -2954,9 +3277,9 @@ dependencies = [
|
|
|
2954
3277
|
|
|
2955
3278
|
[[package]]
|
|
2956
3279
|
name = "security-framework-sys"
|
|
2957
|
-
version = "2.
|
|
3280
|
+
version = "2.11.0"
|
|
2958
3281
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2959
|
-
checksum = "
|
|
3282
|
+
checksum = "317936bbbd05227752583946b9e66d7ce3b489f84e11a94a510b4437fef407d7"
|
|
2960
3283
|
dependencies = [
|
|
2961
3284
|
"core-foundation-sys",
|
|
2962
3285
|
"libc",
|
|
@@ -2984,60 +3307,61 @@ dependencies = [
|
|
|
2984
3307
|
|
|
2985
3308
|
[[package]]
|
|
2986
3309
|
name = "semver"
|
|
2987
|
-
version = "1.0.
|
|
3310
|
+
version = "1.0.23"
|
|
2988
3311
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2989
|
-
checksum = "
|
|
3312
|
+
checksum = "61697e0a1c7e512e84a621326239844a24d8207b4669b41bc18b32ea5cbf988b"
|
|
2990
3313
|
dependencies = [
|
|
2991
3314
|
"serde",
|
|
2992
3315
|
]
|
|
2993
3316
|
|
|
2994
3317
|
[[package]]
|
|
2995
3318
|
name = "serde"
|
|
2996
|
-
version = "1.0.
|
|
3319
|
+
version = "1.0.200"
|
|
2997
3320
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2998
|
-
checksum = "
|
|
3321
|
+
checksum = "ddc6f9cc94d67c0e21aaf7eda3a010fd3af78ebf6e096aa6e2e13c79749cce4f"
|
|
2999
3322
|
dependencies = [
|
|
3000
3323
|
"serde_derive",
|
|
3001
3324
|
]
|
|
3002
3325
|
|
|
3003
3326
|
[[package]]
|
|
3004
3327
|
name = "serde_derive"
|
|
3005
|
-
version = "1.0.
|
|
3328
|
+
version = "1.0.200"
|
|
3006
3329
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3007
|
-
checksum = "
|
|
3330
|
+
checksum = "856f046b9400cee3c8c94ed572ecdb752444c24528c035cd35882aad6f492bcb"
|
|
3008
3331
|
dependencies = [
|
|
3009
3332
|
"proc-macro2",
|
|
3010
3333
|
"quote",
|
|
3011
|
-
"syn 2.0.
|
|
3334
|
+
"syn 2.0.61",
|
|
3012
3335
|
]
|
|
3013
3336
|
|
|
3014
3337
|
[[package]]
|
|
3015
3338
|
name = "serde_json"
|
|
3016
|
-
version = "1.0.
|
|
3339
|
+
version = "1.0.116"
|
|
3017
3340
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3018
|
-
checksum = "
|
|
3341
|
+
checksum = "3e17db7126d17feb94eb3fad46bf1a96b034e8aacbc2e775fe81505f8b0b2813"
|
|
3019
3342
|
dependencies = [
|
|
3020
|
-
"
|
|
3343
|
+
"indexmap 2.2.6",
|
|
3344
|
+
"itoa 1.0.11",
|
|
3021
3345
|
"ryu",
|
|
3022
3346
|
"serde",
|
|
3023
3347
|
]
|
|
3024
3348
|
|
|
3025
3349
|
[[package]]
|
|
3026
3350
|
name = "serde_repr"
|
|
3027
|
-
version = "0.1.
|
|
3351
|
+
version = "0.1.19"
|
|
3028
3352
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3029
|
-
checksum = "
|
|
3353
|
+
checksum = "6c64451ba24fc7a6a2d60fc75dd9c83c90903b19028d4eff35e88fc1e86564e9"
|
|
3030
3354
|
dependencies = [
|
|
3031
3355
|
"proc-macro2",
|
|
3032
3356
|
"quote",
|
|
3033
|
-
"syn 2.0.
|
|
3357
|
+
"syn 2.0.61",
|
|
3034
3358
|
]
|
|
3035
3359
|
|
|
3036
3360
|
[[package]]
|
|
3037
3361
|
name = "serde_spanned"
|
|
3038
|
-
version = "0.6.
|
|
3362
|
+
version = "0.6.5"
|
|
3039
3363
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3040
|
-
checksum = "
|
|
3364
|
+
checksum = "eb3622f419d1296904700073ea6cc23ad690adbd66f13ea683df73298736f0c1"
|
|
3041
3365
|
dependencies = [
|
|
3042
3366
|
"serde",
|
|
3043
3367
|
]
|
|
@@ -3049,22 +3373,24 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
3049
3373
|
checksum = "d3491c14715ca2294c4d6a88f15e84739788c1d030eed8c110436aafdaa2f3fd"
|
|
3050
3374
|
dependencies = [
|
|
3051
3375
|
"form_urlencoded",
|
|
3052
|
-
"itoa 1.0.
|
|
3376
|
+
"itoa 1.0.11",
|
|
3053
3377
|
"ryu",
|
|
3054
3378
|
"serde",
|
|
3055
3379
|
]
|
|
3056
3380
|
|
|
3057
3381
|
[[package]]
|
|
3058
3382
|
name = "serde_with"
|
|
3059
|
-
version = "3.1
|
|
3383
|
+
version = "3.8.1"
|
|
3060
3384
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3061
|
-
checksum = "
|
|
3385
|
+
checksum = "0ad483d2ab0149d5a5ebcd9972a3852711e0153d863bf5a5d0391d28883c4a20"
|
|
3062
3386
|
dependencies = [
|
|
3063
|
-
"base64 0.
|
|
3387
|
+
"base64 0.22.1",
|
|
3064
3388
|
"chrono",
|
|
3065
3389
|
"hex",
|
|
3066
3390
|
"indexmap 1.9.3",
|
|
3391
|
+
"indexmap 2.2.6",
|
|
3067
3392
|
"serde",
|
|
3393
|
+
"serde_derive",
|
|
3068
3394
|
"serde_json",
|
|
3069
3395
|
"serde_with_macros",
|
|
3070
3396
|
"time",
|
|
@@ -3072,14 +3398,14 @@ dependencies = [
|
|
|
3072
3398
|
|
|
3073
3399
|
[[package]]
|
|
3074
3400
|
name = "serde_with_macros"
|
|
3075
|
-
version = "3.1
|
|
3401
|
+
version = "3.8.1"
|
|
3076
3402
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3077
|
-
checksum = "
|
|
3403
|
+
checksum = "65569b702f41443e8bc8bbb1c5779bd0450bbe723b56198980e80ec45780bce2"
|
|
3078
3404
|
dependencies = [
|
|
3079
3405
|
"darling",
|
|
3080
3406
|
"proc-macro2",
|
|
3081
3407
|
"quote",
|
|
3082
|
-
"syn 2.0.
|
|
3408
|
+
"syn 2.0.61",
|
|
3083
3409
|
]
|
|
3084
3410
|
|
|
3085
3411
|
[[package]]
|
|
@@ -3116,9 +3442,9 @@ dependencies = [
|
|
|
3116
3442
|
|
|
3117
3443
|
[[package]]
|
|
3118
3444
|
name = "sha1"
|
|
3119
|
-
version = "0.10.
|
|
3445
|
+
version = "0.10.6"
|
|
3120
3446
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3121
|
-
checksum = "
|
|
3447
|
+
checksum = "e3bf829a2d51ab4a5ddf1352d8470c140cadc8301b2ae1789db023f01cedd6ba"
|
|
3122
3448
|
dependencies = [
|
|
3123
3449
|
"cfg-if",
|
|
3124
3450
|
"cpufeatures",
|
|
@@ -3127,9 +3453,9 @@ dependencies = [
|
|
|
3127
3453
|
|
|
3128
3454
|
[[package]]
|
|
3129
3455
|
name = "sha2"
|
|
3130
|
-
version = "0.10.
|
|
3456
|
+
version = "0.10.8"
|
|
3131
3457
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3132
|
-
checksum = "
|
|
3458
|
+
checksum = "793db75ad2bcafc3ffa7c68b215fee268f537982cd901d132f89c6343f3a3dc8"
|
|
3133
3459
|
dependencies = [
|
|
3134
3460
|
"cfg-if",
|
|
3135
3461
|
"cpufeatures",
|
|
@@ -3138,9 +3464,9 @@ dependencies = [
|
|
|
3138
3464
|
|
|
3139
3465
|
[[package]]
|
|
3140
3466
|
name = "sharded-slab"
|
|
3141
|
-
version = "0.1.
|
|
3467
|
+
version = "0.1.7"
|
|
3142
3468
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3143
|
-
checksum = "
|
|
3469
|
+
checksum = "f40ca3c46823713e0d4209592e8d6e826aa57e928f09752619fc696c499637f6"
|
|
3144
3470
|
dependencies = [
|
|
3145
3471
|
"lazy_static",
|
|
3146
3472
|
]
|
|
@@ -3155,60 +3481,50 @@ dependencies = [
|
|
|
3155
3481
|
"winapi",
|
|
3156
3482
|
]
|
|
3157
3483
|
|
|
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
3484
|
[[package]]
|
|
3169
3485
|
name = "signal-hook-registry"
|
|
3170
|
-
version = "1.4.
|
|
3486
|
+
version = "1.4.2"
|
|
3171
3487
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3172
|
-
checksum = "
|
|
3488
|
+
checksum = "a9e9e0b4211b72e7b8b6e85c807d36c212bdb33ea8587f7569562a84df5465b1"
|
|
3173
3489
|
dependencies = [
|
|
3174
3490
|
"libc",
|
|
3175
3491
|
]
|
|
3176
3492
|
|
|
3177
3493
|
[[package]]
|
|
3178
3494
|
name = "simd-adler32"
|
|
3179
|
-
version = "0.3.
|
|
3495
|
+
version = "0.3.7"
|
|
3180
3496
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3181
|
-
checksum = "
|
|
3497
|
+
checksum = "d66dc143e6b11c1eddc06d5c423cfc97062865baf299914ab64caa38182078fe"
|
|
3182
3498
|
|
|
3183
3499
|
[[package]]
|
|
3184
3500
|
name = "siphasher"
|
|
3185
|
-
version = "0.3.
|
|
3501
|
+
version = "0.3.11"
|
|
3186
3502
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3187
|
-
checksum = "
|
|
3503
|
+
checksum = "38b58827f4464d87d377d175e90bf58eb00fd8716ff0a62f80356b5e61555d0d"
|
|
3188
3504
|
|
|
3189
3505
|
[[package]]
|
|
3190
3506
|
name = "slab"
|
|
3191
|
-
version = "0.4.
|
|
3507
|
+
version = "0.4.9"
|
|
3192
3508
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3193
|
-
checksum = "
|
|
3509
|
+
checksum = "8f92a496fb766b417c996b9c5e57daf2f7ad3b0bebe1ccfca4856390e3d3bb67"
|
|
3194
3510
|
dependencies = [
|
|
3195
3511
|
"autocfg",
|
|
3196
3512
|
]
|
|
3197
3513
|
|
|
3198
3514
|
[[package]]
|
|
3199
3515
|
name = "smallvec"
|
|
3200
|
-
version = "1.
|
|
3516
|
+
version = "1.13.2"
|
|
3201
3517
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3202
|
-
checksum = "
|
|
3518
|
+
checksum = "3c5e1a9a646d36c3599cd173a41282daf47c44583ad367b8e6837255952e5c67"
|
|
3203
3519
|
|
|
3204
3520
|
[[package]]
|
|
3205
3521
|
name = "socket2"
|
|
3206
|
-
version = "0.
|
|
3522
|
+
version = "0.5.7"
|
|
3207
3523
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3208
|
-
checksum = "
|
|
3524
|
+
checksum = "ce305eb0b4296696835b71df73eb912e0f1ffd2556a501fcede6e0c50349191c"
|
|
3209
3525
|
dependencies = [
|
|
3210
3526
|
"libc",
|
|
3211
|
-
"
|
|
3527
|
+
"windows-sys 0.52.0",
|
|
3212
3528
|
]
|
|
3213
3529
|
|
|
3214
3530
|
[[package]]
|
|
@@ -3305,15 +3621,21 @@ dependencies = [
|
|
|
3305
3621
|
|
|
3306
3622
|
[[package]]
|
|
3307
3623
|
name = "syn"
|
|
3308
|
-
version = "2.0.
|
|
3624
|
+
version = "2.0.61"
|
|
3309
3625
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3310
|
-
checksum = "
|
|
3626
|
+
checksum = "c993ed8ccba56ae856363b1845da7266a7cb78e1d146c8a32d54b45a8b831fc9"
|
|
3311
3627
|
dependencies = [
|
|
3312
3628
|
"proc-macro2",
|
|
3313
3629
|
"quote",
|
|
3314
3630
|
"unicode-ident",
|
|
3315
3631
|
]
|
|
3316
3632
|
|
|
3633
|
+
[[package]]
|
|
3634
|
+
name = "sync_wrapper"
|
|
3635
|
+
version = "0.1.2"
|
|
3636
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3637
|
+
checksum = "2047c6ded9c721764247e62cd3b03c09ffc529b2ba5b10ec482ae507a4a70160"
|
|
3638
|
+
|
|
3317
3639
|
[[package]]
|
|
3318
3640
|
name = "sys-locale"
|
|
3319
3641
|
version = "0.2.4"
|
|
@@ -3328,13 +3650,34 @@ dependencies = [
|
|
|
3328
3650
|
]
|
|
3329
3651
|
|
|
3330
3652
|
[[package]]
|
|
3331
|
-
name = "system-
|
|
3332
|
-
version = "5.
|
|
3653
|
+
name = "system-configuration"
|
|
3654
|
+
version = "0.5.1"
|
|
3333
3655
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3334
|
-
checksum = "
|
|
3656
|
+
checksum = "ba3a3adc5c275d719af8cb4272ea1c4a6d668a777f37e115f6d11ddbc1c8e0e7"
|
|
3335
3657
|
dependencies = [
|
|
3336
|
-
"
|
|
3337
|
-
"
|
|
3658
|
+
"bitflags 1.3.2",
|
|
3659
|
+
"core-foundation",
|
|
3660
|
+
"system-configuration-sys",
|
|
3661
|
+
]
|
|
3662
|
+
|
|
3663
|
+
[[package]]
|
|
3664
|
+
name = "system-configuration-sys"
|
|
3665
|
+
version = "0.5.0"
|
|
3666
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3667
|
+
checksum = "a75fb188eb626b924683e3b95e3a48e63551fcfb51949de2f06a9d91dbee93c9"
|
|
3668
|
+
dependencies = [
|
|
3669
|
+
"core-foundation-sys",
|
|
3670
|
+
"libc",
|
|
3671
|
+
]
|
|
3672
|
+
|
|
3673
|
+
[[package]]
|
|
3674
|
+
name = "system-deps"
|
|
3675
|
+
version = "5.0.0"
|
|
3676
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3677
|
+
checksum = "18db855554db7bd0e73e06cf7ba3df39f97812cb11d3f75e71c39bf45171797e"
|
|
3678
|
+
dependencies = [
|
|
3679
|
+
"cfg-expr 0.9.1",
|
|
3680
|
+
"heck 0.3.3",
|
|
3338
3681
|
"pkg-config",
|
|
3339
3682
|
"toml 0.5.11",
|
|
3340
3683
|
"version-compare 0.0.11",
|
|
@@ -3342,29 +3685,29 @@ dependencies = [
|
|
|
3342
3685
|
|
|
3343
3686
|
[[package]]
|
|
3344
3687
|
name = "system-deps"
|
|
3345
|
-
version = "6.
|
|
3688
|
+
version = "6.2.2"
|
|
3346
3689
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3347
|
-
checksum = "
|
|
3690
|
+
checksum = "a3e535eb8dded36d55ec13eddacd30dec501792ff23a0b1682c38601b8cf2349"
|
|
3348
3691
|
dependencies = [
|
|
3349
|
-
"cfg-expr 0.15.
|
|
3350
|
-
"heck 0.
|
|
3692
|
+
"cfg-expr 0.15.8",
|
|
3693
|
+
"heck 0.5.0",
|
|
3351
3694
|
"pkg-config",
|
|
3352
|
-
"toml 0.
|
|
3353
|
-
"version-compare 0.
|
|
3695
|
+
"toml 0.8.12",
|
|
3696
|
+
"version-compare 0.2.0",
|
|
3354
3697
|
]
|
|
3355
3698
|
|
|
3356
3699
|
[[package]]
|
|
3357
3700
|
name = "tao"
|
|
3358
|
-
version = "0.16.
|
|
3701
|
+
version = "0.16.9"
|
|
3359
3702
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3360
|
-
checksum = "
|
|
3703
|
+
checksum = "575c856fc21e551074869dcfaad8f706412bd5b803dfa0fbf6881c4ff4bfafab"
|
|
3361
3704
|
dependencies = [
|
|
3362
3705
|
"bitflags 1.3.2",
|
|
3363
3706
|
"cairo-rs",
|
|
3364
3707
|
"cc",
|
|
3365
3708
|
"cocoa",
|
|
3366
3709
|
"core-foundation",
|
|
3367
|
-
"core-graphics",
|
|
3710
|
+
"core-graphics 0.22.3",
|
|
3368
3711
|
"crossbeam-channel",
|
|
3369
3712
|
"dirs-next",
|
|
3370
3713
|
"dispatch",
|
|
@@ -3377,7 +3720,7 @@ dependencies = [
|
|
|
3377
3720
|
"glib",
|
|
3378
3721
|
"glib-sys",
|
|
3379
3722
|
"gtk",
|
|
3380
|
-
"image",
|
|
3723
|
+
"image 0.24.9",
|
|
3381
3724
|
"instant",
|
|
3382
3725
|
"jni",
|
|
3383
3726
|
"lazy_static",
|
|
@@ -3396,17 +3739,17 @@ dependencies = [
|
|
|
3396
3739
|
"serde",
|
|
3397
3740
|
"tao-macros",
|
|
3398
3741
|
"unicode-segmentation",
|
|
3399
|
-
"uuid 1.
|
|
3742
|
+
"uuid 1.8.0",
|
|
3400
3743
|
"windows 0.39.0",
|
|
3401
|
-
"windows-implement",
|
|
3744
|
+
"windows-implement 0.39.0",
|
|
3402
3745
|
"x11-dl",
|
|
3403
3746
|
]
|
|
3404
3747
|
|
|
3405
3748
|
[[package]]
|
|
3406
3749
|
name = "tao-macros"
|
|
3407
|
-
version = "0.1.
|
|
3750
|
+
version = "0.1.2"
|
|
3408
3751
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3409
|
-
checksum = "
|
|
3752
|
+
checksum = "ec114582505d158b669b136e6851f85840c109819d77c42bb7c0709f727d18c2"
|
|
3410
3753
|
dependencies = [
|
|
3411
3754
|
"proc-macro2",
|
|
3412
3755
|
"quote",
|
|
@@ -3415,9 +3758,9 @@ dependencies = [
|
|
|
3415
3758
|
|
|
3416
3759
|
[[package]]
|
|
3417
3760
|
name = "tar"
|
|
3418
|
-
version = "0.4.
|
|
3761
|
+
version = "0.4.40"
|
|
3419
3762
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3420
|
-
checksum = "
|
|
3763
|
+
checksum = "b16afcea1f22891c49a00c751c7b63b2233284064f11a200fc624137c51e2ddb"
|
|
3421
3764
|
dependencies = [
|
|
3422
3765
|
"filetime",
|
|
3423
3766
|
"libc",
|
|
@@ -3426,20 +3769,21 @@ dependencies = [
|
|
|
3426
3769
|
|
|
3427
3770
|
[[package]]
|
|
3428
3771
|
name = "target-lexicon"
|
|
3429
|
-
version = "0.12.
|
|
3772
|
+
version = "0.12.14"
|
|
3430
3773
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3431
|
-
checksum = "
|
|
3774
|
+
checksum = "e1fc403891a21bcfb7c37834ba66a547a8f402146eba7265b5a6d88059c9ff2f"
|
|
3432
3775
|
|
|
3433
3776
|
[[package]]
|
|
3434
3777
|
name = "tauri"
|
|
3435
|
-
version = "1.
|
|
3778
|
+
version = "1.6.3"
|
|
3436
3779
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3437
|
-
checksum = "
|
|
3780
|
+
checksum = "7a4fab012dcf1e72762561cef2c08a6538aec2ca44d282158128117f79eb9d39"
|
|
3438
3781
|
dependencies = [
|
|
3439
3782
|
"anyhow",
|
|
3440
3783
|
"bytes",
|
|
3441
3784
|
"cocoa",
|
|
3442
3785
|
"dirs-next",
|
|
3786
|
+
"dunce",
|
|
3443
3787
|
"embed_plist",
|
|
3444
3788
|
"encoding_rs",
|
|
3445
3789
|
"flate2",
|
|
@@ -3447,9 +3791,11 @@ dependencies = [
|
|
|
3447
3791
|
"glib",
|
|
3448
3792
|
"glob",
|
|
3449
3793
|
"gtk",
|
|
3450
|
-
"heck 0.
|
|
3794
|
+
"heck 0.5.0",
|
|
3451
3795
|
"http",
|
|
3452
3796
|
"ignore",
|
|
3797
|
+
"indexmap 1.9.3",
|
|
3798
|
+
"nix 0.26.4",
|
|
3453
3799
|
"notify-rust",
|
|
3454
3800
|
"objc",
|
|
3455
3801
|
"once_cell",
|
|
@@ -3479,7 +3825,7 @@ dependencies = [
|
|
|
3479
3825
|
"thiserror",
|
|
3480
3826
|
"tokio",
|
|
3481
3827
|
"url",
|
|
3482
|
-
"uuid 1.
|
|
3828
|
+
"uuid 1.8.0",
|
|
3483
3829
|
"webkit2gtk",
|
|
3484
3830
|
"webview2-com",
|
|
3485
3831
|
"windows 0.39.0",
|
|
@@ -3487,14 +3833,14 @@ dependencies = [
|
|
|
3487
3833
|
|
|
3488
3834
|
[[package]]
|
|
3489
3835
|
name = "tauri-build"
|
|
3490
|
-
version = "1.5.
|
|
3836
|
+
version = "1.5.2"
|
|
3491
3837
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3492
|
-
checksum = "
|
|
3838
|
+
checksum = "ab30cba12974d0f9b09794f61e72cad6da2142d3ceb81e519321bab86ce53312"
|
|
3493
3839
|
dependencies = [
|
|
3494
3840
|
"anyhow",
|
|
3495
3841
|
"cargo_toml",
|
|
3496
3842
|
"dirs-next",
|
|
3497
|
-
"heck 0.
|
|
3843
|
+
"heck 0.5.0",
|
|
3498
3844
|
"json-patch",
|
|
3499
3845
|
"semver",
|
|
3500
3846
|
"serde",
|
|
@@ -3506,11 +3852,11 @@ dependencies = [
|
|
|
3506
3852
|
|
|
3507
3853
|
[[package]]
|
|
3508
3854
|
name = "tauri-codegen"
|
|
3509
|
-
version = "1.4.
|
|
3855
|
+
version = "1.4.3"
|
|
3510
3856
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3511
|
-
checksum = "
|
|
3857
|
+
checksum = "c3a1d90db526a8cdfd54444ad3f34d8d4d58fa5c536463915942393743bd06f8"
|
|
3512
3858
|
dependencies = [
|
|
3513
|
-
"base64 0.21.
|
|
3859
|
+
"base64 0.21.7",
|
|
3514
3860
|
"brotli",
|
|
3515
3861
|
"ico",
|
|
3516
3862
|
"json-patch",
|
|
@@ -3526,17 +3872,17 @@ dependencies = [
|
|
|
3526
3872
|
"tauri-utils",
|
|
3527
3873
|
"thiserror",
|
|
3528
3874
|
"time",
|
|
3529
|
-
"uuid 1.
|
|
3875
|
+
"uuid 1.8.0",
|
|
3530
3876
|
"walkdir",
|
|
3531
3877
|
]
|
|
3532
3878
|
|
|
3533
3879
|
[[package]]
|
|
3534
3880
|
name = "tauri-macros"
|
|
3535
|
-
version = "1.4.
|
|
3881
|
+
version = "1.4.4"
|
|
3536
3882
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3537
|
-
checksum = "
|
|
3883
|
+
checksum = "6a582d75414250122e4a597b9dd7d3c910a2c77906648fc2ac9353845ff0feec"
|
|
3538
3884
|
dependencies = [
|
|
3539
|
-
"heck 0.
|
|
3885
|
+
"heck 0.5.0",
|
|
3540
3886
|
"proc-macro2",
|
|
3541
3887
|
"quote",
|
|
3542
3888
|
"syn 1.0.109",
|
|
@@ -3544,13 +3890,25 @@ dependencies = [
|
|
|
3544
3890
|
"tauri-utils",
|
|
3545
3891
|
]
|
|
3546
3892
|
|
|
3893
|
+
[[package]]
|
|
3894
|
+
name = "tauri-plugin-oauth"
|
|
3895
|
+
version = "0.0.0-alpha.0"
|
|
3896
|
+
source = "git+https://github.com/FabianLars/tauri-plugin-oauth?branch=main#50dadbf4a81cba51f625587b7722892f0b4316a6"
|
|
3897
|
+
dependencies = [
|
|
3898
|
+
"httparse",
|
|
3899
|
+
"log",
|
|
3900
|
+
"serde",
|
|
3901
|
+
"tauri",
|
|
3902
|
+
"url",
|
|
3903
|
+
]
|
|
3904
|
+
|
|
3547
3905
|
[[package]]
|
|
3548
3906
|
name = "tauri-plugin-window-state"
|
|
3549
|
-
version = "0.1.
|
|
3550
|
-
source = "git+https://github.com/tauri-apps/plugins-workspace?branch=v1#
|
|
3907
|
+
version = "0.1.1"
|
|
3908
|
+
source = "git+https://github.com/tauri-apps/plugins-workspace?branch=v1#5e3900e682e13f3759b439116ae2f77a6d389ca2"
|
|
3551
3909
|
dependencies = [
|
|
3552
3910
|
"bincode",
|
|
3553
|
-
"bitflags 2.
|
|
3911
|
+
"bitflags 2.5.0",
|
|
3554
3912
|
"log",
|
|
3555
3913
|
"serde",
|
|
3556
3914
|
"serde_json",
|
|
@@ -3560,9 +3918,9 @@ dependencies = [
|
|
|
3560
3918
|
|
|
3561
3919
|
[[package]]
|
|
3562
3920
|
name = "tauri-runtime"
|
|
3563
|
-
version = "0.14.
|
|
3921
|
+
version = "0.14.3"
|
|
3564
3922
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3565
|
-
checksum = "
|
|
3923
|
+
checksum = "cd7ffddf36d450791018e63a3ddf54979b9581d9644c584a5fb5611e6b5f20b4"
|
|
3566
3924
|
dependencies = [
|
|
3567
3925
|
"gtk",
|
|
3568
3926
|
"http",
|
|
@@ -3574,17 +3932,18 @@ dependencies = [
|
|
|
3574
3932
|
"tauri-utils",
|
|
3575
3933
|
"thiserror",
|
|
3576
3934
|
"url",
|
|
3577
|
-
"uuid 1.
|
|
3935
|
+
"uuid 1.8.0",
|
|
3578
3936
|
"webview2-com",
|
|
3579
3937
|
"windows 0.39.0",
|
|
3580
3938
|
]
|
|
3581
3939
|
|
|
3582
3940
|
[[package]]
|
|
3583
3941
|
name = "tauri-runtime-wry"
|
|
3584
|
-
version = "0.14.
|
|
3942
|
+
version = "0.14.6"
|
|
3585
3943
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3586
|
-
checksum = "
|
|
3944
|
+
checksum = "a777eaa0d88ae47d8081cdc667eba8941b3a18af0f0ccb22640d8f0c3431d6d1"
|
|
3587
3945
|
dependencies = [
|
|
3946
|
+
"arboard",
|
|
3588
3947
|
"cocoa",
|
|
3589
3948
|
"gtk",
|
|
3590
3949
|
"percent-encoding",
|
|
@@ -3592,7 +3951,7 @@ dependencies = [
|
|
|
3592
3951
|
"raw-window-handle",
|
|
3593
3952
|
"tauri-runtime",
|
|
3594
3953
|
"tauri-utils",
|
|
3595
|
-
"uuid 1.
|
|
3954
|
+
"uuid 1.8.0",
|
|
3596
3955
|
"webkit2gtk",
|
|
3597
3956
|
"webview2-com",
|
|
3598
3957
|
"windows 0.39.0",
|
|
@@ -3601,22 +3960,22 @@ dependencies = [
|
|
|
3601
3960
|
|
|
3602
3961
|
[[package]]
|
|
3603
3962
|
name = "tauri-utils"
|
|
3604
|
-
version = "1.5.
|
|
3963
|
+
version = "1.5.4"
|
|
3605
3964
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3606
|
-
checksum = "
|
|
3965
|
+
checksum = "450b17a7102e5d46d4bdabae0d1590fd27953e704e691fc081f06c06d2253b35"
|
|
3607
3966
|
dependencies = [
|
|
3608
3967
|
"brotli",
|
|
3609
3968
|
"ctor",
|
|
3610
3969
|
"dunce",
|
|
3611
3970
|
"glob",
|
|
3612
|
-
"heck 0.
|
|
3613
|
-
"html5ever
|
|
3971
|
+
"heck 0.5.0",
|
|
3972
|
+
"html5ever",
|
|
3614
3973
|
"infer",
|
|
3615
3974
|
"json-patch",
|
|
3616
3975
|
"kuchikiki",
|
|
3617
3976
|
"log",
|
|
3618
3977
|
"memchr",
|
|
3619
|
-
"phf 0.
|
|
3978
|
+
"phf 0.11.2",
|
|
3620
3979
|
"proc-macro2",
|
|
3621
3980
|
"quote",
|
|
3622
3981
|
"semver",
|
|
@@ -3626,7 +3985,7 @@ dependencies = [
|
|
|
3626
3985
|
"thiserror",
|
|
3627
3986
|
"url",
|
|
3628
3987
|
"walkdir",
|
|
3629
|
-
"windows
|
|
3988
|
+
"windows-version",
|
|
3630
3989
|
]
|
|
3631
3990
|
|
|
3632
3991
|
[[package]]
|
|
@@ -3636,31 +3995,30 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
3636
3995
|
checksum = "5993dc129e544393574288923d1ec447c857f3f644187f4fbf7d9a875fbfc4fb"
|
|
3637
3996
|
dependencies = [
|
|
3638
3997
|
"embed-resource",
|
|
3639
|
-
"toml 0.7.
|
|
3998
|
+
"toml 0.7.8",
|
|
3640
3999
|
]
|
|
3641
4000
|
|
|
3642
4001
|
[[package]]
|
|
3643
4002
|
name = "tauri-winrt-notification"
|
|
3644
|
-
version = "0.1
|
|
4003
|
+
version = "0.2.1"
|
|
3645
4004
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3646
|
-
checksum = "
|
|
4005
|
+
checksum = "f89f5fb70d6f62381f5d9b2ba9008196150b40b75f3068eb24faeddf1c686871"
|
|
3647
4006
|
dependencies = [
|
|
3648
|
-
"quick-xml
|
|
3649
|
-
"windows 0.
|
|
4007
|
+
"quick-xml",
|
|
4008
|
+
"windows 0.56.0",
|
|
4009
|
+
"windows-version",
|
|
3650
4010
|
]
|
|
3651
4011
|
|
|
3652
4012
|
[[package]]
|
|
3653
4013
|
name = "tempfile"
|
|
3654
|
-
version = "3.
|
|
4014
|
+
version = "3.10.1"
|
|
3655
4015
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3656
|
-
checksum = "
|
|
4016
|
+
checksum = "85b77fafb263dd9d05cbeac119526425676db3784113aa9295c88498cbf8bff1"
|
|
3657
4017
|
dependencies = [
|
|
3658
|
-
"autocfg",
|
|
3659
4018
|
"cfg-if",
|
|
3660
4019
|
"fastrand",
|
|
3661
|
-
"redox_syscall 0.3.5",
|
|
3662
4020
|
"rustix",
|
|
3663
|
-
"windows-sys 0.
|
|
4021
|
+
"windows-sys 0.52.0",
|
|
3664
4022
|
]
|
|
3665
4023
|
|
|
3666
4024
|
[[package]]
|
|
@@ -3692,41 +4050,55 @@ checksum = "8eaa81235c7058867fa8c0e7314f33dcce9c215f535d1913822a2b3f5e289f3c"
|
|
|
3692
4050
|
|
|
3693
4051
|
[[package]]
|
|
3694
4052
|
name = "thiserror"
|
|
3695
|
-
version = "1.0.
|
|
4053
|
+
version = "1.0.60"
|
|
3696
4054
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3697
|
-
checksum = "
|
|
4055
|
+
checksum = "579e9083ca58dd9dcf91a9923bb9054071b9ebbd800b342194c9feb0ee89fc18"
|
|
3698
4056
|
dependencies = [
|
|
3699
4057
|
"thiserror-impl",
|
|
3700
4058
|
]
|
|
3701
4059
|
|
|
3702
4060
|
[[package]]
|
|
3703
4061
|
name = "thiserror-impl"
|
|
3704
|
-
version = "1.0.
|
|
4062
|
+
version = "1.0.60"
|
|
3705
4063
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3706
|
-
checksum = "
|
|
4064
|
+
checksum = "e2470041c06ec3ac1ab38d0356a6119054dedaea53e12fbefc0de730a1c08524"
|
|
3707
4065
|
dependencies = [
|
|
3708
4066
|
"proc-macro2",
|
|
3709
4067
|
"quote",
|
|
3710
|
-
"syn 2.0.
|
|
4068
|
+
"syn 2.0.61",
|
|
3711
4069
|
]
|
|
3712
4070
|
|
|
3713
4071
|
[[package]]
|
|
3714
4072
|
name = "thread_local"
|
|
3715
|
-
version = "1.1.
|
|
4073
|
+
version = "1.1.8"
|
|
3716
4074
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3717
|
-
checksum = "
|
|
4075
|
+
checksum = "8b9ef9bad013ada3808854ceac7b46812a6465ba368859a37e2100283d2d719c"
|
|
3718
4076
|
dependencies = [
|
|
3719
4077
|
"cfg-if",
|
|
3720
4078
|
"once_cell",
|
|
3721
4079
|
]
|
|
3722
4080
|
|
|
4081
|
+
[[package]]
|
|
4082
|
+
name = "tiff"
|
|
4083
|
+
version = "0.9.1"
|
|
4084
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4085
|
+
checksum = "ba1310fcea54c6a9a4fd1aad794ecc02c31682f6bfbecdf460bf19533eed1e3e"
|
|
4086
|
+
dependencies = [
|
|
4087
|
+
"flate2",
|
|
4088
|
+
"jpeg-decoder",
|
|
4089
|
+
"weezl",
|
|
4090
|
+
]
|
|
4091
|
+
|
|
3723
4092
|
[[package]]
|
|
3724
4093
|
name = "time"
|
|
3725
|
-
version = "0.3.
|
|
4094
|
+
version = "0.3.36"
|
|
3726
4095
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3727
|
-
checksum = "
|
|
4096
|
+
checksum = "5dfd88e563464686c916c7e46e623e520ddc6d79fa6641390f2e3fa86e83e885"
|
|
3728
4097
|
dependencies = [
|
|
3729
|
-
"
|
|
4098
|
+
"deranged",
|
|
4099
|
+
"itoa 1.0.11",
|
|
4100
|
+
"num-conv",
|
|
4101
|
+
"powerfmt",
|
|
3730
4102
|
"serde",
|
|
3731
4103
|
"time-core",
|
|
3732
4104
|
"time-macros",
|
|
@@ -3734,16 +4106,17 @@ dependencies = [
|
|
|
3734
4106
|
|
|
3735
4107
|
[[package]]
|
|
3736
4108
|
name = "time-core"
|
|
3737
|
-
version = "0.1.
|
|
4109
|
+
version = "0.1.2"
|
|
3738
4110
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3739
|
-
checksum = "
|
|
4111
|
+
checksum = "ef927ca75afb808a4d64dd374f00a2adf8d0fcff8e7b184af886c3c87ec4a3f3"
|
|
3740
4112
|
|
|
3741
4113
|
[[package]]
|
|
3742
4114
|
name = "time-macros"
|
|
3743
|
-
version = "0.2.
|
|
4115
|
+
version = "0.2.18"
|
|
3744
4116
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3745
|
-
checksum = "
|
|
4117
|
+
checksum = "3f252a68540fde3a3877aeea552b832b40ab9a69e318efd078774a01ddee1ccf"
|
|
3746
4118
|
dependencies = [
|
|
4119
|
+
"num-conv",
|
|
3747
4120
|
"time-core",
|
|
3748
4121
|
]
|
|
3749
4122
|
|
|
@@ -3764,11 +4137,10 @@ checksum = "1f3ccbac311fea05f86f61904b462b55fb3df8837a366dfc601a0161d0532f20"
|
|
|
3764
4137
|
|
|
3765
4138
|
[[package]]
|
|
3766
4139
|
name = "tokio"
|
|
3767
|
-
version = "1.
|
|
4140
|
+
version = "1.37.0"
|
|
3768
4141
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3769
|
-
checksum = "
|
|
4142
|
+
checksum = "1adbebffeca75fcfd058afa480fb6c0b81e165a0323f9c9d39c9697e37c46787"
|
|
3770
4143
|
dependencies = [
|
|
3771
|
-
"autocfg",
|
|
3772
4144
|
"backtrace",
|
|
3773
4145
|
"bytes",
|
|
3774
4146
|
"libc",
|
|
@@ -3791,16 +4163,15 @@ dependencies = [
|
|
|
3791
4163
|
|
|
3792
4164
|
[[package]]
|
|
3793
4165
|
name = "tokio-util"
|
|
3794
|
-
version = "0.7.
|
|
4166
|
+
version = "0.7.11"
|
|
3795
4167
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3796
|
-
checksum = "
|
|
4168
|
+
checksum = "9cf6b47b3771c49ac75ad09a6162f53ad4b8088b76ac60e8ec1455b31a189fe1"
|
|
3797
4169
|
dependencies = [
|
|
3798
4170
|
"bytes",
|
|
3799
4171
|
"futures-core",
|
|
3800
4172
|
"futures-sink",
|
|
3801
4173
|
"pin-project-lite",
|
|
3802
4174
|
"tokio",
|
|
3803
|
-
"tracing",
|
|
3804
4175
|
]
|
|
3805
4176
|
|
|
3806
4177
|
[[package]]
|
|
@@ -3814,36 +4185,72 @@ dependencies = [
|
|
|
3814
4185
|
|
|
3815
4186
|
[[package]]
|
|
3816
4187
|
name = "toml"
|
|
3817
|
-
version = "0.7.
|
|
4188
|
+
version = "0.7.8"
|
|
3818
4189
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3819
|
-
checksum = "
|
|
4190
|
+
checksum = "dd79e69d3b627db300ff956027cc6c3798cef26d22526befdfcd12feeb6d2257"
|
|
3820
4191
|
dependencies = [
|
|
3821
4192
|
"serde",
|
|
3822
4193
|
"serde_spanned",
|
|
3823
4194
|
"toml_datetime",
|
|
3824
|
-
"toml_edit",
|
|
4195
|
+
"toml_edit 0.19.15",
|
|
4196
|
+
]
|
|
4197
|
+
|
|
4198
|
+
[[package]]
|
|
4199
|
+
name = "toml"
|
|
4200
|
+
version = "0.8.12"
|
|
4201
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4202
|
+
checksum = "e9dd1545e8208b4a5af1aa9bbd0b4cf7e9ea08fabc5d0a5c67fcaafa17433aa3"
|
|
4203
|
+
dependencies = [
|
|
4204
|
+
"serde",
|
|
4205
|
+
"serde_spanned",
|
|
4206
|
+
"toml_datetime",
|
|
4207
|
+
"toml_edit 0.22.12",
|
|
3825
4208
|
]
|
|
3826
4209
|
|
|
3827
4210
|
[[package]]
|
|
3828
4211
|
name = "toml_datetime"
|
|
3829
|
-
version = "0.6.
|
|
4212
|
+
version = "0.6.5"
|
|
3830
4213
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3831
|
-
checksum = "
|
|
4214
|
+
checksum = "3550f4e9685620ac18a50ed434eb3aec30db8ba93b0287467bca5826ea25baf1"
|
|
3832
4215
|
dependencies = [
|
|
3833
4216
|
"serde",
|
|
3834
4217
|
]
|
|
3835
4218
|
|
|
3836
4219
|
[[package]]
|
|
3837
4220
|
name = "toml_edit"
|
|
3838
|
-
version = "0.19.
|
|
4221
|
+
version = "0.19.15"
|
|
3839
4222
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3840
|
-
checksum = "
|
|
4223
|
+
checksum = "1b5bb770da30e5cbfde35a2d7b9b8a2c4b8ef89548a7a6aeab5c9a576e3e7421"
|
|
3841
4224
|
dependencies = [
|
|
3842
|
-
"indexmap 2.
|
|
4225
|
+
"indexmap 2.2.6",
|
|
3843
4226
|
"serde",
|
|
3844
4227
|
"serde_spanned",
|
|
3845
4228
|
"toml_datetime",
|
|
3846
|
-
"winnow",
|
|
4229
|
+
"winnow 0.5.40",
|
|
4230
|
+
]
|
|
4231
|
+
|
|
4232
|
+
[[package]]
|
|
4233
|
+
name = "toml_edit"
|
|
4234
|
+
version = "0.21.1"
|
|
4235
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4236
|
+
checksum = "6a8534fd7f78b5405e860340ad6575217ce99f38d4d5c8f2442cb5ecb50090e1"
|
|
4237
|
+
dependencies = [
|
|
4238
|
+
"indexmap 2.2.6",
|
|
4239
|
+
"toml_datetime",
|
|
4240
|
+
"winnow 0.5.40",
|
|
4241
|
+
]
|
|
4242
|
+
|
|
4243
|
+
[[package]]
|
|
4244
|
+
name = "toml_edit"
|
|
4245
|
+
version = "0.22.12"
|
|
4246
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4247
|
+
checksum = "d3328d4f68a705b2a4498da1d580585d39a6510f98318a2cec3018a7ec61ddef"
|
|
4248
|
+
dependencies = [
|
|
4249
|
+
"indexmap 2.2.6",
|
|
4250
|
+
"serde",
|
|
4251
|
+
"serde_spanned",
|
|
4252
|
+
"toml_datetime",
|
|
4253
|
+
"winnow 0.6.8",
|
|
3847
4254
|
]
|
|
3848
4255
|
|
|
3849
4256
|
[[package]]
|
|
@@ -3854,11 +4261,10 @@ checksum = "b6bc1c9ce2b5135ac7f93c72918fc37feb872bdc6a5533a8b85eb4b86bfdae52"
|
|
|
3854
4261
|
|
|
3855
4262
|
[[package]]
|
|
3856
4263
|
name = "tracing"
|
|
3857
|
-
version = "0.1.
|
|
4264
|
+
version = "0.1.40"
|
|
3858
4265
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3859
|
-
checksum = "
|
|
4266
|
+
checksum = "c3523ab5a71916ccf420eebdf5521fcef02141234bbc0b8a49f2fdc4544364ef"
|
|
3860
4267
|
dependencies = [
|
|
3861
|
-
"cfg-if",
|
|
3862
4268
|
"pin-project-lite",
|
|
3863
4269
|
"tracing-attributes",
|
|
3864
4270
|
"tracing-core",
|
|
@@ -3866,20 +4272,20 @@ dependencies = [
|
|
|
3866
4272
|
|
|
3867
4273
|
[[package]]
|
|
3868
4274
|
name = "tracing-attributes"
|
|
3869
|
-
version = "0.1.
|
|
4275
|
+
version = "0.1.27"
|
|
3870
4276
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3871
|
-
checksum = "
|
|
4277
|
+
checksum = "34704c8d6ebcbc939824180af020566b01a7c01f80641264eba0999f6c2b6be7"
|
|
3872
4278
|
dependencies = [
|
|
3873
4279
|
"proc-macro2",
|
|
3874
4280
|
"quote",
|
|
3875
|
-
"syn 2.0.
|
|
4281
|
+
"syn 2.0.61",
|
|
3876
4282
|
]
|
|
3877
4283
|
|
|
3878
4284
|
[[package]]
|
|
3879
4285
|
name = "tracing-core"
|
|
3880
|
-
version = "0.1.
|
|
4286
|
+
version = "0.1.32"
|
|
3881
4287
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3882
|
-
checksum = "
|
|
4288
|
+
checksum = "c06d3da6113f116aaee68e4d601191614c9053067f9ab7f6edbcb161237daa54"
|
|
3883
4289
|
dependencies = [
|
|
3884
4290
|
"once_cell",
|
|
3885
4291
|
"valuable",
|
|
@@ -3887,20 +4293,20 @@ dependencies = [
|
|
|
3887
4293
|
|
|
3888
4294
|
[[package]]
|
|
3889
4295
|
name = "tracing-log"
|
|
3890
|
-
version = "0.
|
|
4296
|
+
version = "0.2.0"
|
|
3891
4297
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3892
|
-
checksum = "
|
|
4298
|
+
checksum = "ee855f1f400bd0e5c02d150ae5de3840039a3f54b025156404e34c23c03f47c3"
|
|
3893
4299
|
dependencies = [
|
|
3894
|
-
"lazy_static",
|
|
3895
4300
|
"log",
|
|
4301
|
+
"once_cell",
|
|
3896
4302
|
"tracing-core",
|
|
3897
4303
|
]
|
|
3898
4304
|
|
|
3899
4305
|
[[package]]
|
|
3900
4306
|
name = "tracing-subscriber"
|
|
3901
|
-
version = "0.3.
|
|
4307
|
+
version = "0.3.18"
|
|
3902
4308
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3903
|
-
checksum = "
|
|
4309
|
+
checksum = "ad0f048c97dbd9faa9b7df56362b8ebcaa52adb06b498c050d2f4e32f90a7a8b"
|
|
3904
4310
|
dependencies = [
|
|
3905
4311
|
"matchers",
|
|
3906
4312
|
"nu-ansi-term",
|
|
@@ -3915,68 +4321,74 @@ dependencies = [
|
|
|
3915
4321
|
]
|
|
3916
4322
|
|
|
3917
4323
|
[[package]]
|
|
3918
|
-
name = "
|
|
3919
|
-
version = "
|
|
4324
|
+
name = "tree_magic_mini"
|
|
4325
|
+
version = "3.1.4"
|
|
3920
4326
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3921
|
-
checksum = "
|
|
4327
|
+
checksum = "77ee137597cdb361b55a4746983e4ac1b35ab6024396a419944ad473bb915265"
|
|
3922
4328
|
dependencies = [
|
|
3923
|
-
"
|
|
4329
|
+
"fnv",
|
|
4330
|
+
"home",
|
|
4331
|
+
"memchr",
|
|
4332
|
+
"nom",
|
|
4333
|
+
"once_cell",
|
|
4334
|
+
"petgraph",
|
|
3924
4335
|
]
|
|
3925
4336
|
|
|
3926
4337
|
[[package]]
|
|
3927
4338
|
name = "try-lock"
|
|
3928
|
-
version = "0.2.
|
|
4339
|
+
version = "0.2.5"
|
|
3929
4340
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3930
|
-
checksum = "
|
|
4341
|
+
checksum = "e421abadd41a4225275504ea4d6566923418b7f05506fbc9c0fe86ba7396114b"
|
|
3931
4342
|
|
|
3932
4343
|
[[package]]
|
|
3933
4344
|
name = "typenum"
|
|
3934
|
-
version = "1.
|
|
4345
|
+
version = "1.17.0"
|
|
3935
4346
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3936
|
-
checksum = "
|
|
4347
|
+
checksum = "42ff0bf0c66b8238c6f3b578df37d0b7848e55df8577b3f74f92a69acceeb825"
|
|
3937
4348
|
|
|
3938
4349
|
[[package]]
|
|
3939
4350
|
name = "uds_windows"
|
|
3940
|
-
version = "1.0
|
|
4351
|
+
version = "1.1.0"
|
|
3941
4352
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3942
|
-
checksum = "
|
|
4353
|
+
checksum = "89daebc3e6fd160ac4aa9fc8b3bf71e1f74fbf92367ae71fb83a037e8bf164b9"
|
|
3943
4354
|
dependencies = [
|
|
4355
|
+
"memoffset 0.9.1",
|
|
3944
4356
|
"tempfile",
|
|
3945
4357
|
"winapi",
|
|
3946
4358
|
]
|
|
3947
4359
|
|
|
3948
4360
|
[[package]]
|
|
3949
4361
|
name = "unicode-bidi"
|
|
3950
|
-
version = "0.3.
|
|
4362
|
+
version = "0.3.15"
|
|
3951
4363
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3952
|
-
checksum = "
|
|
4364
|
+
checksum = "08f95100a766bf4f8f28f90d77e0a5461bbdb219042e7679bebe79004fed8d75"
|
|
3953
4365
|
|
|
3954
4366
|
[[package]]
|
|
3955
4367
|
name = "unicode-ident"
|
|
3956
|
-
version = "1.0.
|
|
4368
|
+
version = "1.0.12"
|
|
3957
4369
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3958
|
-
checksum = "
|
|
4370
|
+
checksum = "3354b9ac3fae1ff6755cb6db53683adb661634f67557942dea4facebec0fee4b"
|
|
3959
4371
|
|
|
3960
4372
|
[[package]]
|
|
3961
4373
|
name = "unicode-normalization"
|
|
3962
|
-
version = "0.1.
|
|
4374
|
+
version = "0.1.23"
|
|
3963
4375
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3964
|
-
checksum = "
|
|
4376
|
+
checksum = "a56d1686db2308d901306f92a263857ef59ea39678a5458e7cb17f01415101f5"
|
|
3965
4377
|
dependencies = [
|
|
3966
4378
|
"tinyvec",
|
|
3967
4379
|
]
|
|
3968
4380
|
|
|
3969
4381
|
[[package]]
|
|
3970
4382
|
name = "unicode-segmentation"
|
|
3971
|
-
version = "1.
|
|
4383
|
+
version = "1.11.0"
|
|
3972
4384
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3973
|
-
checksum = "
|
|
4385
|
+
checksum = "d4c87d22b6e3f4a18d4d40ef354e97c90fcb14dd91d7dc0aa9d8a1172ebf7202"
|
|
3974
4386
|
|
|
3975
4387
|
[[package]]
|
|
3976
4388
|
name = "url"
|
|
3977
|
-
version = "2.
|
|
4389
|
+
version = "2.5.0"
|
|
3978
4390
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3979
|
-
checksum = "
|
|
4391
|
+
checksum = "31e6302e3bb753d46e83516cae55ae196fc0c309407cf11ab35cc51a4c2a4633"
|
|
3980
4392
|
dependencies = [
|
|
3981
4393
|
"form_urlencoded",
|
|
3982
4394
|
"idna",
|
|
@@ -3998,11 +4410,11 @@ checksum = "bc5cf98d8186244414c848017f0e2676b3fcb46807f6668a97dfe67359a3c4b7"
|
|
|
3998
4410
|
|
|
3999
4411
|
[[package]]
|
|
4000
4412
|
name = "uuid"
|
|
4001
|
-
version = "1.
|
|
4413
|
+
version = "1.8.0"
|
|
4002
4414
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4003
|
-
checksum = "
|
|
4415
|
+
checksum = "a183cf7feeba97b4dd1c0d46788634f6221d87fa961b305bed08c851829efcc0"
|
|
4004
4416
|
dependencies = [
|
|
4005
|
-
"getrandom 0.2.
|
|
4417
|
+
"getrandom 0.2.15",
|
|
4006
4418
|
]
|
|
4007
4419
|
|
|
4008
4420
|
[[package]]
|
|
@@ -4025,9 +4437,9 @@ checksum = "1c18c859eead79d8b95d09e4678566e8d70105c4e7b251f707a03df32442661b"
|
|
|
4025
4437
|
|
|
4026
4438
|
[[package]]
|
|
4027
4439
|
name = "version-compare"
|
|
4028
|
-
version = "0.
|
|
4440
|
+
version = "0.2.0"
|
|
4029
4441
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4030
|
-
checksum = "
|
|
4442
|
+
checksum = "852e951cb7832cb45cb1169900d19760cfa39b82bc0ea9c0e5a14ae88411c98b"
|
|
4031
4443
|
|
|
4032
4444
|
[[package]]
|
|
4033
4445
|
name = "version_check"
|
|
@@ -4055,17 +4467,11 @@ dependencies = [
|
|
|
4055
4467
|
"libc",
|
|
4056
4468
|
]
|
|
4057
4469
|
|
|
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
4470
|
[[package]]
|
|
4065
4471
|
name = "walkdir"
|
|
4066
|
-
version = "2.
|
|
4472
|
+
version = "2.5.0"
|
|
4067
4473
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4068
|
-
checksum = "
|
|
4474
|
+
checksum = "29790946404f91d9c5d06f9874efddea1dc06c5efe94541a7d6863108e3a5e4b"
|
|
4069
4475
|
dependencies = [
|
|
4070
4476
|
"same-file",
|
|
4071
4477
|
"winapi-util",
|
|
@@ -4094,9 +4500,9 @@ checksum = "9c8d87e72b64a3b4db28d11ce29237c246188f4f51057d65a7eab63b7987e423"
|
|
|
4094
4500
|
|
|
4095
4501
|
[[package]]
|
|
4096
4502
|
name = "wasm-bindgen"
|
|
4097
|
-
version = "0.2.
|
|
4503
|
+
version = "0.2.92"
|
|
4098
4504
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4099
|
-
checksum = "
|
|
4505
|
+
checksum = "4be2531df63900aeb2bca0daaaddec08491ee64ceecbee5076636a3b026795a8"
|
|
4100
4506
|
dependencies = [
|
|
4101
4507
|
"cfg-if",
|
|
4102
4508
|
"wasm-bindgen-macro",
|
|
@@ -4104,24 +4510,24 @@ dependencies = [
|
|
|
4104
4510
|
|
|
4105
4511
|
[[package]]
|
|
4106
4512
|
name = "wasm-bindgen-backend"
|
|
4107
|
-
version = "0.2.
|
|
4513
|
+
version = "0.2.92"
|
|
4108
4514
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4109
|
-
checksum = "
|
|
4515
|
+
checksum = "614d787b966d3989fa7bb98a654e369c762374fd3213d212cfc0251257e747da"
|
|
4110
4516
|
dependencies = [
|
|
4111
4517
|
"bumpalo",
|
|
4112
4518
|
"log",
|
|
4113
4519
|
"once_cell",
|
|
4114
4520
|
"proc-macro2",
|
|
4115
4521
|
"quote",
|
|
4116
|
-
"syn 2.0.
|
|
4522
|
+
"syn 2.0.61",
|
|
4117
4523
|
"wasm-bindgen-shared",
|
|
4118
4524
|
]
|
|
4119
4525
|
|
|
4120
4526
|
[[package]]
|
|
4121
4527
|
name = "wasm-bindgen-futures"
|
|
4122
|
-
version = "0.4.
|
|
4528
|
+
version = "0.4.42"
|
|
4123
4529
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4124
|
-
checksum = "
|
|
4530
|
+
checksum = "76bc14366121efc8dbb487ab05bcc9d346b3b5ec0eaa76e46594cabbe51762c0"
|
|
4125
4531
|
dependencies = [
|
|
4126
4532
|
"cfg-if",
|
|
4127
4533
|
"js-sys",
|
|
@@ -4131,9 +4537,9 @@ dependencies = [
|
|
|
4131
4537
|
|
|
4132
4538
|
[[package]]
|
|
4133
4539
|
name = "wasm-bindgen-macro"
|
|
4134
|
-
version = "0.2.
|
|
4540
|
+
version = "0.2.92"
|
|
4135
4541
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4136
|
-
checksum = "
|
|
4542
|
+
checksum = "a1f8823de937b71b9460c0c34e25f3da88250760bec0ebac694b49997550d726"
|
|
4137
4543
|
dependencies = [
|
|
4138
4544
|
"quote",
|
|
4139
4545
|
"wasm-bindgen-macro-support",
|
|
@@ -4141,28 +4547,28 @@ dependencies = [
|
|
|
4141
4547
|
|
|
4142
4548
|
[[package]]
|
|
4143
4549
|
name = "wasm-bindgen-macro-support"
|
|
4144
|
-
version = "0.2.
|
|
4550
|
+
version = "0.2.92"
|
|
4145
4551
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4146
|
-
checksum = "
|
|
4552
|
+
checksum = "e94f17b526d0a461a191c78ea52bbce64071ed5c04c9ffe424dcb38f74171bb7"
|
|
4147
4553
|
dependencies = [
|
|
4148
4554
|
"proc-macro2",
|
|
4149
4555
|
"quote",
|
|
4150
|
-
"syn 2.0.
|
|
4556
|
+
"syn 2.0.61",
|
|
4151
4557
|
"wasm-bindgen-backend",
|
|
4152
4558
|
"wasm-bindgen-shared",
|
|
4153
4559
|
]
|
|
4154
4560
|
|
|
4155
4561
|
[[package]]
|
|
4156
4562
|
name = "wasm-bindgen-shared"
|
|
4157
|
-
version = "0.2.
|
|
4563
|
+
version = "0.2.92"
|
|
4158
4564
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4159
|
-
checksum = "
|
|
4565
|
+
checksum = "af190c94f2773fdb3729c55b007a722abb5384da03bc0986df4c289bf5567e96"
|
|
4160
4566
|
|
|
4161
4567
|
[[package]]
|
|
4162
4568
|
name = "wasm-streams"
|
|
4163
|
-
version = "0.
|
|
4569
|
+
version = "0.4.0"
|
|
4164
4570
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4165
|
-
checksum = "
|
|
4571
|
+
checksum = "b65dc4c90b63b118468cf747d8bf3566c1913ef60be765b5730ead9e0a3ba129"
|
|
4166
4572
|
dependencies = [
|
|
4167
4573
|
"futures-util",
|
|
4168
4574
|
"js-sys",
|
|
@@ -4171,11 +4577,84 @@ dependencies = [
|
|
|
4171
4577
|
"web-sys",
|
|
4172
4578
|
]
|
|
4173
4579
|
|
|
4580
|
+
[[package]]
|
|
4581
|
+
name = "wayland-backend"
|
|
4582
|
+
version = "0.3.3"
|
|
4583
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4584
|
+
checksum = "9d50fa61ce90d76474c87f5fc002828d81b32677340112b4ef08079a9d459a40"
|
|
4585
|
+
dependencies = [
|
|
4586
|
+
"cc",
|
|
4587
|
+
"downcast-rs",
|
|
4588
|
+
"rustix",
|
|
4589
|
+
"scoped-tls",
|
|
4590
|
+
"smallvec",
|
|
4591
|
+
"wayland-sys",
|
|
4592
|
+
]
|
|
4593
|
+
|
|
4594
|
+
[[package]]
|
|
4595
|
+
name = "wayland-client"
|
|
4596
|
+
version = "0.31.2"
|
|
4597
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4598
|
+
checksum = "82fb96ee935c2cea6668ccb470fb7771f6215d1691746c2d896b447a00ad3f1f"
|
|
4599
|
+
dependencies = [
|
|
4600
|
+
"bitflags 2.5.0",
|
|
4601
|
+
"rustix",
|
|
4602
|
+
"wayland-backend",
|
|
4603
|
+
"wayland-scanner",
|
|
4604
|
+
]
|
|
4605
|
+
|
|
4606
|
+
[[package]]
|
|
4607
|
+
name = "wayland-protocols"
|
|
4608
|
+
version = "0.31.2"
|
|
4609
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4610
|
+
checksum = "8f81f365b8b4a97f422ac0e8737c438024b5951734506b0e1d775c73030561f4"
|
|
4611
|
+
dependencies = [
|
|
4612
|
+
"bitflags 2.5.0",
|
|
4613
|
+
"wayland-backend",
|
|
4614
|
+
"wayland-client",
|
|
4615
|
+
"wayland-scanner",
|
|
4616
|
+
]
|
|
4617
|
+
|
|
4618
|
+
[[package]]
|
|
4619
|
+
name = "wayland-protocols-wlr"
|
|
4620
|
+
version = "0.2.0"
|
|
4621
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4622
|
+
checksum = "ad1f61b76b6c2d8742e10f9ba5c3737f6530b4c243132c2a2ccc8aa96fe25cd6"
|
|
4623
|
+
dependencies = [
|
|
4624
|
+
"bitflags 2.5.0",
|
|
4625
|
+
"wayland-backend",
|
|
4626
|
+
"wayland-client",
|
|
4627
|
+
"wayland-protocols",
|
|
4628
|
+
"wayland-scanner",
|
|
4629
|
+
]
|
|
4630
|
+
|
|
4631
|
+
[[package]]
|
|
4632
|
+
name = "wayland-scanner"
|
|
4633
|
+
version = "0.31.1"
|
|
4634
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4635
|
+
checksum = "63b3a62929287001986fb58c789dce9b67604a397c15c611ad9f747300b6c283"
|
|
4636
|
+
dependencies = [
|
|
4637
|
+
"proc-macro2",
|
|
4638
|
+
"quick-xml",
|
|
4639
|
+
"quote",
|
|
4640
|
+
]
|
|
4641
|
+
|
|
4642
|
+
[[package]]
|
|
4643
|
+
name = "wayland-sys"
|
|
4644
|
+
version = "0.31.1"
|
|
4645
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4646
|
+
checksum = "15a0c8eaff5216d07f226cb7a549159267f3467b289d9a2e52fd3ef5aae2b7af"
|
|
4647
|
+
dependencies = [
|
|
4648
|
+
"dlib",
|
|
4649
|
+
"log",
|
|
4650
|
+
"pkg-config",
|
|
4651
|
+
]
|
|
4652
|
+
|
|
4174
4653
|
[[package]]
|
|
4175
4654
|
name = "web-sys"
|
|
4176
|
-
version = "0.3.
|
|
4655
|
+
version = "0.3.69"
|
|
4177
4656
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4178
|
-
checksum = "
|
|
4657
|
+
checksum = "77afa9a11836342370f4817622a2f0f418b134426d91a82dfb48f532d2ec13ef"
|
|
4179
4658
|
dependencies = [
|
|
4180
4659
|
"js-sys",
|
|
4181
4660
|
"wasm-bindgen",
|
|
@@ -4225,7 +4704,7 @@ dependencies = [
|
|
|
4225
4704
|
"pango-sys",
|
|
4226
4705
|
"pkg-config",
|
|
4227
4706
|
"soup2-sys",
|
|
4228
|
-
"system-deps 6.
|
|
4707
|
+
"system-deps 6.2.2",
|
|
4229
4708
|
]
|
|
4230
4709
|
|
|
4231
4710
|
[[package]]
|
|
@@ -4237,7 +4716,7 @@ dependencies = [
|
|
|
4237
4716
|
"webview2-com-macros",
|
|
4238
4717
|
"webview2-com-sys",
|
|
4239
4718
|
"windows 0.39.0",
|
|
4240
|
-
"windows-implement",
|
|
4719
|
+
"windows-implement 0.39.0",
|
|
4241
4720
|
]
|
|
4242
4721
|
|
|
4243
4722
|
[[package]]
|
|
@@ -4266,6 +4745,12 @@ dependencies = [
|
|
|
4266
4745
|
"windows-metadata",
|
|
4267
4746
|
]
|
|
4268
4747
|
|
|
4748
|
+
[[package]]
|
|
4749
|
+
name = "weezl"
|
|
4750
|
+
version = "0.1.8"
|
|
4751
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4752
|
+
checksum = "53a85b86a771b1c87058196170769dd264f66c0782acf1ae6cc51bfd64b39082"
|
|
4753
|
+
|
|
4269
4754
|
[[package]]
|
|
4270
4755
|
name = "winapi"
|
|
4271
4756
|
version = "0.3.9"
|
|
@@ -4284,11 +4769,11 @@ checksum = "ac3b87c63620426dd9b991e5ce0329eff545bccbbb34f3be09ff6fb6ab51b7b6"
|
|
|
4284
4769
|
|
|
4285
4770
|
[[package]]
|
|
4286
4771
|
name = "winapi-util"
|
|
4287
|
-
version = "0.1.
|
|
4772
|
+
version = "0.1.8"
|
|
4288
4773
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4289
|
-
checksum = "
|
|
4774
|
+
checksum = "4d4cc384e1e73b93bafa6fb4f1df8c41695c8a91cf9c4c64358067d15a7b6c6b"
|
|
4290
4775
|
dependencies = [
|
|
4291
|
-
"
|
|
4776
|
+
"windows-sys 0.52.0",
|
|
4292
4777
|
]
|
|
4293
4778
|
|
|
4294
4779
|
[[package]]
|
|
@@ -4316,7 +4801,7 @@ version = "0.39.0"
|
|
|
4316
4801
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4317
4802
|
checksum = "f1c4bd0a50ac6020f65184721f758dba47bb9fbc2133df715ec74a237b26794a"
|
|
4318
4803
|
dependencies = [
|
|
4319
|
-
"windows-implement",
|
|
4804
|
+
"windows-implement 0.39.0",
|
|
4320
4805
|
"windows_aarch64_msvc 0.39.0",
|
|
4321
4806
|
"windows_i686_gnu 0.39.0",
|
|
4322
4807
|
"windows_i686_msvc 0.39.0",
|
|
@@ -4330,7 +4815,17 @@ version = "0.48.0"
|
|
|
4330
4815
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4331
4816
|
checksum = "e686886bc078bc1b0b600cac0147aadb815089b6e4da64016cbd754b6342700f"
|
|
4332
4817
|
dependencies = [
|
|
4333
|
-
"windows-targets 0.48.
|
|
4818
|
+
"windows-targets 0.48.5",
|
|
4819
|
+
]
|
|
4820
|
+
|
|
4821
|
+
[[package]]
|
|
4822
|
+
name = "windows"
|
|
4823
|
+
version = "0.56.0"
|
|
4824
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4825
|
+
checksum = "1de69df01bdf1ead2f4ac895dc77c9351aefff65b2f3db429a343f9cbf05e132"
|
|
4826
|
+
dependencies = [
|
|
4827
|
+
"windows-core 0.56.0",
|
|
4828
|
+
"windows-targets 0.52.5",
|
|
4334
4829
|
]
|
|
4335
4830
|
|
|
4336
4831
|
[[package]]
|
|
@@ -4343,6 +4838,27 @@ dependencies = [
|
|
|
4343
4838
|
"windows-tokens",
|
|
4344
4839
|
]
|
|
4345
4840
|
|
|
4841
|
+
[[package]]
|
|
4842
|
+
name = "windows-core"
|
|
4843
|
+
version = "0.52.0"
|
|
4844
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4845
|
+
checksum = "33ab640c8d7e35bf8ba19b884ba838ceb4fba93a4e8c65a9059d08afcfc683d9"
|
|
4846
|
+
dependencies = [
|
|
4847
|
+
"windows-targets 0.52.5",
|
|
4848
|
+
]
|
|
4849
|
+
|
|
4850
|
+
[[package]]
|
|
4851
|
+
name = "windows-core"
|
|
4852
|
+
version = "0.56.0"
|
|
4853
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4854
|
+
checksum = "4698e52ed2d08f8658ab0c39512a7c00ee5fe2688c65f8c0a4f06750d729f2a6"
|
|
4855
|
+
dependencies = [
|
|
4856
|
+
"windows-implement 0.56.0",
|
|
4857
|
+
"windows-interface",
|
|
4858
|
+
"windows-result",
|
|
4859
|
+
"windows-targets 0.52.5",
|
|
4860
|
+
]
|
|
4861
|
+
|
|
4346
4862
|
[[package]]
|
|
4347
4863
|
name = "windows-implement"
|
|
4348
4864
|
version = "0.39.0"
|
|
@@ -4353,12 +4869,43 @@ dependencies = [
|
|
|
4353
4869
|
"windows-tokens",
|
|
4354
4870
|
]
|
|
4355
4871
|
|
|
4872
|
+
[[package]]
|
|
4873
|
+
name = "windows-implement"
|
|
4874
|
+
version = "0.56.0"
|
|
4875
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4876
|
+
checksum = "f6fc35f58ecd95a9b71c4f2329b911016e6bec66b3f2e6a4aad86bd2e99e2f9b"
|
|
4877
|
+
dependencies = [
|
|
4878
|
+
"proc-macro2",
|
|
4879
|
+
"quote",
|
|
4880
|
+
"syn 2.0.61",
|
|
4881
|
+
]
|
|
4882
|
+
|
|
4883
|
+
[[package]]
|
|
4884
|
+
name = "windows-interface"
|
|
4885
|
+
version = "0.56.0"
|
|
4886
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4887
|
+
checksum = "08990546bf4edef8f431fa6326e032865f27138718c587dc21bc0265bbcb57cc"
|
|
4888
|
+
dependencies = [
|
|
4889
|
+
"proc-macro2",
|
|
4890
|
+
"quote",
|
|
4891
|
+
"syn 2.0.61",
|
|
4892
|
+
]
|
|
4893
|
+
|
|
4356
4894
|
[[package]]
|
|
4357
4895
|
name = "windows-metadata"
|
|
4358
4896
|
version = "0.39.0"
|
|
4359
4897
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4360
4898
|
checksum = "9ee5e275231f07c6e240d14f34e1b635bf1faa1c76c57cfd59a5cdb9848e4278"
|
|
4361
4899
|
|
|
4900
|
+
[[package]]
|
|
4901
|
+
name = "windows-result"
|
|
4902
|
+
version = "0.1.1"
|
|
4903
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4904
|
+
checksum = "749f0da9cc72d82e600d8d2e44cadd0b9eedb9038f71a1c58556ac1c5791813b"
|
|
4905
|
+
dependencies = [
|
|
4906
|
+
"windows-targets 0.52.5",
|
|
4907
|
+
]
|
|
4908
|
+
|
|
4362
4909
|
[[package]]
|
|
4363
4910
|
name = "windows-sys"
|
|
4364
4911
|
version = "0.42.0"
|
|
@@ -4389,7 +4936,16 @@ version = "0.48.0"
|
|
|
4389
4936
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4390
4937
|
checksum = "677d2418bec65e3338edb076e806bc1ec15693c5d0104683f2efe857f61056a9"
|
|
4391
4938
|
dependencies = [
|
|
4392
|
-
"windows-targets 0.48.
|
|
4939
|
+
"windows-targets 0.48.5",
|
|
4940
|
+
]
|
|
4941
|
+
|
|
4942
|
+
[[package]]
|
|
4943
|
+
name = "windows-sys"
|
|
4944
|
+
version = "0.52.0"
|
|
4945
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4946
|
+
checksum = "282be5f36a8ce781fad8c8ae18fa3f9beff57ec1b52cb3de0789201425d9a33d"
|
|
4947
|
+
dependencies = [
|
|
4948
|
+
"windows-targets 0.52.5",
|
|
4393
4949
|
]
|
|
4394
4950
|
|
|
4395
4951
|
[[package]]
|
|
@@ -4409,17 +4965,33 @@ dependencies = [
|
|
|
4409
4965
|
|
|
4410
4966
|
[[package]]
|
|
4411
4967
|
name = "windows-targets"
|
|
4412
|
-
version = "0.48.
|
|
4968
|
+
version = "0.48.5"
|
|
4969
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4970
|
+
checksum = "9a2fa6e2155d7247be68c096456083145c183cbbbc2764150dda45a87197940c"
|
|
4971
|
+
dependencies = [
|
|
4972
|
+
"windows_aarch64_gnullvm 0.48.5",
|
|
4973
|
+
"windows_aarch64_msvc 0.48.5",
|
|
4974
|
+
"windows_i686_gnu 0.48.5",
|
|
4975
|
+
"windows_i686_msvc 0.48.5",
|
|
4976
|
+
"windows_x86_64_gnu 0.48.5",
|
|
4977
|
+
"windows_x86_64_gnullvm 0.48.5",
|
|
4978
|
+
"windows_x86_64_msvc 0.48.5",
|
|
4979
|
+
]
|
|
4980
|
+
|
|
4981
|
+
[[package]]
|
|
4982
|
+
name = "windows-targets"
|
|
4983
|
+
version = "0.52.5"
|
|
4413
4984
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4414
|
-
checksum = "
|
|
4985
|
+
checksum = "6f0713a46559409d202e70e28227288446bf7841d3211583a4b53e3f6d96e7eb"
|
|
4415
4986
|
dependencies = [
|
|
4416
|
-
"windows_aarch64_gnullvm 0.
|
|
4417
|
-
"windows_aarch64_msvc 0.
|
|
4418
|
-
"windows_i686_gnu 0.
|
|
4419
|
-
"
|
|
4420
|
-
"
|
|
4421
|
-
"
|
|
4422
|
-
"
|
|
4987
|
+
"windows_aarch64_gnullvm 0.52.5",
|
|
4988
|
+
"windows_aarch64_msvc 0.52.5",
|
|
4989
|
+
"windows_i686_gnu 0.52.5",
|
|
4990
|
+
"windows_i686_gnullvm",
|
|
4991
|
+
"windows_i686_msvc 0.52.5",
|
|
4992
|
+
"windows_x86_64_gnu 0.52.5",
|
|
4993
|
+
"windows_x86_64_gnullvm 0.52.5",
|
|
4994
|
+
"windows_x86_64_msvc 0.52.5",
|
|
4423
4995
|
]
|
|
4424
4996
|
|
|
4425
4997
|
[[package]]
|
|
@@ -4428,6 +5000,15 @@ version = "0.39.0"
|
|
|
4428
5000
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4429
5001
|
checksum = "f838de2fe15fe6bac988e74b798f26499a8b21a9d97edec321e79b28d1d7f597"
|
|
4430
5002
|
|
|
5003
|
+
[[package]]
|
|
5004
|
+
name = "windows-version"
|
|
5005
|
+
version = "0.1.1"
|
|
5006
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
5007
|
+
checksum = "6998aa457c9ba8ff2fb9f13e9d2a930dabcea28f1d0ab94d687d8b3654844515"
|
|
5008
|
+
dependencies = [
|
|
5009
|
+
"windows-targets 0.52.5",
|
|
5010
|
+
]
|
|
5011
|
+
|
|
4431
5012
|
[[package]]
|
|
4432
5013
|
name = "windows_aarch64_gnullvm"
|
|
4433
5014
|
version = "0.42.2"
|
|
@@ -4436,9 +5017,15 @@ checksum = "597a5118570b68bc08d8d59125332c54f1ba9d9adeedeef5b99b02ba2b0698f8"
|
|
|
4436
5017
|
|
|
4437
5018
|
[[package]]
|
|
4438
5019
|
name = "windows_aarch64_gnullvm"
|
|
4439
|
-
version = "0.48.
|
|
5020
|
+
version = "0.48.5"
|
|
4440
5021
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4441
|
-
checksum = "
|
|
5022
|
+
checksum = "2b38e32f0abccf9987a4e3079dfb67dcd799fb61361e53e2882c3cbaf0d905d8"
|
|
5023
|
+
|
|
5024
|
+
[[package]]
|
|
5025
|
+
name = "windows_aarch64_gnullvm"
|
|
5026
|
+
version = "0.52.5"
|
|
5027
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
5028
|
+
checksum = "7088eed71e8b8dda258ecc8bac5fb1153c5cffaf2578fc8ff5d61e23578d3263"
|
|
4442
5029
|
|
|
4443
5030
|
[[package]]
|
|
4444
5031
|
name = "windows_aarch64_msvc"
|
|
@@ -4460,9 +5047,15 @@ checksum = "e08e8864a60f06ef0d0ff4ba04124db8b0fb3be5776a5cd47641e942e58c4d43"
|
|
|
4460
5047
|
|
|
4461
5048
|
[[package]]
|
|
4462
5049
|
name = "windows_aarch64_msvc"
|
|
4463
|
-
version = "0.48.
|
|
5050
|
+
version = "0.48.5"
|
|
4464
5051
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4465
|
-
checksum = "
|
|
5052
|
+
checksum = "dc35310971f3b2dbbf3f0690a219f40e2d9afcf64f9ab7cc1be722937c26b4bc"
|
|
5053
|
+
|
|
5054
|
+
[[package]]
|
|
5055
|
+
name = "windows_aarch64_msvc"
|
|
5056
|
+
version = "0.52.5"
|
|
5057
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
5058
|
+
checksum = "9985fd1504e250c615ca5f281c3f7a6da76213ebd5ccc9561496568a2752afb6"
|
|
4466
5059
|
|
|
4467
5060
|
[[package]]
|
|
4468
5061
|
name = "windows_i686_gnu"
|
|
@@ -4484,9 +5077,21 @@ checksum = "c61d927d8da41da96a81f029489353e68739737d3beca43145c8afec9a31a84f"
|
|
|
4484
5077
|
|
|
4485
5078
|
[[package]]
|
|
4486
5079
|
name = "windows_i686_gnu"
|
|
4487
|
-
version = "0.48.
|
|
5080
|
+
version = "0.48.5"
|
|
5081
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
5082
|
+
checksum = "a75915e7def60c94dcef72200b9a8e58e5091744960da64ec734a6c6e9b3743e"
|
|
5083
|
+
|
|
5084
|
+
[[package]]
|
|
5085
|
+
name = "windows_i686_gnu"
|
|
5086
|
+
version = "0.52.5"
|
|
5087
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
5088
|
+
checksum = "88ba073cf16d5372720ec942a8ccbf61626074c6d4dd2e745299726ce8b89670"
|
|
5089
|
+
|
|
5090
|
+
[[package]]
|
|
5091
|
+
name = "windows_i686_gnullvm"
|
|
5092
|
+
version = "0.52.5"
|
|
4488
5093
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4489
|
-
checksum = "
|
|
5094
|
+
checksum = "87f4261229030a858f36b459e748ae97545d6f1ec60e5e0d6a3d32e0dc232ee9"
|
|
4490
5095
|
|
|
4491
5096
|
[[package]]
|
|
4492
5097
|
name = "windows_i686_msvc"
|
|
@@ -4508,9 +5113,15 @@ checksum = "44d840b6ec649f480a41c8d80f9c65108b92d89345dd94027bfe06ac444d1060"
|
|
|
4508
5113
|
|
|
4509
5114
|
[[package]]
|
|
4510
5115
|
name = "windows_i686_msvc"
|
|
4511
|
-
version = "0.48.
|
|
5116
|
+
version = "0.48.5"
|
|
5117
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
5118
|
+
checksum = "8f55c233f70c4b27f66c523580f78f1004e8b5a8b659e05a4eb49d4166cca406"
|
|
5119
|
+
|
|
5120
|
+
[[package]]
|
|
5121
|
+
name = "windows_i686_msvc"
|
|
5122
|
+
version = "0.52.5"
|
|
4512
5123
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4513
|
-
checksum = "
|
|
5124
|
+
checksum = "db3c2bf3d13d5b658be73463284eaf12830ac9a26a90c717b7f771dfe97487bf"
|
|
4514
5125
|
|
|
4515
5126
|
[[package]]
|
|
4516
5127
|
name = "windows_x86_64_gnu"
|
|
@@ -4532,9 +5143,15 @@ checksum = "8de912b8b8feb55c064867cf047dda097f92d51efad5b491dfb98f6bbb70cb36"
|
|
|
4532
5143
|
|
|
4533
5144
|
[[package]]
|
|
4534
5145
|
name = "windows_x86_64_gnu"
|
|
4535
|
-
version = "0.48.
|
|
5146
|
+
version = "0.48.5"
|
|
5147
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
5148
|
+
checksum = "53d40abd2583d23e4718fddf1ebec84dbff8381c07cae67ff7768bbf19c6718e"
|
|
5149
|
+
|
|
5150
|
+
[[package]]
|
|
5151
|
+
name = "windows_x86_64_gnu"
|
|
5152
|
+
version = "0.52.5"
|
|
4536
5153
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4537
|
-
checksum = "
|
|
5154
|
+
checksum = "4e4246f76bdeff09eb48875a0fd3e2af6aada79d409d33011886d3e1581517d9"
|
|
4538
5155
|
|
|
4539
5156
|
[[package]]
|
|
4540
5157
|
name = "windows_x86_64_gnullvm"
|
|
@@ -4544,9 +5161,15 @@ checksum = "26d41b46a36d453748aedef1486d5c7a85db22e56aff34643984ea85514e94a3"
|
|
|
4544
5161
|
|
|
4545
5162
|
[[package]]
|
|
4546
5163
|
name = "windows_x86_64_gnullvm"
|
|
4547
|
-
version = "0.48.
|
|
5164
|
+
version = "0.48.5"
|
|
5165
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
5166
|
+
checksum = "0b7b52767868a23d5bab768e390dc5f5c55825b6d30b86c844ff2dc7414044cc"
|
|
5167
|
+
|
|
5168
|
+
[[package]]
|
|
5169
|
+
name = "windows_x86_64_gnullvm"
|
|
5170
|
+
version = "0.52.5"
|
|
4548
5171
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4549
|
-
checksum = "
|
|
5172
|
+
checksum = "852298e482cd67c356ddd9570386e2862b5673c85bd5f88df9ab6802b334c596"
|
|
4550
5173
|
|
|
4551
5174
|
[[package]]
|
|
4552
5175
|
name = "windows_x86_64_msvc"
|
|
@@ -4568,57 +5191,93 @@ checksum = "9aec5da331524158c6d1a4ac0ab1541149c0b9505fde06423b02f5ef0106b9f0"
|
|
|
4568
5191
|
|
|
4569
5192
|
[[package]]
|
|
4570
5193
|
name = "windows_x86_64_msvc"
|
|
4571
|
-
version = "0.48.
|
|
5194
|
+
version = "0.48.5"
|
|
5195
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
5196
|
+
checksum = "ed94fce61571a4006852b7389a063ab983c02eb1bb37b47f8272ce92d06d9538"
|
|
5197
|
+
|
|
5198
|
+
[[package]]
|
|
5199
|
+
name = "windows_x86_64_msvc"
|
|
5200
|
+
version = "0.52.5"
|
|
4572
5201
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4573
|
-
checksum = "
|
|
5202
|
+
checksum = "bec47e5bfd1bff0eeaf6d8b485cc1074891a197ab4225d504cb7a1ab88b02bf0"
|
|
4574
5203
|
|
|
4575
5204
|
[[package]]
|
|
4576
5205
|
name = "winnow"
|
|
4577
|
-
version = "0.5.
|
|
5206
|
+
version = "0.5.40"
|
|
4578
5207
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4579
|
-
checksum = "
|
|
5208
|
+
checksum = "f593a95398737aeed53e489c785df13f3618e41dbcd6718c6addbf1395aa6876"
|
|
5209
|
+
dependencies = [
|
|
5210
|
+
"memchr",
|
|
5211
|
+
]
|
|
5212
|
+
|
|
5213
|
+
[[package]]
|
|
5214
|
+
name = "winnow"
|
|
5215
|
+
version = "0.6.8"
|
|
5216
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
5217
|
+
checksum = "c3c52e9c97a68071b23e836c9380edae937f17b9c4667bd021973efc689f618d"
|
|
4580
5218
|
dependencies = [
|
|
4581
5219
|
"memchr",
|
|
4582
5220
|
]
|
|
4583
5221
|
|
|
4584
5222
|
[[package]]
|
|
4585
5223
|
name = "winreg"
|
|
4586
|
-
version = "0.
|
|
5224
|
+
version = "0.50.0"
|
|
4587
5225
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4588
|
-
checksum = "
|
|
5226
|
+
checksum = "524e57b2c537c0f9b1e69f1965311ec12182b4122e45035b1508cd24d2adadb1"
|
|
4589
5227
|
dependencies = [
|
|
4590
|
-
"
|
|
5228
|
+
"cfg-if",
|
|
5229
|
+
"windows-sys 0.48.0",
|
|
4591
5230
|
]
|
|
4592
5231
|
|
|
4593
5232
|
[[package]]
|
|
4594
5233
|
name = "winreg"
|
|
4595
|
-
version = "0.
|
|
5234
|
+
version = "0.52.0"
|
|
4596
5235
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4597
|
-
checksum = "
|
|
5236
|
+
checksum = "a277a57398d4bfa075df44f501a17cfdf8542d224f0d36095a2adc7aee4ef0a5"
|
|
4598
5237
|
dependencies = [
|
|
4599
5238
|
"cfg-if",
|
|
4600
|
-
"
|
|
5239
|
+
"windows-sys 0.48.0",
|
|
5240
|
+
]
|
|
5241
|
+
|
|
5242
|
+
[[package]]
|
|
5243
|
+
name = "wl-clipboard-rs"
|
|
5244
|
+
version = "0.8.1"
|
|
5245
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
5246
|
+
checksum = "12b41773911497b18ca8553c3daaf8ec9fe9819caf93d451d3055f69de028adb"
|
|
5247
|
+
dependencies = [
|
|
5248
|
+
"derive-new",
|
|
5249
|
+
"libc",
|
|
5250
|
+
"log",
|
|
5251
|
+
"nix 0.28.0",
|
|
5252
|
+
"os_pipe",
|
|
5253
|
+
"tempfile",
|
|
5254
|
+
"thiserror",
|
|
5255
|
+
"tree_magic_mini",
|
|
5256
|
+
"wayland-backend",
|
|
5257
|
+
"wayland-client",
|
|
5258
|
+
"wayland-protocols",
|
|
5259
|
+
"wayland-protocols-wlr",
|
|
4601
5260
|
]
|
|
4602
5261
|
|
|
4603
5262
|
[[package]]
|
|
4604
5263
|
name = "wry"
|
|
4605
|
-
version = "0.24.
|
|
5264
|
+
version = "0.24.8"
|
|
4606
5265
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4607
|
-
checksum = "
|
|
5266
|
+
checksum = "a04e72739ee84a218e3dbf8625888eadc874285637003ed21ab96a1bbbb538ec"
|
|
4608
5267
|
dependencies = [
|
|
4609
5268
|
"base64 0.13.1",
|
|
4610
5269
|
"block",
|
|
4611
5270
|
"cocoa",
|
|
4612
|
-
"core-graphics",
|
|
5271
|
+
"core-graphics 0.22.3",
|
|
4613
5272
|
"crossbeam-channel",
|
|
4614
5273
|
"dunce",
|
|
4615
5274
|
"gdk",
|
|
4616
5275
|
"gio",
|
|
4617
5276
|
"glib",
|
|
4618
5277
|
"gtk",
|
|
4619
|
-
"html5ever
|
|
5278
|
+
"html5ever",
|
|
4620
5279
|
"http",
|
|
4621
|
-
"
|
|
5280
|
+
"kuchikiki",
|
|
4622
5281
|
"libc",
|
|
4623
5282
|
"log",
|
|
4624
5283
|
"objc",
|
|
@@ -4635,7 +5294,7 @@ dependencies = [
|
|
|
4635
5294
|
"webkit2gtk-sys",
|
|
4636
5295
|
"webview2-com",
|
|
4637
5296
|
"windows 0.39.0",
|
|
4638
|
-
"windows-implement",
|
|
5297
|
+
"windows-implement 0.39.0",
|
|
4639
5298
|
]
|
|
4640
5299
|
|
|
4641
5300
|
[[package]]
|
|
@@ -4659,30 +5318,49 @@ dependencies = [
|
|
|
4659
5318
|
"pkg-config",
|
|
4660
5319
|
]
|
|
4661
5320
|
|
|
5321
|
+
[[package]]
|
|
5322
|
+
name = "x11rb"
|
|
5323
|
+
version = "0.13.1"
|
|
5324
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
5325
|
+
checksum = "5d91ffca73ee7f68ce055750bf9f6eca0780b8c85eff9bc046a3b0da41755e12"
|
|
5326
|
+
dependencies = [
|
|
5327
|
+
"gethostname",
|
|
5328
|
+
"rustix",
|
|
5329
|
+
"x11rb-protocol",
|
|
5330
|
+
]
|
|
5331
|
+
|
|
5332
|
+
[[package]]
|
|
5333
|
+
name = "x11rb-protocol"
|
|
5334
|
+
version = "0.13.1"
|
|
5335
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
5336
|
+
checksum = "ec107c4503ea0b4a98ef47356329af139c0a4f7750e621cf2973cd3385ebcb3d"
|
|
5337
|
+
|
|
4662
5338
|
[[package]]
|
|
4663
5339
|
name = "xattr"
|
|
4664
|
-
version = "
|
|
5340
|
+
version = "1.3.1"
|
|
4665
5341
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4666
|
-
checksum = "
|
|
5342
|
+
checksum = "8da84f1a25939b27f6820d92aed108f83ff920fdf11a7b19366c27c4cda81d4f"
|
|
4667
5343
|
dependencies = [
|
|
4668
5344
|
"libc",
|
|
5345
|
+
"linux-raw-sys",
|
|
5346
|
+
"rustix",
|
|
4669
5347
|
]
|
|
4670
5348
|
|
|
4671
5349
|
[[package]]
|
|
4672
5350
|
name = "xdg-home"
|
|
4673
|
-
version = "1.
|
|
5351
|
+
version = "1.1.0"
|
|
4674
5352
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4675
|
-
checksum = "
|
|
5353
|
+
checksum = "21e5a325c3cb8398ad6cf859c1135b25dd29e186679cf2da7581d9679f63b38e"
|
|
4676
5354
|
dependencies = [
|
|
4677
|
-
"
|
|
5355
|
+
"libc",
|
|
4678
5356
|
"winapi",
|
|
4679
5357
|
]
|
|
4680
5358
|
|
|
4681
5359
|
[[package]]
|
|
4682
5360
|
name = "zbus"
|
|
4683
|
-
version = "
|
|
5361
|
+
version = "4.2.0"
|
|
4684
5362
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4685
|
-
checksum = "
|
|
5363
|
+
checksum = "6aea58d1af0aaa8abf87f3d9ade9b8f46bf13727e5f9fb24bc31ee9d94a9b4ad"
|
|
4686
5364
|
dependencies = [
|
|
4687
5365
|
"async-broadcast",
|
|
4688
5366
|
"async-executor",
|
|
@@ -4694,16 +5372,13 @@ dependencies = [
|
|
|
4694
5372
|
"async-task",
|
|
4695
5373
|
"async-trait",
|
|
4696
5374
|
"blocking",
|
|
4697
|
-
"byteorder",
|
|
4698
|
-
"derivative",
|
|
4699
5375
|
"enumflags2",
|
|
4700
|
-
"event-listener",
|
|
5376
|
+
"event-listener 5.3.0",
|
|
4701
5377
|
"futures-core",
|
|
4702
5378
|
"futures-sink",
|
|
4703
5379
|
"futures-util",
|
|
4704
5380
|
"hex",
|
|
4705
|
-
"nix",
|
|
4706
|
-
"once_cell",
|
|
5381
|
+
"nix 0.28.0",
|
|
4707
5382
|
"ordered-stream",
|
|
4708
5383
|
"rand 0.8.5",
|
|
4709
5384
|
"serde",
|
|
@@ -4712,7 +5387,7 @@ dependencies = [
|
|
|
4712
5387
|
"static_assertions",
|
|
4713
5388
|
"tracing",
|
|
4714
5389
|
"uds_windows",
|
|
4715
|
-
"
|
|
5390
|
+
"windows-sys 0.52.0",
|
|
4716
5391
|
"xdg-home",
|
|
4717
5392
|
"zbus_macros",
|
|
4718
5393
|
"zbus_names",
|
|
@@ -4721,23 +5396,22 @@ dependencies = [
|
|
|
4721
5396
|
|
|
4722
5397
|
[[package]]
|
|
4723
5398
|
name = "zbus_macros"
|
|
4724
|
-
version = "
|
|
5399
|
+
version = "4.2.0"
|
|
4725
5400
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4726
|
-
checksum = "
|
|
5401
|
+
checksum = "1bf2b496ec1e2d3c4a7878e351607f7a2bec1e1029b353683dfc28a22999e369"
|
|
4727
5402
|
dependencies = [
|
|
4728
|
-
"proc-macro-crate",
|
|
5403
|
+
"proc-macro-crate 3.1.0",
|
|
4729
5404
|
"proc-macro2",
|
|
4730
5405
|
"quote",
|
|
4731
|
-
"regex",
|
|
4732
5406
|
"syn 1.0.109",
|
|
4733
5407
|
"zvariant_utils",
|
|
4734
5408
|
]
|
|
4735
5409
|
|
|
4736
5410
|
[[package]]
|
|
4737
5411
|
name = "zbus_names"
|
|
4738
|
-
version = "
|
|
5412
|
+
version = "3.0.0"
|
|
4739
5413
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4740
|
-
checksum = "
|
|
5414
|
+
checksum = "4b9b1fef7d021261cc16cba64c351d291b715febe0fa10dc3a443ac5a5022e6c"
|
|
4741
5415
|
dependencies = [
|
|
4742
5416
|
"serde",
|
|
4743
5417
|
"static_assertions",
|
|
@@ -4746,13 +5420,12 @@ dependencies = [
|
|
|
4746
5420
|
|
|
4747
5421
|
[[package]]
|
|
4748
5422
|
name = "zvariant"
|
|
4749
|
-
version = "
|
|
5423
|
+
version = "4.0.3"
|
|
4750
5424
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4751
|
-
checksum = "
|
|
5425
|
+
checksum = "4e9282c6945d9e27742ba7ad7191325546636295de7b83f6735af73159b32ac7"
|
|
4752
5426
|
dependencies = [
|
|
4753
|
-
"
|
|
5427
|
+
"endi",
|
|
4754
5428
|
"enumflags2",
|
|
4755
|
-
"libc",
|
|
4756
5429
|
"serde",
|
|
4757
5430
|
"static_assertions",
|
|
4758
5431
|
"zvariant_derive",
|
|
@@ -4760,11 +5433,11 @@ dependencies = [
|
|
|
4760
5433
|
|
|
4761
5434
|
[[package]]
|
|
4762
5435
|
name = "zvariant_derive"
|
|
4763
|
-
version = "
|
|
5436
|
+
version = "4.0.3"
|
|
4764
5437
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4765
|
-
checksum = "
|
|
5438
|
+
checksum = "0142549e559746ff09d194dd43d256a554299d286cc56460a082b8ae24652aa1"
|
|
4766
5439
|
dependencies = [
|
|
4767
|
-
"proc-macro-crate",
|
|
5440
|
+
"proc-macro-crate 3.1.0",
|
|
4768
5441
|
"proc-macro2",
|
|
4769
5442
|
"quote",
|
|
4770
5443
|
"syn 1.0.109",
|
|
@@ -4773,9 +5446,9 @@ dependencies = [
|
|
|
4773
5446
|
|
|
4774
5447
|
[[package]]
|
|
4775
5448
|
name = "zvariant_utils"
|
|
4776
|
-
version = "1.
|
|
5449
|
+
version = "1.1.1"
|
|
4777
5450
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4778
|
-
checksum = "
|
|
5451
|
+
checksum = "75fa7291bdd68cd13c4f97cc9d78cbf16d96305856dfc7ac942aeff4c2de7d5a"
|
|
4779
5452
|
dependencies = [
|
|
4780
5453
|
"proc-macro2",
|
|
4781
5454
|
"quote",
|