voidcrawl 0.3.2__tar.gz → 0.3.4__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 (74) hide show
  1. {voidcrawl-0.3.2 → voidcrawl-0.3.4}/Cargo.lock +1104 -53
  2. {voidcrawl-0.3.2 → voidcrawl-0.3.4}/PKG-INFO +3 -2
  3. {voidcrawl-0.3.2 → voidcrawl-0.3.4}/README.md +1 -0
  4. voidcrawl-0.3.4/crates/core/CORPUS.md +54 -0
  5. {voidcrawl-0.3.2 → voidcrawl-0.3.4}/crates/core/Cargo.toml +11 -1
  6. {voidcrawl-0.3.2 → voidcrawl-0.3.4}/crates/core/README.md +1 -0
  7. voidcrawl-0.3.4/crates/core/examples/download_and_scan.rs +65 -0
  8. voidcrawl-0.3.4/crates/core/examples/download_via_action.rs +75 -0
  9. voidcrawl-0.3.4/crates/core/src/antibot.rs +439 -0
  10. {voidcrawl-0.3.2 → voidcrawl-0.3.4}/crates/core/src/error.rs +10 -0
  11. {voidcrawl-0.3.2 → voidcrawl-0.3.4}/crates/core/src/lib.rs +7 -1
  12. {voidcrawl-0.3.2 → voidcrawl-0.3.4}/crates/core/src/page.rs +532 -5
  13. {voidcrawl-0.3.2 → voidcrawl-0.3.4}/crates/core/src/pool.rs +13 -3
  14. voidcrawl-0.3.4/crates/core/src/scanner.rs +173 -0
  15. {voidcrawl-0.3.2 → voidcrawl-0.3.4}/crates/core/src/session.rs +29 -1
  16. voidcrawl-0.3.4/crates/core/tests/antibot_accuracy.rs +221 -0
  17. voidcrawl-0.3.4/crates/core/tests/download.rs +43 -0
  18. voidcrawl-0.3.4/crates/core/tests/scanner.rs +80 -0
  19. {voidcrawl-0.3.2 → voidcrawl-0.3.4}/crates/pyo3_bindings/Cargo.toml +2 -2
  20. {voidcrawl-0.3.2 → voidcrawl-0.3.4}/crates/pyo3_bindings/src/lib.rs +453 -4
  21. {voidcrawl-0.3.2 → voidcrawl-0.3.4}/pyproject.toml +2 -2
  22. {voidcrawl-0.3.2 → voidcrawl-0.3.4}/voidcrawl/__init__.py +22 -6
  23. {voidcrawl-0.3.2 → voidcrawl-0.3.4}/voidcrawl/__init__.pyi +8 -0
  24. voidcrawl-0.3.4/voidcrawl/_downloads.py +90 -0
  25. {voidcrawl-0.3.2 → voidcrawl-0.3.4}/voidcrawl/_ext.pyi +170 -0
  26. {voidcrawl-0.3.2 → voidcrawl-0.3.4}/voidcrawl/actions/_protocol.py +11 -0
  27. {voidcrawl-0.3.2 → voidcrawl-0.3.4}/voidcrawl/actions/_protocol.pyi +3 -0
  28. {voidcrawl-0.3.2 → voidcrawl-0.3.4}/Cargo.toml +0 -0
  29. {voidcrawl-0.3.2 → voidcrawl-0.3.4}/LICENSE.md +0 -0
  30. {voidcrawl-0.3.2 → voidcrawl-0.3.4}/crates/core/src/ax.rs +0 -0
  31. {voidcrawl-0.3.2 → voidcrawl-0.3.4}/crates/core/src/captcha.rs +0 -0
  32. {voidcrawl-0.3.2 → voidcrawl-0.3.4}/crates/core/src/profile.rs +0 -0
  33. {voidcrawl-0.3.2 → voidcrawl-0.3.4}/crates/core/src/stealth.rs +0 -0
  34. {voidcrawl-0.3.2 → voidcrawl-0.3.4}/crates/core/tests/ax_tree.rs +0 -0
  35. {voidcrawl-0.3.2 → voidcrawl-0.3.4}/crates/core/tests/captcha_capture.rs +0 -0
  36. {voidcrawl-0.3.2 → voidcrawl-0.3.4}/crates/core/tests/captcha_runtime_loaded.rs +0 -0
  37. {voidcrawl-0.3.2 → voidcrawl-0.3.4}/crates/core/tests/emulation.rs +0 -0
  38. {voidcrawl-0.3.2 → voidcrawl-0.3.4}/crates/core/tests/integration.rs +0 -0
  39. {voidcrawl-0.3.2 → voidcrawl-0.3.4}/crates/core/tests/profile_lock.rs +0 -0
  40. {voidcrawl-0.3.2 → voidcrawl-0.3.4}/crates/core/tests/stealth_ua.rs +0 -0
  41. {voidcrawl-0.3.2 → voidcrawl-0.3.4}/voidcrawl/actions/__init__.py +0 -0
  42. {voidcrawl-0.3.2 → voidcrawl-0.3.4}/voidcrawl/actions/__init__.pyi +0 -0
  43. {voidcrawl-0.3.2 → voidcrawl-0.3.4}/voidcrawl/actions/_base.py +0 -0
  44. {voidcrawl-0.3.2 → voidcrawl-0.3.4}/voidcrawl/actions/_base.pyi +0 -0
  45. {voidcrawl-0.3.2 → voidcrawl-0.3.4}/voidcrawl/actions/_flow.py +0 -0
  46. {voidcrawl-0.3.2 → voidcrawl-0.3.4}/voidcrawl/actions/_flow.pyi +0 -0
  47. {voidcrawl-0.3.2 → voidcrawl-0.3.4}/voidcrawl/actions/builtin/__init__.py +0 -0
  48. {voidcrawl-0.3.2 → voidcrawl-0.3.4}/voidcrawl/actions/builtin/__init__.pyi +0 -0
  49. {voidcrawl-0.3.2 → voidcrawl-0.3.4}/voidcrawl/actions/builtin/click.py +0 -0
  50. {voidcrawl-0.3.2 → voidcrawl-0.3.4}/voidcrawl/actions/builtin/click.pyi +0 -0
  51. {voidcrawl-0.3.2 → voidcrawl-0.3.4}/voidcrawl/actions/builtin/dom.py +0 -0
  52. {voidcrawl-0.3.2 → voidcrawl-0.3.4}/voidcrawl/actions/builtin/dom.pyi +0 -0
  53. {voidcrawl-0.3.2 → voidcrawl-0.3.4}/voidcrawl/actions/builtin/hover.py +0 -0
  54. {voidcrawl-0.3.2 → voidcrawl-0.3.4}/voidcrawl/actions/builtin/hover.pyi +0 -0
  55. {voidcrawl-0.3.2 → voidcrawl-0.3.4}/voidcrawl/actions/builtin/input.py +0 -0
  56. {voidcrawl-0.3.2 → voidcrawl-0.3.4}/voidcrawl/actions/builtin/input.pyi +0 -0
  57. {voidcrawl-0.3.2 → voidcrawl-0.3.4}/voidcrawl/actions/builtin/network.py +0 -0
  58. {voidcrawl-0.3.2 → voidcrawl-0.3.4}/voidcrawl/actions/builtin/network.pyi +0 -0
  59. {voidcrawl-0.3.2 → voidcrawl-0.3.4}/voidcrawl/actions/builtin/scroll.py +0 -0
  60. {voidcrawl-0.3.2 → voidcrawl-0.3.4}/voidcrawl/actions/builtin/scroll.pyi +0 -0
  61. {voidcrawl-0.3.2 → voidcrawl-0.3.4}/voidcrawl/actions/builtin/wait.py +0 -0
  62. {voidcrawl-0.3.2 → voidcrawl-0.3.4}/voidcrawl/actions/builtin/wait.pyi +0 -0
  63. {voidcrawl-0.3.2 → voidcrawl-0.3.4}/voidcrawl/actions/js/click_at.js +0 -0
  64. {voidcrawl-0.3.2 → voidcrawl-0.3.4}/voidcrawl/actions/js/hover.js +0 -0
  65. {voidcrawl-0.3.2 → voidcrawl-0.3.4}/voidcrawl/actions/js/wait_for_selector.js +0 -0
  66. {voidcrawl-0.3.2 → voidcrawl-0.3.4}/voidcrawl/cli.py +0 -0
  67. {voidcrawl-0.3.2 → voidcrawl-0.3.4}/voidcrawl/debug.py +0 -0
  68. {voidcrawl-0.3.2 → voidcrawl-0.3.4}/voidcrawl/debug.pyi +0 -0
  69. {voidcrawl-0.3.2 → voidcrawl-0.3.4}/voidcrawl/profiles.py +0 -0
  70. {voidcrawl-0.3.2 → voidcrawl-0.3.4}/voidcrawl/py.typed +0 -0
  71. {voidcrawl-0.3.2 → voidcrawl-0.3.4}/voidcrawl/scale.py +0 -0
  72. {voidcrawl-0.3.2 → voidcrawl-0.3.4}/voidcrawl/scale.pyi +0 -0
  73. {voidcrawl-0.3.2 → voidcrawl-0.3.4}/voidcrawl/schema.py +0 -0
  74. {voidcrawl-0.3.2 → voidcrawl-0.3.4}/voidcrawl/schema.pyi +0 -0
@@ -2,6 +2,15 @@
2
2
  # It is not intended for manual editing.
3
3
  version = 4
4
4
 
5
+ [[package]]
6
+ name = "addr2line"
7
+ version = "0.26.1"
8
+ source = "registry+https://github.com/rust-lang/crates.io-index"
9
+ checksum = "59317f77929f0e679d39364702289274de2f0f0b22cbf50b2b8cff2169a0b27a"
10
+ dependencies = [
11
+ "gimli 0.33.0",
12
+ ]
13
+
5
14
  [[package]]
6
15
  name = "aho-corasick"
7
16
  version = "1.1.4"
@@ -11,6 +20,12 @@ dependencies = [
11
20
  "memchr",
12
21
  ]
13
22
 
