pake-cli 1.3.0 → 2.0.0-alpha6
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/README.md +32 -28
- package/dist/about_pake.html +16 -0
- package/dist/cli.js +388 -85
- package/package.json +3 -2
- package/src-tauri/.cargo/cn_config.bak +14 -0
- package/src-tauri/Cargo.lock +1420 -586
- package/src-tauri/Cargo.toml +13 -14
- package/src-tauri/icons/loop.icns +0 -0
- package/src-tauri/pake.json +28 -0
- package/src-tauri/png/loop_256.ico +0 -0
- package/src-tauri/png/loop_32.ico +0 -0
- package/src-tauri/png/loop_512.png +0 -0
- package/src-tauri/src/app/config.rs +63 -0
- package/src-tauri/src/app/invoke.rs +47 -0
- package/src-tauri/src/app/menu.rs +114 -0
- package/src-tauri/src/app/mod.rs +4 -0
- package/src-tauri/src/app/window.rs +49 -0
- package/src-tauri/src/inject/component.js +143 -0
- package/src-tauri/src/inject/event.js +175 -0
- package/src-tauri/src/{pake.js → inject/style.js} +44 -140
- package/src-tauri/src/main.rs +58 -267
- package/src-tauri/src/util.rs +78 -0
- package/src-tauri/tauri.conf.json +26 -29
- package/src-tauri/tauri.linux.conf.json +18 -30
package/src-tauri/Cargo.lock
CHANGED
|
@@ -34,24 +34,20 @@ dependencies = [
|
|
|
34
34
|
|
|
35
35
|
[[package]]
|
|
36
36
|
name = "anyhow"
|
|
37
|
-
version = "1.0.
|
|
37
|
+
version = "1.0.70"
|
|
38
38
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
39
|
-
checksum = "
|
|
39
|
+
checksum = "7de8ce5e0f9f8d88245311066a578d72b7af3e7088f32783804676302df237e4"
|
|
40
40
|
|
|
41
41
|
[[package]]
|
|
42
42
|
name = "app"
|
|
43
43
|
version = "0.1.0"
|
|
44
44
|
dependencies = [
|
|
45
|
-
"
|
|
46
|
-
"home",
|
|
47
|
-
"image",
|
|
45
|
+
"download_rs",
|
|
48
46
|
"serde",
|
|
49
47
|
"serde_json",
|
|
50
48
|
"tauri",
|
|
51
49
|
"tauri-build",
|
|
52
|
-
"tauri-
|
|
53
|
-
"webbrowser",
|
|
54
|
-
"wry",
|
|
50
|
+
"tauri-plugin-window-state",
|
|
55
51
|
]
|
|
56
52
|
|
|
57
53
|
[[package]]
|
|
@@ -61,7 +57,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
61
57
|
checksum = "2c3d816ce6f0e2909a96830d6911c2aff044370b1ef92d7f267b43bae5addedd"
|
|
62
58
|
dependencies = [
|
|
63
59
|
"atk-sys",
|
|
64
|
-
"bitflags",
|
|
60
|
+
"bitflags 1.3.2",
|
|
65
61
|
"glib",
|
|
66
62
|
"libc",
|
|
67
63
|
]
|
|
@@ -75,7 +71,23 @@ dependencies = [
|
|
|
75
71
|
"glib-sys",
|
|
76
72
|
"gobject-sys",
|
|
77
73
|
"libc",
|
|
78
|
-
"system-deps 6.0.
|
|
74
|
+
"system-deps 6.0.4",
|
|
75
|
+
]
|
|
76
|
+
|
|
77
|
+
[[package]]
|
|
78
|
+
name = "attohttpc"
|
|
79
|
+
version = "0.22.0"
|
|
80
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
81
|
+
checksum = "1fcf00bc6d5abb29b5f97e3c61a90b6d3caa12f3faf897d4a3e3607c050a35a7"
|
|
82
|
+
dependencies = [
|
|
83
|
+
"flate2",
|
|
84
|
+
"http",
|
|
85
|
+
"log",
|
|
86
|
+
"native-tls",
|
|
87
|
+
"serde",
|
|
88
|
+
"serde_json",
|
|
89
|
+
"serde_urlencoded",
|
|
90
|
+
"url",
|
|
79
91
|
]
|
|
80
92
|
|
|
81
93
|
[[package]]
|
|
@@ -91,10 +103,19 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
91
103
|
checksum = "9e1b586273c5702936fe7b7d6896644d8be71e6314cfe09d3167c95f712589e8"
|
|
92
104
|
|
|
93
105
|
[[package]]
|
|
94
|
-
name = "
|
|
95
|
-
version = "0.
|
|
106
|
+
name = "base64"
|
|
107
|
+
version = "0.21.0"
|
|
108
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
109
|
+
checksum = "a4a4ddaa51a5bc52a6948f74c06d20aaaddb71924eab79b8c97a8c556e942d6a"
|
|
110
|
+
|
|
111
|
+
[[package]]
|
|
112
|
+
name = "bincode"
|
|
113
|
+
version = "1.3.3"
|
|
96
114
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
97
|
-
checksum = "
|
|
115
|
+
checksum = "b1f45e9417d87227c7a56d22e471c6206462cba514c7590c09aff4cf6d1ddcad"
|
|
116
|
+
dependencies = [
|
|
117
|
+
"serde",
|
|
118
|
+
]
|
|
98
119
|
|
|
99
120
|
[[package]]
|
|
100
121
|
name = "bitflags"
|
|
@@ -102,6 +123,12 @@ version = "1.3.2"
|
|
|
102
123
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
103
124
|
checksum = "bef38d45163c2f1dde094a7dfd33ccf595c92905c8f8f4fdc18d06fb1037718a"
|
|
104
125
|
|
|
126
|
+
[[package]]
|
|
127
|
+
name = "bitflags"
|
|
128
|
+
version = "2.1.0"
|
|
129
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
130
|
+
checksum = "c70beb79cbb5ce9c4f8e20849978f34225931f665bb49efa6982875a4d5facb3"
|
|
131
|
+
|
|
105
132
|
[[package]]
|
|
106
133
|
name = "block"
|
|
107
134
|
version = "0.1.6"
|
|
@@ -110,9 +137,9 @@ checksum = "0d8c1fef690941d3e7788d328517591fecc684c084084702d6ff1641e993699a"
|
|
|
110
137
|
|
|
111
138
|
[[package]]
|
|
112
139
|
name = "block-buffer"
|
|
113
|
-
version = "0.10.
|
|
140
|
+
version = "0.10.4"
|
|
114
141
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
115
|
-
checksum = "
|
|
142
|
+
checksum = "3078c7629b62d3f0439517fa394996acacc5cbc91c5a20d8c658e77abd503a71"
|
|
116
143
|
dependencies = [
|
|
117
144
|
"generic-array",
|
|
118
145
|
]
|
|
@@ -140,11 +167,12 @@ dependencies = [
|
|
|
140
167
|
|
|
141
168
|
[[package]]
|
|
142
169
|
name = "bstr"
|
|
143
|
-
version = "
|
|
170
|
+
version = "1.4.0"
|
|
144
171
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
145
|
-
checksum = "
|
|
172
|
+
checksum = "c3d4260bcc2e8fc9df1eac4919a720effeb63a3f0952f5bf4944adfa18897f09"
|
|
146
173
|
dependencies = [
|
|
147
174
|
"memchr",
|
|
175
|
+
"serde",
|
|
148
176
|
]
|
|
149
177
|
|
|
150
178
|
[[package]]
|
|
@@ -155,9 +183,9 @@ checksum = "0d261e256854913907f67ed06efbc3338dfe6179796deefc1ff763fc1aee5535"
|
|
|
155
183
|
|
|
156
184
|
[[package]]
|
|
157
185
|
name = "bytemuck"
|
|
158
|
-
version = "1.13.
|
|
186
|
+
version = "1.13.1"
|
|
159
187
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
160
|
-
checksum = "
|
|
188
|
+
checksum = "17febce684fd15d89027105661fec94afb475cb995fbc59d2865198446ba2eea"
|
|
161
189
|
|
|
162
190
|
[[package]]
|
|
163
191
|
name = "byteorder"
|
|
@@ -165,6 +193,12 @@ version = "1.4.3"
|
|
|
165
193
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
166
194
|
checksum = "14c189c53d098945499cdfa7ecc63567cf3886b3332b312a5b4585d8d3a6a610"
|
|
167
195
|
|
|
196
|
+
[[package]]
|
|
197
|
+
name = "bytes"
|
|
198
|
+
version = "0.5.6"
|
|
199
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
200
|
+
checksum = "0e4cec68f03f32e44924783795810fa50a7035d8c8ebe78580ad7e6c703fba38"
|
|
201
|
+
|
|
168
202
|
[[package]]
|
|
169
203
|
name = "bytes"
|
|
170
204
|
version = "1.4.0"
|
|
@@ -177,7 +211,7 @@ version = "0.15.12"
|
|
|
177
211
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
178
212
|
checksum = "c76ee391b03d35510d9fa917357c7f1855bd9a6659c95a1b392e33f49b3369bc"
|
|
179
213
|
dependencies = [
|
|
180
|
-
"bitflags",
|
|
214
|
+
"bitflags 1.3.2",
|
|
181
215
|
"cairo-sys-rs",
|
|
182
216
|
"glib",
|
|
183
217
|
"libc",
|
|
@@ -192,7 +226,7 @@ checksum = "3c55d429bef56ac9172d25fecb85dc8068307d17acd74b377866b7a1ef25d3c8"
|
|
|
192
226
|
dependencies = [
|
|
193
227
|
"glib-sys",
|
|
194
228
|
"libc",
|
|
195
|
-
"system-deps 6.0.
|
|
229
|
+
"system-deps 6.0.4",
|
|
196
230
|
]
|
|
197
231
|
|
|
198
232
|
[[package]]
|
|
@@ -202,7 +236,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
202
236
|
checksum = "497049e9477329f8f6a559972ee42e117487d01d1e8c2cc9f836ea6fa23a9e1a"
|
|
203
237
|
dependencies = [
|
|
204
238
|
"serde",
|
|
205
|
-
"toml",
|
|
239
|
+
"toml 0.5.11",
|
|
206
240
|
]
|
|
207
241
|
|
|
208
242
|
[[package]]
|
|
@@ -238,13 +272,19 @@ dependencies = [
|
|
|
238
272
|
|
|
239
273
|
[[package]]
|
|
240
274
|
name = "cfg-expr"
|
|
241
|
-
version = "0.
|
|
275
|
+
version = "0.14.0"
|
|
242
276
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
243
|
-
checksum = "
|
|
277
|
+
checksum = "a35b255461940a32985c627ce82900867c61db1659764d3675ea81963f72a4c6"
|
|
244
278
|
dependencies = [
|
|
245
279
|
"smallvec",
|
|
246
280
|
]
|
|
247
281
|
|
|
282
|
+
[[package]]
|
|
283
|
+
name = "cfg-if"
|
|
284
|
+
version = "0.1.10"
|
|
285
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
286
|
+
checksum = "4785bdd1c96b2a846b2bd7cc02e86b6b3dbf14e7e53446c4f54c92a361040822"
|
|
287
|
+
|
|
248
288
|
[[package]]
|
|
249
289
|
name = "cfg-if"
|
|
250
290
|
version = "1.0.0"
|
|
@@ -257,7 +297,7 @@ version = "0.24.1"
|
|
|
257
297
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
258
298
|
checksum = "f425db7937052c684daec3bd6375c8abe2d146dca4b8b143d6db777c39138f3a"
|
|
259
299
|
dependencies = [
|
|
260
|
-
"bitflags",
|
|
300
|
+
"bitflags 1.3.2",
|
|
261
301
|
"block",
|
|
262
302
|
"cocoa-foundation",
|
|
263
303
|
"core-foundation",
|
|
@@ -269,11 +309,11 @@ dependencies = [
|
|
|
269
309
|
|
|
270
310
|
[[package]]
|
|
271
311
|
name = "cocoa-foundation"
|
|
272
|
-
version = "0.1.
|
|
312
|
+
version = "0.1.1"
|
|
273
313
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
274
|
-
checksum = "
|
|
314
|
+
checksum = "931d3837c286f56e3c58423ce4eba12d08db2374461a785c86f672b08b5650d6"
|
|
275
315
|
dependencies = [
|
|
276
|
-
"bitflags",
|
|
316
|
+
"bitflags 1.3.2",
|
|
277
317
|
"block",
|
|
278
318
|
"core-foundation",
|
|
279
319
|
"core-graphics-types",
|
|
@@ -294,10 +334,23 @@ version = "4.6.6"
|
|
|
294
334
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
295
335
|
checksum = "35ed6e9d84f0b51a7f52daf1c7d71dd136fd7a3f41a8462b8cdb8c78d920fad4"
|
|
296
336
|
dependencies = [
|
|
297
|
-
"bytes",
|
|
337
|
+
"bytes 1.4.0",
|
|
298
338
|
"memchr",
|
|
299
339
|
]
|
|
300
340
|
|
|
341
|
+
[[package]]
|
|
342
|
+
name = "console"
|
|
343
|
+
version = "0.15.5"
|
|
344
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
345
|
+
checksum = "c3d79fbe8970a77e3e34151cc13d3b3e248aa0faaecb9f6091fa07ebefe5ad60"
|
|
346
|
+
dependencies = [
|
|
347
|
+
"encode_unicode",
|
|
348
|
+
"lazy_static",
|
|
349
|
+
"libc",
|
|
350
|
+
"unicode-width",
|
|
351
|
+
"windows-sys 0.42.0",
|
|
352
|
+
]
|
|
353
|
+
|
|
301
354
|
[[package]]
|
|
302
355
|
name = "convert_case"
|
|
303
356
|
version = "0.4.0"
|
|
@@ -316,9 +369,9 @@ dependencies = [
|
|
|
316
369
|
|
|
317
370
|
[[package]]
|
|
318
371
|
name = "core-foundation-sys"
|
|
319
|
-
version = "0.8.
|
|
372
|
+
version = "0.8.4"
|
|
320
373
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
321
|
-
checksum = "
|
|
374
|
+
checksum = "e496a50fda8aacccc86d7529e2c1e0892dbd0f898a6b5645b5561b89c3210efa"
|
|
322
375
|
|
|
323
376
|
[[package]]
|
|
324
377
|
name = "core-graphics"
|
|
@@ -326,7 +379,7 @@ version = "0.22.3"
|
|
|
326
379
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
327
380
|
checksum = "2581bbab3b8ffc6fcbd550bf46c355135d16e9ff2a6ea032ad6b9bf1d7efe4fb"
|
|
328
381
|
dependencies = [
|
|
329
|
-
"bitflags",
|
|
382
|
+
"bitflags 1.3.2",
|
|
330
383
|
"core-foundation",
|
|
331
384
|
"core-graphics-types",
|
|
332
385
|
"foreign-types",
|
|
@@ -339,7 +392,7 @@ version = "0.1.1"
|
|
|
339
392
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
340
393
|
checksum = "3a68b68b3446082644c91ac778bf50cd4104bfb002b5a6a7c44cca5a2c70788b"
|
|
341
394
|
dependencies = [
|
|
342
|
-
"bitflags",
|
|
395
|
+
"bitflags 1.3.2",
|
|
343
396
|
"core-foundation",
|
|
344
397
|
"foreign-types",
|
|
345
398
|
"libc",
|
|
@@ -347,9 +400,9 @@ dependencies = [
|
|
|
347
400
|
|
|
348
401
|
[[package]]
|
|
349
402
|
name = "cpufeatures"
|
|
350
|
-
version = "0.2.
|
|
403
|
+
version = "0.2.6"
|
|
351
404
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
352
|
-
checksum = "
|
|
405
|
+
checksum = "280a9f2d8b3a38871a3c8a46fb80db65e5e5ed97da80c4d08bf27fb63e35e181"
|
|
353
406
|
dependencies = [
|
|
354
407
|
"libc",
|
|
355
408
|
]
|
|
@@ -360,58 +413,28 @@ version = "1.3.2"
|
|
|
360
413
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
361
414
|
checksum = "b540bd8bc810d3885c6ea91e2018302f68baba2129ab3e88f32389ee9370880d"
|
|
362
415
|
dependencies = [
|
|
363
|
-
"cfg-if",
|
|
416
|
+
"cfg-if 1.0.0",
|
|
364
417
|
]
|
|
365
418
|
|
|
366
419
|
[[package]]
|
|
367
420
|
name = "crossbeam-channel"
|
|
368
|
-
version = "0.5.
|
|
369
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
370
|
-
checksum = "c2dd04ddaf88237dc3b8d8f9a3c1004b506b54b3313403944054d23c0870c521"
|
|
371
|
-
dependencies = [
|
|
372
|
-
"cfg-if",
|
|
373
|
-
"crossbeam-utils",
|
|
374
|
-
]
|
|
375
|
-
|
|
376
|
-
[[package]]
|
|
377
|
-
name = "crossbeam-deque"
|
|
378
|
-
version = "0.8.2"
|
|
379
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
380
|
-
checksum = "715e8152b692bba2d374b53d4875445368fdf21a94751410af607a5ac677d1fc"
|
|
381
|
-
dependencies = [
|
|
382
|
-
"cfg-if",
|
|
383
|
-
"crossbeam-epoch",
|
|
384
|
-
"crossbeam-utils",
|
|
385
|
-
]
|
|
386
|
-
|
|
387
|
-
[[package]]
|
|
388
|
-
name = "crossbeam-epoch"
|
|
389
|
-
version = "0.9.13"
|
|
421
|
+
version = "0.5.7"
|
|
390
422
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
391
|
-
checksum = "
|
|
423
|
+
checksum = "cf2b3e8478797446514c91ef04bafcb59faba183e621ad488df88983cc14128c"
|
|
392
424
|
dependencies = [
|
|
393
|
-
"
|
|
394
|
-
"cfg-if",
|
|
425
|
+
"cfg-if 1.0.0",
|
|
395
426
|
"crossbeam-utils",
|
|
396
|
-
"memoffset 0.7.1",
|
|
397
|
-
"scopeguard",
|
|
398
427
|
]
|
|
399
428
|
|
|
400
429
|
[[package]]
|
|
401
430
|
name = "crossbeam-utils"
|
|
402
|
-
version = "0.8.
|
|
431
|
+
version = "0.8.15"
|
|
403
432
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
404
|
-
checksum = "
|
|
433
|
+
checksum = "3c063cd8cc95f5c377ed0d4b49a4b21f632396ff690e8470c29b3359b346984b"
|
|
405
434
|
dependencies = [
|
|
406
|
-
"cfg-if",
|
|
435
|
+
"cfg-if 1.0.0",
|
|
407
436
|
]
|
|
408
437
|
|
|
409
|
-
[[package]]
|
|
410
|
-
name = "crunchy"
|
|
411
|
-
version = "0.2.2"
|
|
412
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
413
|
-
checksum = "7a81dae078cea95a014a339291cec439d2f232ebe854a9d672b796c6afafa9b7"
|
|
414
|
-
|
|
415
438
|
[[package]]
|
|
416
439
|
name = "crypto-common"
|
|
417
440
|
version = "0.1.6"
|
|
@@ -436,7 +459,7 @@ dependencies = [
|
|
|
436
459
|
"proc-macro2",
|
|
437
460
|
"quote",
|
|
438
461
|
"smallvec",
|
|
439
|
-
"syn",
|
|
462
|
+
"syn 1.0.109",
|
|
440
463
|
]
|
|
441
464
|
|
|
442
465
|
[[package]]
|
|
@@ -446,7 +469,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
446
469
|
checksum = "dfae75de57f2b2e85e8768c3ea840fd159c8f33e2b6522c7835b7abac81be16e"
|
|
447
470
|
dependencies = [
|
|
448
471
|
"quote",
|
|
449
|
-
"syn",
|
|
472
|
+
"syn 1.0.109",
|
|
450
473
|
]
|
|
451
474
|
|
|
452
475
|
[[package]]
|
|
@@ -456,15 +479,9 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
456
479
|
checksum = "6d2301688392eb071b0bf1a37be05c469d3cc4dbbd95df672fe28ab021e6a096"
|
|
457
480
|
dependencies = [
|
|
458
481
|
"quote",
|
|
459
|
-
"syn",
|
|
482
|
+
"syn 1.0.109",
|
|
460
483
|
]
|
|
461
484
|
|
|
462
|
-
[[package]]
|
|
463
|
-
name = "cty"
|
|
464
|
-
version = "0.2.2"
|
|
465
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
466
|
-
checksum = "b365fabc795046672053e29c954733ec3b05e4be654ab130fe8f1f94d7051f35"
|
|
467
|
-
|
|
468
485
|
[[package]]
|
|
469
486
|
name = "darling"
|
|
470
487
|
version = "0.13.4"
|
|
@@ -486,7 +503,7 @@ dependencies = [
|
|
|
486
503
|
"proc-macro2",
|
|
487
504
|
"quote",
|
|
488
505
|
"strsim",
|
|
489
|
-
"syn",
|
|
506
|
+
"syn 1.0.109",
|
|
490
507
|
]
|
|
491
508
|
|
|
492
509
|
[[package]]
|
|
@@ -497,7 +514,18 @@ checksum = "9c972679f83bdf9c42bd905396b6c3588a843a17f0f16dfcfa3e2c5d57441835"
|
|
|
497
514
|
dependencies = [
|
|
498
515
|
"darling_core",
|
|
499
516
|
"quote",
|
|
500
|
-
"syn",
|
|
517
|
+
"syn 1.0.109",
|
|
518
|
+
]
|
|
519
|
+
|
|
520
|
+
[[package]]
|
|
521
|
+
name = "dbus"
|
|
522
|
+
version = "0.9.7"
|
|
523
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
524
|
+
checksum = "1bb21987b9fb1613058ba3843121dd18b163b254d8a6e797e144cbac14d96d1b"
|
|
525
|
+
dependencies = [
|
|
526
|
+
"libc",
|
|
527
|
+
"libdbus-sys",
|
|
528
|
+
"winapi 0.3.9",
|
|
501
529
|
]
|
|
502
530
|
|
|
503
531
|
[[package]]
|
|
@@ -509,8 +537,8 @@ dependencies = [
|
|
|
509
537
|
"convert_case",
|
|
510
538
|
"proc-macro2",
|
|
511
539
|
"quote",
|
|
512
|
-
"rustc_version
|
|
513
|
-
"syn",
|
|
540
|
+
"rustc_version",
|
|
541
|
+
"syn 1.0.109",
|
|
514
542
|
]
|
|
515
543
|
|
|
516
544
|
[[package]]
|
|
@@ -523,36 +551,16 @@ dependencies = [
|
|
|
523
551
|
"crypto-common",
|
|
524
552
|
]
|
|
525
553
|
|
|
526
|
-
[[package]]
|
|
527
|
-
name = "dirs"
|
|
528
|
-
version = "4.0.0"
|
|
529
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
530
|
-
checksum = "ca3aa72a6f96ea37bbc5aa912f6788242832f75369bdfdadcb0e38423f100059"
|
|
531
|
-
dependencies = [
|
|
532
|
-
"dirs-sys",
|
|
533
|
-
]
|
|
534
|
-
|
|
535
554
|
[[package]]
|
|
536
555
|
name = "dirs-next"
|
|
537
556
|
version = "2.0.0"
|
|
538
557
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
539
558
|
checksum = "b98cf8ebf19c3d1b223e151f99a4f9f0690dca41414773390fc824184ac833e1"
|
|
540
559
|
dependencies = [
|
|
541
|
-
"cfg-if",
|
|
560
|
+
"cfg-if 1.0.0",
|
|
542
561
|
"dirs-sys-next",
|
|
543
562
|
]
|
|
544
563
|
|
|
545
|
-
[[package]]
|
|
546
|
-
name = "dirs-sys"
|
|
547
|
-
version = "0.3.7"
|
|
548
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
549
|
-
checksum = "1b1d1d91c932ef41c0f2663aa8b0ca0342d444d842c06914aa0a7e352d0bada6"
|
|
550
|
-
dependencies = [
|
|
551
|
-
"libc",
|
|
552
|
-
"redox_users",
|
|
553
|
-
"winapi",
|
|
554
|
-
]
|
|
555
|
-
|
|
556
564
|
[[package]]
|
|
557
565
|
name = "dirs-sys-next"
|
|
558
566
|
version = "0.1.2"
|
|
@@ -561,7 +569,7 @@ checksum = "4ebda144c4fe02d1f7ea1a7d9641b6fc6b580adcfa024ae48797ecdeb6825b4d"
|
|
|
561
569
|
dependencies = [
|
|
562
570
|
"libc",
|
|
563
571
|
"redox_users",
|
|
564
|
-
"winapi",
|
|
572
|
+
"winapi 0.3.9",
|
|
565
573
|
]
|
|
566
574
|
|
|
567
575
|
[[package]]
|
|
@@ -570,6 +578,17 @@ version = "0.2.0"
|
|
|
570
578
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
571
579
|
checksum = "bd0c93bb4b0c6d9b77f4435b0ae98c24d17f1c45b2ff844c6151a07256ca923b"
|
|
572
580
|
|
|
581
|
+
[[package]]
|
|
582
|
+
name = "download_rs"
|
|
583
|
+
version = "0.2.0"
|
|
584
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
585
|
+
checksum = "c47d9680cf49ce700aba2ea4991f745fbe06b54b2262ea6bf8e1798f436b2bad"
|
|
586
|
+
dependencies = [
|
|
587
|
+
"indicatif",
|
|
588
|
+
"reqwest",
|
|
589
|
+
"tokio 0.2.25",
|
|
590
|
+
]
|
|
591
|
+
|
|
573
592
|
[[package]]
|
|
574
593
|
name = "dtoa"
|
|
575
594
|
version = "0.4.8"
|
|
@@ -591,71 +610,77 @@ version = "1.0.3"
|
|
|
591
610
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
592
611
|
checksum = "0bd4b30a6560bbd9b4620f4de34c3f14f60848e58a9b7216801afcb4c7b31c3c"
|
|
593
612
|
|
|
594
|
-
[[package]]
|
|
595
|
-
name = "either"
|
|
596
|
-
version = "1.8.1"
|
|
597
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
598
|
-
checksum = "7fcaabb2fef8c910e7f4c7ce9f67a1283a1715879a7c230ca9d6d1ae31f16d91"
|
|
599
|
-
|
|
600
613
|
[[package]]
|
|
601
614
|
name = "embed_plist"
|
|
602
615
|
version = "1.2.2"
|
|
603
616
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
604
617
|
checksum = "4ef6b89e5b37196644d8796de5268852ff179b44e96276cf4290264843743bb7"
|
|
605
618
|
|
|
619
|
+
[[package]]
|
|
620
|
+
name = "encode_unicode"
|
|
621
|
+
version = "0.3.6"
|
|
622
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
623
|
+
checksum = "a357d28ed41a50f9c765dbfe56cbc04a64e53e5fc58ba79fbc34c10ef3df831f"
|
|
624
|
+
|
|
606
625
|
[[package]]
|
|
607
626
|
name = "encoding_rs"
|
|
608
|
-
version = "0.8.
|
|
627
|
+
version = "0.8.32"
|
|
609
628
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
610
|
-
checksum = "
|
|
629
|
+
checksum = "071a31f4ee85403370b58aca746f01041ede6f0da2730960ad001edc2b71b394"
|
|
611
630
|
dependencies = [
|
|
612
|
-
"cfg-if",
|
|
631
|
+
"cfg-if 1.0.0",
|
|
613
632
|
]
|
|
614
633
|
|
|
615
634
|
[[package]]
|
|
616
|
-
name = "
|
|
617
|
-
version = "
|
|
635
|
+
name = "errno"
|
|
636
|
+
version = "0.3.1"
|
|
618
637
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
619
|
-
checksum = "
|
|
638
|
+
checksum = "4bcfec3a70f97c962c307b2d2c56e358cf1d00b558d74262b5f929ee8cc7e73a"
|
|
620
639
|
dependencies = [
|
|
621
|
-
"
|
|
622
|
-
"
|
|
623
|
-
"
|
|
624
|
-
|
|
625
|
-
|
|
626
|
-
|
|
627
|
-
"
|
|
640
|
+
"errno-dragonfly",
|
|
641
|
+
"libc",
|
|
642
|
+
"windows-sys 0.48.0",
|
|
643
|
+
]
|
|
644
|
+
|
|
645
|
+
[[package]]
|
|
646
|
+
name = "errno-dragonfly"
|
|
647
|
+
version = "0.1.2"
|
|
648
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
649
|
+
checksum = "aa68f1b12764fab894d2755d2518754e71b4fd80ecfb822714a1206c2aab39bf"
|
|
650
|
+
dependencies = [
|
|
651
|
+
"cc",
|
|
652
|
+
"libc",
|
|
628
653
|
]
|
|
629
654
|
|
|
630
655
|
[[package]]
|
|
631
656
|
name = "fastrand"
|
|
632
|
-
version = "1.
|
|
657
|
+
version = "1.9.0"
|
|
633
658
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
634
|
-
checksum = "
|
|
659
|
+
checksum = "e51093e27b0797c359783294ca4f0a911c270184cb10f85783b118614a1501be"
|
|
635
660
|
dependencies = [
|
|
636
661
|
"instant",
|
|
637
662
|
]
|
|
638
663
|
|
|
639
664
|
[[package]]
|
|
640
665
|
name = "field-offset"
|
|
641
|
-
version = "0.3.
|
|
666
|
+
version = "0.3.5"
|
|
642
667
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
643
|
-
checksum = "
|
|
668
|
+
checksum = "a3cf3a800ff6e860c863ca6d4b16fd999db8b752819c1606884047b73e468535"
|
|
644
669
|
dependencies = [
|
|
645
|
-
"memoffset
|
|
646
|
-
"rustc_version
|
|
670
|
+
"memoffset",
|
|
671
|
+
"rustc_version",
|
|
647
672
|
]
|
|
648
673
|
|
|
649
674
|
[[package]]
|
|
650
675
|
name = "filetime"
|
|
651
|
-
version = "0.2.
|
|
676
|
+
version = "0.2.21"
|
|
652
677
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
653
|
-
checksum = "
|
|
678
|
+
checksum = "5cbc844cecaee9d4443931972e1289c8ff485cb4cc2767cb03ca139ed6885153"
|
|
654
679
|
dependencies = [
|
|
655
|
-
"cfg-if",
|
|
680
|
+
"cfg-if 1.0.0",
|
|
656
681
|
"libc",
|
|
657
|
-
"redox_syscall",
|
|
658
|
-
"windows-sys",
|
|
682
|
+
"redox_syscall 0.2.16",
|
|
683
|
+
"windows-sys 0.48.0",
|
|
659
684
|
]
|
|
660
685
|
|
|
661
686
|
[[package]]
|
|
@@ -668,19 +693,6 @@ dependencies = [
|
|
|
668
693
|
"miniz_oxide",
|
|
669
694
|
]
|
|
670
695
|
|
|
671
|
-
[[package]]
|
|
672
|
-
name = "flume"
|
|
673
|
-
version = "0.10.14"
|
|
674
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
675
|
-
checksum = "1657b4441c3403d9f7b3409e47575237dac27b1b5726df654a6ecbf92f0f7577"
|
|
676
|
-
dependencies = [
|
|
677
|
-
"futures-core",
|
|
678
|
-
"futures-sink",
|
|
679
|
-
"nanorand",
|
|
680
|
-
"pin-project",
|
|
681
|
-
"spin",
|
|
682
|
-
]
|
|
683
|
-
|
|
684
696
|
[[package]]
|
|
685
697
|
name = "fnv"
|
|
686
698
|
version = "1.0.7"
|
|
@@ -711,6 +723,22 @@ dependencies = [
|
|
|
711
723
|
"percent-encoding",
|
|
712
724
|
]
|
|
713
725
|
|
|
726
|
+
[[package]]
|
|
727
|
+
name = "fuchsia-zircon"
|
|
728
|
+
version = "0.3.3"
|
|
729
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
730
|
+
checksum = "2e9763c69ebaae630ba35f74888db465e49e259ba1bc0eda7d06f4a067615d82"
|
|
731
|
+
dependencies = [
|
|
732
|
+
"bitflags 1.3.2",
|
|
733
|
+
"fuchsia-zircon-sys",
|
|
734
|
+
]
|
|
735
|
+
|
|
736
|
+
[[package]]
|
|
737
|
+
name = "fuchsia-zircon-sys"
|
|
738
|
+
version = "0.3.3"
|
|
739
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
740
|
+
checksum = "3dcaa9ae7725d12cdb85b3ad99a434db70b468c09ded17e012d86b5c1010f7a7"
|
|
741
|
+
|
|
714
742
|
[[package]]
|
|
715
743
|
name = "futf"
|
|
716
744
|
version = "0.1.5"
|
|
@@ -723,24 +751,24 @@ dependencies = [
|
|
|
723
751
|
|
|
724
752
|
[[package]]
|
|
725
753
|
name = "futures-channel"
|
|
726
|
-
version = "0.3.
|
|
754
|
+
version = "0.3.28"
|
|
727
755
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
728
|
-
checksum = "
|
|
756
|
+
checksum = "955518d47e09b25bbebc7a18df10b81f0c766eaf4c4f1cccef2fca5f2a4fb5f2"
|
|
729
757
|
dependencies = [
|
|
730
758
|
"futures-core",
|
|
731
759
|
]
|
|
732
760
|
|
|
733
761
|
[[package]]
|
|
734
762
|
name = "futures-core"
|
|
735
|
-
version = "0.3.
|
|
763
|
+
version = "0.3.28"
|
|
736
764
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
737
|
-
checksum = "
|
|
765
|
+
checksum = "4bca583b7e26f571124fe5b7561d49cb2868d79116cfa0eefce955557c6fee8c"
|
|
738
766
|
|
|
739
767
|
[[package]]
|
|
740
768
|
name = "futures-executor"
|
|
741
|
-
version = "0.3.
|
|
769
|
+
version = "0.3.28"
|
|
742
770
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
743
|
-
checksum = "
|
|
771
|
+
checksum = "ccecee823288125bd88b4d7f565c9e58e41858e47ab72e8ea2d64e93624386e0"
|
|
744
772
|
dependencies = [
|
|
745
773
|
"futures-core",
|
|
746
774
|
"futures-task",
|
|
@@ -749,43 +777,45 @@ dependencies = [
|
|
|
749
777
|
|
|
750
778
|
[[package]]
|
|
751
779
|
name = "futures-io"
|
|
752
|
-
version = "0.3.
|
|
780
|
+
version = "0.3.28"
|
|
753
781
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
754
|
-
checksum = "
|
|
782
|
+
checksum = "4fff74096e71ed47f8e023204cfd0aa1289cd54ae5430a9523be060cdb849964"
|
|
755
783
|
|
|
756
784
|
[[package]]
|
|
757
785
|
name = "futures-macro"
|
|
758
|
-
version = "0.3.
|
|
786
|
+
version = "0.3.28"
|
|
759
787
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
760
|
-
checksum = "
|
|
788
|
+
checksum = "89ca545a94061b6365f2c7355b4b32bd20df3ff95f02da9329b34ccc3bd6ee72"
|
|
761
789
|
dependencies = [
|
|
762
790
|
"proc-macro2",
|
|
763
791
|
"quote",
|
|
764
|
-
"syn",
|
|
792
|
+
"syn 2.0.13",
|
|
765
793
|
]
|
|
766
794
|
|
|
767
795
|
[[package]]
|
|
768
796
|
name = "futures-sink"
|
|
769
|
-
version = "0.3.
|
|
797
|
+
version = "0.3.28"
|
|
770
798
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
771
|
-
checksum = "
|
|
799
|
+
checksum = "f43be4fe21a13b9781a69afa4985b0f6ee0e1afab2c6f454a8cf30e2b2237b6e"
|
|
772
800
|
|
|
773
801
|
[[package]]
|
|
774
802
|
name = "futures-task"
|
|
775
|
-
version = "0.3.
|
|
803
|
+
version = "0.3.28"
|
|
776
804
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
777
|
-
checksum = "
|
|
805
|
+
checksum = "76d3d132be6c0e6aa1534069c705a74a5997a356c0dc2f86a47765e5617c5b65"
|
|
778
806
|
|
|
779
807
|
[[package]]
|
|
780
808
|
name = "futures-util"
|
|
781
|
-
version = "0.3.
|
|
809
|
+
version = "0.3.28"
|
|
782
810
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
783
|
-
checksum = "
|
|
811
|
+
checksum = "26b01e40b772d54cf6c6d721c1d1abd0647a0106a12ecaa1c186273392a69533"
|
|
784
812
|
dependencies = [
|
|
785
813
|
"futures-core",
|
|
814
|
+
"futures-io",
|
|
786
815
|
"futures-macro",
|
|
787
816
|
"futures-task",
|
|
788
|
-
"
|
|
817
|
+
"memchr",
|
|
818
|
+
"pin-project-lite 0.2.9",
|
|
789
819
|
"pin-utils",
|
|
790
820
|
"slab",
|
|
791
821
|
]
|
|
@@ -805,7 +835,7 @@ version = "0.15.4"
|
|
|
805
835
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
806
836
|
checksum = "a6e05c1f572ab0e1f15be94217f0dc29088c248b14f792a5ff0af0d84bcda9e8"
|
|
807
837
|
dependencies = [
|
|
808
|
-
"bitflags",
|
|
838
|
+
"bitflags 1.3.2",
|
|
809
839
|
"cairo-rs",
|
|
810
840
|
"gdk-pixbuf",
|
|
811
841
|
"gdk-sys",
|
|
@@ -821,7 +851,7 @@ version = "0.15.11"
|
|
|
821
851
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
822
852
|
checksum = "ad38dd9cc8b099cceecdf41375bb6d481b1b5a7cd5cd603e10a69a9383f8619a"
|
|
823
853
|
dependencies = [
|
|
824
|
-
"bitflags",
|
|
854
|
+
"bitflags 1.3.2",
|
|
825
855
|
"gdk-pixbuf-sys",
|
|
826
856
|
"gio",
|
|
827
857
|
"glib",
|
|
@@ -838,7 +868,7 @@ dependencies = [
|
|
|
838
868
|
"glib-sys",
|
|
839
869
|
"gobject-sys",
|
|
840
870
|
"libc",
|
|
841
|
-
"system-deps 6.0.
|
|
871
|
+
"system-deps 6.0.4",
|
|
842
872
|
]
|
|
843
873
|
|
|
844
874
|
[[package]]
|
|
@@ -855,7 +885,7 @@ dependencies = [
|
|
|
855
885
|
"libc",
|
|
856
886
|
"pango-sys",
|
|
857
887
|
"pkg-config",
|
|
858
|
-
"system-deps 6.0.
|
|
888
|
+
"system-deps 6.0.4",
|
|
859
889
|
]
|
|
860
890
|
|
|
861
891
|
[[package]]
|
|
@@ -867,28 +897,28 @@ dependencies = [
|
|
|
867
897
|
"gdk-sys",
|
|
868
898
|
"glib-sys",
|
|
869
899
|
"libc",
|
|
870
|
-
"system-deps 6.0.
|
|
900
|
+
"system-deps 6.0.4",
|
|
871
901
|
"x11",
|
|
872
902
|
]
|
|
873
903
|
|
|
874
904
|
[[package]]
|
|
875
905
|
name = "generator"
|
|
876
|
-
version = "0.7.
|
|
906
|
+
version = "0.7.3"
|
|
877
907
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
878
|
-
checksum = "
|
|
908
|
+
checksum = "33a20a288a94683f5f4da0adecdbe095c94a77c295e514cc6484e9394dd8376e"
|
|
879
909
|
dependencies = [
|
|
880
910
|
"cc",
|
|
881
911
|
"libc",
|
|
882
912
|
"log",
|
|
883
913
|
"rustversion",
|
|
884
|
-
"windows",
|
|
914
|
+
"windows 0.44.0",
|
|
885
915
|
]
|
|
886
916
|
|
|
887
917
|
[[package]]
|
|
888
918
|
name = "generic-array"
|
|
889
|
-
version = "0.14.
|
|
919
|
+
version = "0.14.7"
|
|
890
920
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
891
|
-
checksum = "
|
|
921
|
+
checksum = "85649ca51fd72272d7821adaf274ad91c288277713d9c18820d8499a7ff69e9a"
|
|
892
922
|
dependencies = [
|
|
893
923
|
"typenum",
|
|
894
924
|
"version_check",
|
|
@@ -900,32 +930,20 @@ version = "0.1.16"
|
|
|
900
930
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
901
931
|
checksum = "8fc3cb4d91f53b50155bdcfd23f6a4c39ae1969c2ae85982b135750cccaf5fce"
|
|
902
932
|
dependencies = [
|
|
903
|
-
"cfg-if",
|
|
933
|
+
"cfg-if 1.0.0",
|
|
904
934
|
"libc",
|
|
905
935
|
"wasi 0.9.0+wasi-snapshot-preview1",
|
|
906
936
|
]
|
|
907
937
|
|
|
908
938
|
[[package]]
|
|
909
939
|
name = "getrandom"
|
|
910
|
-
version = "0.2.
|
|
940
|
+
version = "0.2.9"
|
|
911
941
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
912
|
-
checksum = "
|
|
942
|
+
checksum = "c85e1d9ab2eadba7e5040d4e09cbd6d072b76a557ad64e797c2cb9d4da21d7e4"
|
|
913
943
|
dependencies = [
|
|
914
|
-
"cfg-if",
|
|
915
|
-
"js-sys",
|
|
944
|
+
"cfg-if 1.0.0",
|
|
916
945
|
"libc",
|
|
917
946
|
"wasi 0.11.0+wasi-snapshot-preview1",
|
|
918
|
-
"wasm-bindgen",
|
|
919
|
-
]
|
|
920
|
-
|
|
921
|
-
[[package]]
|
|
922
|
-
name = "gif"
|
|
923
|
-
version = "0.11.4"
|
|
924
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
925
|
-
checksum = "3edd93c6756b4dfaf2709eafcc345ba2636565295c198a9cfbf75fa5e3e00b06"
|
|
926
|
-
dependencies = [
|
|
927
|
-
"color_quant",
|
|
928
|
-
"weezl",
|
|
929
947
|
]
|
|
930
948
|
|
|
931
949
|
[[package]]
|
|
@@ -934,7 +952,7 @@ version = "0.15.12"
|
|
|
934
952
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
935
953
|
checksum = "68fdbc90312d462781a395f7a16d96a2b379bb6ef8cd6310a2df272771c4283b"
|
|
936
954
|
dependencies = [
|
|
937
|
-
"bitflags",
|
|
955
|
+
"bitflags 1.3.2",
|
|
938
956
|
"futures-channel",
|
|
939
957
|
"futures-core",
|
|
940
958
|
"futures-io",
|
|
@@ -954,8 +972,8 @@ dependencies = [
|
|
|
954
972
|
"glib-sys",
|
|
955
973
|
"gobject-sys",
|
|
956
974
|
"libc",
|
|
957
|
-
"system-deps 6.0.
|
|
958
|
-
"winapi",
|
|
975
|
+
"system-deps 6.0.4",
|
|
976
|
+
"winapi 0.3.9",
|
|
959
977
|
]
|
|
960
978
|
|
|
961
979
|
[[package]]
|
|
@@ -964,7 +982,7 @@ version = "0.15.12"
|
|
|
964
982
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
965
983
|
checksum = "edb0306fbad0ab5428b0ca674a23893db909a98582969c9b537be4ced78c505d"
|
|
966
984
|
dependencies = [
|
|
967
|
-
"bitflags",
|
|
985
|
+
"bitflags 1.3.2",
|
|
968
986
|
"futures-channel",
|
|
969
987
|
"futures-core",
|
|
970
988
|
"futures-executor",
|
|
@@ -980,17 +998,17 @@ dependencies = [
|
|
|
980
998
|
|
|
981
999
|
[[package]]
|
|
982
1000
|
name = "glib-macros"
|
|
983
|
-
version = "0.15.
|
|
1001
|
+
version = "0.15.13"
|
|
984
1002
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
985
|
-
checksum = "
|
|
1003
|
+
checksum = "10c6ae9f6fa26f4fb2ac16b528d138d971ead56141de489f8111e259b9df3c4a"
|
|
986
1004
|
dependencies = [
|
|
987
1005
|
"anyhow",
|
|
988
|
-
"heck 0.4.
|
|
1006
|
+
"heck 0.4.1",
|
|
989
1007
|
"proc-macro-crate",
|
|
990
1008
|
"proc-macro-error",
|
|
991
1009
|
"proc-macro2",
|
|
992
1010
|
"quote",
|
|
993
|
-
"syn",
|
|
1011
|
+
"syn 1.0.109",
|
|
994
1012
|
]
|
|
995
1013
|
|
|
996
1014
|
[[package]]
|
|
@@ -1000,7 +1018,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
1000
1018
|
checksum = "ef4b192f8e65e9cf76cbf4ea71fa8e3be4a0e18ffe3d68b8da6836974cc5bad4"
|
|
1001
1019
|
dependencies = [
|
|
1002
1020
|
"libc",
|
|
1003
|
-
"system-deps 6.0.
|
|
1021
|
+
"system-deps 6.0.4",
|
|
1004
1022
|
]
|
|
1005
1023
|
|
|
1006
1024
|
[[package]]
|
|
@@ -1011,9 +1029,9 @@ checksum = "d2fabcfbdc87f4758337ca535fb41a6d701b65693ce38287d856d1674551ec9b"
|
|
|
1011
1029
|
|
|
1012
1030
|
[[package]]
|
|
1013
1031
|
name = "globset"
|
|
1014
|
-
version = "0.4.
|
|
1032
|
+
version = "0.4.10"
|
|
1015
1033
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1016
|
-
checksum = "
|
|
1034
|
+
checksum = "029d74589adefde59de1a0c4f4732695c32805624aec7b68d91503d4dba79afc"
|
|
1017
1035
|
dependencies = [
|
|
1018
1036
|
"aho-corasick",
|
|
1019
1037
|
"bstr",
|
|
@@ -1030,7 +1048,7 @@ checksum = "0d57ce44246becd17153bd035ab4d32cfee096a657fc01f2231c9278378d1e0a"
|
|
|
1030
1048
|
dependencies = [
|
|
1031
1049
|
"glib-sys",
|
|
1032
1050
|
"libc",
|
|
1033
|
-
"system-deps 6.0.
|
|
1051
|
+
"system-deps 6.0.4",
|
|
1034
1052
|
]
|
|
1035
1053
|
|
|
1036
1054
|
[[package]]
|
|
@@ -1040,7 +1058,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
1040
1058
|
checksum = "92e3004a2d5d6d8b5057d2b57b3712c9529b62e82c77f25c1fecde1fd5c23bd0"
|
|
1041
1059
|
dependencies = [
|
|
1042
1060
|
"atk",
|
|
1043
|
-
"bitflags",
|
|
1061
|
+
"bitflags 1.3.2",
|
|
1044
1062
|
"cairo-rs",
|
|
1045
1063
|
"field-offset",
|
|
1046
1064
|
"futures-channel",
|
|
@@ -1071,30 +1089,41 @@ dependencies = [
|
|
|
1071
1089
|
"gobject-sys",
|
|
1072
1090
|
"libc",
|
|
1073
1091
|
"pango-sys",
|
|
1074
|
-
"system-deps 6.0.
|
|
1092
|
+
"system-deps 6.0.4",
|
|
1075
1093
|
]
|
|
1076
1094
|
|
|
1077
1095
|
[[package]]
|
|
1078
1096
|
name = "gtk3-macros"
|
|
1079
|
-
version = "0.15.
|
|
1097
|
+
version = "0.15.6"
|
|
1080
1098
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1081
|
-
checksum = "
|
|
1099
|
+
checksum = "684c0456c086e8e7e9af73ec5b84e35938df394712054550e81558d21c44ab0d"
|
|
1082
1100
|
dependencies = [
|
|
1083
1101
|
"anyhow",
|
|
1084
1102
|
"proc-macro-crate",
|
|
1085
1103
|
"proc-macro-error",
|
|
1086
1104
|
"proc-macro2",
|
|
1087
1105
|
"quote",
|
|
1088
|
-
"syn",
|
|
1106
|
+
"syn 1.0.109",
|
|
1089
1107
|
]
|
|
1090
1108
|
|
|
1091
1109
|
[[package]]
|
|
1092
|
-
name = "
|
|
1093
|
-
version = "
|
|
1110
|
+
name = "h2"
|
|
1111
|
+
version = "0.2.7"
|
|
1094
1112
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1095
|
-
checksum = "
|
|
1113
|
+
checksum = "5e4728fd124914ad25e99e3d15a9361a879f6620f63cb56bbb08f95abb97a535"
|
|
1096
1114
|
dependencies = [
|
|
1097
|
-
"
|
|
1115
|
+
"bytes 0.5.6",
|
|
1116
|
+
"fnv",
|
|
1117
|
+
"futures-core",
|
|
1118
|
+
"futures-sink",
|
|
1119
|
+
"futures-util",
|
|
1120
|
+
"http",
|
|
1121
|
+
"indexmap",
|
|
1122
|
+
"slab",
|
|
1123
|
+
"tokio 0.2.25",
|
|
1124
|
+
"tokio-util",
|
|
1125
|
+
"tracing",
|
|
1126
|
+
"tracing-futures",
|
|
1098
1127
|
]
|
|
1099
1128
|
|
|
1100
1129
|
[[package]]
|
|
@@ -1114,9 +1143,9 @@ dependencies = [
|
|
|
1114
1143
|
|
|
1115
1144
|
[[package]]
|
|
1116
1145
|
name = "heck"
|
|
1117
|
-
version = "0.4.
|
|
1146
|
+
version = "0.4.1"
|
|
1118
1147
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1119
|
-
checksum = "
|
|
1148
|
+
checksum = "95505c38b4572b2d910cecb0281560f54b440a19336cbbcb27bf6ce6adc6f5a8"
|
|
1120
1149
|
|
|
1121
1150
|
[[package]]
|
|
1122
1151
|
name = "hermit-abi"
|
|
@@ -1128,13 +1157,10 @@ dependencies = [
|
|
|
1128
1157
|
]
|
|
1129
1158
|
|
|
1130
1159
|
[[package]]
|
|
1131
|
-
name = "
|
|
1132
|
-
version = "0.
|
|
1160
|
+
name = "hermit-abi"
|
|
1161
|
+
version = "0.3.1"
|
|
1133
1162
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1134
|
-
checksum = "
|
|
1135
|
-
dependencies = [
|
|
1136
|
-
"winapi",
|
|
1137
|
-
]
|
|
1163
|
+
checksum = "fed44880c466736ef9a5c5b5facefb5ed0785676d0c02d612db14e54f0d84286"
|
|
1138
1164
|
|
|
1139
1165
|
[[package]]
|
|
1140
1166
|
name = "html5ever"
|
|
@@ -1147,18 +1173,28 @@ dependencies = [
|
|
|
1147
1173
|
"markup5ever",
|
|
1148
1174
|
"proc-macro2",
|
|
1149
1175
|
"quote",
|
|
1150
|
-
"syn",
|
|
1176
|
+
"syn 1.0.109",
|
|
1151
1177
|
]
|
|
1152
1178
|
|
|
1153
1179
|
[[package]]
|
|
1154
1180
|
name = "http"
|
|
1155
|
-
version = "0.2.
|
|
1181
|
+
version = "0.2.9"
|
|
1156
1182
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1157
|
-
checksum = "
|
|
1183
|
+
checksum = "bd6effc99afb63425aff9b05836f029929e345a6148a14b7ecd5ab67af944482"
|
|
1158
1184
|
dependencies = [
|
|
1159
|
-
"bytes",
|
|
1185
|
+
"bytes 1.4.0",
|
|
1160
1186
|
"fnv",
|
|
1161
|
-
"itoa 1.0.
|
|
1187
|
+
"itoa 1.0.6",
|
|
1188
|
+
]
|
|
1189
|
+
|
|
1190
|
+
[[package]]
|
|
1191
|
+
name = "http-body"
|
|
1192
|
+
version = "0.3.1"
|
|
1193
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1194
|
+
checksum = "13d5ff830006f7646652e057693569bfe0d51760c0085a071769d142a205111b"
|
|
1195
|
+
dependencies = [
|
|
1196
|
+
"bytes 0.5.6",
|
|
1197
|
+
"http",
|
|
1162
1198
|
]
|
|
1163
1199
|
|
|
1164
1200
|
[[package]]
|
|
@@ -1167,6 +1203,55 @@ version = "0.1.5"
|
|
|
1167
1203
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1168
1204
|
checksum = "21dec9db110f5f872ed9699c3ecf50cf16f423502706ba5c72462e28d3157573"
|
|
1169
1205
|
|
|
1206
|
+
[[package]]
|
|
1207
|
+
name = "httparse"
|
|
1208
|
+
version = "1.8.0"
|
|
1209
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1210
|
+
checksum = "d897f394bad6a705d5f4104762e116a75639e470d80901eed05a860a95cb1904"
|
|
1211
|
+
|
|
1212
|
+
[[package]]
|
|
1213
|
+
name = "httpdate"
|
|
1214
|
+
version = "0.3.2"
|
|
1215
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1216
|
+
checksum = "494b4d60369511e7dea41cf646832512a94e542f68bb9c49e54518e0f468eb47"
|
|
1217
|
+
|
|
1218
|
+
[[package]]
|
|
1219
|
+
name = "hyper"
|
|
1220
|
+
version = "0.13.10"
|
|
1221
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1222
|
+
checksum = "8a6f157065790a3ed2f88679250419b5cdd96e714a0d65f7797fd337186e96bb"
|
|
1223
|
+
dependencies = [
|
|
1224
|
+
"bytes 0.5.6",
|
|
1225
|
+
"futures-channel",
|
|
1226
|
+
"futures-core",
|
|
1227
|
+
"futures-util",
|
|
1228
|
+
"h2",
|
|
1229
|
+
"http",
|
|
1230
|
+
"http-body",
|
|
1231
|
+
"httparse",
|
|
1232
|
+
"httpdate",
|
|
1233
|
+
"itoa 0.4.8",
|
|
1234
|
+
"pin-project",
|
|
1235
|
+
"socket2",
|
|
1236
|
+
"tokio 0.2.25",
|
|
1237
|
+
"tower-service",
|
|
1238
|
+
"tracing",
|
|
1239
|
+
"want",
|
|
1240
|
+
]
|
|
1241
|
+
|
|
1242
|
+
[[package]]
|
|
1243
|
+
name = "hyper-tls"
|
|
1244
|
+
version = "0.4.3"
|
|
1245
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1246
|
+
checksum = "d979acc56dcb5b8dddba3917601745e877576475aa046df3226eabdecef78eed"
|
|
1247
|
+
dependencies = [
|
|
1248
|
+
"bytes 0.5.6",
|
|
1249
|
+
"hyper",
|
|
1250
|
+
"native-tls",
|
|
1251
|
+
"tokio 0.2.25",
|
|
1252
|
+
"tokio-tls",
|
|
1253
|
+
]
|
|
1254
|
+
|
|
1170
1255
|
[[package]]
|
|
1171
1256
|
name = "ico"
|
|
1172
1257
|
version = "0.2.0"
|
|
@@ -1213,33 +1298,39 @@ dependencies = [
|
|
|
1213
1298
|
|
|
1214
1299
|
[[package]]
|
|
1215
1300
|
name = "image"
|
|
1216
|
-
version = "0.24.
|
|
1301
|
+
version = "0.24.6"
|
|
1217
1302
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1218
|
-
checksum = "
|
|
1303
|
+
checksum = "527909aa81e20ac3a44803521443a765550f09b5130c2c2fa1ea59c2f8f50a3a"
|
|
1219
1304
|
dependencies = [
|
|
1220
1305
|
"bytemuck",
|
|
1221
1306
|
"byteorder",
|
|
1222
1307
|
"color_quant",
|
|
1223
|
-
"exr",
|
|
1224
|
-
"gif",
|
|
1225
|
-
"jpeg-decoder",
|
|
1226
1308
|
"num-rational",
|
|
1227
1309
|
"num-traits",
|
|
1228
|
-
"png",
|
|
1229
|
-
"scoped_threadpool",
|
|
1230
|
-
"tiff",
|
|
1231
1310
|
]
|
|
1232
1311
|
|
|
1233
1312
|
[[package]]
|
|
1234
1313
|
name = "indexmap"
|
|
1235
|
-
version = "1.9.
|
|
1314
|
+
version = "1.9.3"
|
|
1236
1315
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1237
|
-
checksum = "
|
|
1316
|
+
checksum = "bd070e393353796e801d209ad339e89596eb4c8d430d18ede6a1cced8fafbd99"
|
|
1238
1317
|
dependencies = [
|
|
1239
1318
|
"autocfg",
|
|
1240
1319
|
"hashbrown",
|
|
1241
1320
|
]
|
|
1242
1321
|
|
|
1322
|
+
[[package]]
|
|
1323
|
+
name = "indicatif"
|
|
1324
|
+
version = "0.13.0"
|
|
1325
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1326
|
+
checksum = "8572bccfb0665e70b7faf44ee28841b8e0823450cd4ad562a76b5a3c4bf48487"
|
|
1327
|
+
dependencies = [
|
|
1328
|
+
"console",
|
|
1329
|
+
"lazy_static",
|
|
1330
|
+
"number_prefix",
|
|
1331
|
+
"regex",
|
|
1332
|
+
]
|
|
1333
|
+
|
|
1243
1334
|
[[package]]
|
|
1244
1335
|
name = "infer"
|
|
1245
1336
|
version = "0.7.0"
|
|
@@ -1255,9 +1346,35 @@ version = "0.1.12"
|
|
|
1255
1346
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1256
1347
|
checksum = "7a5bbe824c507c5da5956355e86a746d82e0e1464f65d862cc5e71da70e94b2c"
|
|
1257
1348
|
dependencies = [
|
|
1258
|
-
"cfg-if",
|
|
1349
|
+
"cfg-if 1.0.0",
|
|
1350
|
+
]
|
|
1351
|
+
|
|
1352
|
+
[[package]]
|
|
1353
|
+
name = "io-lifetimes"
|
|
1354
|
+
version = "1.0.10"
|
|
1355
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1356
|
+
checksum = "9c66c74d2ae7e79a5a8f7ac924adbe38ee42a859c6539ad869eb51f0b52dc220"
|
|
1357
|
+
dependencies = [
|
|
1358
|
+
"hermit-abi 0.3.1",
|
|
1359
|
+
"libc",
|
|
1360
|
+
"windows-sys 0.48.0",
|
|
1361
|
+
]
|
|
1362
|
+
|
|
1363
|
+
[[package]]
|
|
1364
|
+
name = "iovec"
|
|
1365
|
+
version = "0.1.4"
|
|
1366
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1367
|
+
checksum = "b2b3ea6ff95e175473f8ffe6a7eb7c00d054240321b84c57051175fe3c1e075e"
|
|
1368
|
+
dependencies = [
|
|
1369
|
+
"libc",
|
|
1259
1370
|
]
|
|
1260
1371
|
|
|
1372
|
+
[[package]]
|
|
1373
|
+
name = "ipnet"
|
|
1374
|
+
version = "2.7.2"
|
|
1375
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1376
|
+
checksum = "12b6ee2129af8d4fb011108c73d99a1b83a85977f23b82460c0ae2e25bb4b57f"
|
|
1377
|
+
|
|
1261
1378
|
[[package]]
|
|
1262
1379
|
name = "itoa"
|
|
1263
1380
|
version = "0.4.8"
|
|
@@ -1266,9 +1383,9 @@ checksum = "b71991ff56294aa922b450139ee08b3bfc70982c6b2c7562771375cf73542dd4"
|
|
|
1266
1383
|
|
|
1267
1384
|
[[package]]
|
|
1268
1385
|
name = "itoa"
|
|
1269
|
-
version = "1.0.
|
|
1386
|
+
version = "1.0.6"
|
|
1270
1387
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1271
|
-
checksum = "
|
|
1388
|
+
checksum = "453ad9f582a441959e5f0d088b02ce04cfe8d51a8eaf077f12ac6d3e94164ca6"
|
|
1272
1389
|
|
|
1273
1390
|
[[package]]
|
|
1274
1391
|
name = "javascriptcore-rs"
|
|
@@ -1276,7 +1393,7 @@ version = "0.16.0"
|
|
|
1276
1393
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1277
1394
|
checksum = "bf053e7843f2812ff03ef5afe34bb9c06ffee120385caad4f6b9967fcd37d41c"
|
|
1278
1395
|
dependencies = [
|
|
1279
|
-
"bitflags",
|
|
1396
|
+
"bitflags 1.3.2",
|
|
1280
1397
|
"glib",
|
|
1281
1398
|
"javascriptcore-rs-sys",
|
|
1282
1399
|
]
|
|
@@ -1313,20 +1430,11 @@ version = "0.3.0"
|
|
|
1313
1430
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1314
1431
|
checksum = "8eaf4bc02d17cbdd7ff4c7438cafcdf7fb9a4613313ad11b4f8fefe7d3fa0130"
|
|
1315
1432
|
|
|
1316
|
-
[[package]]
|
|
1317
|
-
name = "jpeg-decoder"
|
|
1318
|
-
version = "0.3.0"
|
|
1319
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1320
|
-
checksum = "bc0000e42512c92e31c2252315bda326620a4e034105e900c98ec492fa077b3e"
|
|
1321
|
-
dependencies = [
|
|
1322
|
-
"rayon",
|
|
1323
|
-
]
|
|
1324
|
-
|
|
1325
1433
|
[[package]]
|
|
1326
1434
|
name = "js-sys"
|
|
1327
|
-
version = "0.3.
|
|
1435
|
+
version = "0.3.61"
|
|
1328
1436
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1329
|
-
checksum = "
|
|
1437
|
+
checksum = "445dde2150c55e483f3d8416706b97ec8e8237c307e5b7b4b8dd15e6af2a0730"
|
|
1330
1438
|
dependencies = [
|
|
1331
1439
|
"wasm-bindgen",
|
|
1332
1440
|
]
|
|
@@ -1342,6 +1450,16 @@ dependencies = [
|
|
|
1342
1450
|
"treediff",
|
|
1343
1451
|
]
|
|
1344
1452
|
|
|
1453
|
+
[[package]]
|
|
1454
|
+
name = "kernel32-sys"
|
|
1455
|
+
version = "0.2.2"
|
|
1456
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1457
|
+
checksum = "7507624b29483431c0ba2d82aece8ca6cdba9382bff4ddd0f7490560c056098d"
|
|
1458
|
+
dependencies = [
|
|
1459
|
+
"winapi 0.2.8",
|
|
1460
|
+
"winapi-build",
|
|
1461
|
+
]
|
|
1462
|
+
|
|
1345
1463
|
[[package]]
|
|
1346
1464
|
name = "kuchiki"
|
|
1347
1465
|
version = "0.8.1"
|
|
@@ -1361,16 +1479,53 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
1361
1479
|
checksum = "e2abad23fbc42b3700f2f279844dc832adb2b2eb069b2df918f455c4e18cc646"
|
|
1362
1480
|
|
|
1363
1481
|
[[package]]
|
|
1364
|
-
name = "
|
|
1365
|
-
version = "0.
|
|
1482
|
+
name = "libappindicator"
|
|
1483
|
+
version = "0.7.1"
|
|
1366
1484
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1367
|
-
checksum = "
|
|
1368
|
-
|
|
1369
|
-
|
|
1370
|
-
|
|
1371
|
-
|
|
1485
|
+
checksum = "db2d3cb96d092b4824cb306c9e544c856a4cb6210c1081945187f7f1924b47e8"
|
|
1486
|
+
dependencies = [
|
|
1487
|
+
"glib",
|
|
1488
|
+
"gtk",
|
|
1489
|
+
"gtk-sys",
|
|
1490
|
+
"libappindicator-sys",
|
|
1491
|
+
"log",
|
|
1492
|
+
]
|
|
1493
|
+
|
|
1494
|
+
[[package]]
|
|
1495
|
+
name = "libappindicator-sys"
|
|
1496
|
+
version = "0.7.3"
|
|
1497
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1498
|
+
checksum = "f1b3b6681973cea8cc3bce7391e6d7d5502720b80a581c9a95c9cbaf592826aa"
|
|
1499
|
+
dependencies = [
|
|
1500
|
+
"gtk-sys",
|
|
1501
|
+
"libloading",
|
|
1502
|
+
"once_cell",
|
|
1503
|
+
]
|
|
1504
|
+
|
|
1505
|
+
[[package]]
|
|
1506
|
+
name = "libc"
|
|
1507
|
+
version = "0.2.141"
|
|
1508
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1509
|
+
checksum = "3304a64d199bb964be99741b7a14d26972741915b3649639149b2479bb46f4b5"
|
|
1510
|
+
|
|
1511
|
+
[[package]]
|
|
1512
|
+
name = "libdbus-sys"
|
|
1513
|
+
version = "0.2.4"
|
|
1514
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1515
|
+
checksum = "9f8d7ae751e1cb825c840ae5e682f59b098cdfd213c350ac268b61449a5f58a0"
|
|
1516
|
+
dependencies = [
|
|
1517
|
+
"pkg-config",
|
|
1518
|
+
]
|
|
1519
|
+
|
|
1520
|
+
[[package]]
|
|
1521
|
+
name = "libloading"
|
|
1522
|
+
version = "0.7.4"
|
|
1372
1523
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1373
|
-
checksum = "
|
|
1524
|
+
checksum = "b67380fd3b2fbe7527a606e18729d21c6f3951633d0500574c4dc22d2d638b9f"
|
|
1525
|
+
dependencies = [
|
|
1526
|
+
"cfg-if 1.0.0",
|
|
1527
|
+
"winapi 0.3.9",
|
|
1528
|
+
]
|
|
1374
1529
|
|
|
1375
1530
|
[[package]]
|
|
1376
1531
|
name = "line-wrap"
|
|
@@ -1381,6 +1536,12 @@ dependencies = [
|
|
|
1381
1536
|
"safemem",
|
|
1382
1537
|
]
|
|
1383
1538
|
|
|
1539
|
+
[[package]]
|
|
1540
|
+
name = "linux-raw-sys"
|
|
1541
|
+
version = "0.3.1"
|
|
1542
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1543
|
+
checksum = "d59d8c75012853d2e872fb56bc8a2e53718e2cafe1a4c823143141c6d90c322f"
|
|
1544
|
+
|
|
1384
1545
|
[[package]]
|
|
1385
1546
|
name = "lock_api"
|
|
1386
1547
|
version = "0.4.9"
|
|
@@ -1397,7 +1558,7 @@ version = "0.4.17"
|
|
|
1397
1558
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1398
1559
|
checksum = "abb12e687cfb44aa40f41fc3978ef76448f9b6038cad6aef4259d3c095a2382e"
|
|
1399
1560
|
dependencies = [
|
|
1400
|
-
"cfg-if",
|
|
1561
|
+
"cfg-if 1.0.0",
|
|
1401
1562
|
]
|
|
1402
1563
|
|
|
1403
1564
|
[[package]]
|
|
@@ -1406,7 +1567,7 @@ version = "0.5.6"
|
|
|
1406
1567
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1407
1568
|
checksum = "ff50ecb28bb86013e935fb6683ab1f6d3a20016f123c76fd4c27470076ac30f5"
|
|
1408
1569
|
dependencies = [
|
|
1409
|
-
"cfg-if",
|
|
1570
|
+
"cfg-if 1.0.0",
|
|
1410
1571
|
"generator",
|
|
1411
1572
|
"scoped-tls",
|
|
1412
1573
|
"serde",
|
|
@@ -1421,6 +1582,19 @@ version = "0.1.1"
|
|
|
1421
1582
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1422
1583
|
checksum = "c41e0c4fef86961ac6d6f8a82609f55f31b05e4fce149ac5710e439df7619ba4"
|
|
1423
1584
|
|
|
1585
|
+
[[package]]
|
|
1586
|
+
name = "mac-notification-sys"
|
|
1587
|
+
version = "0.5.6"
|
|
1588
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1589
|
+
checksum = "3e72d50edb17756489e79d52eb146927bec8eba9dd48faadf9ef08bca3791ad5"
|
|
1590
|
+
dependencies = [
|
|
1591
|
+
"cc",
|
|
1592
|
+
"dirs-next",
|
|
1593
|
+
"objc-foundation",
|
|
1594
|
+
"objc_id",
|
|
1595
|
+
"time",
|
|
1596
|
+
]
|
|
1597
|
+
|
|
1424
1598
|
[[package]]
|
|
1425
1599
|
name = "malloc_buf"
|
|
1426
1600
|
version = "0.0.6"
|
|
@@ -1467,20 +1641,27 @@ checksum = "2dffe52ecf27772e601905b7522cb4ef790d2cc203488bbd0e2fe85fcb74566d"
|
|
|
1467
1641
|
|
|
1468
1642
|
[[package]]
|
|
1469
1643
|
name = "memoffset"
|
|
1470
|
-
version = "0.
|
|
1644
|
+
version = "0.8.0"
|
|
1471
1645
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1472
|
-
checksum = "
|
|
1646
|
+
checksum = "d61c719bcfbcf5d62b3a09efa6088de8c54bc0bfcd3ea7ae39fcc186108b8de1"
|
|
1473
1647
|
dependencies = [
|
|
1474
1648
|
"autocfg",
|
|
1475
1649
|
]
|
|
1476
1650
|
|
|
1477
1651
|
[[package]]
|
|
1478
|
-
name = "
|
|
1479
|
-
version = "0.
|
|
1652
|
+
name = "mime"
|
|
1653
|
+
version = "0.3.17"
|
|
1654
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1655
|
+
checksum = "6877bb514081ee2a7ff5ef9de3281f14a4dd4bceac4c09388074a6b5df8a139a"
|
|
1656
|
+
|
|
1657
|
+
[[package]]
|
|
1658
|
+
name = "mime_guess"
|
|
1659
|
+
version = "2.0.4"
|
|
1480
1660
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1481
|
-
checksum = "
|
|
1661
|
+
checksum = "4192263c238a5f0d0c6bfd21f336a313a4ce1c450542449ca191bb657b4642ef"
|
|
1482
1662
|
dependencies = [
|
|
1483
|
-
"
|
|
1663
|
+
"mime",
|
|
1664
|
+
"unicase",
|
|
1484
1665
|
]
|
|
1485
1666
|
|
|
1486
1667
|
[[package]]
|
|
@@ -1493,12 +1674,84 @@ dependencies = [
|
|
|
1493
1674
|
]
|
|
1494
1675
|
|
|
1495
1676
|
[[package]]
|
|
1496
|
-
name = "
|
|
1497
|
-
version = "0.
|
|
1677
|
+
name = "mio"
|
|
1678
|
+
version = "0.6.23"
|
|
1679
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1680
|
+
checksum = "4afd66f5b91bf2a3bc13fad0e21caedac168ca4c707504e75585648ae80e4cc4"
|
|
1681
|
+
dependencies = [
|
|
1682
|
+
"cfg-if 0.1.10",
|
|
1683
|
+
"fuchsia-zircon",
|
|
1684
|
+
"fuchsia-zircon-sys",
|
|
1685
|
+
"iovec",
|
|
1686
|
+
"kernel32-sys",
|
|
1687
|
+
"libc",
|
|
1688
|
+
"log",
|
|
1689
|
+
"miow 0.2.2",
|
|
1690
|
+
"net2",
|
|
1691
|
+
"slab",
|
|
1692
|
+
"winapi 0.2.8",
|
|
1693
|
+
]
|
|
1694
|
+
|
|
1695
|
+
[[package]]
|
|
1696
|
+
name = "mio-named-pipes"
|
|
1697
|
+
version = "0.1.7"
|
|
1698
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1699
|
+
checksum = "0840c1c50fd55e521b247f949c241c9997709f23bd7f023b9762cd561e935656"
|
|
1700
|
+
dependencies = [
|
|
1701
|
+
"log",
|
|
1702
|
+
"mio",
|
|
1703
|
+
"miow 0.3.7",
|
|
1704
|
+
"winapi 0.3.9",
|
|
1705
|
+
]
|
|
1706
|
+
|
|
1707
|
+
[[package]]
|
|
1708
|
+
name = "mio-uds"
|
|
1709
|
+
version = "0.6.8"
|
|
1710
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1711
|
+
checksum = "afcb699eb26d4332647cc848492bbc15eafb26f08d0304550d5aa1f612e066f0"
|
|
1712
|
+
dependencies = [
|
|
1713
|
+
"iovec",
|
|
1714
|
+
"libc",
|
|
1715
|
+
"mio",
|
|
1716
|
+
]
|
|
1717
|
+
|
|
1718
|
+
[[package]]
|
|
1719
|
+
name = "miow"
|
|
1720
|
+
version = "0.2.2"
|
|
1721
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1722
|
+
checksum = "ebd808424166322d4a38da87083bfddd3ac4c131334ed55856112eb06d46944d"
|
|
1723
|
+
dependencies = [
|
|
1724
|
+
"kernel32-sys",
|
|
1725
|
+
"net2",
|
|
1726
|
+
"winapi 0.2.8",
|
|
1727
|
+
"ws2_32-sys",
|
|
1728
|
+
]
|
|
1729
|
+
|
|
1730
|
+
[[package]]
|
|
1731
|
+
name = "miow"
|
|
1732
|
+
version = "0.3.7"
|
|
1733
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1734
|
+
checksum = "b9f1c5b025cda876f66ef43a113f91ebc9f4ccef34843000e0adf6ebbab84e21"
|
|
1735
|
+
dependencies = [
|
|
1736
|
+
"winapi 0.3.9",
|
|
1737
|
+
]
|
|
1738
|
+
|
|
1739
|
+
[[package]]
|
|
1740
|
+
name = "native-tls"
|
|
1741
|
+
version = "0.2.11"
|
|
1498
1742
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1499
|
-
checksum = "
|
|
1743
|
+
checksum = "07226173c32f2926027b63cce4bcd8076c3552846cbe7925f3aaffeac0a3b92e"
|
|
1500
1744
|
dependencies = [
|
|
1501
|
-
"
|
|
1745
|
+
"lazy_static",
|
|
1746
|
+
"libc",
|
|
1747
|
+
"log",
|
|
1748
|
+
"openssl",
|
|
1749
|
+
"openssl-probe",
|
|
1750
|
+
"openssl-sys",
|
|
1751
|
+
"schannel",
|
|
1752
|
+
"security-framework",
|
|
1753
|
+
"security-framework-sys",
|
|
1754
|
+
"tempfile",
|
|
1502
1755
|
]
|
|
1503
1756
|
|
|
1504
1757
|
[[package]]
|
|
@@ -1507,7 +1760,7 @@ version = "0.6.0"
|
|
|
1507
1760
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1508
1761
|
checksum = "2032c77e030ddee34a6787a64166008da93f6a352b629261d0fee232b8742dd4"
|
|
1509
1762
|
dependencies = [
|
|
1510
|
-
"bitflags",
|
|
1763
|
+
"bitflags 1.3.2",
|
|
1511
1764
|
"jni-sys",
|
|
1512
1765
|
"ndk-sys",
|
|
1513
1766
|
"num_enum",
|
|
@@ -1529,6 +1782,17 @@ dependencies = [
|
|
|
1529
1782
|
"jni-sys",
|
|
1530
1783
|
]
|
|
1531
1784
|
|
|
1785
|
+
[[package]]
|
|
1786
|
+
name = "net2"
|
|
1787
|
+
version = "0.2.38"
|
|
1788
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1789
|
+
checksum = "74d0df99cfcd2530b2e694f6e17e7f37b8e26bb23983ac530c0c97408837c631"
|
|
1790
|
+
dependencies = [
|
|
1791
|
+
"cfg-if 0.1.10",
|
|
1792
|
+
"libc",
|
|
1793
|
+
"winapi 0.3.9",
|
|
1794
|
+
]
|
|
1795
|
+
|
|
1532
1796
|
[[package]]
|
|
1533
1797
|
name = "new_debug_unreachable"
|
|
1534
1798
|
version = "1.0.4"
|
|
@@ -1541,6 +1805,18 @@ version = "0.1.14"
|
|
|
1541
1805
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1542
1806
|
checksum = "72ef4a56884ca558e5ddb05a1d1e7e1bfd9a68d9ed024c21704cc98872dae1bb"
|
|
1543
1807
|
|
|
1808
|
+
[[package]]
|
|
1809
|
+
name = "notify-rust"
|
|
1810
|
+
version = "4.8.0"
|
|
1811
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1812
|
+
checksum = "2bfa211d18e360f08e36c364308f394b5eb23a6629150690e109a916dc6f610e"
|
|
1813
|
+
dependencies = [
|
|
1814
|
+
"dbus",
|
|
1815
|
+
"log",
|
|
1816
|
+
"mac-notification-sys",
|
|
1817
|
+
"tauri-winrt-notification",
|
|
1818
|
+
]
|
|
1819
|
+
|
|
1544
1820
|
[[package]]
|
|
1545
1821
|
name = "nu-ansi-term"
|
|
1546
1822
|
version = "0.46.0"
|
|
@@ -1548,7 +1824,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
1548
1824
|
checksum = "77a8165726e8236064dbb45459242600304b42a5ea24ee2948e18e023bf7ba84"
|
|
1549
1825
|
dependencies = [
|
|
1550
1826
|
"overload",
|
|
1551
|
-
"winapi",
|
|
1827
|
+
"winapi 0.3.9",
|
|
1552
1828
|
]
|
|
1553
1829
|
|
|
1554
1830
|
[[package]]
|
|
@@ -1587,39 +1863,36 @@ version = "1.15.0"
|
|
|
1587
1863
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1588
1864
|
checksum = "0fac9e2da13b5eb447a6ce3d392f23a29d8694bff781bf03a16cd9ac8697593b"
|
|
1589
1865
|
dependencies = [
|
|
1590
|
-
"hermit-abi",
|
|
1866
|
+
"hermit-abi 0.2.6",
|
|
1591
1867
|
"libc",
|
|
1592
1868
|
]
|
|
1593
1869
|
|
|
1594
1870
|
[[package]]
|
|
1595
1871
|
name = "num_enum"
|
|
1596
|
-
version = "0.5.
|
|
1872
|
+
version = "0.5.11"
|
|
1597
1873
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1598
|
-
checksum = "
|
|
1874
|
+
checksum = "1f646caf906c20226733ed5b1374287eb97e3c2a5c227ce668c1f2ce20ae57c9"
|
|
1599
1875
|
dependencies = [
|
|
1600
1876
|
"num_enum_derive",
|
|
1601
1877
|
]
|
|
1602
1878
|
|
|
1603
1879
|
[[package]]
|
|
1604
1880
|
name = "num_enum_derive"
|
|
1605
|
-
version = "0.5.
|
|
1881
|
+
version = "0.5.11"
|
|
1606
1882
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1607
|
-
checksum = "
|
|
1883
|
+
checksum = "dcbff9bc912032c62bf65ef1d5aea88983b420f4f839db1e9b0c281a25c9c799"
|
|
1608
1884
|
dependencies = [
|
|
1609
1885
|
"proc-macro-crate",
|
|
1610
1886
|
"proc-macro2",
|
|
1611
1887
|
"quote",
|
|
1612
|
-
"syn",
|
|
1888
|
+
"syn 1.0.109",
|
|
1613
1889
|
]
|
|
1614
1890
|
|
|
1615
1891
|
[[package]]
|
|
1616
|
-
name = "
|
|
1617
|
-
version = "0.
|
|
1892
|
+
name = "number_prefix"
|
|
1893
|
+
version = "0.3.0"
|
|
1618
1894
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1619
|
-
checksum = "
|
|
1620
|
-
dependencies = [
|
|
1621
|
-
"libc",
|
|
1622
|
-
]
|
|
1895
|
+
checksum = "17b02fc0ff9a9e4b35b3342880f48e896ebf69f2967921fe8646bf5b7125956a"
|
|
1623
1896
|
|
|
1624
1897
|
[[package]]
|
|
1625
1898
|
name = "objc"
|
|
@@ -1631,6 +1904,17 @@ dependencies = [
|
|
|
1631
1904
|
"objc_exception",
|
|
1632
1905
|
]
|
|
1633
1906
|
|
|
1907
|
+
[[package]]
|
|
1908
|
+
name = "objc-foundation"
|
|
1909
|
+
version = "0.1.1"
|
|
1910
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1911
|
+
checksum = "1add1b659e36c9607c7aab864a76c7a4c2760cd0cd2e120f3fb8b952c7e22bf9"
|
|
1912
|
+
dependencies = [
|
|
1913
|
+
"block",
|
|
1914
|
+
"objc",
|
|
1915
|
+
"objc_id",
|
|
1916
|
+
]
|
|
1917
|
+
|
|
1634
1918
|
[[package]]
|
|
1635
1919
|
name = "objc_exception"
|
|
1636
1920
|
version = "0.1.2"
|
|
@@ -1651,9 +1935,84 @@ dependencies = [
|
|
|
1651
1935
|
|
|
1652
1936
|
[[package]]
|
|
1653
1937
|
name = "once_cell"
|
|
1654
|
-
version = "1.17.
|
|
1938
|
+
version = "1.17.1"
|
|
1939
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1940
|
+
checksum = "b7e5500299e16ebb147ae15a00a942af264cf3688f47923b8fc2cd5858f23ad3"
|
|
1941
|
+
|
|
1942
|
+
[[package]]
|
|
1943
|
+
name = "open"
|
|
1944
|
+
version = "3.2.0"
|
|
1945
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1946
|
+
checksum = "2078c0039e6a54a0c42c28faa984e115fb4c2d5bf2208f77d1961002df8576f8"
|
|
1947
|
+
dependencies = [
|
|
1948
|
+
"pathdiff",
|
|
1949
|
+
"windows-sys 0.42.0",
|
|
1950
|
+
]
|
|
1951
|
+
|
|
1952
|
+
[[package]]
|
|
1953
|
+
name = "openssl"
|
|
1954
|
+
version = "0.10.49"
|
|
1955
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1956
|
+
checksum = "4d2f106ab837a24e03672c59b1239669a0596406ff657c3c0835b6b7f0f35a33"
|
|
1957
|
+
dependencies = [
|
|
1958
|
+
"bitflags 1.3.2",
|
|
1959
|
+
"cfg-if 1.0.0",
|
|
1960
|
+
"foreign-types",
|
|
1961
|
+
"libc",
|
|
1962
|
+
"once_cell",
|
|
1963
|
+
"openssl-macros",
|
|
1964
|
+
"openssl-sys",
|
|
1965
|
+
]
|
|
1966
|
+
|
|
1967
|
+
[[package]]
|
|
1968
|
+
name = "openssl-macros"
|
|
1969
|
+
version = "0.1.1"
|
|
1970
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1971
|
+
checksum = "a948666b637a0f465e8564c73e89d4dde00d72d4d473cc972f390fc3dcee7d9c"
|
|
1972
|
+
dependencies = [
|
|
1973
|
+
"proc-macro2",
|
|
1974
|
+
"quote",
|
|
1975
|
+
"syn 2.0.13",
|
|
1976
|
+
]
|
|
1977
|
+
|
|
1978
|
+
[[package]]
|
|
1979
|
+
name = "openssl-probe"
|
|
1980
|
+
version = "0.1.5"
|
|
1981
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1982
|
+
checksum = "ff011a302c396a5197692431fc1948019154afc178baf7d8e37367442a4601cf"
|
|
1983
|
+
|
|
1984
|
+
[[package]]
|
|
1985
|
+
name = "openssl-sys"
|
|
1986
|
+
version = "0.9.84"
|
|
1655
1987
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1656
|
-
checksum = "
|
|
1988
|
+
checksum = "3a20eace9dc2d82904039cb76dcf50fb1a0bba071cfd1629720b5d6f1ddba0fa"
|
|
1989
|
+
dependencies = [
|
|
1990
|
+
"cc",
|
|
1991
|
+
"libc",
|
|
1992
|
+
"pkg-config",
|
|
1993
|
+
"vcpkg",
|
|
1994
|
+
]
|
|
1995
|
+
|
|
1996
|
+
[[package]]
|
|
1997
|
+
name = "os_info"
|
|
1998
|
+
version = "3.7.0"
|
|
1999
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2000
|
+
checksum = "006e42d5b888366f1880eda20371fedde764ed2213dc8496f49622fa0c99cd5e"
|
|
2001
|
+
dependencies = [
|
|
2002
|
+
"log",
|
|
2003
|
+
"serde",
|
|
2004
|
+
"winapi 0.3.9",
|
|
2005
|
+
]
|
|
2006
|
+
|
|
2007
|
+
[[package]]
|
|
2008
|
+
name = "os_pipe"
|
|
2009
|
+
version = "1.1.3"
|
|
2010
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2011
|
+
checksum = "a53dbb20faf34b16087a931834cba2d7a73cc74af2b7ef345a4c8324e2409a12"
|
|
2012
|
+
dependencies = [
|
|
2013
|
+
"libc",
|
|
2014
|
+
"windows-sys 0.45.0",
|
|
2015
|
+
]
|
|
1657
2016
|
|
|
1658
2017
|
[[package]]
|
|
1659
2018
|
name = "overload"
|
|
@@ -1667,7 +2026,7 @@ version = "0.15.10"
|
|
|
1667
2026
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1668
2027
|
checksum = "22e4045548659aee5313bde6c582b0d83a627b7904dd20dc2d9ef0895d414e4f"
|
|
1669
2028
|
dependencies = [
|
|
1670
|
-
"bitflags",
|
|
2029
|
+
"bitflags 1.3.2",
|
|
1671
2030
|
"glib",
|
|
1672
2031
|
"libc",
|
|
1673
2032
|
"once_cell",
|
|
@@ -1683,7 +2042,7 @@ dependencies = [
|
|
|
1683
2042
|
"glib-sys",
|
|
1684
2043
|
"gobject-sys",
|
|
1685
2044
|
"libc",
|
|
1686
|
-
"system-deps 6.0.
|
|
2045
|
+
"system-deps 6.0.4",
|
|
1687
2046
|
]
|
|
1688
2047
|
|
|
1689
2048
|
[[package]]
|
|
@@ -1698,38 +2057,34 @@ dependencies = [
|
|
|
1698
2057
|
|
|
1699
2058
|
[[package]]
|
|
1700
2059
|
name = "parking_lot_core"
|
|
1701
|
-
version = "0.9.
|
|
2060
|
+
version = "0.9.7"
|
|
1702
2061
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1703
|
-
checksum = "
|
|
2062
|
+
checksum = "9069cbb9f99e3a5083476ccb29ceb1de18b9118cafa53e90c9551235de2b9521"
|
|
1704
2063
|
dependencies = [
|
|
1705
|
-
"cfg-if",
|
|
2064
|
+
"cfg-if 1.0.0",
|
|
1706
2065
|
"libc",
|
|
1707
|
-
"redox_syscall",
|
|
2066
|
+
"redox_syscall 0.2.16",
|
|
1708
2067
|
"smallvec",
|
|
1709
|
-
"windows-sys",
|
|
2068
|
+
"windows-sys 0.45.0",
|
|
1710
2069
|
]
|
|
1711
2070
|
|
|
1712
2071
|
[[package]]
|
|
1713
2072
|
name = "paste"
|
|
1714
|
-
version = "1.0.
|
|
2073
|
+
version = "1.0.12"
|
|
1715
2074
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1716
|
-
checksum = "
|
|
2075
|
+
checksum = "9f746c4065a8fa3fe23974dd82f15431cc8d40779821001404d10d2e79ca7d79"
|
|
1717
2076
|
|
|
1718
2077
|
[[package]]
|
|
1719
|
-
name = "
|
|
1720
|
-
version = "
|
|
2078
|
+
name = "pathdiff"
|
|
2079
|
+
version = "0.2.1"
|
|
1721
2080
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1722
|
-
checksum = "
|
|
2081
|
+
checksum = "8835116a5c179084a830efb3adc117ab007512b535bc1a21c991d3b32a6b44dd"
|
|
1723
2082
|
|
|
1724
2083
|
[[package]]
|
|
1725
|
-
name = "
|
|
1726
|
-
version = "2.
|
|
2084
|
+
name = "percent-encoding"
|
|
2085
|
+
version = "2.2.0"
|
|
1727
2086
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1728
|
-
checksum = "
|
|
1729
|
-
dependencies = [
|
|
1730
|
-
"thiserror",
|
|
1731
|
-
"ucd-trie",
|
|
1732
|
-
]
|
|
2087
|
+
checksum = "478c572c3d73181ff3c2539045f6eb99e5491218eae919370993b890cdbdd98e"
|
|
1733
2088
|
|
|
1734
2089
|
[[package]]
|
|
1735
2090
|
name = "phf"
|
|
@@ -1794,7 +2149,7 @@ dependencies = [
|
|
|
1794
2149
|
"proc-macro-hack",
|
|
1795
2150
|
"proc-macro2",
|
|
1796
2151
|
"quote",
|
|
1797
|
-
"syn",
|
|
2152
|
+
"syn 1.0.109",
|
|
1798
2153
|
]
|
|
1799
2154
|
|
|
1800
2155
|
[[package]]
|
|
@@ -1808,7 +2163,7 @@ dependencies = [
|
|
|
1808
2163
|
"proc-macro-hack",
|
|
1809
2164
|
"proc-macro2",
|
|
1810
2165
|
"quote",
|
|
1811
|
-
"syn",
|
|
2166
|
+
"syn 1.0.109",
|
|
1812
2167
|
]
|
|
1813
2168
|
|
|
1814
2169
|
[[package]]
|
|
@@ -1846,9 +2201,15 @@ checksum = "069bdb1e05adc7a8990dce9cc75370895fbe4e3d58b9b73bf1aee56359344a55"
|
|
|
1846
2201
|
dependencies = [
|
|
1847
2202
|
"proc-macro2",
|
|
1848
2203
|
"quote",
|
|
1849
|
-
"syn",
|
|
2204
|
+
"syn 1.0.109",
|
|
1850
2205
|
]
|
|
1851
2206
|
|
|
2207
|
+
[[package]]
|
|
2208
|
+
name = "pin-project-lite"
|
|
2209
|
+
version = "0.1.12"
|
|
2210
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2211
|
+
checksum = "257b64915a082f7811703966789728173279bdebb956b143dbcd23f6f970a777"
|
|
2212
|
+
|
|
1852
2213
|
[[package]]
|
|
1853
2214
|
name = "pin-project-lite"
|
|
1854
2215
|
version = "0.2.9"
|
|
@@ -1869,14 +2230,14 @@ checksum = "6ac9a59f73473f1b8d852421e59e64809f025994837ef743615c6d0c5b305160"
|
|
|
1869
2230
|
|
|
1870
2231
|
[[package]]
|
|
1871
2232
|
name = "plist"
|
|
1872
|
-
version = "1.4.
|
|
2233
|
+
version = "1.4.3"
|
|
1873
2234
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1874
|
-
checksum = "
|
|
2235
|
+
checksum = "9bd9647b268a3d3e14ff09c23201133a62589c658db02bb7388c7246aafe0590"
|
|
1875
2236
|
dependencies = [
|
|
1876
|
-
"base64",
|
|
2237
|
+
"base64 0.21.0",
|
|
1877
2238
|
"indexmap",
|
|
1878
2239
|
"line-wrap",
|
|
1879
|
-
"quick-xml",
|
|
2240
|
+
"quick-xml 0.28.1",
|
|
1880
2241
|
"serde",
|
|
1881
2242
|
"time",
|
|
1882
2243
|
]
|
|
@@ -1887,7 +2248,7 @@ version = "0.17.7"
|
|
|
1887
2248
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1888
2249
|
checksum = "5d708eaf860a19b19ce538740d2b4bdeeb8337fa53f7738455e706623ad5c638"
|
|
1889
2250
|
dependencies = [
|
|
1890
|
-
"bitflags",
|
|
2251
|
+
"bitflags 1.3.2",
|
|
1891
2252
|
"crc32fast",
|
|
1892
2253
|
"flate2",
|
|
1893
2254
|
"miniz_oxide",
|
|
@@ -1907,13 +2268,12 @@ checksum = "925383efa346730478fb4838dbe9137d2a47675ad789c546d150a6e1dd4ab31c"
|
|
|
1907
2268
|
|
|
1908
2269
|
[[package]]
|
|
1909
2270
|
name = "proc-macro-crate"
|
|
1910
|
-
version = "1.
|
|
2271
|
+
version = "1.3.1"
|
|
1911
2272
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1912
|
-
checksum = "
|
|
2273
|
+
checksum = "7f4c021e1093a56626774e81216a4ce732a735e5bad4868a03f3ed65ca0c3919"
|
|
1913
2274
|
dependencies = [
|
|
1914
2275
|
"once_cell",
|
|
1915
|
-
"
|
|
1916
|
-
"toml",
|
|
2276
|
+
"toml_edit",
|
|
1917
2277
|
]
|
|
1918
2278
|
|
|
1919
2279
|
[[package]]
|
|
@@ -1925,7 +2285,7 @@ dependencies = [
|
|
|
1925
2285
|
"proc-macro-error-attr",
|
|
1926
2286
|
"proc-macro2",
|
|
1927
2287
|
"quote",
|
|
1928
|
-
"syn",
|
|
2288
|
+
"syn 1.0.109",
|
|
1929
2289
|
"version_check",
|
|
1930
2290
|
]
|
|
1931
2291
|
|
|
@@ -1948,27 +2308,36 @@ checksum = "dc375e1527247fe1a97d8b7156678dfe7c1af2fc075c9a4db3690ecd2a148068"
|
|
|
1948
2308
|
|
|
1949
2309
|
[[package]]
|
|
1950
2310
|
name = "proc-macro2"
|
|
1951
|
-
version = "1.0.
|
|
2311
|
+
version = "1.0.56"
|
|
1952
2312
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1953
|
-
checksum = "
|
|
2313
|
+
checksum = "2b63bdb0cd06f1f4dedf69b254734f9b45af66e4a031e42a7480257d9898b435"
|
|
1954
2314
|
dependencies = [
|
|
1955
2315
|
"unicode-ident",
|
|
1956
2316
|
]
|
|
1957
2317
|
|
|
1958
2318
|
[[package]]
|
|
1959
2319
|
name = "quick-xml"
|
|
1960
|
-
version = "0.
|
|
2320
|
+
version = "0.23.1"
|
|
2321
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2322
|
+
checksum = "11bafc859c6815fbaffbbbf4229ecb767ac913fecb27f9ad4343662e9ef099ea"
|
|
2323
|
+
dependencies = [
|
|
2324
|
+
"memchr",
|
|
2325
|
+
]
|
|
2326
|
+
|
|
2327
|
+
[[package]]
|
|
2328
|
+
name = "quick-xml"
|
|
2329
|
+
version = "0.28.1"
|
|
1961
2330
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1962
|
-
checksum = "
|
|
2331
|
+
checksum = "e5c1a97b1bc42b1d550bfb48d4262153fe400a12bab1511821736f7eac76d7e2"
|
|
1963
2332
|
dependencies = [
|
|
1964
2333
|
"memchr",
|
|
1965
2334
|
]
|
|
1966
2335
|
|
|
1967
2336
|
[[package]]
|
|
1968
2337
|
name = "quote"
|
|
1969
|
-
version = "1.0.
|
|
2338
|
+
version = "1.0.26"
|
|
1970
2339
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1971
|
-
checksum = "
|
|
2340
|
+
checksum = "4424af4bf778aae2051a77b60283332f386554255d722233d09fbfc7e30da2fc"
|
|
1972
2341
|
dependencies = [
|
|
1973
2342
|
"proc-macro2",
|
|
1974
2343
|
]
|
|
@@ -2033,7 +2402,7 @@ version = "0.6.4"
|
|
|
2033
2402
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2034
2403
|
checksum = "ec0be4795e2f6a28069bec0b5ff3e2ac9bafc99e6a9a7dc3547996c5c816922c"
|
|
2035
2404
|
dependencies = [
|
|
2036
|
-
"getrandom 0.2.
|
|
2405
|
+
"getrandom 0.2.9",
|
|
2037
2406
|
]
|
|
2038
2407
|
|
|
2039
2408
|
[[package]]
|
|
@@ -2056,42 +2425,26 @@ dependencies = [
|
|
|
2056
2425
|
|
|
2057
2426
|
[[package]]
|
|
2058
2427
|
name = "raw-window-handle"
|
|
2059
|
-
version = "0.5.
|
|
2060
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2061
|
-
checksum = "ed7e3d950b66e19e0c372f3fa3fbbcf85b1746b571f74e0c2af6042a5c93420a"
|
|
2062
|
-
dependencies = [
|
|
2063
|
-
"cty",
|
|
2064
|
-
]
|
|
2065
|
-
|
|
2066
|
-
[[package]]
|
|
2067
|
-
name = "rayon"
|
|
2068
|
-
version = "1.6.1"
|
|
2428
|
+
version = "0.5.2"
|
|
2069
2429
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2070
|
-
checksum = "
|
|
2071
|
-
dependencies = [
|
|
2072
|
-
"either",
|
|
2073
|
-
"rayon-core",
|
|
2074
|
-
]
|
|
2430
|
+
checksum = "f2ff9a1f06a88b01621b7ae906ef0211290d1c8a168a15542486a8f61c0833b9"
|
|
2075
2431
|
|
|
2076
2432
|
[[package]]
|
|
2077
|
-
name = "
|
|
2078
|
-
version = "
|
|
2433
|
+
name = "redox_syscall"
|
|
2434
|
+
version = "0.2.16"
|
|
2079
2435
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2080
|
-
checksum = "
|
|
2436
|
+
checksum = "fb5a58c1855b4b6819d59012155603f0b22ad30cad752600aadfcb695265519a"
|
|
2081
2437
|
dependencies = [
|
|
2082
|
-
"
|
|
2083
|
-
"crossbeam-deque",
|
|
2084
|
-
"crossbeam-utils",
|
|
2085
|
-
"num_cpus",
|
|
2438
|
+
"bitflags 1.3.2",
|
|
2086
2439
|
]
|
|
2087
2440
|
|
|
2088
2441
|
[[package]]
|
|
2089
2442
|
name = "redox_syscall"
|
|
2090
|
-
version = "0.
|
|
2443
|
+
version = "0.3.5"
|
|
2091
2444
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2092
|
-
checksum = "
|
|
2445
|
+
checksum = "567664f262709473930a4bf9e51bf2ebf3348f2e748ccc50dea20646858f8f29"
|
|
2093
2446
|
dependencies = [
|
|
2094
|
-
"bitflags",
|
|
2447
|
+
"bitflags 1.3.2",
|
|
2095
2448
|
]
|
|
2096
2449
|
|
|
2097
2450
|
[[package]]
|
|
@@ -2100,16 +2453,16 @@ version = "0.4.3"
|
|
|
2100
2453
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2101
2454
|
checksum = "b033d837a7cf162d7993aded9304e30a83213c648b6e389db233191f891e5c2b"
|
|
2102
2455
|
dependencies = [
|
|
2103
|
-
"getrandom 0.2.
|
|
2104
|
-
"redox_syscall",
|
|
2456
|
+
"getrandom 0.2.9",
|
|
2457
|
+
"redox_syscall 0.2.16",
|
|
2105
2458
|
"thiserror",
|
|
2106
2459
|
]
|
|
2107
2460
|
|
|
2108
2461
|
[[package]]
|
|
2109
2462
|
name = "regex"
|
|
2110
|
-
version = "1.7.
|
|
2463
|
+
version = "1.7.3"
|
|
2111
2464
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2112
|
-
checksum = "
|
|
2465
|
+
checksum = "8b1f693b24f6ac912f4893ef08244d70b6067480d2f1a46e950c9691e6749d1d"
|
|
2113
2466
|
dependencies = [
|
|
2114
2467
|
"aho-corasick",
|
|
2115
2468
|
"memchr",
|
|
@@ -2127,26 +2480,67 @@ dependencies = [
|
|
|
2127
2480
|
|
|
2128
2481
|
[[package]]
|
|
2129
2482
|
name = "regex-syntax"
|
|
2130
|
-
version = "0.6.
|
|
2483
|
+
version = "0.6.29"
|
|
2131
2484
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2132
|
-
checksum = "
|
|
2485
|
+
checksum = "f162c6dd7b008981e4d40210aca20b4bd0f9b60ca9271061b07f78537722f2e1"
|
|
2133
2486
|
|
|
2134
2487
|
[[package]]
|
|
2135
|
-
name = "
|
|
2136
|
-
version = "0.
|
|
2488
|
+
name = "reqwest"
|
|
2489
|
+
version = "0.10.10"
|
|
2137
2490
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2138
|
-
checksum = "
|
|
2491
|
+
checksum = "0718f81a8e14c4dbb3b34cf23dc6aaf9ab8a0dfec160c534b3dbca1aaa21f47c"
|
|
2139
2492
|
dependencies = [
|
|
2140
|
-
"
|
|
2493
|
+
"base64 0.13.1",
|
|
2494
|
+
"bytes 0.5.6",
|
|
2495
|
+
"encoding_rs",
|
|
2496
|
+
"futures-core",
|
|
2497
|
+
"futures-util",
|
|
2498
|
+
"http",
|
|
2499
|
+
"http-body",
|
|
2500
|
+
"hyper",
|
|
2501
|
+
"hyper-tls",
|
|
2502
|
+
"ipnet",
|
|
2503
|
+
"js-sys",
|
|
2504
|
+
"lazy_static",
|
|
2505
|
+
"log",
|
|
2506
|
+
"mime",
|
|
2507
|
+
"mime_guess",
|
|
2508
|
+
"native-tls",
|
|
2509
|
+
"percent-encoding",
|
|
2510
|
+
"pin-project-lite 0.2.9",
|
|
2511
|
+
"serde",
|
|
2512
|
+
"serde_urlencoded",
|
|
2513
|
+
"tokio 0.2.25",
|
|
2514
|
+
"tokio-tls",
|
|
2515
|
+
"url",
|
|
2516
|
+
"wasm-bindgen",
|
|
2517
|
+
"wasm-bindgen-futures",
|
|
2518
|
+
"web-sys",
|
|
2519
|
+
"winreg",
|
|
2141
2520
|
]
|
|
2142
2521
|
|
|
2143
2522
|
[[package]]
|
|
2144
|
-
name = "
|
|
2145
|
-
version = "0.
|
|
2523
|
+
name = "rfd"
|
|
2524
|
+
version = "0.10.0"
|
|
2146
2525
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2147
|
-
checksum = "
|
|
2526
|
+
checksum = "0149778bd99b6959285b0933288206090c50e2327f47a9c463bfdbf45c8823ea"
|
|
2148
2527
|
dependencies = [
|
|
2149
|
-
"
|
|
2528
|
+
"block",
|
|
2529
|
+
"dispatch",
|
|
2530
|
+
"glib-sys",
|
|
2531
|
+
"gobject-sys",
|
|
2532
|
+
"gtk-sys",
|
|
2533
|
+
"js-sys",
|
|
2534
|
+
"lazy_static",
|
|
2535
|
+
"log",
|
|
2536
|
+
"objc",
|
|
2537
|
+
"objc-foundation",
|
|
2538
|
+
"objc_id",
|
|
2539
|
+
"raw-window-handle",
|
|
2540
|
+
"wasm-bindgen",
|
|
2541
|
+
"wasm-bindgen-futures",
|
|
2542
|
+
"web-sys",
|
|
2543
|
+
"windows 0.37.0",
|
|
2150
2544
|
]
|
|
2151
2545
|
|
|
2152
2546
|
[[package]]
|
|
@@ -2155,20 +2549,34 @@ version = "0.4.0"
|
|
|
2155
2549
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2156
2550
|
checksum = "bfa0f585226d2e68097d4f95d113b15b83a82e819ab25717ec0590d9584ef366"
|
|
2157
2551
|
dependencies = [
|
|
2158
|
-
"semver
|
|
2552
|
+
"semver",
|
|
2553
|
+
]
|
|
2554
|
+
|
|
2555
|
+
[[package]]
|
|
2556
|
+
name = "rustix"
|
|
2557
|
+
version = "0.37.11"
|
|
2558
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2559
|
+
checksum = "85597d61f83914ddeba6a47b3b8ffe7365107221c2e557ed94426489fefb5f77"
|
|
2560
|
+
dependencies = [
|
|
2561
|
+
"bitflags 1.3.2",
|
|
2562
|
+
"errno",
|
|
2563
|
+
"io-lifetimes",
|
|
2564
|
+
"libc",
|
|
2565
|
+
"linux-raw-sys",
|
|
2566
|
+
"windows-sys 0.48.0",
|
|
2159
2567
|
]
|
|
2160
2568
|
|
|
2161
2569
|
[[package]]
|
|
2162
2570
|
name = "rustversion"
|
|
2163
|
-
version = "1.0.
|
|
2571
|
+
version = "1.0.12"
|
|
2164
2572
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2165
|
-
checksum = "
|
|
2573
|
+
checksum = "4f3208ce4d8448b3f3e7d168a73f5e0c43a61e32930de3bceeccedb388b6bf06"
|
|
2166
2574
|
|
|
2167
2575
|
[[package]]
|
|
2168
2576
|
name = "ryu"
|
|
2169
|
-
version = "1.0.
|
|
2577
|
+
version = "1.0.13"
|
|
2170
2578
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2171
|
-
checksum = "
|
|
2579
|
+
checksum = "f91339c0467de62360649f8d3e185ca8de4224ff281f66000de5eb2a77a79041"
|
|
2172
2580
|
|
|
2173
2581
|
[[package]]
|
|
2174
2582
|
name = "safemem"
|
|
@@ -2186,16 +2594,19 @@ dependencies = [
|
|
|
2186
2594
|
]
|
|
2187
2595
|
|
|
2188
2596
|
[[package]]
|
|
2189
|
-
name = "
|
|
2190
|
-
version = "
|
|
2597
|
+
name = "schannel"
|
|
2598
|
+
version = "0.1.21"
|
|
2191
2599
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2192
|
-
checksum = "
|
|
2600
|
+
checksum = "713cfb06c7059f3588fb8044c0fad1d09e3c01d225e25b9220dbfdcf16dbb1b3"
|
|
2601
|
+
dependencies = [
|
|
2602
|
+
"windows-sys 0.42.0",
|
|
2603
|
+
]
|
|
2193
2604
|
|
|
2194
2605
|
[[package]]
|
|
2195
|
-
name = "
|
|
2196
|
-
version = "0.1
|
|
2606
|
+
name = "scoped-tls"
|
|
2607
|
+
version = "1.0.1"
|
|
2197
2608
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2198
|
-
checksum = "
|
|
2609
|
+
checksum = "e1cf6437eb19a8f4a6cc0f7dca544973b0b78843adbfeb3683d1a94a0024a294"
|
|
2199
2610
|
|
|
2200
2611
|
[[package]]
|
|
2201
2612
|
name = "scopeguard"
|
|
@@ -2204,15 +2615,38 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
2204
2615
|
checksum = "d29ab0c6d3fc0ee92fe66e2d99f700eab17a8d57d1c1d3b748380fb20baa78cd"
|
|
2205
2616
|
|
|
2206
2617
|
[[package]]
|
|
2207
|
-
name = "
|
|
2208
|
-
version = "
|
|
2618
|
+
name = "security-framework"
|
|
2619
|
+
version = "2.8.2"
|
|
2209
2620
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2210
|
-
checksum = "
|
|
2621
|
+
checksum = "a332be01508d814fed64bf28f798a146d73792121129962fdf335bb3c49a4254"
|
|
2211
2622
|
dependencies = [
|
|
2212
|
-
"bitflags",
|
|
2213
|
-
"
|
|
2214
|
-
"
|
|
2215
|
-
"
|
|
2623
|
+
"bitflags 1.3.2",
|
|
2624
|
+
"core-foundation",
|
|
2625
|
+
"core-foundation-sys",
|
|
2626
|
+
"libc",
|
|
2627
|
+
"security-framework-sys",
|
|
2628
|
+
]
|
|
2629
|
+
|
|
2630
|
+
[[package]]
|
|
2631
|
+
name = "security-framework-sys"
|
|
2632
|
+
version = "2.8.0"
|
|
2633
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2634
|
+
checksum = "31c9bb296072e961fcbd8853511dd39c2d8be2deb1e17c6860b1d30732b323b4"
|
|
2635
|
+
dependencies = [
|
|
2636
|
+
"core-foundation-sys",
|
|
2637
|
+
"libc",
|
|
2638
|
+
]
|
|
2639
|
+
|
|
2640
|
+
[[package]]
|
|
2641
|
+
name = "selectors"
|
|
2642
|
+
version = "0.22.0"
|
|
2643
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2644
|
+
checksum = "df320f1889ac4ba6bc0cdc9c9af7af4bd64bb927bccdf32d81140dc1f9be12fe"
|
|
2645
|
+
dependencies = [
|
|
2646
|
+
"bitflags 1.3.2",
|
|
2647
|
+
"cssparser",
|
|
2648
|
+
"derive_more",
|
|
2649
|
+
"fxhash",
|
|
2216
2650
|
"log",
|
|
2217
2651
|
"matches",
|
|
2218
2652
|
"phf 0.8.0",
|
|
@@ -2225,71 +2659,74 @@ dependencies = [
|
|
|
2225
2659
|
|
|
2226
2660
|
[[package]]
|
|
2227
2661
|
name = "semver"
|
|
2228
|
-
version = "0.
|
|
2662
|
+
version = "1.0.17"
|
|
2229
2663
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2230
|
-
checksum = "
|
|
2664
|
+
checksum = "bebd363326d05ec3e2f532ab7660680f3b02130d780c299bca73469d521bc0ed"
|
|
2231
2665
|
dependencies = [
|
|
2232
|
-
"
|
|
2666
|
+
"serde",
|
|
2233
2667
|
]
|
|
2234
2668
|
|
|
2235
2669
|
[[package]]
|
|
2236
|
-
name = "
|
|
2237
|
-
version = "1.0.
|
|
2670
|
+
name = "serde"
|
|
2671
|
+
version = "1.0.159"
|
|
2238
2672
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2239
|
-
checksum = "
|
|
2673
|
+
checksum = "3c04e8343c3daeec41f58990b9d77068df31209f2af111e059e9fe9646693065"
|
|
2240
2674
|
dependencies = [
|
|
2241
|
-
"
|
|
2675
|
+
"serde_derive",
|
|
2242
2676
|
]
|
|
2243
2677
|
|
|
2244
2678
|
[[package]]
|
|
2245
|
-
name = "
|
|
2246
|
-
version = "0.
|
|
2679
|
+
name = "serde_derive"
|
|
2680
|
+
version = "1.0.159"
|
|
2247
2681
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2248
|
-
checksum = "
|
|
2682
|
+
checksum = "4c614d17805b093df4b147b51339e7e44bf05ef59fba1e45d83500bcfb4d8585"
|
|
2249
2683
|
dependencies = [
|
|
2250
|
-
"
|
|
2684
|
+
"proc-macro2",
|
|
2685
|
+
"quote",
|
|
2686
|
+
"syn 2.0.13",
|
|
2251
2687
|
]
|
|
2252
2688
|
|
|
2253
2689
|
[[package]]
|
|
2254
|
-
name = "
|
|
2255
|
-
version = "1.0.
|
|
2690
|
+
name = "serde_json"
|
|
2691
|
+
version = "1.0.95"
|
|
2256
2692
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2257
|
-
checksum = "
|
|
2693
|
+
checksum = "d721eca97ac802aa7777b701877c8004d950fc142651367300d21c1cc0194744"
|
|
2258
2694
|
dependencies = [
|
|
2259
|
-
"
|
|
2695
|
+
"itoa 1.0.6",
|
|
2696
|
+
"ryu",
|
|
2697
|
+
"serde",
|
|
2260
2698
|
]
|
|
2261
2699
|
|
|
2262
2700
|
[[package]]
|
|
2263
|
-
name = "
|
|
2264
|
-
version = "1.
|
|
2701
|
+
name = "serde_repr"
|
|
2702
|
+
version = "0.1.12"
|
|
2265
2703
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2266
|
-
checksum = "
|
|
2704
|
+
checksum = "bcec881020c684085e55a25f7fd888954d56609ef363479dc5a1305eb0d40cab"
|
|
2267
2705
|
dependencies = [
|
|
2268
2706
|
"proc-macro2",
|
|
2269
2707
|
"quote",
|
|
2270
|
-
"syn",
|
|
2708
|
+
"syn 2.0.13",
|
|
2271
2709
|
]
|
|
2272
2710
|
|
|
2273
2711
|
[[package]]
|
|
2274
|
-
name = "
|
|
2275
|
-
version = "
|
|
2712
|
+
name = "serde_spanned"
|
|
2713
|
+
version = "0.6.1"
|
|
2276
2714
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2277
|
-
checksum = "
|
|
2715
|
+
checksum = "0efd8caf556a6cebd3b285caf480045fcc1ac04f6bd786b09a6f11af30c4fcf4"
|
|
2278
2716
|
dependencies = [
|
|
2279
|
-
"itoa 1.0.5",
|
|
2280
|
-
"ryu",
|
|
2281
2717
|
"serde",
|
|
2282
2718
|
]
|
|
2283
2719
|
|
|
2284
2720
|
[[package]]
|
|
2285
|
-
name = "
|
|
2286
|
-
version = "0.1
|
|
2721
|
+
name = "serde_urlencoded"
|
|
2722
|
+
version = "0.7.1"
|
|
2287
2723
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2288
|
-
checksum = "
|
|
2724
|
+
checksum = "d3491c14715ca2294c4d6a88f15e84739788c1d030eed8c110436aafdaa2f3fd"
|
|
2289
2725
|
dependencies = [
|
|
2290
|
-
"
|
|
2291
|
-
"
|
|
2292
|
-
"
|
|
2726
|
+
"form_urlencoded",
|
|
2727
|
+
"itoa 1.0.6",
|
|
2728
|
+
"ryu",
|
|
2729
|
+
"serde",
|
|
2293
2730
|
]
|
|
2294
2731
|
|
|
2295
2732
|
[[package]]
|
|
@@ -2311,7 +2748,7 @@ dependencies = [
|
|
|
2311
2748
|
"darling",
|
|
2312
2749
|
"proc-macro2",
|
|
2313
2750
|
"quote",
|
|
2314
|
-
"syn",
|
|
2751
|
+
"syn 1.0.109",
|
|
2315
2752
|
]
|
|
2316
2753
|
|
|
2317
2754
|
[[package]]
|
|
@@ -2333,7 +2770,7 @@ checksum = "74064874e9f6a15f04c1f3cb627902d0e6b410abbf36668afa873c61889f1763"
|
|
|
2333
2770
|
dependencies = [
|
|
2334
2771
|
"proc-macro2",
|
|
2335
2772
|
"quote",
|
|
2336
|
-
"syn",
|
|
2773
|
+
"syn 1.0.109",
|
|
2337
2774
|
]
|
|
2338
2775
|
|
|
2339
2776
|
[[package]]
|
|
@@ -2352,7 +2789,7 @@ version = "0.10.6"
|
|
|
2352
2789
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2353
2790
|
checksum = "82e6b795fe2e3b1e845bafcb27aa35405c4d47cdfc92af5fc8d3002f76cebdc0"
|
|
2354
2791
|
dependencies = [
|
|
2355
|
-
"cfg-if",
|
|
2792
|
+
"cfg-if 1.0.0",
|
|
2356
2793
|
"cpufeatures",
|
|
2357
2794
|
"digest",
|
|
2358
2795
|
]
|
|
@@ -2366,6 +2803,25 @@ dependencies = [
|
|
|
2366
2803
|
"lazy_static",
|
|
2367
2804
|
]
|
|
2368
2805
|
|
|
2806
|
+
[[package]]
|
|
2807
|
+
name = "shared_child"
|
|
2808
|
+
version = "1.0.0"
|
|
2809
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2810
|
+
checksum = "b0d94659ad3c2137fef23ae75b03d5241d633f8acded53d672decfa0e6e0caef"
|
|
2811
|
+
dependencies = [
|
|
2812
|
+
"libc",
|
|
2813
|
+
"winapi 0.3.9",
|
|
2814
|
+
]
|
|
2815
|
+
|
|
2816
|
+
[[package]]
|
|
2817
|
+
name = "signal-hook-registry"
|
|
2818
|
+
version = "1.4.1"
|
|
2819
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2820
|
+
checksum = "d8229b473baa5980ac72ef434c4415e70c4b5e71b423043adb4ba059f89c99a1"
|
|
2821
|
+
dependencies = [
|
|
2822
|
+
"libc",
|
|
2823
|
+
]
|
|
2824
|
+
|
|
2369
2825
|
[[package]]
|
|
2370
2826
|
name = "siphasher"
|
|
2371
2827
|
version = "0.3.10"
|
|
@@ -2374,9 +2830,9 @@ checksum = "7bd3e3206899af3f8b12af284fafc038cc1dc2b41d1b89dd17297221c5d225de"
|
|
|
2374
2830
|
|
|
2375
2831
|
[[package]]
|
|
2376
2832
|
name = "slab"
|
|
2377
|
-
version = "0.4.
|
|
2833
|
+
version = "0.4.8"
|
|
2378
2834
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2379
|
-
checksum = "
|
|
2835
|
+
checksum = "6528351c9bc8ab22353f9d776db39a20288e8d6c37ef8cfe3317cf875eecfc2d"
|
|
2380
2836
|
dependencies = [
|
|
2381
2837
|
"autocfg",
|
|
2382
2838
|
]
|
|
@@ -2387,13 +2843,24 @@ version = "1.10.0"
|
|
|
2387
2843
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2388
2844
|
checksum = "a507befe795404456341dfab10cef66ead4c041f62b8b11bbb92bffe5d0953e0"
|
|
2389
2845
|
|
|
2846
|
+
[[package]]
|
|
2847
|
+
name = "socket2"
|
|
2848
|
+
version = "0.3.19"
|
|
2849
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2850
|
+
checksum = "122e570113d28d773067fab24266b66753f6ea915758651696b6e35e49f88d6e"
|
|
2851
|
+
dependencies = [
|
|
2852
|
+
"cfg-if 1.0.0",
|
|
2853
|
+
"libc",
|
|
2854
|
+
"winapi 0.3.9",
|
|
2855
|
+
]
|
|
2856
|
+
|
|
2390
2857
|
[[package]]
|
|
2391
2858
|
name = "soup2"
|
|
2392
2859
|
version = "0.2.1"
|
|
2393
2860
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2394
2861
|
checksum = "b2b4d76501d8ba387cf0fefbe055c3e0a59891d09f0f995ae4e4b16f6b60f3c0"
|
|
2395
2862
|
dependencies = [
|
|
2396
|
-
"bitflags",
|
|
2863
|
+
"bitflags 1.3.2",
|
|
2397
2864
|
"gio",
|
|
2398
2865
|
"glib",
|
|
2399
2866
|
"libc",
|
|
@@ -2407,7 +2874,7 @@ version = "0.2.0"
|
|
|
2407
2874
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2408
2875
|
checksum = "009ef427103fcb17f802871647a7fa6c60cbb654b4c4e4c0ac60a31c5f6dc9cf"
|
|
2409
2876
|
dependencies = [
|
|
2410
|
-
"bitflags",
|
|
2877
|
+
"bitflags 1.3.2",
|
|
2411
2878
|
"gio-sys",
|
|
2412
2879
|
"glib-sys",
|
|
2413
2880
|
"gobject-sys",
|
|
@@ -2415,15 +2882,6 @@ dependencies = [
|
|
|
2415
2882
|
"system-deps 5.0.0",
|
|
2416
2883
|
]
|
|
2417
2884
|
|
|
2418
|
-
[[package]]
|
|
2419
|
-
name = "spin"
|
|
2420
|
-
version = "0.9.4"
|
|
2421
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2422
|
-
checksum = "7f6002a767bff9e83f8eeecf883ecb8011875a21ae8da43bffb817a57e78cc09"
|
|
2423
|
-
dependencies = [
|
|
2424
|
-
"lock_api",
|
|
2425
|
-
]
|
|
2426
|
-
|
|
2427
2885
|
[[package]]
|
|
2428
2886
|
name = "stable_deref_trait"
|
|
2429
2887
|
version = "1.2.0"
|
|
@@ -2441,9 +2899,9 @@ dependencies = [
|
|
|
2441
2899
|
|
|
2442
2900
|
[[package]]
|
|
2443
2901
|
name = "string_cache"
|
|
2444
|
-
version = "0.8.
|
|
2902
|
+
version = "0.8.7"
|
|
2445
2903
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2446
|
-
checksum = "
|
|
2904
|
+
checksum = "f91138e76242f575eb1d3b38b4f1362f10d3a43f47d182a5b359af488a02293b"
|
|
2447
2905
|
dependencies = [
|
|
2448
2906
|
"new_debug_unreachable",
|
|
2449
2907
|
"once_cell",
|
|
@@ -2471,11 +2929,43 @@ version = "0.10.0"
|
|
|
2471
2929
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2472
2930
|
checksum = "73473c0e59e6d5812c5dfe2a064a6444949f089e20eec9a2e5506596494e4623"
|
|
2473
2931
|
|
|
2932
|
+
[[package]]
|
|
2933
|
+
name = "strum"
|
|
2934
|
+
version = "0.22.0"
|
|
2935
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2936
|
+
checksum = "f7ac893c7d471c8a21f31cfe213ec4f6d9afeed25537c772e08ef3f005f8729e"
|
|
2937
|
+
dependencies = [
|
|
2938
|
+
"strum_macros",
|
|
2939
|
+
]
|
|
2940
|
+
|
|
2941
|
+
[[package]]
|
|
2942
|
+
name = "strum_macros"
|
|
2943
|
+
version = "0.22.0"
|
|
2944
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2945
|
+
checksum = "339f799d8b549e3744c7ac7feb216383e4005d94bdb22561b3ab8f3b808ae9fb"
|
|
2946
|
+
dependencies = [
|
|
2947
|
+
"heck 0.3.3",
|
|
2948
|
+
"proc-macro2",
|
|
2949
|
+
"quote",
|
|
2950
|
+
"syn 1.0.109",
|
|
2951
|
+
]
|
|
2952
|
+
|
|
2953
|
+
[[package]]
|
|
2954
|
+
name = "syn"
|
|
2955
|
+
version = "1.0.109"
|
|
2956
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2957
|
+
checksum = "72b64191b275b66ffe2469e8af2c1cfe3bafa67b529ead792a6d0160888b4237"
|
|
2958
|
+
dependencies = [
|
|
2959
|
+
"proc-macro2",
|
|
2960
|
+
"quote",
|
|
2961
|
+
"unicode-ident",
|
|
2962
|
+
]
|
|
2963
|
+
|
|
2474
2964
|
[[package]]
|
|
2475
2965
|
name = "syn"
|
|
2476
|
-
version = "
|
|
2966
|
+
version = "2.0.13"
|
|
2477
2967
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2478
|
-
checksum = "
|
|
2968
|
+
checksum = "4c9da457c5285ac1f936ebd076af6dac17a61cfe7826f2076b4d015cf47bc8ec"
|
|
2479
2969
|
dependencies = [
|
|
2480
2970
|
"proc-macro2",
|
|
2481
2971
|
"quote",
|
|
@@ -2491,20 +2981,20 @@ dependencies = [
|
|
|
2491
2981
|
"cfg-expr 0.9.1",
|
|
2492
2982
|
"heck 0.3.3",
|
|
2493
2983
|
"pkg-config",
|
|
2494
|
-
"toml",
|
|
2984
|
+
"toml 0.5.11",
|
|
2495
2985
|
"version-compare 0.0.11",
|
|
2496
2986
|
]
|
|
2497
2987
|
|
|
2498
2988
|
[[package]]
|
|
2499
2989
|
name = "system-deps"
|
|
2500
|
-
version = "6.0.
|
|
2990
|
+
version = "6.0.4"
|
|
2501
2991
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2502
|
-
checksum = "
|
|
2992
|
+
checksum = "555fc8147af6256f3931a36bb83ad0023240ce9cf2b319dec8236fd1f220b05f"
|
|
2503
2993
|
dependencies = [
|
|
2504
|
-
"cfg-expr 0.
|
|
2505
|
-
"heck 0.4.
|
|
2994
|
+
"cfg-expr 0.14.0",
|
|
2995
|
+
"heck 0.4.1",
|
|
2506
2996
|
"pkg-config",
|
|
2507
|
-
"toml",
|
|
2997
|
+
"toml 0.7.3",
|
|
2508
2998
|
"version-compare 0.1.1",
|
|
2509
2999
|
]
|
|
2510
3000
|
|
|
@@ -2514,13 +3004,14 @@ version = "0.15.8"
|
|
|
2514
3004
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2515
3005
|
checksum = "ac8e6399427c8494f9849b58694754d7cc741293348a6836b6c8d2c5aa82d8e6"
|
|
2516
3006
|
dependencies = [
|
|
2517
|
-
"bitflags",
|
|
3007
|
+
"bitflags 1.3.2",
|
|
2518
3008
|
"cairo-rs",
|
|
2519
3009
|
"cc",
|
|
2520
3010
|
"cocoa",
|
|
2521
3011
|
"core-foundation",
|
|
2522
3012
|
"core-graphics",
|
|
2523
3013
|
"crossbeam-channel",
|
|
3014
|
+
"dirs-next",
|
|
2524
3015
|
"dispatch",
|
|
2525
3016
|
"gdk",
|
|
2526
3017
|
"gdk-pixbuf",
|
|
@@ -2534,6 +3025,7 @@ dependencies = [
|
|
|
2534
3025
|
"instant",
|
|
2535
3026
|
"jni",
|
|
2536
3027
|
"lazy_static",
|
|
3028
|
+
"libappindicator",
|
|
2537
3029
|
"libc",
|
|
2538
3030
|
"log",
|
|
2539
3031
|
"ndk",
|
|
@@ -2548,8 +3040,8 @@ dependencies = [
|
|
|
2548
3040
|
"scopeguard",
|
|
2549
3041
|
"serde",
|
|
2550
3042
|
"unicode-segmentation",
|
|
2551
|
-
"uuid 1.
|
|
2552
|
-
"windows",
|
|
3043
|
+
"uuid 1.3.0",
|
|
3044
|
+
"windows 0.39.0",
|
|
2553
3045
|
"windows-implement",
|
|
2554
3046
|
"x11-dl",
|
|
2555
3047
|
]
|
|
@@ -2572,6 +3064,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
2572
3064
|
checksum = "fe7e0f1d535e7cbbbab43c82be4fc992b84f9156c16c160955617e0260ebc449"
|
|
2573
3065
|
dependencies = [
|
|
2574
3066
|
"anyhow",
|
|
3067
|
+
"attohttpc",
|
|
2575
3068
|
"cocoa",
|
|
2576
3069
|
"dirs-next",
|
|
2577
3070
|
"embed_plist",
|
|
@@ -2581,19 +3074,26 @@ dependencies = [
|
|
|
2581
3074
|
"glib",
|
|
2582
3075
|
"glob",
|
|
2583
3076
|
"gtk",
|
|
2584
|
-
"heck 0.4.
|
|
3077
|
+
"heck 0.4.1",
|
|
2585
3078
|
"http",
|
|
2586
3079
|
"ignore",
|
|
3080
|
+
"notify-rust",
|
|
2587
3081
|
"objc",
|
|
2588
3082
|
"once_cell",
|
|
3083
|
+
"open",
|
|
3084
|
+
"os_info",
|
|
3085
|
+
"os_pipe",
|
|
2589
3086
|
"percent-encoding",
|
|
2590
3087
|
"rand 0.8.5",
|
|
2591
3088
|
"raw-window-handle",
|
|
2592
|
-
"
|
|
3089
|
+
"regex",
|
|
3090
|
+
"rfd",
|
|
3091
|
+
"semver",
|
|
2593
3092
|
"serde",
|
|
2594
3093
|
"serde_json",
|
|
2595
3094
|
"serde_repr",
|
|
2596
3095
|
"serialize-to-javascript",
|
|
3096
|
+
"shared_child",
|
|
2597
3097
|
"state",
|
|
2598
3098
|
"tar",
|
|
2599
3099
|
"tauri-macros",
|
|
@@ -2602,12 +3102,12 @@ dependencies = [
|
|
|
2602
3102
|
"tauri-utils",
|
|
2603
3103
|
"tempfile",
|
|
2604
3104
|
"thiserror",
|
|
2605
|
-
"tokio",
|
|
3105
|
+
"tokio 1.27.0",
|
|
2606
3106
|
"url",
|
|
2607
|
-
"uuid 1.
|
|
3107
|
+
"uuid 1.3.0",
|
|
2608
3108
|
"webkit2gtk",
|
|
2609
3109
|
"webview2-com",
|
|
2610
|
-
"windows",
|
|
3110
|
+
"windows 0.39.0",
|
|
2611
3111
|
]
|
|
2612
3112
|
|
|
2613
3113
|
[[package]]
|
|
@@ -2618,9 +3118,9 @@ checksum = "8807c85d656b2b93927c19fe5a5f1f1f348f96c2de8b90763b3c2d561511f9b4"
|
|
|
2618
3118
|
dependencies = [
|
|
2619
3119
|
"anyhow",
|
|
2620
3120
|
"cargo_toml",
|
|
2621
|
-
"heck 0.4.
|
|
3121
|
+
"heck 0.4.1",
|
|
2622
3122
|
"json-patch",
|
|
2623
|
-
"semver
|
|
3123
|
+
"semver",
|
|
2624
3124
|
"serde_json",
|
|
2625
3125
|
"tauri-utils",
|
|
2626
3126
|
"winres",
|
|
@@ -2632,7 +3132,7 @@ version = "1.2.1"
|
|
|
2632
3132
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2633
3133
|
checksum = "14388d484b6b1b5dc0f6a7d6cc6433b3b230bec85eaa576adcdf3f9fafa49251"
|
|
2634
3134
|
dependencies = [
|
|
2635
|
-
"base64",
|
|
3135
|
+
"base64 0.13.1",
|
|
2636
3136
|
"brotli",
|
|
2637
3137
|
"ico",
|
|
2638
3138
|
"json-patch",
|
|
@@ -2640,14 +3140,15 @@ dependencies = [
|
|
|
2640
3140
|
"png",
|
|
2641
3141
|
"proc-macro2",
|
|
2642
3142
|
"quote",
|
|
2643
|
-
"
|
|
3143
|
+
"regex",
|
|
3144
|
+
"semver",
|
|
2644
3145
|
"serde",
|
|
2645
3146
|
"serde_json",
|
|
2646
3147
|
"sha2",
|
|
2647
3148
|
"tauri-utils",
|
|
2648
3149
|
"thiserror",
|
|
2649
3150
|
"time",
|
|
2650
|
-
"uuid 1.
|
|
3151
|
+
"uuid 1.3.0",
|
|
2651
3152
|
"walkdir",
|
|
2652
3153
|
]
|
|
2653
3154
|
|
|
@@ -2657,14 +3158,28 @@ version = "1.2.1"
|
|
|
2657
3158
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2658
3159
|
checksum = "069319e5ecbe653a799b94b0690d9f9bf5d00f7b1d3989aa331c524d4e354075"
|
|
2659
3160
|
dependencies = [
|
|
2660
|
-
"heck 0.4.
|
|
3161
|
+
"heck 0.4.1",
|
|
2661
3162
|
"proc-macro2",
|
|
2662
3163
|
"quote",
|
|
2663
|
-
"syn",
|
|
3164
|
+
"syn 1.0.109",
|
|
2664
3165
|
"tauri-codegen",
|
|
2665
3166
|
"tauri-utils",
|
|
2666
3167
|
]
|
|
2667
3168
|
|
|
3169
|
+
[[package]]
|
|
3170
|
+
name = "tauri-plugin-window-state"
|
|
3171
|
+
version = "0.1.0"
|
|
3172
|
+
source = "git+https://github.com/tauri-apps/plugins-workspace?branch=dev#cea1d4f7b54b94354e8100daf804b810c680efd7"
|
|
3173
|
+
dependencies = [
|
|
3174
|
+
"bincode",
|
|
3175
|
+
"bitflags 2.1.0",
|
|
3176
|
+
"log",
|
|
3177
|
+
"serde",
|
|
3178
|
+
"serde_json",
|
|
3179
|
+
"tauri",
|
|
3180
|
+
"thiserror",
|
|
3181
|
+
]
|
|
3182
|
+
|
|
2668
3183
|
[[package]]
|
|
2669
3184
|
name = "tauri-runtime"
|
|
2670
3185
|
version = "0.12.1"
|
|
@@ -2680,9 +3195,9 @@ dependencies = [
|
|
|
2680
3195
|
"serde_json",
|
|
2681
3196
|
"tauri-utils",
|
|
2682
3197
|
"thiserror",
|
|
2683
|
-
"uuid 1.
|
|
3198
|
+
"uuid 1.3.0",
|
|
2684
3199
|
"webview2-com",
|
|
2685
|
-
"windows",
|
|
3200
|
+
"windows 0.39.0",
|
|
2686
3201
|
]
|
|
2687
3202
|
|
|
2688
3203
|
[[package]]
|
|
@@ -2698,10 +3213,10 @@ dependencies = [
|
|
|
2698
3213
|
"raw-window-handle",
|
|
2699
3214
|
"tauri-runtime",
|
|
2700
3215
|
"tauri-utils",
|
|
2701
|
-
"uuid 1.
|
|
3216
|
+
"uuid 1.3.0",
|
|
2702
3217
|
"webkit2gtk",
|
|
2703
3218
|
"webview2-com",
|
|
2704
|
-
"windows",
|
|
3219
|
+
"windows 0.39.0",
|
|
2705
3220
|
"wry",
|
|
2706
3221
|
]
|
|
2707
3222
|
|
|
@@ -2714,7 +3229,7 @@ dependencies = [
|
|
|
2714
3229
|
"brotli",
|
|
2715
3230
|
"ctor",
|
|
2716
3231
|
"glob",
|
|
2717
|
-
"heck 0.4.
|
|
3232
|
+
"heck 0.4.1",
|
|
2718
3233
|
"html5ever",
|
|
2719
3234
|
"infer",
|
|
2720
3235
|
"json-patch",
|
|
@@ -2723,28 +3238,38 @@ dependencies = [
|
|
|
2723
3238
|
"phf 0.10.1",
|
|
2724
3239
|
"proc-macro2",
|
|
2725
3240
|
"quote",
|
|
2726
|
-
"semver
|
|
3241
|
+
"semver",
|
|
2727
3242
|
"serde",
|
|
2728
3243
|
"serde_json",
|
|
2729
3244
|
"serde_with",
|
|
2730
3245
|
"thiserror",
|
|
2731
3246
|
"url",
|
|
2732
3247
|
"walkdir",
|
|
2733
|
-
"windows",
|
|
3248
|
+
"windows 0.39.0",
|
|
3249
|
+
]
|
|
3250
|
+
|
|
3251
|
+
[[package]]
|
|
3252
|
+
name = "tauri-winrt-notification"
|
|
3253
|
+
version = "0.1.0"
|
|
3254
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3255
|
+
checksum = "c58de036c4d2e20717024de2a3c4bf56c301f07b21bc8ef9b57189fce06f1f3b"
|
|
3256
|
+
dependencies = [
|
|
3257
|
+
"quick-xml 0.23.1",
|
|
3258
|
+
"strum",
|
|
3259
|
+
"windows 0.39.0",
|
|
2734
3260
|
]
|
|
2735
3261
|
|
|
2736
3262
|
[[package]]
|
|
2737
3263
|
name = "tempfile"
|
|
2738
|
-
version = "3.
|
|
3264
|
+
version = "3.5.0"
|
|
2739
3265
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2740
|
-
checksum = "
|
|
3266
|
+
checksum = "b9fbec84f381d5795b08656e4912bec604d162bff9291d6189a78f4c8ab87998"
|
|
2741
3267
|
dependencies = [
|
|
2742
|
-
"cfg-if",
|
|
3268
|
+
"cfg-if 1.0.0",
|
|
2743
3269
|
"fastrand",
|
|
2744
|
-
"
|
|
2745
|
-
"
|
|
2746
|
-
"
|
|
2747
|
-
"winapi",
|
|
3270
|
+
"redox_syscall 0.3.5",
|
|
3271
|
+
"rustix",
|
|
3272
|
+
"windows-sys 0.45.0",
|
|
2748
3273
|
]
|
|
2749
3274
|
|
|
2750
3275
|
[[package]]
|
|
@@ -2766,62 +3291,59 @@ checksum = "8eaa81235c7058867fa8c0e7314f33dcce9c215f535d1913822a2b3f5e289f3c"
|
|
|
2766
3291
|
|
|
2767
3292
|
[[package]]
|
|
2768
3293
|
name = "thiserror"
|
|
2769
|
-
version = "1.0.
|
|
3294
|
+
version = "1.0.40"
|
|
2770
3295
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2771
|
-
checksum = "
|
|
3296
|
+
checksum = "978c9a314bd8dc99be594bc3c175faaa9794be04a5a5e153caba6915336cebac"
|
|
2772
3297
|
dependencies = [
|
|
2773
3298
|
"thiserror-impl",
|
|
2774
3299
|
]
|
|
2775
3300
|
|
|
2776
3301
|
[[package]]
|
|
2777
3302
|
name = "thiserror-impl"
|
|
2778
|
-
version = "1.0.
|
|
3303
|
+
version = "1.0.40"
|
|
2779
3304
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2780
|
-
checksum = "
|
|
3305
|
+
checksum = "f9456a42c5b0d803c8cd86e73dd7cc9edd429499f37a3550d286d5e86720569f"
|
|
2781
3306
|
dependencies = [
|
|
2782
3307
|
"proc-macro2",
|
|
2783
3308
|
"quote",
|
|
2784
|
-
"syn",
|
|
3309
|
+
"syn 2.0.13",
|
|
2785
3310
|
]
|
|
2786
3311
|
|
|
2787
3312
|
[[package]]
|
|
2788
3313
|
name = "thread_local"
|
|
2789
|
-
version = "1.1.
|
|
3314
|
+
version = "1.1.7"
|
|
2790
3315
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2791
|
-
checksum = "
|
|
3316
|
+
checksum = "3fdd6f064ccff2d6567adcb3873ca630700f00b5ad3f060c25b5dcfd9a4ce152"
|
|
2792
3317
|
dependencies = [
|
|
3318
|
+
"cfg-if 1.0.0",
|
|
2793
3319
|
"once_cell",
|
|
2794
3320
|
]
|
|
2795
3321
|
|
|
2796
3322
|
[[package]]
|
|
2797
|
-
name = "
|
|
2798
|
-
version = "
|
|
3323
|
+
name = "time"
|
|
3324
|
+
version = "0.3.20"
|
|
2799
3325
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2800
|
-
checksum = "
|
|
3326
|
+
checksum = "cd0cbfecb4d19b5ea75bb31ad904eb5b9fa13f21079c3b92017ebdf4999a5890"
|
|
2801
3327
|
dependencies = [
|
|
2802
|
-
"
|
|
3328
|
+
"itoa 1.0.6",
|
|
3329
|
+
"serde",
|
|
3330
|
+
"time-core",
|
|
3331
|
+
"time-macros",
|
|
2803
3332
|
]
|
|
2804
3333
|
|
|
2805
3334
|
[[package]]
|
|
2806
|
-
name = "
|
|
2807
|
-
version = "0.
|
|
3335
|
+
name = "time-core"
|
|
3336
|
+
version = "0.1.0"
|
|
2808
3337
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2809
|
-
checksum = "
|
|
2810
|
-
dependencies = [
|
|
2811
|
-
"flate2",
|
|
2812
|
-
"jpeg-decoder",
|
|
2813
|
-
"weezl",
|
|
2814
|
-
]
|
|
3338
|
+
checksum = "2e153e1f1acaef8acc537e68b44906d2db6436e2b35ac2c6b42640fff91f00fd"
|
|
2815
3339
|
|
|
2816
3340
|
[[package]]
|
|
2817
|
-
name = "time"
|
|
2818
|
-
version = "0.
|
|
3341
|
+
name = "time-macros"
|
|
3342
|
+
version = "0.2.8"
|
|
2819
3343
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2820
|
-
checksum = "
|
|
3344
|
+
checksum = "fd80a657e71da814b8e5d60d3374fc6d35045062245d80224748ae522dd76f36"
|
|
2821
3345
|
dependencies = [
|
|
2822
|
-
"
|
|
2823
|
-
"libc",
|
|
2824
|
-
"num_threads",
|
|
3346
|
+
"time-core",
|
|
2825
3347
|
]
|
|
2826
3348
|
|
|
2827
3349
|
[[package]]
|
|
@@ -2835,22 +3357,80 @@ dependencies = [
|
|
|
2835
3357
|
|
|
2836
3358
|
[[package]]
|
|
2837
3359
|
name = "tinyvec_macros"
|
|
2838
|
-
version = "0.1.
|
|
3360
|
+
version = "0.1.1"
|
|
2839
3361
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2840
|
-
checksum = "
|
|
3362
|
+
checksum = "1f3ccbac311fea05f86f61904b462b55fb3df8837a366dfc601a0161d0532f20"
|
|
2841
3363
|
|
|
2842
3364
|
[[package]]
|
|
2843
3365
|
name = "tokio"
|
|
2844
|
-
version = "
|
|
3366
|
+
version = "0.2.25"
|
|
2845
3367
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2846
|
-
checksum = "
|
|
3368
|
+
checksum = "6703a273949a90131b290be1fe7b039d0fc884aa1935860dfcbe056f28cd8092"
|
|
2847
3369
|
dependencies = [
|
|
2848
|
-
"
|
|
2849
|
-
"
|
|
3370
|
+
"bytes 0.5.6",
|
|
3371
|
+
"fnv",
|
|
3372
|
+
"futures-core",
|
|
3373
|
+
"iovec",
|
|
3374
|
+
"lazy_static",
|
|
3375
|
+
"libc",
|
|
2850
3376
|
"memchr",
|
|
3377
|
+
"mio",
|
|
3378
|
+
"mio-named-pipes",
|
|
3379
|
+
"mio-uds",
|
|
3380
|
+
"num_cpus",
|
|
3381
|
+
"pin-project-lite 0.1.12",
|
|
3382
|
+
"signal-hook-registry",
|
|
3383
|
+
"slab",
|
|
3384
|
+
"tokio-macros",
|
|
3385
|
+
"winapi 0.3.9",
|
|
3386
|
+
]
|
|
3387
|
+
|
|
3388
|
+
[[package]]
|
|
3389
|
+
name = "tokio"
|
|
3390
|
+
version = "1.27.0"
|
|
3391
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3392
|
+
checksum = "d0de47a4eecbe11f498978a9b29d792f0d2692d1dd003650c24c76510e3bc001"
|
|
3393
|
+
dependencies = [
|
|
3394
|
+
"autocfg",
|
|
3395
|
+
"bytes 1.4.0",
|
|
2851
3396
|
"num_cpus",
|
|
2852
|
-
"pin-project-lite",
|
|
2853
|
-
"windows-sys",
|
|
3397
|
+
"pin-project-lite 0.2.9",
|
|
3398
|
+
"windows-sys 0.45.0",
|
|
3399
|
+
]
|
|
3400
|
+
|
|
3401
|
+
[[package]]
|
|
3402
|
+
name = "tokio-macros"
|
|
3403
|
+
version = "0.2.6"
|
|
3404
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3405
|
+
checksum = "e44da00bfc73a25f814cd8d7e57a68a5c31b74b3152a0a1d1f590c97ed06265a"
|
|
3406
|
+
dependencies = [
|
|
3407
|
+
"proc-macro2",
|
|
3408
|
+
"quote",
|
|
3409
|
+
"syn 1.0.109",
|
|
3410
|
+
]
|
|
3411
|
+
|
|
3412
|
+
[[package]]
|
|
3413
|
+
name = "tokio-tls"
|
|
3414
|
+
version = "0.3.1"
|
|
3415
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3416
|
+
checksum = "9a70f4fcd7b3b24fb194f837560168208f669ca8cb70d0c4b862944452396343"
|
|
3417
|
+
dependencies = [
|
|
3418
|
+
"native-tls",
|
|
3419
|
+
"tokio 0.2.25",
|
|
3420
|
+
]
|
|
3421
|
+
|
|
3422
|
+
[[package]]
|
|
3423
|
+
name = "tokio-util"
|
|
3424
|
+
version = "0.3.1"
|
|
3425
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3426
|
+
checksum = "be8242891f2b6cbef26a2d7e8605133c2c554cd35b3e4948ea892d6d68436499"
|
|
3427
|
+
dependencies = [
|
|
3428
|
+
"bytes 0.5.6",
|
|
3429
|
+
"futures-core",
|
|
3430
|
+
"futures-sink",
|
|
3431
|
+
"log",
|
|
3432
|
+
"pin-project-lite 0.1.12",
|
|
3433
|
+
"tokio 0.2.25",
|
|
2854
3434
|
]
|
|
2855
3435
|
|
|
2856
3436
|
[[package]]
|
|
@@ -2862,14 +3442,55 @@ dependencies = [
|
|
|
2862
3442
|
"serde",
|
|
2863
3443
|
]
|
|
2864
3444
|
|
|
3445
|
+
[[package]]
|
|
3446
|
+
name = "toml"
|
|
3447
|
+
version = "0.7.3"
|
|
3448
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3449
|
+
checksum = "b403acf6f2bb0859c93c7f0d967cb4a75a7ac552100f9322faf64dc047669b21"
|
|
3450
|
+
dependencies = [
|
|
3451
|
+
"serde",
|
|
3452
|
+
"serde_spanned",
|
|
3453
|
+
"toml_datetime",
|
|
3454
|
+
"toml_edit",
|
|
3455
|
+
]
|
|
3456
|
+
|
|
3457
|
+
[[package]]
|
|
3458
|
+
name = "toml_datetime"
|
|
3459
|
+
version = "0.6.1"
|
|
3460
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3461
|
+
checksum = "3ab8ed2edee10b50132aed5f331333428b011c99402b5a534154ed15746f9622"
|
|
3462
|
+
dependencies = [
|
|
3463
|
+
"serde",
|
|
3464
|
+
]
|
|
3465
|
+
|
|
3466
|
+
[[package]]
|
|
3467
|
+
name = "toml_edit"
|
|
3468
|
+
version = "0.19.8"
|
|
3469
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3470
|
+
checksum = "239410c8609e8125456927e6707163a3b1fdb40561e4b803bc041f466ccfdc13"
|
|
3471
|
+
dependencies = [
|
|
3472
|
+
"indexmap",
|
|
3473
|
+
"serde",
|
|
3474
|
+
"serde_spanned",
|
|
3475
|
+
"toml_datetime",
|
|
3476
|
+
"winnow",
|
|
3477
|
+
]
|
|
3478
|
+
|
|
3479
|
+
[[package]]
|
|
3480
|
+
name = "tower-service"
|
|
3481
|
+
version = "0.3.2"
|
|
3482
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3483
|
+
checksum = "b6bc1c9ce2b5135ac7f93c72918fc37feb872bdc6a5533a8b85eb4b86bfdae52"
|
|
3484
|
+
|
|
2865
3485
|
[[package]]
|
|
2866
3486
|
name = "tracing"
|
|
2867
3487
|
version = "0.1.37"
|
|
2868
3488
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2869
3489
|
checksum = "8ce8c33a8d48bd45d624a6e523445fd21ec13d3653cd51f681abf67418f54eb8"
|
|
2870
3490
|
dependencies = [
|
|
2871
|
-
"cfg-if",
|
|
2872
|
-
"
|
|
3491
|
+
"cfg-if 1.0.0",
|
|
3492
|
+
"log",
|
|
3493
|
+
"pin-project-lite 0.2.9",
|
|
2873
3494
|
"tracing-attributes",
|
|
2874
3495
|
"tracing-core",
|
|
2875
3496
|
]
|
|
@@ -2882,7 +3503,7 @@ checksum = "4017f8f45139870ca7e672686113917c71c7a6e02d4924eda67186083c03081a"
|
|
|
2882
3503
|
dependencies = [
|
|
2883
3504
|
"proc-macro2",
|
|
2884
3505
|
"quote",
|
|
2885
|
-
"syn",
|
|
3506
|
+
"syn 1.0.109",
|
|
2886
3507
|
]
|
|
2887
3508
|
|
|
2888
3509
|
[[package]]
|
|
@@ -2895,6 +3516,16 @@ dependencies = [
|
|
|
2895
3516
|
"valuable",
|
|
2896
3517
|
]
|
|
2897
3518
|
|
|
3519
|
+
[[package]]
|
|
3520
|
+
name = "tracing-futures"
|
|
3521
|
+
version = "0.2.5"
|
|
3522
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3523
|
+
checksum = "97d095ae15e245a057c8e8451bab9b3ee1e1f68e9ba2b4fbc18d0ac5237835f2"
|
|
3524
|
+
dependencies = [
|
|
3525
|
+
"pin-project",
|
|
3526
|
+
"tracing",
|
|
3527
|
+
]
|
|
3528
|
+
|
|
2898
3529
|
[[package]]
|
|
2899
3530
|
name = "tracing-log"
|
|
2900
3531
|
version = "0.1.3"
|
|
@@ -2933,6 +3564,12 @@ dependencies = [
|
|
|
2933
3564
|
"serde_json",
|
|
2934
3565
|
]
|
|
2935
3566
|
|
|
3567
|
+
[[package]]
|
|
3568
|
+
name = "try-lock"
|
|
3569
|
+
version = "0.2.4"
|
|
3570
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3571
|
+
checksum = "3528ecfd12c466c6f163363caf2d02a71161dd5e1cc6ae7b34207ea2d42d81ed"
|
|
3572
|
+
|
|
2936
3573
|
[[package]]
|
|
2937
3574
|
name = "typenum"
|
|
2938
3575
|
version = "1.16.0"
|
|
@@ -2940,22 +3577,25 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
2940
3577
|
checksum = "497961ef93d974e23eb6f433eb5fe1b7930b659f06d12dec6fc44a8f554c0bba"
|
|
2941
3578
|
|
|
2942
3579
|
[[package]]
|
|
2943
|
-
name = "
|
|
2944
|
-
version = "
|
|
3580
|
+
name = "unicase"
|
|
3581
|
+
version = "2.6.0"
|
|
2945
3582
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2946
|
-
checksum = "
|
|
3583
|
+
checksum = "50f37be617794602aabbeee0be4f259dc1778fabe05e2d67ee8f79326d5cb4f6"
|
|
3584
|
+
dependencies = [
|
|
3585
|
+
"version_check",
|
|
3586
|
+
]
|
|
2947
3587
|
|
|
2948
3588
|
[[package]]
|
|
2949
3589
|
name = "unicode-bidi"
|
|
2950
|
-
version = "0.3.
|
|
3590
|
+
version = "0.3.13"
|
|
2951
3591
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2952
|
-
checksum = "
|
|
3592
|
+
checksum = "92888ba5573ff080736b3648696b70cafad7d250551175acbaa4e0385b3e1460"
|
|
2953
3593
|
|
|
2954
3594
|
[[package]]
|
|
2955
3595
|
name = "unicode-ident"
|
|
2956
|
-
version = "1.0.
|
|
3596
|
+
version = "1.0.8"
|
|
2957
3597
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2958
|
-
checksum = "
|
|
3598
|
+
checksum = "e5464a87b239f13a63a501f2701565754bae92d243d4bb7eb12f6d57d2269bf4"
|
|
2959
3599
|
|
|
2960
3600
|
[[package]]
|
|
2961
3601
|
name = "unicode-normalization"
|
|
@@ -2972,6 +3612,12 @@ version = "1.10.1"
|
|
|
2972
3612
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2973
3613
|
checksum = "1dd624098567895118886609431a7c3b8f516e41d30e0643f03d94592a147e36"
|
|
2974
3614
|
|
|
3615
|
+
[[package]]
|
|
3616
|
+
name = "unicode-width"
|
|
3617
|
+
version = "0.1.10"
|
|
3618
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3619
|
+
checksum = "c0edd1e5b14653f783770bce4a4dabb4a5108a5370a5f5d8cfe8710c361f6c8b"
|
|
3620
|
+
|
|
2975
3621
|
[[package]]
|
|
2976
3622
|
name = "url"
|
|
2977
3623
|
version = "2.3.1"
|
|
@@ -2998,11 +3644,11 @@ checksum = "bc5cf98d8186244414c848017f0e2676b3fcb46807f6668a97dfe67359a3c4b7"
|
|
|
2998
3644
|
|
|
2999
3645
|
[[package]]
|
|
3000
3646
|
name = "uuid"
|
|
3001
|
-
version = "1.
|
|
3647
|
+
version = "1.3.0"
|
|
3002
3648
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3003
|
-
checksum = "
|
|
3649
|
+
checksum = "1674845326ee10d37ca60470760d4288a6f80f304007d92e5c53bab78c9cfd79"
|
|
3004
3650
|
dependencies = [
|
|
3005
|
-
"getrandom 0.2.
|
|
3651
|
+
"getrandom 0.2.9",
|
|
3006
3652
|
]
|
|
3007
3653
|
|
|
3008
3654
|
[[package]]
|
|
@@ -3011,6 +3657,12 @@ version = "0.1.0"
|
|
|
3011
3657
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3012
3658
|
checksum = "830b7e5d4d90034032940e4ace0d9a9a057e7a45cd94e6c007832e39edb82f6d"
|
|
3013
3659
|
|
|
3660
|
+
[[package]]
|
|
3661
|
+
name = "vcpkg"
|
|
3662
|
+
version = "0.2.15"
|
|
3663
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3664
|
+
checksum = "accd4ea62f7bb7a82fe23066fb0957d48ef677f6eeb8215f372f52e48bb32426"
|
|
3665
|
+
|
|
3014
3666
|
[[package]]
|
|
3015
3667
|
name = "version-compare"
|
|
3016
3668
|
version = "0.0.11"
|
|
@@ -3031,15 +3683,24 @@ checksum = "49874b5167b65d7193b8aba1567f5c7d93d001cafc34600cee003eda787e483f"
|
|
|
3031
3683
|
|
|
3032
3684
|
[[package]]
|
|
3033
3685
|
name = "walkdir"
|
|
3034
|
-
version = "2.3.
|
|
3686
|
+
version = "2.3.3"
|
|
3035
3687
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3036
|
-
checksum = "
|
|
3688
|
+
checksum = "36df944cda56c7d8d8b7496af378e6b16de9284591917d307c9b4d313c44e698"
|
|
3037
3689
|
dependencies = [
|
|
3038
3690
|
"same-file",
|
|
3039
|
-
"winapi",
|
|
3040
3691
|
"winapi-util",
|
|
3041
3692
|
]
|
|
3042
3693
|
|
|
3694
|
+
[[package]]
|
|
3695
|
+
name = "want"
|
|
3696
|
+
version = "0.3.0"
|
|
3697
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3698
|
+
checksum = "1ce8a968cb1cd110d136ff8b819a556d6fb6d919363c61534f6860c7eb172ba0"
|
|
3699
|
+
dependencies = [
|
|
3700
|
+
"log",
|
|
3701
|
+
"try-lock",
|
|
3702
|
+
]
|
|
3703
|
+
|
|
3043
3704
|
[[package]]
|
|
3044
3705
|
name = "wasi"
|
|
3045
3706
|
version = "0.9.0+wasi-snapshot-preview1"
|
|
@@ -3054,34 +3715,48 @@ checksum = "9c8d87e72b64a3b4db28d11ce29237c246188f4f51057d65a7eab63b7987e423"
|
|
|
3054
3715
|
|
|
3055
3716
|
[[package]]
|
|
3056
3717
|
name = "wasm-bindgen"
|
|
3057
|
-
version = "0.2.
|
|
3718
|
+
version = "0.2.84"
|
|
3058
3719
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3059
|
-
checksum = "
|
|
3720
|
+
checksum = "31f8dcbc21f30d9b8f2ea926ecb58f6b91192c17e9d33594b3df58b2007ca53b"
|
|
3060
3721
|
dependencies = [
|
|
3061
|
-
"cfg-if",
|
|
3722
|
+
"cfg-if 1.0.0",
|
|
3723
|
+
"serde",
|
|
3724
|
+
"serde_json",
|
|
3062
3725
|
"wasm-bindgen-macro",
|
|
3063
3726
|
]
|
|
3064
3727
|
|
|
3065
3728
|
[[package]]
|
|
3066
3729
|
name = "wasm-bindgen-backend"
|
|
3067
|
-
version = "0.2.
|
|
3730
|
+
version = "0.2.84"
|
|
3068
3731
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3069
|
-
checksum = "
|
|
3732
|
+
checksum = "95ce90fd5bcc06af55a641a86428ee4229e44e07033963a2290a8e241607ccb9"
|
|
3070
3733
|
dependencies = [
|
|
3071
3734
|
"bumpalo",
|
|
3072
3735
|
"log",
|
|
3073
3736
|
"once_cell",
|
|
3074
3737
|
"proc-macro2",
|
|
3075
3738
|
"quote",
|
|
3076
|
-
"syn",
|
|
3739
|
+
"syn 1.0.109",
|
|
3077
3740
|
"wasm-bindgen-shared",
|
|
3078
3741
|
]
|
|
3079
3742
|
|
|
3743
|
+
[[package]]
|
|
3744
|
+
name = "wasm-bindgen-futures"
|
|
3745
|
+
version = "0.4.34"
|
|
3746
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3747
|
+
checksum = "f219e0d211ba40266969f6dbdd90636da12f75bee4fc9d6c23d1260dadb51454"
|
|
3748
|
+
dependencies = [
|
|
3749
|
+
"cfg-if 1.0.0",
|
|
3750
|
+
"js-sys",
|
|
3751
|
+
"wasm-bindgen",
|
|
3752
|
+
"web-sys",
|
|
3753
|
+
]
|
|
3754
|
+
|
|
3080
3755
|
[[package]]
|
|
3081
3756
|
name = "wasm-bindgen-macro"
|
|
3082
|
-
version = "0.2.
|
|
3757
|
+
version = "0.2.84"
|
|
3083
3758
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3084
|
-
checksum = "
|
|
3759
|
+
checksum = "4c21f77c0bedc37fd5dc21f897894a5ca01e7bb159884559461862ae90c0b4c5"
|
|
3085
3760
|
dependencies = [
|
|
3086
3761
|
"quote",
|
|
3087
3762
|
"wasm-bindgen-macro-support",
|
|
@@ -3089,57 +3764,40 @@ dependencies = [
|
|
|
3089
3764
|
|
|
3090
3765
|
[[package]]
|
|
3091
3766
|
name = "wasm-bindgen-macro-support"
|
|
3092
|
-
version = "0.2.
|
|
3767
|
+
version = "0.2.84"
|
|
3093
3768
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3094
|
-
checksum = "
|
|
3769
|
+
checksum = "2aff81306fcac3c7515ad4e177f521b5c9a15f2b08f4e32d823066102f35a5f6"
|
|
3095
3770
|
dependencies = [
|
|
3096
3771
|
"proc-macro2",
|
|
3097
3772
|
"quote",
|
|
3098
|
-
"syn",
|
|
3773
|
+
"syn 1.0.109",
|
|
3099
3774
|
"wasm-bindgen-backend",
|
|
3100
3775
|
"wasm-bindgen-shared",
|
|
3101
3776
|
]
|
|
3102
3777
|
|
|
3103
3778
|
[[package]]
|
|
3104
3779
|
name = "wasm-bindgen-shared"
|
|
3105
|
-
version = "0.2.
|
|
3780
|
+
version = "0.2.84"
|
|
3106
3781
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3107
|
-
checksum = "
|
|
3782
|
+
checksum = "0046fef7e28c3804e5e38bfa31ea2a0f73905319b677e57ebe37e49358989b5d"
|
|
3108
3783
|
|
|
3109
3784
|
[[package]]
|
|
3110
3785
|
name = "web-sys"
|
|
3111
|
-
version = "0.3.
|
|
3786
|
+
version = "0.3.61"
|
|
3112
3787
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3113
|
-
checksum = "
|
|
3788
|
+
checksum = "e33b99f4b23ba3eec1a53ac264e35a755f00e966e0065077d6027c0f575b0b97"
|
|
3114
3789
|
dependencies = [
|
|
3115
3790
|
"js-sys",
|
|
3116
3791
|
"wasm-bindgen",
|
|
3117
3792
|
]
|
|
3118
3793
|
|
|
3119
|
-
[[package]]
|
|
3120
|
-
name = "webbrowser"
|
|
3121
|
-
version = "0.8.7"
|
|
3122
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3123
|
-
checksum = "97d1fa1e5c829b2bf9eb1e28fb950248b797cd6a04866fbdfa8bc31e5eef4c78"
|
|
3124
|
-
dependencies = [
|
|
3125
|
-
"core-foundation",
|
|
3126
|
-
"dirs",
|
|
3127
|
-
"jni",
|
|
3128
|
-
"log",
|
|
3129
|
-
"ndk-context",
|
|
3130
|
-
"objc",
|
|
3131
|
-
"raw-window-handle",
|
|
3132
|
-
"url",
|
|
3133
|
-
"web-sys",
|
|
3134
|
-
]
|
|
3135
|
-
|
|
3136
3794
|
[[package]]
|
|
3137
3795
|
name = "webkit2gtk"
|
|
3138
3796
|
version = "0.18.2"
|
|
3139
3797
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3140
3798
|
checksum = "b8f859735e4a452aeb28c6c56a852967a8a76c8eb1cc32dbf931ad28a13d6370"
|
|
3141
3799
|
dependencies = [
|
|
3142
|
-
"bitflags",
|
|
3800
|
+
"bitflags 1.3.2",
|
|
3143
3801
|
"cairo-rs",
|
|
3144
3802
|
"gdk",
|
|
3145
3803
|
"gdk-sys",
|
|
@@ -3164,7 +3822,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
3164
3822
|
checksum = "4d76ca6ecc47aeba01ec61e480139dda143796abcae6f83bcddf50d6b5b1dcf3"
|
|
3165
3823
|
dependencies = [
|
|
3166
3824
|
"atk-sys",
|
|
3167
|
-
"bitflags",
|
|
3825
|
+
"bitflags 1.3.2",
|
|
3168
3826
|
"cairo-sys-rs",
|
|
3169
3827
|
"gdk-pixbuf-sys",
|
|
3170
3828
|
"gdk-sys",
|
|
@@ -3177,7 +3835,7 @@ dependencies = [
|
|
|
3177
3835
|
"pango-sys",
|
|
3178
3836
|
"pkg-config",
|
|
3179
3837
|
"soup2-sys",
|
|
3180
|
-
"system-deps 6.0.
|
|
3838
|
+
"system-deps 6.0.4",
|
|
3181
3839
|
]
|
|
3182
3840
|
|
|
3183
3841
|
[[package]]
|
|
@@ -3188,7 +3846,7 @@ checksum = "b4a769c9f1a64a8734bde70caafac2b96cada12cd4aefa49196b3a386b8b4178"
|
|
|
3188
3846
|
dependencies = [
|
|
3189
3847
|
"webview2-com-macros",
|
|
3190
3848
|
"webview2-com-sys",
|
|
3191
|
-
"windows",
|
|
3849
|
+
"windows 0.39.0",
|
|
3192
3850
|
"windows-implement",
|
|
3193
3851
|
]
|
|
3194
3852
|
|
|
@@ -3200,7 +3858,7 @@ checksum = "eaebe196c01691db62e9e4ca52c5ef1e4fd837dcae27dae3ada599b5a8fd05ac"
|
|
|
3200
3858
|
dependencies = [
|
|
3201
3859
|
"proc-macro2",
|
|
3202
3860
|
"quote",
|
|
3203
|
-
"syn",
|
|
3861
|
+
"syn 1.0.109",
|
|
3204
3862
|
]
|
|
3205
3863
|
|
|
3206
3864
|
[[package]]
|
|
@@ -3213,16 +3871,16 @@ dependencies = [
|
|
|
3213
3871
|
"serde",
|
|
3214
3872
|
"serde_json",
|
|
3215
3873
|
"thiserror",
|
|
3216
|
-
"windows",
|
|
3874
|
+
"windows 0.39.0",
|
|
3217
3875
|
"windows-bindgen",
|
|
3218
3876
|
"windows-metadata",
|
|
3219
3877
|
]
|
|
3220
3878
|
|
|
3221
3879
|
[[package]]
|
|
3222
|
-
name = "
|
|
3223
|
-
version = "0.
|
|
3880
|
+
name = "winapi"
|
|
3881
|
+
version = "0.2.8"
|
|
3224
3882
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3225
|
-
checksum = "
|
|
3883
|
+
checksum = "167dc9d6949a9b857f3451275e911c3f44255842c1f7a76f33c55103a909087a"
|
|
3226
3884
|
|
|
3227
3885
|
[[package]]
|
|
3228
3886
|
name = "winapi"
|
|
@@ -3234,6 +3892,12 @@ dependencies = [
|
|
|
3234
3892
|
"winapi-x86_64-pc-windows-gnu",
|
|
3235
3893
|
]
|
|
3236
3894
|
|
|
3895
|
+
[[package]]
|
|
3896
|
+
name = "winapi-build"
|
|
3897
|
+
version = "0.1.1"
|
|
3898
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3899
|
+
checksum = "2d315eee3b34aca4797b2da6b13ed88266e6d612562a0c46390af8299fc699bc"
|
|
3900
|
+
|
|
3237
3901
|
[[package]]
|
|
3238
3902
|
name = "winapi-i686-pc-windows-gnu"
|
|
3239
3903
|
version = "0.4.0"
|
|
@@ -3246,7 +3910,7 @@ version = "0.1.5"
|
|
|
3246
3910
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3247
3911
|
checksum = "70ec6ce85bb158151cae5e5c87f95a8e97d2c0c4b001223f33a334e3ce5de178"
|
|
3248
3912
|
dependencies = [
|
|
3249
|
-
"winapi",
|
|
3913
|
+
"winapi 0.3.9",
|
|
3250
3914
|
]
|
|
3251
3915
|
|
|
3252
3916
|
[[package]]
|
|
@@ -3255,6 +3919,19 @@ version = "0.4.0"
|
|
|
3255
3919
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3256
3920
|
checksum = "712e227841d057c1ee1cd2fb22fa7e5a5461ae8e48fa2ca79ec42cfc1931183f"
|
|
3257
3921
|
|
|
3922
|
+
[[package]]
|
|
3923
|
+
name = "windows"
|
|
3924
|
+
version = "0.37.0"
|
|
3925
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3926
|
+
checksum = "57b543186b344cc61c85b5aab0d2e3adf4e0f99bc076eff9aa5927bcc0b8a647"
|
|
3927
|
+
dependencies = [
|
|
3928
|
+
"windows_aarch64_msvc 0.37.0",
|
|
3929
|
+
"windows_i686_gnu 0.37.0",
|
|
3930
|
+
"windows_i686_msvc 0.37.0",
|
|
3931
|
+
"windows_x86_64_gnu 0.37.0",
|
|
3932
|
+
"windows_x86_64_msvc 0.37.0",
|
|
3933
|
+
]
|
|
3934
|
+
|
|
3258
3935
|
[[package]]
|
|
3259
3936
|
name = "windows"
|
|
3260
3937
|
version = "0.39.0"
|
|
@@ -3269,6 +3946,15 @@ dependencies = [
|
|
|
3269
3946
|
"windows_x86_64_msvc 0.39.0",
|
|
3270
3947
|
]
|
|
3271
3948
|
|
|
3949
|
+
[[package]]
|
|
3950
|
+
name = "windows"
|
|
3951
|
+
version = "0.44.0"
|
|
3952
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3953
|
+
checksum = "9e745dab35a0c4c77aa3ce42d595e13d2003d6902d6b08c9ef5fc326d08da12b"
|
|
3954
|
+
dependencies = [
|
|
3955
|
+
"windows-targets 0.42.2",
|
|
3956
|
+
]
|
|
3957
|
+
|
|
3272
3958
|
[[package]]
|
|
3273
3959
|
name = "windows-bindgen"
|
|
3274
3960
|
version = "0.39.0"
|
|
@@ -3285,7 +3971,7 @@ version = "0.39.0"
|
|
|
3285
3971
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3286
3972
|
checksum = "ba01f98f509cb5dc05f4e5fc95e535f78260f15fea8fe1a8abdd08f774f1cee7"
|
|
3287
3973
|
dependencies = [
|
|
3288
|
-
"syn",
|
|
3974
|
+
"syn 1.0.109",
|
|
3289
3975
|
"windows-tokens",
|
|
3290
3976
|
]
|
|
3291
3977
|
|
|
@@ -3301,13 +3987,61 @@ version = "0.42.0"
|
|
|
3301
3987
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3302
3988
|
checksum = "5a3e1820f08b8513f676f7ab6c1f99ff312fb97b553d30ff4dd86f9f15728aa7"
|
|
3303
3989
|
dependencies = [
|
|
3304
|
-
"windows_aarch64_gnullvm",
|
|
3305
|
-
"windows_aarch64_msvc 0.42.
|
|
3306
|
-
"windows_i686_gnu 0.42.
|
|
3307
|
-
"windows_i686_msvc 0.42.
|
|
3308
|
-
"windows_x86_64_gnu 0.42.
|
|
3309
|
-
"windows_x86_64_gnullvm",
|
|
3310
|
-
"windows_x86_64_msvc 0.42.
|
|
3990
|
+
"windows_aarch64_gnullvm 0.42.2",
|
|
3991
|
+
"windows_aarch64_msvc 0.42.2",
|
|
3992
|
+
"windows_i686_gnu 0.42.2",
|
|
3993
|
+
"windows_i686_msvc 0.42.2",
|
|
3994
|
+
"windows_x86_64_gnu 0.42.2",
|
|
3995
|
+
"windows_x86_64_gnullvm 0.42.2",
|
|
3996
|
+
"windows_x86_64_msvc 0.42.2",
|
|
3997
|
+
]
|
|
3998
|
+
|
|
3999
|
+
[[package]]
|
|
4000
|
+
name = "windows-sys"
|
|
4001
|
+
version = "0.45.0"
|
|
4002
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4003
|
+
checksum = "75283be5efb2831d37ea142365f009c02ec203cd29a3ebecbc093d52315b66d0"
|
|
4004
|
+
dependencies = [
|
|
4005
|
+
"windows-targets 0.42.2",
|
|
4006
|
+
]
|
|
4007
|
+
|
|
4008
|
+
[[package]]
|
|
4009
|
+
name = "windows-sys"
|
|
4010
|
+
version = "0.48.0"
|
|
4011
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4012
|
+
checksum = "677d2418bec65e3338edb076e806bc1ec15693c5d0104683f2efe857f61056a9"
|
|
4013
|
+
dependencies = [
|
|
4014
|
+
"windows-targets 0.48.0",
|
|
4015
|
+
]
|
|
4016
|
+
|
|
4017
|
+
[[package]]
|
|
4018
|
+
name = "windows-targets"
|
|
4019
|
+
version = "0.42.2"
|
|
4020
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4021
|
+
checksum = "8e5180c00cd44c9b1c88adb3693291f1cd93605ded80c250a75d472756b4d071"
|
|
4022
|
+
dependencies = [
|
|
4023
|
+
"windows_aarch64_gnullvm 0.42.2",
|
|
4024
|
+
"windows_aarch64_msvc 0.42.2",
|
|
4025
|
+
"windows_i686_gnu 0.42.2",
|
|
4026
|
+
"windows_i686_msvc 0.42.2",
|
|
4027
|
+
"windows_x86_64_gnu 0.42.2",
|
|
4028
|
+
"windows_x86_64_gnullvm 0.42.2",
|
|
4029
|
+
"windows_x86_64_msvc 0.42.2",
|
|
4030
|
+
]
|
|
4031
|
+
|
|
4032
|
+
[[package]]
|
|
4033
|
+
name = "windows-targets"
|
|
4034
|
+
version = "0.48.0"
|
|
4035
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4036
|
+
checksum = "7b1eb6f0cd7c80c79759c929114ef071b87354ce476d9d94271031c0497adfd5"
|
|
4037
|
+
dependencies = [
|
|
4038
|
+
"windows_aarch64_gnullvm 0.48.0",
|
|
4039
|
+
"windows_aarch64_msvc 0.48.0",
|
|
4040
|
+
"windows_i686_gnu 0.48.0",
|
|
4041
|
+
"windows_i686_msvc 0.48.0",
|
|
4042
|
+
"windows_x86_64_gnu 0.48.0",
|
|
4043
|
+
"windows_x86_64_gnullvm 0.48.0",
|
|
4044
|
+
"windows_x86_64_msvc 0.48.0",
|
|
3311
4045
|
]
|
|
3312
4046
|
|
|
3313
4047
|
[[package]]
|
|
@@ -3318,9 +4052,21 @@ checksum = "f838de2fe15fe6bac988e74b798f26499a8b21a9d97edec321e79b28d1d7f597"
|
|
|
3318
4052
|
|
|
3319
4053
|
[[package]]
|
|
3320
4054
|
name = "windows_aarch64_gnullvm"
|
|
3321
|
-
version = "0.42.
|
|
4055
|
+
version = "0.42.2"
|
|
3322
4056
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3323
|
-
checksum = "
|
|
4057
|
+
checksum = "597a5118570b68bc08d8d59125332c54f1ba9d9adeedeef5b99b02ba2b0698f8"
|
|
4058
|
+
|
|
4059
|
+
[[package]]
|
|
4060
|
+
name = "windows_aarch64_gnullvm"
|
|
4061
|
+
version = "0.48.0"
|
|
4062
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4063
|
+
checksum = "91ae572e1b79dba883e0d315474df7305d12f569b400fcf90581b06062f7e1bc"
|
|
4064
|
+
|
|
4065
|
+
[[package]]
|
|
4066
|
+
name = "windows_aarch64_msvc"
|
|
4067
|
+
version = "0.37.0"
|
|
4068
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4069
|
+
checksum = "2623277cb2d1c216ba3b578c0f3cf9cdebeddb6e66b1b218bb33596ea7769c3a"
|
|
3324
4070
|
|
|
3325
4071
|
[[package]]
|
|
3326
4072
|
name = "windows_aarch64_msvc"
|
|
@@ -3330,9 +4076,21 @@ checksum = "ec7711666096bd4096ffa835238905bb33fb87267910e154b18b44eaabb340f2"
|
|
|
3330
4076
|
|
|
3331
4077
|
[[package]]
|
|
3332
4078
|
name = "windows_aarch64_msvc"
|
|
3333
|
-
version = "0.42.
|
|
4079
|
+
version = "0.42.2"
|
|
4080
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4081
|
+
checksum = "e08e8864a60f06ef0d0ff4ba04124db8b0fb3be5776a5cd47641e942e58c4d43"
|
|
4082
|
+
|
|
4083
|
+
[[package]]
|
|
4084
|
+
name = "windows_aarch64_msvc"
|
|
4085
|
+
version = "0.48.0"
|
|
4086
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4087
|
+
checksum = "b2ef27e0d7bdfcfc7b868b317c1d32c641a6fe4629c171b8928c7b08d98d7cf3"
|
|
4088
|
+
|
|
4089
|
+
[[package]]
|
|
4090
|
+
name = "windows_i686_gnu"
|
|
4091
|
+
version = "0.37.0"
|
|
3334
4092
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3335
|
-
checksum = "
|
|
4093
|
+
checksum = "d3925fd0b0b804730d44d4b6278c50f9699703ec49bcd628020f46f4ba07d9e1"
|
|
3336
4094
|
|
|
3337
4095
|
[[package]]
|
|
3338
4096
|
name = "windows_i686_gnu"
|
|
@@ -3342,9 +4100,21 @@ checksum = "763fc57100a5f7042e3057e7e8d9bdd7860d330070251a73d003563a3bb49e1b"
|
|
|
3342
4100
|
|
|
3343
4101
|
[[package]]
|
|
3344
4102
|
name = "windows_i686_gnu"
|
|
3345
|
-
version = "0.42.
|
|
4103
|
+
version = "0.42.2"
|
|
4104
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4105
|
+
checksum = "c61d927d8da41da96a81f029489353e68739737d3beca43145c8afec9a31a84f"
|
|
4106
|
+
|
|
4107
|
+
[[package]]
|
|
4108
|
+
name = "windows_i686_gnu"
|
|
4109
|
+
version = "0.48.0"
|
|
4110
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4111
|
+
checksum = "622a1962a7db830d6fd0a69683c80a18fda201879f0f447f065a3b7467daa241"
|
|
4112
|
+
|
|
4113
|
+
[[package]]
|
|
4114
|
+
name = "windows_i686_msvc"
|
|
4115
|
+
version = "0.37.0"
|
|
3346
4116
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3347
|
-
checksum = "
|
|
4117
|
+
checksum = "ce907ac74fe331b524c1298683efbf598bb031bc84d5e274db2083696d07c57c"
|
|
3348
4118
|
|
|
3349
4119
|
[[package]]
|
|
3350
4120
|
name = "windows_i686_msvc"
|
|
@@ -3354,9 +4124,21 @@ checksum = "7bc7cbfe58828921e10a9f446fcaaf649204dcfe6c1ddd712c5eebae6bda1106"
|
|
|
3354
4124
|
|
|
3355
4125
|
[[package]]
|
|
3356
4126
|
name = "windows_i686_msvc"
|
|
3357
|
-
version = "0.42.
|
|
4127
|
+
version = "0.42.2"
|
|
4128
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4129
|
+
checksum = "44d840b6ec649f480a41c8d80f9c65108b92d89345dd94027bfe06ac444d1060"
|
|
4130
|
+
|
|
4131
|
+
[[package]]
|
|
4132
|
+
name = "windows_i686_msvc"
|
|
4133
|
+
version = "0.48.0"
|
|
3358
4134
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3359
|
-
checksum = "
|
|
4135
|
+
checksum = "4542c6e364ce21bf45d69fdd2a8e455fa38d316158cfd43b3ac1c5b1b19f8e00"
|
|
4136
|
+
|
|
4137
|
+
[[package]]
|
|
4138
|
+
name = "windows_x86_64_gnu"
|
|
4139
|
+
version = "0.37.0"
|
|
4140
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4141
|
+
checksum = "2babfba0828f2e6b32457d5341427dcbb577ceef556273229959ac23a10af33d"
|
|
3360
4142
|
|
|
3361
4143
|
[[package]]
|
|
3362
4144
|
name = "windows_x86_64_gnu"
|
|
@@ -3366,15 +4148,33 @@ checksum = "6868c165637d653ae1e8dc4d82c25d4f97dd6605eaa8d784b5c6e0ab2a252b65"
|
|
|
3366
4148
|
|
|
3367
4149
|
[[package]]
|
|
3368
4150
|
name = "windows_x86_64_gnu"
|
|
3369
|
-
version = "0.42.
|
|
4151
|
+
version = "0.42.2"
|
|
3370
4152
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3371
|
-
checksum = "
|
|
4153
|
+
checksum = "8de912b8b8feb55c064867cf047dda097f92d51efad5b491dfb98f6bbb70cb36"
|
|
4154
|
+
|
|
4155
|
+
[[package]]
|
|
4156
|
+
name = "windows_x86_64_gnu"
|
|
4157
|
+
version = "0.48.0"
|
|
4158
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4159
|
+
checksum = "ca2b8a661f7628cbd23440e50b05d705db3686f894fc9580820623656af974b1"
|
|
4160
|
+
|
|
4161
|
+
[[package]]
|
|
4162
|
+
name = "windows_x86_64_gnullvm"
|
|
4163
|
+
version = "0.42.2"
|
|
4164
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4165
|
+
checksum = "26d41b46a36d453748aedef1486d5c7a85db22e56aff34643984ea85514e94a3"
|
|
3372
4166
|
|
|
3373
4167
|
[[package]]
|
|
3374
4168
|
name = "windows_x86_64_gnullvm"
|
|
3375
|
-
version = "0.
|
|
4169
|
+
version = "0.48.0"
|
|
3376
4170
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3377
|
-
checksum = "
|
|
4171
|
+
checksum = "7896dbc1f41e08872e9d5e8f8baa8fdd2677f29468c4e156210174edc7f7b953"
|
|
4172
|
+
|
|
4173
|
+
[[package]]
|
|
4174
|
+
name = "windows_x86_64_msvc"
|
|
4175
|
+
version = "0.37.0"
|
|
4176
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4177
|
+
checksum = "f4dd6dc7df2d84cf7b33822ed5b86318fb1781948e9663bacd047fc9dd52259d"
|
|
3378
4178
|
|
|
3379
4179
|
[[package]]
|
|
3380
4180
|
name = "windows_x86_64_msvc"
|
|
@@ -3384,9 +4184,33 @@ checksum = "5e4d40883ae9cae962787ca76ba76390ffa29214667a111db9e0a1ad8377e809"
|
|
|
3384
4184
|
|
|
3385
4185
|
[[package]]
|
|
3386
4186
|
name = "windows_x86_64_msvc"
|
|
3387
|
-
version = "0.42.
|
|
4187
|
+
version = "0.42.2"
|
|
3388
4188
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3389
|
-
checksum = "
|
|
4189
|
+
checksum = "9aec5da331524158c6d1a4ac0ab1541149c0b9505fde06423b02f5ef0106b9f0"
|
|
4190
|
+
|
|
4191
|
+
[[package]]
|
|
4192
|
+
name = "windows_x86_64_msvc"
|
|
4193
|
+
version = "0.48.0"
|
|
4194
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4195
|
+
checksum = "1a515f5799fe4961cb532f983ce2b23082366b898e52ffbce459c86f67c8378a"
|
|
4196
|
+
|
|
4197
|
+
[[package]]
|
|
4198
|
+
name = "winnow"
|
|
4199
|
+
version = "0.4.1"
|
|
4200
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4201
|
+
checksum = "ae8970b36c66498d8ff1d66685dc86b91b29db0c7739899012f63a63814b4b28"
|
|
4202
|
+
dependencies = [
|
|
4203
|
+
"memchr",
|
|
4204
|
+
]
|
|
4205
|
+
|
|
4206
|
+
[[package]]
|
|
4207
|
+
name = "winreg"
|
|
4208
|
+
version = "0.7.0"
|
|
4209
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4210
|
+
checksum = "0120db82e8a1e0b9fb3345a539c478767c0048d842860994d96113d5b667bd69"
|
|
4211
|
+
dependencies = [
|
|
4212
|
+
"winapi 0.3.9",
|
|
4213
|
+
]
|
|
3390
4214
|
|
|
3391
4215
|
[[package]]
|
|
3392
4216
|
name = "winres"
|
|
@@ -3394,7 +4218,7 @@ version = "0.1.12"
|
|
|
3394
4218
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3395
4219
|
checksum = "b68db261ef59e9e52806f688020631e987592bd83619edccda9c47d42cde4f6c"
|
|
3396
4220
|
dependencies = [
|
|
3397
|
-
"toml",
|
|
4221
|
+
"toml 0.5.11",
|
|
3398
4222
|
]
|
|
3399
4223
|
|
|
3400
4224
|
[[package]]
|
|
@@ -3403,7 +4227,7 @@ version = "0.23.4"
|
|
|
3403
4227
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3404
4228
|
checksum = "4c1ad8e2424f554cc5bdebe8aa374ef5b433feff817aebabca0389961fc7ef98"
|
|
3405
4229
|
dependencies = [
|
|
3406
|
-
"base64",
|
|
4230
|
+
"base64 0.13.1",
|
|
3407
4231
|
"block",
|
|
3408
4232
|
"cocoa",
|
|
3409
4233
|
"core-graphics",
|
|
@@ -3431,10 +4255,20 @@ dependencies = [
|
|
|
3431
4255
|
"webkit2gtk",
|
|
3432
4256
|
"webkit2gtk-sys",
|
|
3433
4257
|
"webview2-com",
|
|
3434
|
-
"windows",
|
|
4258
|
+
"windows 0.39.0",
|
|
3435
4259
|
"windows-implement",
|
|
3436
4260
|
]
|
|
3437
4261
|
|
|
4262
|
+
[[package]]
|
|
4263
|
+
name = "ws2_32-sys"
|
|
4264
|
+
version = "0.2.1"
|
|
4265
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4266
|
+
checksum = "d59cefebd0c892fa2dd6de581e937301d8552cb44489cdff035c6187cb63fa5e"
|
|
4267
|
+
dependencies = [
|
|
4268
|
+
"winapi 0.2.8",
|
|
4269
|
+
"winapi-build",
|
|
4270
|
+
]
|
|
4271
|
+
|
|
3438
4272
|
[[package]]
|
|
3439
4273
|
name = "x11"
|
|
3440
4274
|
version = "2.21.0"
|