decasify 0.9.1__tar.gz → 0.10.1__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- {decasify-0.9.1 → decasify-0.10.1}/Cargo.lock +595 -259
- {decasify-0.9.1 → decasify-0.10.1}/Cargo.toml +10 -10
- {decasify-0.9.1 → decasify-0.10.1}/PKG-INFO +6 -6
- {decasify-0.9.1 → decasify-0.10.1}/README.md +5 -5
- {decasify-0.9.1 → decasify-0.10.1}/src/bin/decasify.rs +18 -3
- {decasify-0.9.1 → decasify-0.10.1}/src/cli.rs +8 -0
- {decasify-0.9.1 → decasify-0.10.1}/src/content.rs +18 -6
- {decasify-0.9.1 → decasify-0.10.1}/src/en.rs +26 -11
- {decasify-0.9.1 → decasify-0.10.1}/src/lib.rs +21 -4
- {decasify-0.9.1 → decasify-0.10.1}/src/lua.rs +47 -2
- {decasify-0.9.1 → decasify-0.10.1}/src/python.rs +27 -7
- {decasify-0.9.1 → decasify-0.10.1}/src/tr.rs +12 -7
- {decasify-0.9.1 → decasify-0.10.1}/src/types.rs +73 -5
- {decasify-0.9.1 → decasify-0.10.1}/src/wasm.rs +17 -4
- {decasify-0.9.1 → decasify-0.10.1}/tests/cli.rs +11 -0
- {decasify-0.9.1 → decasify-0.10.1}/tests/lib.rs +39 -9
- {decasify-0.9.1 → decasify-0.10.1}/build-aux/build.rs +0 -0
- {decasify-0.9.1 → decasify-0.10.1}/pyproject.toml +0 -0
- {decasify-0.9.1 → decasify-0.10.1}/src/traits.rs +0 -0
|
@@ -31,15 +31,15 @@ dependencies = [
|
|
|
31
31
|
|
|
32
32
|
[[package]]
|
|
33
33
|
name = "allocator-api2"
|
|
34
|
-
version = "0.2.
|
|
34
|
+
version = "0.2.21"
|
|
35
35
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
36
|
-
checksum = "
|
|
36
|
+
checksum = "683d7910e743518b0e34f1186f92494becacb047c7b6bf616c96772180fef923"
|
|
37
37
|
|
|
38
38
|
[[package]]
|
|
39
39
|
name = "anstream"
|
|
40
|
-
version = "0.6.
|
|
40
|
+
version = "0.6.18"
|
|
41
41
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
42
|
-
checksum = "
|
|
42
|
+
checksum = "8acc5369981196006228e28809f761875c0327210a891e941f4c683b3a99529b"
|
|
43
43
|
dependencies = [
|
|
44
44
|
"anstyle",
|
|
45
45
|
"anstyle-parse",
|
|
@@ -52,9 +52,9 @@ dependencies = [
|
|
|
52
52
|
|
|
53
53
|
[[package]]
|
|
54
54
|
name = "anstyle"
|
|
55
|
-
version = "1.0.
|
|
55
|
+
version = "1.0.10"
|
|
56
56
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
57
|
-
checksum = "
|
|
57
|
+
checksum = "55cc3b69f167a1ef2e161439aa98aed94e6028e5f9a59be9a6ffb47aef1651f9"
|
|
58
58
|
|
|
59
59
|
[[package]]
|
|
60
60
|
name = "anstyle-parse"
|
|
@@ -76,19 +76,20 @@ dependencies = [
|
|
|
76
76
|
|
|
77
77
|
[[package]]
|
|
78
78
|
name = "anstyle-wincon"
|
|
79
|
-
version = "3.0.
|
|
79
|
+
version = "3.0.7"
|
|
80
80
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
81
|
-
checksum = "
|
|
81
|
+
checksum = "ca3534e77181a9cc07539ad51f2141fe32f6c3ffd4df76db8ad92346b003ae4e"
|
|
82
82
|
dependencies = [
|
|
83
83
|
"anstyle",
|
|
84
|
+
"once_cell",
|
|
84
85
|
"windows-sys 0.59.0",
|
|
85
86
|
]
|
|
86
87
|
|
|
87
88
|
[[package]]
|
|
88
89
|
name = "anyhow"
|
|
89
|
-
version = "1.0.
|
|
90
|
+
version = "1.0.97"
|
|
90
91
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
91
|
-
checksum = "
|
|
92
|
+
checksum = "dcfed56ad506cb2c684a14971b8861fdc3baaaae314b9e5f9bb532cbe3ba7a4f"
|
|
92
93
|
|
|
93
94
|
[[package]]
|
|
94
95
|
name = "arc-swap"
|
|
@@ -120,15 +121,15 @@ checksum = "ace50bade8e6234aa140d9a2f552bbee1db4d353f69b8217bc503490fc1a9f26"
|
|
|
120
121
|
|
|
121
122
|
[[package]]
|
|
122
123
|
name = "bitflags"
|
|
123
|
-
version = "2.
|
|
124
|
+
version = "2.9.0"
|
|
124
125
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
125
|
-
checksum = "
|
|
126
|
+
checksum = "5c8214115b7bf84099f1309324e63141d4c5d7cc26862f97a0a857dbefe165bd"
|
|
126
127
|
|
|
127
128
|
[[package]]
|
|
128
129
|
name = "bstr"
|
|
129
|
-
version = "1.
|
|
130
|
+
version = "1.11.3"
|
|
130
131
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
131
|
-
checksum = "
|
|
132
|
+
checksum = "531a9155a481e2ee699d4f98f43c0ca4ff8ee1bfd55c31e9e98fb29d2b176fe0"
|
|
132
133
|
dependencies = [
|
|
133
134
|
"memchr",
|
|
134
135
|
"regex-automata",
|
|
@@ -137,9 +138,9 @@ dependencies = [
|
|
|
137
138
|
|
|
138
139
|
[[package]]
|
|
139
140
|
name = "bumpalo"
|
|
140
|
-
version = "3.
|
|
141
|
+
version = "3.17.0"
|
|
141
142
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
142
|
-
checksum = "
|
|
143
|
+
checksum = "1628fb46dfa0b37568d12e5edd512553eccf6a22a78e8bde00bb4aed84d5bdbf"
|
|
143
144
|
|
|
144
145
|
[[package]]
|
|
145
146
|
name = "camino"
|
|
@@ -152,18 +153,18 @@ dependencies = [
|
|
|
152
153
|
|
|
153
154
|
[[package]]
|
|
154
155
|
name = "cargo-platform"
|
|
155
|
-
version = "0.1.
|
|
156
|
+
version = "0.1.9"
|
|
156
157
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
157
|
-
checksum = "
|
|
158
|
+
checksum = "e35af189006b9c0f00a064685c727031e3ed2d8020f7ba284d78cc2671bd36ea"
|
|
158
159
|
dependencies = [
|
|
159
160
|
"serde",
|
|
160
161
|
]
|
|
161
162
|
|
|
162
163
|
[[package]]
|
|
163
164
|
name = "cargo_metadata"
|
|
164
|
-
version = "0.
|
|
165
|
+
version = "0.19.2"
|
|
165
166
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
166
|
-
checksum = "
|
|
167
|
+
checksum = "dd5eb614ed4c27c5d706420e4320fbe3216ab31fa1c33cd8246ac36dae4479ba"
|
|
167
168
|
dependencies = [
|
|
168
169
|
"camino",
|
|
169
170
|
"cargo-platform",
|
|
@@ -175,9 +176,9 @@ dependencies = [
|
|
|
175
176
|
|
|
176
177
|
[[package]]
|
|
177
178
|
name = "cc"
|
|
178
|
-
version = "1.
|
|
179
|
+
version = "1.2.16"
|
|
179
180
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
180
|
-
checksum = "
|
|
181
|
+
checksum = "be714c154be609ec7f5dad223a33bf1482fff90472de28f7362806e6d4832b8c"
|
|
181
182
|
dependencies = [
|
|
182
183
|
"shlex",
|
|
183
184
|
]
|
|
@@ -190,9 +191,9 @@ checksum = "baf1de4339761588bc0619e3cbc0120ee582ebb74b53b4efbf79117bd2da40fd"
|
|
|
190
191
|
|
|
191
192
|
[[package]]
|
|
192
193
|
name = "clap"
|
|
193
|
-
version = "4.5.
|
|
194
|
+
version = "4.5.32"
|
|
194
195
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
195
|
-
checksum = "
|
|
196
|
+
checksum = "6088f3ae8c3608d19260cd7445411865a485688711b78b5be70d78cd96136f83"
|
|
196
197
|
dependencies = [
|
|
197
198
|
"clap_builder",
|
|
198
199
|
"clap_derive",
|
|
@@ -200,9 +201,9 @@ dependencies = [
|
|
|
200
201
|
|
|
201
202
|
[[package]]
|
|
202
203
|
name = "clap_builder"
|
|
203
|
-
version = "4.5.
|
|
204
|
+
version = "4.5.32"
|
|
204
205
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
205
|
-
checksum = "
|
|
206
|
+
checksum = "22a7ef7f676155edfb82daa97f99441f3ebf4a58d5e32f295a56259f1b6facc8"
|
|
206
207
|
dependencies = [
|
|
207
208
|
"anstream",
|
|
208
209
|
"anstyle",
|
|
@@ -213,18 +214,18 @@ dependencies = [
|
|
|
213
214
|
|
|
214
215
|
[[package]]
|
|
215
216
|
name = "clap_complete"
|
|
216
|
-
version = "4.5.
|
|
217
|
+
version = "4.5.46"
|
|
217
218
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
218
|
-
checksum = "
|
|
219
|
+
checksum = "f5c5508ea23c5366f77e53f5a0070e5a84e51687ec3ef9e0464c86dc8d13ce98"
|
|
219
220
|
dependencies = [
|
|
220
221
|
"clap",
|
|
221
222
|
]
|
|
222
223
|
|
|
223
224
|
[[package]]
|
|
224
225
|
name = "clap_derive"
|
|
225
|
-
version = "4.5.
|
|
226
|
+
version = "4.5.32"
|
|
226
227
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
227
|
-
checksum = "
|
|
228
|
+
checksum = "09176aae279615badda0765c0c0b3f6ed53f4709118af73cf4655d85d1530cd7"
|
|
228
229
|
dependencies = [
|
|
229
230
|
"heck",
|
|
230
231
|
"proc-macro2",
|
|
@@ -234,15 +235,15 @@ dependencies = [
|
|
|
234
235
|
|
|
235
236
|
[[package]]
|
|
236
237
|
name = "clap_lex"
|
|
237
|
-
version = "0.7.
|
|
238
|
+
version = "0.7.4"
|
|
238
239
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
239
|
-
checksum = "
|
|
240
|
+
checksum = "f46ad14479a25103f283c0f10005961cf086d8dc42205bb44c46ac563475dca6"
|
|
240
241
|
|
|
241
242
|
[[package]]
|
|
242
243
|
name = "clap_mangen"
|
|
243
|
-
version = "0.2.
|
|
244
|
+
version = "0.2.26"
|
|
244
245
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
245
|
-
checksum = "
|
|
246
|
+
checksum = "724842fa9b144f9b89b3f3d371a89f3455eea660361d13a554f68f8ae5d6c13a"
|
|
246
247
|
dependencies = [
|
|
247
248
|
"clap",
|
|
248
249
|
"roff",
|
|
@@ -306,7 +307,7 @@ dependencies = [
|
|
|
306
307
|
|
|
307
308
|
[[package]]
|
|
308
309
|
name = "decasify"
|
|
309
|
-
version = "0.
|
|
310
|
+
version = "0.10.1"
|
|
310
311
|
dependencies = [
|
|
311
312
|
"anyhow",
|
|
312
313
|
"assert_cmd",
|
|
@@ -372,6 +373,17 @@ version = "0.4.0"
|
|
|
372
373
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
373
374
|
checksum = "6184e33543162437515c2e2b48714794e37845ec9851711914eec9d308f6ebe8"
|
|
374
375
|
|
|
376
|
+
[[package]]
|
|
377
|
+
name = "displaydoc"
|
|
378
|
+
version = "0.2.5"
|
|
379
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
380
|
+
checksum = "97369cbbc041bc366949bc74d34658d6cda5621039731c6310521892a3a20ae0"
|
|
381
|
+
dependencies = [
|
|
382
|
+
"proc-macro2",
|
|
383
|
+
"quote",
|
|
384
|
+
"syn",
|
|
385
|
+
]
|
|
386
|
+
|
|
375
387
|
[[package]]
|
|
376
388
|
name = "doc-comment"
|
|
377
389
|
version = "0.3.3"
|
|
@@ -386,18 +398,18 @@ checksum = "92773504d58c093f6de2459af4af33faa518c13451eb8f2b5698ed3d36e7c813"
|
|
|
386
398
|
|
|
387
399
|
[[package]]
|
|
388
400
|
name = "either"
|
|
389
|
-
version = "1.
|
|
401
|
+
version = "1.15.0"
|
|
390
402
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
391
|
-
checksum = "
|
|
403
|
+
checksum = "48c757948c5ede0e46177b7add2e67155f70e33c07fea8284df6576da70b3719"
|
|
392
404
|
|
|
393
405
|
[[package]]
|
|
394
406
|
name = "errno"
|
|
395
|
-
version = "0.3.
|
|
407
|
+
version = "0.3.10"
|
|
396
408
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
397
|
-
checksum = "
|
|
409
|
+
checksum = "33d852cb9b869c2a9b3df2f71a3074817f01e1844f839a144f5fcef059a4eb5d"
|
|
398
410
|
dependencies = [
|
|
399
411
|
"libc",
|
|
400
|
-
"windows-sys 0.
|
|
412
|
+
"windows-sys 0.59.0",
|
|
401
413
|
]
|
|
402
414
|
|
|
403
415
|
[[package]]
|
|
@@ -405,12 +417,15 @@ name = "faster-hex"
|
|
|
405
417
|
version = "0.9.0"
|
|
406
418
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
407
419
|
checksum = "a2a2b11eda1d40935b26cf18f6833c526845ae8c41e58d09af6adeb6f0269183"
|
|
420
|
+
dependencies = [
|
|
421
|
+
"serde",
|
|
422
|
+
]
|
|
408
423
|
|
|
409
424
|
[[package]]
|
|
410
425
|
name = "fastrand"
|
|
411
|
-
version = "2.
|
|
426
|
+
version = "2.3.0"
|
|
412
427
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
413
|
-
checksum = "
|
|
428
|
+
checksum = "37909eebbb50d72f9059c3b6d82c0463f2ff062c9e95845c43a6c9c0355411be"
|
|
414
429
|
|
|
415
430
|
[[package]]
|
|
416
431
|
name = "filetime"
|
|
@@ -426,9 +441,9 @@ dependencies = [
|
|
|
426
441
|
|
|
427
442
|
[[package]]
|
|
428
443
|
name = "flate2"
|
|
429
|
-
version = "1.0
|
|
444
|
+
version = "1.1.0"
|
|
430
445
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
431
|
-
checksum = "
|
|
446
|
+
checksum = "11faaf5a5236997af9848be0bef4db95824b1d534ebc64d0f0c6cf3e67bd38dc"
|
|
432
447
|
dependencies = [
|
|
433
448
|
"crc32fast",
|
|
434
449
|
"miniz_oxide",
|
|
@@ -436,9 +451,9 @@ dependencies = [
|
|
|
436
451
|
|
|
437
452
|
[[package]]
|
|
438
453
|
name = "float-cmp"
|
|
439
|
-
version = "0.
|
|
454
|
+
version = "0.10.0"
|
|
440
455
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
441
|
-
checksum = "
|
|
456
|
+
checksum = "b09cf3155332e944990140d967ff5eceb70df778b34f77d8075db46e4704e6d8"
|
|
442
457
|
dependencies = [
|
|
443
458
|
"num-traits",
|
|
444
459
|
]
|
|
@@ -458,11 +473,23 @@ dependencies = [
|
|
|
458
473
|
"percent-encoding",
|
|
459
474
|
]
|
|
460
475
|
|
|
476
|
+
[[package]]
|
|
477
|
+
name = "getrandom"
|
|
478
|
+
version = "0.3.1"
|
|
479
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
480
|
+
checksum = "43a49c392881ce6d5c3b8cb70f98717b7c07aabbdff06687b9030dbfbe2725f8"
|
|
481
|
+
dependencies = [
|
|
482
|
+
"cfg-if",
|
|
483
|
+
"libc",
|
|
484
|
+
"wasi",
|
|
485
|
+
"windows-targets",
|
|
486
|
+
]
|
|
487
|
+
|
|
461
488
|
[[package]]
|
|
462
489
|
name = "gix"
|
|
463
|
-
version = "0.
|
|
490
|
+
version = "0.68.0"
|
|
464
491
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
465
|
-
checksum = "
|
|
492
|
+
checksum = "b04c66359b5e17f92395abc433861df0edf48f39f3f590818d1d7217327dd6a1"
|
|
466
493
|
dependencies = [
|
|
467
494
|
"gix-actor",
|
|
468
495
|
"gix-commitgraph",
|
|
@@ -501,9 +528,9 @@ dependencies = [
|
|
|
501
528
|
|
|
502
529
|
[[package]]
|
|
503
530
|
name = "gix-actor"
|
|
504
|
-
version = "0.
|
|
531
|
+
version = "0.33.2"
|
|
505
532
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
506
|
-
checksum = "
|
|
533
|
+
checksum = "20018a1a6332e065f1fcc8305c1c932c6b8c9985edea2284b3c79dc6fa3ee4b2"
|
|
507
534
|
dependencies = [
|
|
508
535
|
"bstr",
|
|
509
536
|
"gix-date",
|
|
@@ -515,27 +542,27 @@ dependencies = [
|
|
|
515
542
|
|
|
516
543
|
[[package]]
|
|
517
544
|
name = "gix-bitmap"
|
|
518
|
-
version = "0.2.
|
|
545
|
+
version = "0.2.14"
|
|
519
546
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
520
|
-
checksum = "
|
|
547
|
+
checksum = "b1db9765c69502650da68f0804e3dc2b5f8ccc6a2d104ca6c85bc40700d37540"
|
|
521
548
|
dependencies = [
|
|
522
549
|
"thiserror",
|
|
523
550
|
]
|
|
524
551
|
|
|
525
552
|
[[package]]
|
|
526
553
|
name = "gix-chunk"
|
|
527
|
-
version = "0.4.
|
|
554
|
+
version = "0.4.11"
|
|
528
555
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
529
|
-
checksum = "
|
|
556
|
+
checksum = "0b1f1d8764958699dc764e3f727cef280ff4d1bd92c107bbf8acd85b30c1bd6f"
|
|
530
557
|
dependencies = [
|
|
531
558
|
"thiserror",
|
|
532
559
|
]
|
|
533
560
|
|
|
534
561
|
[[package]]
|
|
535
562
|
name = "gix-commitgraph"
|
|
536
|
-
version = "0.
|
|
563
|
+
version = "0.25.1"
|
|
537
564
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
538
|
-
checksum = "
|
|
565
|
+
checksum = "a8da6591a7868fb2b6dabddea6b09988b0b05e0213f938dbaa11a03dd7a48d85"
|
|
539
566
|
dependencies = [
|
|
540
567
|
"bstr",
|
|
541
568
|
"gix-chunk",
|
|
@@ -547,9 +574,9 @@ dependencies = [
|
|
|
547
574
|
|
|
548
575
|
[[package]]
|
|
549
576
|
name = "gix-config"
|
|
550
|
-
version = "0.
|
|
577
|
+
version = "0.42.0"
|
|
551
578
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
552
|
-
checksum = "
|
|
579
|
+
checksum = "6649b406ca1f99cb148959cf00468b231f07950f8ec438cc0903cda563606f19"
|
|
553
580
|
dependencies = [
|
|
554
581
|
"bstr",
|
|
555
582
|
"gix-config-value",
|
|
@@ -568,9 +595,9 @@ dependencies = [
|
|
|
568
595
|
|
|
569
596
|
[[package]]
|
|
570
597
|
name = "gix-config-value"
|
|
571
|
-
version = "0.14.
|
|
598
|
+
version = "0.14.11"
|
|
572
599
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
573
|
-
checksum = "
|
|
600
|
+
checksum = "11365144ef93082f3403471dbaa94cfe4b5e72743bdb9560719a251d439f4cee"
|
|
574
601
|
dependencies = [
|
|
575
602
|
"bitflags",
|
|
576
603
|
"bstr",
|
|
@@ -581,9 +608,9 @@ dependencies = [
|
|
|
581
608
|
|
|
582
609
|
[[package]]
|
|
583
610
|
name = "gix-date"
|
|
584
|
-
version = "0.9.
|
|
611
|
+
version = "0.9.3"
|
|
585
612
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
586
|
-
checksum = "
|
|
613
|
+
checksum = "c57c477b645ee248b173bb1176b52dd528872f12c50375801a58aaf5ae91113f"
|
|
587
614
|
dependencies = [
|
|
588
615
|
"bstr",
|
|
589
616
|
"itoa",
|
|
@@ -593,9 +620,9 @@ dependencies = [
|
|
|
593
620
|
|
|
594
621
|
[[package]]
|
|
595
622
|
name = "gix-diff"
|
|
596
|
-
version = "0.
|
|
623
|
+
version = "0.48.0"
|
|
597
624
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
598
|
-
checksum = "
|
|
625
|
+
checksum = "a327be31a392144b60ab0b1c863362c32a1c8f7effdfa2141d5d5b6b916ef3bf"
|
|
599
626
|
dependencies = [
|
|
600
627
|
"bstr",
|
|
601
628
|
"gix-hash",
|
|
@@ -605,9 +632,9 @@ dependencies = [
|
|
|
605
632
|
|
|
606
633
|
[[package]]
|
|
607
634
|
name = "gix-discover"
|
|
608
|
-
version = "0.
|
|
635
|
+
version = "0.37.0"
|
|
609
636
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
610
|
-
checksum = "
|
|
637
|
+
checksum = "83bf6dfa4e266a4a9becb4d18fc801f92c3f7cc6c433dd86fdadbcf315ffb6ef"
|
|
611
638
|
dependencies = [
|
|
612
639
|
"bstr",
|
|
613
640
|
"dunce",
|
|
@@ -621,9 +648,9 @@ dependencies = [
|
|
|
621
648
|
|
|
622
649
|
[[package]]
|
|
623
650
|
name = "gix-features"
|
|
624
|
-
version = "0.
|
|
651
|
+
version = "0.39.1"
|
|
625
652
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
626
|
-
checksum = "
|
|
653
|
+
checksum = "7d85d673f2e022a340dba4713bed77ef2cf4cd737d2f3e0f159d45e0935fd81f"
|
|
627
654
|
dependencies = [
|
|
628
655
|
"crc32fast",
|
|
629
656
|
"flate2",
|
|
@@ -640,9 +667,9 @@ dependencies = [
|
|
|
640
667
|
|
|
641
668
|
[[package]]
|
|
642
669
|
name = "gix-fs"
|
|
643
|
-
version = "0.
|
|
670
|
+
version = "0.12.1"
|
|
644
671
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
645
|
-
checksum = "
|
|
672
|
+
checksum = "3b3d4fac505a621f97e5ce2c69fdc425742af00c0920363ca4074f0eb48b1db9"
|
|
646
673
|
dependencies = [
|
|
647
674
|
"fastrand",
|
|
648
675
|
"gix-features",
|
|
@@ -651,9 +678,9 @@ dependencies = [
|
|
|
651
678
|
|
|
652
679
|
[[package]]
|
|
653
680
|
name = "gix-glob"
|
|
654
|
-
version = "0.
|
|
681
|
+
version = "0.17.1"
|
|
655
682
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
656
|
-
checksum = "
|
|
683
|
+
checksum = "aaf69a6bec0a3581567484bf99a4003afcaf6c469fd4214352517ea355cf3435"
|
|
657
684
|
dependencies = [
|
|
658
685
|
"bitflags",
|
|
659
686
|
"bstr",
|
|
@@ -663,9 +690,9 @@ dependencies = [
|
|
|
663
690
|
|
|
664
691
|
[[package]]
|
|
665
692
|
name = "gix-hash"
|
|
666
|
-
version = "0.
|
|
693
|
+
version = "0.15.1"
|
|
667
694
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
668
|
-
checksum = "
|
|
695
|
+
checksum = "0b5eccc17194ed0e67d49285e4853307e4147e95407f91c1c3e4a13ba9f4e4ce"
|
|
669
696
|
dependencies = [
|
|
670
697
|
"faster-hex",
|
|
671
698
|
"thiserror",
|
|
@@ -673,9 +700,9 @@ dependencies = [
|
|
|
673
700
|
|
|
674
701
|
[[package]]
|
|
675
702
|
name = "gix-hashtable"
|
|
676
|
-
version = "0.
|
|
703
|
+
version = "0.6.0"
|
|
677
704
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
678
|
-
checksum = "
|
|
705
|
+
checksum = "0ef65b256631078ef733bc5530c4e6b1c2e7d5c2830b75d4e9034ab3997d18fe"
|
|
679
706
|
dependencies = [
|
|
680
707
|
"gix-hash",
|
|
681
708
|
"hashbrown",
|
|
@@ -684,9 +711,9 @@ dependencies = [
|
|
|
684
711
|
|
|
685
712
|
[[package]]
|
|
686
713
|
name = "gix-index"
|
|
687
|
-
version = "0.
|
|
714
|
+
version = "0.37.0"
|
|
688
715
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
689
|
-
checksum = "
|
|
716
|
+
checksum = "270645fd20556b64c8ffa1540d921b281e6994413a0ca068596f97e9367a257a"
|
|
690
717
|
dependencies = [
|
|
691
718
|
"bitflags",
|
|
692
719
|
"bstr",
|
|
@@ -705,16 +732,16 @@ dependencies = [
|
|
|
705
732
|
"itoa",
|
|
706
733
|
"libc",
|
|
707
734
|
"memmap2",
|
|
708
|
-
"rustix",
|
|
735
|
+
"rustix 0.38.44",
|
|
709
736
|
"smallvec",
|
|
710
737
|
"thiserror",
|
|
711
738
|
]
|
|
712
739
|
|
|
713
740
|
[[package]]
|
|
714
741
|
name = "gix-lock"
|
|
715
|
-
version = "
|
|
742
|
+
version = "15.0.1"
|
|
716
743
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
717
|
-
checksum = "
|
|
744
|
+
checksum = "1cd3ab68a452db63d9f3ebdacb10f30dba1fa0d31ac64f4203d395ed1102d940"
|
|
718
745
|
dependencies = [
|
|
719
746
|
"gix-tempfile",
|
|
720
747
|
"gix-utils",
|
|
@@ -723,15 +750,17 @@ dependencies = [
|
|
|
723
750
|
|
|
724
751
|
[[package]]
|
|
725
752
|
name = "gix-object"
|
|
726
|
-
version = "0.
|
|
753
|
+
version = "0.46.1"
|
|
727
754
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
728
|
-
checksum = "
|
|
755
|
+
checksum = "e42d58010183ef033f31088479b4eb92b44fe341b35b62d39eb8b185573d77ea"
|
|
729
756
|
dependencies = [
|
|
730
757
|
"bstr",
|
|
731
758
|
"gix-actor",
|
|
732
759
|
"gix-date",
|
|
733
760
|
"gix-features",
|
|
734
761
|
"gix-hash",
|
|
762
|
+
"gix-hashtable",
|
|
763
|
+
"gix-path",
|
|
735
764
|
"gix-utils",
|
|
736
765
|
"gix-validate",
|
|
737
766
|
"itoa",
|
|
@@ -742,15 +771,16 @@ dependencies = [
|
|
|
742
771
|
|
|
743
772
|
[[package]]
|
|
744
773
|
name = "gix-odb"
|
|
745
|
-
version = "0.
|
|
774
|
+
version = "0.65.0"
|
|
746
775
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
747
|
-
checksum = "
|
|
776
|
+
checksum = "93bed6e1b577c25a6bb8e6ecbf4df525f29a671ddf5f2221821a56a8dbeec4e3"
|
|
748
777
|
dependencies = [
|
|
749
778
|
"arc-swap",
|
|
750
779
|
"gix-date",
|
|
751
780
|
"gix-features",
|
|
752
781
|
"gix-fs",
|
|
753
782
|
"gix-hash",
|
|
783
|
+
"gix-hashtable",
|
|
754
784
|
"gix-object",
|
|
755
785
|
"gix-pack",
|
|
756
786
|
"gix-path",
|
|
@@ -762,9 +792,9 @@ dependencies = [
|
|
|
762
792
|
|
|
763
793
|
[[package]]
|
|
764
794
|
name = "gix-pack"
|
|
765
|
-
version = "0.
|
|
795
|
+
version = "0.55.0"
|
|
766
796
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
767
|
-
checksum = "
|
|
797
|
+
checksum = "9b91fec04d359544fecbb8e85117ec746fbaa9046ebafcefb58cb74f20dc76d4"
|
|
768
798
|
dependencies = [
|
|
769
799
|
"clru",
|
|
770
800
|
"gix-chunk",
|
|
@@ -780,9 +810,9 @@ dependencies = [
|
|
|
780
810
|
|
|
781
811
|
[[package]]
|
|
782
812
|
name = "gix-path"
|
|
783
|
-
version = "0.10.
|
|
813
|
+
version = "0.10.14"
|
|
784
814
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
785
|
-
checksum = "
|
|
815
|
+
checksum = "c40f12bb65a8299be0cfb90fe718e3be236b7a94b434877012980863a883a99f"
|
|
786
816
|
dependencies = [
|
|
787
817
|
"bstr",
|
|
788
818
|
"gix-trace",
|
|
@@ -793,9 +823,9 @@ dependencies = [
|
|
|
793
823
|
|
|
794
824
|
[[package]]
|
|
795
825
|
name = "gix-quote"
|
|
796
|
-
version = "0.4.
|
|
826
|
+
version = "0.4.15"
|
|
797
827
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
798
|
-
checksum = "
|
|
828
|
+
checksum = "e49357fccdb0c85c0d3a3292a9f6db32d9b3535959b5471bb9624908f4a066c6"
|
|
799
829
|
dependencies = [
|
|
800
830
|
"bstr",
|
|
801
831
|
"gix-utils",
|
|
@@ -804,9 +834,9 @@ dependencies = [
|
|
|
804
834
|
|
|
805
835
|
[[package]]
|
|
806
836
|
name = "gix-ref"
|
|
807
|
-
version = "0.
|
|
837
|
+
version = "0.49.1"
|
|
808
838
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
809
|
-
checksum = "
|
|
839
|
+
checksum = "a91b61776c839d0f1b7114901179afb0947aa7f4d30793ca1c56d335dfef485f"
|
|
810
840
|
dependencies = [
|
|
811
841
|
"gix-actor",
|
|
812
842
|
"gix-features",
|
|
@@ -825,9 +855,9 @@ dependencies = [
|
|
|
825
855
|
|
|
826
856
|
[[package]]
|
|
827
857
|
name = "gix-refspec"
|
|
828
|
-
version = "0.
|
|
858
|
+
version = "0.27.0"
|
|
829
859
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
830
|
-
checksum = "
|
|
860
|
+
checksum = "00c056bb747868c7eb0aeb352c9f9181ab8ca3d0a2550f16470803500c6c413d"
|
|
831
861
|
dependencies = [
|
|
832
862
|
"bstr",
|
|
833
863
|
"gix-hash",
|
|
@@ -839,11 +869,13 @@ dependencies = [
|
|
|
839
869
|
|
|
840
870
|
[[package]]
|
|
841
871
|
name = "gix-revision"
|
|
842
|
-
version = "0.
|
|
872
|
+
version = "0.31.1"
|
|
843
873
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
844
|
-
checksum = "
|
|
874
|
+
checksum = "61e1ddc474405a68d2ce8485705dd72fe6ce959f2f5fe718601ead5da2c8f9e7"
|
|
845
875
|
dependencies = [
|
|
876
|
+
"bitflags",
|
|
846
877
|
"bstr",
|
|
878
|
+
"gix-commitgraph",
|
|
847
879
|
"gix-date",
|
|
848
880
|
"gix-hash",
|
|
849
881
|
"gix-hashtable",
|
|
@@ -855,9 +887,9 @@ dependencies = [
|
|
|
855
887
|
|
|
856
888
|
[[package]]
|
|
857
889
|
name = "gix-revwalk"
|
|
858
|
-
version = "0.
|
|
890
|
+
version = "0.17.0"
|
|
859
891
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
860
|
-
checksum = "
|
|
892
|
+
checksum = "510026fc32f456f8f067d8f37c34088b97a36b2229d88a6a5023ef179fcb109d"
|
|
861
893
|
dependencies = [
|
|
862
894
|
"gix-commitgraph",
|
|
863
895
|
"gix-date",
|
|
@@ -870,9 +902,9 @@ dependencies = [
|
|
|
870
902
|
|
|
871
903
|
[[package]]
|
|
872
904
|
name = "gix-sec"
|
|
873
|
-
version = "0.10.
|
|
905
|
+
version = "0.10.11"
|
|
874
906
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
875
|
-
checksum = "
|
|
907
|
+
checksum = "d84dae13271f4313f8d60a166bf27e54c968c7c33e2ffd31c48cafe5da649875"
|
|
876
908
|
dependencies = [
|
|
877
909
|
"bitflags",
|
|
878
910
|
"gix-path",
|
|
@@ -882,9 +914,9 @@ dependencies = [
|
|
|
882
914
|
|
|
883
915
|
[[package]]
|
|
884
916
|
name = "gix-tempfile"
|
|
885
|
-
version = "
|
|
917
|
+
version = "15.0.0"
|
|
886
918
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
887
|
-
checksum = "
|
|
919
|
+
checksum = "2feb86ef094cc77a4a9a5afbfe5de626897351bbbd0de3cb9314baf3049adb82"
|
|
888
920
|
dependencies = [
|
|
889
921
|
"gix-fs",
|
|
890
922
|
"libc",
|
|
@@ -897,15 +929,15 @@ dependencies = [
|
|
|
897
929
|
|
|
898
930
|
[[package]]
|
|
899
931
|
name = "gix-trace"
|
|
900
|
-
version = "0.1.
|
|
932
|
+
version = "0.1.12"
|
|
901
933
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
902
|
-
checksum = "
|
|
934
|
+
checksum = "7c396a2036920c69695f760a65e7f2677267ccf483f25046977d87e4cb2665f7"
|
|
903
935
|
|
|
904
936
|
[[package]]
|
|
905
937
|
name = "gix-traverse"
|
|
906
|
-
version = "0.
|
|
938
|
+
version = "0.43.1"
|
|
907
939
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
908
|
-
checksum = "
|
|
940
|
+
checksum = "6ed47d648619e23e93f971d2bba0d10c1100e54ef95d2981d609907a8cabac89"
|
|
909
941
|
dependencies = [
|
|
910
942
|
"bitflags",
|
|
911
943
|
"gix-commitgraph",
|
|
@@ -920,23 +952,23 @@ dependencies = [
|
|
|
920
952
|
|
|
921
953
|
[[package]]
|
|
922
954
|
name = "gix-url"
|
|
923
|
-
version = "0.
|
|
955
|
+
version = "0.28.2"
|
|
924
956
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
925
|
-
checksum = "
|
|
957
|
+
checksum = "d096fb733ba6bd3f5403dba8bd72bdd8809fe2b347b57844040b8f49c93492d9"
|
|
926
958
|
dependencies = [
|
|
927
959
|
"bstr",
|
|
928
960
|
"gix-features",
|
|
929
961
|
"gix-path",
|
|
930
|
-
"
|
|
962
|
+
"percent-encoding",
|
|
931
963
|
"thiserror",
|
|
932
964
|
"url",
|
|
933
965
|
]
|
|
934
966
|
|
|
935
967
|
[[package]]
|
|
936
968
|
name = "gix-utils"
|
|
937
|
-
version = "0.1.
|
|
969
|
+
version = "0.1.14"
|
|
938
970
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
939
|
-
checksum = "
|
|
971
|
+
checksum = "ff08f24e03ac8916c478c8419d7d3c33393da9bb41fa4c24455d5406aeefd35f"
|
|
940
972
|
dependencies = [
|
|
941
973
|
"fastrand",
|
|
942
974
|
"unicode-normalization",
|
|
@@ -944,9 +976,9 @@ dependencies = [
|
|
|
944
976
|
|
|
945
977
|
[[package]]
|
|
946
978
|
name = "gix-validate"
|
|
947
|
-
version = "0.9.
|
|
979
|
+
version = "0.9.3"
|
|
948
980
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
949
|
-
checksum = "
|
|
981
|
+
checksum = "9eaa01c3337d885617c0a42e92823922a2aea71f4caeace6fe87002bdcadbd90"
|
|
950
982
|
dependencies = [
|
|
951
983
|
"bstr",
|
|
952
984
|
"thiserror",
|
|
@@ -977,6 +1009,124 @@ dependencies = [
|
|
|
977
1009
|
"windows-sys 0.52.0",
|
|
978
1010
|
]
|
|
979
1011
|
|
|
1012
|
+
[[package]]
|
|
1013
|
+
name = "icu_collections"
|
|
1014
|
+
version = "1.5.0"
|
|
1015
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1016
|
+
checksum = "db2fa452206ebee18c4b5c2274dbf1de17008e874b4dc4f0aea9d01ca79e4526"
|
|
1017
|
+
dependencies = [
|
|
1018
|
+
"displaydoc",
|
|
1019
|
+
"yoke",
|
|
1020
|
+
"zerofrom",
|
|
1021
|
+
"zerovec",
|
|
1022
|
+
]
|
|
1023
|
+
|
|
1024
|
+
[[package]]
|
|
1025
|
+
name = "icu_locid"
|
|
1026
|
+
version = "1.5.0"
|
|
1027
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1028
|
+
checksum = "13acbb8371917fc971be86fc8057c41a64b521c184808a698c02acc242dbf637"
|
|
1029
|
+
dependencies = [
|
|
1030
|
+
"displaydoc",
|
|
1031
|
+
"litemap",
|
|
1032
|
+
"tinystr",
|
|
1033
|
+
"writeable",
|
|
1034
|
+
"zerovec",
|
|
1035
|
+
]
|
|
1036
|
+
|
|
1037
|
+
[[package]]
|
|
1038
|
+
name = "icu_locid_transform"
|
|
1039
|
+
version = "1.5.0"
|
|
1040
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1041
|
+
checksum = "01d11ac35de8e40fdeda00d9e1e9d92525f3f9d887cdd7aa81d727596788b54e"
|
|
1042
|
+
dependencies = [
|
|
1043
|
+
"displaydoc",
|
|
1044
|
+
"icu_locid",
|
|
1045
|
+
"icu_locid_transform_data",
|
|
1046
|
+
"icu_provider",
|
|
1047
|
+
"tinystr",
|
|
1048
|
+
"zerovec",
|
|
1049
|
+
]
|
|
1050
|
+
|
|
1051
|
+
[[package]]
|
|
1052
|
+
name = "icu_locid_transform_data"
|
|
1053
|
+
version = "1.5.0"
|
|
1054
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1055
|
+
checksum = "fdc8ff3388f852bede6b579ad4e978ab004f139284d7b28715f773507b946f6e"
|
|
1056
|
+
|
|
1057
|
+
[[package]]
|
|
1058
|
+
name = "icu_normalizer"
|
|
1059
|
+
version = "1.5.0"
|
|
1060
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1061
|
+
checksum = "19ce3e0da2ec68599d193c93d088142efd7f9c5d6fc9b803774855747dc6a84f"
|
|
1062
|
+
dependencies = [
|
|
1063
|
+
"displaydoc",
|
|
1064
|
+
"icu_collections",
|
|
1065
|
+
"icu_normalizer_data",
|
|
1066
|
+
"icu_properties",
|
|
1067
|
+
"icu_provider",
|
|
1068
|
+
"smallvec",
|
|
1069
|
+
"utf16_iter",
|
|
1070
|
+
"utf8_iter",
|
|
1071
|
+
"write16",
|
|
1072
|
+
"zerovec",
|
|
1073
|
+
]
|
|
1074
|
+
|
|
1075
|
+
[[package]]
|
|
1076
|
+
name = "icu_normalizer_data"
|
|
1077
|
+
version = "1.5.0"
|
|
1078
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1079
|
+
checksum = "f8cafbf7aa791e9b22bec55a167906f9e1215fd475cd22adfcf660e03e989516"
|
|
1080
|
+
|
|
1081
|
+
[[package]]
|
|
1082
|
+
name = "icu_properties"
|
|
1083
|
+
version = "1.5.1"
|
|
1084
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1085
|
+
checksum = "93d6020766cfc6302c15dbbc9c8778c37e62c14427cb7f6e601d849e092aeef5"
|
|
1086
|
+
dependencies = [
|
|
1087
|
+
"displaydoc",
|
|
1088
|
+
"icu_collections",
|
|
1089
|
+
"icu_locid_transform",
|
|
1090
|
+
"icu_properties_data",
|
|
1091
|
+
"icu_provider",
|
|
1092
|
+
"tinystr",
|
|
1093
|
+
"zerovec",
|
|
1094
|
+
]
|
|
1095
|
+
|
|
1096
|
+
[[package]]
|
|
1097
|
+
name = "icu_properties_data"
|
|
1098
|
+
version = "1.5.0"
|
|
1099
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1100
|
+
checksum = "67a8effbc3dd3e4ba1afa8ad918d5684b8868b3b26500753effea8d2eed19569"
|
|
1101
|
+
|
|
1102
|
+
[[package]]
|
|
1103
|
+
name = "icu_provider"
|
|
1104
|
+
version = "1.5.0"
|
|
1105
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1106
|
+
checksum = "6ed421c8a8ef78d3e2dbc98a973be2f3770cb42b606e3ab18d6237c4dfde68d9"
|
|
1107
|
+
dependencies = [
|
|
1108
|
+
"displaydoc",
|
|
1109
|
+
"icu_locid",
|
|
1110
|
+
"icu_provider_macros",
|
|
1111
|
+
"stable_deref_trait",
|
|
1112
|
+
"tinystr",
|
|
1113
|
+
"writeable",
|
|
1114
|
+
"yoke",
|
|
1115
|
+
"zerofrom",
|
|
1116
|
+
"zerovec",
|
|
1117
|
+
]
|
|
1118
|
+
|
|
1119
|
+
[[package]]
|
|
1120
|
+
name = "icu_provider_macros"
|
|
1121
|
+
version = "1.5.0"
|
|
1122
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1123
|
+
checksum = "1ec89e9337638ecdc08744df490b221a7399bf8d164eb52a665454e60e075ad6"
|
|
1124
|
+
dependencies = [
|
|
1125
|
+
"proc-macro2",
|
|
1126
|
+
"quote",
|
|
1127
|
+
"syn",
|
|
1128
|
+
]
|
|
1129
|
+
|
|
980
1130
|
[[package]]
|
|
981
1131
|
name = "ident_case"
|
|
982
1132
|
version = "1.0.1"
|
|
@@ -985,19 +1135,30 @@ checksum = "b9e0384b61958566e926dc50660321d12159025e767c18e043daf26b70104c39"
|
|
|
985
1135
|
|
|
986
1136
|
[[package]]
|
|
987
1137
|
name = "idna"
|
|
988
|
-
version = "0.
|
|
1138
|
+
version = "1.0.3"
|
|
989
1139
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
990
|
-
checksum = "
|
|
1140
|
+
checksum = "686f825264d630750a544639377bae737628043f20d38bbc029e8f29ea968a7e"
|
|
991
1141
|
dependencies = [
|
|
992
|
-
"
|
|
993
|
-
"
|
|
1142
|
+
"idna_adapter",
|
|
1143
|
+
"smallvec",
|
|
1144
|
+
"utf8_iter",
|
|
1145
|
+
]
|
|
1146
|
+
|
|
1147
|
+
[[package]]
|
|
1148
|
+
name = "idna_adapter"
|
|
1149
|
+
version = "1.2.0"
|
|
1150
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1151
|
+
checksum = "daca1df1c957320b2cf139ac61e7bd64fed304c5040df000a745aa1de3b4ef71"
|
|
1152
|
+
dependencies = [
|
|
1153
|
+
"icu_normalizer",
|
|
1154
|
+
"icu_properties",
|
|
994
1155
|
]
|
|
995
1156
|
|
|
996
1157
|
[[package]]
|
|
997
1158
|
name = "indoc"
|
|
998
|
-
version = "2.0.
|
|
1159
|
+
version = "2.0.6"
|
|
999
1160
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1000
|
-
checksum = "
|
|
1161
|
+
checksum = "f4c7245a08504955605670dbf141fceab975f15ca21570696aebe9d2e71576bd"
|
|
1001
1162
|
|
|
1002
1163
|
[[package]]
|
|
1003
1164
|
name = "is_terminal_polyfill"
|
|
@@ -1007,40 +1168,44 @@ checksum = "7943c866cc5cd64cbc25b2e01621d07fa8eb2a1a23160ee81ce38704e97b8ecf"
|
|
|
1007
1168
|
|
|
1008
1169
|
[[package]]
|
|
1009
1170
|
name = "itoa"
|
|
1010
|
-
version = "1.0.
|
|
1171
|
+
version = "1.0.15"
|
|
1011
1172
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1012
|
-
checksum = "
|
|
1173
|
+
checksum = "4a5f13b858c8d314ee3e8f639011f7ccefe71f97f96e50151fb991f267928e2c"
|
|
1013
1174
|
|
|
1014
1175
|
[[package]]
|
|
1015
1176
|
name = "jiff"
|
|
1016
|
-
version = "0.1.
|
|
1177
|
+
version = "0.1.29"
|
|
1017
1178
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1018
|
-
checksum = "
|
|
1179
|
+
checksum = "c04ef77ae73f3cf50510712722f0c4e8b46f5aaa1bf5ffad2ae213e6495e78e5"
|
|
1019
1180
|
dependencies = [
|
|
1020
1181
|
"jiff-tzdb-platform",
|
|
1182
|
+
"log",
|
|
1183
|
+
"portable-atomic",
|
|
1184
|
+
"portable-atomic-util",
|
|
1185
|
+
"serde",
|
|
1021
1186
|
"windows-sys 0.59.0",
|
|
1022
1187
|
]
|
|
1023
1188
|
|
|
1024
1189
|
[[package]]
|
|
1025
1190
|
name = "jiff-tzdb"
|
|
1026
|
-
version = "0.1.
|
|
1191
|
+
version = "0.1.3"
|
|
1027
1192
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1028
|
-
checksum = "
|
|
1193
|
+
checksum = "962e1dfe9b2d75a84536cf5bf5eaaa4319aa7906c7160134a22883ac316d5f31"
|
|
1029
1194
|
|
|
1030
1195
|
[[package]]
|
|
1031
1196
|
name = "jiff-tzdb-platform"
|
|
1032
|
-
version = "0.1.
|
|
1197
|
+
version = "0.1.2"
|
|
1033
1198
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1034
|
-
checksum = "
|
|
1199
|
+
checksum = "a63c62e404e7b92979d2792352d885a7f8f83fd1d0d31eea582d77b2ceca697e"
|
|
1035
1200
|
dependencies = [
|
|
1036
1201
|
"jiff-tzdb",
|
|
1037
1202
|
]
|
|
1038
1203
|
|
|
1039
1204
|
[[package]]
|
|
1040
1205
|
name = "libc"
|
|
1041
|
-
version = "0.2.
|
|
1206
|
+
version = "0.2.171"
|
|
1042
1207
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1043
|
-
checksum = "
|
|
1208
|
+
checksum = "c19937216e9d3aa9956d9bb8dfc0b0c8beb6058fc4f7a4dc4d850edf86a237d6"
|
|
1044
1209
|
|
|
1045
1210
|
[[package]]
|
|
1046
1211
|
name = "libredox"
|
|
@@ -1055,9 +1220,21 @@ dependencies = [
|
|
|
1055
1220
|
|
|
1056
1221
|
[[package]]
|
|
1057
1222
|
name = "linux-raw-sys"
|
|
1058
|
-
version = "0.4.
|
|
1223
|
+
version = "0.4.15"
|
|
1224
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1225
|
+
checksum = "d26c52dbd32dccf2d10cac7725f8eae5296885fb5703b261f7d0a0739ec807ab"
|
|
1226
|
+
|
|
1227
|
+
[[package]]
|
|
1228
|
+
name = "linux-raw-sys"
|
|
1229
|
+
version = "0.9.3"
|
|
1230
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1231
|
+
checksum = "fe7db12097d22ec582439daf8618b8fdd1a7bef6270e9af3b1ebcd30893cf413"
|
|
1232
|
+
|
|
1233
|
+
[[package]]
|
|
1234
|
+
name = "litemap"
|
|
1235
|
+
version = "0.7.4"
|
|
1059
1236
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1060
|
-
checksum = "
|
|
1237
|
+
checksum = "4ee93343901ab17bd981295f2cf0026d4ad018c7c31ba84549a4ddbb47a45104"
|
|
1061
1238
|
|
|
1062
1239
|
[[package]]
|
|
1063
1240
|
name = "lock_api"
|
|
@@ -1071,9 +1248,9 @@ dependencies = [
|
|
|
1071
1248
|
|
|
1072
1249
|
[[package]]
|
|
1073
1250
|
name = "log"
|
|
1074
|
-
version = "0.4.
|
|
1251
|
+
version = "0.4.26"
|
|
1075
1252
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1076
|
-
checksum = "
|
|
1253
|
+
checksum = "30bde2b3dc3671ae49d8e2e9f044c7c005836e7a023ee57cffa25ab82764bb9e"
|
|
1077
1254
|
|
|
1078
1255
|
[[package]]
|
|
1079
1256
|
name = "memchr"
|
|
@@ -1101,18 +1278,18 @@ dependencies = [
|
|
|
1101
1278
|
|
|
1102
1279
|
[[package]]
|
|
1103
1280
|
name = "miniz_oxide"
|
|
1104
|
-
version = "0.8.
|
|
1281
|
+
version = "0.8.5"
|
|
1105
1282
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1106
|
-
checksum = "
|
|
1283
|
+
checksum = "8e3e04debbb59698c15bacbb6d93584a8c0ca9cc3213cb423d31f760d8843ce5"
|
|
1107
1284
|
dependencies = [
|
|
1108
1285
|
"adler2",
|
|
1109
1286
|
]
|
|
1110
1287
|
|
|
1111
1288
|
[[package]]
|
|
1112
1289
|
name = "mlua"
|
|
1113
|
-
version = "0.10.
|
|
1290
|
+
version = "0.10.3"
|
|
1114
1291
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1115
|
-
checksum = "
|
|
1292
|
+
checksum = "d3f763c1041eff92ffb5d7169968a327e1ed2ebfe425dac0ee5a35f29082534b"
|
|
1116
1293
|
dependencies = [
|
|
1117
1294
|
"bstr",
|
|
1118
1295
|
"either",
|
|
@@ -1125,9 +1302,9 @@ dependencies = [
|
|
|
1125
1302
|
|
|
1126
1303
|
[[package]]
|
|
1127
1304
|
name = "mlua-sys"
|
|
1128
|
-
version = "0.6.
|
|
1305
|
+
version = "0.6.7"
|
|
1129
1306
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1130
|
-
checksum = "
|
|
1307
|
+
checksum = "1901c1a635a22fe9250ffcc4fcc937c16b47c2e9e71adba8784af8bca1f69594"
|
|
1131
1308
|
dependencies = [
|
|
1132
1309
|
"cc",
|
|
1133
1310
|
"cfg-if",
|
|
@@ -1136,9 +1313,9 @@ dependencies = [
|
|
|
1136
1313
|
|
|
1137
1314
|
[[package]]
|
|
1138
1315
|
name = "mlua_derive"
|
|
1139
|
-
version = "0.10.
|
|
1316
|
+
version = "0.10.1"
|
|
1140
1317
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1141
|
-
checksum = "
|
|
1318
|
+
checksum = "870d71c172fcf491c6b5fb4c04160619a2ee3e5a42a1402269c66bcbf1dd4deb"
|
|
1142
1319
|
dependencies = [
|
|
1143
1320
|
"proc-macro2",
|
|
1144
1321
|
"quote",
|
|
@@ -1177,9 +1354,9 @@ dependencies = [
|
|
|
1177
1354
|
|
|
1178
1355
|
[[package]]
|
|
1179
1356
|
name = "once_cell"
|
|
1180
|
-
version = "1.
|
|
1357
|
+
version = "1.21.1"
|
|
1181
1358
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1182
|
-
checksum = "
|
|
1359
|
+
checksum = "d75b0bedcc4fe52caa0e03d9f1151a323e4aa5e2d78ba3580400cd3c9e2bc4bc"
|
|
1183
1360
|
|
|
1184
1361
|
[[package]]
|
|
1185
1362
|
name = "parking_lot"
|
|
@@ -1212,15 +1389,24 @@ checksum = "e3148f5046208a5d56bcfc03053e3ca6334e51da8dfb19b6cdc8b306fae3283e"
|
|
|
1212
1389
|
|
|
1213
1390
|
[[package]]
|
|
1214
1391
|
name = "pkg-config"
|
|
1215
|
-
version = "0.3.
|
|
1392
|
+
version = "0.3.32"
|
|
1216
1393
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1217
|
-
checksum = "
|
|
1394
|
+
checksum = "7edddbd0b52d732b21ad9a5fab5c704c14cd949e5e9a1ec5929a24fded1b904c"
|
|
1218
1395
|
|
|
1219
1396
|
[[package]]
|
|
1220
1397
|
name = "portable-atomic"
|
|
1221
|
-
version = "1.
|
|
1398
|
+
version = "1.11.0"
|
|
1222
1399
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1223
|
-
checksum = "
|
|
1400
|
+
checksum = "350e9b48cbc6b0e028b0473b114454c6316e57336ee184ceab6e53f72c178b3e"
|
|
1401
|
+
|
|
1402
|
+
[[package]]
|
|
1403
|
+
name = "portable-atomic-util"
|
|
1404
|
+
version = "0.2.4"
|
|
1405
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1406
|
+
checksum = "d8a2f0d8d040d7848a709caf78912debcc3f33ee4b3cac47d73d1e1069e83507"
|
|
1407
|
+
dependencies = [
|
|
1408
|
+
"portable-atomic",
|
|
1409
|
+
]
|
|
1224
1410
|
|
|
1225
1411
|
[[package]]
|
|
1226
1412
|
name = "powerfmt"
|
|
@@ -1230,9 +1416,9 @@ checksum = "439ee305def115ba05938db6eb1644ff94165c5ab5e9420d1c1bcedbba909391"
|
|
|
1230
1416
|
|
|
1231
1417
|
[[package]]
|
|
1232
1418
|
name = "predicates"
|
|
1233
|
-
version = "3.1.
|
|
1419
|
+
version = "3.1.3"
|
|
1234
1420
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1235
|
-
checksum = "
|
|
1421
|
+
checksum = "a5d19ee57562043d37e82899fade9a22ebab7be9cef5026b07fda9cdd4293573"
|
|
1236
1422
|
dependencies = [
|
|
1237
1423
|
"anstyle",
|
|
1238
1424
|
"difflib",
|
|
@@ -1244,15 +1430,15 @@ dependencies = [
|
|
|
1244
1430
|
|
|
1245
1431
|
[[package]]
|
|
1246
1432
|
name = "predicates-core"
|
|
1247
|
-
version = "1.0.
|
|
1433
|
+
version = "1.0.9"
|
|
1248
1434
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1249
|
-
checksum = "
|
|
1435
|
+
checksum = "727e462b119fe9c93fd0eb1429a5f7647394014cf3c04ab2c0350eeb09095ffa"
|
|
1250
1436
|
|
|
1251
1437
|
[[package]]
|
|
1252
1438
|
name = "predicates-tree"
|
|
1253
|
-
version = "1.0.
|
|
1439
|
+
version = "1.0.12"
|
|
1254
1440
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1255
|
-
checksum = "
|
|
1441
|
+
checksum = "72dd2d6d381dfb73a193c7fca536518d7caee39fc8503f74e7dc0be0531b425c"
|
|
1256
1442
|
dependencies = [
|
|
1257
1443
|
"predicates-core",
|
|
1258
1444
|
"termtree",
|
|
@@ -1260,24 +1446,28 @@ dependencies = [
|
|
|
1260
1446
|
|
|
1261
1447
|
[[package]]
|
|
1262
1448
|
name = "proc-macro2"
|
|
1263
|
-
version = "1.0.
|
|
1449
|
+
version = "1.0.94"
|
|
1264
1450
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1265
|
-
checksum = "
|
|
1451
|
+
checksum = "a31971752e70b8b2686d7e46ec17fb38dad4051d94024c88df49b667caea9c84"
|
|
1266
1452
|
dependencies = [
|
|
1267
1453
|
"unicode-ident",
|
|
1268
1454
|
]
|
|
1269
1455
|
|
|
1270
1456
|
[[package]]
|
|
1271
1457
|
name = "prodash"
|
|
1272
|
-
version = "
|
|
1458
|
+
version = "29.0.1"
|
|
1273
1459
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1274
|
-
checksum = "
|
|
1460
|
+
checksum = "9ee7ce24c980b976607e2d6ae4aae92827994d23fed71659c3ede3f92528b58b"
|
|
1461
|
+
dependencies = [
|
|
1462
|
+
"log",
|
|
1463
|
+
"parking_lot",
|
|
1464
|
+
]
|
|
1275
1465
|
|
|
1276
1466
|
[[package]]
|
|
1277
1467
|
name = "pyo3"
|
|
1278
|
-
version = "0.
|
|
1468
|
+
version = "0.24.0"
|
|
1279
1469
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1280
|
-
checksum = "
|
|
1470
|
+
checksum = "7f1c6c3591120564d64db2261bec5f910ae454f01def849b9c22835a84695e86"
|
|
1281
1471
|
dependencies = [
|
|
1282
1472
|
"cfg-if",
|
|
1283
1473
|
"indoc",
|
|
@@ -1293,9 +1483,9 @@ dependencies = [
|
|
|
1293
1483
|
|
|
1294
1484
|
[[package]]
|
|
1295
1485
|
name = "pyo3-build-config"
|
|
1296
|
-
version = "0.
|
|
1486
|
+
version = "0.24.0"
|
|
1297
1487
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1298
|
-
checksum = "
|
|
1488
|
+
checksum = "e9b6c2b34cf71427ea37c7001aefbaeb85886a074795e35f161f5aecc7620a7a"
|
|
1299
1489
|
dependencies = [
|
|
1300
1490
|
"once_cell",
|
|
1301
1491
|
"target-lexicon",
|
|
@@ -1303,9 +1493,9 @@ dependencies = [
|
|
|
1303
1493
|
|
|
1304
1494
|
[[package]]
|
|
1305
1495
|
name = "pyo3-ffi"
|
|
1306
|
-
version = "0.
|
|
1496
|
+
version = "0.24.0"
|
|
1307
1497
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1308
|
-
checksum = "
|
|
1498
|
+
checksum = "5507651906a46432cdda02cd02dd0319f6064f1374c9147c45b978621d2c3a9c"
|
|
1309
1499
|
dependencies = [
|
|
1310
1500
|
"libc",
|
|
1311
1501
|
"pyo3-build-config",
|
|
@@ -1313,9 +1503,9 @@ dependencies = [
|
|
|
1313
1503
|
|
|
1314
1504
|
[[package]]
|
|
1315
1505
|
name = "pyo3-macros"
|
|
1316
|
-
version = "0.
|
|
1506
|
+
version = "0.24.0"
|
|
1317
1507
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1318
|
-
checksum = "
|
|
1508
|
+
checksum = "b0d394b5b4fd8d97d48336bb0dd2aebabad39f1d294edd6bcd2cccf2eefe6f42"
|
|
1319
1509
|
dependencies = [
|
|
1320
1510
|
"proc-macro2",
|
|
1321
1511
|
"pyo3-macros-backend",
|
|
@@ -1325,9 +1515,9 @@ dependencies = [
|
|
|
1325
1515
|
|
|
1326
1516
|
[[package]]
|
|
1327
1517
|
name = "pyo3-macros-backend"
|
|
1328
|
-
version = "0.
|
|
1518
|
+
version = "0.24.0"
|
|
1329
1519
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1330
|
-
checksum = "
|
|
1520
|
+
checksum = "fd72da09cfa943b1080f621f024d2ef7e2773df7badd51aa30a2be1f8caa7c8e"
|
|
1331
1521
|
dependencies = [
|
|
1332
1522
|
"heck",
|
|
1333
1523
|
"proc-macro2",
|
|
@@ -1338,18 +1528,18 @@ dependencies = [
|
|
|
1338
1528
|
|
|
1339
1529
|
[[package]]
|
|
1340
1530
|
name = "quote"
|
|
1341
|
-
version = "1.0.
|
|
1531
|
+
version = "1.0.40"
|
|
1342
1532
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1343
|
-
checksum = "
|
|
1533
|
+
checksum = "1885c039570dc00dcb4ff087a89e185fd56bae234ddc7f056a945bf36467248d"
|
|
1344
1534
|
dependencies = [
|
|
1345
1535
|
"proc-macro2",
|
|
1346
1536
|
]
|
|
1347
1537
|
|
|
1348
1538
|
[[package]]
|
|
1349
1539
|
name = "redox_syscall"
|
|
1350
|
-
version = "0.5.
|
|
1540
|
+
version = "0.5.10"
|
|
1351
1541
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1352
|
-
checksum = "
|
|
1542
|
+
checksum = "0b8c0c260b63a8219631167be35e6a988e9554dbd323f8bd08439c8ed1302bd1"
|
|
1353
1543
|
dependencies = [
|
|
1354
1544
|
"bitflags",
|
|
1355
1545
|
]
|
|
@@ -1368,9 +1558,9 @@ dependencies = [
|
|
|
1368
1558
|
|
|
1369
1559
|
[[package]]
|
|
1370
1560
|
name = "regex-automata"
|
|
1371
|
-
version = "0.4.
|
|
1561
|
+
version = "0.4.9"
|
|
1372
1562
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1373
|
-
checksum = "
|
|
1563
|
+
checksum = "809e8dc61f6de73b46c85f4c96486310fe304c434cfa43669d7b40f711150908"
|
|
1374
1564
|
dependencies = [
|
|
1375
1565
|
"aho-corasick",
|
|
1376
1566
|
"memchr",
|
|
@@ -1391,9 +1581,9 @@ checksum = "88f8660c1ff60292143c98d08fc6e2f654d722db50410e3f3797d40baaf9d8f3"
|
|
|
1391
1581
|
|
|
1392
1582
|
[[package]]
|
|
1393
1583
|
name = "rustc-hash"
|
|
1394
|
-
version = "2.
|
|
1584
|
+
version = "2.1.1"
|
|
1395
1585
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1396
|
-
checksum = "
|
|
1586
|
+
checksum = "357703d41365b4b27c590e3ed91eabb1b663f07c4c084095e60cbed4362dff0d"
|
|
1397
1587
|
|
|
1398
1588
|
[[package]]
|
|
1399
1589
|
name = "rustc_version"
|
|
@@ -1406,28 +1596,41 @@ dependencies = [
|
|
|
1406
1596
|
|
|
1407
1597
|
[[package]]
|
|
1408
1598
|
name = "rustix"
|
|
1409
|
-
version = "0.38.
|
|
1599
|
+
version = "0.38.44"
|
|
1410
1600
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1411
|
-
checksum = "
|
|
1601
|
+
checksum = "fdb5bc1ae2baa591800df16c9ca78619bf65c0488b41b96ccec5d11220d8c154"
|
|
1412
1602
|
dependencies = [
|
|
1413
1603
|
"bitflags",
|
|
1414
1604
|
"errno",
|
|
1415
1605
|
"libc",
|
|
1416
|
-
"linux-raw-sys",
|
|
1417
|
-
"windows-sys 0.
|
|
1606
|
+
"linux-raw-sys 0.4.15",
|
|
1607
|
+
"windows-sys 0.59.0",
|
|
1608
|
+
]
|
|
1609
|
+
|
|
1610
|
+
[[package]]
|
|
1611
|
+
name = "rustix"
|
|
1612
|
+
version = "1.0.2"
|
|
1613
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1614
|
+
checksum = "f7178faa4b75a30e269c71e61c353ce2748cf3d76f0c44c393f4e60abf49b825"
|
|
1615
|
+
dependencies = [
|
|
1616
|
+
"bitflags",
|
|
1617
|
+
"errno",
|
|
1618
|
+
"libc",
|
|
1619
|
+
"linux-raw-sys 0.9.3",
|
|
1620
|
+
"windows-sys 0.59.0",
|
|
1418
1621
|
]
|
|
1419
1622
|
|
|
1420
1623
|
[[package]]
|
|
1421
1624
|
name = "rustversion"
|
|
1422
|
-
version = "1.0.
|
|
1625
|
+
version = "1.0.20"
|
|
1423
1626
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1424
|
-
checksum = "
|
|
1627
|
+
checksum = "eded382c5f5f786b989652c49544c4877d9f015cc22e145a5ea8ea66c2921cd2"
|
|
1425
1628
|
|
|
1426
1629
|
[[package]]
|
|
1427
1630
|
name = "ryu"
|
|
1428
|
-
version = "1.0.
|
|
1631
|
+
version = "1.0.20"
|
|
1429
1632
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1430
|
-
checksum = "
|
|
1633
|
+
checksum = "28d3b2b1366ec20994f1fd18c3c594f05c5dd4bc44d8bb0c1c632c8d6829481f"
|
|
1431
1634
|
|
|
1432
1635
|
[[package]]
|
|
1433
1636
|
name = "same-file"
|
|
@@ -1446,27 +1649,27 @@ checksum = "94143f37725109f92c262ed2cf5e59bce7498c01bcc1502d7b9afe439a4e9f49"
|
|
|
1446
1649
|
|
|
1447
1650
|
[[package]]
|
|
1448
1651
|
name = "semver"
|
|
1449
|
-
version = "1.0.
|
|
1652
|
+
version = "1.0.26"
|
|
1450
1653
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1451
|
-
checksum = "
|
|
1654
|
+
checksum = "56e6fa9c48d24d85fb3de5ad847117517440f6beceb7798af16b4a87d616b8d0"
|
|
1452
1655
|
dependencies = [
|
|
1453
1656
|
"serde",
|
|
1454
1657
|
]
|
|
1455
1658
|
|
|
1456
1659
|
[[package]]
|
|
1457
1660
|
name = "serde"
|
|
1458
|
-
version = "1.0.
|
|
1661
|
+
version = "1.0.219"
|
|
1459
1662
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1460
|
-
checksum = "
|
|
1663
|
+
checksum = "5f0e2c6ed6606019b4e29e69dbaba95b11854410e5347d525002456dbbb786b6"
|
|
1461
1664
|
dependencies = [
|
|
1462
1665
|
"serde_derive",
|
|
1463
1666
|
]
|
|
1464
1667
|
|
|
1465
1668
|
[[package]]
|
|
1466
1669
|
name = "serde_derive"
|
|
1467
|
-
version = "1.0.
|
|
1670
|
+
version = "1.0.219"
|
|
1468
1671
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1469
|
-
checksum = "
|
|
1672
|
+
checksum = "5b0276cf7f2c73365f7157c8123c21cd9a50fbbd844757af28ca1f5925fc2a00"
|
|
1470
1673
|
dependencies = [
|
|
1471
1674
|
"proc-macro2",
|
|
1472
1675
|
"quote",
|
|
@@ -1475,9 +1678,9 @@ dependencies = [
|
|
|
1475
1678
|
|
|
1476
1679
|
[[package]]
|
|
1477
1680
|
name = "serde_json"
|
|
1478
|
-
version = "1.0.
|
|
1681
|
+
version = "1.0.140"
|
|
1479
1682
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1480
|
-
checksum = "
|
|
1683
|
+
checksum = "20068b6e96dc6c9bd23e01df8827e6c7e1f2fddd43c21810382803c136b99373"
|
|
1481
1684
|
dependencies = [
|
|
1482
1685
|
"itoa",
|
|
1483
1686
|
"memchr",
|
|
@@ -1518,9 +1721,9 @@ dependencies = [
|
|
|
1518
1721
|
|
|
1519
1722
|
[[package]]
|
|
1520
1723
|
name = "smallvec"
|
|
1521
|
-
version = "1.
|
|
1724
|
+
version = "1.14.0"
|
|
1522
1725
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1523
|
-
checksum = "
|
|
1726
|
+
checksum = "7fcf8323ef1faaee30a44a340193b1ac6814fd9b7b4e88e9d4519a3e4abe1cfd"
|
|
1524
1727
|
|
|
1525
1728
|
[[package]]
|
|
1526
1729
|
name = "snafu"
|
|
@@ -1543,6 +1746,12 @@ dependencies = [
|
|
|
1543
1746
|
"syn",
|
|
1544
1747
|
]
|
|
1545
1748
|
|
|
1749
|
+
[[package]]
|
|
1750
|
+
name = "stable_deref_trait"
|
|
1751
|
+
version = "1.2.0"
|
|
1752
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1753
|
+
checksum = "a8f112729512f8e442d81f95a8a7ddf2b7c6b8a1a6f509a95864142b30cab2d3"
|
|
1754
|
+
|
|
1546
1755
|
[[package]]
|
|
1547
1756
|
name = "strsim"
|
|
1548
1757
|
version = "0.11.1"
|
|
@@ -1551,15 +1760,15 @@ checksum = "7da8b5736845d9f2fcb837ea5d9e2628564b3b043a70948a3f0b778838c5fb4f"
|
|
|
1551
1760
|
|
|
1552
1761
|
[[package]]
|
|
1553
1762
|
name = "strum"
|
|
1554
|
-
version = "0.
|
|
1763
|
+
version = "0.27.1"
|
|
1555
1764
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1556
|
-
checksum = "
|
|
1765
|
+
checksum = "f64def088c51c9510a8579e3c5d67c65349dcf755e5479ad3d010aa6454e2c32"
|
|
1557
1766
|
|
|
1558
1767
|
[[package]]
|
|
1559
1768
|
name = "strum_macros"
|
|
1560
|
-
version = "0.
|
|
1769
|
+
version = "0.27.1"
|
|
1561
1770
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1562
|
-
checksum = "
|
|
1771
|
+
checksum = "c77a8c5abcaf0f9ce05d62342b7d298c346515365c36b673df4ebe3ced01fde8"
|
|
1563
1772
|
dependencies = [
|
|
1564
1773
|
"heck",
|
|
1565
1774
|
"proc-macro2",
|
|
@@ -1570,64 +1779,75 @@ dependencies = [
|
|
|
1570
1779
|
|
|
1571
1780
|
[[package]]
|
|
1572
1781
|
name = "syn"
|
|
1573
|
-
version = "2.0.
|
|
1782
|
+
version = "2.0.100"
|
|
1574
1783
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1575
|
-
checksum = "
|
|
1784
|
+
checksum = "b09a44accad81e1ba1cd74a32461ba89dee89095ba17b32f5d03683b1b1fc2a0"
|
|
1576
1785
|
dependencies = [
|
|
1577
1786
|
"proc-macro2",
|
|
1578
1787
|
"quote",
|
|
1579
1788
|
"unicode-ident",
|
|
1580
1789
|
]
|
|
1581
1790
|
|
|
1791
|
+
[[package]]
|
|
1792
|
+
name = "synstructure"
|
|
1793
|
+
version = "0.13.1"
|
|
1794
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1795
|
+
checksum = "c8af7666ab7b6390ab78131fb5b0fce11d6b7a6951602017c35fa82800708971"
|
|
1796
|
+
dependencies = [
|
|
1797
|
+
"proc-macro2",
|
|
1798
|
+
"quote",
|
|
1799
|
+
"syn",
|
|
1800
|
+
]
|
|
1801
|
+
|
|
1582
1802
|
[[package]]
|
|
1583
1803
|
name = "target-lexicon"
|
|
1584
|
-
version = "0.
|
|
1804
|
+
version = "0.13.2"
|
|
1585
1805
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1586
|
-
checksum = "
|
|
1806
|
+
checksum = "e502f78cdbb8ba4718f566c418c52bc729126ffd16baee5baa718cf25dd5a69a"
|
|
1587
1807
|
|
|
1588
1808
|
[[package]]
|
|
1589
1809
|
name = "tempfile"
|
|
1590
|
-
version = "3.
|
|
1810
|
+
version = "3.19.0"
|
|
1591
1811
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1592
|
-
checksum = "
|
|
1812
|
+
checksum = "488960f40a3fd53d72c2a29a58722561dee8afdd175bd88e3db4677d7b2ba600"
|
|
1593
1813
|
dependencies = [
|
|
1594
|
-
"cfg-if",
|
|
1595
1814
|
"fastrand",
|
|
1815
|
+
"getrandom",
|
|
1596
1816
|
"once_cell",
|
|
1597
|
-
"rustix",
|
|
1817
|
+
"rustix 1.0.2",
|
|
1598
1818
|
"windows-sys 0.59.0",
|
|
1599
1819
|
]
|
|
1600
1820
|
|
|
1601
1821
|
[[package]]
|
|
1602
1822
|
name = "terminal_size"
|
|
1603
|
-
version = "0.4.
|
|
1823
|
+
version = "0.4.2"
|
|
1604
1824
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1605
|
-
checksum = "
|
|
1825
|
+
checksum = "45c6481c4829e4cc63825e62c49186a34538b7b2750b73b266581ffb612fb5ed"
|
|
1606
1826
|
dependencies = [
|
|
1607
|
-
"rustix",
|
|
1827
|
+
"rustix 1.0.2",
|
|
1608
1828
|
"windows-sys 0.59.0",
|
|
1609
1829
|
]
|
|
1610
1830
|
|
|
1611
1831
|
[[package]]
|
|
1612
1832
|
name = "termtree"
|
|
1613
|
-
version = "0.
|
|
1833
|
+
version = "0.5.1"
|
|
1614
1834
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1615
|
-
checksum = "
|
|
1835
|
+
checksum = "8f50febec83f5ee1df3015341d8bd429f2d1cc62bcba7ea2076759d315084683"
|
|
1616
1836
|
|
|
1617
1837
|
[[package]]
|
|
1618
1838
|
name = "thiserror"
|
|
1619
|
-
version = "
|
|
1839
|
+
version = "2.0.12"
|
|
1620
1840
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1621
|
-
checksum = "
|
|
1841
|
+
checksum = "567b8a2dae586314f7be2a752ec7474332959c6460e02bde30d702a66d488708"
|
|
1622
1842
|
dependencies = [
|
|
1623
1843
|
"thiserror-impl",
|
|
1624
1844
|
]
|
|
1625
1845
|
|
|
1626
1846
|
[[package]]
|
|
1627
1847
|
name = "thiserror-impl"
|
|
1628
|
-
version = "
|
|
1848
|
+
version = "2.0.12"
|
|
1629
1849
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1630
|
-
checksum = "
|
|
1850
|
+
checksum = "7f7cf42b4507d8ea322120659672cf1b9dbb93f8f2d4ecfd6e51350ff5b17a1d"
|
|
1631
1851
|
dependencies = [
|
|
1632
1852
|
"proc-macro2",
|
|
1633
1853
|
"quote",
|
|
@@ -1636,9 +1856,9 @@ dependencies = [
|
|
|
1636
1856
|
|
|
1637
1857
|
[[package]]
|
|
1638
1858
|
name = "time"
|
|
1639
|
-
version = "0.3.
|
|
1859
|
+
version = "0.3.39"
|
|
1640
1860
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1641
|
-
checksum = "
|
|
1861
|
+
checksum = "dad298b01a40a23aac4580b67e3dbedb7cc8402f3592d7f49469de2ea4aecdd8"
|
|
1642
1862
|
dependencies = [
|
|
1643
1863
|
"deranged",
|
|
1644
1864
|
"itoa",
|
|
@@ -1653,25 +1873,35 @@ dependencies = [
|
|
|
1653
1873
|
|
|
1654
1874
|
[[package]]
|
|
1655
1875
|
name = "time-core"
|
|
1656
|
-
version = "0.1.
|
|
1876
|
+
version = "0.1.3"
|
|
1657
1877
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1658
|
-
checksum = "
|
|
1878
|
+
checksum = "765c97a5b985b7c11d7bc27fa927dc4fe6af3a6dfb021d28deb60d3bf51e76ef"
|
|
1659
1879
|
|
|
1660
1880
|
[[package]]
|
|
1661
1881
|
name = "time-macros"
|
|
1662
|
-
version = "0.2.
|
|
1882
|
+
version = "0.2.20"
|
|
1663
1883
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1664
|
-
checksum = "
|
|
1884
|
+
checksum = "e8093bc3e81c3bc5f7879de09619d06c9a5a5e45ca44dfeeb7225bae38005c5c"
|
|
1665
1885
|
dependencies = [
|
|
1666
1886
|
"num-conv",
|
|
1667
1887
|
"time-core",
|
|
1668
1888
|
]
|
|
1669
1889
|
|
|
1890
|
+
[[package]]
|
|
1891
|
+
name = "tinystr"
|
|
1892
|
+
version = "0.7.6"
|
|
1893
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1894
|
+
checksum = "9117f5d4db391c1cf6927e7bea3db74b9a1c1add8f7eda9ffd5364f40f57b82f"
|
|
1895
|
+
dependencies = [
|
|
1896
|
+
"displaydoc",
|
|
1897
|
+
"zerovec",
|
|
1898
|
+
]
|
|
1899
|
+
|
|
1670
1900
|
[[package]]
|
|
1671
1901
|
name = "tinyvec"
|
|
1672
|
-
version = "1.
|
|
1902
|
+
version = "1.9.0"
|
|
1673
1903
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1674
|
-
checksum = "
|
|
1904
|
+
checksum = "09b3661f17e86524eccd4371ab0429194e0d7c008abb45f7a7495b1719463c71"
|
|
1675
1905
|
dependencies = [
|
|
1676
1906
|
"tinyvec_macros",
|
|
1677
1907
|
]
|
|
@@ -1684,28 +1914,22 @@ checksum = "1f3ccbac311fea05f86f61904b462b55fb3df8837a366dfc601a0161d0532f20"
|
|
|
1684
1914
|
|
|
1685
1915
|
[[package]]
|
|
1686
1916
|
name = "titlecase"
|
|
1687
|
-
version = "3.
|
|
1917
|
+
version = "3.4.0"
|
|
1688
1918
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1689
|
-
checksum = "
|
|
1919
|
+
checksum = "ef6b5cbe1316986025d8f662ff6945a0c85f2ca8ca13f04b5e0829ddb0d047f2"
|
|
1690
1920
|
dependencies = [
|
|
1691
1921
|
"regex",
|
|
1692
1922
|
]
|
|
1693
1923
|
|
|
1694
1924
|
[[package]]
|
|
1695
1925
|
name = "typst"
|
|
1696
|
-
version = "0.
|
|
1926
|
+
version = "0.10.1"
|
|
1697
1927
|
dependencies = [
|
|
1698
1928
|
"anyhow",
|
|
1699
1929
|
"decasify",
|
|
1700
1930
|
"wasm-minimal-protocol",
|
|
1701
1931
|
]
|
|
1702
1932
|
|
|
1703
|
-
[[package]]
|
|
1704
|
-
name = "unicode-bidi"
|
|
1705
|
-
version = "0.3.17"
|
|
1706
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1707
|
-
checksum = "5ab17db44d7388991a428b2ee655ce0c212e862eff1768a455c58f9aad6e7893"
|
|
1708
|
-
|
|
1709
1933
|
[[package]]
|
|
1710
1934
|
name = "unicode-bom"
|
|
1711
1935
|
version = "2.0.3"
|
|
@@ -1714,9 +1938,9 @@ checksum = "7eec5d1121208364f6793f7d2e222bf75a915c19557537745b195b253dd64217"
|
|
|
1714
1938
|
|
|
1715
1939
|
[[package]]
|
|
1716
1940
|
name = "unicode-ident"
|
|
1717
|
-
version = "1.0.
|
|
1941
|
+
version = "1.0.18"
|
|
1718
1942
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1719
|
-
checksum = "
|
|
1943
|
+
checksum = "5a5f39404a5da50712a4c1eecf25e90dd62b613502b7e925fd4e4d19b5c96512"
|
|
1720
1944
|
|
|
1721
1945
|
[[package]]
|
|
1722
1946
|
name = "unicode-normalization"
|
|
@@ -1735,21 +1959,33 @@ checksum = "8f38c16011df3a49175fa6d2aba98ce0de46dc8fbad136a4e34ab02d8613f844"
|
|
|
1735
1959
|
|
|
1736
1960
|
[[package]]
|
|
1737
1961
|
name = "unindent"
|
|
1738
|
-
version = "0.2.
|
|
1962
|
+
version = "0.2.4"
|
|
1739
1963
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1740
|
-
checksum = "
|
|
1964
|
+
checksum = "7264e107f553ccae879d21fbea1d6724ac785e8c3bfc762137959b5802826ef3"
|
|
1741
1965
|
|
|
1742
1966
|
[[package]]
|
|
1743
1967
|
name = "url"
|
|
1744
|
-
version = "2.5.
|
|
1968
|
+
version = "2.5.4"
|
|
1745
1969
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1746
|
-
checksum = "
|
|
1970
|
+
checksum = "32f8b686cadd1473f4bd0117a5d28d36b1ade384ea9b5069a1c40aefed7fda60"
|
|
1747
1971
|
dependencies = [
|
|
1748
1972
|
"form_urlencoded",
|
|
1749
1973
|
"idna",
|
|
1750
1974
|
"percent-encoding",
|
|
1751
1975
|
]
|
|
1752
1976
|
|
|
1977
|
+
[[package]]
|
|
1978
|
+
name = "utf16_iter"
|
|
1979
|
+
version = "1.0.5"
|
|
1980
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1981
|
+
checksum = "c8232dd3cdaed5356e0f716d285e4b40b932ac434100fe9b7e0e8e935b9e6246"
|
|
1982
|
+
|
|
1983
|
+
[[package]]
|
|
1984
|
+
name = "utf8_iter"
|
|
1985
|
+
version = "1.0.4"
|
|
1986
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1987
|
+
checksum = "b6c140620e7ffbb22c2dee59cafe6084a59b5ffc27a8859a5f0d494b5d52b6be"
|
|
1988
|
+
|
|
1753
1989
|
[[package]]
|
|
1754
1990
|
name = "utf8parse"
|
|
1755
1991
|
version = "0.2.2"
|
|
@@ -1768,9 +2004,9 @@ dependencies = [
|
|
|
1768
2004
|
|
|
1769
2005
|
[[package]]
|
|
1770
2006
|
name = "vergen"
|
|
1771
|
-
version = "9.0.
|
|
2007
|
+
version = "9.0.2"
|
|
1772
2008
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1773
|
-
checksum = "
|
|
2009
|
+
checksum = "31f25fc8f8f05df455c7941e87f093ad22522a9ff33d7a027774815acf6f0639"
|
|
1774
2010
|
dependencies = [
|
|
1775
2011
|
"anyhow",
|
|
1776
2012
|
"cargo_metadata",
|
|
@@ -1784,9 +2020,9 @@ dependencies = [
|
|
|
1784
2020
|
|
|
1785
2021
|
[[package]]
|
|
1786
2022
|
name = "vergen-gix"
|
|
1787
|
-
version = "1.0.
|
|
2023
|
+
version = "1.0.3"
|
|
1788
2024
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1789
|
-
checksum = "
|
|
2025
|
+
checksum = "2c593af74f49155e618c8099309dd7937e4763990ac0752997d666d5cb32f81b"
|
|
1790
2026
|
dependencies = [
|
|
1791
2027
|
"anyhow",
|
|
1792
2028
|
"derive_builder",
|
|
@@ -1799,9 +2035,9 @@ dependencies = [
|
|
|
1799
2035
|
|
|
1800
2036
|
[[package]]
|
|
1801
2037
|
name = "vergen-lib"
|
|
1802
|
-
version = "0.1.
|
|
2038
|
+
version = "0.1.5"
|
|
1803
2039
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1804
|
-
checksum = "
|
|
2040
|
+
checksum = "c0c767e6751c09fc85cde58722cf2f1007e80e4c8d5a4321fc90d83dc54ca147"
|
|
1805
2041
|
dependencies = [
|
|
1806
2042
|
"anyhow",
|
|
1807
2043
|
"derive_builder",
|
|
@@ -1816,9 +2052,9 @@ checksum = "0b928f33d975fc6ad9f86c8f283853ad26bdd5b10b7f1542aa2fa15e2289105a"
|
|
|
1816
2052
|
|
|
1817
2053
|
[[package]]
|
|
1818
2054
|
name = "wait-timeout"
|
|
1819
|
-
version = "0.2.
|
|
2055
|
+
version = "0.2.1"
|
|
1820
2056
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1821
|
-
checksum = "
|
|
2057
|
+
checksum = "09ac3b126d3914f9849036f826e054cbabdc8519970b8998ddaf3b5bd3c65f11"
|
|
1822
2058
|
dependencies = [
|
|
1823
2059
|
"libc",
|
|
1824
2060
|
]
|
|
@@ -1833,26 +2069,35 @@ dependencies = [
|
|
|
1833
2069
|
"winapi-util",
|
|
1834
2070
|
]
|
|
1835
2071
|
|
|
2072
|
+
[[package]]
|
|
2073
|
+
name = "wasi"
|
|
2074
|
+
version = "0.13.3+wasi-0.2.2"
|
|
2075
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2076
|
+
checksum = "26816d2e1a4a36a2940b96c5296ce403917633dff8f3440e9b236ed6f6bacad2"
|
|
2077
|
+
dependencies = [
|
|
2078
|
+
"wit-bindgen-rt",
|
|
2079
|
+
]
|
|
2080
|
+
|
|
1836
2081
|
[[package]]
|
|
1837
2082
|
name = "wasm-bindgen"
|
|
1838
|
-
version = "0.2.
|
|
2083
|
+
version = "0.2.100"
|
|
1839
2084
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1840
|
-
checksum = "
|
|
2085
|
+
checksum = "1edc8929d7499fc4e8f0be2262a241556cfc54a0bea223790e71446f2aab1ef5"
|
|
1841
2086
|
dependencies = [
|
|
1842
2087
|
"cfg-if",
|
|
1843
2088
|
"once_cell",
|
|
2089
|
+
"rustversion",
|
|
1844
2090
|
"wasm-bindgen-macro",
|
|
1845
2091
|
]
|
|
1846
2092
|
|
|
1847
2093
|
[[package]]
|
|
1848
2094
|
name = "wasm-bindgen-backend"
|
|
1849
|
-
version = "0.2.
|
|
2095
|
+
version = "0.2.100"
|
|
1850
2096
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1851
|
-
checksum = "
|
|
2097
|
+
checksum = "2f0a0651a5c2bc21487bde11ee802ccaf4c51935d0d3d42a6101f98161700bc6"
|
|
1852
2098
|
dependencies = [
|
|
1853
2099
|
"bumpalo",
|
|
1854
2100
|
"log",
|
|
1855
|
-
"once_cell",
|
|
1856
2101
|
"proc-macro2",
|
|
1857
2102
|
"quote",
|
|
1858
2103
|
"syn",
|
|
@@ -1861,9 +2106,9 @@ dependencies = [
|
|
|
1861
2106
|
|
|
1862
2107
|
[[package]]
|
|
1863
2108
|
name = "wasm-bindgen-macro"
|
|
1864
|
-
version = "0.2.
|
|
2109
|
+
version = "0.2.100"
|
|
1865
2110
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1866
|
-
checksum = "
|
|
2111
|
+
checksum = "7fe63fc6d09ed3792bd0897b314f53de8e16568c2b3f7982f468c0bf9bd0b407"
|
|
1867
2112
|
dependencies = [
|
|
1868
2113
|
"quote",
|
|
1869
2114
|
"wasm-bindgen-macro-support",
|
|
@@ -1871,9 +2116,9 @@ dependencies = [
|
|
|
1871
2116
|
|
|
1872
2117
|
[[package]]
|
|
1873
2118
|
name = "wasm-bindgen-macro-support"
|
|
1874
|
-
version = "0.2.
|
|
2119
|
+
version = "0.2.100"
|
|
1875
2120
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1876
|
-
checksum = "
|
|
2121
|
+
checksum = "8ae87ea40c9f689fc23f209965b6fb8a99ad69aeeb0231408be24920604395de"
|
|
1877
2122
|
dependencies = [
|
|
1878
2123
|
"proc-macro2",
|
|
1879
2124
|
"quote",
|
|
@@ -1884,9 +2129,12 @@ dependencies = [
|
|
|
1884
2129
|
|
|
1885
2130
|
[[package]]
|
|
1886
2131
|
name = "wasm-bindgen-shared"
|
|
1887
|
-
version = "0.2.
|
|
2132
|
+
version = "0.2.100"
|
|
1888
2133
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1889
|
-
checksum = "
|
|
2134
|
+
checksum = "1a05d73b933a847d6cccdda8f838a22ff101ad9bf93e33684f39c1f5f0eece3d"
|
|
2135
|
+
dependencies = [
|
|
2136
|
+
"unicode-ident",
|
|
2137
|
+
]
|
|
1890
2138
|
|
|
1891
2139
|
[[package]]
|
|
1892
2140
|
name = "wasm-minimal-protocol"
|
|
@@ -1992,13 +2240,58 @@ checksum = "589f6da84c646204747d1270a2a5661ea66ed1cced2631d546fdfb155959f9ec"
|
|
|
1992
2240
|
|
|
1993
2241
|
[[package]]
|
|
1994
2242
|
name = "winnow"
|
|
1995
|
-
version = "0.6.
|
|
2243
|
+
version = "0.6.26"
|
|
1996
2244
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1997
|
-
checksum = "
|
|
2245
|
+
checksum = "1e90edd2ac1aa278a5c4599b1d89cf03074b610800f866d4026dc199d7929a28"
|
|
1998
2246
|
dependencies = [
|
|
1999
2247
|
"memchr",
|
|
2000
2248
|
]
|
|
2001
2249
|
|
|
2250
|
+
[[package]]
|
|
2251
|
+
name = "wit-bindgen-rt"
|
|
2252
|
+
version = "0.33.0"
|
|
2253
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2254
|
+
checksum = "3268f3d866458b787f390cf61f4bbb563b922d091359f9608842999eaee3943c"
|
|
2255
|
+
dependencies = [
|
|
2256
|
+
"bitflags",
|
|
2257
|
+
]
|
|
2258
|
+
|
|
2259
|
+
[[package]]
|
|
2260
|
+
name = "write16"
|
|
2261
|
+
version = "1.0.0"
|
|
2262
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2263
|
+
checksum = "d1890f4022759daae28ed4fe62859b1236caebfc61ede2f63ed4e695f3f6d936"
|
|
2264
|
+
|
|
2265
|
+
[[package]]
|
|
2266
|
+
name = "writeable"
|
|
2267
|
+
version = "0.5.5"
|
|
2268
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2269
|
+
checksum = "1e9df38ee2d2c3c5948ea468a8406ff0db0b29ae1ffde1bcf20ef305bcc95c51"
|
|
2270
|
+
|
|
2271
|
+
[[package]]
|
|
2272
|
+
name = "yoke"
|
|
2273
|
+
version = "0.7.5"
|
|
2274
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2275
|
+
checksum = "120e6aef9aa629e3d4f52dc8cc43a015c7724194c97dfaf45180d2daf2b77f40"
|
|
2276
|
+
dependencies = [
|
|
2277
|
+
"serde",
|
|
2278
|
+
"stable_deref_trait",
|
|
2279
|
+
"yoke-derive",
|
|
2280
|
+
"zerofrom",
|
|
2281
|
+
]
|
|
2282
|
+
|
|
2283
|
+
[[package]]
|
|
2284
|
+
name = "yoke-derive"
|
|
2285
|
+
version = "0.7.5"
|
|
2286
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2287
|
+
checksum = "2380878cad4ac9aac1e2435f3eb4020e8374b5f13c296cb75b4620ff8e229154"
|
|
2288
|
+
dependencies = [
|
|
2289
|
+
"proc-macro2",
|
|
2290
|
+
"quote",
|
|
2291
|
+
"syn",
|
|
2292
|
+
"synstructure",
|
|
2293
|
+
]
|
|
2294
|
+
|
|
2002
2295
|
[[package]]
|
|
2003
2296
|
name = "zerocopy"
|
|
2004
2297
|
version = "0.7.35"
|
|
@@ -2018,3 +2311,46 @@ dependencies = [
|
|
|
2018
2311
|
"quote",
|
|
2019
2312
|
"syn",
|
|
2020
2313
|
]
|
|
2314
|
+
|
|
2315
|
+
[[package]]
|
|
2316
|
+
name = "zerofrom"
|
|
2317
|
+
version = "0.1.5"
|
|
2318
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2319
|
+
checksum = "cff3ee08c995dee1859d998dea82f7374f2826091dd9cd47def953cae446cd2e"
|
|
2320
|
+
dependencies = [
|
|
2321
|
+
"zerofrom-derive",
|
|
2322
|
+
]
|
|
2323
|
+
|
|
2324
|
+
[[package]]
|
|
2325
|
+
name = "zerofrom-derive"
|
|
2326
|
+
version = "0.1.6"
|
|
2327
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2328
|
+
checksum = "d71e5d6e06ab090c67b5e44993ec16b72dcbaabc526db883a360057678b48502"
|
|
2329
|
+
dependencies = [
|
|
2330
|
+
"proc-macro2",
|
|
2331
|
+
"quote",
|
|
2332
|
+
"syn",
|
|
2333
|
+
"synstructure",
|
|
2334
|
+
]
|
|
2335
|
+
|
|
2336
|
+
[[package]]
|
|
2337
|
+
name = "zerovec"
|
|
2338
|
+
version = "0.10.4"
|
|
2339
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2340
|
+
checksum = "aa2b893d79df23bfb12d5461018d408ea19dfafe76c2c7ef6d4eba614f8ff079"
|
|
2341
|
+
dependencies = [
|
|
2342
|
+
"yoke",
|
|
2343
|
+
"zerofrom",
|
|
2344
|
+
"zerovec-derive",
|
|
2345
|
+
]
|
|
2346
|
+
|
|
2347
|
+
[[package]]
|
|
2348
|
+
name = "zerovec-derive"
|
|
2349
|
+
version = "0.10.3"
|
|
2350
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2351
|
+
checksum = "6eafa6dfb17584ea3e2bd6e76e0cc15ad7af12b09abdd1ca55961bed9b1063c6"
|
|
2352
|
+
dependencies = [
|
|
2353
|
+
"proc-macro2",
|
|
2354
|
+
"quote",
|
|
2355
|
+
"syn",
|
|
2356
|
+
]
|