kramdown-syntax_tree_sitter 0.5.0 → 0.6.0

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.
@@ -2,11 +2,23 @@
2
2
  # It is not intended for manual editing.
3
3
  version = 3
4
4
 
5
+ [[package]]
6
+ name = "ahash"
7
+ version = "0.8.11"
8
+ source = "registry+https://github.com/rust-lang/crates.io-index"
9
+ checksum = "e89da841a80418a9b391ebaea17f5c112ffaaa96f621d2c285b5174da76b9011"
10
+ dependencies = [
11
+ "cfg-if",
12
+ "once_cell",
13
+ "version_check",
14
+ "zerocopy",
15
+ ]
16
+
5
17
  [[package]]
6
18
  name = "aho-corasick"
7
- version = "0.7.19"
19
+ version = "1.1.3"
8
20
  source = "registry+https://github.com/rust-lang/crates.io-index"
9
- checksum = "b4f55bd91a0978cbfd91c457a164bab8b4001c833b7f323132c0a4e1922dd44e"
21
+ checksum = "8e60d3430d3a69478ad0993f19238d2df97c507009a52b3c10addcd7f6bcb916"
10
22
  dependencies = [
11
23
  "memchr",
12
24
  ]
@@ -20,11 +32,60 @@ dependencies = [
20
32
  "winapi",
21
33
  ]
22
34
 
35
+ [[package]]
36
+ name = "anstream"
37
+ version = "0.6.14"
38
+ source = "registry+https://github.com/rust-lang/crates.io-index"
39
+ checksum = "418c75fa768af9c03be99d17643f93f79bbba589895012a80e3452a19ddda15b"
40
+ dependencies = [
41
+ "anstyle",
42
+ "anstyle-parse",
43
+ "anstyle-query",
44
+ "anstyle-wincon",
45
+ "colorchoice",
46
+ "is_terminal_polyfill",
47
+ "utf8parse",
48
+ ]
49
+
50
+ [[package]]
51
+ name = "anstyle"
52
+ version = "1.0.7"
53
+ source = "registry+https://github.com/rust-lang/crates.io-index"
54
+ checksum = "038dfcf04a5feb68e9c60b21c9625a54c2c0616e79b72b0fd87075a056ae1d1b"
55
+
56
+ [[package]]
57
+ name = "anstyle-parse"
58
+ version = "0.2.4"
59
+ source = "registry+https://github.com/rust-lang/crates.io-index"
60
+ checksum = "c03a11a9034d92058ceb6ee011ce58af4a9bf61491aa7e1e59ecd24bd40d22d4"
61
+ dependencies = [
62
+ "utf8parse",
63
+ ]
64
+
65
+ [[package]]
66
+ name = "anstyle-query"
67
+ version = "1.0.3"
68
+ source = "registry+https://github.com/rust-lang/crates.io-index"
69
+ checksum = "a64c907d4e79225ac72e2a354c9ce84d50ebb4586dee56c82b3ee73004f537f5"
70
+ dependencies = [
71
+ "windows-sys 0.52.0",
72
+ ]
73
+
74
+ [[package]]
75
+ name = "anstyle-wincon"
76
+ version = "3.0.3"
77
+ source = "registry+https://github.com/rust-lang/crates.io-index"
78
+ checksum = "61a38449feb7068f52bb06c12759005cf459ee52bb4adc1d5a7c4322d716fb19"
79
+ dependencies = [
80
+ "anstyle",
81
+ "windows-sys 0.52.0",
82
+ ]
83
+
23
84
  [[package]]
24
85
  name = "anyhow"
25
- version = "1.0.71"
86
+ version = "1.0.86"
26
87
  source = "registry+https://github.com/rust-lang/crates.io-index"
27
- checksum = "9c7d0618f0e0b7e8ff11427422b64564d5fb0be1940354bfe2e0529b18a9d9b8"
88
+ checksum = "b3d1d046238990b9cf5bcde22a3fb3584ee5cf65fb2765f454ed428c7a0063da"
28
89
 
29
90
  [[package]]
30
91
  name = "ascii"
@@ -33,45 +94,63 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
33
94
  checksum = "d92bec98840b8f03a5ff5413de5293bfcd8bf96467cf5452609f939ec6f5de16"
34
95
 
35
96
  [[package]]
36
- name = "atty"
37
- version = "0.2.14"
97
+ name = "bindgen"
98
+ version = "0.69.4"
38
99
  source = "registry+https://github.com/rust-lang/crates.io-index"
39
- checksum = "d9b39be18770d11421cdb1b9947a45dd3f37e93092cbf377614828a319d5fee8"
100
+ checksum = "a00dc851838a2120612785d195287475a3ac45514741da670b735818822129a0"
40
101
  dependencies = [
41
- "hermit-abi",
42
- "libc",
43
- "winapi",
102
+ "bitflags 2.5.0",
103
+ "cexpr",
104
+ "clang-sys",
105
+ "itertools",
106
+ "lazy_static",
107
+ "lazycell",
108
+ "proc-macro2",
109
+ "quote",
110
+ "regex",
111
+ "rustc-hash",
112
+ "shlex",
113
+ "syn",
44
114
  ]
45
115
 
46
116
  [[package]]
47
- name = "autocfg"
48
- version = "1.1.0"
117
+ name = "bitflags"
118
+ version = "1.3.2"
49
119
  source = "registry+https://github.com/rust-lang/crates.io-index"
50
- checksum = "d468802bab17cbc0cc575e9b053f41e72aa36bfa6b7f55e3529ffa43161b97fa"
120
+ checksum = "bef38d45163c2f1dde094a7dfd33ccf595c92905c8f8f4fdc18d06fb1037718a"
51
121
 
52
122
  [[package]]
53
123
  name = "bitflags"
54
- version = "1.3.2"
124
+ version = "2.5.0"
55
125
  source = "registry+https://github.com/rust-lang/crates.io-index"
56
- checksum = "bef38d45163c2f1dde094a7dfd33ccf595c92905c8f8f4fdc18d06fb1037718a"
126
+ checksum = "cf4b9d6a944f767f8e5e0db018570623c85f3d925ac718db4e06d0187adb21c1"
127
+
128
+ [[package]]
129
+ name = "block2"
130
+ version = "0.5.1"
131
+ source = "registry+https://github.com/rust-lang/crates.io-index"
132
+ checksum = "2c132eebf10f5cad5289222520a4a058514204aed6d791f1cf4fe8088b82d15f"
133
+ dependencies = [
134
+ "objc2",
135
+ ]
57
136
 
58
137
  [[package]]
59
138
  name = "bumpalo"
60
- version = "3.11.1"
139
+ version = "3.16.0"
61
140
  source = "registry+https://github.com/rust-lang/crates.io-index"
62
- checksum = "572f695136211188308f16ad2ca5c851a712c464060ae6974944458eb83880ba"
141
+ checksum = "79296716171880943b8470b5f8d03aa55eb2e645a4874bdbb28adb49162e012c"
63
142
 
64
143
  [[package]]
65
144
  name = "bytes"
66
- version = "1.4.0"
145
+ version = "1.6.0"
67
146
  source = "registry+https://github.com/rust-lang/crates.io-index"
68
- checksum = "89b2fd2a0dcf38d7971e2194b6b6eebab45ae01067456a7fd93d5547a61b70be"
147
+ checksum = "514de17de45fdb8dc022b1a7975556c53c86f9f0aa5f534b98977b171857c2c9"
69
148
 
70
149
  [[package]]
71
150
  name = "cc"
72
- version = "1.0.74"
151
+ version = "1.0.98"
73
152
  source = "registry+https://github.com/rust-lang/crates.io-index"
74
- checksum = "581f5dba903aac52ea3feb5ec4810848460ee833876f1f9b0fdeab1f19091574"
153
+ checksum = "41c270e7540d725e65ac7f1b212ac8ce349719624d7bcff99f8e2e488e8cf03f"
75
154
 
76
155
  [[package]]
77
156
  name = "cesu8"
@@ -79,38 +158,95 @@ version = "1.1.0"
79
158
  source = "registry+https://github.com/rust-lang/crates.io-index"
80
159
  checksum = "6d43a04d8753f35258c91f8ec639f792891f748a1edbd759cf1dcea3382ad83c"
81
160
 
161
+ [[package]]
162
+ name = "cexpr"
163
+ version = "0.6.0"
164
+ source = "registry+https://github.com/rust-lang/crates.io-index"
165
+ checksum = "6fac387a98bb7c37292057cffc56d62ecb629900026402633ae9160df93a8766"
166
+ dependencies = [
167
+ "nom",
168
+ ]
169
+
82
170
  [[package]]
83
171
  name = "cfg-if"
84
172
  version = "1.0.0"
85
173
  source = "registry+https://github.com/rust-lang/crates.io-index"
86
174
  checksum = "baf1de4339761588bc0619e3cbc0120ee582ebb74b53b4efbf79117bd2da40fd"
87
175
 
176
+ [[package]]
177
+ name = "cfg_aliases"
178
+ version = "0.1.1"
179
+ source = "registry+https://github.com/rust-lang/crates.io-index"
180
+ checksum = "fd16c4719339c4530435d38e511904438d07cce7950afa3718a84ac36c10e89e"
181
+
88
182
  [[package]]
89
183
  name = "chunked_transfer"
90
- version = "1.4.0"
184
+ version = "1.5.0"
185
+ source = "registry+https://github.com/rust-lang/crates.io-index"
186
+ checksum = "6e4de3bc4ea267985becf712dc6d9eed8b04c953b3fcfb339ebc87acd9804901"
187
+
188
+ [[package]]
189
+ name = "clang-sys"
190
+ version = "1.8.1"
91
191
  source = "registry+https://github.com/rust-lang/crates.io-index"
