voidcrawl 0.2.3__tar.gz → 0.3.2__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.
Files changed (67) hide show
  1. {voidcrawl-0.2.3 → voidcrawl-0.3.2}/Cargo.lock +640 -183
  2. {voidcrawl-0.2.3 → voidcrawl-0.3.2}/Cargo.toml +10 -0
  3. {voidcrawl-0.2.3 → voidcrawl-0.3.2}/PKG-INFO +52 -1
  4. {voidcrawl-0.2.3 → voidcrawl-0.3.2}/README.md +49 -0
  5. {voidcrawl-0.2.3 → voidcrawl-0.3.2}/crates/core/Cargo.toml +9 -2
  6. voidcrawl-0.3.2/crates/core/README.md +167 -0
  7. voidcrawl-0.3.2/crates/core/src/ax.rs +161 -0
  8. voidcrawl-0.3.2/crates/core/src/captcha.rs +349 -0
  9. {voidcrawl-0.2.3 → voidcrawl-0.3.2}/crates/core/src/error.rs +12 -0
  10. {voidcrawl-0.2.3 → voidcrawl-0.3.2}/crates/core/src/lib.rs +11 -1
  11. voidcrawl-0.3.2/crates/core/src/page.rs +1030 -0
  12. {voidcrawl-0.2.3 → voidcrawl-0.3.2}/crates/core/src/pool.rs +45 -8
  13. voidcrawl-0.3.2/crates/core/src/profile.rs +303 -0
  14. voidcrawl-0.3.2/crates/core/src/session.rs +671 -0
  15. {voidcrawl-0.2.3 → voidcrawl-0.3.2}/crates/core/src/stealth.rs +21 -34
  16. voidcrawl-0.3.2/crates/core/tests/ax_tree.rs +171 -0
  17. voidcrawl-0.3.2/crates/core/tests/captcha_capture.rs +115 -0
  18. voidcrawl-0.3.2/crates/core/tests/captcha_runtime_loaded.rs +67 -0
  19. voidcrawl-0.3.2/crates/core/tests/emulation.rs +107 -0
  20. {voidcrawl-0.2.3 → voidcrawl-0.3.2}/crates/core/tests/integration.rs +33 -1
  21. voidcrawl-0.3.2/crates/core/tests/profile_lock.rs +83 -0
  22. voidcrawl-0.3.2/crates/core/tests/stealth_ua.rs +39 -0
  23. {voidcrawl-0.2.3 → voidcrawl-0.3.2}/crates/pyo3_bindings/Cargo.toml +2 -2
  24. {voidcrawl-0.2.3 → voidcrawl-0.3.2}/crates/pyo3_bindings/src/lib.rs +404 -42
  25. {voidcrawl-0.2.3 → voidcrawl-0.3.2}/pyproject.toml +21 -1
  26. {voidcrawl-0.2.3 → voidcrawl-0.3.2}/voidcrawl/__init__.py +55 -4
  27. {voidcrawl-0.2.3 → voidcrawl-0.3.2}/voidcrawl/__init__.pyi +36 -0
  28. {voidcrawl-0.2.3 → voidcrawl-0.3.2}/voidcrawl/_ext.pyi +190 -22
  29. voidcrawl-0.3.2/voidcrawl/profiles.py +111 -0
  30. {voidcrawl-0.2.3 → voidcrawl-0.3.2}/voidcrawl/scale.py +35 -4
  31. voidcrawl-0.2.3/crates/core/src/page.rs +0 -602
  32. voidcrawl-0.2.3/crates/core/src/session.rs +0 -435
  33. {voidcrawl-0.2.3 → voidcrawl-0.3.2}/LICENSE.md +0 -0
  34. {voidcrawl-0.2.3 → voidcrawl-0.3.2}/voidcrawl/actions/__init__.py +0 -0
  35. {voidcrawl-0.2.3 → voidcrawl-0.3.2}/voidcrawl/actions/__init__.pyi +0 -0
  36. {voidcrawl-0.2.3 → voidcrawl-0.3.2}/voidcrawl/actions/_base.py +0 -0
  37. {voidcrawl-0.2.3 → voidcrawl-0.3.2}/voidcrawl/actions/_base.pyi +0 -0
  38. {voidcrawl-0.2.3 → voidcrawl-0.3.2}/voidcrawl/actions/_flow.py +0 -0
  39. {voidcrawl-0.2.3 → voidcrawl-0.3.2}/voidcrawl/actions/_flow.pyi +0 -0
  40. {voidcrawl-0.2.3 → voidcrawl-0.3.2}/voidcrawl/actions/_protocol.py +0 -0
  41. {voidcrawl-0.2.3 → voidcrawl-0.3.2}/voidcrawl/actions/_protocol.pyi +0 -0
  42. {voidcrawl-0.2.3 → voidcrawl-0.3.2}/voidcrawl/actions/builtin/__init__.py +0 -0
  43. {voidcrawl-0.2.3 → voidcrawl-0.3.2}/voidcrawl/actions/builtin/__init__.pyi +0 -0
  44. {voidcrawl-0.2.3 → voidcrawl-0.3.2}/voidcrawl/actions/builtin/click.py +0 -0
  45. {voidcrawl-0.2.3 → voidcrawl-0.3.2}/voidcrawl/actions/builtin/click.pyi +0 -0
  46. {voidcrawl-0.2.3 → voidcrawl-0.3.2}/voidcrawl/actions/builtin/dom.py +0 -0
  47. {voidcrawl-0.2.3 → voidcrawl-0.3.2}/voidcrawl/actions/builtin/dom.pyi +0 -0
  48. {voidcrawl-0.2.3 → voidcrawl-0.3.2}/voidcrawl/actions/builtin/hover.py +0 -0
  49. {voidcrawl-0.2.3 → voidcrawl-0.3.2}/voidcrawl/actions/builtin/hover.pyi +0 -0
  50. {voidcrawl-0.2.3 → voidcrawl-0.3.2}/voidcrawl/actions/builtin/input.py +0 -0
  51. {voidcrawl-0.2.3 → voidcrawl-0.3.2}/voidcrawl/actions/builtin/input.pyi +0 -0
  52. {voidcrawl-0.2.3 → voidcrawl-0.3.2}/voidcrawl/actions/builtin/network.py +0 -0
  53. {voidcrawl-0.2.3 → voidcrawl-0.3.2}/voidcrawl/actions/builtin/network.pyi +0 -0
  54. {voidcrawl-0.2.3 → voidcrawl-0.3.2}/voidcrawl/actions/builtin/scroll.py +0 -0
  55. {voidcrawl-0.2.3 → voidcrawl-0.3.2}/voidcrawl/actions/builtin/scroll.pyi +0 -0
  56. {voidcrawl-0.2.3 → voidcrawl-0.3.2}/voidcrawl/actions/builtin/wait.py +0 -0
  57. {voidcrawl-0.2.3 → voidcrawl-0.3.2}/voidcrawl/actions/builtin/wait.pyi +0 -0
  58. {voidcrawl-0.2.3 → voidcrawl-0.3.2}/voidcrawl/actions/js/click_at.js +0 -0
  59. {voidcrawl-0.2.3 → voidcrawl-0.3.2}/voidcrawl/actions/js/hover.js +0 -0
  60. {voidcrawl-0.2.3 → voidcrawl-0.3.2}/voidcrawl/actions/js/wait_for_selector.js +0 -0
  61. {voidcrawl-0.2.3 → voidcrawl-0.3.2}/voidcrawl/cli.py +0 -0
  62. {voidcrawl-0.2.3 → voidcrawl-0.3.2}/voidcrawl/debug.py +0 -0
  63. {voidcrawl-0.2.3 → voidcrawl-0.3.2}/voidcrawl/debug.pyi +0 -0
  64. {voidcrawl-0.2.3 → voidcrawl-0.3.2}/voidcrawl/py.typed +0 -0
  65. {voidcrawl-0.2.3 → voidcrawl-0.3.2}/voidcrawl/scale.pyi +0 -0
  66. {voidcrawl-0.2.3 → voidcrawl-0.3.2}/voidcrawl/schema.py +0 -0
  67. {voidcrawl-0.2.3 → voidcrawl-0.3.2}/voidcrawl/schema.pyi +0 -0
@@ -11,12 +11,82 @@ dependencies = [
11
11
  "memchr",
12
12
  ]
13
13
 