23
+ [[package]]
24
+ name = "allocator-api2"
25
+ version = "0.2.21"
26
+ source = "registry+https://github.com/rust-lang/crates.io-index"
27
+ checksum = "683d7910e743518b0e34f1186f92494becacb047c7b6bf616c96772180fef923"
28
+
14
29
  [[package]]
15
30
  name = "android_system_properties"
16
31
  version = "0.1.5"
@@ -20,6 +35,17 @@ dependencies = [
20
35
  "libc",
21
36
  ]
22
37
 
38
+ [[package]]
39
+ name = "annotate-snippets"
40
+ version = "0.12.16"
41
+ source = "registry+https://github.com/rust-lang/crates.io-index"
42
+ checksum = "f211a51805bc641f3ad5b7664c77d2547af685cc33b4cd8d31964027a46f13f1"
43
+ dependencies = [
44
+ "anstyle",
45
+ "memchr",
46
+ "unicode-width",
47
+ ]
48
+
23
49
  [[package]]
24
50
  name = "anstream"
25
51
  version = "1.0.0"
@@ -76,6 +102,18 @@ version = "1.0.102"
76
102
  source = "registry+https://github.com/rust-lang/crates.io-index"
77
103
  checksum = "7f202df86484c868dbad7eaa557ef785d5c66295e41b460ef922eca0723b842c"
78
104
 
105
+ [[package]]
106
+ name = "arbitrary"
107
+ version = "1.4.2"
108
+ source = "registry+https://github.com/rust-lang/crates.io-index"
109
+ checksum = "c3d036a3c4ab069c7b410a2ce876bd74808d2d0888a82667669f8e783a898bf1"
110
+
111
+ [[package]]
112
+ name = "ascii_tree"
113
+ version = "0.1.1"
114
+ source = "registry+https://github.com/rust-lang/crates.io-index"
115
+ checksum = "ca6c635b3aa665c649ad1415f1573c85957dfa47690ec27aebe7ec17efe3c643"
116
+
79
117
  [[package]]
80
118
  name = "async-trait"
81
119
  version = "0.1.89"
@@ -122,11 +160,53 @@ version = "0.22.1"
122
160
  source = "registry+https://github.com/rust-lang/crates.io-index"
123
161
  checksum = "72b3254f16251a8381aa12e40e3c4d2f0199f8c6508fbecb9d91f575e0fbb8c6"
124
162
 
163
+ [[package]]
164
+ name = "beef"
165
+ version = "0.5.2"
166
+ source = "registry+https://github.com/rust-lang/crates.io-index"
167
+ checksum = "3a8241f3ebb85c056b509d4327ad0358fbbba6ffb340bf388f26350aeda225b1"
168
+
169
+ [[package]]
170
+ name = "bincode"
171
+ version = "2.0.1"
172
+ source = "registry+https://github.com/rust-lang/crates.io-index"
173
+ checksum = "36eaf5d7b090263e8150820482d5d93cd964a81e4019913c972f4edcc6edb740"
174
+ dependencies = [
175
+ "bincode_derive",
176
+ "serde",
177
+ "unty",
178
+ ]
179
+
180
+ [[package]]
181
+ name = "bincode_derive"
182
+ version = "2.0.1"
183
+ source = "registry+https://github.com/rust-lang/crates.io-index"
184
+ checksum = "bf95709a440f45e986983918d0e8a1f30a9b1df04918fc828670606804ac3c09"
185
+ dependencies = [
186
+ "virtue",
187
+ ]
188
+
125
189
  [[package]]
126
190
  name = "bitflags"
127
- version = "2.11.1"
191
+ version = "2.12.1"
192
+ source = "registry+https://github.com/rust-lang/crates.io-index"
193
+ checksum = "84d7ced0ae9557296835c32bf1b1e02b44c746701f898460fb000d7eaa84f00a"
194
+ dependencies = [
195
+ "serde_core",
196
+ ]
197
+
198
+ [[package]]
199
+ name = "bitvec"
200
+ version = "1.0.1"
128
201
  source = "registry+https://github.com/rust-lang/crates.io-index"
129
- checksum = "c4512299f36f043ab09a583e57bceb5a5aab7a73db1805848e8fef3c9e8c78b3"
202
+ checksum = "1bc2832c24239b0141d5674bb9174f9d68a8b5b3f2753311927c172ca46f7e9c"
203
+ dependencies = [
204
+ "funty",
205
+ "radium",
206
+ "serde",
207
+ "tap",
208
+ "wyz",
209
+ ]
130
210
 
131
211
  [[package]]
132
212
  name = "block-buffer"
@@ -137,11 +217,31 @@ dependencies = [
137
217
  "generic-array",
138
218
  ]
139
219
 
220
+ [[package]]
221
+ name = "bstr"
222
+ version = "1.12.1"
223
+ source = "registry+https://github.com/rust-lang/crates.io-index"
224
+ checksum = "63044e1ae8e69f3b5a92c736ca6269b8d12fa7efe39bf34ddb06d102cf0e2cab"
225
+ dependencies = [
226
+ "memchr",
227
+ "regex-automata",
228
+ "serde",
229
+ ]
230
+
140
231
  [[package]]
141
232
  name = "bumpalo"
142
233
  version = "3.20.3"
143
234
  source = "registry+https://github.com/rust-lang/crates.io-index"
144
235
  checksum = "72f5acc6cb2ba439de613abc23857ec3d78374d8ed5ac84e9d11336e87da8649"
236
+ dependencies = [
237
+ "allocator-api2",
238
+ ]
239
+
240
+ [[package]]
241
+ name = "byteorder"
242
+ version = "1.5.0"
243
+ source = "registry+https://github.com/rust-lang/crates.io-index"
244
+ checksum = "1fd0f2584146f6f2ef48085050886acf353beff7305ebd1ae69500e27c67f64b"
145
245
 
146
246
  [[package]]
147
247
  name = "bytes"
@@ -151,14 +251,25 @@ checksum = "1e748733b7cbc798e1434b6ac524f0c1ff2ab456fe201501e6497c8417a4fc33"
151
251
 
152
252
  [[package]]
153
253
  name = "cc"
154
- version = "1.2.62"
254
+ version = "1.2.63"
155
255
  source = "registry+https://github.com/rust-lang/crates.io-index"
156
- checksum = "a1dce859f0832a7d088c4f1119888ab94ef4b5d6795d1ce05afb7fe159d79f98"
256
+ checksum = "556e016178bb5662a08681bbe0f00f8e17631781a4dfc8c45e466e4b185ec27f"
157
257
  dependencies = [
158
258
  "find-msvc-tools",
159
259
  "shlex",
160
260
  ]
161
261
 
262
+ [[package]]
263
+ name = "cfb"
264
+ version = "0.7.3"
265
+ source = "registry+https://github.com/rust-lang/crates.io-index"
266
+ checksum = "d38f2da7a0a2c4ccf0065be06397cc26a81f4e528be095826eee9d4adbb8c60f"
267
+ dependencies = [
268
+ "byteorder",
269
+ "fnv",
270
+ "uuid",
271
+ ]
272
+
162
273
  [[package]]
163
274
  name = "cfg-if"
164
275
  version = "1.0.4"