92
- checksum = "fff857943da45f546682664a79488be82e69e43c1a7a2307679ab9afb3a66d2e"
192
+ checksum = "0b023947811758c97c59bf9d1c188fd619ad4718dcaa767947df1cadb14f39f4"
193
+ dependencies = [
194
+ "glob",
195
+ "libc",
196
+ "libloading",
197
+ ]
93
198
 
94
199
  [[package]]
95
200
  name = "clap"
96
- version = "2.34.0"
201
+ version = "4.5.4"
97
202
  source = "registry+https://github.com/rust-lang/crates.io-index"
98
- checksum = "a0610544180c38b88101fecf2dd634b174a62eef6946f84dfc6a7127512b381c"
203
+ checksum = "90bc066a67923782aa8515dbaea16946c5bcc5addbd668bb80af688e53e548a0"
99
204
  dependencies = [
100
- "ansi_term",
101
- "atty",
102
- "bitflags",
205
+ "clap_builder",
206
+ "clap_derive",
207
+ ]
208
+
209
+ [[package]]
210
+ name = "clap_builder"
211
+ version = "4.5.2"
212
+ source = "registry+https://github.com/rust-lang/crates.io-index"
213
+ checksum = "ae129e2e766ae0ec03484e609954119f123cc1fe650337e155d03b022f24f7b4"
214
+ dependencies = [
215
+ "anstream",
216
+ "anstyle",
217
+ "clap_lex",
103
218
  "strsim",
104
- "textwrap",
105
- "unicode-width",
106
- "vec_map",
107
219
  ]
108
220
 
221
+ [[package]]
222
+ name = "clap_derive"
223
+ version = "4.5.4"
224
+ source = "registry+https://github.com/rust-lang/crates.io-index"
225
+ checksum = "528131438037fd55894f62d6e9f068b8f45ac57ffa77517819645d10aed04f64"
226
+ dependencies = [
227
+ "heck",
228
+ "proc-macro2",
229
+ "quote",
230
+ "syn",
231
+ ]
232
+
233
+ [[package]]
234
+ name = "clap_lex"
235
+ version = "0.7.0"
236
+ source = "registry+https://github.com/rust-lang/crates.io-index"
237
+ checksum = "98cc8fbded0c607b7ba9dd60cd98df59af97e84d24e49c8557331cfc26d301ce"
238
+
239
+ [[package]]
240
+ name = "colorchoice"
241
+ version = "1.0.1"
242
+ source = "registry+https://github.com/rust-lang/crates.io-index"
243
+ checksum = "0b6a852b24ab71dffc585bcb46eaf7959d175cb865a7152e35b348d1b2960422"
244
+
109
245
  [[package]]
110
246
  name = "combine"
111
- version = "4.6.6"
247
+ version = "4.6.7"
112
248
  source = "registry+https://github.com/rust-lang/crates.io-index"