14
+ [[package]]
15
+ name = "android_system_properties"
16
+ version = "0.1.5"
17
+ source = "registry+https://github.com/rust-lang/crates.io-index"
18
+ checksum = "819e7219dbd41043ac279b19830f2efc897156490d7fd6ea916720117ee66311"
19
+ dependencies = [
20
+ "libc",
21
+ ]
22
+
23
+ [[package]]
24
+ name = "anstream"
25
+ version = "1.0.0"
26
+ source = "registry+https://github.com/rust-lang/crates.io-index"
27
+ checksum = "824a212faf96e9acacdbd09febd34438f8f711fb84e09a8916013cd7815ca28d"
28
+ dependencies = [
29
+ "anstyle",
30
+ "anstyle-parse",
31
+ "anstyle-query",
32
+ "anstyle-wincon",
33
+ "colorchoice",
34
+ "is_terminal_polyfill",
35
+ "utf8parse",
36
+ ]
37
+
38
+ [[package]]
39
+ name = "anstyle"
40
+ version = "1.0.14"
41
+ source = "registry+https://github.com/rust-lang/crates.io-index"
42
+ checksum = "940b3a0ca603d1eade50a4846a2afffd5ef57a9feac2c0e2ec2e14f9ead76000"
43
+
44
+ [[package]]
45
+ name = "anstyle-parse"
46
+ version = "1.0.0"
47
+ source = "registry+https://github.com/rust-lang/crates.io-index"
48
+ checksum = "52ce7f38b242319f7cabaa6813055467063ecdc9d355bbb4ce0c68908cd8130e"
49
+ dependencies = [
50
+ "utf8parse",
51
+ ]
52
+
53
+ [[package]]
54
+ name = "anstyle-query"
55
+ version = "1.1.5"
56
+ source = "registry+https://github.com/rust-lang/crates.io-index"
57
+ checksum = "40c48f72fd53cd289104fc64099abca73db4166ad86ea0b4341abe65af83dadc"
58
+ dependencies = [
59
+ "windows-sys 0.61.2",
60
+ ]
61
+
62
+ [[package]]
63
+ name = "anstyle-wincon"
64
+ version = "3.0.11"
65
+ source = "registry+https://github.com/rust-lang/crates.io-index"
66
+ checksum = "291e6a250ff86cd4a820112fb8898808a366d8f9f58ce16d1f538353ad55747d"
67
+ dependencies = [
68
+ "anstyle",
69
+ "once_cell_polyfill",
70
+ "windows-sys 0.61.2",
71
+ ]
72
+
14
73
  [[package]]
15
74
  name = "anyhow"
16
75
  version = "1.0.102"
17
76
  source = "registry+https://github.com/rust-lang/crates.io-index"
18
77
  checksum = "7f202df86484c868dbad7eaa557ef785d5c66295e41b460ef922eca0723b842c"
19
78
 
79
+ [[package]]
80
+ name = "async-trait"
81
+ version = "0.1.89"
82
+ source = "registry+https://github.com/rust-lang/crates.io-index"
83
+ checksum = "9035ad2d096bed7955a320ee7e2230574d28fd3c3a0f186cbea1ff3c7eed5dbb"
84
+ dependencies = [
85
+ "proc-macro2",
86
+ "quote",
87
+ "syn",
88
+ ]
89
+
20
90
  [[package]]
21
91
  name = "async-tungstenite"
22
92
  version = "0.32.1"
@@ -40,6 +110,12 @@ version = "1.1.2"
40
110
  source = "registry+https://github.com/rust-lang/crates.io-index"
41
111
  checksum = "1505bd5d3d116872e7271a6d4e16d81d0c8570876c8de68093a09ac269d8aac0"
42
112
 
113
+ [[package]]
114
+ name = "autocfg"
115
+ version = "1.5.1"
116
+ source = "registry+https://github.com/rust-lang/crates.io-index"
117
+ checksum = "f2032f911046de80f0a198e0901378627c33f59ea0ac00e363d481118bd70a53"
118
+
43
119
  [[package]]
44
120
  name = "base64"
45
121
  version = "0.22.1"
@@ -48,9 +124,9 @@ checksum = "72b3254f16251a8381aa12e40e3c4d2f0199f8c6508fbecb9d91f575e0fbb8c6"
48
124
 
49
125
  [[package]]
50
126
  name = "bitflags"
51
- version = "2.11.0"
127
+ version = "2.11.1"
52
128
  source = "registry+https://github.com/rust-lang/crates.io-index"
53
- checksum = "843867be96c8daad0d758b57df9392b6d8d271134fce549de6ce169ff98a92af"
129
+ checksum = "c4512299f36f043ab09a583e57bceb5a5aab7a73db1805848e8fef3c9e8c78b3"
54
130
 
55
131
  [[package]]
56
132
  name = "block-buffer"