@@ -183,7 +294,7 @@ dependencies = [
183
294
  "reqwest",
184
295
  "serde",
185
296
  "serde_json",
186
- "thiserror",
297
+ "thiserror 2.0.18",
187
298
  "tokio",
188
299
  "tracing",
189
300
  "url",
@@ -231,9 +342,9 @@ dependencies = [
231
342
 
232
343
  [[package]]
233
344
  name = "chrono"
234
- version = "0.4.44"
345
+ version = "0.4.45"
235
346
  source = "registry+https://github.com/rust-lang/crates.io-index"
236
- checksum = "c673075a2e0e5f4a1dde27ce9dee1ea4558c7ffe648f576438a20ca1d2acc4b0"
347
+ checksum = "1aa79e62e7697b8e29b513a68abacf485adcd1fe8284a4316c5ae868e6633327"
237
348
  dependencies = [
238
349
  "iana-time-zone",
239
350
  "num-traits",
@@ -281,6 +392,15 @@ version = "1.1.0"
281
392
  source = "registry+https://github.com/rust-lang/crates.io-index"
282
393
  checksum = "c8d4a3bb8b1e0c1050499d1815f5ab16d04f0959b233085fb31653fbfc9d98f9"
283
394
 
395
+ [[package]]
396
+ name = "cobs"
397
+ version = "0.3.0"
398
+ source = "registry+https://github.com/rust-lang/crates.io-index"
399
+ checksum = "0fa961b519f0b462e3a3b4a34b64d119eeaca1d59af726fe450bbba07a9fc0a1"
400
+ dependencies = [
401
+ "thiserror 2.0.18",
402
+ ]
403
+
284
404
  [[package]]
285
405
  name = "colorchoice"
286
406
  version = "1.0.5"
@@ -313,6 +433,12 @@ version = "0.8.7"
313
433
  source = "registry+https://github.com/rust-lang/crates.io-index"
314
434
  checksum = "773648b94d0e5d620f64f280777445740e61fe701025087ec8b57f45c791888b"
315
435
 
436
+ [[package]]
437
+ name = "countme"
438
+ version = "3.0.1"
439
+ source = "registry+https://github.com/rust-lang/crates.io-index"
440
+ checksum = "7704b5fdd17b18ae31c4c1da5a2e0305a2bf17b5249300a9ee9ed7b72114c636"
441
+
316
442
  [[package]]
317
443
  name = "cpufeatures"
318
444
  version = "0.2.17"
@@ -322,6 +448,182 @@ dependencies = [
322
448
  "libc",
323
449
  ]
324
450
 
451
+ [[package]]
452
+ name = "cranelift-assembler-x64"
453
+ version = "0.130.2"
454
+ source = "registry+https://github.com/rust-lang/crates.io-index"
455
+ checksum = "adc822414b18d1f5b1b33ce1441534e311e62fef86ebb5b9d382af857d0272c9"
456
+ dependencies = [
457
+ "cranelift-assembler-x64-meta",
458
+ ]
459
+
460
+ [[package]]
461
+ name = "cranelift-assembler-x64-meta"
462
+ version = "0.130.2"
463
+ source = "registry+https://github.com/rust-lang/crates.io-index"
464
+ checksum = "8c646808b06f4532478d8d6057d74f15c3322f10d995d9486e7dcea405bf521a"
465
+ dependencies = [
466
+ "cranelift-srcgen",
467
+ ]
468
+
469
+ [[package]]
470
+ name = "cranelift-bforest"
471
+ version = "0.130.2"
472
+ source = "registry+https://github.com/rust-lang/crates.io-index"
473
+ checksum = "7b5996f01a686b2349cdb379083ec5ad3e8cb8767fb2d495d3a4f2ee4163a18d"
474
+ dependencies = [
475
+ "cranelift-entity",
476
+ "wasmtime-internal-core",
477
+ ]
478
+
479
+ [[package]]
480
+ name = "cranelift-bitset"
481
+ version = "0.130.2"
482
+ source = "registry+https://github.com/rust-lang/crates.io-index"
483
+ checksum = "523fea83273f6a985520f57788809a4de2165794d9ab00fb1254fceb4f5aa00c"
484
+ dependencies = [
485
+ "serde",
486
+ "serde_derive",
487
+ "wasmtime-internal-core",
488
+ ]
489
+
490
+ [[package]]
491
+ name = "cranelift-codegen"
492
+ version = "0.130.2"
493
+ source = "registry+https://github.com/rust-lang/crates.io-index"
494
+ checksum = "d73d1e372730b5f64ed1a2bd9f01fe4686c8ec14a28034e3084e530c8d951878"
495
+ dependencies = [
496
+ "bumpalo",
497
+ "cranelift-assembler-x64",
498
+ "cranelift-bforest",
499
+ "cranelift-bitset",
500
+ "cranelift-codegen-meta",
501
+ "cranelift-codegen-shared",
502
+ "cranelift-control",
503
+ "cranelift-entity",
504
+ "cranelift-isle",
505
+ "gimli 0.33.0",
506
+ "hashbrown 0.16.1",
507
+ "libm",
508
+ "log",
509
+ "pulley-interpreter",
510
+ "regalloc2",
511
+ "rustc-hash 2.1.2",
512
+ "serde",
513
+ "smallvec",
514
+ "target-lexicon",
515
+ "wasmtime-internal-core",
516
+ ]
517
+
518
+ [[package]]
519
+ name = "cranelift-codegen-meta"
520
+ version = "0.130.2"
521
+ source = "registry+https://github.com/rust-lang/crates.io-index"
522
+ checksum = "b0319c18165e93dc1ebf78946a8da0b1c341c95b4a39729a69574671639bdb5f"
523
+ dependencies = [
524
+ "cranelift-assembler-x64-meta",
525
+ "cranelift-codegen-shared",
526
+ "cranelift-srcgen",
527
+ "heck",
528
+ "pulley-interpreter",
529
+ ]
530
+
531
+ [[package]]
532
+ name = "cranelift-codegen-shared"
533
+ version = "0.130.2"
534
+ source = "registry+https://github.com/rust-lang/crates.io-index"
535
+ checksum = "9195cd8aeecb55e401aa96b2eaa55921636e8246c127ed7908f7ef7e0d40f270"
536
+
537
+ [[package]]
538
+ name = "cranelift-control"
539
+ version = "0.130.2"
540
+ source = "registry+https://github.com/rust-lang/crates.io-index"
541
+ checksum = "8976c2154b74136322befc74222ab5c7249edd7e2604f8cbef2b94975541ffb9"
542
+ dependencies = [
543
+ "arbitrary",
544
+ ]
545
+
546
+ [[package]]
547
+ name = "cranelift-entity"
548
+ version = "0.130.2"
549
+ source = "registry+https://github.com/rust-lang/crates.io-index"
550
+ checksum = "6038b3147c7982f4951150d5f96c7c06c1e7214b99d4b4a98607aadf8ded89d1"
551
+ dependencies = [
552
+ "cranelift-bitset",
553
+ "serde",
554
+ "serde_derive",
555
+ "wasmtime-internal-core",
556
+ ]
557
+
558
+ [[package]]
559
+ name = "cranelift-frontend"
560
+ version = "0.130.2"
561
+ source = "registry+https://github.com/rust-lang/crates.io-index"
562
+ checksum = "4cbd294abe236e23cc3d907b0936226b6a8342db7636daa9c7c72be1e323420e"
563
+ dependencies = [
564
+ "cranelift-codegen",
565
+ "log",
566
+ "smallvec",
567
+ "target-lexicon",
568
+ ]
569
+
570
+ [[package]]
571
+ name = "cranelift-isle"
572
+ version = "0.130.2"
573
+ source = "registry+https://github.com/rust-lang/crates.io-index"
574
+ checksum = "b5a90b6ed3aba84189352a87badeb93b2126d3724225a42dc67fdce53d1b139c"
575
+
576
+ [[package]]
577
+ name = "cranelift-native"
578
+ version = "0.130.2"
579
+ source = "registry+https://github.com/rust-lang/crates.io-index"
580
+ checksum = "c3ec0cc1a54e22925eacf4fc3dc815f907734d3b377899d19d52bec04863e853"
581
+ dependencies = [
582
+ "cranelift-codegen",
583
+ "libc",
584
+ "target-lexicon",
585
+ ]
586
+
587
+ [[package]]
588
+ name = "cranelift-srcgen"
589
+ version = "0.130.2"
590
+ source = "registry+https://github.com/rust-lang/crates.io-index"
591
+ checksum = "948865622f87f30907bb46fbb081b235ae63c1896a99a83c26a003305c1fa82d"
592
+
593
+ [[package]]
594
+ name = "crc32fast"
595
+ version = "1.5.0"
596
+ source = "registry+https://github.com/rust-lang/crates.io-index"
597
+ checksum = "9481c1c90cbf2ac953f07c8d4a58aa3945c425b7185c9154d67a65e4230da511"
598
+ dependencies = [
599
+ "cfg-if",
600
+ ]
601
+
602
+ [[package]]
603
+ name = "crossbeam-deque"
604
+ version = "0.8.6"
605
+ source = "registry+https://github.com/rust-lang/crates.io-index"
606
+ checksum = "9dd111b7b7f7d55b72c0a6ae361660ee5853c9af73f70c3c2ef6858b950e2e51"
607
+ dependencies = [
608
+ "crossbeam-epoch",
609
+ "crossbeam-utils",
610
+ ]
611
+
612
+ [[package]]
613
+ name = "crossbeam-epoch"
614
+ version = "0.9.18"
615
+ source = "registry+https://github.com/rust-lang/crates.io-index"
616
+ checksum = "5b82ac4a3c2ca9c3460964f020e1402edd5753411d7737aa39c3714ad1b5420e"
617
+ dependencies = [
618
+ "crossbeam-utils",
619
+ ]
620
+
621
+ [[package]]
622
+ name = "crossbeam-utils"
623
+ version = "0.8.21"
624
+ source = "registry+https://github.com/rust-lang/crates.io-index"
625
+ checksum = "d0a5c400df2834b80a4c3327b3aad3a4c4cd4de0629063962b03235697506a28"
626
+
325
627
  [[package]]
326
628
  name = "crypto-common"
327
629
  version = "0.1.7"
@@ -332,6 +634,12 @@ dependencies = [
332
634
  "typenum",
333
635
  ]
334
636
 
637
+ [[package]]
638
+ name = "daachorse"
639
+ version = "3.0.1"
640
+ source = "registry+https://github.com/rust-lang/crates.io-index"
641
+ checksum = "d90e4c4a7034cde152cbbac492a8d61c5d85b0fe9972afdf32737ff5fc17c9ff"
642
+
335
643
  [[package]]
336
644
  name = "darling"
337
645
  version = "0.23.0"
@@ -384,9 +692,9 @@ dependencies = [
384
692
 
385
693
  [[package]]
386
694
  name = "displaydoc"
387
- version = "0.2.5"
695
+ version = "0.2.6"
388
696
  source = "registry+https://github.com/rust-lang/crates.io-index"
389
- checksum = "97369cbbc041bc366949bc74d34658d6cda5621039731c6310521892a3a20ae0"
697
+ checksum = "1ac70aa55017e108007fbaf5aa0f54b021c98f92ff8af59d42eda9da96e3dd4f"
390
698
  dependencies = [
391
699
  "proc-macro2",
392
700
  "quote",
@@ -411,6 +719,18 @@ version = "1.16.0"
411
719
  source = "registry+https://github.com/rust-lang/crates.io-index"
412
720
  checksum = "91622ff5e7162018101f2fea40d6ebf4a78bbe5a49736a2020649edf9693679e"
413
721
 
722
+ [[package]]
723
+ name = "embedded-io"
724
+ version = "0.4.0"
725
+ source = "registry+https://github.com/rust-lang/crates.io-index"
726
+ checksum = "ef1a6892d9eef45c8fa6b9e0086428a2cca8491aca8f787c534a3d6d0bcb3ced"
727
+
728
+ [[package]]
729
+ name = "embedded-io"
730
+ version = "0.6.1"
731
+ source = "registry+https://github.com/rust-lang/crates.io-index"
732
+ checksum = "edd0f118536f44f5ccd48bcb8b111bdc3de888b58c74639dfb034a357d0f206d"
733
+
414
734
  [[package]]
415
735
  name = "equivalent"
416
736
  version = "1.0.2"
@@ -427,6 +747,12 @@ dependencies = [
427
747
  "windows-sys 0.61.2",
428
748
  ]
429
749
 
750
+ [[package]]
751
+ name = "fallible-iterator"
752
+ version = "0.3.0"
753
+ source = "registry+https://github.com/rust-lang/crates.io-index"
754
+ checksum = "2acce4a10f12dc2fb14a218589d4f1f62ef011b2d0cc4b3cb1bba8e94da14649"
755
+
430
756
  [[package]]
431
757
  name = "fastrand"
432
758
  version = "2.4.1"
@@ -462,6 +788,12 @@ version = "0.1.5"
462
788
  source = "registry+https://github.com/rust-lang/crates.io-index"
463
789
  checksum = "d9c4f5dac5e15c24eb999c26181a6ca40b39fe946cbe4c263c7209467bc83af2"
464
790
 
791
+ [[package]]
792
+ name = "foldhash"
793
+ version = "0.2.0"
794
+ source = "registry+https://github.com/rust-lang/crates.io-index"
795
+ checksum = "77ce24cb58228fbb8aa041425bb1050850ac19177686ea6e0f41a70416f56fdb"
796
+
465
797
  [[package]]
466
798
  name = "form_urlencoded"
467
799
  version = "1.2.2"
@@ -471,6 +803,12 @@ dependencies = [
471
803
  "percent-encoding",
472
804
  ]
473
805
 
806
+ [[package]]
807
+ name = "funty"
808
+ version = "2.0.0"
809
+ source = "registry+https://github.com/rust-lang/crates.io-index"
810
+ checksum = "e6d5a32815ae3f33302d95fdcb2ce17862f8c65363dcfd29360480ba1001fc9c"
811
+
474
812
  [[package]]
475
813
  name = "futures"
476
814
  version = "0.3.32"
@@ -582,8 +920,10 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
582
920
  checksum = "ff2abc00be7fca6ebc474524697ae276ad847ad0a6b3faa4bcb027e9a4614ad0"
583
921
  dependencies = [
584
922
  "cfg-if",
923
+ "js-sys",
585
924
  "libc",
586
925
  "wasi",
926
+ "wasm-bindgen",
587
927
  ]
588
928
 
589
929
  [[package]]
@@ -611,13 +951,77 @@ dependencies = [
611
951
  "wasip3",
612
952
  ]
613
953
 
954
+ [[package]]
955
+ name = "gimli"
956
+ version = "0.32.3"
957
+ source = "registry+https://github.com/rust-lang/crates.io-index"
958
+ checksum = "e629b9b98ef3dd8afe6ca2bd0f89306cec16d43d907889945bc5d6687f2f13c7"
959
+ dependencies = [
960
+ "fallible-iterator",
961
+ "indexmap",
962
+ "stable_deref_trait",
963
+ ]
964
+
965
+ [[package]]
966
+ name = "gimli"
967
+ version = "0.33.0"
968
+ source = "registry+https://github.com/rust-lang/crates.io-index"
969
+ checksum = "0bf7f043f89559805f8c7cacc432749b2fa0d0a0a9ee46ce47164ed5ba7f126c"
970
+ dependencies = [
971
+ "fnv",
972
+ "hashbrown 0.16.1",
973
+ "indexmap",
974
+ "stable_deref_trait",
975
+ ]
976
+
977
+ [[package]]
978
+ name = "globset"
979
+ version = "0.4.18"
980
+ source = "registry+https://github.com/rust-lang/crates.io-index"
981
+ checksum = "52dfc19153a48bde0cbd630453615c8151bce3a5adfac7a0aebfbf0a1e1f57e3"
982
+ dependencies = [
983
+ "aho-corasick",
984
+ "bstr",
985
+ "log",
986
+ "regex-automata",
987
+ "regex-syntax",
988
+ ]
989
+
990
+ [[package]]
991
+ name = "globwalk"
992
+ version = "0.9.1"
993
+ source = "registry+https://github.com/rust-lang/crates.io-index"
994
+ checksum = "0bf760ebf69878d9fd8f110c89703d90ce35095324d1f1edcb595c63945ee757"
995
+ dependencies = [
996
+ "bitflags",
997
+ "ignore",
998
+ "walkdir",
999
+ ]
1000
+
1001
+ [[package]]
1002
+ name = "hashbrown"
1003
+ version = "0.14.5"
1004
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1005
+ checksum = "e5274423e17b7c9fc20b6e7e208532f9b19825d82dfd615708b70edd83df41f1"
1006
+
614
1007
  [[package]]
615
1008
  name = "hashbrown"
616
1009
  version = "0.15.5"
617
1010
  source = "registry+https://github.com/rust-lang/crates.io-index"
618
1011
  checksum = "9229cfe53dfd69f0609a49f65461bd93001ea1ef889cd5529dd176593f5338a1"
619
1012
  dependencies = [
620
- "foldhash",
1013
+ "foldhash 0.1.5",
1014
+ ]
1015
+
1016
+ [[package]]
1017
+ name = "hashbrown"
1018
+ version = "0.16.1"
1019
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1020
+ checksum = "841d1cc9bed7f9236f321df977030373f4a4163ae1a7dbfe1a51a2c1a51d9100"
1021
+ dependencies = [
1022
+ "foldhash 0.2.0",
1023
+ "serde",
1024
+ "serde_core",
621
1025
  ]
622
1026
 
623
1027
  [[package]]
@@ -632,11 +1036,17 @@ version = "0.5.0"
632
1036
  source = "registry+https://github.com/rust-lang/crates.io-index"
633
1037
  checksum = "2304e00983f87ffb38b55b444b5e3b60a884b5d30c0fca7d82fe33449bbe55ea"
634
1038
 
1039
+ [[package]]
1040
+ name = "hex"
1041
+ version = "0.4.3"
1042
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1043
+ checksum = "7f24254aa9a54b5c858eaee2f5bccdb46aaf0e486a595ed5fd8f86ba55232a70"
1044
+
635
1045
  [[package]]
636
1046
  name = "http"
637
- version = "1.4.0"
1047
+ version = "1.4.1"
638
1048
  source = "registry+https://github.com/rust-lang/crates.io-index"
639
- checksum = "e3ba2a386d7f85a81f119ad7498ebe444d2e22c2af0b86b069416ace48b3311a"
1049
+ checksum = "8be7462df143984c4598a256ef469b251d7d7f9e271135073e78fc535414f3d0"
640
1050
  dependencies = [
641
1051
  "bytes",
642
1052
  "itoa",
@@ -679,9 +1089,9 @@ checksum = "df3b46402a9d5adb4c86a0cf463f42e19994e3ee891101b1841f30a545cb49a9"
679
1089
 
680
1090
  [[package]]
681
1091
  name = "hyper"
682
- version = "1.9.0"
1092
+ version = "1.10.1"
683
1093
  source = "registry+https://github.com/rust-lang/crates.io-index"
684
- checksum = "6299f016b246a94207e63da54dbe807655bf9e00044f73ded42c3ac5305fbcca"
1094
+ checksum = "55281c53a1894c864990125767da440a4e630446785086f52523b20033b74498"
685
1095
  dependencies = [
686
1096
  "atomic-waker",
687
1097
  "bytes",
@@ -875,6 +1285,22 @@ dependencies = [
875
1285
  "icu_properties",
876
1286
  ]
877
1287
 
1288
+ [[package]]
1289
+ name = "ignore"
1290
+ version = "0.4.25"
1291
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1292
+ checksum = "d3d782a365a015e0f5c04902246139249abf769125006fbe7649e2ee88169b4a"
1293
+ dependencies = [
1294
+ "crossbeam-deque",
1295
+ "globset",
1296
+ "log",
1297
+ "memchr",
1298
+ "regex-automata",
1299
+ "same-file",
1300
+ "walkdir",
1301
+ "winapi-util",
1302
+ ]
1303
+
878
1304
  [[package]]
879
1305
  name = "indexmap"
880
1306
  version = "2.14.0"
@@ -887,6 +1313,30 @@ dependencies = [
887
1313
  "serde_core",
888
1314
  ]
889
1315
 
1316
+ [[package]]
1317
+ name = "infer"
1318
+ version = "0.16.0"
1319
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1320
+ checksum = "bc150e5ce2330295b8616ce0e3f53250e53af31759a9dbedad1621ba29151847"
1321
+ dependencies = [
1322
+ "cfb",
1323
+ ]
1324
+
1325
+ [[package]]
1326
+ name = "intaglio"
1327
+ version = "1.15.1"
1328
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1329
+ checksum = "8eca9188c1b20836bb561bc09bb2f54e9ca99b271031b5f3ff183a00c08c98c8"
1330
+
1331
+ [[package]]
1332
+ name = "inventory"
1333
+ version = "0.3.24"
1334
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1335
+ checksum = "a4f0c30c76f2f4ccee3fe55a2435f691ca00c0e4bd87abe4f4a851b1d4dac39b"
1336
+ dependencies = [
1337
+ "rustversion",
1338
+ ]
1339
+
890
1340
  [[package]]
891
1341
  name = "ipnet"
892
1342
  version = "2.12.0"
@@ -899,6 +1349,15 @@ version = "1.70.2"
899
1349
  source = "registry+https://github.com/rust-lang/crates.io-index"
900
1350
  checksum = "a6cb138bb79a146c1bd460005623e142ef0181e3d0219cb493e02f7d08a35695"
901
1351
 
1352
+ [[package]]
1353
+ name = "itertools"
1354
+ version = "0.14.0"
1355
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1356
+ checksum = "2b192c782037fadd9cfa75548310488aabdbf3d2da73885b31bd0abd03351285"
1357
+ dependencies = [
1358
+ "either",
1359
+ ]
1360
+
902
1361
  [[package]]
903
1362
  name = "itoa"
904
1363
  version = "1.0.18"
@@ -917,7 +1376,7 @@ dependencies = [
917
1376
  "jni-sys",
918
1377
  "log",
919
1378
  "simd_cesu8",
920
- "thiserror",
1379
+ "thiserror 2.0.18",
921
1380
  "walkdir",
922
1381
  "windows-link",
923
1382
  ]
@@ -972,6 +1431,12 @@ version = "1.5.0"
972
1431
  source = "registry+https://github.com/rust-lang/crates.io-index"
973
1432
  checksum = "bbd2bcb4c963f2ddae06a2efc7e9f3591312473c50c6685e1f298068316e66fe"
974
1433
 
1434
+ [[package]]
1435
+ name = "leb128"
1436
+ version = "0.2.6"
1437
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1438
+ checksum = "6cc46bac87ef8093eed6f272babb833b6443374399985ac8ed28471ee0918545"
1439
+
975
1440
  [[package]]
976
1441
  name = "leb128fmt"
977
1442
  version = "0.1.0"
@@ -984,6 +1449,12 @@ version = "0.2.186"
984
1449
  source = "registry+https://github.com/rust-lang/crates.io-index"
985
1450
  checksum = "68ab91017fe16c622486840e4c83c9a37afeff978bd239b5293d61ece587de66"
986
1451
 
1452
+ [[package]]
1453
+ name = "libm"
1454
+ version = "0.2.16"
1455
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1456
+ checksum = "b6d2cec3eae94f9f509c767b45932f1ada8350c4bdb85af2fcab4a3c14807981"
1457
+
987
1458
  [[package]]
988
1459
  name = "linux-raw-sys"
989
1460
  version = "0.12.1"
@@ -1007,9 +1478,52 @@ dependencies = [
1007
1478
 
1008
1479
  [[package]]
1009
1480
  name = "log"
1010
- version = "0.4.29"
1481
+ version = "0.4.32"
1482
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1483
+ checksum = "953f07c43838f8e6f9758cab68bf5bed85465e7587ebe0b823f1bcd81978ad3a"
1484
+
1485
+ [[package]]
1486
+ name = "logos"
1487
+ version = "0.15.1"
1011
1488
  source = "registry+https://github.com/rust-lang/crates.io-index"
1012
- checksum = "5e5032e24019045c762d3c0f28f5b6b8bbf38563a65908389bf7978758920897"
1489
+ checksum = "ff472f899b4ec2d99161c51f60ff7075eeb3097069a36050d8037a6325eb8154"
1490
+ dependencies = [
1491
+ "logos-derive",
1492
+ ]
1493
+
1494
+ [[package]]
1495
+ name = "logos-codegen"
1496
+ version = "0.15.1"
1497
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1498
+ checksum = "192a3a2b90b0c05b27a0b2c43eecdb7c415e29243acc3f89cc8247a5b693045c"
1499
+ dependencies = [
1500
+ "beef",
1501
+ "fnv",
1502
+ "lazy_static",
1503
+ "proc-macro2",
1504
+ "quote",
1505
+ "regex-syntax",
1506
+ "rustc_version",
1507
+ "syn",
1508
+ ]
1509
+
1510
+ [[package]]
1511
+ name = "logos-derive"
1512
+ version = "0.15.1"
1513
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1514
+ checksum = "605d9697bcd5ef3a42d38efc51541aa3d6a4a25f7ab6d1ed0da5ac632a26b470"
1515
+ dependencies = [
1516
+ "logos-codegen",
1517
+ ]
1518
+
1519
+ [[package]]
1520
+ name = "mach2"
1521
+ version = "0.4.3"
1522
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1523
+ checksum = "d640282b302c0bb0a2a8e0233ead9035e3bed871f0b7e81fe4a1ec829765db44"
1524
+ dependencies = [
1525
+ "libc",
1526
+ ]
1013
1527
 
1014
1528
  [[package]]
1015
1529
  name = "matchers"
@@ -1022,15 +1536,33 @@ dependencies = [
1022
1536
 
1023
1537
  [[package]]
1024
1538
  name = "memchr"
1025
- version = "2.8.0"
1539
+ version = "2.8.1"
1540
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1541
+ checksum = "6b947ae49db0d222b1dbc6b113ce7248a3fc3a6ca21b696717bfc000ba4484d8"
1542
+
1543
+ [[package]]
1544
+ name = "memfd"
1545
+ version = "0.6.5"
1546
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1547
+ checksum = "ad38eb12aea514a0466ea40a80fd8cc83637065948eb4a426e4aa46261175227"
1548
+ dependencies = [
1549
+ "rustix",
1550
+ ]
1551
+
1552
+ [[package]]
1553
+ name = "memmap2"
1554
+ version = "0.9.10"
1026
1555
  source = "registry+https://github.com/rust-lang/crates.io-index"
1027
- checksum = "f8ca58f447f06ed17d5fc4043ce1b10dd205e060fb3ce5b979b8ed8e59ff3f79"
1556
+ checksum = "714098028fe011992e1c3962653c96b2d578c4b4bce9036e15ff220319b1e0e3"
1557
+ dependencies = [
1558
+ "libc",
1559
+ ]
1028
1560
 
1029
1561
  [[package]]
1030
1562
  name = "mio"
1031
- version = "1.2.0"
1563
+ version = "1.2.1"
1032
1564
  source = "registry+https://github.com/rust-lang/crates.io-index"
1033
- checksum = "50b7e5b27aa02a74bac8c3f23f448f8d87ff11f92d3aac1a6ed369ee08cc56c1"
1565
+ checksum = "02bd0af71c67b473010cbbc60715ee815645a4dc942899111f494b4b737d6fda"
1034
1566
  dependencies = [
1035
1567
  "libc",
1036
1568
  "wasi",
@@ -1046,6 +1578,17 @@ dependencies = [
1046
1578
  "windows-sys 0.61.2",
1047
1579
  ]
1048
1580
 
1581
+ [[package]]
1582
+ name = "num-derive"
1583
+ version = "0.4.2"
1584
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1585
+ checksum = "ed3955f1a9c7c0c15e092f9c887db08b1fc683305fdf6eb6684f22555355e202"
1586
+ dependencies = [
1587
+ "proc-macro2",
1588
+ "quote",
1589
+ "syn",
1590
+ ]
1591
+
1049
1592
  [[package]]
1050
1593
  name = "num-traits"
1051
1594
  version = "0.2.19"
@@ -1055,6 +1598,18 @@ dependencies = [
1055
1598
  "autocfg",
1056
1599
  ]
1057
1600
 
1601
+ [[package]]
1602
+ name = "object"
1603
+ version = "0.38.1"
1604
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1605
+ checksum = "271638cd5fa9cca89c4c304675ca658efc4e64a66c716b7cfe1afb4b9611dbbc"
1606
+ dependencies = [
1607
+ "crc32fast",
1608
+ "hashbrown 0.16.1",
1609
+ "indexmap",
1610
+ "memchr",
1611
+ ]
1612
+
1058
1613
  [[package]]
1059
1614
  name = "once_cell"
1060
1615
  version = "1.21.4"
@@ -1120,6 +1675,18 @@ version = "1.13.1"
1120
1675
  source = "registry+https://github.com/rust-lang/crates.io-index"
1121
1676
  checksum = "c33a9471896f1c69cecef8d20cbe2f7accd12527ce60845ff44c153bb2a21b49"
1122
1677
 
1678
+ [[package]]
1679
+ name = "postcard"
1680
+ version = "1.1.3"
1681
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1682
+ checksum = "6764c3b5dd454e283a30e6dfe78e9b31096d9e32036b5d1eaac7a6119ccb9a24"
1683
+ dependencies = [
1684
+ "cobs",
1685
+ "embedded-io 0.4.0",
1686
+ "embedded-io 0.6.1",
1687
+ "serde",
1688
+ ]
1689
+
1123
1690
  [[package]]
1124
1691
  name = "potential_utf"
1125
1692
  version = "0.1.5"
@@ -1157,6 +1724,49 @@ dependencies = [
1157
1724
  "unicode-ident",
1158
1725
  ]
1159
1726
 
1727
+ [[package]]
1728
+ name = "protobuf"
1729
+ version = "3.7.2"
1730
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1731
+ checksum = "d65a1d4ddae7d8b5de68153b48f6aa3bba8cb002b243dbdbc55a5afbc98f99f4"
1732
+ dependencies = [
1733
+ "once_cell",
1734
+ "protobuf-support",
1735
+ "thiserror 1.0.69",
1736
+ ]
1737
+
1738
+ [[package]]
1739
+ name = "protobuf-support"
1740
+ version = "3.7.2"
1741
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1742
+ checksum = "3e36c2f31e0a47f9280fb347ef5e461ffcd2c52dd520d8e216b52f93b0b0d7d6"
1743
+ dependencies = [
1744
+ "thiserror 1.0.69",
1745
+ ]
1746
+
1747
+ [[package]]
1748
+ name = "pulley-interpreter"
1749
+ version = "43.0.2"
1750
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1751
+ checksum = "7ec12fe19a9588315a49fe5704502a9c02d6a198303314b0c7c86123b06d29e5"
1752
+ dependencies = [
1753
+ "cranelift-bitset",
1754
+ "log",
1755
+ "pulley-macros",
1756
+ "wasmtime-internal-core",
1757
+ ]
1758
+
1759
+ [[package]]
1760
+ name = "pulley-macros"
1761
+ version = "43.0.2"
1762
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1763
+ checksum = "36f7d5ef31ebf1b46cd7e722ffef934e670d7e462f49aa01cde07b9b76dca580"
1764
+ dependencies = [
1765
+ "proc-macro2",
1766
+ "quote",
1767
+ "syn",
1768
+ ]
1769
+
1160
1770
  [[package]]
1161
1771
  name = "pyo3"
1162
1772
  version = "0.28.3"
@@ -1260,6 +1870,12 @@ version = "6.0.0"
1260
1870
  source = "registry+https://github.com/rust-lang/crates.io-index"
1261
1871
  checksum = "f8dcc9c7d52a811697d2151c701e0d08956f92b0e24136cf4cf27b57a6a0d9bf"
1262
1872
 
1873
+ [[package]]
1874
+ name = "radium"
1875
+ version = "0.7.0"
1876
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1877
+ checksum = "dc33ff2d4973d518d823d61aa239014831e521c75da58e3df4840d3f47749d09"
1878
+
1263
1879
  [[package]]
1264
1880
  name = "rand"
1265
1881
  version = "0.9.4"
@@ -1318,6 +1934,20 @@ dependencies = [
1318
1934
  "syn",
1319
1935
  ]
1320
1936
 
1937
+ [[package]]
1938
+ name = "regalloc2"
1939
+ version = "0.15.1"
1940
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1941
+ checksum = "de2c52737737f8609e94f975dee22854a2d5c125772d4b1cf292120f4d45c186"
1942
+ dependencies = [
1943
+ "allocator-api2",
1944
+ "bumpalo",
1945
+ "hashbrown 0.17.1",
1946
+ "log",
1947
+ "rustc-hash 2.1.2",
1948
+ "smallvec",
1949
+ ]
1950
+
1321
1951
  [[package]]
1322
1952
  name = "regex"
1323
1953
  version = "1.12.3"
@@ -1349,9 +1979,9 @@ checksum = "dc897dd8d9e8bd1ed8cdad82b5966c3e0ecae09fb1907d58efaa013543185d0a"
1349
1979
 
1350
1980
  [[package]]
1351
1981
  name = "reqwest"
1352
- version = "0.13.3"
1982
+ version = "0.13.4"
1353
1983
  source = "registry+https://github.com/rust-lang/crates.io-index"
1354
- checksum = "62e0021ea2c22aed41653bc7e1419abb2c97e038ff2c33d0e1309e49a97deec0"
1984
+ checksum = "219c5811de6525e5416c7d5d53bb656d3afdbc6c5af816e0802bcfa42dbdc1c3"
1355
1985
  dependencies = [
1356
1986
  "base64",
1357
1987
  "bytes",
@@ -1413,7 +2043,7 @@ dependencies = [
1413
2043
  "schemars",
1414
2044
  "serde",
1415
2045
  "serde_json",
1416
- "thiserror",
2046
+ "thiserror 2.0.18",
1417
2047
  "tokio",
1418
2048
  "tokio-util",
1419
2049
  "tracing",
@@ -1432,6 +2062,30 @@ dependencies = [
1432
2062
  "syn",
1433
2063
  ]
1434
2064
 
2065
+ [[package]]
2066
+ name = "rowan"
2067
+ version = "0.16.1"
2068
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2069
+ checksum = "417a3a9f582e349834051b8a10c8d71ca88da4211e4093528e36b9845f6b5f21"
2070
+ dependencies = [
2071
+ "countme",
2072
+ "hashbrown 0.14.5",
2073
+ "rustc-hash 1.1.0",
2074
+ "text-size",
2075
+ ]
2076
+
2077
+ [[package]]
2078
+ name = "rustc-hash"
2079
+ version = "1.1.0"
2080
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2081
+ checksum = "08d43f7aa6b08d49f382cde6a7982047c3426db949b1424bc4b7ec9ae12c6ce2"
2082
+
2083
+ [[package]]
2084
+ name = "rustc-hash"
2085
+ version = "2.1.2"
2086
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2087
+ checksum = "94300abf3f1ae2e2b8ffb7b58043de3d399c73fa6f4b73826402a5c457614dbe"
2088
+
1435
2089
  [[package]]
1436
2090
  name = "rustc_version"
1437
2091
  version = "0.4.1"
@@ -1470,9 +2124,9 @@ dependencies = [
1470
2124
 
1471
2125
  [[package]]
1472
2126
  name = "rustls-native-certs"
1473
- version = "0.8.3"
2127
+ version = "0.8.4"
1474
2128
  source = "registry+https://github.com/rust-lang/crates.io-index"
1475
- checksum = "612460d5f7bea540c490b2b6395d8e34a953e52b491accd6c86c8164c5932a63"
2129
+ checksum = "dab5152771c58876a2146916e53e35057e1a4dfa2b9df0f0305b07f611fdea4d"
1476
2130
  dependencies = [
1477
2131
  "openssl-probe",
1478
2132
  "rustls-pki-types",
@@ -1659,6 +2313,7 @@ version = "1.0.150"
1659
2313
  source = "registry+https://github.com/rust-lang/crates.io-index"
1660
2314
  checksum = "e8014e44b4736ed0538adeecded0fce2a272f22dc9578a7eb6b2d9993c74cfb9"
1661
2315
  dependencies = [
2316
+ "indexmap",
1662
2317
  "itoa",
1663
2318
  "memchr",
1664
2319
  "serde",
@@ -1677,6 +2332,17 @@ dependencies = [
1677
2332
  "digest",
1678
2333
  ]
1679
2334
 
2335
+ [[package]]
2336
+ name = "sha2"
2337
+ version = "0.10.9"
2338
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2339
+ checksum = "a7507d819769d01a365ab707794a4084392c824f54a7a6a7862f8c3d0892b283"
2340
+ dependencies = [
2341
+ "cfg-if",
2342
+ "cpufeatures",
2343
+ "digest",
2344
+ ]
2345
+
1680
2346
  [[package]]
1681
2347
  name = "sharded-slab"
1682
2348
  version = "0.1.7"
@@ -1688,9 +2354,9 @@ dependencies = [
1688
2354
 
1689
2355
  [[package]]
1690
2356
  name = "shlex"
1691
- version = "1.3.0"
2357
+ version = "2.0.1"
1692
2358
  source = "registry+https://github.com/rust-lang/crates.io-index"
1693
- checksum = "0fda2ff0d084019ba4d7c6f371c95d8fd75ce3524c3cb8fb653a3023f6323e64"
2359
+ checksum = "f8fadd59c855ef2080decdef8ff161eb6661b86933c9d82e5ba29dc602a55aba"
1694
2360
 
1695
2361
  [[package]]
1696
2362
  name = "signal-hook-registry"
@@ -1729,12 +2395,15 @@ name = "smallvec"
1729
2395
  version = "1.15.1"
1730
2396
  source = "registry+https://github.com/rust-lang/crates.io-index"
1731
2397
  checksum = "67b1b7a3b5fe4f1376887184045fcf45c69e92af734b7aaddc05fb777b6fbd03"
2398
+ dependencies = [
2399
+ "serde",
2400
+ ]
1732
2401
 
1733
2402
  [[package]]
1734
2403
  name = "socket2"
1735
- version = "0.6.3"
2404
+ version = "0.6.4"
1736
2405
  source = "registry+https://github.com/rust-lang/crates.io-index"
1737
- checksum = "3a766e1110788c36f4fa1c2b71b387a7815aa65f88ce0229841826633d93723e"
2406
+ checksum = "52d1cfed4120b4d927bf7c0f86d2087a4a7d6027c906d9f9d525a80573b9be51"
1738
2407
  dependencies = [
1739
2408
  "libc",
1740
2409
  "windows-sys 0.61.2",
@@ -1752,6 +2421,18 @@ version = "0.11.1"
1752
2421
  source = "registry+https://github.com/rust-lang/crates.io-index"
1753
2422
  checksum = "7da8b5736845d9f2fcb837ea5d9e2628564b3b043a70948a3f0b778838c5fb4f"
1754
2423
 
2424
+ [[package]]
2425
+ name = "strum_macros"
2426
+ version = "0.28.0"
2427
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2428
+ checksum = "ab85eea0270ee17587ed4156089e10b9e6880ee688791d45a905f5b1ca36f664"
2429
+ dependencies = [
2430
+ "heck",
2431
+ "proc-macro2",
2432
+ "quote",
2433
+ "syn",
2434
+ ]
2435
+
1755
2436
  [[package]]
1756
2437
  name = "subtle"
1757
2438
  version = "2.6.1"
@@ -1789,6 +2470,12 @@ dependencies = [
1789
2470
  "syn",
1790
2471
  ]
1791
2472
 
2473
+ [[package]]
2474
+ name = "tap"
2475
+ version = "1.0.1"
2476
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2477
+ checksum = "55937e1799185b12863d447f42597ed69d9928686b8d88a1df17376a097d8369"
2478
+
1792
2479
  [[package]]
1793
2480
  name = "target-lexicon"
1794
2481
  version = "0.13.5"
@@ -1808,13 +2495,48 @@ dependencies = [
1808
2495
  "windows-sys 0.61.2",
1809
2496
  ]
1810
2497
 
2498
+ [[package]]
2499
+ name = "termcolor"
2500
+ version = "1.4.1"
2501
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2502
+ checksum = "06794f8f6c5c898b3275aebefa6b8a1cb24cd2c6c79397ab15774837a0bc5755"
2503
+ dependencies = [
2504
+ "winapi-util",
2505
+ ]
2506
+
2507
+ [[package]]
2508
+ name = "text-size"
2509
+ version = "1.1.1"
2510
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2511
+ checksum = "f18aa187839b2bdb1ad2fa35ead8c4c2976b64e4363c386d45ac0f7ee85c9233"
2512
+
2513
+ [[package]]
2514
+ name = "thiserror"
2515
+ version = "1.0.69"
2516
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2517
+ checksum = "b6aaf5339b578ea85b50e080feb250a3e8ae8cfcdff9a461c9ec2904bc923f52"
2518
+ dependencies = [
2519
+ "thiserror-impl 1.0.69",
2520
+ ]
2521
+
1811
2522
  [[package]]
1812
2523
  name = "thiserror"
1813
2524
  version = "2.0.18"
1814
2525
  source = "registry+https://github.com/rust-lang/crates.io-index"
1815
2526
  checksum = "4288b5bcbc7920c07a1149a35cf9590a2aa808e0bc1eafaade0b80947865fbc4"
1816
2527
  dependencies = [
1817
- "thiserror-impl",
2528
+ "thiserror-impl 2.0.18",
2529
+ ]
2530
+
2531
+ [[package]]
2532
+ name = "thiserror-impl"
2533
+ version = "1.0.69"
2534
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2535
+ checksum = "4fee6c4efc90059e10f81e6d42c60a18f76588c3d74cb83a0b242a2b6c7504c1"
2536
+ dependencies = [
2537
+ "proc-macro2",
2538
+ "quote",
2539
+ "syn",
1818
2540
  ]
1819
2541
 
1820
2542
  [[package]]
@@ -2023,15 +2745,15 @@ dependencies = [
2023
2745
  "log",
2024
2746
  "rand",
2025
2747
  "sha1",
2026
- "thiserror",
2748
+ "thiserror 2.0.18",
2027
2749
  "utf-8",
2028
2750
  ]
2029
2751
 
2030
2752
  [[package]]
2031
2753
  name = "typenum"
2032
- version = "1.20.0"
2754
+ version = "1.20.1"
2033
2755
  source = "registry+https://github.com/rust-lang/crates.io-index"
2034
- checksum = "40ce102ab67701b8526c123c1bab5cbe42d7040ccfd0f64af1a385808d2f43de"
2756
+ checksum = "b6f5e870be6c3b371b77fe0ee0bafb859fa4964b4404c27de1d380043c4dda20"
2035
2757
 
2036
2758
  [[package]]
2037
2759
  name = "unicode-ident"
@@ -2039,6 +2761,12 @@ version = "1.0.24"
2039
2761
  source = "registry+https://github.com/rust-lang/crates.io-index"
2040
2762
  checksum = "e6e4313cd5fcd3dad5cafa179702e2b244f760991f45397d14d4ebf38247da75"
2041
2763
 
2764
+ [[package]]
2765
+ name = "unicode-width"
2766
+ version = "0.2.2"
2767
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2768
+ checksum = "b4ac048d71ede7ee76d585517add45da530660ef4390e49b098733c6e897f254"
2769
+
2042
2770
  [[package]]
2043
2771
  name = "unicode-xid"
2044
2772
  version = "0.2.6"
@@ -2051,6 +2779,12 @@ version = "0.9.0"
2051
2779
  source = "registry+https://github.com/rust-lang/crates.io-index"
2052
2780
  checksum = "8ecb6da28b8a351d773b68d5825ac39017e680750f980f3a1a85cd8dd28a47c1"
2053
2781
 
2782
+ [[package]]
2783
+ name = "unty"
2784
+ version = "0.0.4"
2785
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2786
+ checksum = "6d49784317cd0d1ee7ec5c716dd598ec5b4483ea832a2dced265471cc0f690ae"
2787
+
2054
2788
  [[package]]
2055
2789
  name = "url"
2056
2790
  version = "2.5.8"
@@ -2083,9 +2817,9 @@ checksum = "06abde3611657adf66d383f00b093d7faecc7fa57071cce2578660c9f1010821"
2083
2817
 
2084
2818
  [[package]]
2085
2819
  name = "uuid"
2086
- version = "1.23.1"
2820
+ version = "1.23.2"
2087
2821
  source = "registry+https://github.com/rust-lang/crates.io-index"
2088
- checksum = "ddd74a9687298c6858e9b88ec8935ec45d22e8fd5e6394fa1bd4e99a87789c76"
2822
+ checksum = "d258b83ceec21034727ecee8c382cfa6c3e133699b0742c64571814fb420c9f7"
2089
2823
  dependencies = [
2090
2824
  "getrandom 0.4.2",
2091
2825
  "js-sys",
@@ -2104,9 +2838,15 @@ version = "0.9.5"
2104
2838
  source = "registry+https://github.com/rust-lang/crates.io-index"
2105
2839
  checksum = "0b928f33d975fc6ad9f86c8f283853ad26bdd5b10b7f1542aa2fa15e2289105a"
2106
2840
 
2841
+ [[package]]
2842
+ name = "virtue"
2843
+ version = "0.0.18"
2844
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2845
+ checksum = "051eb1abcf10076295e815102942cc58f9d5e3b4560e46e53c21e8ff6f3af7b1"
2846
+
2107
2847
  [[package]]
2108
2848
  name = "void_crawl"
2109
- version = "0.3.2"
2849
+ version = "0.3.4"
2110
2850
  dependencies = [
2111
2851
  "futures",
2112
2852
  "pyo3",
@@ -2118,23 +2858,26 @@ dependencies = [
2118
2858
 
2119
2859
  [[package]]
2120
2860
  name = "void_crawl_core"
2121
- version = "0.3.2"
2861
+ version = "0.3.4"
2122
2862
  dependencies = [
2123
2863
  "chromiumoxide",
2124
2864
  "fd-lock",
2125
2865
  "futures",
2866
+ "infer",
2867
+ "regex",
2126
2868
  "reqwest",
2127
2869
  "rustls",
2128
2870
  "serde",
2129
2871
  "serde_json",
2130
2872
  "tempfile",
2131
- "thiserror",
2873
+ "thiserror 2.0.18",
2132
2874
  "tokio",
2875
+ "yara-x",
2133
2876
  ]
2134
2877
 
2135
2878
  [[package]]
2136
2879
  name = "voidcrawl-mcp"
2137
- version = "0.3.2"
2880
+ version = "0.3.4"
2138
2881
  dependencies = [
2139
2882
  "anyhow",
2140
2883
  "base64",
@@ -2148,7 +2891,8 @@ dependencies = [
2148
2891
  "schemars",
2149
2892
  "serde",
2150
2893
  "serde_json",
2151
- "thiserror",
2894
+ "tempfile",
2895
+ "thiserror 2.0.18",
2152
2896
  "tokio",
2153
2897
  "tracing",
2154
2898
  "tracing-subscriber",
@@ -2166,6 +2910,34 @@ dependencies = [
2166
2910
  "winapi-util",
2167
2911
  ]
2168
2912
 
2913
+ [[package]]
2914
+ name = "walrus"
2915
+ version = "0.26.4"
2916
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2917
+ checksum = "3bfa49767bb3a9e1afb02aa95bbcbde8d82f2db4ca377afae94d688f14f62378"
2918
+ dependencies = [
2919
+ "anyhow",
2920
+ "gimli 0.32.3",
2921
+ "id-arena",
2922
+ "leb128",
2923
+ "log",
2924
+ "walrus-macro",
2925
+ "wasm-encoder 0.245.1",
2926
+ "wasmparser 0.245.1",
2927
+ ]
2928
+
2929
+ [[package]]
2930
+ name = "walrus-macro"
2931
+ version = "0.26.0"
2932
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2933
+ checksum = "1a9b0525d7ea6e5f906aca581a172e5c91b4c595290dfa8ad4a2bc9ffef33b44"
2934
+ dependencies = [
2935
+ "heck",
2936
+ "proc-macro2",
2937
+ "quote",
2938
+ "syn",
2939
+ ]
2940
+
2169
2941
  [[package]]
2170
2942
  name = "want"
2171
2943
  version = "0.3.1"
@@ -2261,7 +3033,17 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
2261
3033
  checksum = "990065f2fe63003fe337b932cfb5e3b80e0b4d0f5ff650e6985b1048f62c8319"
2262
3034
  dependencies = [
2263
3035
  "leb128fmt",
2264
- "wasmparser",
3036
+ "wasmparser 0.244.0",
3037
+ ]
3038
+
3039
+ [[package]]
3040
+ name = "wasm-encoder"
3041
+ version = "0.245.1"
3042
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3043
+ checksum = "3f9dca005e69bf015e45577e415b9af8c67e8ee3c0e38b5b0add5aa92581ed5c"
3044
+ dependencies = [
3045
+ "leb128fmt",
3046
+ "wasmparser 0.245.1",
2265
3047
  ]
2266
3048
 
2267
3049
  [[package]]
@@ -2272,8 +3054,8 @@ checksum = "bb0e353e6a2fbdc176932bbaab493762eb1255a7900fe0fea1a2f96c296cc909"
2272
3054
  dependencies = [
2273
3055
  "anyhow",
2274
3056
  "indexmap",
2275
- "wasm-encoder",
2276
- "wasmparser",
3057
+ "wasm-encoder 0.244.0",
3058
+ "wasmparser 0.244.0",
2277
3059
  ]
2278
3060
 
2279
3061
  [[package]]
@@ -2288,6 +3070,193 @@ dependencies = [
2288
3070
  "semver",
2289
3071
  ]
2290
3072
 
3073
+ [[package]]
3074
+ name = "wasmparser"
3075
+ version = "0.245.1"
3076
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3077
+ checksum = "4f08c9adee0428b7bddf3890fc27e015ac4b761cc608c822667102b8bfd6995e"
3078
+ dependencies = [
3079
+ "bitflags",
3080
+ "hashbrown 0.16.1",
3081
+ "indexmap",
3082
+ "semver",
3083
+ "serde",
3084
+ ]
3085
+
3086
+ [[package]]
3087
+ name = "wasmprinter"
3088
+ version = "0.245.1"
3089
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3090
+ checksum = "5f41517a3716fbb8ccf46daa9c1325f760fcbff5168e75c7392288e410b91ac8"
3091
+ dependencies = [
3092
+ "anyhow",
3093
+ "termcolor",
3094
+ "wasmparser 0.245.1",
3095
+ ]
3096
+
3097
+ [[package]]
3098
+ name = "wasmtime"
3099
+ version = "43.0.2"
3100
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3101
+ checksum = "efb1ed5899dde98357cfdcf647a4614498798719793898245b4b34e663addabf"
3102
+ dependencies = [
3103
+ "addr2line",
3104
+ "async-trait",
3105
+ "bitflags",
3106
+ "bumpalo",
3107
+ "cc",
3108
+ "cfg-if",
3109
+ "libc",
3110
+ "log",
3111
+ "mach2",
3112
+ "memfd",
3113
+ "object",
3114
+ "once_cell",
3115
+ "postcard",
3116
+ "pulley-interpreter",
3117
+ "rustix",
3118
+ "serde",
3119
+ "serde_derive",
3120
+ "smallvec",
3121
+ "target-lexicon",
3122
+ "wasmparser 0.245.1",
3123
+ "wasmtime-environ",
3124
+ "wasmtime-internal-core",
3125
+ "wasmtime-internal-cranelift",
3126
+ "wasmtime-internal-fiber",
3127
+ "wasmtime-internal-jit-debug",
3128
+ "wasmtime-internal-jit-icache-coherence",
3129
+ "wasmtime-internal-unwinder",
3130
+ "wasmtime-internal-versioned-export-macros",
3131
+ "windows-sys 0.61.2",
3132
+ ]
3133
+
3134
+ [[package]]
3135
+ name = "wasmtime-environ"
3136
+ version = "43.0.2"
3137
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3138
+ checksum = "4172382dcc785c31d0e862c6780a18f5dd437914d22c4691351f965ef751c821"
3139
+ dependencies = [
3140
+ "anyhow",
3141
+ "cranelift-bforest",
3142
+ "cranelift-bitset",
3143
+ "cranelift-entity",
3144
+ "gimli 0.33.0",
3145
+ "hashbrown 0.16.1",
3146
+ "indexmap",
3147
+ "log",
3148
+ "object",
3149
+ "postcard",
3150
+ "serde",
3151
+ "serde_derive",
3152
+ "sha2",
3153
+ "smallvec",
3154
+ "target-lexicon",
3155
+ "wasm-encoder 0.245.1",
3156
+ "wasmparser 0.245.1",
3157
+ "wasmprinter",
3158
+ "wasmtime-internal-core",
3159
+ ]
3160
+
3161
+ [[package]]
3162
+ name = "wasmtime-internal-core"
3163
+ version = "43.0.2"
3164
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3165
+ checksum = "9a3820b174f477d2a7083209d1ad5353fcdb11eaea434b2137b8681029460dd3"
3166
+ dependencies = [
3167
+ "hashbrown 0.16.1",
3168
+ "libm",
3169
+ "serde",
3170
+ ]
3171
+
3172
+ [[package]]
3173
+ name = "wasmtime-internal-cranelift"
3174
+ version = "43.0.2"
3175
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3176
+ checksum = "d1679d205caf9766c6aa309d45bb3e7c634d7725e3164404df33824b9f7c4fb7"
3177
+ dependencies = [
3178
+ "cfg-if",
3179
+ "cranelift-codegen",
3180
+ "cranelift-control",
3181
+ "cranelift-entity",
3182
+ "cranelift-frontend",
3183
+ "cranelift-native",
3184
+ "gimli 0.33.0",
3185
+ "itertools",
3186
+ "log",
3187
+ "object",
3188
+ "pulley-interpreter",
3189
+ "smallvec",
3190
+ "target-lexicon",
3191
+ "thiserror 2.0.18",
3192
+ "wasmparser 0.245.1",
3193
+ "wasmtime-environ",
3194
+ "wasmtime-internal-core",
3195
+ "wasmtime-internal-unwinder",
3196
+ "wasmtime-internal-versioned-export-macros",
3197
+ ]
3198
+
3199
+ [[package]]
3200
+ name = "wasmtime-internal-fiber"
3201
+ version = "43.0.2"
3202
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3203
+ checksum = "f1e505254058be5b0df458d670ee42d9eafe2349d04c1296e9dc01071dc20a85"
3204
+ dependencies = [
3205
+ "cc",
3206
+ "cfg-if",
3207
+ "libc",
3208
+ "rustix",
3209
+ "wasmtime-environ",
3210
+ "wasmtime-internal-versioned-export-macros",
3211
+ "windows-sys 0.61.2",
3212
+ ]
3213
+
3214
+ [[package]]
3215
+ name = "wasmtime-internal-jit-debug"
3216
+ version = "43.0.2"
3217
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3218
+ checksum = "1c2e05b345f1773e59c20e6ad7298fd6857cdea245023d88bb659c96d8f0ea72"
3219
+ dependencies = [
3220
+ "cc",
3221
+ "wasmtime-internal-versioned-export-macros",
3222
+ ]
3223
+
3224
+ [[package]]
3225
+ name = "wasmtime-internal-jit-icache-coherence"
3226
+ version = "43.0.2"
3227
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3228
+ checksum = "b86701b234a4643e3f111869aa792b3a05a06e02d486ee9cb6c04dae16b52dab"
3229
+ dependencies = [
3230
+ "cfg-if",
3231
+ "libc",
3232
+ "wasmtime-internal-core",
3233
+ "windows-sys 0.61.2",
3234
+ ]
3235
+
3236
+ [[package]]
3237
+ name = "wasmtime-internal-unwinder"
3238
+ version = "43.0.2"
3239
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3240
+ checksum = "f63558d801beb83dde9b336eb4ae049019aee26627926edb32cd119d7e4c83cd"
3241
+ dependencies = [
3242
+ "cfg-if",
3243
+ "cranelift-codegen",
3244
+ "log",
3245
+ "object",
3246
+ "wasmtime-environ",
3247
+ ]
3248
+
3249
+ [[package]]
3250
+ name = "wasmtime-internal-versioned-export-macros"
3251
+ version = "43.0.2"
3252
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3253
+ checksum = "737c4d956fc3a848541a064afb683dd2771132a6b125be5baaf95c4379aa47df"
3254
+ dependencies = [
3255
+ "proc-macro2",
3256
+ "quote",
3257
+ "syn",
3258
+ ]
3259
+
2291
3260
  [[package]]
2292
3261
  name = "web-sys"
2293
3262
  version = "0.3.99"
@@ -2556,9 +3525,9 @@ dependencies = [
2556
3525
  "serde",
2557
3526
  "serde_derive",
2558
3527
  "serde_json",
2559
- "wasm-encoder",
3528
+ "wasm-encoder 0.244.0",
2560
3529
  "wasm-metadata",
2561
- "wasmparser",
3530
+ "wasmparser 0.244.0",
2562
3531
  "wit-parser",
2563
3532
  ]
2564
3533
 
@@ -2577,7 +3546,7 @@ dependencies = [
2577
3546
  "serde_derive",
2578
3547
  "serde_json",
2579
3548
  "unicode-xid",
2580
- "wasmparser",
3549
+ "wasmparser 0.244.0",
2581
3550
  ]
2582
3551
 
2583
3552
  [[package]]
@@ -2586,11 +3555,93 @@ version = "0.6.3"
2586
3555
  source = "registry+https://github.com/rust-lang/crates.io-index"
2587
3556
  checksum = "1ffae5123b2d3fc086436f8834ae3ab053a283cfac8fe0a0b8eaae044768a4c4"
2588
3557
 
3558
+ [[package]]
3559
+ name = "wyz"
3560
+ version = "0.5.1"
3561
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3562
+ checksum = "05f360fc0b24296329c78fda852a1e9ae82de9cf7b27dae4b7f62f118f77b9ed"
3563
+ dependencies = [
3564
+ "tap",
3565
+ ]
3566
+
3567
+ [[package]]
3568
+ name = "yara-x"
3569
+ version = "1.17.0"
3570
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3571
+ checksum = "b53bd070da0bb85da8d91d943ef34536092567ce340b38f487f04017f202c9d6"
3572
+ dependencies = [
3573
+ "annotate-snippets",
3574
+ "anyhow",
3575
+ "base64",
3576
+ "bincode",
3577
+ "bitflags",
3578
+ "bitvec",
3579
+ "bstr",
3580
+ "daachorse",
3581
+ "getrandom 0.2.17",
3582
+ "globwalk",
3583
+ "hex",
3584
+ "indexmap",
3585
+ "intaglio",
3586
+ "inventory",
3587
+ "itertools",
3588
+ "js-sys",
3589
+ "memchr",
3590
+ "memmap2",
3591
+ "num-derive",
3592
+ "num-traits",
3593
+ "protobuf",
3594
+ "regex",
3595
+ "regex-automata",
3596
+ "regex-syntax",
3597
+ "rustc-hash 2.1.2",
3598
+ "serde",
3599
+ "serde_json",
3600
+ "smallvec",
3601
+ "strum_macros",
3602
+ "thiserror 2.0.18",
3603
+ "walrus",
3604
+ "wasm-bindgen",
3605
+ "wasmtime",
3606
+ "yara-x-macros",
3607
+ "yara-x-parser",
3608
+ ]
3609
+
3610
+ [[package]]
3611
+ name = "yara-x-macros"
3612
+ version = "1.17.0"
3613
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3614
+ checksum = "eff2e4994394cb743155ee2a560e19cbc42e8e829593a8c1faa02e3ddc897638"
3615
+ dependencies = [
3616
+ "darling",
3617
+ "proc-macro2",
3618
+ "quote",
3619
+ "syn",
3620
+ ]
3621
+
3622
+ [[package]]
3623
+ name = "yara-x-parser"
3624
+ version = "1.17.0"
3625
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3626
+ checksum = "0750e3c54507bd3bcf1e0e54419308371d32f20a3aee86ac6909a48420250a9c"
3627
+ dependencies = [
3628
+ "ascii_tree",
3629
+ "bitflags",
3630
+ "bstr",
3631
+ "indexmap",
3632
+ "itertools",
3633
+ "logos",
3634
+ "num-traits",
3635
+ "rowan",
3636
+ "rustc-hash 2.1.2",
3637
+ "serde",
3638
+ ]
3639
+
2589
3640
  [[package]]
2590
3641
  name = "yoke"
2591
- version = "0.8.2"
3642
+ version = "0.8.3"
2592
3643
  source = "registry+https://github.com/rust-lang/crates.io-index"
2593
- checksum = "abe8c5fda708d9ca3df187cae8bfb9ceda00dd96231bed36e445a1a48e66f9ca"
3644
+ checksum = "709fe23a0424b6a435d82152b1bd3fdfb0833487d5fa90d05d42762a9891fef5"
2594
3645
  dependencies = [
2595
3646
  "stable_deref_trait",
2596
3647
  "yoke-derive",
@@ -2611,18 +3662,18 @@ dependencies = [
2611
3662
 
2612
3663
  [[package]]
2613
3664
  name = "zerocopy"
2614
- version = "0.8.48"
3665
+ version = "0.8.50"
2615
3666
  source = "registry+https://github.com/rust-lang/crates.io-index"
2616
- checksum = "eed437bf9d6692032087e337407a86f04cd8d6a16a37199ed57949d415bd68e9"
3667
+ checksum = "3b065d4f0e55f82fae73202e189638116a87c55ab6b8e6c2721e13dd9d854ad1"
2617
3668
  dependencies = [
2618
3669
  "zerocopy-derive",
2619
3670
  ]
2620
3671
 
2621
3672
  [[package]]
2622
3673
  name = "zerocopy-derive"
2623
- version = "0.8.48"
3674
+ version = "0.8.50"
2624
3675
  source = "registry+https://github.com/rust-lang/crates.io-index"
2625
- checksum = "70e3cd084b1788766f53af483dd21f93881ff30d7320490ec3ef7526d203bad4"
3676
+ checksum = "0b631b19d36a892ab55420c92dbc83ccd79274f25be714855d3074aa71cab639"
2626
3677
  dependencies = [
2627
3678
  "proc-macro2",
2628
3679
  "quote",