113
- checksum = "35ed6e9d84f0b51a7f52daf1c7d71dd136fd7a3f41a8462b8cdb8c78d920fad4"
249
+ checksum = "ba5a308b75df32fe02788e748662718f03fde005016435c444eea572398219fd"
114
250
  dependencies = [
115
251
  "bytes",
116
252
  "memchr",
@@ -118,9 +254,9 @@ dependencies = [
118
254
 
119
255
  [[package]]
120
256
  name = "core-foundation"
121
- version = "0.9.3"
257
+ version = "0.9.4"
122
258
  source = "registry+https://github.com/rust-lang/crates.io-index"
123
- checksum = "194a7a9e6de53fa55116934067c844d9d749312f75c6f6d0980e8c252f8c2146"
259
+ checksum = "91e195e091a93c46f7102ec7818a2aa394e1e1771c3ab4825963fa03e45afb8f"
124
260
  dependencies = [
125
261
  "core-foundation-sys",
126
262
  "libc",
@@ -128,9 +264,19 @@ dependencies = [
128
264
 
129
265
  [[package]]
130
266
  name = "core-foundation-sys"
131
- version = "0.8.3"
267
+ version = "0.8.6"
132
268
  source = "registry+https://github.com/rust-lang/crates.io-index"
133
- checksum = "5827cebf4670468b8772dd191856768aedcb1b0278a04f989f7766351917b9dc"
269
+ checksum = "06ea2b9bc92be3c2baa9334a323ebca2d6f074ff852cd1d7b11064035cd3868f"
270
+
271
+ [[package]]
272
+ name = "ctrlc"
273
+ version = "3.4.4"
274
+ source = "registry+https://github.com/rust-lang/crates.io-index"
275
+ checksum = "672465ae37dc1bc6380a6547a8883d5dd397b0f1faaad4f265726cc7042a5345"
276
+ dependencies = [
277
+ "nix",
278
+ "windows-sys 0.52.0",
279
+ ]
134
280
 
135
281
  [[package]]
136
282
  name = "difference"
@@ -140,53 +286,89 @@ checksum = "524cbf6897b527295dff137cec09ecf3a05f4fddffd7dfcd1585403449e74198"
140
286
 
141
287
  [[package]]
142
288
  name = "dirs"
143
- version = "3.0.2"
289
+ version = "5.0.1"
144
290
  source = "registry+https://github.com/rust-lang/crates.io-index"
145
- checksum = "30baa043103c9d0c2a57cf537cc2f35623889dc0d405e6c3cccfadbc81c71309"
291
+ checksum = "44c45a9d03d6676652bcb5e724c7e988de1acad23a711b5217ab9cbecbec2225"
146
292
  dependencies = [
147
293
  "dirs-sys",
148
294
  ]
149
295
 
150
296
  [[package]]
151
- name = "dirs"
152
- version = "4.0.0"
297
+ name = "dirs-sys"
298
+ version = "0.4.1"
153
299
  source = "registry+https://github.com/rust-lang/crates.io-index"
154
- checksum = "ca3aa72a6f96ea37bbc5aa912f6788242832f75369bdfdadcb0e38423f100059"
300
+ checksum = "520f05a5cbd335fae5a99ff7a6ab8627577660ee5cfd6a94a6a929b52ff0321c"
155
301
  dependencies = [
156
- "dirs-sys",
302
+ "libc",
303
+ "option-ext",
304
+ "redox_users",
305
+ "windows-sys 0.48.0",
157
306
  ]
158
307
 
159
308
  [[package]]
160
- name = "dirs-sys"
161
- version = "0.3.7"
309
+ name = "either"
310
+ version = "1.12.0"
311
+ source = "registry+https://github.com/rust-lang/crates.io-index"
312
+ checksum = "3dca9240753cf90908d7e4aac30f630662b02aebaa1b58a3cadabdb23385b58b"
313
+
314
+ [[package]]
315
+ name = "equivalent"
316
+ version = "1.0.1"
317
+ source = "registry+https://github.com/rust-lang/crates.io-index"
318
+ checksum = "5443807d6dff69373d433ab9ef5378ad8df50ca6298caf15de6e52e24aaf54d5"
319
+
320
+ [[package]]
321
+ name = "errno"
322
+ version = "0.3.9"
162
323
  source = "registry+https://github.com/rust-lang/crates.io-index"
163
- checksum = "1b1d1d91c932ef41c0f2663aa8b0ca0342d444d842c06914aa0a7e352d0bada6"
324
+ checksum = "534c5cf6194dfab3db3242765c03bbe257cf92f22b38f6bc0c58d59108a820ba"
164
325
  dependencies = [
165
326
  "libc",
166
- "redox_users",
167
- "winapi",
327
+ "windows-sys 0.52.0",
168
328
  ]
169
329
 
170
330
  [[package]]
171
- name = "either"
172
- version = "1.8.0"
331
+ name = "fastrand"
332
+ version = "2.1.0"
173
333
  source = "registry+https://github.com/rust-lang/crates.io-index"
174
- checksum = "90e5c1c8368803113bf0c9584fc495a58b86dc8a29edbf8fe877d21d9507e797"
334
+ checksum = "9fc0510504f03c51ada170672ac806f1f105a88aa97a5281117e1ddc3368e51a"
335
+
336
+ [[package]]
337
+ name = "filetime"
338
+ version = "0.2.23"
339
+ source = "registry+https://github.com/rust-lang/crates.io-index"
340
+ checksum = "1ee447700ac8aa0b2f2bd7bc4462ad686ba06baa6727ac149a2d6277f0d240fd"
341
+ dependencies = [
342
+ "cfg-if",
343
+ "libc",
344
+ "redox_syscall",
345
+ "windows-sys 0.52.0",
346
+ ]
175
347
 
176
348
  [[package]]
177
349
  name = "form_urlencoded"
178
- version = "1.1.0"
350
+ version = "1.2.1"
179
351
  source = "registry+https://github.com/rust-lang/crates.io-index"
180
- checksum = "a9c384f161156f5260c24a097c56119f9be8c798586aecc13afbcbe7b7e26bf8"
352
+ checksum = "e13624c2627564efccf4934284bdd98cbaa14e79b0b5a141218e507b3a823456"
181
353
  dependencies = [
182
354
  "percent-encoding",
183
355
  ]
184
356
 
357
+ [[package]]
358
+ name = "fs4"
359
+ version = "0.8.3"
360
+ source = "registry+https://github.com/rust-lang/crates.io-index"
361
+ checksum = "73969b81e8bc90a3828d913dd3973d80771bfb9d7fbe1a78a79122aad456af15"
362
+ dependencies = [
363
+ "rustix",
364
+ "windows-sys 0.52.0",
365
+ ]
366
+
185
367
  [[package]]
186
368
  name = "getrandom"
187
- version = "0.2.8"
369
+ version = "0.2.15"
188
370
  source = "registry+https://github.com/rust-lang/crates.io-index"
189
- checksum = "c05aeb6a22b8f62540c194aac980f2115af067bfe15a0734d7277a768d396b31"
371
+ checksum = "c4567c8db10ae91089c99af84c68c38da3ec2f087c3f82960bcdbf3656b6f4d7"
190
372
  dependencies = [
191
373
  "cfg-if",
192
374
  "libc",
@@ -195,45 +377,54 @@ dependencies = [
195
377
 
196
378
  [[package]]
197
379
  name = "glob"
198
- version = "0.3.0"
380
+ version = "0.3.1"
199
381
  source = "registry+https://github.com/rust-lang/crates.io-index"
200
- checksum = "9b919933a397b79c37e33b77bb2aa3dc8eb6e165ad809e58ff75bc7db2e34574"
382
+ checksum = "d2fabcfbdc87f4758337ca535fb41a6d701b65693ce38287d856d1674551ec9b"
201
383
 
202
384
  [[package]]
203
385
  name = "hashbrown"
204
- version = "0.12.3"
386
+ version = "0.14.5"
387
+ source = "registry+https://github.com/rust-lang/crates.io-index"
388
+ checksum = "e5274423e17b7c9fc20b6e7e208532f9b19825d82dfd615708b70edd83df41f1"
389
+ dependencies = [
390
+ "ahash",
391
+ ]
392
+
393
+ [[package]]
394
+ name = "heck"
395
+ version = "0.5.0"
205
396
  source = "registry+https://github.com/rust-lang/crates.io-index"
206
- checksum = "8a9ee70c43aaf417c914396645a0fa852624801b24ebb7ae78fe8272889ac888"
397
+ checksum = "2304e00983f87ffb38b55b444b5e3b60a884b5d30c0fca7d82fe33449bbe55ea"
207
398
 
208
399
  [[package]]
209
- name = "hermit-abi"
210
- version = "0.1.19"
400
+ name = "home"
401
+ version = "0.5.9"
211
402
  source = "registry+https://github.com/rust-lang/crates.io-index"
212
- checksum = "62b467343b94ba476dcb2500d242dadbb39557df889310ac77c5d99100aaac33"
403
+ checksum = "e3d1354bf6b7235cb4a0576c2619fd4ed18183f689b12b006a0ee7329eeff9a5"
213
404
  dependencies = [
214
- "libc",
405
+ "windows-sys 0.52.0",
215
406
  ]
216
407
 
217
408
  [[package]]
218
409
  name = "html-escape"
219
- version = "0.2.12"
410
+ version = "0.2.13"
220
411
  source = "registry+https://github.com/rust-lang/crates.io-index"
221
- checksum = "15315cfa9503e9aa85a477138eff76a1b203a430703548052c330b69d8d8c205"
412
+ checksum = "6d1ad449764d627e22bfd7cd5e8868264fc9236e07c752972b4080cd351cb476"
222
413
  dependencies = [
223
414
  "utf8-width",
224
415
  ]
225
416
 
226
417
  [[package]]
227
418
  name = "httpdate"
228
- version = "1.0.2"
419
+ version = "1.0.3"
229
420
  source = "registry+https://github.com/rust-lang/crates.io-index"
230
- checksum = "c4a1e36c821dbe04574f602848a19f742f4fb3c98d40449f11bcad18d6b17421"
421
+ checksum = "df3b46402a9d5adb4c86a0cf463f42e19994e3ee891101b1841f30a545cb49a9"
231
422
 
232
423
  [[package]]
233
424
  name = "idna"
234
- version = "0.3.0"
425
+ version = "0.5.0"
235
426
  source = "registry+https://github.com/rust-lang/crates.io-index"
236
- checksum = "e14ddfc70884202db2244c223200c204c2bda1bc6e0998d11b5e024d657209e6"
427
+ checksum = "634d9b1461af396cad843f47fdba5597a4f9e6ddd4bfb6ff5d85028c25cb12f6"
237
428
  dependencies = [
238
429
  "unicode-bidi",
239
430
  "unicode-normalization",
@@ -241,19 +432,40 @@ dependencies = [
241
432
 
242
433
  [[package]]
243
434
  name = "indexmap"
244
- version = "1.9.1"
435
+ version = "2.2.6"
245
436
  source = "registry+https://github.com/rust-lang/crates.io-index"
246
- checksum = "10a35a97730320ffe8e2d410b5d3b69279b98d2c14bdb8b70ea89ecf7888d41e"
437
+ checksum = "168fb715dda47215e360912c096649d23d58bf392ac62f73919e831745e40f26"
247
438
  dependencies = [
248
- "autocfg",
439
+ "equivalent",
249
440
  "hashbrown",
250
441
  ]
251
442
 
443
+ [[package]]
444
+ name = "indoc"
445
+ version = "2.0.5"
446
+ source = "registry+https://github.com/rust-lang/crates.io-index"
447
+ checksum = "b248f5224d1d606005e02c97f5aa4e88eeb230488bcc03bc9ca4d7991399f2b5"
448
+
449
+ [[package]]
450
+ name = "is_terminal_polyfill"
451
+ version = "1.70.0"
452
+ source = "registry+https://github.com/rust-lang/crates.io-index"
453
+ checksum = "f8478577c03552c21db0e2724ffb8986a5ce7af88107e6be5d2ee6e158c12800"
454
+
455
+ [[package]]
456
+ name = "itertools"
457
+ version = "0.12.1"
458
+ source = "registry+https://github.com/rust-lang/crates.io-index"
459
+ checksum = "ba291022dbbd398a455acf126c1e341954079855bc60dfdda641363bd6922569"
460
+ dependencies = [
461
+ "either",
462
+ ]
463
+
252
464
  [[package]]
253
465
  name = "itoa"
254
- version = "1.0.4"
466
+ version = "1.0.11"
255
467
  source = "registry+https://github.com/rust-lang/crates.io-index"
256
- checksum = "4217ad341ebadf8d8e724e264f13e593e0648f5b3e94b3896a5df283be015ecc"
468
+ checksum = "49f1f14873335454500d59611f1cf4a4b0f786f9ac11f4312a78e4cf2566695b"
257
469
 
258
470
  [[package]]
259
471
  name = "jni"
@@ -268,7 +480,7 @@ dependencies = [
268
480
  "log",
269
481
  "thiserror",
270
482
  "walkdir",
271
- "windows-sys",
483
+ "windows-sys 0.45.0",
272
484
  ]
273
485
 
274
486
  [[package]]
@@ -279,9 +491,9 @@ checksum = "8eaf4bc02d17cbdd7ff4c7438cafcdf7fb9a4613313ad11b4f8fefe7d3fa0130"
279
491
 
280
492
  [[package]]
281
493
  name = "js-sys"
282
- version = "0.3.60"
494
+ version = "0.3.69"
283
495
  source = "registry+https://github.com/rust-lang/crates.io-index"
284
- checksum = "49409df3e3bf0856b916e2ceaca09ee28e6871cf7d9ce97a692cacfdb2a25a47"
496
+ checksum = "29c15563dc2726973df627357ce0c9ddddbea194836909d655df6a75d2cf296d"
285
497
  dependencies = [
286
498
  "wasm-bindgen",
287
499
  ]
@@ -292,45 +504,84 @@ version = "1.4.0"
292
504
  source = "registry+https://github.com/rust-lang/crates.io-index"
293
505
  checksum = "e2abad23fbc42b3700f2f279844dc832adb2b2eb069b2df918f455c4e18cc646"
294
506
 
507
+ [[package]]
508
+ name = "lazycell"
509
+ version = "1.3.0"
510
+ source = "registry+https://github.com/rust-lang/crates.io-index"
511
+ checksum = "830d08ce1d1d941e6b30645f1a0eb5643013d835ce3779a5fc208261dbe10f55"
512
+
295
513
  [[package]]
296
514
  name = "libc"
297
- version = "0.2.135"
515
+ version = "0.2.155"
298
516
  source = "registry+https://github.com/rust-lang/crates.io-index"
299
- checksum = "68783febc7782c6c5cb401fbda4de5a9898be1762314da0bb2c10ced61f18b0c"
517
+ checksum = "97b3888a4aecf77e811145cadf6eef5901f4782c53886191b2f693f24761847c"
300
518
 
301
519
  [[package]]
302
520
  name = "libloading"
303
- version = "0.7.4"
521
+ version = "0.8.3"
304
522
  source = "registry+https://github.com/rust-lang/crates.io-index"
305
- checksum = "b67380fd3b2fbe7527a606e18729d21c6f3951633d0500574c4dc22d2d638b9f"
523
+ checksum = "0c2a198fb6b0eada2a8df47933734e6d35d350665a33a3593d7164fa52c75c19"
306
524
  dependencies = [
307
525
  "cfg-if",
308
- "winapi",
526
+ "windows-targets 0.52.5",
527
+ ]
528
+
529
+ [[package]]
530
+ name = "libredox"
531
+ version = "0.1.3"
532
+ source = "registry+https://github.com/rust-lang/crates.io-index"
533
+ checksum = "c0ff37bd590ca25063e35af745c343cb7a0271906fb7b37e4813e8f79f00268d"
534
+ dependencies = [
535
+ "bitflags 2.5.0",
536
+ "libc",
309
537
  ]
310
538
 
539
+ [[package]]
540
+ name = "linux-raw-sys"
541
+ version = "0.4.14"
542
+ source = "registry+https://github.com/rust-lang/crates.io-index"
543
+ checksum = "78b3ae25bc7c8c38cec158d1f2757ee79e9b3740fbc7ccf0e59e4b08d793fa89"
544
+
311
545
  [[package]]
312
546
  name = "log"
313
- version = "0.4.17"
547
+ version = "0.4.21"
314
548
  source = "registry+https://github.com/rust-lang/crates.io-index"
315
- checksum = "abb12e687cfb44aa40f41fc3978ef76448f9b6038cad6aef4259d3c095a2382e"
549
+ checksum = "90ed8c1e510134f979dbc4f070f87d4313098b704861a105fe34231c70a3901c"
550
+
551
+ [[package]]
552
+ name = "magnus"
553
+ version = "0.6.4"
554
+ source = "registry+https://github.com/rust-lang/crates.io-index"
555
+ checksum = "b1597ef40aa8c36be098249e82c9a20cf7199278ac1c1a1a995eeead6a184479"
316
556
  dependencies = [
317
- "cfg-if",
557
+ "magnus-macros",
558
+ "rb-sys",
559
+ "rb-sys-env",
560
+ "seq-macro",
318
561
  ]
319
562
 
320
563
  [[package]]
321
- name = "malloc_buf"
322
- version = "0.0.6"
564
+ name = "magnus-macros"
565
+ version = "0.6.0"
323
566
  source = "registry+https://github.com/rust-lang/crates.io-index"
324
- checksum = "62bb907fe88d54d8d9ce32a3cceab4218ed2f6b7d35617cafe9adf84e43919cb"
567
+ checksum = "5968c820e2960565f647819f5928a42d6e874551cab9d88d75e3e0660d7f71e3"
325
568
  dependencies = [
326
- "libc",
569
+ "proc-macro2",
570
+ "quote",
571
+ "syn",
327
572
  ]
328
573
 
329
574
  [[package]]
330
575
  name = "memchr"
331
- version = "2.5.0"
576
+ version = "2.7.2"
577
+ source = "registry+https://github.com/rust-lang/crates.io-index"
578
+ checksum = "6c8640c5d730cb13ebd907d8d04b52f55ac9a2eec55b440c8892f40d56c76c1d"
579
+
580
+ [[package]]
581
+ name = "minimal-lexical"
582
+ version = "0.2.1"
332
583
  source = "registry+https://github.com/rust-lang/crates.io-index"
333
- checksum = "2dffe52ecf27772e601905b7522cb4ef790d2cc203488bbd0e2fe85fcb74566d"
584
+ checksum = "68354c5c6bd36d73ff3feceb05efa59b6acb7626617f4962be322a825e61f79a"
334
585
 
335
586
  [[package]]
336
587
  name = "ndk-context"
@@ -339,75 +590,164 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
339
590
  checksum = "27b02d87554356db9e9a873add8782d4ea6e3e58ea071a9adb9a2e8ddb884a8b"
340
591
 
341
592
  [[package]]
342
- name = "objc"
343
- version = "0.2.7"
593
+ name = "nix"
594
+ version = "0.28.0"
595
+ source = "registry+https://github.com/rust-lang/crates.io-index"
596
+ checksum = "ab2156c4fce2f8df6c499cc1c763e4394b7482525bf2a9701c9d79d215f519e4"
597
+ dependencies = [
598
+ "bitflags 2.5.0",
599
+ "cfg-if",
600
+ "cfg_aliases",
601
+ "libc",
602
+ ]
603
+
604
+ [[package]]
605
+ name = "nom"
606
+ version = "7.1.3"
607
+ source = "registry+https://github.com/rust-lang/crates.io-index"
608
+ checksum = "d273983c5a657a70a3e8f2a01329822f3b8c8172b73826411a55751e404a0a4a"
609
+ dependencies = [
610
+ "memchr",
611
+ "minimal-lexical",
612
+ ]
613
+
614
+ [[package]]
615
+ name = "objc-sys"
616
+ version = "0.3.5"
344
617
  source = "registry+https://github.com/rust-lang/crates.io-index"
345
- checksum = "915b1b472bc21c53464d6c8461c9d3af805ba1ef837e1cac254428f4a77177b1"
618
+ checksum = "cdb91bdd390c7ce1a8607f35f3ca7151b65afc0ff5ff3b34fa350f7d7c7e4310"
619
+
620
+ [[package]]
621
+ name = "objc2"
622
+ version = "0.5.2"
623
+ source = "registry+https://github.com/rust-lang/crates.io-index"
624
+ checksum = "46a785d4eeff09c14c487497c162e92766fbb3e4059a71840cecc03d9a50b804"
625
+ dependencies = [
626
+ "objc-sys",
627
+ "objc2-encode",
628
+ ]
629
+
630
+ [[package]]
631
+ name = "objc2-encode"
632
+ version = "4.0.3"
633
+ source = "registry+https://github.com/rust-lang/crates.io-index"
634
+ checksum = "7891e71393cd1f227313c9379a26a584ff3d7e6e7159e988851f0934c993f0f8"
635
+
636
+ [[package]]
637
+ name = "objc2-foundation"
638
+ version = "0.2.2"
639
+ source = "registry+https://github.com/rust-lang/crates.io-index"
640
+ checksum = "0ee638a5da3799329310ad4cfa62fbf045d5f56e3ef5ba4149e7452dcf89d5a8"
346
641
  dependencies = [
347
- "malloc_buf",
642
+ "bitflags 2.5.0",
643
+ "block2",
644
+ "libc",
645
+ "objc2",
348
646
  ]
349
647
 
350
648
  [[package]]
351
649
  name = "once_cell"
352
- version = "1.16.0"
650
+ version = "1.19.0"
651
+ source = "registry+https://github.com/rust-lang/crates.io-index"
652
+ checksum = "3fdb12b2476b595f9358c5161aa467c2438859caa136dec86c26fdd2efe17b92"
653
+
654
+ [[package]]
655
+ name = "option-ext"
656
+ version = "0.2.0"
353
657
  source = "registry+https://github.com/rust-lang/crates.io-index"
354
- checksum = "86f0b0d4bf799edbc74508c1e8bf170ff5f41238e5f8225603ca7caaae2b7860"
658
+ checksum = "04744f49eae99ab78e0d5c0b603ab218f515ea8cfe5a456d7629ad883a3b6e7d"
355
659
 
356
660
  [[package]]
357
661
  name = "percent-encoding"
358
- version = "2.2.0"
662
+ version = "2.3.1"
359
663
  source = "registry+https://github.com/rust-lang/crates.io-index"
360
- checksum = "478c572c3d73181ff3c2539045f6eb99e5491218eae919370993b890cdbdd98e"
664
+ checksum = "e3148f5046208a5d56bcfc03053e3ca6334e51da8dfb19b6cdc8b306fae3283e"
361
665
 
362
666
  [[package]]
363
667
  name = "proc-macro2"
364
- version = "1.0.47"
668
+ version = "1.0.84"
365
669
  source = "registry+https://github.com/rust-lang/crates.io-index"
366
- checksum = "5ea3d908b0e36316caf9e9e2c4625cdde190a7e6f440d794667ed17a1855e725"
670
+ checksum = "ec96c6a92621310b51366f1e28d05ef11489516e93be030060e5fc12024a49d6"
367
671
  dependencies = [
368
672
  "unicode-ident",
369
673
  ]
370
674
 
371
675
  [[package]]
372
676
  name = "quote"
373
- version = "1.0.21"
677
+ version = "1.0.36"
374
678
  source = "registry+https://github.com/rust-lang/crates.io-index"
375
- checksum = "bbe448f377a7d6961e30f5955f9b8d106c3f5e449d493ee1b125c1d43c2b5179"
679
+ checksum = "0fa76aaf39101c457836aec0ce2316dbdc3ab723cdda1c6bd4e6ad4208acaca7"
376
680
  dependencies = [
377
681
  "proc-macro2",
378
682
  ]
379
683
 
380
684
  [[package]]
381
- name = "raw-window-handle"
382
- version = "0.5.2"
685
+ name = "rb-sys"
686
+ version = "0.9.97"
687
+ source = "registry+https://github.com/rust-lang/crates.io-index"
688
+ checksum = "47d30bcad206b51f2f66121190ca678dce1fdf3a2eae0ac5d838d1818b19bdf5"
689
+ dependencies = [
690
+ "rb-sys-build",
691
+ ]
692
+
693
+ [[package]]
694
+ name = "rb-sys-build"
695
+ version = "0.9.97"
696
+ source = "registry+https://github.com/rust-lang/crates.io-index"
697
+ checksum = "3cbd92f281615f3c2dcb9dcb0f0576624752afbf9a7f99173b37c4b55b62dd8a"
698
+ dependencies = [
699
+ "bindgen",
700
+ "lazy_static",
701
+ "proc-macro2",
702
+ "quote",
703
+ "regex",
704
+ "shell-words",
705
+ "syn",
706
+ ]
707
+
708
+ [[package]]
709
+ name = "rb-sys-env"
710
+ version = "0.1.2"
383
711
  source = "registry+https://github.com/rust-lang/crates.io-index"
384
- checksum = "f2ff9a1f06a88b01621b7ae906ef0211290d1c8a168a15542486a8f61c0833b9"
712
+ checksum = "a35802679f07360454b418a5d1735c89716bde01d35b1560fc953c1415a0b3bb"
385
713
 
386
714
  [[package]]
387
715
  name = "redox_syscall"
388
- version = "0.2.16"
716
+ version = "0.4.1"
389
717
  source = "registry+https://github.com/rust-lang/crates.io-index"
390
- checksum = "fb5a58c1855b4b6819d59012155603f0b22ad30cad752600aadfcb695265519a"
718
+ checksum = "4722d768eff46b75989dd134e5c353f0d6296e5aaa3132e776cbdb56be7731aa"
391
719
  dependencies = [
392
- "bitflags",
720
+ "bitflags 1.3.2",
393
721
  ]
394
722
 
395
723
  [[package]]
396
724
  name = "redox_users"
397
- version = "0.4.3"
725
+ version = "0.4.5"
398
726
  source = "registry+https://github.com/rust-lang/crates.io-index"
399
- checksum = "b033d837a7cf162d7993aded9304e30a83213c648b6e389db233191f891e5c2b"
727
+ checksum = "bd283d9651eeda4b2a83a43c1c91b266c40fd76ecd39a50a8c630ae69dc72891"
400
728
  dependencies = [
401
729
  "getrandom",
402
- "redox_syscall",
730
+ "libredox",
403
731
  "thiserror",
404
732
  ]
405
733
 
406
734
  [[package]]
407
735
  name = "regex"
408
- version = "1.7.0"
736
+ version = "1.10.4"
737
+ source = "registry+https://github.com/rust-lang/crates.io-index"
738
+ checksum = "c117dbdfde9c8308975b6a18d71f3f385c89461f7b3fb054288ecf2a2058ba4c"
739
+ dependencies = [
740
+ "aho-corasick",
741
+ "memchr",
742
+ "regex-automata",
743
+ "regex-syntax",
744
+ ]
745
+
746
+ [[package]]
747
+ name = "regex-automata"
748
+ version = "0.4.6"
409
749
  source = "registry+https://github.com/rust-lang/crates.io-index"
410
- checksum = "e076559ef8e241f2ae3479e36f97bd5741c0330689e217ad51ce2c76808b868a"
750
+ checksum = "86b83b8b9847f9bf95ef68afb0b8e6cdb80f498442f5179a29fad448fcc1eaea"
411
751
  dependencies = [
412
752
  "aho-corasick",
413
753
  "memchr",
@@ -416,9 +756,9 @@ dependencies = [
416
756
 
417
757
  [[package]]
418
758
  name = "regex-syntax"
419
- version = "0.6.28"
759
+ version = "0.8.3"
420
760
  source = "registry+https://github.com/rust-lang/crates.io-index"
421
- checksum = "456c603be3e8d448b072f410900c09faf164fbce2d480456f50eea6e25f9c848"
761
+ checksum = "adad44e29e4c806119491a7f06f03de4d1af22c3a680dd47f1e6e179439d1f56"
422
762
 
423
763
  [[package]]
424
764
  name = "rustc-hash"
@@ -427,20 +767,23 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
427
767
  checksum = "08d43f7aa6b08d49f382cde6a7982047c3426db949b1424bc4b7ec9ae12c6ce2"
428
768
 
429
769
  [[package]]
430
- name = "rutie"
431
- version = "0.8.4"
770
+ name = "rustix"
771
+ version = "0.38.34"
432
772
  source = "registry+https://github.com/rust-lang/crates.io-index"
433
- checksum = "5d97db4cbb9739b48364c38cc9a6ebabdc07b42bd87b60ab448e1f29eaebb2ac"
773
+ checksum = "70dc5ec042f7a43c4a73241207cecc9873a06d45debb38b329f8541d85c2730f"
434
774
  dependencies = [
435
- "lazy_static",
775
+ "bitflags 2.5.0",
776
+ "errno",
436
777
  "libc",
778
+ "linux-raw-sys",
779
+ "windows-sys 0.52.0",
437
780
  ]
438
781
 
439
782
  [[package]]
440
783
  name = "ryu"
441
- version = "1.0.11"
784
+ version = "1.0.18"
442
785
  source = "registry+https://github.com/rust-lang/crates.io-index"
443
- checksum = "4501abdff3ae82a1c1b477a17252eb69cee9e66eb915c1abaa4f44d873df9f09"
786
+ checksum = "f3cb5ba0dc43242ce17de99c180e96db90b235b8a9fdc9543c96d2209116bd9f"
444
787
 
445
788
  [[package]]
446
789
  name = "same-file"
@@ -453,24 +796,30 @@ dependencies = [
453
796
 
454
797
  [[package]]
455
798
  name = "semver"
456
- version = "1.0.14"
799
+ version = "1.0.23"
800
+ source = "registry+https://github.com/rust-lang/crates.io-index"
801
+ checksum = "61697e0a1c7e512e84a621326239844a24d8207b4669b41bc18b32ea5cbf988b"
802
+
803
+ [[package]]
804
+ name = "seq-macro"
805
+ version = "0.3.5"
457
806
  source = "registry+https://github.com/rust-lang/crates.io-index"
458
- checksum = "e25dfac463d778e353db5be2449d1cce89bd6fd23c9f1ea21310ce6e5a1b29c4"
807
+ checksum = "a3f0bf26fd526d2a95683cd0f87bf103b8539e2ca1ef48ce002d67aad59aa0b4"
459
808
 
460
809
  [[package]]
461
810
  name = "serde"
462
- version = "1.0.147"
811
+ version = "1.0.203"
463
812
  source = "registry+https://github.com/rust-lang/crates.io-index"
464
- checksum = "d193d69bae983fc11a79df82342761dfbf28a99fc8d203dca4c3c1b590948965"
813
+ checksum = "7253ab4de971e72fb7be983802300c30b5a7f0c2e56fab8abfc6a214307c0094"
465
814
  dependencies = [
466
815
  "serde_derive",
467
816
  ]
468
817
 
469
818
  [[package]]
470
819
  name = "serde_derive"
471
- version = "1.0.147"
820
+ version = "1.0.203"
472
821
  source = "registry+https://github.com/rust-lang/crates.io-index"
473
- checksum = "4f1d362ca8fc9c3e3a7484440752472d68a6caa98f1ab81d99b5dfe517cec852"
822
+ checksum = "500cbc0ebeb6f46627f50f3f5811ccf6bf00643be300b4c3eabc0ef55dc5b5ba"
474
823
  dependencies = [
475
824
  "proc-macro2",
476
825
  "quote",
@@ -479,9 +828,9 @@ dependencies = [
479
828
 
480
829
  [[package]]
481
830
  name = "serde_json"
482
- version = "1.0.87"
831
+ version = "1.0.117"
483
832
  source = "registry+https://github.com/rust-lang/crates.io-index"
484
- checksum = "6ce777b7b150d76b9cf60d28b55f5847135a003f7d7350c6be7a773508ce7d45"
833
+ checksum = "455182ea6142b14f93f4bc5320a2b31c1f266b66a4a5c858b013302a5d8cbfc3"
485
834
  dependencies = [
486
835
  "indexmap",
487
836
  "itoa",
@@ -489,23 +838,35 @@ dependencies = [
489
838
  "serde",
490
839
  ]
491
840
 
841
+ [[package]]
842
+ name = "shell-words"
843
+ version = "1.1.0"
844
+ source = "registry+https://github.com/rust-lang/crates.io-index"
845
+ checksum = "24188a676b6ae68c3b2cb3a01be17fbf7240ce009799bb56d5b1409051e78fde"
846
+
847
+ [[package]]
848
+ name = "shlex"
849
+ version = "1.3.0"
850
+ source = "registry+https://github.com/rust-lang/crates.io-index"
851
+ checksum = "0fda2ff0d084019ba4d7c6f371c95d8fd75ce3524c3cb8fb653a3023f6323e64"
852
+
492
853
  [[package]]
493
854
  name = "smallbitvec"
494
- version = "2.5.1"
855
+ version = "2.5.3"
495
856
  source = "registry+https://github.com/rust-lang/crates.io-index"
496
- checksum = "75ce4f9dc4a41b4c3476cc925f1efb11b66df373a8fde5d4b8915fa91b5d995e"
857
+ checksum = "fcc3fc564a4b53fd1e8589628efafe57602d91bde78be18186b5f61e8faea470"
497
858
 
498
859
  [[package]]
499
860
  name = "strsim"
500
- version = "0.8.0"
861
+ version = "0.11.1"
501
862
  source = "registry+https://github.com/rust-lang/crates.io-index"
502
- checksum = "8ea5119cdb4c55b55d432abb513a0429384878c15dde60cc77b1c99de1a95a6a"
863
+ checksum = "7da8b5736845d9f2fcb837ea5d9e2628564b3b043a70948a3f0b778838c5fb4f"
503
864
 
504
865
  [[package]]
505
866
  name = "syn"
506
- version = "1.0.103"
867
+ version = "2.0.66"
507
868
  source = "registry+https://github.com/rust-lang/crates.io-index"
508
- checksum = "a864042229133ada95abf3b54fdc62ef5ccabe9515b64717bcb9a1919e59445d"
869
+ checksum = "c42f3f41a2de00b01c0aaad383c5a45241efc8b2d1eda5661812fda5f3cdcff5"
509
870
  dependencies = [
510
871
  "proc-macro2",
511
872
  "quote",
@@ -513,28 +874,31 @@ dependencies = [
513
874
  ]
514
875
 
515
876
  [[package]]
516
- name = "textwrap"
517
- version = "0.11.0"
877
+ name = "tempfile"
878
+ version = "3.10.1"
518
879
  source = "registry+https://github.com/rust-lang/crates.io-index"
519
- checksum = "d326610f408c7a4eb6f51c37c330e496b08506c9457c9d34287ecc38809fb060"
880
+ checksum = "85b77fafb263dd9d05cbeac119526425676db3784113aa9295c88498cbf8bff1"
520
881
  dependencies = [
521
- "unicode-width",
882
+ "cfg-if",
883
+ "fastrand",
884
+ "rustix",
885
+ "windows-sys 0.52.0",
522
886
  ]
523
887
 
524
888
  [[package]]
525
889
  name = "thiserror"
526
- version = "1.0.37"
890
+ version = "1.0.61"
527
891
  source = "registry+https://github.com/rust-lang/crates.io-index"
528
- checksum = "10deb33631e3c9018b9baf9dcbbc4f737320d2b576bac10f6aefa048fa407e3e"
892
+ checksum = "c546c80d6be4bc6a00c0f01730c08df82eaa7a7a61f11d656526506112cc1709"
529
893
  dependencies = [
530
894
  "thiserror-impl",
531
895
  ]
532
896
 
533
897
  [[package]]
534
898
  name = "thiserror-impl"
535
- version = "1.0.37"
899
+ version = "1.0.61"
536
900
  source = "registry+https://github.com/rust-lang/crates.io-index"
537
- checksum = "982d17546b47146b28f7c22e3d08465f6b8903d0ea13c1660d9d84a6e7adcdbb"
901
+ checksum = "46c3384250002a6d5af4d114f2845d37b57521033f30d5c3f46c4d70e1197533"
538
902
  dependencies = [
539
903
  "proc-macro2",
540
904
  "quote",
@@ -564,24 +928,15 @@ dependencies = [
564
928
 
565
929
  [[package]]
566
930
  name = "tinyvec_macros"
567
- version = "0.1.0"
568
- source = "registry+https://github.com/rust-lang/crates.io-index"
569
- checksum = "cda74da7e1a664f795bb1f8a87ec406fb89a02522cf6e50620d016add6dbbf5c"
570
-
571
- [[package]]
572
- name = "toml"
573
- version = "0.5.9"
931
+ version = "0.1.1"
574
932
  source = "registry+https://github.com/rust-lang/crates.io-index"
575
- checksum = "8d82e1a7758622a465f8cee077614c73484dac5b836c02ff6a40d5d1010324d7"
576
- dependencies = [
577
- "serde",
578
- ]
933
+ checksum = "1f3ccbac311fea05f86f61904b462b55fb3df8837a366dfc601a0161d0532f20"
579
934
 
580
935
  [[package]]
581
936
  name = "tree-sitter"
582
- version = "0.20.10"
937
+ version = "0.22.6"
583
938
  source = "registry+https://github.com/rust-lang/crates.io-index"
584
- checksum = "e747b1f9b7b931ed39a548c1fae149101497de3c1fc8d9e18c62c1a66c683d3d"
939
+ checksum = "df7cc499ceadd4dcdf7ec6d4cbc34ece92c3fa07821e287aedecd4416c516dca"
585
940
  dependencies = [
586
941
  "cc",
587
942
  "regex",
@@ -589,58 +944,64 @@ dependencies = [
589
944
 
590
945
  [[package]]
591
946
  name = "tree-sitter-cli"
592
- version = "0.20.8"
947
+ version = "0.22.6"
593
948
  source = "registry+https://github.com/rust-lang/crates.io-index"
594
- checksum = "ae7e9d844d4d38e511a7b93fe8ced79f2a364c32fdea10d04546f1c8317d5a0c"
949
+ checksum = "f7437ac48e37e5014007527ed9281c00c333c9ad0731e1c8489c0eff667b99d5"
595
950
  dependencies = [
596
951
  "ansi_term",
952
+ "anstyle",
597
953
  "anyhow",
598
- "atty",
599
954
  "clap",
955
+ "ctrlc",
600
956
  "difference",
601
- "dirs 3.0.2",
957
+ "dirs",
958
+ "filetime",
602
959
  "glob",
960
+ "heck",
603
961
  "html-escape",
604
962
  "indexmap",
963
+ "indoc",
605
964
  "lazy_static",
606
965
  "log",
966
+ "memchr",
607
967
  "regex",
608
968
  "regex-syntax",
609
969
  "rustc-hash",
610
970
  "semver",
611
971
  "serde",
972
+ "serde_derive",
612
973
  "serde_json",
613
974
  "smallbitvec",
614
975
  "tiny_http",
615
- "toml",
616
976
  "tree-sitter",
617
977
  "tree-sitter-config",
618
978
  "tree-sitter-highlight",
619
979
  "tree-sitter-loader",
620
980
  "tree-sitter-tags",
621
981
  "walkdir",
982
+ "wasmparser",
622
983
  "webbrowser",
623
- "which",
624
984
  ]
625
985
 
626
986
  [[package]]
627
987
  name = "tree-sitter-config"
628
- version = "0.19.0"
988
+ version = "0.22.6"
629
989
  source = "registry+https://github.com/rust-lang/crates.io-index"
630
- checksum = "f5fec4cb27f052ead2246631b332dba0cb6af9a54ce012badee59c4b0ded5e03"
990
+ checksum = "5d64b4608a1d822f56e3afcecabfa4915a768ea92bc44abad1ae32cd4c607ebd"
631
991
  dependencies = [
632
992
  "anyhow",
633
- "dirs 3.0.2",
993
+ "dirs",
634
994
  "serde",
635
995
  "serde_json",
636
996
  ]
637
997
 
638
998
  [[package]]
639
999
  name = "tree-sitter-highlight"
640
- version = "0.20.1"
1000
+ version = "0.22.6"
641
1001
  source = "registry+https://github.com/rust-lang/crates.io-index"
642
- checksum = "042342584c5a7a0b833d9fc4e2bdab3f9868ddc6c4b339a1e01451c6720868bc"
1002
+ checksum = "eaca0fe34fa96eec6aaa8e63308dbe1bafe65a6317487c287f93938959b21907"
643
1003
  dependencies = [
1004
+ "lazy_static",
644
1005
  "regex",
645
1006
  "thiserror",
646
1007
  "tree-sitter",
@@ -648,18 +1009,21 @@ dependencies = [
648
1009
 
649
1010
  [[package]]
650
1011
  name = "tree-sitter-loader"
651
- version = "0.20.0"
1012
+ version = "0.22.6"
652
1013
  source = "registry+https://github.com/rust-lang/crates.io-index"
653
- checksum = "d0b17eef4833c7c139abed66d562dfa23228e97e647597baf246fd56c21bbfaf"
1014
+ checksum = "73c9b13749644fbe22ec25c79861dc1e637ef4ab9e469fd820fcb30b10091293"
654
1015
  dependencies = [
655
1016
  "anyhow",
656
1017
  "cc",
657
- "dirs 3.0.2",
1018
+ "dirs",
1019
+ "fs4",
1020
+ "indoc",
658
1021
  "libloading",
659
1022
  "once_cell",
660
1023
  "regex",
661
1024
  "serde",
662
1025
  "serde_json",
1026
+ "tempfile",
663
1027
  "tree-sitter",
664
1028
  "tree-sitter-highlight",
665
1029
  "tree-sitter-tags",
@@ -667,9 +1031,9 @@ dependencies = [
667
1031
 
668
1032
  [[package]]
669
1033
  name = "tree-sitter-tags"
670
- version = "0.20.2"
1034
+ version = "0.22.6"
671
1035
  source = "registry+https://github.com/rust-lang/crates.io-index"
672
- checksum = "ccb3f1376219530a37a809751ecf65aa35fd8b9c1c4ab6d4faf5f6a9eeda2c05"
1036
+ checksum = "34380416097ab36d1b4cd83f887d9e150ea4feaeb6ee9a5ecfe53d26839acc69"
673
1037
  dependencies = [
674
1038
  "memchr",
675
1039
  "regex",
@@ -682,7 +1046,7 @@ name = "tree_sitter_adapter"
682
1046
  version = "0.0.0"
683
1047
  dependencies = [
684
1048
  "anyhow",
685
- "rutie",
1049
+ "magnus",
686
1050
  "tree-sitter",
687
1051
  "tree-sitter-cli",
688
1052
  "tree-sitter-highlight",
@@ -691,36 +1055,30 @@ dependencies = [
691
1055
 
692
1056
  [[package]]
693
1057
  name = "unicode-bidi"
694
- version = "0.3.8"
1058
+ version = "0.3.15"
695
1059
  source = "registry+https://github.com/rust-lang/crates.io-index"
696
- checksum = "099b7128301d285f79ddd55b9a83d5e6b9e97c92e0ea0daebee7263e932de992"
1060
+ checksum = "08f95100a766bf4f8f28f90d77e0a5461bbdb219042e7679bebe79004fed8d75"
697
1061
 
698
1062
  [[package]]
699
1063
  name = "unicode-ident"
700
- version = "1.0.5"
1064
+ version = "1.0.12"
701
1065
  source = "registry+https://github.com/rust-lang/crates.io-index"
702
- checksum = "6ceab39d59e4c9499d4e5a8ee0e2735b891bb7308ac83dfb4e80cad195c9f6f3"
1066
+ checksum = "3354b9ac3fae1ff6755cb6db53683adb661634f67557942dea4facebec0fee4b"
703
1067
 
704
1068
  [[package]]
705
1069
  name = "unicode-normalization"
706
- version = "0.1.22"
1070
+ version = "0.1.23"
707
1071
  source = "registry+https://github.com/rust-lang/crates.io-index"
708
- checksum = "5c5713f0fc4b5db668a2ac63cdb7bb4469d8c9fed047b1d0292cc7b0ce2ba921"
1072
+ checksum = "a56d1686db2308d901306f92a263857ef59ea39678a5458e7cb17f01415101f5"
709
1073
  dependencies = [
710
1074
  "tinyvec",
711
1075
  ]
712
1076
 
713
- [[package]]
714
- name = "unicode-width"
715
- version = "0.1.10"
716
- source = "registry+https://github.com/rust-lang/crates.io-index"
717
- checksum = "c0edd1e5b14653f783770bce4a4dabb4a5108a5370a5f5d8cfe8710c361f6c8b"
718
-
719
1077
  [[package]]
720
1078
  name = "url"
721
- version = "2.3.1"
1079
+ version = "2.5.0"
722
1080
  source = "registry+https://github.com/rust-lang/crates.io-index"
723
- checksum = "0d68c799ae75762b8c3fe375feb6600ef5602c883c5d21eb51c09f22b83c4643"
1081
+ checksum = "31e6302e3bb753d46e83516cae55ae196fc0c309407cf11ab35cc51a4c2a4633"
724
1082
  dependencies = [
725
1083
  "form_urlencoded",
726
1084
  "idna",
@@ -729,24 +1087,29 @@ dependencies = [
729
1087
 
730
1088
  [[package]]
731
1089
  name = "utf8-width"
732
- version = "0.1.6"
1090
+ version = "0.1.7"
733
1091
  source = "registry+https://github.com/rust-lang/crates.io-index"
734
- checksum = "5190c9442dcdaf0ddd50f37420417d219ae5261bbf5db120d0f9bab996c9cba1"
1092
+ checksum = "86bd8d4e895da8537e5315b8254664e6b769c4ff3db18321b297a1e7004392e3"
735
1093
 
736
1094
  [[package]]
737
- name = "vec_map"
738
- version = "0.8.2"
1095
+ name = "utf8parse"
1096
+ version = "0.2.1"
739
1097
  source = "registry+https://github.com/rust-lang/crates.io-index"
740
- checksum = "f1bddf1187be692e79c5ffeab891132dfb0f236ed36a43c7ed39f1165ee20191"
1098
+ checksum = "711b9620af191e0cdc7468a8d14e709c3dcdb115b36f838e601583af800a370a"
1099
+
1100
+ [[package]]
1101
+ name = "version_check"
1102
+ version = "0.9.4"
1103
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1104
+ checksum = "49874b5167b65d7193b8aba1567f5c7d93d001cafc34600cee003eda787e483f"
741
1105
 
742
1106
  [[package]]
743
1107
  name = "walkdir"
744
- version = "2.3.2"
1108
+ version = "2.5.0"
745
1109
  source = "registry+https://github.com/rust-lang/crates.io-index"
746
- checksum = "808cf2735cd4b6866113f648b791c6adc5714537bc222d9347bb203386ffda56"
1110
+ checksum = "29790946404f91d9c5d06f9874efddea1dc06c5efe94541a7d6863108e3a5e4b"
747
1111
  dependencies = [
748
1112
  "same-file",
749
- "winapi",
750
1113
  "winapi-util",
751
1114
  ]
752
1115
 
@@ -758,9 +1121,9 @@ checksum = "9c8d87e72b64a3b4db28d11ce29237c246188f4f51057d65a7eab63b7987e423"
758
1121
 
759
1122
  [[package]]
760
1123
  name = "wasm-bindgen"
761
- version = "0.2.83"
1124
+ version = "0.2.92"
762
1125
  source = "registry+https://github.com/rust-lang/crates.io-index"
763
- checksum = "eaf9f5aceeec8be17c128b2e93e031fb8a4d469bb9c4ae2d7dc1888b26887268"
1126
+ checksum = "4be2531df63900aeb2bca0daaaddec08491ee64ceecbee5076636a3b026795a8"
764
1127
  dependencies = [
765
1128
  "cfg-if",
766
1129
  "wasm-bindgen-macro",
@@ -768,9 +1131,9 @@ dependencies = [
768
1131
 
769
1132
  [[package]]
770
1133
  name = "wasm-bindgen-backend"
771
- version = "0.2.83"
1134
+ version = "0.2.92"
772
1135
  source = "registry+https://github.com/rust-lang/crates.io-index"
773
- checksum = "4c8ffb332579b0557b52d268b91feab8df3615f265d5270fec2a8c95b17c1142"
1136
+ checksum = "614d787b966d3989fa7bb98a654e369c762374fd3213d212cfc0251257e747da"
774
1137
  dependencies = [
775
1138
  "bumpalo",
776
1139
  "log",
@@ -783,9 +1146,9 @@ dependencies = [
783
1146
 
784
1147
  [[package]]
785
1148
  name = "wasm-bindgen-macro"
786
- version = "0.2.83"
1149
+ version = "0.2.92"
787
1150
  source = "registry+https://github.com/rust-lang/crates.io-index"
788
- checksum = "052be0f94026e6cbc75cdefc9bae13fd6052cdcaf532fa6c45e7ae33a1e6c810"
1151
+ checksum = "a1f8823de937b71b9460c0c34e25f3da88250760bec0ebac694b49997550d726"
789
1152
  dependencies = [
790
1153
  "quote",
791
1154
  "wasm-bindgen-macro-support",
@@ -793,9 +1156,9 @@ dependencies = [
793
1156
 
794
1157
  [[package]]
795
1158
  name = "wasm-bindgen-macro-support"
796
- version = "0.2.83"
1159
+ version = "0.2.92"
797
1160
  source = "registry+https://github.com/rust-lang/crates.io-index"
798
- checksum = "07bc0c051dc5f23e307b13285f9d75df86bfdf816c5721e573dec1f9b8aa193c"
1161
+ checksum = "e94f17b526d0a461a191c78ea52bbce64071ed5c04c9ffe424dcb38f74171bb7"
799
1162
  dependencies = [
800
1163
  "proc-macro2",
801
1164
  "quote",
@@ -806,15 +1169,28 @@ dependencies = [
806
1169
 
807
1170
  [[package]]
808
1171
  name = "wasm-bindgen-shared"
809
- version = "0.2.83"
1172
+ version = "0.2.92"
810
1173
  source = "registry+https://github.com/rust-lang/crates.io-index"
811
- checksum = "1c38c045535d93ec4f0b4defec448e4291638ee608530863b1e2ba115d4fff7f"
1174
+ checksum = "af190c94f2773fdb3729c55b007a722abb5384da03bc0986df4c289bf5567e96"
1175
+
1176
+ [[package]]
1177
+ name = "wasmparser"
1178
+ version = "0.206.0"
1179
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1180
+ checksum = "39192edb55d55b41963db40fd49b0b542156f04447b5b512744a91d38567bdbc"
1181
+ dependencies = [
1182
+ "ahash",
1183
+ "bitflags 2.5.0",
1184
+ "hashbrown",
1185
+ "indexmap",
1186
+ "semver",
1187
+ ]
812
1188
 
813
1189
  [[package]]
814
1190
  name = "web-sys"
815
- version = "0.3.60"
1191
+ version = "0.3.69"
816
1192
  source = "registry+https://github.com/rust-lang/crates.io-index"
817
- checksum = "bcda906d8be16e728fd5adc5b729afad4e444e106ab28cd1c7256e54fa61510f"
1193
+ checksum = "77afa9a11836342370f4817622a2f0f418b134426d91a82dfb48f532d2ec13ef"
818
1194
  dependencies = [
819
1195
  "js-sys",
820
1196
  "wasm-bindgen",
@@ -822,32 +1198,22 @@ dependencies = [
822
1198
 
823
1199
  [[package]]
824
1200
  name = "webbrowser"
825
- version = "0.8.9"
1201
+ version = "1.0.1"
826
1202
  source = "registry+https://github.com/rust-lang/crates.io-index"
827
- checksum = "b692165700260bbd40fbc5ff23766c03e339fbaca907aeea5cb77bf0a553ca83"
1203
+ checksum = "425ba64c1e13b1c6e8c5d2541c8fac10022ca584f33da781db01b5756aef1f4e"
828
1204
  dependencies = [
1205
+ "block2",
829
1206
  "core-foundation",
830
- "dirs 4.0.0",
1207
+ "home",
831
1208
  "jni",
832
1209
  "log",
833
1210
  "ndk-context",
834
- "objc",
835
- "raw-window-handle",
1211
+ "objc2",
1212
+ "objc2-foundation",
836
1213
  "url",
837
1214
  "web-sys",
838
1215
  ]
839
1216
 
840
- [[package]]
841
- name = "which"
842
- version = "4.3.0"
843
- source = "registry+https://github.com/rust-lang/crates.io-index"
844
- checksum = "1c831fbbee9e129a8cf93e7747a82da9d95ba8e16621cae60ec2cdc849bacb7b"
845
- dependencies = [
846
- "either",
847
- "libc",
848
- "once_cell",
849
- ]
850
-
851
1217
  [[package]]
852
1218
  name = "winapi"
853
1219
  version = "0.3.9"
@@ -866,11 +1232,11 @@ checksum = "ac3b87c63620426dd9b991e5ce0329eff545bccbbb34f3be09ff6fb6ab51b7b6"
866
1232
 
867
1233
  [[package]]
868
1234
  name = "winapi-util"
869
- version = "0.1.5"
1235
+ version = "0.1.8"
870
1236
  source = "registry+https://github.com/rust-lang/crates.io-index"
871
- checksum = "70ec6ce85bb158151cae5e5c87f95a8e97d2c0c4b001223f33a334e3ce5de178"
1237
+ checksum = "4d4cc384e1e73b93bafa6fb4f1df8c41695c8a91cf9c4c64358067d15a7b6c6b"
872
1238
  dependencies = [
873
- "winapi",
1239
+ "windows-sys 0.52.0",
874
1240
  ]
875
1241
 
876
1242
  [[package]]
@@ -885,7 +1251,25 @@ version = "0.45.0"
885
1251
  source = "registry+https://github.com/rust-lang/crates.io-index"
886
1252
  checksum = "75283be5efb2831d37ea142365f009c02ec203cd29a3ebecbc093d52315b66d0"
887
1253
  dependencies = [
888
- "windows-targets",
1254
+ "windows-targets 0.42.2",
1255
+ ]
1256
+
1257
+ [[package]]
1258
+ name = "windows-sys"
1259
+ version = "0.48.0"
1260
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1261
+ checksum = "677d2418bec65e3338edb076e806bc1ec15693c5d0104683f2efe857f61056a9"
1262
+ dependencies = [
1263
+ "windows-targets 0.48.5",
1264
+ ]
1265
+
1266
+ [[package]]
1267
+ name = "windows-sys"
1268
+ version = "0.52.0"
1269
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1270
+ checksum = "282be5f36a8ce781fad8c8ae18fa3f9beff57ec1b52cb3de0789201425d9a33d"
1271
+ dependencies = [
1272
+ "windows-targets 0.52.5",
889
1273
  ]
890
1274
 
891
1275
  [[package]]
@@ -894,13 +1278,44 @@ version = "0.42.2"
894
1278
  source = "registry+https://github.com/rust-lang/crates.io-index"
895
1279
  checksum = "8e5180c00cd44c9b1c88adb3693291f1cd93605ded80c250a75d472756b4d071"
896
1280
  dependencies = [
897
- "windows_aarch64_gnullvm",
898
- "windows_aarch64_msvc",
899
- "windows_i686_gnu",
900
- "windows_i686_msvc",
901
- "windows_x86_64_gnu",
902
- "windows_x86_64_gnullvm",
903
- "windows_x86_64_msvc",
1281
+ "windows_aarch64_gnullvm 0.42.2",
1282
+ "windows_aarch64_msvc 0.42.2",
1283
+ "windows_i686_gnu 0.42.2",
1284
+ "windows_i686_msvc 0.42.2",
1285
+ "windows_x86_64_gnu 0.42.2",
1286
+ "windows_x86_64_gnullvm 0.42.2",
1287
+ "windows_x86_64_msvc 0.42.2",
1288
+ ]
1289
+
1290
+ [[package]]
1291
+ name = "windows-targets"
1292
+ version = "0.48.5"
1293
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1294
+ checksum = "9a2fa6e2155d7247be68c096456083145c183cbbbc2764150dda45a87197940c"
1295
+ dependencies = [
1296
+ "windows_aarch64_gnullvm 0.48.5",
1297
+ "windows_aarch64_msvc 0.48.5",
1298
+ "windows_i686_gnu 0.48.5",
1299
+ "windows_i686_msvc 0.48.5",
1300
+ "windows_x86_64_gnu 0.48.5",
1301
+ "windows_x86_64_gnullvm 0.48.5",
1302
+ "windows_x86_64_msvc 0.48.5",
1303
+ ]
1304
+
1305
+ [[package]]
1306
+ name = "windows-targets"
1307
+ version = "0.52.5"
1308
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1309
+ checksum = "6f0713a46559409d202e70e28227288446bf7841d3211583a4b53e3f6d96e7eb"
1310
+ dependencies = [
1311
+ "windows_aarch64_gnullvm 0.52.5",
1312
+ "windows_aarch64_msvc 0.52.5",
1313
+ "windows_i686_gnu 0.52.5",
1314
+ "windows_i686_gnullvm",
1315
+ "windows_i686_msvc 0.52.5",
1316
+ "windows_x86_64_gnu 0.52.5",
1317
+ "windows_x86_64_gnullvm 0.52.5",
1318
+ "windows_x86_64_msvc 0.52.5",
904
1319
  ]
905
1320
 
906
1321
  [[package]]
@@ -909,38 +1324,148 @@ version = "0.42.2"
909
1324
  source = "registry+https://github.com/rust-lang/crates.io-index"
910
1325
  checksum = "597a5118570b68bc08d8d59125332c54f1ba9d9adeedeef5b99b02ba2b0698f8"
911
1326
 
1327
+ [[package]]
1328
+ name = "windows_aarch64_gnullvm"
1329
+ version = "0.48.5"
1330
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1331
+ checksum = "2b38e32f0abccf9987a4e3079dfb67dcd799fb61361e53e2882c3cbaf0d905d8"
1332
+
1333
+ [[package]]
1334
+ name = "windows_aarch64_gnullvm"
1335
+ version = "0.52.5"
1336
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1337
+ checksum = "7088eed71e8b8dda258ecc8bac5fb1153c5cffaf2578fc8ff5d61e23578d3263"
1338
+
912
1339
  [[package]]
913
1340
  name = "windows_aarch64_msvc"
914
1341
  version = "0.42.2"
915
1342
  source = "registry+https://github.com/rust-lang/crates.io-index"
916
1343
  checksum = "e08e8864a60f06ef0d0ff4ba04124db8b0fb3be5776a5cd47641e942e58c4d43"
917
1344
 
1345
+ [[package]]
1346
+ name = "windows_aarch64_msvc"
1347
+ version = "0.48.5"
1348
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1349
+ checksum = "dc35310971f3b2dbbf3f0690a219f40e2d9afcf64f9ab7cc1be722937c26b4bc"
1350
+
1351
+ [[package]]
1352
+ name = "windows_aarch64_msvc"
1353
+ version = "0.52.5"
1354
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1355
+ checksum = "9985fd1504e250c615ca5f281c3f7a6da76213ebd5ccc9561496568a2752afb6"
1356
+
918
1357
  [[package]]
919
1358
  name = "windows_i686_gnu"
920
1359
  version = "0.42.2"
921
1360
  source = "registry+https://github.com/rust-lang/crates.io-index"
922
1361
  checksum = "c61d927d8da41da96a81f029489353e68739737d3beca43145c8afec9a31a84f"
923
1362
 
1363
+ [[package]]
1364
+ name = "windows_i686_gnu"
1365
+ version = "0.48.5"
1366
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1367
+ checksum = "a75915e7def60c94dcef72200b9a8e58e5091744960da64ec734a6c6e9b3743e"
1368
+
1369
+ [[package]]
1370
+ name = "windows_i686_gnu"
1371
+ version = "0.52.5"
1372
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1373
+ checksum = "88ba073cf16d5372720ec942a8ccbf61626074c6d4dd2e745299726ce8b89670"
1374
+
1375
+ [[package]]
1376
+ name = "windows_i686_gnullvm"
1377
+ version = "0.52.5"
1378
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1379
+ checksum = "87f4261229030a858f36b459e748ae97545d6f1ec60e5e0d6a3d32e0dc232ee9"
1380
+
924
1381
  [[package]]
925
1382
  name = "windows_i686_msvc"
926
1383
  version = "0.42.2"
927
1384
  source = "registry+https://github.com/rust-lang/crates.io-index"
928
1385
  checksum = "44d840b6ec649f480a41c8d80f9c65108b92d89345dd94027bfe06ac444d1060"
929
1386
 
1387
+ [[package]]
1388
+ name = "windows_i686_msvc"
1389
+ version = "0.48.5"
1390
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1391
+ checksum = "8f55c233f70c4b27f66c523580f78f1004e8b5a8b659e05a4eb49d4166cca406"
1392
+
1393
+ [[package]]
1394
+ name = "windows_i686_msvc"
1395
+ version = "0.52.5"
1396
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1397
+ checksum = "db3c2bf3d13d5b658be73463284eaf12830ac9a26a90c717b7f771dfe97487bf"
1398
+
930
1399
  [[package]]
931
1400
  name = "windows_x86_64_gnu"
932
1401
  version = "0.42.2"
933
1402
  source = "registry+https://github.com/rust-lang/crates.io-index"
934
1403
  checksum = "8de912b8b8feb55c064867cf047dda097f92d51efad5b491dfb98f6bbb70cb36"
935
1404
 
1405
+ [[package]]
1406
+ name = "windows_x86_64_gnu"
1407
+ version = "0.48.5"
1408
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1409
+ checksum = "53d40abd2583d23e4718fddf1ebec84dbff8381c07cae67ff7768bbf19c6718e"
1410
+
1411
+ [[package]]
1412
+ name = "windows_x86_64_gnu"
1413
+ version = "0.52.5"
1414
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1415
+ checksum = "4e4246f76bdeff09eb48875a0fd3e2af6aada79d409d33011886d3e1581517d9"
1416
+
936
1417
  [[package]]
937
1418
  name = "windows_x86_64_gnullvm"
938
1419
  version = "0.42.2"
939
1420
  source = "registry+https://github.com/rust-lang/crates.io-index"
940
1421
  checksum = "26d41b46a36d453748aedef1486d5c7a85db22e56aff34643984ea85514e94a3"
941
1422
 
1423
+ [[package]]
1424
+ name = "windows_x86_64_gnullvm"
1425
+ version = "0.48.5"
1426
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1427
+ checksum = "0b7b52767868a23d5bab768e390dc5f5c55825b6d30b86c844ff2dc7414044cc"
1428
+
1429
+ [[package]]
1430
+ name = "windows_x86_64_gnullvm"
1431
+ version = "0.52.5"
1432
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1433
+ checksum = "852298e482cd67c356ddd9570386e2862b5673c85bd5f88df9ab6802b334c596"
1434
+
942
1435
  [[package]]
943
1436
  name = "windows_x86_64_msvc"
944
1437
  version = "0.42.2"
945
1438
  source = "registry+https://github.com/rust-lang/crates.io-index"
946
1439
  checksum = "9aec5da331524158c6d1a4ac0ab1541149c0b9505fde06423b02f5ef0106b9f0"
1440
+
1441
+ [[package]]
1442
+ name = "windows_x86_64_msvc"
1443
+ version = "0.48.5"
1444
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1445
+ checksum = "ed94fce61571a4006852b7389a063ab983c02eb1bb37b47f8272ce92d06d9538"
1446
+
1447
+ [[package]]
1448
+ name = "windows_x86_64_msvc"
1449
+ version = "0.52.5"
1450
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1451
+ checksum = "bec47e5bfd1bff0eeaf6d8b485cc1074891a197ab4225d504cb7a1ab88b02bf0"
1452
+
1453
+ [[package]]
1454
+ name = "zerocopy"
1455
+ version = "0.7.34"
1456
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1457
+ checksum = "ae87e3fcd617500e5d106f0380cf7b77f3c6092aae37191433159dda23cfb087"
1458
+ dependencies = [
1459
+ "zerocopy-derive",
1460
+ ]
1461
+
1462
+ [[package]]
1463
+ name = "zerocopy-derive"
1464
+ version = "0.7.34"
1465
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1466
+ checksum = "15e934569e47891f7d9411f1a451d947a60e000ab3bd24fbb970f000387d1b3b"
1467
+ dependencies = [
1468
+ "proc-macro2",
1469
+ "quote",
1470
+ "syn",
1471
+ ]