@@ -63,9 +139,9 @@ dependencies = [
63
139
 
64
140
  [[package]]
65
141
  name = "bumpalo"
66
- version = "3.20.2"
142
+ version = "3.20.3"
67
143
  source = "registry+https://github.com/rust-lang/crates.io-index"
68
- checksum = "5d20789868f4b01b2f2caec9f5c4e0213b41e3e5702a50157d699ae31ced2fcb"
144
+ checksum = "72f5acc6cb2ba439de613abc23857ec3d78374d8ed5ac84e9d11336e87da8649"
69
145
 
70
146
  [[package]]
71
147
  name = "bytes"
@@ -75,20 +151,14 @@ checksum = "1e748733b7cbc798e1434b6ac524f0c1ff2ab456fe201501e6497c8417a4fc33"
75
151
 
76
152
  [[package]]
77
153
  name = "cc"
78
- version = "1.2.59"
154
+ version = "1.2.62"
79
155
  source = "registry+https://github.com/rust-lang/crates.io-index"
80
- checksum = "b7a4d3ec6524d28a329fc53654bbadc9bdd7b0431f5d65f1a56ffb28a1ee5283"
156
+ checksum = "a1dce859f0832a7d088c4f1119888ab94ef4b5d6795d1ce05afb7fe159d79f98"
81
157
  dependencies = [
82
158
  "find-msvc-tools",
83
159
  "shlex",
84
160
  ]
85
161
 
86
- [[package]]
87
- name = "cesu8"
88
- version = "1.1.0"
89
- source = "registry+https://github.com/rust-lang/crates.io-index"
90
- checksum = "6d43a04d8753f35258c91f8ec639f792891f748a1edbd759cf1dcea3382ad83c"
91
-
92
162
  [[package]]
93
163
  name = "cfg-if"
94
164
  version = "1.0.4"
@@ -113,7 +183,7 @@ dependencies = [
113
183
  "reqwest",
114
184
  "serde",
115
185
  "serde_json",
116
- "thiserror 2.0.18",
186
+ "thiserror",
117
187
  "tokio",
118
188
  "tracing",
119
189
  "url",
@@ -159,6 +229,64 @@ dependencies = [
159
229
  "serde_json",
160
230
  ]
161
231
 
232
+ [[package]]
233
+ name = "chrono"
234
+ version = "0.4.44"
235
+ source = "registry+https://github.com/rust-lang/crates.io-index"
236
+ checksum = "c673075a2e0e5f4a1dde27ce9dee1ea4558c7ffe648f576438a20ca1d2acc4b0"
237
+ dependencies = [
238
+ "iana-time-zone",
239
+ "num-traits",
240
+ "serde",
241
+ "windows-link",
242
+ ]
243
+
244
+ [[package]]
245
+ name = "clap"
246
+ version = "4.6.1"
247
+ source = "registry+https://github.com/rust-lang/crates.io-index"
248
+ checksum = "1ddb117e43bbf7dacf0a4190fef4d345b9bad68dfc649cb349e7d17d28428e51"
249
+ dependencies = [
250
+ "clap_builder",
251
+ "clap_derive",
252
+ ]
253
+
254
+ [[package]]
255
+ name = "clap_builder"
256
+ version = "4.6.0"
257
+ source = "registry+https://github.com/rust-lang/crates.io-index"
258
+ checksum = "714a53001bf66416adb0e2ef5ac857140e7dc3a0c48fb28b2f10762fc4b5069f"
259
+ dependencies = [
260
+ "anstream",
261
+ "anstyle",
262
+ "clap_lex",
263
+ "strsim",
264
+ ]
265
+
266
+ [[package]]
267
+ name = "clap_derive"
268
+ version = "4.6.1"
269
+ source = "registry+https://github.com/rust-lang/crates.io-index"
270
+ checksum = "f2ce8604710f6733aa641a2b3731eaa1e8b3d9973d5e3565da11800813f997a9"
271
+ dependencies = [
272
+ "heck",
273
+ "proc-macro2",
274
+ "quote",
275
+ "syn",
276
+ ]
277
+
278
+ [[package]]
279
+ name = "clap_lex"
280
+ version = "1.1.0"
281
+ source = "registry+https://github.com/rust-lang/crates.io-index"
282
+ checksum = "c8d4a3bb8b1e0c1050499d1815f5ab16d04f0959b233085fb31653fbfc9d98f9"
283
+
284
+ [[package]]
285
+ name = "colorchoice"
286
+ version = "1.0.5"
287
+ source = "registry+https://github.com/rust-lang/crates.io-index"
288
+ checksum = "1d07550c9036bf2ae0c684c4297d503f838287c83c53686d05370d0e139ae570"
289
+
162
290
  [[package]]
163
291
  name = "combine"
164
292
  version = "4.6.7"
@@ -204,11 +332,45 @@ dependencies = [
204
332
  "typenum",
205
333
  ]
206
334
 
335
+ [[package]]
336
+ name = "darling"
337
+ version = "0.23.0"
338
+ source = "registry+https://github.com/rust-lang/crates.io-index"
339
+ checksum = "25ae13da2f202d56bd7f91c25fba009e7717a1e4a1cc98a76d844b65ae912e9d"
340
+ dependencies = [
341
+ "darling_core",
342
+ "darling_macro",
343
+ ]
344
+
345
+ [[package]]
346
+ name = "darling_core"
347
+ version = "0.23.0"
348
+ source = "registry+https://github.com/rust-lang/crates.io-index"
349
+ checksum = "9865a50f7c335f53564bb694ef660825eb8610e0a53d3e11bf1b0d3df31e03b0"
350
+ dependencies = [
351
+ "ident_case",
352
+ "proc-macro2",
353
+ "quote",
354
+ "strsim",
355
+ "syn",
356
+ ]
357
+
358
+ [[package]]
359
+ name = "darling_macro"
360
+ version = "0.23.0"
361
+ source = "registry+https://github.com/rust-lang/crates.io-index"
362
+ checksum = "ac3984ec7bd6cfa798e62b4a642426a5be0e68f9401cfc2a01e3fa9ea2fcdb8d"
363
+ dependencies = [
364
+ "darling_core",
365
+ "quote",
366
+ "syn",
367
+ ]
368
+
207
369
  [[package]]
208
370
  name = "data-encoding"
209
- version = "2.10.0"
371
+ version = "2.11.0"
210
372
  source = "registry+https://github.com/rust-lang/crates.io-index"
211
- checksum = "d7a1e2f27636f116493b8b860f5546edb47c8d8f8ea73e1d2a20be88e28d1fea"
373
+ checksum = "a4ae5f15dda3c708c0ade84bfee31ccab44a3da4f88015ed22f63732abe300c8"
212
374
 
213
375
  [[package]]
214
376
  name = "digest"
@@ -237,11 +399,17 @@ version = "1.0.5"
237
399
  source = "registry+https://github.com/rust-lang/crates.io-index"
238
400
  checksum = "92773504d58c093f6de2459af4af33faa518c13451eb8f2b5698ed3d36e7c813"
239
401
 
402
+ [[package]]
403
+ name = "dyn-clone"
404
+ version = "1.0.20"
405
+ source = "registry+https://github.com/rust-lang/crates.io-index"
406
+ checksum = "d0881ea181b1df73ff77ffaaf9c7544ecc11e82fba9b5f27b262a3c73a332555"
407
+
240
408
  [[package]]
241
409
  name = "either"
242
- version = "1.15.0"
410
+ version = "1.16.0"
243
411
  source = "registry+https://github.com/rust-lang/crates.io-index"
244
- checksum = "48c757948c5ede0e46177b7add2e67155f70e33c07fea8284df6576da70b3719"
412
+ checksum = "91622ff5e7162018101f2fea40d6ebf4a78bbe5a49736a2020649edf9693679e"
245
413
 
246
414
  [[package]]
247
415
  name = "equivalent"
@@ -265,6 +433,17 @@ version = "2.4.1"
265
433
  source = "registry+https://github.com/rust-lang/crates.io-index"
266
434
  checksum = "9f1f227452a390804cdb637b74a86990f2a7d7ba4b7d5693aac9b4dd6defd8d6"
267
435
 
436
+ [[package]]
437
+ name = "fd-lock"
438
+ version = "4.0.4"
439
+ source = "registry+https://github.com/rust-lang/crates.io-index"
440
+ checksum = "0ce92ff622d6dadf7349484f42c93271a0d49b7cc4d466a936405bacbe10aa78"
441
+ dependencies = [
442
+ "cfg-if",
443
+ "rustix",
444
+ "windows-sys 0.59.0",
445
+ ]
446
+
268
447
  [[package]]
269
448
  name = "find-msvc-tools"
270
449
  version = "0.1.9"
@@ -365,9 +544,9 @@ checksum = "037711b3d59c33004d3856fbdc83b99d4ff37a24768fa1be9ce3538a1cde4393"
365
544
 
366
545
  [[package]]
367
546
  name = "futures-timer"
368
- version = "3.0.3"
547
+ version = "3.0.4"
369
548
  source = "registry+https://github.com/rust-lang/crates.io-index"
370
- checksum = "f288b0a4f20f9a56b5d1da57e2227c661b7b16168e2f72365f57b63326e29b24"
549
+ checksum = "af43fadb8a98512d547e37b4e92e0ced13e205c061b87b4623eff01d918d6968"
371
550
 
372
551
  [[package]]
373
552
  name = "futures-util"
@@ -443,9 +622,9 @@ dependencies = [
443
622
 
444
623
  [[package]]
445
624
  name = "hashbrown"
446
- version = "0.16.1"
625
+ version = "0.17.1"
447
626
  source = "registry+https://github.com/rust-lang/crates.io-index"
448
- checksum = "841d1cc9bed7f9236f321df977030373f4a4163ae1a7dbfe1a51a2c1a51d9100"
627
+ checksum = "ed5909b6e89a2db4456e54cd5f673791d7eca6732202bbf2a9cc504fe2f9b84a"
449
628
 
450
629
  [[package]]
451
630
  name = "heck"
@@ -492,6 +671,12 @@ version = "1.10.1"
492
671
  source = "registry+https://github.com/rust-lang/crates.io-index"
493
672
  checksum = "6dbf3de79e51f3d586ab4cb9d5c3e2c14aa28ed23d180cf89b4df0454a69cc87"
494
673
 
674
+ [[package]]
675
+ name = "httpdate"
676
+ version = "1.0.3"
677
+ source = "registry+https://github.com/rust-lang/crates.io-index"
678
+ checksum = "df3b46402a9d5adb4c86a0cf463f42e19994e3ee891101b1841f30a545cb49a9"
679
+
495
680
  [[package]]
496
681
  name = "hyper"
497
682
  version = "1.9.0"
@@ -505,6 +690,7 @@ dependencies = [
505
690
  "http",
506
691
  "http-body",
507
692
  "httparse",
693
+ "httpdate",
508
694
  "itoa",
509
695
  "pin-project-lite",
510
696
  "smallvec",
@@ -514,15 +700,14 @@ dependencies = [
514
700
 
515
701
  [[package]]
516
702
  name = "hyper-rustls"
517
- version = "0.27.7"
703
+ version = "0.27.9"
518
704
  source = "registry+https://github.com/rust-lang/crates.io-index"
519
- checksum = "e3c93eb611681b207e1fe55d5a71ecf91572ec8a6705cdb6857f7d8d5242cf58"
705
+ checksum = "33ca68d021ef39cf6463ab54c1d0f5daf03377b70561305bb89a8f83aab66e0f"
520
706
  dependencies = [
521
707
  "http",
522
708
  "hyper",
523
709
  "hyper-util",
524
710
  "rustls",
525
- "rustls-pki-types",
526
711
  "tokio",
527
712
  "tokio-rustls",
528
713
  "tower-service",
@@ -551,6 +736,30 @@ dependencies = [
551
736
  "tracing",
552
737
  ]
553
738
 
739
+ [[package]]
740
+ name = "iana-time-zone"
741
+ version = "0.1.65"
742
+ source = "registry+https://github.com/rust-lang/crates.io-index"
743
+ checksum = "e31bc9ad994ba00e440a8aa5c9ef0ec67d5cb5e5cb0cc7f8b744a35b389cc470"
744
+ dependencies = [
745
+ "android_system_properties",
746
+ "core-foundation-sys",
747
+ "iana-time-zone-haiku",
748
+ "js-sys",
749
+ "log",
750
+ "wasm-bindgen",
751
+ "windows-core",
752
+ ]
753
+
754
+ [[package]]
755
+ name = "iana-time-zone-haiku"
756
+ version = "0.1.2"
757
+ source = "registry+https://github.com/rust-lang/crates.io-index"
758
+ checksum = "f31827a206f56af32e590ba56d5d2d085f558508192593743f16b2306495269f"
759
+ dependencies = [
760
+ "cc",
761
+ ]
762
+
554
763
  [[package]]
555
764
  name = "icu_collections"
556
765
  version = "2.2.0"
@@ -639,6 +848,12 @@ version = "2.3.0"
639
848
  source = "registry+https://github.com/rust-lang/crates.io-index"
640
849
  checksum = "3d3067d79b975e8844ca9eb072e16b31c3c1c36928edf9c6789548c524d0d954"
641
850
 
851
+ [[package]]
852
+ name = "ident_case"
853
+ version = "1.0.1"
854
+ source = "registry+https://github.com/rust-lang/crates.io-index"
855
+ checksum = "b9e0384b61958566e926dc50660321d12159025e767c18e043daf26b70104c39"
856
+
642
857
  [[package]]
643
858
  name = "idna"
644
859
  version = "1.1.0"
@@ -652,9 +867,9 @@ dependencies = [
652
867
 
653
868
  [[package]]
654
869
  name = "idna_adapter"
655
- version = "1.2.1"
870
+ version = "1.2.2"
656
871
  source = "registry+https://github.com/rust-lang/crates.io-index"
657
- checksum = "3acae9609540aa318d1bc588455225fb2085b9ed0c4f6bd0d9d5bcd86f1a0344"
872
+ checksum = "cb68373c0d6620ef8105e855e7745e18b0d00d3bdb07fb532e434244cdb9a714"
658
873
  dependencies = [
659
874
  "icu_normalizer",
660
875
  "icu_properties",
@@ -662,12 +877,12 @@ dependencies = [
662
877
 
663
878
  [[package]]
664
879
  name = "indexmap"
665
- version = "2.13.1"
880
+ version = "2.14.0"
666
881
  source = "registry+https://github.com/rust-lang/crates.io-index"
667
- checksum = "45a8a2b9cb3e0b0c1803dbb0758ffac5de2f425b23c28f518faabd9d805342ff"
882
+ checksum = "d466e9454f08e4a911e14806c24e16fba1b4c121d1ea474396f396069cf949d9"
668
883
  dependencies = [
669
884
  "equivalent",
670
- "hashbrown 0.16.1",
885
+ "hashbrown 0.17.1",
671
886
  "serde",
672
887
  "serde_core",
673
888
  ]
@@ -679,14 +894,10 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
679
894
  checksum = "d98f6fed1fde3f8c21bc40a1abb88dd75e67924f9cffc3ef95607bad8017f8e2"
680
895
 
681
896
  [[package]]
682
- name = "iri-string"
683
- version = "0.7.12"
897
+ name = "is_terminal_polyfill"
898
+ version = "1.70.2"
684
899
  source = "registry+https://github.com/rust-lang/crates.io-index"
685
- checksum = "25e659a4bb38e810ebc252e53b5814ff908a8c58c2a9ce2fae1bbec24cbf4e20"
686
- dependencies = [
687
- "memchr",
688
- "serde",
689
- ]
900
+ checksum = "a6cb138bb79a146c1bd460005623e142ef0181e3d0219cb493e02f7d08a35695"
690
901
 
691
902
  [[package]]
692
903
  name = "itoa"
@@ -696,27 +907,32 @@ checksum = "8f42a60cbdf9a97f5d2305f08a87dc4e09308d1276d28c869c684d7777685682"
696
907
 
697
908
  [[package]]
698
909
  name = "jni"
699
- version = "0.21.1"
910
+ version = "0.22.4"
700
911
  source = "registry+https://github.com/rust-lang/crates.io-index"
701
- checksum = "1a87aa2bb7d2af34197c04845522473242e1aa17c12f4935d5856491a7fb8c97"
912
+ checksum = "5efd9a482cf3a427f00d6b35f14332adc7902ce91efb778580e180ff90fa3498"
702
913
  dependencies = [
703
- "cesu8",
704
914
  "cfg-if",
705
915
  "combine",
706
- "jni-sys 0.3.1",
916
+ "jni-macros",
917
+ "jni-sys",
707
918
  "log",
708
- "thiserror 1.0.69",
919
+ "simd_cesu8",
920
+ "thiserror",
709
921
  "walkdir",
710
- "windows-sys 0.45.0",
922
+ "windows-link",
711
923
  ]
712
924
 
713
925
  [[package]]
714
- name = "jni-sys"
715
- version = "0.3.1"
926
+ name = "jni-macros"
927
+ version = "0.22.4"
716
928
  source = "registry+https://github.com/rust-lang/crates.io-index"
717
- checksum = "41a652e1f9b6e0275df1f15b32661cf0d4b78d4d87ddec5e0c3c20f097433258"
929
+ checksum = "a00109accc170f0bdb141fed3e393c565b6f5e072365c3bd58f5b062591560a3"
718
930
  dependencies = [
719
- "jni-sys 0.4.1",
931
+ "proc-macro2",
932
+ "quote",
933
+ "rustc_version",
934
+ "simd_cesu8",
935
+ "syn",
720
936
  ]
721
937
 
722
938
  [[package]]
@@ -740,9 +956,9 @@ dependencies = [
740
956
 
741
957
  [[package]]
742
958
  name = "js-sys"
743
- version = "0.3.94"
959
+ version = "0.3.99"
744
960
  source = "registry+https://github.com/rust-lang/crates.io-index"
745
- checksum = "2e04e2ef80ce82e13552136fabeef8a5ed1f985a96805761cbb9a2c34e7664d9"
961
+ checksum = "142bc4740e452c1e57ade0cbc129f139c9093e354346f0872ef985f4f5cf5f11"
746
962
  dependencies = [
747
963
  "cfg-if",
748
964
  "futures-util",
@@ -750,6 +966,12 @@ dependencies = [
750
966
  "wasm-bindgen",
751
967
  ]
752
968
 
969
+ [[package]]
970
+ name = "lazy_static"
971
+ version = "1.5.0"
972
+ source = "registry+https://github.com/rust-lang/crates.io-index"
973
+ checksum = "bbd2bcb4c963f2ddae06a2efc7e9f3591312473c50c6685e1f298068316e66fe"
974
+
753
975
  [[package]]
754
976
  name = "leb128fmt"
755
977
  version = "0.1.0"
@@ -758,9 +980,9 @@ checksum = "09edd9e8b54e49e587e4f6295a7d29c3ea94d469cb40ab8ca70b288248a81db2"
758
980
 
759
981
  [[package]]
760
982
  name = "libc"
761
- version = "0.2.184"
983
+ version = "0.2.186"
762
984
  source = "registry+https://github.com/rust-lang/crates.io-index"
763
- checksum = "48f5d2a454e16a5ea0f4ced81bd44e4cfc7bd3a507b61887c99fd3538b28e4af"
985
+ checksum = "68ab91017fe16c622486840e4c83c9a37afeff978bd239b5293d61ece587de66"
764
986
 
765
987
  [[package]]
766
988
  name = "linux-raw-sys"
@@ -789,6 +1011,15 @@ version = "0.4.29"
789
1011
  source = "registry+https://github.com/rust-lang/crates.io-index"
790
1012
  checksum = "5e5032e24019045c762d3c0f28f5b6b8bbf38563a65908389bf7978758920897"
791
1013
 
1014
+ [[package]]
1015
+ name = "matchers"
1016
+ version = "0.2.0"
1017
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1018
+ checksum = "d1525a2a28c7f4fa0fc98bb91ae755d1e2d1505079e05539e35bc876b5d65ae9"
1019
+ dependencies = [
1020
+ "regex-automata",
1021
+ ]
1022
+
792
1023
  [[package]]
793
1024
  name = "memchr"
794
1025
  version = "2.8.0"
@@ -806,12 +1037,36 @@ dependencies = [
806
1037
  "windows-sys 0.61.2",
807
1038
  ]
808
1039
 
1040
+ [[package]]
1041
+ name = "nu-ansi-term"
1042
+ version = "0.50.3"
1043
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1044
+ checksum = "7957b9740744892f114936ab4a57b3f487491bbeafaf8083688b16841a4240e5"
1045
+ dependencies = [
1046
+ "windows-sys 0.61.2",
1047
+ ]
1048
+
1049
+ [[package]]
1050
+ name = "num-traits"
1051
+ version = "0.2.19"
1052
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1053
+ checksum = "071dfc062690e90b734c0b2273ce72ad0ffa95f0c74596bc250dcfd960262841"
1054
+ dependencies = [
1055
+ "autocfg",
1056
+ ]
1057
+
809
1058
  [[package]]
810
1059
  name = "once_cell"
811
1060
  version = "1.21.4"
812
1061
  source = "registry+https://github.com/rust-lang/crates.io-index"
813
1062
  checksum = "9f7c3e4beb33f85d45ae3e3a1792185706c8e16d043238c593331cc7cd313b50"
814
1063
 
1064
+ [[package]]
1065
+ name = "once_cell_polyfill"
1066
+ version = "1.70.2"
1067
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1068
+ checksum = "384b8ab6d37215f3c5301a95a4accb5d64aa607f1fcb26a11b5303878451b4fe"
1069
+
815
1070
  [[package]]
816
1071
  name = "openssl-probe"
817
1072
  version = "0.2.1"
@@ -841,6 +1096,12 @@ dependencies = [
841
1096
  "windows-link",
842
1097
  ]
843
1098
 
1099
+ [[package]]
1100
+ name = "pastey"
1101
+ version = "0.2.3"
1102
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1103
+ checksum = "2ee67f1008b1ba2321834326597b8e186293b049a023cdef258527550b9935b4"
1104
+
844
1105
  [[package]]
845
1106
  name = "percent-encoding"
846
1107
  version = "2.3.2"
@@ -1001,9 +1262,9 @@ checksum = "f8dcc9c7d52a811697d2151c701e0d08956f92b0e24136cf4cf27b57a6a0d9bf"
1001
1262
 
1002
1263
  [[package]]
1003
1264
  name = "rand"
1004
- version = "0.9.2"
1265
+ version = "0.9.4"
1005
1266
  source = "registry+https://github.com/rust-lang/crates.io-index"
1006
- checksum = "6db2770f06117d490610c7488547d543617b21bfa07796d7a12f6f1bd53850d1"
1267
+ checksum = "44c5af06bb1b7d3216d91932aed5265164bf384dc89cd6ba05cf59a35f5f76ea"
1007
1268
  dependencies = [
1008
1269
  "rand_chacha",
1009
1270
  "rand_core",
@@ -1037,6 +1298,26 @@ dependencies = [
1037
1298
  "bitflags",
1038
1299
  ]
1039
1300
 
1301
+ [[package]]
1302
+ name = "ref-cast"
1303
+ version = "1.0.25"
1304
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1305
+ checksum = "f354300ae66f76f1c85c5f84693f0ce81d747e2c3f21a45fef496d89c960bf7d"
1306
+ dependencies = [
1307
+ "ref-cast-impl",
1308
+ ]
1309
+
1310
+ [[package]]
1311
+ name = "ref-cast-impl"
1312
+ version = "1.0.25"
1313
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1314
+ checksum = "b7186006dcb21920990093f30e3dea63b7d6e977bf1256be20c3563a5db070da"
1315
+ dependencies = [
1316
+ "proc-macro2",
1317
+ "quote",
1318
+ "syn",
1319
+ ]
1320
+
1040
1321
  [[package]]
1041
1322
  name = "regex"
1042
1323
  version = "1.12.3"
@@ -1068,9 +1349,9 @@ checksum = "dc897dd8d9e8bd1ed8cdad82b5966c3e0ecae09fb1907d58efaa013543185d0a"
1068
1349
 
1069
1350
  [[package]]
1070
1351
  name = "reqwest"
1071
- version = "0.13.2"
1352
+ version = "0.13.3"
1072
1353
  source = "registry+https://github.com/rust-lang/crates.io-index"
1073
- checksum = "ab3f43e3283ab1488b624b44b0e988d0acea0b3214e694730a055cb6b2efa801"
1354
+ checksum = "62e0021ea2c22aed41653bc7e1419abb2c97e038ff2c33d0e1309e49a97deec0"
1074
1355
  dependencies = [
1075
1356
  "base64",
1076
1357
  "bytes",
@@ -1116,6 +1397,50 @@ dependencies = [
1116
1397
  "windows-sys 0.52.0",
1117
1398
  ]
1118
1399
 
1400
+ [[package]]
1401
+ name = "rmcp"
1402
+ version = "1.7.0"
1403
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1404
+ checksum = "0810a9f717d9828f475fe1f629f4c305c8464b7f496c3a854b58d29e65f4058e"
1405
+ dependencies = [
1406
+ "async-trait",
1407
+ "base64",
1408
+ "chrono",
1409
+ "futures",
1410
+ "pastey",
1411
+ "pin-project-lite",
1412
+ "rmcp-macros",
1413
+ "schemars",
1414
+ "serde",
1415
+ "serde_json",
1416
+ "thiserror",
1417
+ "tokio",
1418
+ "tokio-util",
1419
+ "tracing",
1420
+ ]
1421
+
1422
+ [[package]]
1423
+ name = "rmcp-macros"
1424
+ version = "1.7.0"
1425
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1426
+ checksum = "6aefac48c364756e97f04c0401ba3231e8607882c7c1d92da0437dc16307904d"
1427
+ dependencies = [
1428
+ "darling",
1429
+ "proc-macro2",
1430
+ "quote",
1431
+ "serde_json",
1432
+ "syn",
1433
+ ]
1434
+
1435
+ [[package]]
1436
+ name = "rustc_version"
1437
+ version = "0.4.1"
1438
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1439
+ checksum = "cfcb3a22ef46e85b45de6ee7e79d063319ebb6594faafcf1c225ea92ab6e9b92"
1440
+ dependencies = [
1441
+ "semver",
1442
+ ]
1443
+
1119
1444
  [[package]]
1120
1445
  name = "rustix"
1121
1446
  version = "1.1.4"
@@ -1131,9 +1456,9 @@ dependencies = [
1131
1456
 
1132
1457
  [[package]]
1133
1458
  name = "rustls"
1134
- version = "0.23.37"
1459
+ version = "0.23.40"
1135
1460
  source = "registry+https://github.com/rust-lang/crates.io-index"
1136
- checksum = "758025cb5fccfd3bc2fd74708fd4682be41d99e5dff73c377c0646c6012c73a4"
1461
+ checksum = "ef86cd5876211988985292b91c96a8f2d298df24e75989a43a3c73f2d4d8168b"
1137
1462
  dependencies = [
1138
1463
  "once_cell",
1139
1464
  "ring",
@@ -1157,18 +1482,18 @@ dependencies = [
1157
1482
 
1158
1483
  [[package]]
1159
1484
  name = "rustls-pki-types"
1160
- version = "1.14.0"
1485
+ version = "1.14.1"
1161
1486
  source = "registry+https://github.com/rust-lang/crates.io-index"
1162
- checksum = "be040f8b0a225e40375822a563fa9524378b9d63112f53e19ffff34df5d33fdd"
1487
+ checksum = "30a7197ae7eb376e574fe940d068c30fe0462554a3ddbe4eca7838e049c937a9"
1163
1488
  dependencies = [
1164
1489
  "zeroize",
1165
1490
  ]
1166
1491
 
1167
1492
  [[package]]
1168
1493
  name = "rustls-platform-verifier"
1169
- version = "0.6.2"
1494
+ version = "0.7.0"
1170
1495
  source = "registry+https://github.com/rust-lang/crates.io-index"
1171
- checksum = "1d99feebc72bae7ab76ba994bb5e121b8d83d910ca40b36e0921f53becc41784"
1496
+ checksum = "26d1e2536ce4f35f4846aa13bff16bd0ff40157cdb14cc056c7b14ba41233ba0"
1172
1497
  dependencies = [
1173
1498
  "core-foundation",
1174
1499
  "core-foundation-sys",
@@ -1193,9 +1518,9 @@ checksum = "f87165f0995f63a9fbeea62b64d10b4d9d8e78ec6d7d51fb2125fda7bb36788f"
1193
1518
 
1194
1519
  [[package]]
1195
1520
  name = "rustls-webpki"
1196
- version = "0.103.10"
1521
+ version = "0.103.13"
1197
1522
  source = "registry+https://github.com/rust-lang/crates.io-index"
1198
- checksum = "df33b2b81ac578cabaf06b89b0631153a3f416b0a886e8a7a1707fb51abbd1ef"
1523
+ checksum = "61c429a8649f110dddef65e2a5ad240f747e85f7758a6bccc7e5777bd33f756e"
1199
1524
  dependencies = [
1200
1525
  "ring",
1201
1526
  "rustls-pki-types",
@@ -1226,6 +1551,32 @@ dependencies = [
1226
1551
  "windows-sys 0.61.2",
1227
1552
  ]
1228
1553
 
1554
+ [[package]]
1555
+ name = "schemars"
1556
+ version = "1.2.1"
1557
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1558
+ checksum = "a2b42f36aa1cd011945615b92222f6bf73c599a102a300334cd7f8dbeec726cc"
1559
+ dependencies = [
1560
+ "chrono",
1561
+ "dyn-clone",
1562
+ "ref-cast",
1563
+ "schemars_derive",
1564
+ "serde",
1565
+ "serde_json",
1566
+ ]
1567
+
1568
+ [[package]]
1569
+ name = "schemars_derive"
1570
+ version = "1.2.1"
1571
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1572
+ checksum = "7d115b50f4aaeea07e79c1912f645c7513d81715d0420f8bc77a18c6260b307f"
1573
+ dependencies = [
1574
+ "proc-macro2",
1575
+ "quote",
1576
+ "serde_derive_internals",
1577
+ "syn",
1578
+ ]
1579
+
1229
1580
  [[package]]
1230
1581
  name = "scopeguard"
1231
1582
  version = "1.2.0"
@@ -1291,11 +1642,22 @@ dependencies = [
1291
1642
  "syn",
1292
1643
  ]
1293
1644
 
1645
+ [[package]]
1646
+ name = "serde_derive_internals"
1647
+ version = "0.29.1"
1648
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1649
+ checksum = "18d26a20a969b9e3fdf2fc2d9f21eda6c40e2de84c9408bb5d3b05d499aae711"
1650
+ dependencies = [
1651
+ "proc-macro2",
1652
+ "quote",
1653
+ "syn",
1654
+ ]
1655
+
1294
1656
  [[package]]
1295
1657
  name = "serde_json"
1296
- version = "1.0.149"
1658
+ version = "1.0.150"
1297
1659
  source = "registry+https://github.com/rust-lang/crates.io-index"
1298
- checksum = "83fc039473c5595ace860d8c4fafa220ff474b3fc6bfdb4293327f1a37e94d86"
1660
+ checksum = "e8014e44b4736ed0538adeecded0fce2a272f22dc9578a7eb6b2d9993c74cfb9"
1299
1661
  dependencies = [
1300
1662
  "itoa",
1301
1663
  "memchr",
@@ -1315,6 +1677,15 @@ dependencies = [
1315
1677
  "digest",
1316
1678
  ]
1317
1679
 
1680
+ [[package]]
1681
+ name = "sharded-slab"
1682
+ version = "0.1.7"
1683
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1684
+ checksum = "f40ca3c46823713e0d4209592e8d6e826aa57e928f09752619fc696c499637f6"
1685
+ dependencies = [
1686
+ "lazy_static",
1687
+ ]
1688
+
1318
1689
  [[package]]
1319
1690
  name = "shlex"
1320
1691
  version = "1.3.0"
@@ -1331,6 +1702,22 @@ dependencies = [
1331
1702
  "libc",
1332
1703
  ]
1333
1704
 
1705
+ [[package]]
1706
+ name = "simd_cesu8"
1707
+ version = "1.1.1"
1708
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1709
+ checksum = "94f90157bb87cddf702797c5dadfa0be7d266cdf49e22da2fcaa32eff75b2c33"
1710
+ dependencies = [
1711
+ "rustc_version",
1712
+ "simdutf8",
1713
+ ]
1714
+
1715
+ [[package]]
1716
+ name = "simdutf8"
1717
+ version = "0.1.5"
1718
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1719
+ checksum = "e3a9fe34e3e7a50316060351f37187a3f546bce95496156754b601a5fa71b76e"
1720
+
1334
1721
  [[package]]
1335
1722
  name = "slab"
1336
1723
  version = "0.4.12"
@@ -1359,6 +1746,12 @@ version = "1.2.1"
1359
1746
  source = "registry+https://github.com/rust-lang/crates.io-index"
1360
1747
  checksum = "6ce2be8dc25455e1f91df71bfa12ad37d7af1092ae736f3a6cd0e37bc7810596"
1361
1748
 
1749
+ [[package]]
1750
+ name = "strsim"
1751
+ version = "0.11.1"
1752
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1753
+ checksum = "7da8b5736845d9f2fcb837ea5d9e2628564b3b043a70948a3f0b778838c5fb4f"
1754
+
1362
1755
  [[package]]
1363
1756
  name = "subtle"
1364
1757
  version = "2.6.1"
@@ -1415,29 +1808,20 @@ dependencies = [
1415
1808
  "windows-sys 0.61.2",
1416
1809
  ]
1417
1810
 
1418
- [[package]]
1419
- name = "thiserror"
1420
- version = "1.0.69"
1421
- source = "registry+https://github.com/rust-lang/crates.io-index"
1422
- checksum = "b6aaf5339b578ea85b50e080feb250a3e8ae8cfcdff9a461c9ec2904bc923f52"
1423
- dependencies = [
1424
- "thiserror-impl 1.0.69",
1425
- ]
1426
-
1427
1811
  [[package]]
1428
1812
  name = "thiserror"
1429
1813
  version = "2.0.18"
1430
1814
  source = "registry+https://github.com/rust-lang/crates.io-index"
1431
1815
  checksum = "4288b5bcbc7920c07a1149a35cf9590a2aa808e0bc1eafaade0b80947865fbc4"
1432
1816
  dependencies = [
1433
- "thiserror-impl 2.0.18",
1817
+ "thiserror-impl",
1434
1818
  ]
1435
1819
 
1436
1820
  [[package]]
1437
1821
  name = "thiserror-impl"
1438
- version = "1.0.69"
1822
+ version = "2.0.18"
1439
1823
  source = "registry+https://github.com/rust-lang/crates.io-index"
1440
- checksum = "4fee6c4efc90059e10f81e6d42c60a18f76588c3d74cb83a0b242a2b6c7504c1"
1824
+ checksum = "ebc4ee7f67670e9b64d05fa4253e753e016c6c95ff35b89b7941d6b856dec1d5"
1441
1825
  dependencies = [
1442
1826
  "proc-macro2",
1443
1827
  "quote",
@@ -1445,14 +1829,12 @@ dependencies = [
1445
1829
  ]
1446
1830
 
1447
1831
  [[package]]
1448
- name = "thiserror-impl"
1449
- version = "2.0.18"
1832
+ name = "thread_local"
1833
+ version = "1.1.9"
1450
1834
  source = "registry+https://github.com/rust-lang/crates.io-index"
1451
- checksum = "ebc4ee7f67670e9b64d05fa4253e753e016c6c95ff35b89b7941d6b856dec1d5"
1835
+ checksum = "f60246a4944f24f6e018aa17cdeffb7818b76356965d03b07d6a9886e8962185"
1452
1836
  dependencies = [
1453
- "proc-macro2",
1454
- "quote",
1455
- "syn",
1837
+ "cfg-if",
1456
1838
  ]
1457
1839
 
1458
1840
  [[package]]
@@ -1467,9 +1849,9 @@ dependencies = [
1467
1849
 
1468
1850
  [[package]]
1469
1851
  name = "tokio"
1470
- version = "1.51.0"
1852
+ version = "1.52.3"
1471
1853
  source = "registry+https://github.com/rust-lang/crates.io-index"
1472
- checksum = "2bd1c4c0fc4a7ab90fc15ef6daaa3ec3b893f004f915f2392557ed23237820cd"
1854
+ checksum = "8fc7f01b389ac15039e4dc9531aa973a135d7a4135281b12d7c1bc79fd57fffe"
1473
1855
  dependencies = [
1474
1856
  "bytes",
1475
1857
  "libc",
@@ -1503,6 +1885,19 @@ dependencies = [
1503
1885
  "tokio",
1504
1886
  ]
1505
1887
 
1888
+ [[package]]
1889
+ name = "tokio-util"
1890
+ version = "0.7.18"
1891
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1892
+ checksum = "9ae9cec805b01e8fc3fd2fe289f89149a9b66dd16786abd8b19cfa7b48cb0098"
1893
+ dependencies = [
1894
+ "bytes",
1895
+ "futures-core",
1896
+ "futures-sink",
1897
+ "pin-project-lite",
1898
+ "tokio",
1899
+ ]
1900
+
1506
1901
  [[package]]
1507
1902
  name = "tower"
1508
1903
  version = "0.5.3"
@@ -1520,20 +1915,20 @@ dependencies = [
1520
1915
 
1521
1916
  [[package]]
1522
1917
  name = "tower-http"
1523
- version = "0.6.8"
1918
+ version = "0.6.11"
1524
1919
  source = "registry+https://github.com/rust-lang/crates.io-index"
1525
- checksum = "d4e6559d53cc268e5031cd8429d05415bc4cb4aefc4aa5d6cc35fbf5b924a1f8"
1920
+ checksum = "4cfcf7e2740e6fc6d4d688b4ef00650406bb94adf4731e43c096c3a19fe40840"
1526
1921
  dependencies = [
1527
1922
  "bitflags",
1528
1923
  "bytes",
1529
1924
  "futures-util",
1530
1925
  "http",
1531
1926
  "http-body",
1532
- "iri-string",
1533
1927
  "pin-project-lite",
1534
1928
  "tower",
1535
1929
  "tower-layer",
1536
1930
  "tower-service",
1931
+ "url",
1537
1932
  ]
1538
1933
 
1539
1934
  [[package]]
@@ -1577,6 +1972,36 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
1577
1972
  checksum = "db97caf9d906fbde555dd62fa95ddba9eecfd14cb388e4f491a66d74cd5fb79a"
1578
1973
  dependencies = [
1579
1974
  "once_cell",
1975
+ "valuable",
1976
+ ]
1977
+
1978
+ [[package]]
1979
+ name = "tracing-log"
1980
+ version = "0.2.0"
1981
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1982
+ checksum = "ee855f1f400bd0e5c02d150ae5de3840039a3f54b025156404e34c23c03f47c3"
1983
+ dependencies = [
1984
+ "log",
1985
+ "once_cell",
1986
+ "tracing-core",
1987
+ ]
1988
+
1989
+ [[package]]
1990
+ name = "tracing-subscriber"
1991
+ version = "0.3.23"
1992
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1993
+ checksum = "cb7f578e5945fb242538965c2d0b04418d38ec25c79d160cd279bf0731c8d319"
1994
+ dependencies = [
1995
+ "matchers",
1996
+ "nu-ansi-term",
1997
+ "once_cell",
1998
+ "regex-automata",
1999
+ "sharded-slab",
2000
+ "smallvec",
2001
+ "thread_local",
2002
+ "tracing",
2003
+ "tracing-core",
2004
+ "tracing-log",
1580
2005
  ]
1581
2006
 
1582
2007
  [[package]]
@@ -1598,15 +2023,15 @@ dependencies = [
1598
2023
  "log",
1599
2024
  "rand",
1600
2025
  "sha1",
1601
- "thiserror 2.0.18",
2026
+ "thiserror",
1602
2027
  "utf-8",
1603
2028
  ]
1604
2029
 
1605
2030
  [[package]]
1606
2031
  name = "typenum"
1607
- version = "1.19.0"
2032
+ version = "1.20.0"
1608
2033
  source = "registry+https://github.com/rust-lang/crates.io-index"
1609
- checksum = "562d481066bde0658276a35467c4af00bdc6ee726305698a55b86e61d7ad82bb"
2034
+ checksum = "40ce102ab67701b8526c123c1bab5cbe42d7040ccfd0f64af1a385808d2f43de"
1610
2035
 
1611
2036
  [[package]]
1612
2037
  name = "unicode-ident"
@@ -1650,6 +2075,29 @@ version = "1.0.4"
1650
2075
  source = "registry+https://github.com/rust-lang/crates.io-index"
1651
2076
  checksum = "b6c140620e7ffbb22c2dee59cafe6084a59b5ffc27a8859a5f0d494b5d52b6be"
1652
2077
 
2078
+ [[package]]
2079
+ name = "utf8parse"
2080
+ version = "0.2.2"
2081
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2082
+ checksum = "06abde3611657adf66d383f00b093d7faecc7fa57071cce2578660c9f1010821"
2083
+
2084
+ [[package]]
2085
+ name = "uuid"
2086
+ version = "1.23.1"
2087
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2088
+ checksum = "ddd74a9687298c6858e9b88ec8935ec45d22e8fd5e6394fa1bd4e99a87789c76"
2089
+ dependencies = [
2090
+ "getrandom 0.4.2",
2091
+ "js-sys",
2092
+ "wasm-bindgen",
2093
+ ]
2094
+
2095
+ [[package]]
2096
+ name = "valuable"
2097
+ version = "0.1.1"
2098
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2099
+ checksum = "ba73ea9cf16a25df0c8caa16c51acb937d5712a8429db78a3ee29d5dcacd3a65"
2100
+
1653
2101
  [[package]]
1654
2102
  name = "version_check"
1655
2103
  version = "0.9.5"
@@ -1658,7 +2106,7 @@ checksum = "0b928f33d975fc6ad9f86c8f283853ad26bdd5b10b7f1542aa2fa15e2289105a"
1658
2106
 
1659
2107
  [[package]]
1660
2108
  name = "void_crawl"
1661
- version = "0.2.3"
2109
+ version = "0.3.2"
1662
2110
  dependencies = [
1663
2111
  "futures",
1664
2112
  "pyo3",
@@ -1670,19 +2118,44 @@ dependencies = [
1670
2118
 
1671
2119
  [[package]]
1672
2120
  name = "void_crawl_core"
1673
- version = "0.2.3"
2121
+ version = "0.3.2"
1674
2122
  dependencies = [
1675
2123
  "chromiumoxide",
2124
+ "fd-lock",
1676
2125
  "futures",
1677
2126
  "reqwest",
1678
2127
  "rustls",
1679
2128
  "serde",
1680
2129
  "serde_json",
1681
2130
  "tempfile",
1682
- "thiserror 2.0.18",
2131
+ "thiserror",
1683
2132
  "tokio",
1684
2133
  ]
1685
2134
 
2135
+ [[package]]
2136
+ name = "voidcrawl-mcp"
2137
+ version = "0.3.2"
2138
+ dependencies = [
2139
+ "anyhow",
2140
+ "base64",
2141
+ "bytes",
2142
+ "clap",
2143
+ "futures",
2144
+ "http-body-util",
2145
+ "hyper",
2146
+ "hyper-util",
2147
+ "rmcp",
2148
+ "schemars",
2149
+ "serde",
2150
+ "serde_json",
2151
+ "thiserror",
2152
+ "tokio",
2153
+ "tracing",
2154
+ "tracing-subscriber",
2155
+ "uuid",
2156
+ "void_crawl_core",
2157
+ ]
2158
+
1686
2159
  [[package]]
1687
2160
  name = "walkdir"
1688
2161
  version = "2.5.0"
@@ -1710,11 +2183,11 @@ checksum = "ccf3ec651a847eb01de73ccad15eb7d99f80485de043efb2f370cd654f4ea44b"
1710
2183
 
1711
2184
  [[package]]
1712
2185
  name = "wasip2"
1713
- version = "1.0.2+wasi-0.2.9"
2186
+ version = "1.0.3+wasi-0.2.9"
1714
2187
  source = "registry+https://github.com/rust-lang/crates.io-index"
1715
- checksum = "9517f9239f02c069db75e65f174b3da828fe5f5b945c4dd26bd25d89c03ebcf5"
2188
+ checksum = "20064672db26d7cdc89c7798c48a0fdfac8213434a1186e5ef29fd560ae223d6"
1716
2189
  dependencies = [
1717
- "wit-bindgen",
2190
+ "wit-bindgen 0.57.1",
1718
2191
  ]
1719
2192
 
1720
2193
  [[package]]
@@ -1723,14 +2196,14 @@ version = "0.4.0+wasi-0.3.0-rc-2026-01-06"
1723
2196
  source = "registry+https://github.com/rust-lang/crates.io-index"
1724
2197
  checksum = "5428f8bf88ea5ddc08faddef2ac4a67e390b88186c703ce6dbd955e1c145aca5"
1725
2198
  dependencies = [
1726
- "wit-bindgen",
2199
+ "wit-bindgen 0.51.0",
1727
2200
  ]
1728
2201
 
1729
2202
  [[package]]
1730
2203
  name = "wasm-bindgen"
1731
- version = "0.2.117"
2204
+ version = "0.2.122"
1732
2205
  source = "registry+https://github.com/rust-lang/crates.io-index"
1733
- checksum = "0551fc1bb415591e3372d0bc4780db7e587d84e2a7e79da121051c5c4b89d0b0"
2206
+ checksum = "3ed04576f974d2b2fba0f38c51dbc5518011e38c36bf1143164be765528fd409"
1734
2207
  dependencies = [
1735
2208
  "cfg-if",
1736
2209
  "once_cell",
@@ -1741,9 +2214,9 @@ dependencies = [
1741
2214
 
1742
2215
  [[package]]
1743
2216
  name = "wasm-bindgen-futures"
1744
- version = "0.4.67"
2217
+ version = "0.4.72"
1745
2218
  source = "registry+https://github.com/rust-lang/crates.io-index"
1746
- checksum = "03623de6905b7206edd0a75f69f747f134b7f0a2323392d664448bf2d3c5d87e"
2219
+ checksum = "9473dbd2991ae90b6291c3c32c30c6187ac49aa32f9905d1cce280ec1e110b0f"
1747
2220
  dependencies = [
1748
2221
  "js-sys",
1749
2222
  "wasm-bindgen",
@@ -1751,9 +2224,9 @@ dependencies = [
1751
2224
 
1752
2225
  [[package]]
1753
2226
  name = "wasm-bindgen-macro"
1754
- version = "0.2.117"
2227
+ version = "0.2.122"
1755
2228
  source = "registry+https://github.com/rust-lang/crates.io-index"
1756
- checksum = "7fbdf9a35adf44786aecd5ff89b4563a90325f9da0923236f6104e603c7e86be"
2229
+ checksum = "916151b09da36bd82f6615cbf3a419e2f0ba23a03c6160e8e92eb6bd4aa1dec6"
1757
2230
  dependencies = [
1758
2231
  "quote",
1759
2232
  "wasm-bindgen-macro-support",
@@ -1761,9 +2234,9 @@ dependencies = [
1761
2234
 
1762
2235
  [[package]]
1763
2236
  name = "wasm-bindgen-macro-support"
1764
- version = "0.2.117"
2237
+ version = "0.2.122"
1765
2238
  source = "registry+https://github.com/rust-lang/crates.io-index"
1766
- checksum = "dca9693ef2bab6d4e6707234500350d8dad079eb508dca05530c85dc3a529ff2"
2239
+ checksum = "299047362ccbfce148b67ab7e73349f77748e00c8296f9542adfad2ad82c5c5e"
1767
2240
  dependencies = [
1768
2241
  "bumpalo",
1769
2242
  "proc-macro2",
@@ -1774,9 +2247,9 @@ dependencies = [
1774
2247
 
1775
2248
  [[package]]
1776
2249
  name = "wasm-bindgen-shared"
1777
- version = "0.2.117"
2250
+ version = "0.2.122"
1778
2251
  source = "registry+https://github.com/rust-lang/crates.io-index"
1779
- checksum = "39129a682a6d2d841b6c429d0c51e5cb0ed1a03829d8b3d1e69a011e62cb3d3b"
2252
+ checksum = "9a929b2c61f11ba3e9bc35b50c1f25cb38e0e892c0c231ae2b8cf78d5dad4437"
1780
2253
  dependencies = [
1781
2254
  "unicode-ident",
1782
2255
  ]
@@ -1817,9 +2290,9 @@ dependencies = [
1817
2290
 
1818
2291
  [[package]]
1819
2292
  name = "web-sys"
1820
- version = "0.3.94"
2293
+ version = "0.3.99"
1821
2294
  source = "registry+https://github.com/rust-lang/crates.io-index"
1822
- checksum = "cd70027e39b12f0849461e08ffc50b9cd7688d942c1c8e3c7b22273236b4dd0a"
2295
+ checksum = "6d621441cfc37b84979402712047321980c178f299193a3589d05b99e8763436"
1823
2296
  dependencies = [
1824
2297
  "js-sys",
1825
2298
  "wasm-bindgen",
@@ -1827,9 +2300,9 @@ dependencies = [
1827
2300
 
1828
2301
  [[package]]
1829
2302
  name = "webpki-root-certs"
1830
- version = "1.0.6"
2303
+ version = "1.0.7"
1831
2304
  source = "registry+https://github.com/rust-lang/crates.io-index"
1832
- checksum = "804f18a4ac2676ffb4e8b5b5fa9ae38af06df08162314f96a68d2a363e21a8ca"
2305
+ checksum = "f31141ce3fc3e300ae89b78c0dd67f9708061d1d2eda54b8209346fd6be9a92c"
1833
2306
  dependencies = [
1834
2307
  "rustls-pki-types",
1835
2308
  ]
@@ -1852,6 +2325,41 @@ dependencies = [
1852
2325
  "windows-sys 0.61.2",
1853
2326
  ]
1854
2327
 
2328
+ [[package]]
2329
+ name = "windows-core"
2330
+ version = "0.62.2"
2331
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2332
+ checksum = "b8e83a14d34d0623b51dce9581199302a221863196a1dde71a7663a4c2be9deb"
2333
+ dependencies = [
2334
+ "windows-implement",
2335
+ "windows-interface",
2336
+ "windows-link",
2337
+ "windows-result",
2338
+ "windows-strings",
2339
+ ]
2340
+
2341
+ [[package]]
2342
+ name = "windows-implement"
2343
+ version = "0.60.2"
2344
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2345
+ checksum = "053e2e040ab57b9dc951b72c264860db7eb3b0200ba345b4e4c3b14f67855ddf"
2346
+ dependencies = [
2347
+ "proc-macro2",
2348
+ "quote",
2349
+ "syn",
2350
+ ]
2351
+
2352
+ [[package]]
2353
+ name = "windows-interface"
2354
+ version = "0.59.3"
2355
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2356
+ checksum = "3f316c4a2570ba26bbec722032c4099d8c8bc095efccdc15688708623367e358"
2357
+ dependencies = [
2358
+ "proc-macro2",
2359
+ "quote",
2360
+ "syn",
2361
+ ]
2362
+
1855
2363
  [[package]]
1856
2364
  name = "windows-link"
1857
2365
  version = "0.2.1"
@@ -1889,20 +2397,20 @@ dependencies = [
1889
2397
 
1890
2398
  [[package]]
1891
2399
  name = "windows-sys"
1892
- version = "0.45.0"
2400
+ version = "0.52.0"
1893
2401
  source = "registry+https://github.com/rust-lang/crates.io-index"
1894
- checksum = "75283be5efb2831d37ea142365f009c02ec203cd29a3ebecbc093d52315b66d0"
2402
+ checksum = "282be5f36a8ce781fad8c8ae18fa3f9beff57ec1b52cb3de0789201425d9a33d"
1895
2403
  dependencies = [
1896
- "windows-targets 0.42.2",
2404
+ "windows-targets",
1897
2405
  ]
1898
2406
 
1899
2407
  [[package]]
1900
2408
  name = "windows-sys"
1901
- version = "0.52.0"
2409
+ version = "0.59.0"
1902
2410
  source = "registry+https://github.com/rust-lang/crates.io-index"
1903
- checksum = "282be5f36a8ce781fad8c8ae18fa3f9beff57ec1b52cb3de0789201425d9a33d"
2411
+ checksum = "1e38bc4d79ed67fd075bcc251a1c39b32a1776bbe92e5bef1f0bf1f8c531853b"
1904
2412
  dependencies = [
1905
- "windows-targets 0.52.6",
2413
+ "windows-targets",
1906
2414
  ]
1907
2415
 
1908
2416
  [[package]]
@@ -1914,67 +2422,34 @@ dependencies = [
1914
2422
  "windows-link",
1915
2423
  ]
1916
2424
 
1917
- [[package]]
1918
- name = "windows-targets"
1919
- version = "0.42.2"
1920
- source = "registry+https://github.com/rust-lang/crates.io-index"
1921
- checksum = "8e5180c00cd44c9b1c88adb3693291f1cd93605ded80c250a75d472756b4d071"
1922
- dependencies = [
1923
- "windows_aarch64_gnullvm 0.42.2",
1924
- "windows_aarch64_msvc 0.42.2",
1925
- "windows_i686_gnu 0.42.2",
1926
- "windows_i686_msvc 0.42.2",
1927
- "windows_x86_64_gnu 0.42.2",
1928
- "windows_x86_64_gnullvm 0.42.2",
1929
- "windows_x86_64_msvc 0.42.2",
1930
- ]
1931
-
1932
2425
  [[package]]
1933
2426
  name = "windows-targets"
1934
2427
  version = "0.52.6"
1935
2428
  source = "registry+https://github.com/rust-lang/crates.io-index"
1936
2429
  checksum = "9b724f72796e036ab90c1021d4780d4d3d648aca59e491e6b98e725b84e99973"
1937
2430
  dependencies = [
1938
- "windows_aarch64_gnullvm 0.52.6",
1939
- "windows_aarch64_msvc 0.52.6",
1940
- "windows_i686_gnu 0.52.6",
2431
+ "windows_aarch64_gnullvm",
2432
+ "windows_aarch64_msvc",
2433
+ "windows_i686_gnu",
1941
2434
  "windows_i686_gnullvm",
1942
- "windows_i686_msvc 0.52.6",
1943
- "windows_x86_64_gnu 0.52.6",
1944
- "windows_x86_64_gnullvm 0.52.6",
1945
- "windows_x86_64_msvc 0.52.6",
2435
+ "windows_i686_msvc",
2436
+ "windows_x86_64_gnu",
2437
+ "windows_x86_64_gnullvm",
2438
+ "windows_x86_64_msvc",
1946
2439
  ]
1947
2440
 
1948
- [[package]]
1949
- name = "windows_aarch64_gnullvm"
1950
- version = "0.42.2"
1951
- source = "registry+https://github.com/rust-lang/crates.io-index"
1952
- checksum = "597a5118570b68bc08d8d59125332c54f1ba9d9adeedeef5b99b02ba2b0698f8"
1953
-
1954
2441
  [[package]]
1955
2442
  name = "windows_aarch64_gnullvm"
1956
2443
  version = "0.52.6"
1957
2444
  source = "registry+https://github.com/rust-lang/crates.io-index"
1958
2445
  checksum = "32a4622180e7a0ec044bb555404c800bc9fd9ec262ec147edd5989ccd0c02cd3"
1959
2446
 
1960
- [[package]]
1961
- name = "windows_aarch64_msvc"
1962
- version = "0.42.2"
1963
- source = "registry+https://github.com/rust-lang/crates.io-index"
1964
- checksum = "e08e8864a60f06ef0d0ff4ba04124db8b0fb3be5776a5cd47641e942e58c4d43"
1965
-
1966
2447
  [[package]]
1967
2448
  name = "windows_aarch64_msvc"
1968
2449
  version = "0.52.6"
1969
2450
  source = "registry+https://github.com/rust-lang/crates.io-index"
1970
2451
  checksum = "09ec2a7bb152e2252b53fa7803150007879548bc709c039df7627cabbd05d469"
1971
2452
 
1972
- [[package]]
1973
- name = "windows_i686_gnu"
1974
- version = "0.42.2"
1975
- source = "registry+https://github.com/rust-lang/crates.io-index"
1976
- checksum = "c61d927d8da41da96a81f029489353e68739737d3beca43145c8afec9a31a84f"
1977
-
1978
2453
  [[package]]
1979
2454
  name = "windows_i686_gnu"
1980
2455
  version = "0.52.6"
@@ -1987,48 +2462,24 @@ version = "0.52.6"
1987
2462
  source = "registry+https://github.com/rust-lang/crates.io-index"
1988
2463
  checksum = "0eee52d38c090b3caa76c563b86c3a4bd71ef1a819287c19d586d7334ae8ed66"
1989
2464
 
1990
- [[package]]
1991
- name = "windows_i686_msvc"
1992
- version = "0.42.2"
1993
- source = "registry+https://github.com/rust-lang/crates.io-index"
1994
- checksum = "44d840b6ec649f480a41c8d80f9c65108b92d89345dd94027bfe06ac444d1060"
1995
-
1996
2465
  [[package]]
1997
2466
  name = "windows_i686_msvc"
1998
2467
  version = "0.52.6"
1999
2468
  source = "registry+https://github.com/rust-lang/crates.io-index"
2000
2469
  checksum = "240948bc05c5e7c6dabba28bf89d89ffce3e303022809e73deaefe4f6ec56c66"
2001
2470
 
2002
- [[package]]
2003
- name = "windows_x86_64_gnu"
2004
- version = "0.42.2"
2005
- source = "registry+https://github.com/rust-lang/crates.io-index"
2006
- checksum = "8de912b8b8feb55c064867cf047dda097f92d51efad5b491dfb98f6bbb70cb36"
2007
-
2008
2471
  [[package]]
2009
2472
  name = "windows_x86_64_gnu"
2010
2473
  version = "0.52.6"
2011
2474
  source = "registry+https://github.com/rust-lang/crates.io-index"
2012
2475
  checksum = "147a5c80aabfbf0c7d901cb5895d1de30ef2907eb21fbbab29ca94c5b08b1a78"
2013
2476
 
2014
- [[package]]
2015
- name = "windows_x86_64_gnullvm"
2016
- version = "0.42.2"
2017
- source = "registry+https://github.com/rust-lang/crates.io-index"
2018
- checksum = "26d41b46a36d453748aedef1486d5c7a85db22e56aff34643984ea85514e94a3"
2019
-
2020
2477
  [[package]]
2021
2478
  name = "windows_x86_64_gnullvm"
2022
2479
  version = "0.52.6"
2023
2480
  source = "registry+https://github.com/rust-lang/crates.io-index"
2024
2481
  checksum = "24d5b23dc417412679681396f2b49f3de8c1473deb516bd34410872eff51ed0d"
2025
2482
 
2026
- [[package]]
2027
- name = "windows_x86_64_msvc"
2028
- version = "0.42.2"
2029
- source = "registry+https://github.com/rust-lang/crates.io-index"
2030
- checksum = "9aec5da331524158c6d1a4ac0ab1541149c0b9505fde06423b02f5ef0106b9f0"
2031
-
2032
2483
  [[package]]
2033
2484
  name = "windows_x86_64_msvc"
2034
2485
  version = "0.52.6"
@@ -2044,6 +2495,12 @@ dependencies = [
2044
2495
  "wit-bindgen-rust-macro",
2045
2496
  ]
2046
2497
 
2498
+ [[package]]
2499
+ name = "wit-bindgen"
2500
+ version = "0.57.1"
2501
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2502
+ checksum = "1ebf944e87a7c253233ad6766e082e3cd714b5d03812acc24c318f549614536e"
2503
+
2047
2504
  [[package]]
2048
2505
  name = "wit-bindgen-core"
2049
2506
  version = "0.51.0"
@@ -2174,9 +2631,9 @@ dependencies = [
2174
2631
 
2175
2632
  [[package]]
2176
2633
  name = "zerofrom"
2177
- version = "0.1.7"
2634
+ version = "0.1.8"
2178
2635
  source = "registry+https://github.com/rust-lang/crates.io-index"
2179
- checksum = "69faa1f2a1ea75661980b013019ed6687ed0e83d069bc1114e2cc74c6c04c4df"
2636
+ checksum = "0ec05a11813ea801ff6d75110ad09cd0824ddba17dfe17128ea0d5f68e6c5272"
2180
2637
  dependencies = [
2181
2638
  "zerofrom-derive",
2182
2639
  ]