yara-x 0.12.0__tar.gz → 0.13.0__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.

Potentially problematic release.


This version of yara-x might be problematic. Click here for more details.

Files changed (838) hide show
  1. {yara_x-0.12.0 → yara_x-0.13.0}/Cargo.lock +480 -314
  2. {yara_x-0.12.0 → yara_x-0.13.0}/Cargo.toml +19 -15
  3. {yara_x-0.12.0 → yara_x-0.13.0}/PKG-INFO +1 -1
  4. yara_x-0.13.0/fmt/Cargo.lock +7 -0
  5. yara_x-0.13.0/fmt/Cargo.toml +25 -0
  6. yara_x-0.13.0/fmt/src/align.rs +123 -0
  7. yara_x-0.13.0/fmt/src/bubble.rs +254 -0
  8. yara_x-0.13.0/fmt/src/comments.rs +510 -0
  9. yara_x-0.13.0/fmt/src/format_hex_patterns.rs +117 -0
  10. yara_x-0.13.0/fmt/src/indentation.rs +83 -0
  11. yara_x-0.13.0/fmt/src/lib.rs +1379 -0
  12. yara_x-0.13.0/fmt/src/processor/mod.rs +508 -0
  13. yara_x-0.13.0/fmt/src/processor/tests.rs +262 -0
  14. yara_x-0.13.0/fmt/src/testdata/config_tests/align_metadata_false.formatted +12 -0
  15. yara_x-0.13.0/fmt/src/testdata/config_tests/align_patterns_false.formatted +12 -0
  16. yara_x-0.13.0/fmt/src/testdata/config_tests/align_rule.unformatted +1 -0
  17. yara_x-0.13.0/fmt/src/testdata/config_tests/empty_line_after_section_header_true.formatted +13 -0
  18. yara_x-0.13.0/fmt/src/testdata/config_tests/empty_line_before_section_header_false.formatted +8 -0
  19. yara_x-0.13.0/fmt/src/testdata/config_tests/generic_rule.unformatted +2 -0
  20. yara_x-0.13.0/fmt/src/testdata/config_tests/indent_section_contents_false.formatted +10 -0
  21. yara_x-0.13.0/fmt/src/testdata/config_tests/indent_section_headers_false.formatted +10 -0
  22. yara_x-0.13.0/fmt/src/testdata/config_tests/indent_spaces_one.formatted +10 -0
  23. yara_x-0.13.0/fmt/src/testdata/config_tests/indent_spaces_zero.formatted +10 -0
  24. yara_x-0.13.0/fmt/src/testdata/config_tests/newline_before_curly_brace_true.formatted +11 -0
  25. yara_x-0.13.0/fmt/src/testdata/default_tests/test1.formatted +4 -0
  26. yara_x-0.13.0/fmt/src/testdata/default_tests/test1.unformatted +1 -0
  27. yara_x-0.13.0/fmt/src/testdata/default_tests/test10.formatted +10 -0
  28. yara_x-0.13.0/fmt/src/testdata/default_tests/test10.unformatted +11 -0
  29. yara_x-0.13.0/fmt/src/testdata/default_tests/test11.formatted +4 -0
  30. yara_x-0.13.0/fmt/src/testdata/default_tests/test11.unformatted +6 -0
  31. yara_x-0.13.0/fmt/src/testdata/default_tests/test12.formatted +5 -0
  32. yara_x-0.13.0/fmt/src/testdata/default_tests/test12.unformatted +6 -0
  33. yara_x-0.13.0/fmt/src/testdata/default_tests/test13.formatted +4 -0
  34. yara_x-0.13.0/fmt/src/testdata/default_tests/test13.unformatted +7 -0
  35. yara_x-0.13.0/fmt/src/testdata/default_tests/test14.formatted +5 -0
  36. yara_x-0.13.0/fmt/src/testdata/default_tests/test14.unformatted +7 -0
  37. yara_x-0.13.0/fmt/src/testdata/default_tests/test15.formatted +6 -0
  38. yara_x-0.13.0/fmt/src/testdata/default_tests/test15.unformatted +7 -0
  39. yara_x-0.13.0/fmt/src/testdata/default_tests/test16.formatted +13 -0
  40. yara_x-0.13.0/fmt/src/testdata/default_tests/test16.unformatted +9 -0
  41. yara_x-0.13.0/fmt/src/testdata/default_tests/test17.formatted +14 -0
  42. yara_x-0.13.0/fmt/src/testdata/default_tests/test17.unformatted +12 -0
  43. yara_x-0.13.0/fmt/src/testdata/default_tests/test18.formatted +7 -0
  44. yara_x-0.13.0/fmt/src/testdata/default_tests/test18.unformatted +6 -0
  45. yara_x-0.13.0/fmt/src/testdata/default_tests/test19.formatted +12 -0
  46. yara_x-0.13.0/fmt/src/testdata/default_tests/test19.unformatted +9 -0
  47. yara_x-0.13.0/fmt/src/testdata/default_tests/test2.formatted +4 -0
  48. yara_x-0.13.0/fmt/src/testdata/default_tests/test2.unformatted +2 -0
  49. yara_x-0.13.0/fmt/src/testdata/default_tests/test20.formatted +24 -0
  50. yara_x-0.13.0/fmt/src/testdata/default_tests/test20.unformatted +22 -0
  51. yara_x-0.13.0/fmt/src/testdata/default_tests/test21.formatted +4 -0
  52. yara_x-0.13.0/fmt/src/testdata/default_tests/test21.unformatted +4 -0
  53. yara_x-0.13.0/fmt/src/testdata/default_tests/test22.formatted +4 -0
  54. yara_x-0.13.0/fmt/src/testdata/default_tests/test22.unformatted +4 -0
  55. yara_x-0.13.0/fmt/src/testdata/default_tests/test23.formatted +7 -0
  56. yara_x-0.13.0/fmt/src/testdata/default_tests/test23.unformatted +6 -0
  57. yara_x-0.13.0/fmt/src/testdata/default_tests/test24.formatted +7 -0
  58. yara_x-0.13.0/fmt/src/testdata/default_tests/test24.unformatted +6 -0
  59. yara_x-0.13.0/fmt/src/testdata/default_tests/test25.formatted +11 -0
  60. yara_x-0.13.0/fmt/src/testdata/default_tests/test25.unformatted +10 -0
  61. yara_x-0.13.0/fmt/src/testdata/default_tests/test26.formatted +3 -0
  62. yara_x-0.13.0/fmt/src/testdata/default_tests/test26.unformatted +3 -0
  63. yara_x-0.13.0/fmt/src/testdata/default_tests/test27.formatted +7 -0
  64. yara_x-0.13.0/fmt/src/testdata/default_tests/test27.unformatted +6 -0
  65. yara_x-0.13.0/fmt/src/testdata/default_tests/test28.formatted +11 -0
  66. yara_x-0.13.0/fmt/src/testdata/default_tests/test28.unformatted +10 -0
  67. yara_x-0.13.0/fmt/src/testdata/default_tests/test29.formatted +16 -0
  68. yara_x-0.13.0/fmt/src/testdata/default_tests/test29.unformatted +15 -0
  69. yara_x-0.13.0/fmt/src/testdata/default_tests/test3.formatted +5 -0
  70. yara_x-0.13.0/fmt/src/testdata/default_tests/test3.unformatted +6 -0
  71. yara_x-0.13.0/fmt/src/testdata/default_tests/test30.formatted +7 -0
  72. yara_x-0.13.0/fmt/src/testdata/default_tests/test30.unformatted +6 -0
  73. yara_x-0.13.0/fmt/src/testdata/default_tests/test31.formatted +8 -0
  74. yara_x-0.13.0/fmt/src/testdata/default_tests/test31.unformatted +6 -0
  75. yara_x-0.13.0/fmt/src/testdata/default_tests/test32.formatted +11 -0
  76. yara_x-0.13.0/fmt/src/testdata/default_tests/test32.unformatted +16 -0
  77. yara_x-0.13.0/fmt/src/testdata/default_tests/test33.formatted +6 -0
  78. yara_x-0.13.0/fmt/src/testdata/default_tests/test33.unformatted +6 -0
  79. yara_x-0.13.0/fmt/src/testdata/default_tests/test34.formatted +16 -0
  80. yara_x-0.13.0/fmt/src/testdata/default_tests/test34.unformatted +13 -0
  81. yara_x-0.13.0/fmt/src/testdata/default_tests/test4.formatted +9 -0
  82. yara_x-0.13.0/fmt/src/testdata/default_tests/test4.unformatted +1 -0
  83. yara_x-0.13.0/fmt/src/testdata/default_tests/test5.formatted +12 -0
  84. yara_x-0.13.0/fmt/src/testdata/default_tests/test5.unformatted +1 -0
  85. yara_x-0.13.0/fmt/src/testdata/default_tests/test6.formatted +12 -0
  86. yara_x-0.13.0/fmt/src/testdata/default_tests/test6.unformatted +4 -0
  87. yara_x-0.13.0/fmt/src/testdata/default_tests/test7.formatted +11 -0
  88. yara_x-0.13.0/fmt/src/testdata/default_tests/test7.unformatted +1 -0
  89. yara_x-0.13.0/fmt/src/testdata/default_tests/test8.formatted +8 -0
  90. yara_x-0.13.0/fmt/src/testdata/default_tests/test8.unformatted +6 -0
  91. yara_x-0.13.0/fmt/src/testdata/default_tests/test9.formatted +9 -0
  92. yara_x-0.13.0/fmt/src/testdata/default_tests/test9.unformatted +4 -0
  93. yara_x-0.13.0/fmt/src/tests.rs +155 -0
  94. yara_x-0.13.0/fmt/src/tokens/mod.rs +542 -0
  95. yara_x-0.13.0/fmt/src/tokens/tests.rs +168 -0
  96. yara_x-0.13.0/fmt/src/trailing_spaces.rs +101 -0
  97. {yara_x-0.12.0 → yara_x-0.13.0}/lib/Cargo.toml +3 -1
  98. {yara_x-0.12.0 → yara_x-0.13.0}/lib/src/compiler/atoms/mod.rs +3 -3
  99. {yara_x-0.12.0 → yara_x-0.13.0}/lib/src/compiler/context.rs +1 -1
  100. {yara_x-0.12.0 → yara_x-0.13.0}/lib/src/compiler/emit.rs +7 -6
  101. {yara_x-0.12.0 → yara_x-0.13.0}/lib/src/compiler/errors.rs +91 -0
  102. {yara_x-0.12.0 → yara_x-0.13.0}/lib/src/compiler/ir/ast2ir.rs +21 -22
  103. {yara_x-0.12.0 → yara_x-0.13.0}/lib/src/compiler/ir/dfs.rs +1 -1
  104. {yara_x-0.12.0 → yara_x-0.13.0}/lib/src/compiler/ir/mod.rs +21 -21
  105. yara_x-0.13.0/lib/src/compiler/linters.rs +302 -0
  106. {yara_x-0.12.0 → yara_x-0.13.0}/lib/src/compiler/mod.rs +96 -62
  107. {yara_x-0.12.0 → yara_x-0.13.0}/lib/src/compiler/tests/mod.rs +98 -5
  108. yara_x-0.13.0/lib/src/compiler/tests/testdata/errors/140.in +5 -0
  109. yara_x-0.13.0/lib/src/compiler/tests/testdata/errors/140.out +6 -0
  110. {yara_x-0.12.0 → yara_x-0.13.0}/lib/src/compiler/warnings.rs +94 -0
  111. {yara_x-0.12.0 → yara_x-0.13.0}/lib/src/lib.rs +9 -0
  112. {yara_x-0.12.0 → yara_x-0.13.0}/lib/src/models.rs +8 -8
  113. {yara_x-0.12.0 → yara_x-0.13.0}/lib/src/modules/dotnet/parser.rs +1 -1
  114. {yara_x-0.12.0 → yara_x-0.13.0}/lib/src/modules/elf/parser.rs +1 -4
  115. {yara_x-0.12.0 → yara_x-0.13.0}/lib/src/modules/macho/parser.rs +146 -58
  116. {yara_x-0.12.0 → yara_x-0.13.0}/lib/src/modules/mod.rs +2 -0
  117. {yara_x-0.12.0 → yara_x-0.13.0}/lib/src/modules/pe/authenticode.rs +8 -8
  118. {yara_x-0.12.0 → yara_x-0.13.0}/lib/src/modules/pe/mod.rs +0 -1
  119. {yara_x-0.12.0 → yara_x-0.13.0}/lib/src/modules/pe/parser.rs +1 -0
  120. {yara_x-0.12.0 → yara_x-0.13.0}/lib/src/modules/protos/macho.proto +7 -6
  121. {yara_x-0.12.0 → yara_x-0.13.0}/lib/src/modules/test_proto2/mod.rs +24 -3
  122. {yara_x-0.12.0 → yara_x-0.13.0}/lib/src/modules/test_proto2/tests/mod.rs +6 -0
  123. {yara_x-0.12.0/lib/src/modules/pe → yara_x-0.13.0/lib/src/modules/utils}/asn1.rs +3 -3
  124. yara_x-0.13.0/lib/src/modules/utils/mod.rs +1 -0
  125. {yara_x-0.12.0 → yara_x-0.13.0}/lib/src/re/fast/fastvm.rs +14 -14
  126. {yara_x-0.12.0 → yara_x-0.13.0}/lib/src/re/fast/instr.rs +1 -1
  127. {yara_x-0.12.0 → yara_x-0.13.0}/lib/src/re/hir.rs +1 -1
  128. {yara_x-0.12.0 → yara_x-0.13.0}/lib/src/re/thompson/compiler.rs +1 -4
  129. {yara_x-0.12.0 → yara_x-0.13.0}/lib/src/re/thompson/instr.rs +4 -4
  130. {yara_x-0.12.0 → yara_x-0.13.0}/lib/src/scanner/context.rs +5 -5
  131. {yara_x-0.12.0 → yara_x-0.13.0}/lib/src/scanner/mod.rs +9 -9
  132. {yara_x-0.12.0 → yara_x-0.13.0}/lib/src/symbols/mod.rs +1 -1
  133. {yara_x-0.12.0 → yara_x-0.13.0}/lib/src/tests/mod.rs +12 -0
  134. {yara_x-0.12.0 → yara_x-0.13.0}/lib/src/wasm/mod.rs +23 -1
  135. yara_x-0.13.0/macros/Cargo.lock +63 -0
  136. {yara_x-0.12.0 → yara_x-0.13.0}/parser/Cargo.toml +1 -1
  137. {yara_x-0.12.0 → yara_x-0.13.0}/parser/src/ast/ascii_tree.rs +2 -2
  138. {yara_x-0.12.0 → yara_x-0.13.0}/parser/src/ast/cst2ast.rs +15 -16
  139. {yara_x-0.12.0 → yara_x-0.13.0}/parser/src/ast/mod.rs +31 -18
  140. {yara_x-0.12.0 → yara_x-0.13.0}/parser/src/cst/mod.rs +23 -14
  141. {yara_x-0.12.0 → yara_x-0.13.0}/parser/src/cst/tests.rs +8 -4
  142. {yara_x-0.12.0 → yara_x-0.13.0}/parser/src/parser/mod.rs +7 -9
  143. {yara_x-0.12.0 → yara_x-0.13.0}/parser/src/parser/tests/mod.rs +1 -1
  144. {yara_x-0.12.0 → yara_x-0.13.0}/parser/src/parser/token_stream.rs +1 -1
  145. {yara_x-0.12.0 → yara_x-0.13.0}/parser/src/tokenizer/mod.rs +49 -77
  146. yara_x-0.13.0/proto/Cargo.lock +300 -0
  147. yara_x-0.13.0/proto/README.md +75 -0
  148. {yara_x-0.12.0 → yara_x-0.13.0}/py/Cargo.toml +6 -1
  149. {yara_x-0.12.0 → yara_x-0.13.0}/py/src/lib.rs +89 -0
  150. {yara_x-0.12.0 → yara_x-0.13.0}/py/tests/test_api.py +26 -0
  151. yara_x-0.13.0/py/yara_x.pyi +300 -0
  152. {yara_x-0.12.0 → yara_x-0.13.0}/pyproject.toml +1 -0
  153. yara_x-0.12.0/py/yara_x.pyi +0 -188
  154. {yara_x-0.12.0 → yara_x-0.13.0}/README.md +0 -0
  155. {yara_x-0.12.0/lib → yara_x-0.13.0/fmt}/README.md +0 -0
  156. {yara_x-0.12.0/parser → yara_x-0.13.0/lib}/README.md +0 -0
  157. {yara_x-0.12.0 → yara_x-0.13.0}/lib/build.rs +0 -0
  158. {yara_x-0.12.0 → yara_x-0.13.0}/lib/src/compiler/atoms/mask.rs +0 -0
  159. {yara_x-0.12.0 → yara_x-0.13.0}/lib/src/compiler/atoms/quality.rs +0 -0
  160. {yara_x-0.12.0 → yara_x-0.13.0}/lib/src/compiler/base64.rs +0 -0
  161. {yara_x-0.12.0 → yara_x-0.13.0}/lib/src/compiler/ir/hex2hir.rs +0 -0
  162. {yara_x-0.12.0 → yara_x-0.13.0}/lib/src/compiler/ir/tests/mod.rs +0 -0
  163. {yara_x-0.12.0 → yara_x-0.13.0}/lib/src/compiler/ir/tests/testdata/1.cse.ir +0 -0
  164. {yara_x-0.12.0 → yara_x-0.13.0}/lib/src/compiler/ir/tests/testdata/1.hoisting.ir +0 -0
  165. {yara_x-0.12.0 → yara_x-0.13.0}/lib/src/compiler/ir/tests/testdata/1.in +0 -0
  166. {yara_x-0.12.0 → yara_x-0.13.0}/lib/src/compiler/ir/tests/testdata/1.ir +0 -0
  167. {yara_x-0.12.0 → yara_x-0.13.0}/lib/src/compiler/ir/tests/testdata/1.no-folding.ir +0 -0
  168. {yara_x-0.12.0 → yara_x-0.13.0}/lib/src/compiler/ir/tests/testdata/2.cse.ir +0 -0
  169. {yara_x-0.12.0 → yara_x-0.13.0}/lib/src/compiler/ir/tests/testdata/2.hoisting.ir +0 -0
  170. {yara_x-0.12.0 → yara_x-0.13.0}/lib/src/compiler/ir/tests/testdata/2.in +0 -0
  171. {yara_x-0.12.0 → yara_x-0.13.0}/lib/src/compiler/ir/tests/testdata/2.ir +0 -0
  172. {yara_x-0.12.0 → yara_x-0.13.0}/lib/src/compiler/ir/tests/testdata/2.no-folding.ir +0 -0
  173. {yara_x-0.12.0 → yara_x-0.13.0}/lib/src/compiler/ir/tests/testdata/3.cse.ir +0 -0
  174. {yara_x-0.12.0 → yara_x-0.13.0}/lib/src/compiler/ir/tests/testdata/3.hoisting.ir +0 -0
  175. {yara_x-0.12.0 → yara_x-0.13.0}/lib/src/compiler/ir/tests/testdata/3.in +0 -0
  176. {yara_x-0.12.0 → yara_x-0.13.0}/lib/src/compiler/ir/tests/testdata/3.ir +0 -0
  177. {yara_x-0.12.0 → yara_x-0.13.0}/lib/src/compiler/ir/tests/testdata/3.no-folding.ir +0 -0
  178. {yara_x-0.12.0 → yara_x-0.13.0}/lib/src/compiler/ir/tests/testdata/4.cse.ir +0 -0
  179. {yara_x-0.12.0 → yara_x-0.13.0}/lib/src/compiler/ir/tests/testdata/4.hoisting.ir +0 -0
  180. {yara_x-0.12.0 → yara_x-0.13.0}/lib/src/compiler/ir/tests/testdata/4.in +0 -0
  181. {yara_x-0.12.0 → yara_x-0.13.0}/lib/src/compiler/ir/tests/testdata/4.ir +0 -0
  182. {yara_x-0.12.0 → yara_x-0.13.0}/lib/src/compiler/ir/tests/testdata/4.no-folding.ir +0 -0
  183. {yara_x-0.12.0 → yara_x-0.13.0}/lib/src/compiler/ir/tests/testdata/5.cse.ir +0 -0
  184. {yara_x-0.12.0 → yara_x-0.13.0}/lib/src/compiler/ir/tests/testdata/5.hoisting.ir +0 -0
  185. {yara_x-0.12.0 → yara_x-0.13.0}/lib/src/compiler/ir/tests/testdata/5.in +0 -0
  186. {yara_x-0.12.0 → yara_x-0.13.0}/lib/src/compiler/ir/tests/testdata/5.ir +0 -0
  187. {yara_x-0.12.0 → yara_x-0.13.0}/lib/src/compiler/ir/tests/testdata/5.no-folding.ir +0 -0
  188. {yara_x-0.12.0 → yara_x-0.13.0}/lib/src/compiler/ir/tests/testdata/6.cse.ir +0 -0
  189. {yara_x-0.12.0 → yara_x-0.13.0}/lib/src/compiler/ir/tests/testdata/6.hoisting.ir +0 -0
  190. {yara_x-0.12.0 → yara_x-0.13.0}/lib/src/compiler/ir/tests/testdata/6.in +0 -0
  191. {yara_x-0.12.0 → yara_x-0.13.0}/lib/src/compiler/ir/tests/testdata/6.ir +0 -0
  192. {yara_x-0.12.0 → yara_x-0.13.0}/lib/src/compiler/ir/tests/testdata/6.no-folding.ir +0 -0
  193. {yara_x-0.12.0 → yara_x-0.13.0}/lib/src/compiler/ir/tests/testdata/7.cse.ir +0 -0
  194. {yara_x-0.12.0 → yara_x-0.13.0}/lib/src/compiler/ir/tests/testdata/7.hoisting.ir +0 -0
  195. {yara_x-0.12.0 → yara_x-0.13.0}/lib/src/compiler/ir/tests/testdata/7.in +0 -0
  196. {yara_x-0.12.0 → yara_x-0.13.0}/lib/src/compiler/ir/tests/testdata/7.ir +0 -0
  197. {yara_x-0.12.0 → yara_x-0.13.0}/lib/src/compiler/ir/tests/testdata/7.no-folding.ir +0 -0
  198. {yara_x-0.12.0 → yara_x-0.13.0}/lib/src/compiler/ir/tests/testdata/8.cse.ir +0 -0
  199. {yara_x-0.12.0 → yara_x-0.13.0}/lib/src/compiler/ir/tests/testdata/8.hoisting.ir +0 -0
  200. {yara_x-0.12.0 → yara_x-0.13.0}/lib/src/compiler/ir/tests/testdata/8.in +0 -0
  201. {yara_x-0.12.0 → yara_x-0.13.0}/lib/src/compiler/ir/tests/testdata/8.ir +0 -0
  202. {yara_x-0.12.0 → yara_x-0.13.0}/lib/src/compiler/ir/tests/testdata/8.no-folding.ir +0 -0
  203. {yara_x-0.12.0 → yara_x-0.13.0}/lib/src/compiler/ir/tests/testdata/9.cse.ir +0 -0
  204. {yara_x-0.12.0 → yara_x-0.13.0}/lib/src/compiler/ir/tests/testdata/9.hoisting.ir +0 -0
  205. {yara_x-0.12.0 → yara_x-0.13.0}/lib/src/compiler/ir/tests/testdata/9.in +0 -0
  206. {yara_x-0.12.0 → yara_x-0.13.0}/lib/src/compiler/ir/tests/testdata/9.ir +0 -0
  207. {yara_x-0.12.0 → yara_x-0.13.0}/lib/src/compiler/ir/tests/testdata/9.no-folding.ir +0 -0
  208. {yara_x-0.12.0 → yara_x-0.13.0}/lib/src/compiler/report.rs +0 -0
  209. {yara_x-0.12.0 → yara_x-0.13.0}/lib/src/compiler/rules.rs +0 -0
  210. {yara_x-0.12.0 → yara_x-0.13.0}/lib/src/compiler/tests/testdata/errors/1.in +0 -0
  211. {yara_x-0.12.0 → yara_x-0.13.0}/lib/src/compiler/tests/testdata/errors/1.out +0 -0
  212. {yara_x-0.12.0 → yara_x-0.13.0}/lib/src/compiler/tests/testdata/errors/10.in +0 -0
  213. {yara_x-0.12.0 → yara_x-0.13.0}/lib/src/compiler/tests/testdata/errors/10.out +0 -0
  214. {yara_x-0.12.0 → yara_x-0.13.0}/lib/src/compiler/tests/testdata/errors/100.in +0 -0
  215. {yara_x-0.12.0 → yara_x-0.13.0}/lib/src/compiler/tests/testdata/errors/100.out +0 -0
  216. {yara_x-0.12.0 → yara_x-0.13.0}/lib/src/compiler/tests/testdata/errors/101.in +0 -0
  217. {yara_x-0.12.0 → yara_x-0.13.0}/lib/src/compiler/tests/testdata/errors/101.out +0 -0
  218. {yara_x-0.12.0 → yara_x-0.13.0}/lib/src/compiler/tests/testdata/errors/102.in +0 -0
  219. {yara_x-0.12.0 → yara_x-0.13.0}/lib/src/compiler/tests/testdata/errors/102.out +0 -0
  220. {yara_x-0.12.0 → yara_x-0.13.0}/lib/src/compiler/tests/testdata/errors/103.in +0 -0
  221. {yara_x-0.12.0 → yara_x-0.13.0}/lib/src/compiler/tests/testdata/errors/103.out +0 -0
  222. {yara_x-0.12.0 → yara_x-0.13.0}/lib/src/compiler/tests/testdata/errors/104.in +0 -0
  223. {yara_x-0.12.0 → yara_x-0.13.0}/lib/src/compiler/tests/testdata/errors/104.out +0 -0
  224. {yara_x-0.12.0 → yara_x-0.13.0}/lib/src/compiler/tests/testdata/errors/105.in +0 -0
  225. {yara_x-0.12.0 → yara_x-0.13.0}/lib/src/compiler/tests/testdata/errors/105.out +0 -0
  226. {yara_x-0.12.0 → yara_x-0.13.0}/lib/src/compiler/tests/testdata/errors/106.in +0 -0
  227. {yara_x-0.12.0 → yara_x-0.13.0}/lib/src/compiler/tests/testdata/errors/106.out +0 -0
  228. {yara_x-0.12.0 → yara_x-0.13.0}/lib/src/compiler/tests/testdata/errors/107.in +0 -0
  229. {yara_x-0.12.0 → yara_x-0.13.0}/lib/src/compiler/tests/testdata/errors/107.out +0 -0
  230. {yara_x-0.12.0 → yara_x-0.13.0}/lib/src/compiler/tests/testdata/errors/108.in +0 -0
  231. {yara_x-0.12.0 → yara_x-0.13.0}/lib/src/compiler/tests/testdata/errors/108.out +0 -0
  232. {yara_x-0.12.0 → yara_x-0.13.0}/lib/src/compiler/tests/testdata/errors/109.in +0 -0
  233. {yara_x-0.12.0 → yara_x-0.13.0}/lib/src/compiler/tests/testdata/errors/109.out +0 -0
  234. {yara_x-0.12.0 → yara_x-0.13.0}/lib/src/compiler/tests/testdata/errors/11.in +0 -0
  235. {yara_x-0.12.0 → yara_x-0.13.0}/lib/src/compiler/tests/testdata/errors/11.out +0 -0
  236. {yara_x-0.12.0 → yara_x-0.13.0}/lib/src/compiler/tests/testdata/errors/110.in +0 -0
  237. {yara_x-0.12.0 → yara_x-0.13.0}/lib/src/compiler/tests/testdata/errors/110.out +0 -0
  238. {yara_x-0.12.0 → yara_x-0.13.0}/lib/src/compiler/tests/testdata/errors/111.in +0 -0
  239. {yara_x-0.12.0 → yara_x-0.13.0}/lib/src/compiler/tests/testdata/errors/111.out +0 -0
  240. {yara_x-0.12.0 → yara_x-0.13.0}/lib/src/compiler/tests/testdata/errors/112.in +0 -0
  241. {yara_x-0.12.0 → yara_x-0.13.0}/lib/src/compiler/tests/testdata/errors/112.out +0 -0
  242. {yara_x-0.12.0 → yara_x-0.13.0}/lib/src/compiler/tests/testdata/errors/113.in +0 -0
  243. {yara_x-0.12.0 → yara_x-0.13.0}/lib/src/compiler/tests/testdata/errors/113.out +0 -0
  244. {yara_x-0.12.0 → yara_x-0.13.0}/lib/src/compiler/tests/testdata/errors/114.in +0 -0
  245. {yara_x-0.12.0 → yara_x-0.13.0}/lib/src/compiler/tests/testdata/errors/114.out +0 -0
  246. {yara_x-0.12.0 → yara_x-0.13.0}/lib/src/compiler/tests/testdata/errors/115.in +0 -0
  247. {yara_x-0.12.0 → yara_x-0.13.0}/lib/src/compiler/tests/testdata/errors/115.out +0 -0
  248. {yara_x-0.12.0 → yara_x-0.13.0}/lib/src/compiler/tests/testdata/errors/116.in +0 -0
  249. {yara_x-0.12.0 → yara_x-0.13.0}/lib/src/compiler/tests/testdata/errors/116.out +0 -0
  250. {yara_x-0.12.0 → yara_x-0.13.0}/lib/src/compiler/tests/testdata/errors/117.in +0 -0
  251. {yara_x-0.12.0 → yara_x-0.13.0}/lib/src/compiler/tests/testdata/errors/117.out +0 -0
  252. {yara_x-0.12.0 → yara_x-0.13.0}/lib/src/compiler/tests/testdata/errors/118.in +0 -0
  253. {yara_x-0.12.0 → yara_x-0.13.0}/lib/src/compiler/tests/testdata/errors/118.out +0 -0
  254. {yara_x-0.12.0 → yara_x-0.13.0}/lib/src/compiler/tests/testdata/errors/119.in +0 -0
  255. {yara_x-0.12.0 → yara_x-0.13.0}/lib/src/compiler/tests/testdata/errors/119.out +0 -0
  256. {yara_x-0.12.0 → yara_x-0.13.0}/lib/src/compiler/tests/testdata/errors/12.in +0 -0
  257. {yara_x-0.12.0 → yara_x-0.13.0}/lib/src/compiler/tests/testdata/errors/12.out +0 -0
  258. {yara_x-0.12.0 → yara_x-0.13.0}/lib/src/compiler/tests/testdata/errors/120.in +0 -0
  259. {yara_x-0.12.0 → yara_x-0.13.0}/lib/src/compiler/tests/testdata/errors/120.out +0 -0
  260. {yara_x-0.12.0 → yara_x-0.13.0}/lib/src/compiler/tests/testdata/errors/121.in +0 -0
  261. {yara_x-0.12.0 → yara_x-0.13.0}/lib/src/compiler/tests/testdata/errors/121.out +0 -0
  262. {yara_x-0.12.0 → yara_x-0.13.0}/lib/src/compiler/tests/testdata/errors/122.in +0 -0
  263. {yara_x-0.12.0 → yara_x-0.13.0}/lib/src/compiler/tests/testdata/errors/122.out +0 -0
  264. {yara_x-0.12.0 → yara_x-0.13.0}/lib/src/compiler/tests/testdata/errors/123.in +0 -0
  265. {yara_x-0.12.0 → yara_x-0.13.0}/lib/src/compiler/tests/testdata/errors/123.out +0 -0
  266. {yara_x-0.12.0 → yara_x-0.13.0}/lib/src/compiler/tests/testdata/errors/124.in +0 -0
  267. {yara_x-0.12.0 → yara_x-0.13.0}/lib/src/compiler/tests/testdata/errors/124.out +0 -0
  268. {yara_x-0.12.0 → yara_x-0.13.0}/lib/src/compiler/tests/testdata/errors/125.in +0 -0
  269. {yara_x-0.12.0 → yara_x-0.13.0}/lib/src/compiler/tests/testdata/errors/125.out +0 -0
  270. {yara_x-0.12.0 → yara_x-0.13.0}/lib/src/compiler/tests/testdata/errors/126.in +0 -0
  271. {yara_x-0.12.0 → yara_x-0.13.0}/lib/src/compiler/tests/testdata/errors/126.out +0 -0
  272. {yara_x-0.12.0 → yara_x-0.13.0}/lib/src/compiler/tests/testdata/errors/127.in +0 -0
  273. {yara_x-0.12.0 → yara_x-0.13.0}/lib/src/compiler/tests/testdata/errors/127.out +0 -0
  274. {yara_x-0.12.0 → yara_x-0.13.0}/lib/src/compiler/tests/testdata/errors/128.in +0 -0
  275. {yara_x-0.12.0 → yara_x-0.13.0}/lib/src/compiler/tests/testdata/errors/128.out +0 -0
  276. {yara_x-0.12.0 → yara_x-0.13.0}/lib/src/compiler/tests/testdata/errors/129.in +0 -0
  277. {yara_x-0.12.0 → yara_x-0.13.0}/lib/src/compiler/tests/testdata/errors/129.out +0 -0
  278. {yara_x-0.12.0 → yara_x-0.13.0}/lib/src/compiler/tests/testdata/errors/13.in +0 -0
  279. {yara_x-0.12.0 → yara_x-0.13.0}/lib/src/compiler/tests/testdata/errors/13.out +0 -0
  280. {yara_x-0.12.0 → yara_x-0.13.0}/lib/src/compiler/tests/testdata/errors/131.in +0 -0
  281. {yara_x-0.12.0 → yara_x-0.13.0}/lib/src/compiler/tests/testdata/errors/131.out +0 -0
  282. {yara_x-0.12.0 → yara_x-0.13.0}/lib/src/compiler/tests/testdata/errors/132.in +0 -0
  283. {yara_x-0.12.0 → yara_x-0.13.0}/lib/src/compiler/tests/testdata/errors/132.out +0 -0
  284. {yara_x-0.12.0 → yara_x-0.13.0}/lib/src/compiler/tests/testdata/errors/133.in +0 -0
  285. {yara_x-0.12.0 → yara_x-0.13.0}/lib/src/compiler/tests/testdata/errors/133.out +0 -0
  286. {yara_x-0.12.0 → yara_x-0.13.0}/lib/src/compiler/tests/testdata/errors/134.in +0 -0
  287. {yara_x-0.12.0 → yara_x-0.13.0}/lib/src/compiler/tests/testdata/errors/134.out +0 -0
  288. {yara_x-0.12.0 → yara_x-0.13.0}/lib/src/compiler/tests/testdata/errors/135.in +0 -0
  289. {yara_x-0.12.0 → yara_x-0.13.0}/lib/src/compiler/tests/testdata/errors/135.out +0 -0
  290. {yara_x-0.12.0 → yara_x-0.13.0}/lib/src/compiler/tests/testdata/errors/136.in +0 -0
  291. {yara_x-0.12.0 → yara_x-0.13.0}/lib/src/compiler/tests/testdata/errors/136.out +0 -0
  292. {yara_x-0.12.0 → yara_x-0.13.0}/lib/src/compiler/tests/testdata/errors/137.in +0 -0
  293. {yara_x-0.12.0 → yara_x-0.13.0}/lib/src/compiler/tests/testdata/errors/137.out +0 -0
  294. {yara_x-0.12.0 → yara_x-0.13.0}/lib/src/compiler/tests/testdata/errors/138.in +0 -0
  295. {yara_x-0.12.0 → yara_x-0.13.0}/lib/src/compiler/tests/testdata/errors/138.out +0 -0
  296. {yara_x-0.12.0 → yara_x-0.13.0}/lib/src/compiler/tests/testdata/errors/139.in +0 -0
  297. {yara_x-0.12.0 → yara_x-0.13.0}/lib/src/compiler/tests/testdata/errors/139.out +0 -0
  298. {yara_x-0.12.0 → yara_x-0.13.0}/lib/src/compiler/tests/testdata/errors/14.in +0 -0
  299. {yara_x-0.12.0 → yara_x-0.13.0}/lib/src/compiler/tests/testdata/errors/14.out +0 -0
  300. {yara_x-0.12.0 → yara_x-0.13.0}/lib/src/compiler/tests/testdata/errors/15.in +0 -0
  301. {yara_x-0.12.0 → yara_x-0.13.0}/lib/src/compiler/tests/testdata/errors/15.out +0 -0
  302. {yara_x-0.12.0 → yara_x-0.13.0}/lib/src/compiler/tests/testdata/errors/16.in +0 -0
  303. {yara_x-0.12.0 → yara_x-0.13.0}/lib/src/compiler/tests/testdata/errors/16.out +0 -0
  304. {yara_x-0.12.0 → yara_x-0.13.0}/lib/src/compiler/tests/testdata/errors/17.in +0 -0
  305. {yara_x-0.12.0 → yara_x-0.13.0}/lib/src/compiler/tests/testdata/errors/17.out +0 -0
  306. {yara_x-0.12.0 → yara_x-0.13.0}/lib/src/compiler/tests/testdata/errors/18.in +0 -0
  307. {yara_x-0.12.0 → yara_x-0.13.0}/lib/src/compiler/tests/testdata/errors/18.out +0 -0
  308. {yara_x-0.12.0 → yara_x-0.13.0}/lib/src/compiler/tests/testdata/errors/19.in +0 -0
  309. {yara_x-0.12.0 → yara_x-0.13.0}/lib/src/compiler/tests/testdata/errors/19.out +0 -0
  310. {yara_x-0.12.0 → yara_x-0.13.0}/lib/src/compiler/tests/testdata/errors/2.in +0 -0
  311. {yara_x-0.12.0 → yara_x-0.13.0}/lib/src/compiler/tests/testdata/errors/2.out +0 -0
  312. {yara_x-0.12.0 → yara_x-0.13.0}/lib/src/compiler/tests/testdata/errors/20.in +0 -0
  313. {yara_x-0.12.0 → yara_x-0.13.0}/lib/src/compiler/tests/testdata/errors/20.out +0 -0
  314. {yara_x-0.12.0 → yara_x-0.13.0}/lib/src/compiler/tests/testdata/errors/21.in +0 -0
  315. {yara_x-0.12.0 → yara_x-0.13.0}/lib/src/compiler/tests/testdata/errors/21.out +0 -0
  316. {yara_x-0.12.0 → yara_x-0.13.0}/lib/src/compiler/tests/testdata/errors/22.in +0 -0
  317. {yara_x-0.12.0 → yara_x-0.13.0}/lib/src/compiler/tests/testdata/errors/22.out +0 -0
  318. {yara_x-0.12.0 → yara_x-0.13.0}/lib/src/compiler/tests/testdata/errors/23.in +0 -0
  319. {yara_x-0.12.0 → yara_x-0.13.0}/lib/src/compiler/tests/testdata/errors/23.out +0 -0
  320. {yara_x-0.12.0 → yara_x-0.13.0}/lib/src/compiler/tests/testdata/errors/24.in +0 -0
  321. {yara_x-0.12.0 → yara_x-0.13.0}/lib/src/compiler/tests/testdata/errors/24.out +0 -0
  322. {yara_x-0.12.0 → yara_x-0.13.0}/lib/src/compiler/tests/testdata/errors/25.in +0 -0
  323. {yara_x-0.12.0 → yara_x-0.13.0}/lib/src/compiler/tests/testdata/errors/25.out +0 -0
  324. {yara_x-0.12.0 → yara_x-0.13.0}/lib/src/compiler/tests/testdata/errors/26.in +0 -0
  325. {yara_x-0.12.0 → yara_x-0.13.0}/lib/src/compiler/tests/testdata/errors/26.out +0 -0
  326. {yara_x-0.12.0 → yara_x-0.13.0}/lib/src/compiler/tests/testdata/errors/28.in +0 -0
  327. {yara_x-0.12.0 → yara_x-0.13.0}/lib/src/compiler/tests/testdata/errors/28.out +0 -0
  328. {yara_x-0.12.0 → yara_x-0.13.0}/lib/src/compiler/tests/testdata/errors/29.in +0 -0
  329. {yara_x-0.12.0 → yara_x-0.13.0}/lib/src/compiler/tests/testdata/errors/29.out +0 -0
  330. {yara_x-0.12.0 → yara_x-0.13.0}/lib/src/compiler/tests/testdata/errors/3.in +0 -0
  331. {yara_x-0.12.0 → yara_x-0.13.0}/lib/src/compiler/tests/testdata/errors/3.out +0 -0
  332. {yara_x-0.12.0 → yara_x-0.13.0}/lib/src/compiler/tests/testdata/errors/30.in +0 -0
  333. {yara_x-0.12.0 → yara_x-0.13.0}/lib/src/compiler/tests/testdata/errors/30.out +0 -0
  334. {yara_x-0.12.0 → yara_x-0.13.0}/lib/src/compiler/tests/testdata/errors/31.in +0 -0
  335. {yara_x-0.12.0 → yara_x-0.13.0}/lib/src/compiler/tests/testdata/errors/31.out +0 -0
  336. {yara_x-0.12.0 → yara_x-0.13.0}/lib/src/compiler/tests/testdata/errors/32.in +0 -0
  337. {yara_x-0.12.0 → yara_x-0.13.0}/lib/src/compiler/tests/testdata/errors/32.out +0 -0
  338. {yara_x-0.12.0 → yara_x-0.13.0}/lib/src/compiler/tests/testdata/errors/33.in +0 -0
  339. {yara_x-0.12.0 → yara_x-0.13.0}/lib/src/compiler/tests/testdata/errors/33.out +0 -0
  340. {yara_x-0.12.0 → yara_x-0.13.0}/lib/src/compiler/tests/testdata/errors/34.in +0 -0
  341. {yara_x-0.12.0 → yara_x-0.13.0}/lib/src/compiler/tests/testdata/errors/34.out +0 -0
  342. {yara_x-0.12.0 → yara_x-0.13.0}/lib/src/compiler/tests/testdata/errors/35.in +0 -0
  343. {yara_x-0.12.0 → yara_x-0.13.0}/lib/src/compiler/tests/testdata/errors/35.out +0 -0
  344. {yara_x-0.12.0 → yara_x-0.13.0}/lib/src/compiler/tests/testdata/errors/37.in +0 -0
  345. {yara_x-0.12.0 → yara_x-0.13.0}/lib/src/compiler/tests/testdata/errors/37.out +0 -0
  346. {yara_x-0.12.0 → yara_x-0.13.0}/lib/src/compiler/tests/testdata/errors/38.in +0 -0
  347. {yara_x-0.12.0 → yara_x-0.13.0}/lib/src/compiler/tests/testdata/errors/38.out +0 -0
  348. {yara_x-0.12.0 → yara_x-0.13.0}/lib/src/compiler/tests/testdata/errors/39.in +0 -0
  349. {yara_x-0.12.0 → yara_x-0.13.0}/lib/src/compiler/tests/testdata/errors/39.out +0 -0
  350. {yara_x-0.12.0 → yara_x-0.13.0}/lib/src/compiler/tests/testdata/errors/4.in +0 -0
  351. {yara_x-0.12.0 → yara_x-0.13.0}/lib/src/compiler/tests/testdata/errors/4.out +0 -0
  352. {yara_x-0.12.0 → yara_x-0.13.0}/lib/src/compiler/tests/testdata/errors/40.in +0 -0
  353. {yara_x-0.12.0 → yara_x-0.13.0}/lib/src/compiler/tests/testdata/errors/40.out +0 -0
  354. {yara_x-0.12.0 → yara_x-0.13.0}/lib/src/compiler/tests/testdata/errors/41.in +0 -0
  355. {yara_x-0.12.0 → yara_x-0.13.0}/lib/src/compiler/tests/testdata/errors/41.out +0 -0
  356. {yara_x-0.12.0 → yara_x-0.13.0}/lib/src/compiler/tests/testdata/errors/42.in +0 -0
  357. {yara_x-0.12.0 → yara_x-0.13.0}/lib/src/compiler/tests/testdata/errors/42.out +0 -0
  358. {yara_x-0.12.0 → yara_x-0.13.0}/lib/src/compiler/tests/testdata/errors/43.in +0 -0
  359. {yara_x-0.12.0 → yara_x-0.13.0}/lib/src/compiler/tests/testdata/errors/43.out +0 -0
  360. {yara_x-0.12.0 → yara_x-0.13.0}/lib/src/compiler/tests/testdata/errors/44.in +0 -0
  361. {yara_x-0.12.0 → yara_x-0.13.0}/lib/src/compiler/tests/testdata/errors/44.out +0 -0
  362. {yara_x-0.12.0 → yara_x-0.13.0}/lib/src/compiler/tests/testdata/errors/45.in +0 -0
  363. {yara_x-0.12.0 → yara_x-0.13.0}/lib/src/compiler/tests/testdata/errors/45.out +0 -0
  364. {yara_x-0.12.0 → yara_x-0.13.0}/lib/src/compiler/tests/testdata/errors/46.in +0 -0
  365. {yara_x-0.12.0 → yara_x-0.13.0}/lib/src/compiler/tests/testdata/errors/46.out +0 -0
  366. {yara_x-0.12.0 → yara_x-0.13.0}/lib/src/compiler/tests/testdata/errors/47.in +0 -0
  367. {yara_x-0.12.0 → yara_x-0.13.0}/lib/src/compiler/tests/testdata/errors/47.out +0 -0
  368. {yara_x-0.12.0 → yara_x-0.13.0}/lib/src/compiler/tests/testdata/errors/48.in +0 -0
  369. {yara_x-0.12.0 → yara_x-0.13.0}/lib/src/compiler/tests/testdata/errors/48.out +0 -0
  370. {yara_x-0.12.0 → yara_x-0.13.0}/lib/src/compiler/tests/testdata/errors/49.in +0 -0
  371. {yara_x-0.12.0 → yara_x-0.13.0}/lib/src/compiler/tests/testdata/errors/49.out +0 -0
  372. {yara_x-0.12.0 → yara_x-0.13.0}/lib/src/compiler/tests/testdata/errors/5.in +0 -0
  373. {yara_x-0.12.0 → yara_x-0.13.0}/lib/src/compiler/tests/testdata/errors/5.out +0 -0
  374. {yara_x-0.12.0 → yara_x-0.13.0}/lib/src/compiler/tests/testdata/errors/50.in +0 -0
  375. {yara_x-0.12.0 → yara_x-0.13.0}/lib/src/compiler/tests/testdata/errors/50.out +0 -0
  376. {yara_x-0.12.0 → yara_x-0.13.0}/lib/src/compiler/tests/testdata/errors/51.in +0 -0
  377. {yara_x-0.12.0 → yara_x-0.13.0}/lib/src/compiler/tests/testdata/errors/51.out +0 -0
  378. {yara_x-0.12.0 → yara_x-0.13.0}/lib/src/compiler/tests/testdata/errors/52.in +0 -0
  379. {yara_x-0.12.0 → yara_x-0.13.0}/lib/src/compiler/tests/testdata/errors/52.out +0 -0
  380. {yara_x-0.12.0 → yara_x-0.13.0}/lib/src/compiler/tests/testdata/errors/53.in +0 -0
  381. {yara_x-0.12.0 → yara_x-0.13.0}/lib/src/compiler/tests/testdata/errors/53.out +0 -0
  382. {yara_x-0.12.0 → yara_x-0.13.0}/lib/src/compiler/tests/testdata/errors/54.in +0 -0
  383. {yara_x-0.12.0 → yara_x-0.13.0}/lib/src/compiler/tests/testdata/errors/54.out +0 -0
  384. {yara_x-0.12.0 → yara_x-0.13.0}/lib/src/compiler/tests/testdata/errors/55.in +0 -0
  385. {yara_x-0.12.0 → yara_x-0.13.0}/lib/src/compiler/tests/testdata/errors/55.out +0 -0
  386. {yara_x-0.12.0 → yara_x-0.13.0}/lib/src/compiler/tests/testdata/errors/56.in +0 -0
  387. {yara_x-0.12.0 → yara_x-0.13.0}/lib/src/compiler/tests/testdata/errors/56.out +0 -0
  388. {yara_x-0.12.0 → yara_x-0.13.0}/lib/src/compiler/tests/testdata/errors/57.in +0 -0
  389. {yara_x-0.12.0 → yara_x-0.13.0}/lib/src/compiler/tests/testdata/errors/57.out +0 -0
  390. {yara_x-0.12.0 → yara_x-0.13.0}/lib/src/compiler/tests/testdata/errors/58.in +0 -0
  391. {yara_x-0.12.0 → yara_x-0.13.0}/lib/src/compiler/tests/testdata/errors/58.out +0 -0
  392. {yara_x-0.12.0 → yara_x-0.13.0}/lib/src/compiler/tests/testdata/errors/59.in +0 -0
  393. {yara_x-0.12.0 → yara_x-0.13.0}/lib/src/compiler/tests/testdata/errors/59.out +0 -0
  394. {yara_x-0.12.0 → yara_x-0.13.0}/lib/src/compiler/tests/testdata/errors/6.in +0 -0
  395. {yara_x-0.12.0 → yara_x-0.13.0}/lib/src/compiler/tests/testdata/errors/6.out +0 -0
  396. {yara_x-0.12.0 → yara_x-0.13.0}/lib/src/compiler/tests/testdata/errors/60.in +0 -0
  397. {yara_x-0.12.0 → yara_x-0.13.0}/lib/src/compiler/tests/testdata/errors/60.out +0 -0
  398. {yara_x-0.12.0 → yara_x-0.13.0}/lib/src/compiler/tests/testdata/errors/61.in +0 -0
  399. {yara_x-0.12.0 → yara_x-0.13.0}/lib/src/compiler/tests/testdata/errors/61.out +0 -0
  400. {yara_x-0.12.0 → yara_x-0.13.0}/lib/src/compiler/tests/testdata/errors/62.in +0 -0
  401. {yara_x-0.12.0 → yara_x-0.13.0}/lib/src/compiler/tests/testdata/errors/62.out +0 -0
  402. {yara_x-0.12.0 → yara_x-0.13.0}/lib/src/compiler/tests/testdata/errors/63.in +0 -0
  403. {yara_x-0.12.0 → yara_x-0.13.0}/lib/src/compiler/tests/testdata/errors/63.out +0 -0
  404. {yara_x-0.12.0 → yara_x-0.13.0}/lib/src/compiler/tests/testdata/errors/64.in +0 -0
  405. {yara_x-0.12.0 → yara_x-0.13.0}/lib/src/compiler/tests/testdata/errors/64.out +0 -0
  406. {yara_x-0.12.0 → yara_x-0.13.0}/lib/src/compiler/tests/testdata/errors/65.in +0 -0
  407. {yara_x-0.12.0 → yara_x-0.13.0}/lib/src/compiler/tests/testdata/errors/65.out +0 -0
  408. {yara_x-0.12.0 → yara_x-0.13.0}/lib/src/compiler/tests/testdata/errors/66.in +0 -0
  409. {yara_x-0.12.0 → yara_x-0.13.0}/lib/src/compiler/tests/testdata/errors/66.out +0 -0
  410. {yara_x-0.12.0 → yara_x-0.13.0}/lib/src/compiler/tests/testdata/errors/67.in +0 -0
  411. {yara_x-0.12.0 → yara_x-0.13.0}/lib/src/compiler/tests/testdata/errors/67.out +0 -0
  412. {yara_x-0.12.0 → yara_x-0.13.0}/lib/src/compiler/tests/testdata/errors/68.in +0 -0
  413. {yara_x-0.12.0 → yara_x-0.13.0}/lib/src/compiler/tests/testdata/errors/68.out +0 -0
  414. {yara_x-0.12.0 → yara_x-0.13.0}/lib/src/compiler/tests/testdata/errors/69.in +0 -0
  415. {yara_x-0.12.0 → yara_x-0.13.0}/lib/src/compiler/tests/testdata/errors/69.out +0 -0
  416. {yara_x-0.12.0 → yara_x-0.13.0}/lib/src/compiler/tests/testdata/errors/7.in +0 -0
  417. {yara_x-0.12.0 → yara_x-0.13.0}/lib/src/compiler/tests/testdata/errors/7.out +0 -0
  418. {yara_x-0.12.0 → yara_x-0.13.0}/lib/src/compiler/tests/testdata/errors/70.in +0 -0
  419. {yara_x-0.12.0 → yara_x-0.13.0}/lib/src/compiler/tests/testdata/errors/70.out +0 -0
  420. {yara_x-0.12.0 → yara_x-0.13.0}/lib/src/compiler/tests/testdata/errors/71.in +0 -0
  421. {yara_x-0.12.0 → yara_x-0.13.0}/lib/src/compiler/tests/testdata/errors/71.out +0 -0
  422. {yara_x-0.12.0 → yara_x-0.13.0}/lib/src/compiler/tests/testdata/errors/72.in +0 -0
  423. {yara_x-0.12.0 → yara_x-0.13.0}/lib/src/compiler/tests/testdata/errors/72.out +0 -0
  424. {yara_x-0.12.0 → yara_x-0.13.0}/lib/src/compiler/tests/testdata/errors/73.in +0 -0
  425. {yara_x-0.12.0 → yara_x-0.13.0}/lib/src/compiler/tests/testdata/errors/73.out +0 -0
  426. {yara_x-0.12.0 → yara_x-0.13.0}/lib/src/compiler/tests/testdata/errors/74.in +0 -0
  427. {yara_x-0.12.0 → yara_x-0.13.0}/lib/src/compiler/tests/testdata/errors/74.out +0 -0
  428. {yara_x-0.12.0 → yara_x-0.13.0}/lib/src/compiler/tests/testdata/errors/75.in +0 -0
  429. {yara_x-0.12.0 → yara_x-0.13.0}/lib/src/compiler/tests/testdata/errors/75.out +0 -0
  430. {yara_x-0.12.0 → yara_x-0.13.0}/lib/src/compiler/tests/testdata/errors/76.in +0 -0
  431. {yara_x-0.12.0 → yara_x-0.13.0}/lib/src/compiler/tests/testdata/errors/76.out +0 -0
  432. {yara_x-0.12.0 → yara_x-0.13.0}/lib/src/compiler/tests/testdata/errors/77.in +0 -0
  433. {yara_x-0.12.0 → yara_x-0.13.0}/lib/src/compiler/tests/testdata/errors/77.out +0 -0
  434. {yara_x-0.12.0 → yara_x-0.13.0}/lib/src/compiler/tests/testdata/errors/78.in +0 -0
  435. {yara_x-0.12.0 → yara_x-0.13.0}/lib/src/compiler/tests/testdata/errors/78.out +0 -0
  436. {yara_x-0.12.0 → yara_x-0.13.0}/lib/src/compiler/tests/testdata/errors/79.in +0 -0
  437. {yara_x-0.12.0 → yara_x-0.13.0}/lib/src/compiler/tests/testdata/errors/79.out +0 -0
  438. {yara_x-0.12.0 → yara_x-0.13.0}/lib/src/compiler/tests/testdata/errors/8.in +0 -0
  439. {yara_x-0.12.0 → yara_x-0.13.0}/lib/src/compiler/tests/testdata/errors/8.out +0 -0
  440. {yara_x-0.12.0 → yara_x-0.13.0}/lib/src/compiler/tests/testdata/errors/80.in +0 -0
  441. {yara_x-0.12.0 → yara_x-0.13.0}/lib/src/compiler/tests/testdata/errors/80.out +0 -0
  442. {yara_x-0.12.0 → yara_x-0.13.0}/lib/src/compiler/tests/testdata/errors/81.in +0 -0
  443. {yara_x-0.12.0 → yara_x-0.13.0}/lib/src/compiler/tests/testdata/errors/81.out +0 -0
  444. {yara_x-0.12.0 → yara_x-0.13.0}/lib/src/compiler/tests/testdata/errors/82.in +0 -0
  445. {yara_x-0.12.0 → yara_x-0.13.0}/lib/src/compiler/tests/testdata/errors/82.out +0 -0
  446. {yara_x-0.12.0 → yara_x-0.13.0}/lib/src/compiler/tests/testdata/errors/83.in +0 -0
  447. {yara_x-0.12.0 → yara_x-0.13.0}/lib/src/compiler/tests/testdata/errors/83.out +0 -0
  448. {yara_x-0.12.0 → yara_x-0.13.0}/lib/src/compiler/tests/testdata/errors/84.in +0 -0
  449. {yara_x-0.12.0 → yara_x-0.13.0}/lib/src/compiler/tests/testdata/errors/84.out +0 -0
  450. {yara_x-0.12.0 → yara_x-0.13.0}/lib/src/compiler/tests/testdata/errors/85.in +0 -0
  451. {yara_x-0.12.0 → yara_x-0.13.0}/lib/src/compiler/tests/testdata/errors/85.out +0 -0
  452. {yara_x-0.12.0 → yara_x-0.13.0}/lib/src/compiler/tests/testdata/errors/86.in +0 -0
  453. {yara_x-0.12.0 → yara_x-0.13.0}/lib/src/compiler/tests/testdata/errors/86.out +0 -0
  454. {yara_x-0.12.0 → yara_x-0.13.0}/lib/src/compiler/tests/testdata/errors/87.in +0 -0
  455. {yara_x-0.12.0 → yara_x-0.13.0}/lib/src/compiler/tests/testdata/errors/87.out +0 -0
  456. {yara_x-0.12.0 → yara_x-0.13.0}/lib/src/compiler/tests/testdata/errors/88.in +0 -0
  457. {yara_x-0.12.0 → yara_x-0.13.0}/lib/src/compiler/tests/testdata/errors/88.out +0 -0
  458. {yara_x-0.12.0 → yara_x-0.13.0}/lib/src/compiler/tests/testdata/errors/89.in +0 -0
  459. {yara_x-0.12.0 → yara_x-0.13.0}/lib/src/compiler/tests/testdata/errors/89.out +0 -0
  460. {yara_x-0.12.0 → yara_x-0.13.0}/lib/src/compiler/tests/testdata/errors/9.in +0 -0
  461. {yara_x-0.12.0 → yara_x-0.13.0}/lib/src/compiler/tests/testdata/errors/9.out +0 -0
  462. {yara_x-0.12.0 → yara_x-0.13.0}/lib/src/compiler/tests/testdata/errors/90.in +0 -0
  463. {yara_x-0.12.0 → yara_x-0.13.0}/lib/src/compiler/tests/testdata/errors/90.out +0 -0
  464. {yara_x-0.12.0 → yara_x-0.13.0}/lib/src/compiler/tests/testdata/errors/91.in +0 -0
  465. {yara_x-0.12.0 → yara_x-0.13.0}/lib/src/compiler/tests/testdata/errors/91.out +0 -0
  466. {yara_x-0.12.0 → yara_x-0.13.0}/lib/src/compiler/tests/testdata/errors/92.in +0 -0
  467. {yara_x-0.12.0 → yara_x-0.13.0}/lib/src/compiler/tests/testdata/errors/92.out +0 -0
  468. {yara_x-0.12.0 → yara_x-0.13.0}/lib/src/compiler/tests/testdata/errors/93.in +0 -0
  469. {yara_x-0.12.0 → yara_x-0.13.0}/lib/src/compiler/tests/testdata/errors/93.out +0 -0
  470. {yara_x-0.12.0 → yara_x-0.13.0}/lib/src/compiler/tests/testdata/errors/94.in +0 -0
  471. {yara_x-0.12.0 → yara_x-0.13.0}/lib/src/compiler/tests/testdata/errors/94.out +0 -0
  472. {yara_x-0.12.0 → yara_x-0.13.0}/lib/src/compiler/tests/testdata/errors/95.in +0 -0
  473. {yara_x-0.12.0 → yara_x-0.13.0}/lib/src/compiler/tests/testdata/errors/95.out +0 -0
  474. {yara_x-0.12.0 → yara_x-0.13.0}/lib/src/compiler/tests/testdata/errors/96.in +0 -0
  475. {yara_x-0.12.0 → yara_x-0.13.0}/lib/src/compiler/tests/testdata/errors/96.out +0 -0
  476. {yara_x-0.12.0 → yara_x-0.13.0}/lib/src/compiler/tests/testdata/errors/97.in +0 -0
  477. {yara_x-0.12.0 → yara_x-0.13.0}/lib/src/compiler/tests/testdata/errors/97.out +0 -0
  478. {yara_x-0.12.0 → yara_x-0.13.0}/lib/src/compiler/tests/testdata/errors/98.in +0 -0
  479. {yara_x-0.12.0 → yara_x-0.13.0}/lib/src/compiler/tests/testdata/errors/98.out +0 -0
  480. {yara_x-0.12.0 → yara_x-0.13.0}/lib/src/compiler/tests/testdata/errors/99.in +0 -0
  481. {yara_x-0.12.0 → yara_x-0.13.0}/lib/src/compiler/tests/testdata/errors/99.out +0 -0
  482. {yara_x-0.12.0 → yara_x-0.13.0}/lib/src/compiler/tests/testdata/warnings/1.in +0 -0
  483. {yara_x-0.12.0 → yara_x-0.13.0}/lib/src/compiler/tests/testdata/warnings/1.out +0 -0
  484. {yara_x-0.12.0 → yara_x-0.13.0}/lib/src/compiler/tests/testdata/warnings/10.in +0 -0
  485. {yara_x-0.12.0 → yara_x-0.13.0}/lib/src/compiler/tests/testdata/warnings/10.out +0 -0
  486. {yara_x-0.12.0 → yara_x-0.13.0}/lib/src/compiler/tests/testdata/warnings/11.in +0 -0
  487. {yara_x-0.12.0 → yara_x-0.13.0}/lib/src/compiler/tests/testdata/warnings/11.out +0 -0
  488. {yara_x-0.12.0 → yara_x-0.13.0}/lib/src/compiler/tests/testdata/warnings/12.in +0 -0
  489. {yara_x-0.12.0 → yara_x-0.13.0}/lib/src/compiler/tests/testdata/warnings/12.out +0 -0
  490. {yara_x-0.12.0 → yara_x-0.13.0}/lib/src/compiler/tests/testdata/warnings/13.in +0 -0
  491. {yara_x-0.12.0 → yara_x-0.13.0}/lib/src/compiler/tests/testdata/warnings/13.out +0 -0
  492. {yara_x-0.12.0 → yara_x-0.13.0}/lib/src/compiler/tests/testdata/warnings/14.in +0 -0
  493. {yara_x-0.12.0 → yara_x-0.13.0}/lib/src/compiler/tests/testdata/warnings/14.out +0 -0
  494. {yara_x-0.12.0 → yara_x-0.13.0}/lib/src/compiler/tests/testdata/warnings/15.in +0 -0
  495. {yara_x-0.12.0 → yara_x-0.13.0}/lib/src/compiler/tests/testdata/warnings/15.out +0 -0
  496. {yara_x-0.12.0 → yara_x-0.13.0}/lib/src/compiler/tests/testdata/warnings/16.in +0 -0
  497. {yara_x-0.12.0 → yara_x-0.13.0}/lib/src/compiler/tests/testdata/warnings/16.out +0 -0
  498. {yara_x-0.12.0 → yara_x-0.13.0}/lib/src/compiler/tests/testdata/warnings/17.in +0 -0
  499. {yara_x-0.12.0 → yara_x-0.13.0}/lib/src/compiler/tests/testdata/warnings/17.out +0 -0
  500. {yara_x-0.12.0 → yara_x-0.13.0}/lib/src/compiler/tests/testdata/warnings/18.in +0 -0
  501. {yara_x-0.12.0 → yara_x-0.13.0}/lib/src/compiler/tests/testdata/warnings/18.out +0 -0
  502. {yara_x-0.12.0 → yara_x-0.13.0}/lib/src/compiler/tests/testdata/warnings/19.in +0 -0
  503. {yara_x-0.12.0 → yara_x-0.13.0}/lib/src/compiler/tests/testdata/warnings/19.out +0 -0
  504. {yara_x-0.12.0 → yara_x-0.13.0}/lib/src/compiler/tests/testdata/warnings/2.in +0 -0
  505. {yara_x-0.12.0 → yara_x-0.13.0}/lib/src/compiler/tests/testdata/warnings/2.out +0 -0
  506. {yara_x-0.12.0 → yara_x-0.13.0}/lib/src/compiler/tests/testdata/warnings/20.in +0 -0
  507. {yara_x-0.12.0 → yara_x-0.13.0}/lib/src/compiler/tests/testdata/warnings/20.out +0 -0
  508. {yara_x-0.12.0 → yara_x-0.13.0}/lib/src/compiler/tests/testdata/warnings/21.in +0 -0
  509. {yara_x-0.12.0 → yara_x-0.13.0}/lib/src/compiler/tests/testdata/warnings/21.out +0 -0
  510. {yara_x-0.12.0 → yara_x-0.13.0}/lib/src/compiler/tests/testdata/warnings/22.in +0 -0
  511. {yara_x-0.12.0 → yara_x-0.13.0}/lib/src/compiler/tests/testdata/warnings/22.out +0 -0
  512. {yara_x-0.12.0 → yara_x-0.13.0}/lib/src/compiler/tests/testdata/warnings/23.in +0 -0
  513. {yara_x-0.12.0 → yara_x-0.13.0}/lib/src/compiler/tests/testdata/warnings/23.out +0 -0
  514. {yara_x-0.12.0 → yara_x-0.13.0}/lib/src/compiler/tests/testdata/warnings/24.in +0 -0
  515. {yara_x-0.12.0 → yara_x-0.13.0}/lib/src/compiler/tests/testdata/warnings/24.out +0 -0
  516. {yara_x-0.12.0 → yara_x-0.13.0}/lib/src/compiler/tests/testdata/warnings/25.in +0 -0
  517. {yara_x-0.12.0 → yara_x-0.13.0}/lib/src/compiler/tests/testdata/warnings/25.out +0 -0
  518. {yara_x-0.12.0 → yara_x-0.13.0}/lib/src/compiler/tests/testdata/warnings/26.in +0 -0
  519. {yara_x-0.12.0 → yara_x-0.13.0}/lib/src/compiler/tests/testdata/warnings/26.out +0 -0
  520. {yara_x-0.12.0 → yara_x-0.13.0}/lib/src/compiler/tests/testdata/warnings/27.in +0 -0
  521. {yara_x-0.12.0 → yara_x-0.13.0}/lib/src/compiler/tests/testdata/warnings/27.out +0 -0
  522. {yara_x-0.12.0 → yara_x-0.13.0}/lib/src/compiler/tests/testdata/warnings/28.in +0 -0
  523. {yara_x-0.12.0 → yara_x-0.13.0}/lib/src/compiler/tests/testdata/warnings/28.out +0 -0
  524. {yara_x-0.12.0 → yara_x-0.13.0}/lib/src/compiler/tests/testdata/warnings/29.in +0 -0
  525. {yara_x-0.12.0 → yara_x-0.13.0}/lib/src/compiler/tests/testdata/warnings/29.out +0 -0
  526. {yara_x-0.12.0 → yara_x-0.13.0}/lib/src/compiler/tests/testdata/warnings/3.in +0 -0
  527. {yara_x-0.12.0 → yara_x-0.13.0}/lib/src/compiler/tests/testdata/warnings/3.out +0 -0
  528. {yara_x-0.12.0 → yara_x-0.13.0}/lib/src/compiler/tests/testdata/warnings/30.in +0 -0
  529. {yara_x-0.12.0 → yara_x-0.13.0}/lib/src/compiler/tests/testdata/warnings/30.out +0 -0
  530. {yara_x-0.12.0 → yara_x-0.13.0}/lib/src/compiler/tests/testdata/warnings/31.in +0 -0
  531. {yara_x-0.12.0 → yara_x-0.13.0}/lib/src/compiler/tests/testdata/warnings/31.out +0 -0
  532. {yara_x-0.12.0 → yara_x-0.13.0}/lib/src/compiler/tests/testdata/warnings/32.in +0 -0
  533. {yara_x-0.12.0 → yara_x-0.13.0}/lib/src/compiler/tests/testdata/warnings/32.out +0 -0
  534. {yara_x-0.12.0 → yara_x-0.13.0}/lib/src/compiler/tests/testdata/warnings/33.in +0 -0
  535. {yara_x-0.12.0 → yara_x-0.13.0}/lib/src/compiler/tests/testdata/warnings/33.out +0 -0
  536. {yara_x-0.12.0 → yara_x-0.13.0}/lib/src/compiler/tests/testdata/warnings/34.in +0 -0
  537. {yara_x-0.12.0 → yara_x-0.13.0}/lib/src/compiler/tests/testdata/warnings/34.out +0 -0
  538. {yara_x-0.12.0 → yara_x-0.13.0}/lib/src/compiler/tests/testdata/warnings/35.in +0 -0
  539. {yara_x-0.12.0 → yara_x-0.13.0}/lib/src/compiler/tests/testdata/warnings/35.out +0 -0
  540. {yara_x-0.12.0 → yara_x-0.13.0}/lib/src/compiler/tests/testdata/warnings/4.in +0 -0
  541. {yara_x-0.12.0 → yara_x-0.13.0}/lib/src/compiler/tests/testdata/warnings/4.out +0 -0
  542. {yara_x-0.12.0 → yara_x-0.13.0}/lib/src/compiler/tests/testdata/warnings/5.in +0 -0
  543. {yara_x-0.12.0 → yara_x-0.13.0}/lib/src/compiler/tests/testdata/warnings/5.out +0 -0
  544. {yara_x-0.12.0 → yara_x-0.13.0}/lib/src/compiler/tests/testdata/warnings/6.in +0 -0
  545. {yara_x-0.12.0 → yara_x-0.13.0}/lib/src/compiler/tests/testdata/warnings/6.out +0 -0
  546. {yara_x-0.12.0 → yara_x-0.13.0}/lib/src/compiler/tests/testdata/warnings/7.in +0 -0
  547. {yara_x-0.12.0 → yara_x-0.13.0}/lib/src/compiler/tests/testdata/warnings/7.out +0 -0
  548. {yara_x-0.12.0 → yara_x-0.13.0}/lib/src/compiler/tests/testdata/warnings/8.in +0 -0
  549. {yara_x-0.12.0 → yara_x-0.13.0}/lib/src/compiler/tests/testdata/warnings/8.out +0 -0
  550. {yara_x-0.12.0 → yara_x-0.13.0}/lib/src/compiler/tests/testdata/warnings/9.in +0 -0
  551. {yara_x-0.12.0 → yara_x-0.13.0}/lib/src/compiler/tests/testdata/warnings/9.out +0 -0
  552. {yara_x-0.12.0 → yara_x-0.13.0}/lib/src/compiler/tests/testdata/warnings/no_warnings.in +0 -0
  553. {yara_x-0.12.0 → yara_x-0.13.0}/lib/src/compiler/tests/testdata/warnings/no_warnings.out +0 -0
  554. {yara_x-0.12.0 → yara_x-0.13.0}/lib/src/modules/add_modules.rs +0 -0
  555. {yara_x-0.12.0 → yara_x-0.13.0}/lib/src/modules/console.rs +0 -0
  556. {yara_x-0.12.0 → yara_x-0.13.0}/lib/src/modules/cuckoo/mod.rs +0 -0
  557. {yara_x-0.12.0 → yara_x-0.13.0}/lib/src/modules/cuckoo/schema.rs +0 -0
  558. {yara_x-0.12.0 → yara_x-0.13.0}/lib/src/modules/cuckoo/tests/mod.rs +0 -0
  559. {yara_x-0.12.0 → yara_x-0.13.0}/lib/src/modules/cuckoo/tests/testdata/1.json +0 -0
  560. {yara_x-0.12.0 → yara_x-0.13.0}/lib/src/modules/cuckoo/tests/testdata/1.yar +0 -0
  561. {yara_x-0.12.0 → yara_x-0.13.0}/lib/src/modules/cuckoo/tests/testdata/2.json +0 -0
  562. {yara_x-0.12.0 → yara_x-0.13.0}/lib/src/modules/cuckoo/tests/testdata/2.yar +0 -0
  563. {yara_x-0.12.0 → yara_x-0.13.0}/lib/src/modules/dotnet/mod.rs +0 -0
  564. {yara_x-0.12.0 → yara_x-0.13.0}/lib/src/modules/dotnet/tests/testdata/605ebe5b5f4b94e1a73e0ad1162bd542e5cb948d1a4ea5a575a14d6b9d6ee849.in +0 -0
  565. {yara_x-0.12.0 → yara_x-0.13.0}/lib/src/modules/dotnet/tests/testdata/86a1e48cfc843eabfe1b468ef9358c1068950f849c612ab808225b359db0bb8c.in +0 -0
  566. {yara_x-0.12.0 → yara_x-0.13.0}/lib/src/modules/elf/mod.rs +0 -0
  567. {yara_x-0.12.0 → yara_x-0.13.0}/lib/src/modules/elf/tests/mod.rs +0 -0
  568. {yara_x-0.12.0 → yara_x-0.13.0}/lib/src/modules/hash/mod.rs +0 -0
  569. {yara_x-0.12.0 → yara_x-0.13.0}/lib/src/modules/hash/tests/mod.rs +0 -0
  570. {yara_x-0.12.0 → yara_x-0.13.0}/lib/src/modules/lnk/mod.rs +0 -0
  571. {yara_x-0.12.0 → yara_x-0.13.0}/lib/src/modules/lnk/parser.rs +0 -0
  572. {yara_x-0.12.0 → yara_x-0.13.0}/lib/src/modules/macho/mod.rs +0 -0
  573. {yara_x-0.12.0 → yara_x-0.13.0}/lib/src/modules/macho/tests/mod.rs +0 -0
  574. {yara_x-0.12.0 → yara_x-0.13.0}/lib/src/modules/magic/mod.rs +0 -0
  575. {yara_x-0.12.0 → yara_x-0.13.0}/lib/src/modules/magic/tests/mod.rs +0 -0
  576. {yara_x-0.12.0 → yara_x-0.13.0}/lib/src/modules/math.rs +0 -0
  577. {yara_x-0.12.0 → yara_x-0.13.0}/lib/src/modules/modules.rs +0 -0
  578. {yara_x-0.12.0 → yara_x-0.13.0}/lib/src/modules/pe/rva2off.rs +0 -0
  579. {yara_x-0.12.0 → yara_x-0.13.0}/lib/src/modules/pe/tests/mod.rs +0 -0
  580. {yara_x-0.12.0 → yara_x-0.13.0}/lib/src/modules/protos/console.proto +0 -0
  581. {yara_x-0.12.0 → yara_x-0.13.0}/lib/src/modules/protos/cuckoo.proto +0 -0
  582. {yara_x-0.12.0 → yara_x-0.13.0}/lib/src/modules/protos/dotnet.proto +0 -0
  583. {yara_x-0.12.0 → yara_x-0.13.0}/lib/src/modules/protos/elf.proto +0 -0
  584. {yara_x-0.12.0 → yara_x-0.13.0}/lib/src/modules/protos/hash.proto +0 -0
  585. {yara_x-0.12.0 → yara_x-0.13.0}/lib/src/modules/protos/lnk.proto +0 -0
  586. {yara_x-0.12.0 → yara_x-0.13.0}/lib/src/modules/protos/magic.proto +0 -0
  587. {yara_x-0.12.0 → yara_x-0.13.0}/lib/src/modules/protos/math.proto +0 -0
  588. {yara_x-0.12.0 → yara_x-0.13.0}/lib/src/modules/protos/mods.proto +0 -0
  589. {yara_x-0.12.0 → yara_x-0.13.0}/lib/src/modules/protos/pe.proto +0 -0
  590. {yara_x-0.12.0 → yara_x-0.13.0}/lib/src/modules/protos/string.proto +0 -0
  591. {yara_x-0.12.0 → yara_x-0.13.0}/lib/src/modules/protos/test_proto2.proto +0 -0
  592. {yara_x-0.12.0 → yara_x-0.13.0}/lib/src/modules/protos/test_proto3.proto +0 -0
  593. {yara_x-0.12.0 → yara_x-0.13.0}/lib/src/modules/protos/text.proto +0 -0
  594. {yara_x-0.12.0 → yara_x-0.13.0}/lib/src/modules/protos/time.proto +0 -0
  595. {yara_x-0.12.0 → yara_x-0.13.0}/lib/src/modules/protos/yaml.proto +0 -0
  596. {yara_x-0.12.0 → yara_x-0.13.0}/lib/src/modules/protos/yara.proto +0 -0
  597. {yara_x-0.12.0 → yara_x-0.13.0}/lib/src/modules/string.rs +0 -0
  598. {yara_x-0.12.0 → yara_x-0.13.0}/lib/src/modules/test_proto3/mod.rs +0 -0
  599. {yara_x-0.12.0 → yara_x-0.13.0}/lib/src/modules/tests.rs +0 -0
  600. {yara_x-0.12.0 → yara_x-0.13.0}/lib/src/modules/text.rs +0 -0
  601. {yara_x-0.12.0 → yara_x-0.13.0}/lib/src/modules/time.rs +0 -0
  602. {yara_x-0.12.0 → yara_x-0.13.0}/lib/src/re/bitmapset.rs +0 -0
  603. {yara_x-0.12.0 → yara_x-0.13.0}/lib/src/re/fast/compiler.rs +0 -0
  604. {yara_x-0.12.0 → yara_x-0.13.0}/lib/src/re/fast/mod.rs +0 -0
  605. {yara_x-0.12.0 → yara_x-0.13.0}/lib/src/re/mod.rs +0 -0
  606. {yara_x-0.12.0 → yara_x-0.13.0}/lib/src/re/parser.rs +0 -0
  607. {yara_x-0.12.0 → yara_x-0.13.0}/lib/src/re/thompson/mod.rs +0 -0
  608. {yara_x-0.12.0 → yara_x-0.13.0}/lib/src/re/thompson/pikevm.rs +0 -0
  609. {yara_x-0.12.0 → yara_x-0.13.0}/lib/src/re/thompson/tests.rs +0 -0
  610. {yara_x-0.12.0 → yara_x-0.13.0}/lib/src/scanner/matches.rs +0 -0
  611. {yara_x-0.12.0 → yara_x-0.13.0}/lib/src/scanner/tests.rs +0 -0
  612. {yara_x-0.12.0 → yara_x-0.13.0}/lib/src/string_pool.rs +0 -0
  613. {yara_x-0.12.0 → yara_x-0.13.0}/lib/src/tests/testdata/jumps.bin +0 -0
  614. {yara_x-0.12.0 → yara_x-0.13.0}/lib/src/types/array.rs +0 -0
  615. {yara_x-0.12.0 → yara_x-0.13.0}/lib/src/types/func.rs +0 -0
  616. {yara_x-0.12.0 → yara_x-0.13.0}/lib/src/types/map.rs +0 -0
  617. {yara_x-0.12.0 → yara_x-0.13.0}/lib/src/types/mod.rs +0 -0
  618. {yara_x-0.12.0 → yara_x-0.13.0}/lib/src/types/structure.rs +0 -0
  619. {yara_x-0.12.0 → yara_x-0.13.0}/lib/src/variables.rs +0 -0
  620. {yara_x-0.12.0 → yara_x-0.13.0}/lib/src/wasm/builder.rs +0 -0
  621. {yara_x-0.12.0 → yara_x-0.13.0}/lib/src/wasm/string.rs +0 -0
  622. {yara_x-0.12.0 → yara_x-0.13.0}/macros/Cargo.toml +0 -0
  623. {yara_x-0.12.0 → yara_x-0.13.0}/macros/src/error.rs +0 -0
  624. {yara_x-0.12.0 → yara_x-0.13.0}/macros/src/lib.rs +0 -0
  625. {yara_x-0.12.0 → yara_x-0.13.0}/macros/src/module_export.rs +0 -0
  626. {yara_x-0.12.0 → yara_x-0.13.0}/macros/src/module_main.rs +0 -0
  627. {yara_x-0.12.0 → yara_x-0.13.0}/macros/src/wasm_export.rs +0 -0
  628. {yara_x-0.12.0/proto-yaml → yara_x-0.13.0/parser}/README.md +0 -0
  629. {yara_x-0.12.0 → yara_x-0.13.0}/parser/src/ast/errors.rs +0 -0
  630. {yara_x-0.12.0 → yara_x-0.13.0}/parser/src/cst/syntax_kind.rs +0 -0
  631. {yara_x-0.12.0 → yara_x-0.13.0}/parser/src/cst/syntax_stream.rs +0 -0
  632. {yara_x-0.12.0 → yara_x-0.13.0}/parser/src/lib.rs +0 -0
  633. {yara_x-0.12.0 → yara_x-0.13.0}/parser/src/parser/tests/testdata/arithmetic-ops.ast +0 -0
  634. {yara_x-0.12.0 → yara_x-0.13.0}/parser/src/parser/tests/testdata/arithmetic-ops.cst +0 -0
  635. {yara_x-0.12.0 → yara_x-0.13.0}/parser/src/parser/tests/testdata/arithmetic-ops.in +0 -0
  636. {yara_x-0.12.0 → yara_x-0.13.0}/parser/src/parser/tests/testdata/basic-1.ast +0 -0
  637. {yara_x-0.12.0 → yara_x-0.13.0}/parser/src/parser/tests/testdata/basic-1.cst +0 -0
  638. {yara_x-0.12.0 → yara_x-0.13.0}/parser/src/parser/tests/testdata/basic-1.in +0 -0
  639. {yara_x-0.12.0 → yara_x-0.13.0}/parser/src/parser/tests/testdata/basic-2.ast +0 -0
  640. {yara_x-0.12.0 → yara_x-0.13.0}/parser/src/parser/tests/testdata/basic-2.cst +0 -0
  641. {yara_x-0.12.0 → yara_x-0.13.0}/parser/src/parser/tests/testdata/basic-2.in +0 -0
  642. {yara_x-0.12.0 → yara_x-0.13.0}/parser/src/parser/tests/testdata/basic-3.ast +0 -0
  643. {yara_x-0.12.0 → yara_x-0.13.0}/parser/src/parser/tests/testdata/basic-3.cst +0 -0
  644. {yara_x-0.12.0 → yara_x-0.13.0}/parser/src/parser/tests/testdata/basic-3.in +0 -0
  645. {yara_x-0.12.0 → yara_x-0.13.0}/parser/src/parser/tests/testdata/basic-4.ast +0 -0
  646. {yara_x-0.12.0 → yara_x-0.13.0}/parser/src/parser/tests/testdata/basic-4.cst +0 -0
  647. {yara_x-0.12.0 → yara_x-0.13.0}/parser/src/parser/tests/testdata/basic-4.in +0 -0
  648. {yara_x-0.12.0 → yara_x-0.13.0}/parser/src/parser/tests/testdata/basic-error-1.ast +0 -0
  649. {yara_x-0.12.0 → yara_x-0.13.0}/parser/src/parser/tests/testdata/basic-error-1.cst +0 -0
  650. {yara_x-0.12.0 → yara_x-0.13.0}/parser/src/parser/tests/testdata/basic-error-1.in +0 -0
  651. {yara_x-0.12.0 → yara_x-0.13.0}/parser/src/parser/tests/testdata/basic-error-2.ast +0 -0
  652. {yara_x-0.12.0 → yara_x-0.13.0}/parser/src/parser/tests/testdata/basic-error-2.cst +0 -0
  653. {yara_x-0.12.0 → yara_x-0.13.0}/parser/src/parser/tests/testdata/basic-error-2.in +0 -0
  654. {yara_x-0.12.0 → yara_x-0.13.0}/parser/src/parser/tests/testdata/basic-error-3.ast +0 -0
  655. {yara_x-0.12.0 → yara_x-0.13.0}/parser/src/parser/tests/testdata/basic-error-3.cst +0 -0
  656. {yara_x-0.12.0 → yara_x-0.13.0}/parser/src/parser/tests/testdata/basic-error-3.in +0 -0
  657. {yara_x-0.12.0 → yara_x-0.13.0}/parser/src/parser/tests/testdata/basic-error-4.ast +0 -0
  658. {yara_x-0.12.0 → yara_x-0.13.0}/parser/src/parser/tests/testdata/basic-error-4.cst +0 -0
  659. {yara_x-0.12.0 → yara_x-0.13.0}/parser/src/parser/tests/testdata/basic-error-4.in +0 -0
  660. {yara_x-0.12.0 → yara_x-0.13.0}/parser/src/parser/tests/testdata/basic-error-5.ast +0 -0
  661. {yara_x-0.12.0 → yara_x-0.13.0}/parser/src/parser/tests/testdata/basic-error-5.cst +0 -0
  662. {yara_x-0.12.0 → yara_x-0.13.0}/parser/src/parser/tests/testdata/basic-error-5.in +0 -0
  663. {yara_x-0.12.0 → yara_x-0.13.0}/parser/src/parser/tests/testdata/bitwise-ops-error-1.ast +0 -0
  664. {yara_x-0.12.0 → yara_x-0.13.0}/parser/src/parser/tests/testdata/bitwise-ops-error-1.cst +0 -0
  665. {yara_x-0.12.0 → yara_x-0.13.0}/parser/src/parser/tests/testdata/bitwise-ops-error-1.in +0 -0
  666. {yara_x-0.12.0 → yara_x-0.13.0}/parser/src/parser/tests/testdata/bitwise-ops.ast +0 -0
  667. {yara_x-0.12.0 → yara_x-0.13.0}/parser/src/parser/tests/testdata/bitwise-ops.cst +0 -0
  668. {yara_x-0.12.0 → yara_x-0.13.0}/parser/src/parser/tests/testdata/bitwise-ops.in +0 -0
  669. {yara_x-0.12.0 → yara_x-0.13.0}/parser/src/parser/tests/testdata/comments.ast +0 -0
  670. {yara_x-0.12.0 → yara_x-0.13.0}/parser/src/parser/tests/testdata/comments.cst +0 -0
  671. {yara_x-0.12.0 → yara_x-0.13.0}/parser/src/parser/tests/testdata/comments.in +0 -0
  672. {yara_x-0.12.0 → yara_x-0.13.0}/parser/src/parser/tests/testdata/expr-1.ast +0 -0
  673. {yara_x-0.12.0 → yara_x-0.13.0}/parser/src/parser/tests/testdata/expr-1.cst +0 -0
  674. {yara_x-0.12.0 → yara_x-0.13.0}/parser/src/parser/tests/testdata/expr-1.in +0 -0
  675. {yara_x-0.12.0 → yara_x-0.13.0}/parser/src/parser/tests/testdata/expr-2.ast +0 -0
  676. {yara_x-0.12.0 → yara_x-0.13.0}/parser/src/parser/tests/testdata/expr-2.cst +0 -0
  677. {yara_x-0.12.0 → yara_x-0.13.0}/parser/src/parser/tests/testdata/expr-2.in +0 -0
  678. {yara_x-0.12.0 → yara_x-0.13.0}/parser/src/parser/tests/testdata/expr-3.ast +0 -0
  679. {yara_x-0.12.0 → yara_x-0.13.0}/parser/src/parser/tests/testdata/expr-3.cst +0 -0
  680. {yara_x-0.12.0 → yara_x-0.13.0}/parser/src/parser/tests/testdata/expr-3.in +0 -0
  681. {yara_x-0.12.0 → yara_x-0.13.0}/parser/src/parser/tests/testdata/expr-4.ast +0 -0
  682. {yara_x-0.12.0 → yara_x-0.13.0}/parser/src/parser/tests/testdata/expr-4.cst +0 -0
  683. {yara_x-0.12.0 → yara_x-0.13.0}/parser/src/parser/tests/testdata/expr-4.in +0 -0
  684. {yara_x-0.12.0 → yara_x-0.13.0}/parser/src/parser/tests/testdata/expr-5.ast +0 -0
  685. {yara_x-0.12.0 → yara_x-0.13.0}/parser/src/parser/tests/testdata/expr-5.cst +0 -0
  686. {yara_x-0.12.0 → yara_x-0.13.0}/parser/src/parser/tests/testdata/expr-5.in +0 -0
  687. {yara_x-0.12.0 → yara_x-0.13.0}/parser/src/parser/tests/testdata/expr-6.ast +0 -0
  688. {yara_x-0.12.0 → yara_x-0.13.0}/parser/src/parser/tests/testdata/expr-6.cst +0 -0
  689. {yara_x-0.12.0 → yara_x-0.13.0}/parser/src/parser/tests/testdata/expr-6.in +0 -0
  690. {yara_x-0.12.0 → yara_x-0.13.0}/parser/src/parser/tests/testdata/expr-error-1.ast +0 -0
  691. {yara_x-0.12.0 → yara_x-0.13.0}/parser/src/parser/tests/testdata/expr-error-1.cst +0 -0
  692. {yara_x-0.12.0 → yara_x-0.13.0}/parser/src/parser/tests/testdata/expr-error-1.in +0 -0
  693. {yara_x-0.12.0 → yara_x-0.13.0}/parser/src/parser/tests/testdata/for-1.ast +0 -0
  694. {yara_x-0.12.0 → yara_x-0.13.0}/parser/src/parser/tests/testdata/for-1.cst +0 -0
  695. {yara_x-0.12.0 → yara_x-0.13.0}/parser/src/parser/tests/testdata/for-1.in +0 -0
  696. {yara_x-0.12.0 → yara_x-0.13.0}/parser/src/parser/tests/testdata/for-2.ast +0 -0
  697. {yara_x-0.12.0 → yara_x-0.13.0}/parser/src/parser/tests/testdata/for-2.cst +0 -0
  698. {yara_x-0.12.0 → yara_x-0.13.0}/parser/src/parser/tests/testdata/for-2.in +0 -0
  699. {yara_x-0.12.0 → yara_x-0.13.0}/parser/src/parser/tests/testdata/for-3.ast +0 -0
  700. {yara_x-0.12.0 → yara_x-0.13.0}/parser/src/parser/tests/testdata/for-3.cst +0 -0
  701. {yara_x-0.12.0 → yara_x-0.13.0}/parser/src/parser/tests/testdata/for-3.in +0 -0
  702. {yara_x-0.12.0 → yara_x-0.13.0}/parser/src/parser/tests/testdata/for-4.ast +0 -0
  703. {yara_x-0.12.0 → yara_x-0.13.0}/parser/src/parser/tests/testdata/for-4.cst +0 -0
  704. {yara_x-0.12.0 → yara_x-0.13.0}/parser/src/parser/tests/testdata/for-4.in +0 -0
  705. {yara_x-0.12.0 → yara_x-0.13.0}/parser/src/parser/tests/testdata/for-5.ast +0 -0
  706. {yara_x-0.12.0 → yara_x-0.13.0}/parser/src/parser/tests/testdata/for-5.cst +0 -0
  707. {yara_x-0.12.0 → yara_x-0.13.0}/parser/src/parser/tests/testdata/for-5.in +0 -0
  708. {yara_x-0.12.0 → yara_x-0.13.0}/parser/src/parser/tests/testdata/for-error-1.ast +0 -0
  709. {yara_x-0.12.0 → yara_x-0.13.0}/parser/src/parser/tests/testdata/for-error-1.cst +0 -0
  710. {yara_x-0.12.0 → yara_x-0.13.0}/parser/src/parser/tests/testdata/for-error-1.in +0 -0
  711. {yara_x-0.12.0 → yara_x-0.13.0}/parser/src/parser/tests/testdata/func-call.ast +0 -0
  712. {yara_x-0.12.0 → yara_x-0.13.0}/parser/src/parser/tests/testdata/func-call.cst +0 -0
  713. {yara_x-0.12.0 → yara_x-0.13.0}/parser/src/parser/tests/testdata/func-call.in +0 -0
  714. {yara_x-0.12.0 → yara_x-0.13.0}/parser/src/parser/tests/testdata/hex-patterns-1.ast +0 -0
  715. {yara_x-0.12.0 → yara_x-0.13.0}/parser/src/parser/tests/testdata/hex-patterns-1.cst +0 -0
  716. {yara_x-0.12.0 → yara_x-0.13.0}/parser/src/parser/tests/testdata/hex-patterns-1.in +0 -0
  717. {yara_x-0.12.0 → yara_x-0.13.0}/parser/src/parser/tests/testdata/hex-patterns-2.ast +0 -0
  718. {yara_x-0.12.0 → yara_x-0.13.0}/parser/src/parser/tests/testdata/hex-patterns-2.cst +0 -0
  719. {yara_x-0.12.0 → yara_x-0.13.0}/parser/src/parser/tests/testdata/hex-patterns-2.in +0 -0
  720. {yara_x-0.12.0 → yara_x-0.13.0}/parser/src/parser/tests/testdata/hex-patterns-3.ast +0 -0
  721. {yara_x-0.12.0 → yara_x-0.13.0}/parser/src/parser/tests/testdata/hex-patterns-3.cst +0 -0
  722. {yara_x-0.12.0 → yara_x-0.13.0}/parser/src/parser/tests/testdata/hex-patterns-3.in +0 -0
  723. {yara_x-0.12.0 → yara_x-0.13.0}/parser/src/parser/tests/testdata/hex-patterns-error-1.ast +0 -0
  724. {yara_x-0.12.0 → yara_x-0.13.0}/parser/src/parser/tests/testdata/hex-patterns-error-1.cst +0 -0
  725. {yara_x-0.12.0 → yara_x-0.13.0}/parser/src/parser/tests/testdata/hex-patterns-error-1.in +0 -0
  726. {yara_x-0.12.0 → yara_x-0.13.0}/parser/src/parser/tests/testdata/hex-patterns-error-2.ast +0 -0
  727. {yara_x-0.12.0 → yara_x-0.13.0}/parser/src/parser/tests/testdata/hex-patterns-error-2.cst +0 -0
  728. {yara_x-0.12.0 → yara_x-0.13.0}/parser/src/parser/tests/testdata/hex-patterns-error-2.in +0 -0
  729. {yara_x-0.12.0 → yara_x-0.13.0}/parser/src/parser/tests/testdata/meta-error-1.ast +0 -0
  730. {yara_x-0.12.0 → yara_x-0.13.0}/parser/src/parser/tests/testdata/meta-error-1.cst +0 -0
  731. {yara_x-0.12.0 → yara_x-0.13.0}/parser/src/parser/tests/testdata/meta-error-1.in +0 -0
  732. {yara_x-0.12.0 → yara_x-0.13.0}/parser/src/parser/tests/testdata/meta-error-2.ast +0 -0
  733. {yara_x-0.12.0 → yara_x-0.13.0}/parser/src/parser/tests/testdata/meta-error-2.cst +0 -0
  734. {yara_x-0.12.0 → yara_x-0.13.0}/parser/src/parser/tests/testdata/meta-error-2.in +0 -0
  735. {yara_x-0.12.0 → yara_x-0.13.0}/parser/src/parser/tests/testdata/meta-error-3.ast +0 -0
  736. {yara_x-0.12.0 → yara_x-0.13.0}/parser/src/parser/tests/testdata/meta-error-3.cst +0 -0
  737. {yara_x-0.12.0 → yara_x-0.13.0}/parser/src/parser/tests/testdata/meta-error-3.in +0 -0
  738. {yara_x-0.12.0 → yara_x-0.13.0}/parser/src/parser/tests/testdata/meta-error-4.ast +0 -0
  739. {yara_x-0.12.0 → yara_x-0.13.0}/parser/src/parser/tests/testdata/meta-error-4.cst +0 -0
  740. {yara_x-0.12.0 → yara_x-0.13.0}/parser/src/parser/tests/testdata/meta-error-4.in +0 -0
  741. {yara_x-0.12.0 → yara_x-0.13.0}/parser/src/parser/tests/testdata/meta-error-5.ast +0 -0
  742. {yara_x-0.12.0 → yara_x-0.13.0}/parser/src/parser/tests/testdata/meta-error-5.cst +0 -0
  743. {yara_x-0.12.0 → yara_x-0.13.0}/parser/src/parser/tests/testdata/meta-error-5.in +0 -0
  744. {yara_x-0.12.0 → yara_x-0.13.0}/parser/src/parser/tests/testdata/meta-error-6.ast +0 -0
  745. {yara_x-0.12.0 → yara_x-0.13.0}/parser/src/parser/tests/testdata/meta-error-6.cst +0 -0
  746. {yara_x-0.12.0 → yara_x-0.13.0}/parser/src/parser/tests/testdata/meta-error-6.in +0 -0
  747. {yara_x-0.12.0 → yara_x-0.13.0}/parser/src/parser/tests/testdata/meta.ast +0 -0
  748. {yara_x-0.12.0 → yara_x-0.13.0}/parser/src/parser/tests/testdata/meta.cst +0 -0
  749. {yara_x-0.12.0 → yara_x-0.13.0}/parser/src/parser/tests/testdata/meta.in +0 -0
  750. {yara_x-0.12.0 → yara_x-0.13.0}/parser/src/parser/tests/testdata/of-1.ast +0 -0
  751. {yara_x-0.12.0 → yara_x-0.13.0}/parser/src/parser/tests/testdata/of-1.cst +0 -0
  752. {yara_x-0.12.0 → yara_x-0.13.0}/parser/src/parser/tests/testdata/of-1.in +0 -0
  753. {yara_x-0.12.0 → yara_x-0.13.0}/parser/src/parser/tests/testdata/of-error-1.ast +0 -0
  754. {yara_x-0.12.0 → yara_x-0.13.0}/parser/src/parser/tests/testdata/of-error-1.cst +0 -0
  755. {yara_x-0.12.0 → yara_x-0.13.0}/parser/src/parser/tests/testdata/of-error-1.in +0 -0
  756. {yara_x-0.12.0 → yara_x-0.13.0}/parser/src/parser/tests/testdata/pattern-mods-1.ast +0 -0
  757. {yara_x-0.12.0 → yara_x-0.13.0}/parser/src/parser/tests/testdata/pattern-mods-1.cst +0 -0
  758. {yara_x-0.12.0 → yara_x-0.13.0}/parser/src/parser/tests/testdata/pattern-mods-1.in +0 -0
  759. {yara_x-0.12.0 → yara_x-0.13.0}/parser/src/parser/tests/testdata/pattern-mods-error-1.ast +0 -0
  760. {yara_x-0.12.0 → yara_x-0.13.0}/parser/src/parser/tests/testdata/pattern-mods-error-1.cst +0 -0
  761. {yara_x-0.12.0 → yara_x-0.13.0}/parser/src/parser/tests/testdata/pattern-mods-error-1.in +0 -0
  762. {yara_x-0.12.0 → yara_x-0.13.0}/parser/src/parser/tests/testdata/patterns-1.ast +0 -0
  763. {yara_x-0.12.0 → yara_x-0.13.0}/parser/src/parser/tests/testdata/patterns-1.cst +0 -0
  764. {yara_x-0.12.0 → yara_x-0.13.0}/parser/src/parser/tests/testdata/patterns-1.in +0 -0
  765. {yara_x-0.12.0 → yara_x-0.13.0}/parser/src/parser/tests/testdata/patterns-2.ast +0 -0
  766. {yara_x-0.12.0 → yara_x-0.13.0}/parser/src/parser/tests/testdata/patterns-2.cst +0 -0
  767. {yara_x-0.12.0 → yara_x-0.13.0}/parser/src/parser/tests/testdata/patterns-2.in +0 -0
  768. {yara_x-0.12.0 → yara_x-0.13.0}/parser/src/parser/tests/testdata/patterns-3.ast +0 -0
  769. {yara_x-0.12.0 → yara_x-0.13.0}/parser/src/parser/tests/testdata/patterns-3.cst +0 -0
  770. {yara_x-0.12.0 → yara_x-0.13.0}/parser/src/parser/tests/testdata/patterns-3.in +0 -0
  771. {yara_x-0.12.0 → yara_x-0.13.0}/parser/src/parser/tests/testdata/patterns-error-1.ast +0 -0
  772. {yara_x-0.12.0 → yara_x-0.13.0}/parser/src/parser/tests/testdata/patterns-error-1.cst +0 -0
  773. {yara_x-0.12.0 → yara_x-0.13.0}/parser/src/parser/tests/testdata/patterns-error-1.in +0 -0
  774. {yara_x-0.12.0 → yara_x-0.13.0}/parser/src/parser/tests/testdata/patterns-error-2.ast +0 -0
  775. {yara_x-0.12.0 → yara_x-0.13.0}/parser/src/parser/tests/testdata/patterns-error-2.cst +0 -0
  776. {yara_x-0.12.0 → yara_x-0.13.0}/parser/src/parser/tests/testdata/patterns-error-2.in +0 -0
  777. {yara_x-0.12.0 → yara_x-0.13.0}/parser/src/parser/tests/testdata/patterns-error-3.ast +0 -0
  778. {yara_x-0.12.0 → yara_x-0.13.0}/parser/src/parser/tests/testdata/patterns-error-3.cst +0 -0
  779. {yara_x-0.12.0 → yara_x-0.13.0}/parser/src/parser/tests/testdata/patterns-error-3.in +0 -0
  780. {yara_x-0.12.0 → yara_x-0.13.0}/parser/src/parser/tests/testdata/patterns-error-4.ast +0 -0
  781. {yara_x-0.12.0 → yara_x-0.13.0}/parser/src/parser/tests/testdata/patterns-error-4.cst +0 -0
  782. {yara_x-0.12.0 → yara_x-0.13.0}/parser/src/parser/tests/testdata/patterns-error-4.in +0 -0
  783. {yara_x-0.12.0 → yara_x-0.13.0}/parser/src/parser/tests/testdata/patterns-error-5.ast +0 -0
  784. {yara_x-0.12.0 → yara_x-0.13.0}/parser/src/parser/tests/testdata/patterns-error-5.cst +0 -0
  785. {yara_x-0.12.0 → yara_x-0.13.0}/parser/src/parser/tests/testdata/patterns-error-5.in +0 -0
  786. {yara_x-0.12.0 → yara_x-0.13.0}/parser/src/parser/tests/testdata/patterns-error-6.ast +0 -0
  787. {yara_x-0.12.0 → yara_x-0.13.0}/parser/src/parser/tests/testdata/patterns-error-6.cst +0 -0
  788. {yara_x-0.12.0 → yara_x-0.13.0}/parser/src/parser/tests/testdata/patterns-error-6.in +0 -0
  789. {yara_x-0.12.0 → yara_x-0.13.0}/parser/src/parser/tests/testdata/patterns-error-7.ast +0 -0
  790. {yara_x-0.12.0 → yara_x-0.13.0}/parser/src/parser/tests/testdata/patterns-error-7.cst +0 -0
  791. {yara_x-0.12.0 → yara_x-0.13.0}/parser/src/parser/tests/testdata/patterns-error-7.in +0 -0
  792. {yara_x-0.12.0 → yara_x-0.13.0}/parser/src/parser/tests/testdata/rule-mods-1.ast +0 -0
  793. {yara_x-0.12.0 → yara_x-0.13.0}/parser/src/parser/tests/testdata/rule-mods-1.cst +0 -0
  794. {yara_x-0.12.0 → yara_x-0.13.0}/parser/src/parser/tests/testdata/rule-mods-1.in +0 -0
  795. {yara_x-0.12.0 → yara_x-0.13.0}/parser/src/parser/tests/testdata/rule-tags-error-1.ast +0 -0
  796. {yara_x-0.12.0 → yara_x-0.13.0}/parser/src/parser/tests/testdata/rule-tags-error-1.cst +0 -0
  797. {yara_x-0.12.0 → yara_x-0.13.0}/parser/src/parser/tests/testdata/rule-tags-error-1.in +0 -0
  798. {yara_x-0.12.0 → yara_x-0.13.0}/parser/src/parser/tests/testdata/rule-tags-error-2.ast +0 -0
  799. {yara_x-0.12.0 → yara_x-0.13.0}/parser/src/parser/tests/testdata/rule-tags-error-2.cst +0 -0
  800. {yara_x-0.12.0 → yara_x-0.13.0}/parser/src/parser/tests/testdata/rule-tags-error-2.in +0 -0
  801. {yara_x-0.12.0 → yara_x-0.13.0}/parser/src/parser/tests/testdata/rule-tags-error-3.ast +0 -0
  802. {yara_x-0.12.0 → yara_x-0.13.0}/parser/src/parser/tests/testdata/rule-tags-error-3.cst +0 -0
  803. {yara_x-0.12.0 → yara_x-0.13.0}/parser/src/parser/tests/testdata/rule-tags-error-3.in +0 -0
  804. {yara_x-0.12.0 → yara_x-0.13.0}/parser/src/parser/tests/testdata/rule-tags.ast +0 -0
  805. {yara_x-0.12.0 → yara_x-0.13.0}/parser/src/parser/tests/testdata/rule-tags.cst +0 -0
  806. {yara_x-0.12.0 → yara_x-0.13.0}/parser/src/parser/tests/testdata/rule-tags.in +0 -0
  807. {yara_x-0.12.0 → yara_x-0.13.0}/parser/src/parser/tests/testdata/with-1.ast +0 -0
  808. {yara_x-0.12.0 → yara_x-0.13.0}/parser/src/parser/tests/testdata/with-1.cst +0 -0
  809. {yara_x-0.12.0 → yara_x-0.13.0}/parser/src/parser/tests/testdata/with-1.in +0 -0
  810. {yara_x-0.12.0 → yara_x-0.13.0}/parser/src/parser/tests/testdata/with-2.ast +0 -0
  811. {yara_x-0.12.0 → yara_x-0.13.0}/parser/src/parser/tests/testdata/with-2.cst +0 -0
  812. {yara_x-0.12.0 → yara_x-0.13.0}/parser/src/parser/tests/testdata/with-2.in +0 -0
  813. {yara_x-0.12.0 → yara_x-0.13.0}/parser/src/parser/tests/testdata/with-error-1.ast +0 -0
  814. {yara_x-0.12.0 → yara_x-0.13.0}/parser/src/parser/tests/testdata/with-error-1.cst +0 -0
  815. {yara_x-0.12.0 → yara_x-0.13.0}/parser/src/parser/tests/testdata/with-error-1.in +0 -0
  816. {yara_x-0.12.0 → yara_x-0.13.0}/parser/src/parser/tests/testdata/with-error-2.ast +0 -0
  817. {yara_x-0.12.0 → yara_x-0.13.0}/parser/src/parser/tests/testdata/with-error-2.cst +0 -0
  818. {yara_x-0.12.0 → yara_x-0.13.0}/parser/src/parser/tests/testdata/with-error-2.in +0 -0
  819. {yara_x-0.12.0 → yara_x-0.13.0}/parser/src/parser/tests/testdata/with-error-3.ast +0 -0
  820. {yara_x-0.12.0 → yara_x-0.13.0}/parser/src/parser/tests/testdata/with-error-3.cst +0 -0
  821. {yara_x-0.12.0 → yara_x-0.13.0}/parser/src/parser/tests/testdata/with-error-3.in +0 -0
  822. {yara_x-0.12.0 → yara_x-0.13.0}/parser/src/tokenizer/tests.rs +0 -0
  823. {yara_x-0.12.0 → yara_x-0.13.0}/parser/src/tokenizer/tokens.rs +0 -0
  824. {yara_x-0.12.0 → yara_x-0.13.0}/proto/Cargo.toml +0 -0
  825. {yara_x-0.12.0 → yara_x-0.13.0}/proto/build.rs +0 -0
  826. {yara_x-0.12.0 → yara_x-0.13.0}/proto/src/lib.rs +0 -0
  827. {yara_x-0.12.0 → yara_x-0.13.0}/proto/src/yara.proto +0 -0
  828. {yara_x-0.12.0 → yara_x-0.13.0}/proto-yaml/Cargo.toml +0 -0
  829. {yara_x-0.12.0/proto → yara_x-0.13.0/proto-yaml}/README.md +0 -0
  830. {yara_x-0.12.0 → yara_x-0.13.0}/proto-yaml/build.rs +0 -0
  831. {yara_x-0.12.0 → yara_x-0.13.0}/proto-yaml/src/lib.rs +0 -0
  832. {yara_x-0.12.0 → yara_x-0.13.0}/proto-yaml/src/tests/mod.rs +0 -0
  833. {yara_x-0.12.0 → yara_x-0.13.0}/proto-yaml/src/tests/test.proto +0 -0
  834. {yara_x-0.12.0 → yara_x-0.13.0}/proto-yaml/src/tests/testdata/1.in +0 -0
  835. {yara_x-0.12.0 → yara_x-0.13.0}/proto-yaml/src/tests/testdata/1.out +0 -0
  836. {yara_x-0.12.0 → yara_x-0.13.0}/proto-yaml/src/yaml.proto +0 -0
  837. {yara_x-0.12.0 → yara_x-0.13.0}/py/README.md +0 -0
  838. {yara_x-0.12.0 → yara_x-0.13.0}/py/build.rs +0 -0
@@ -58,6 +58,12 @@ dependencies = [
58
58
  "alloc-no-stdlib",
59
59
  ]
60
60
 
61
+ [[package]]
62
+ name = "allocator-api2"
63
+ version = "0.2.21"
64
+ source = "registry+https://github.com/rust-lang/crates.io-index"
65
+ checksum = "683d7910e743518b0e34f1186f92494becacb047c7b6bf616c96772180fef923"
66
+
61
67
  [[package]]
62
68
  name = "android-tzdata"
63
69
  version = "0.1.1"
@@ -124,19 +130,20 @@ dependencies = [
124
130
 
125
131
  [[package]]
126
132
  name = "anstyle-wincon"
127
- version = "3.0.6"
133
+ version = "3.0.7"
128
134
  source = "registry+https://github.com/rust-lang/crates.io-index"
129
- checksum = "2109dbce0e72be3ec00bed26e6a7479ca384ad226efdd66db8fa2e3a38c83125"
135
+ checksum = "ca3534e77181a9cc07539ad51f2141fe32f6c3ffd4df76db8ad92346b003ae4e"
130
136
  dependencies = [
131
137
  "anstyle",
138
+ "once_cell",
132
139
  "windows-sys 0.59.0",
133
140
  ]
134
141
 
135
142
  [[package]]
136
143
  name = "anyhow"
137
- version = "1.0.94"
144
+ version = "1.0.95"
138
145
  source = "registry+https://github.com/rust-lang/crates.io-index"
139
- checksum = "c1fd03a028ef38ba2276dce7e33fcd6369c158a1bca17946c4b1b701891c1ff7"
146
+ checksum = "34ac096ce696dc2fcabef30516bb13c0a68a11d30131d3df6f04711467681b04"
140
147
 
141
148
  [[package]]
142
149
  name = "arbitrary"
@@ -149,9 +156,12 @@ dependencies = [
149
156
 
150
157
  [[package]]
151
158
  name = "array-bytes"
152
- version = "7.1.0"
159
+ version = "9.1.2"
153
160
  source = "registry+https://github.com/rust-lang/crates.io-index"
154
- checksum = "ede2733fdd21c8fde19f3d16cebc409666f2fc2b623a22c5078a6775708db5de"
161
+ checksum = "4449507daf4f07a8c8309e122d32a53d15c9f33e77eaf01c839fea42ccd4d673"
162
+ dependencies = [
163
+ "smallvec",
164
+ ]
155
165
 
156
166
  [[package]]
157
167
  name = "ascii_tree"
@@ -161,9 +171,9 @@ checksum = "ca6c635b3aa665c649ad1415f1573c85957dfa47690ec27aebe7ec17efe3c643"
161
171
 
162
172
  [[package]]
163
173
  name = "asn1-rs"
164
- version = "0.6.2"
174
+ version = "0.7.0"
165
175
  source = "registry+https://github.com/rust-lang/crates.io-index"
166
- checksum = "5493c3bedbacf7fd7382c6346bbd66687d12bbaad3a89a2d2c303ee6cf20b048"
176
+ checksum = "607495ec7113b178fbba7a6166a27f99e774359ef4823adbefd756b5b81d7970"
167
177
  dependencies = [
168
178
  "asn1-rs-derive",
169
179
  "asn1-rs-impl",
@@ -171,19 +181,19 @@ dependencies = [
171
181
  "nom 7.1.3",
172
182
  "num-traits",
173
183
  "rusticata-macros",
174
- "thiserror 1.0.69",
184
+ "thiserror 2.0.11",
175
185
  "time",
176
186
  ]
177
187
 
178
188
  [[package]]
179
189
  name = "asn1-rs-derive"
180
- version = "0.5.1"
190
+ version = "0.6.0"
181
191
  source = "registry+https://github.com/rust-lang/crates.io-index"
182
- checksum = "965c2d33e53cb6b267e148a4cb0760bc01f4904c1cd4bb4002a085bb016d1490"
192
+ checksum = "3109e49b1e4909e9db6515a30c633684d68cdeaa252f215214cb4fa1a5bfee2c"
183
193
  dependencies = [
184
194
  "proc-macro2",
185
195
  "quote",
186
- "syn 2.0.90",
196
+ "syn 2.0.96",
187
197
  "synstructure",
188
198
  ]
189
199
 
@@ -195,7 +205,38 @@ checksum = "7b18050c2cd6fe86c3a76584ef5e0baf286d038cda203eb6223df2cc413565f7"
195
205
  dependencies = [
196
206
  "proc-macro2",
197
207
  "quote",
198
- "syn 2.0.90",
208
+ "syn 2.0.96",
209
+ ]
210
+
211
+ [[package]]
212
+ name = "assert_cmd"
213
+ version = "2.0.16"
214
+ source = "registry+https://github.com/rust-lang/crates.io-index"
215
+ checksum = "dc1835b7f27878de8525dc71410b5a31cdcc5f230aed5ba5df968e09c201b23d"
216
+ dependencies = [
217
+ "anstyle",
218
+ "bstr",
219
+ "doc-comment",
220
+ "libc",
221
+ "predicates",
222
+ "predicates-core",
223
+ "predicates-tree",
224
+ "wait-timeout",
225
+ ]
226
+
227
+ [[package]]
228
+ name = "assert_fs"
229
+ version = "1.1.2"
230
+ source = "registry+https://github.com/rust-lang/crates.io-index"
231
+ checksum = "7efdb1fdb47602827a342857666feb372712cbc64b414172bd6b167a02927674"
232
+ dependencies = [
233
+ "anstyle",
234
+ "doc-comment",
235
+ "globwalk",
236
+ "predicates",
237
+ "predicates-core",
238
+ "predicates-tree",
239
+ "tempfile",
199
240
  ]
200
241
 
201
242
  [[package]]
@@ -260,15 +301,12 @@ checksum = "bef38d45163c2f1dde094a7dfd33ccf595c92905c8f8f4fdc18d06fb1037718a"
260
301
 
261
302
  [[package]]
262
303
  name = "bitflags"
263
- version = "2.6.0"
264
- source = "registry+https://github.com/rust-lang/crates.io-index"
265
- checksum = "b048fb63fd8b5923fc5aa7b340d8e156aec7ec02f0c78fa8a6ddc2613f6f71de"
266
-
267
- [[package]]
268
- name = "bitmask"
269
- version = "0.5.0"
304
+ version = "2.8.0"
270
305
  source = "registry+https://github.com/rust-lang/crates.io-index"
271
- checksum = "5da9b3d9f6f585199287a473f4f8dfab6566cf827d15c00c219f53c645687ead"
306
+ checksum = "8f68f53c83ab957f72c32642f3868eec03eb974d1fb82e453128456482613d36"
307
+ dependencies = [
308
+ "serde",
309
+ ]
272
310
 
273
311
  [[package]]
274
312
  name = "bitvec"
@@ -323,9 +361,9 @@ dependencies = [
323
361
 
324
362
  [[package]]
325
363
  name = "bstr"
326
- version = "1.11.0"
364
+ version = "1.11.3"
327
365
  source = "registry+https://github.com/rust-lang/crates.io-index"
328
- checksum = "1a68f1f47cdf0ec8ee4b941b2eee2a80cb796db73118c0dd09ac63fbe405be22"
366
+ checksum = "531a9155a481e2ee699d4f98f43c0ca4ff8ee1bfd55c31e9e98fb29d2b176fe0"
329
367
  dependencies = [
330
368
  "memchr",
331
369
  "regex-automata",
@@ -337,6 +375,9 @@ name = "bumpalo"
337
375
  version = "3.16.0"
338
376
  source = "registry+https://github.com/rust-lang/crates.io-index"
339
377
  checksum = "79296716171880943b8470b5f8d03aa55eb2e645a4874bdbb28adb49162e012c"
378
+ dependencies = [
379
+ "allocator-api2",
380
+ ]
340
381
 
341
382
  [[package]]
342
383
  name = "bytecount"
@@ -346,9 +387,9 @@ checksum = "5ce89b21cab1437276d2650d57e971f9d548a2d9037cc231abdc0562b97498ce"
346
387
 
347
388
  [[package]]
348
389
  name = "bytemuck"
349
- version = "1.20.0"
390
+ version = "1.21.0"
350
391
  source = "registry+https://github.com/rust-lang/crates.io-index"
351
- checksum = "8b37c88a63ffd85d15b406896cc343916d7cf57838a847b3a6f2ca5d39a5695a"
392
+ checksum = "ef657dfab802224e671f5818e9a4935f9b1957ed18e58292690cc39e7a4092a3"
352
393
 
353
394
  [[package]]
354
395
  name = "byteorder"
@@ -409,7 +450,7 @@ checksum = "4acbb09d9ee8e23699b9634375c72795d095bf268439da88562cf9b501f181fa"
409
450
  dependencies = [
410
451
  "camino",
411
452
  "cargo-platform",
412
- "semver 1.0.23",
453
+ "semver 1.0.24",
413
454
  "serde",
414
455
  "serde_json",
415
456
  ]
@@ -425,9 +466,9 @@ dependencies = [
425
466
 
426
467
  [[package]]
427
468
  name = "cbindgen"
428
- version = "0.27.0"
469
+ version = "0.28.0"
429
470
  source = "registry+https://github.com/rust-lang/crates.io-index"
430
- checksum = "3fce8dd7fcfcbf3a0a87d8f515194b49d6135acab73e18bd380d1d93bb1a15eb"
471
+ checksum = "eadd868a2ce9ca38de7eeafdcec9c7065ef89b42b32f0839278d55f35c54d1ff"
431
472
  dependencies = [
432
473
  "clap",
433
474
  "heck 0.4.1",
@@ -437,16 +478,16 @@ dependencies = [
437
478
  "quote",
438
479
  "serde",
439
480
  "serde_json",
440
- "syn 2.0.90",
481
+ "syn 2.0.96",
441
482
  "tempfile",
442
483
  "toml",
443
484
  ]
444
485
 
445
486
  [[package]]
446
487
  name = "cc"
447
- version = "1.2.3"
488
+ version = "1.2.9"
448
489
  source = "registry+https://github.com/rust-lang/crates.io-index"
449
- checksum = "27f657647bcff5394bf56c7317665bbf790a137a50eaaa5c6bfbb9e27a518f2d"
490
+ checksum = "c8293772165d9345bdaaa39b45b2109591e63fe5e6fbc23c6ff930a048aa310b"
450
491
  dependencies = [
451
492
  "jobserver",
452
493
  "libc",
@@ -496,9 +537,9 @@ dependencies = [
496
537
 
497
538
  [[package]]
498
539
  name = "clap"
499
- version = "4.5.23"
540
+ version = "4.5.26"
500
541
  source = "registry+https://github.com/rust-lang/crates.io-index"
501
- checksum = "3135e7ec2ef7b10c6ed8950f0f792ed96ee093fa088608f1c76e569722700c84"
542
+ checksum = "a8eb5e908ef3a6efbe1ed62520fb7287959888c88485abe072543190ecc66783"
502
543
  dependencies = [
503
544
  "clap_builder",
504
545
  "clap_derive",
@@ -506,9 +547,9 @@ dependencies = [
506
547
 
507
548
  [[package]]
508
549
  name = "clap_builder"
509
- version = "4.5.23"
550
+ version = "4.5.26"
510
551
  source = "registry+https://github.com/rust-lang/crates.io-index"
511
- checksum = "30582fc632330df2bd26877bde0c1f4470d57c582bbc070376afcd04d8cb4838"
552
+ checksum = "96b01801b5fc6a0a232407abc821660c9c6d25a1cafc0d4f85f29fb8d9afc121"
512
553
  dependencies = [
513
554
  "anstream",
514
555
  "anstyle",
@@ -518,23 +559,23 @@ dependencies = [
518
559
 
519
560
  [[package]]
520
561
  name = "clap_complete"
521
- version = "4.5.38"
562
+ version = "4.5.42"
522
563
  source = "registry+https://github.com/rust-lang/crates.io-index"
523
- checksum = "d9647a559c112175f17cf724dc72d3645680a883c58481332779192b0d8e7a01"
564
+ checksum = "33a7e468e750fa4b6be660e8b5651ad47372e8fb114030b594c2d75d48c5ffd0"
524
565
  dependencies = [
525
566
  "clap",
526
567
  ]
527
568
 
528
569
  [[package]]
529
570
  name = "clap_derive"
530
- version = "4.5.18"
571
+ version = "4.5.24"
531
572
  source = "registry+https://github.com/rust-lang/crates.io-index"
532
- checksum = "4ac6a0c7b1a9e9a5186361f67dfa1b88213572f427fb9ab038efb2bd8c582dab"
573
+ checksum = "54b755194d6389280185988721fffba69495eed5ee9feeee9a599b53db80318c"
533
574
  dependencies = [
534
575
  "heck 0.5.0",
535
576
  "proc-macro2",
536
577
  "quote",
537
- "syn 2.0.90",
578
+ "syn 2.0.96",
538
579
  ]
539
580
 
540
581
  [[package]]
@@ -581,14 +622,14 @@ dependencies = [
581
622
 
582
623
  [[package]]
583
624
  name = "console"
584
- version = "0.15.8"
625
+ version = "0.15.10"
585
626
  source = "registry+https://github.com/rust-lang/crates.io-index"
586
- checksum = "0e1f83fc076bd6dd27517eacdf25fef6c4dfe5f1d7448bafaaf3a26f13b5e4eb"
627
+ checksum = "ea3c6ecd8059b57859df5c69830340ed3c41d30e3da0c1cbed90a96ac853041b"
587
628
  dependencies = [
588
629
  "encode_unicode",
589
- "lazy_static",
590
630
  "libc",
591
- "windows-sys 0.52.0",
631
+ "once_cell",
632
+ "windows-sys 0.59.0",
592
633
  ]
593
634
 
594
635
  [[package]]
@@ -646,18 +687,18 @@ dependencies = [
646
687
 
647
688
  [[package]]
648
689
  name = "cranelift-bforest"
649
- version = "0.113.1"
690
+ version = "0.116.1"
650
691
  source = "registry+https://github.com/rust-lang/crates.io-index"
651
- checksum = "540b193ff98b825a1f250a75b3118911af918a734154c69d80bcfcf91e7e9522"
692
+ checksum = "e15d04a0ce86cb36ead88ad68cf693ffd6cda47052b9e0ac114bc47fd9cd23c4"
652
693
  dependencies = [
653
694
  "cranelift-entity",
654
695
  ]
655
696
 
656
697
  [[package]]
657
698
  name = "cranelift-bitset"
658
- version = "0.113.1"
699
+ version = "0.116.1"
659
700
  source = "registry+https://github.com/rust-lang/crates.io-index"
660
- checksum = "c7cb269598b9557ab942d687d3c1086d77c4b50dcf35813f3a65ba306fd42279"
701
+ checksum = "7c6e3969a7ce267259ce244b7867c5d3bc9e65b0a87e81039588dfdeaede9f34"
661
702
  dependencies = [
662
703
  "serde",
663
704
  "serde_derive",
@@ -665,9 +706,9 @@ dependencies = [
665
706
 
666
707
  [[package]]
667
708
  name = "cranelift-codegen"
668
- version = "0.113.1"
709
+ version = "0.116.1"
669
710
  source = "registry+https://github.com/rust-lang/crates.io-index"
670
- checksum = "46566d7c83a8bff4150748d66020f4c7224091952aa4b4df1ec4959c39d937a1"
711
+ checksum = "2c22032c4cb42558371cf516bb47f26cdad1819d3475c133e93c49f50ebf304e"
671
712
  dependencies = [
672
713
  "bumpalo",
673
714
  "cranelift-bforest",
@@ -682,39 +723,40 @@ dependencies = [
682
723
  "log",
683
724
  "regalloc2",
684
725
  "rustc-hash 2.1.0",
726
+ "serde",
685
727
  "smallvec",
686
- "target-lexicon",
728
+ "target-lexicon 0.13.1",
687
729
  ]
688
730
 
689
731
  [[package]]
690
732
  name = "cranelift-codegen-meta"
691
- version = "0.113.1"
733
+ version = "0.116.1"
692
734
  source = "registry+https://github.com/rust-lang/crates.io-index"
693
- checksum = "2df8a86a34236cc75a8a6a271973da779c2aeb36c43b6e14da474cf931317082"
735
+ checksum = "c904bc71c61b27fc57827f4a1379f29de64fe95653b620a3db77d59655eee0b8"
694
736
  dependencies = [
695
737
  "cranelift-codegen-shared",
696
738
  ]
697
739
 
698
740
  [[package]]
699
741
  name = "cranelift-codegen-shared"
700
- version = "0.113.1"
742
+ version = "0.116.1"
701
743
  source = "registry+https://github.com/rust-lang/crates.io-index"
702
- checksum = "cf75340b6a57b7c7c1b74f10d3d90883ee6d43a554be8131a4046c2ebcf5eb65"
744
+ checksum = "40180f5497572f644ce88c255480981ae2ec1d7bb4d8e0c0136a13b87a2f2ceb"
703
745
 
704
746
  [[package]]
705
747
  name = "cranelift-control"
706
- version = "0.113.1"
748
+ version = "0.116.1"
707
749
  source = "registry+https://github.com/rust-lang/crates.io-index"
708
- checksum = "2e84495bc5d23d86aad8c86f8ade4af765b94882af60d60e271d3153942f1978"
750
+ checksum = "26d132c6d0bd8a489563472afc171759da0707804a65ece7ceb15a8c6d7dd5ef"
709
751
  dependencies = [
710
752
  "arbitrary",
711
753
  ]
712
754
 
713
755
  [[package]]
714
756
  name = "cranelift-entity"
715
- version = "0.113.1"
757
+ version = "0.116.1"
716
758
  source = "registry+https://github.com/rust-lang/crates.io-index"
717
- checksum = "963c17147b80df351965e57c04d20dbedc85bcaf44c3436780a59a3f1ff1b1c2"
759
+ checksum = "4b2d0d9618275474fbf679dd018ac6e009acbd6ae6850f6a67be33fb3b00b323"
718
760
  dependencies = [
719
761
  "cranelift-bitset",
720
762
  "serde",
@@ -723,31 +765,31 @@ dependencies = [
723
765
 
724
766
  [[package]]
725
767
  name = "cranelift-frontend"
726
- version = "0.113.1"
768
+ version = "0.116.1"
727
769
  source = "registry+https://github.com/rust-lang/crates.io-index"
728
- checksum = "727f02acbc4b4cb2ba38a6637101d579db50190df1dd05168c68e762851a3dd5"
770
+ checksum = "4fac41e16729107393174b0c9e3730fb072866100e1e64e80a1a963b2e484d57"
729
771
  dependencies = [
730
772
  "cranelift-codegen",
731
773
  "log",
732
774
  "smallvec",
733
- "target-lexicon",
775
+ "target-lexicon 0.13.1",
734
776
  ]
735
777
 
736
778
  [[package]]
737
779
  name = "cranelift-isle"
738
- version = "0.113.1"
780
+ version = "0.116.1"
739
781
  source = "registry+https://github.com/rust-lang/crates.io-index"
740
- checksum = "32b00cc2e03c748f2531eea01c871f502b909d30295fdcad43aec7bf5c5b4667"
782
+ checksum = "1ca20d576e5070044d0a72a9effc2deacf4d6aa650403189d8ea50126483944d"
741
783
 
742
784
  [[package]]
743
785
  name = "cranelift-native"
744
- version = "0.113.1"
786
+ version = "0.116.1"
745
787
  source = "registry+https://github.com/rust-lang/crates.io-index"
746
- checksum = "bbeaf978dc7c1a2de8bbb9162510ed218eb156697bc45590b8fbdd69bb08e8de"
788
+ checksum = "b8dee82f3f1f2c4cba9177f1cc5e350fe98764379bcd29340caa7b01f85076c7"
747
789
  dependencies = [
748
790
  "cranelift-codegen",
749
791
  "libc",
750
- "target-lexicon",
792
+ "target-lexicon 0.13.1",
751
793
  ]
752
794
 
753
795
  [[package]]
@@ -789,18 +831,18 @@ dependencies = [
789
831
 
790
832
  [[package]]
791
833
  name = "crossbeam-channel"
792
- version = "0.5.13"
834
+ version = "0.5.14"
793
835
  source = "registry+https://github.com/rust-lang/crates.io-index"
794
- checksum = "33480d6946193aa8033910124896ca395333cae7e2d1113d1fef6c3272217df2"
836
+ checksum = "06ba6d68e24814cb8de6bb986db8222d3a027d15872cabc0d18817bc3c0e4471"
795
837
  dependencies = [
796
838
  "crossbeam-utils",
797
839
  ]
798
840
 
799
841
  [[package]]
800
842
  name = "crossbeam-deque"
801
- version = "0.8.5"
843
+ version = "0.8.6"
802
844
  source = "registry+https://github.com/rust-lang/crates.io-index"
803
- checksum = "613f8cc01fe9cf1a3eb3d7f488fd2fa8388403e97039e2f73692932e291a770d"
845
+ checksum = "9dd111b7b7f7d55b72c0a6ae361660ee5853c9af73f70c3c2ef6858b950e2e51"
804
846
  dependencies = [
805
847
  "crossbeam-epoch",
806
848
  "crossbeam-utils",
@@ -817,18 +859,18 @@ dependencies = [
817
859
 
818
860
  [[package]]
819
861
  name = "crossbeam-queue"
820
- version = "0.3.11"
862
+ version = "0.3.12"
821
863
  source = "registry+https://github.com/rust-lang/crates.io-index"
822
- checksum = "df0346b5d5e76ac2fe4e327c5fd1118d6be7c51dfb18f9b7922923f287471e35"
864
+ checksum = "0f58bbc28f91df819d0aa2a2c00cd19754769c2fad90579b3592b1c9ba7a3115"
823
865
  dependencies = [
824
866
  "crossbeam-utils",
825
867
  ]
826
868
 
827
869
  [[package]]
828
870
  name = "crossbeam-utils"
829
- version = "0.8.20"
871
+ version = "0.8.21"
830
872
  source = "registry+https://github.com/rust-lang/crates.io-index"
831
- checksum = "22ec99545bb0ed0ea7bb9b8e1e9122ea386ff8a48c0922e43f36d45ab09e0e80"
873
+ checksum = "d0a5c400df2834b80a4c3327b3aad3a4c4cd4de0629063962b03235697506a28"
832
874
 
833
875
  [[package]]
834
876
  name = "crossterm"
@@ -852,7 +894,7 @@ version = "0.28.1"
852
894
  source = "registry+https://github.com/rust-lang/crates.io-index"
853
895
  checksum = "829d955a0bb380ef178a640b91779e3987da38c9aea133b20614cfed8cdea9c6"
854
896
  dependencies = [
855
- "bitflags 2.6.0",
897
+ "bitflags 2.8.0",
856
898
  "crossterm_winapi",
857
899
  "mio 1.0.3",
858
900
  "parking_lot",
@@ -906,7 +948,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
906
948
  checksum = "eb2a7d3066da2de787b7f032c736763eb7ae5d355f81a68bab2675a96008b0bf"
907
949
  dependencies = [
908
950
  "lab",
909
- "phf 0.11.2",
951
+ "phf 0.11.3",
910
952
  ]
911
953
 
912
954
  [[package]]
@@ -930,7 +972,7 @@ dependencies = [
930
972
  "proc-macro2",
931
973
  "quote",
932
974
  "strsim 0.11.1",
933
- "syn 2.0.90",
975
+ "syn 2.0.96",
934
976
  ]
935
977
 
936
978
  [[package]]
@@ -941,14 +983,14 @@ checksum = "d336a2a514f6ccccaa3e09b02d41d35330c07ddf03a62165fcec10bb561c7806"
941
983
  dependencies = [
942
984
  "darling_core",
943
985
  "quote",
944
- "syn 2.0.90",
986
+ "syn 2.0.96",
945
987
  ]
946
988
 
947
989
  [[package]]
948
990
  name = "data-encoding"
949
- version = "2.6.0"
991
+ version = "2.7.0"
950
992
  source = "registry+https://github.com/rust-lang/crates.io-index"
951
- checksum = "e8566979429cf69b49a5c740c60791108e86440e8be149bbea4fe54d2c32d6e2"
993
+ checksum = "0e60eed09d8c01d3cee5b7d30acb059b76614c918fa0f992e0dd6eeb10daad6f"
952
994
 
953
995
  [[package]]
954
996
  name = "deflate64"
@@ -975,9 +1017,9 @@ dependencies = [
975
1017
 
976
1018
  [[package]]
977
1019
  name = "der-parser"
978
- version = "9.0.0"
1020
+ version = "10.0.0"
979
1021
  source = "registry+https://github.com/rust-lang/crates.io-index"
980
- checksum = "5cd0a5c643689626bec213c4d8bd4d96acc8ffdb4ad4bb6bc16abf27d5f4b553"
1022
+ checksum = "07da5016415d5a3c4dd39b11ed26f915f52fc4e0dc197d87908bc916e51bc1a6"
981
1023
  dependencies = [
982
1024
  "asn1-rs",
983
1025
  "displaydoc",
@@ -1004,7 +1046,7 @@ checksum = "30542c1ad912e0e3d22a1935c290e12e8a29d704a420177a31faad4a601a0800"
1004
1046
  dependencies = [
1005
1047
  "proc-macro2",
1006
1048
  "quote",
1007
- "syn 2.0.90",
1049
+ "syn 2.0.96",
1008
1050
  ]
1009
1051
 
1010
1052
  [[package]]
@@ -1013,6 +1055,12 @@ version = "0.1.13"
1013
1055
  source = "registry+https://github.com/rust-lang/crates.io-index"
1014
1056
  checksum = "56254986775e3233ffa9c4d7d3faaf6d36a2c09d30b20687e9f88bc8bafc16c8"
1015
1057
 
1058
+ [[package]]
1059
+ name = "difflib"
1060
+ version = "0.4.0"
1061
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1062
+ checksum = "6184e33543162437515c2e2b48714794e37845ec9851711914eec9d308f6ebe8"
1063
+
1016
1064
  [[package]]
1017
1065
  name = "digest"
1018
1066
  version = "0.9.0"
@@ -1062,9 +1110,15 @@ checksum = "97369cbbc041bc366949bc74d34658d6cda5621039731c6310521892a3a20ae0"
1062
1110
  dependencies = [
1063
1111
  "proc-macro2",
1064
1112
  "quote",
1065
- "syn 2.0.90",
1113
+ "syn 2.0.96",
1066
1114
  ]
1067
1115
 
1116
+ [[package]]
1117
+ name = "doc-comment"
1118
+ version = "0.3.3"
1119
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1120
+ checksum = "fea41bba32d969b513997752735605054bc0dfa92b4c56bf1189f2e174be7a10"
1121
+
1068
1122
  [[package]]
1069
1123
  name = "dsa"
1070
1124
  version = "0.6.3"
@@ -1145,9 +1199,9 @@ dependencies = [
1145
1199
 
1146
1200
  [[package]]
1147
1201
  name = "encode_unicode"
1148
- version = "0.3.6"
1202
+ version = "1.0.0"
1149
1203
  source = "registry+https://github.com/rust-lang/crates.io-index"
1150
- checksum = "a357d28ed41a50f9c765dbfe56cbc04a64e53e5fc58ba79fbc34c10ef3df831f"
1204
+ checksum = "34aa73646ffb006b8f5147f3dc182bd4bcb190227ce861fc4a4844bf8e3cb2c0"
1151
1205
 
1152
1206
  [[package]]
1153
1207
  name = "encoding_rs"
@@ -1167,14 +1221,14 @@ dependencies = [
1167
1221
  "once_cell",
1168
1222
  "proc-macro2",
1169
1223
  "quote",
1170
- "syn 2.0.90",
1224
+ "syn 2.0.96",
1171
1225
  ]
1172
1226
 
1173
1227
  [[package]]
1174
1228
  name = "env_filter"
1175
- version = "0.1.2"
1229
+ version = "0.1.3"
1176
1230
  source = "registry+https://github.com/rust-lang/crates.io-index"
1177
- checksum = "4f2c92ceda6ceec50f43169f9ee8424fe2db276791afde7b2cd8bc084cb376ab"
1231
+ checksum = "186e05a59d4c50738528153b83b0b0194d3a29507dfec16eccd4b342903397d0"
1178
1232
  dependencies = [
1179
1233
  "log",
1180
1234
  "regex",
@@ -1182,9 +1236,9 @@ dependencies = [
1182
1236
 
1183
1237
  [[package]]
1184
1238
  name = "env_logger"
1185
- version = "0.11.5"
1239
+ version = "0.11.6"
1186
1240
  source = "registry+https://github.com/rust-lang/crates.io-index"
1187
- checksum = "e13fa619b91fb2381732789fc5de83b45675e882f66623b7d8cb4f643017018d"
1241
+ checksum = "dcaee3d8e3cfc3fd92428d477bc97fc29ec8716d180c0d74c643bb26166660e0"
1188
1242
  dependencies = [
1189
1243
  "anstream",
1190
1244
  "anstyle",
@@ -1292,6 +1346,15 @@ dependencies = [
1292
1346
  "miniz_oxide",
1293
1347
  ]
1294
1348
 
1349
+ [[package]]
1350
+ name = "float-cmp"
1351
+ version = "0.10.0"
1352
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1353
+ checksum = "b09cf3155332e944990140d967ff5eceb70df778b34f77d8075db46e4704e6d8"
1354
+ dependencies = [
1355
+ "num-traits",
1356
+ ]
1357
+
1295
1358
  [[package]]
1296
1359
  name = "fmmap"
1297
1360
  version = "0.3.3"
@@ -1314,9 +1377,9 @@ checksum = "3f9eec918d3f24069decb9af1554cad7c880e2da24a9afd88aca000531ab82c1"
1314
1377
 
1315
1378
  [[package]]
1316
1379
  name = "foldhash"
1317
- version = "0.1.3"
1380
+ version = "0.1.4"
1318
1381
  source = "registry+https://github.com/rust-lang/crates.io-index"
1319
- checksum = "f81ec6369c545a7d40e4589b5597581fa1c441fe1cce96dd1de43159910a36a2"
1382
+ checksum = "a0d2fde1f7b3d48b8395d5f2de76c18a528bd6a9cdde438df747bfcba3e05d6f"
1320
1383
 
1321
1384
  [[package]]
1322
1385
  name = "fraction"
@@ -1390,9 +1453,9 @@ dependencies = [
1390
1453
 
1391
1454
  [[package]]
1392
1455
  name = "glob"
1393
- version = "0.3.1"
1456
+ version = "0.3.2"
1394
1457
  source = "registry+https://github.com/rust-lang/crates.io-index"
1395
- checksum = "d2fabcfbdc87f4758337ca535fb41a6d701b65693ce38287d856d1674551ec9b"
1458
+ checksum = "a8d1add55171497b4705a648c6b583acafb01d58050a51727785f0b2c8e0a2b2"
1396
1459
 
1397
1460
  [[package]]
1398
1461
  name = "globset"
@@ -1413,7 +1476,7 @@ version = "0.9.1"
1413
1476
  source = "registry+https://github.com/rust-lang/crates.io-index"
1414
1477
  checksum = "0bf760ebf69878d9fd8f110c89703d90ce35095324d1f1edcb595c63945ee757"
1415
1478
  dependencies = [
1416
- "bitflags 2.6.0",
1479
+ "bitflags 2.8.0",
1417
1480
  "ignore",
1418
1481
  "walkdir",
1419
1482
  ]
@@ -1464,6 +1527,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
1464
1527
  checksum = "bf151400ff0baff5465007dd2f3e717f3fe502074ca563069ce3a6629d07b289"
1465
1528
  dependencies = [
1466
1529
  "foldhash",
1530
+ "serde",
1467
1531
  ]
1468
1532
 
1469
1533
  [[package]]
@@ -1504,11 +1568,11 @@ dependencies = [
1504
1568
 
1505
1569
  [[package]]
1506
1570
  name = "home"
1507
- version = "0.5.9"
1571
+ version = "0.5.11"
1508
1572
  source = "registry+https://github.com/rust-lang/crates.io-index"
1509
- checksum = "e3d1354bf6b7235cb4a0576c2619fd4ed18183f689b12b006a0ee7329eeff9a5"
1573
+ checksum = "589533453244b0995c858700322199b2becb13b627df2851f64a2775d024abcf"
1510
1574
  dependencies = [
1511
- "windows-sys 0.52.0",
1575
+ "windows-sys 0.59.0",
1512
1576
  ]
1513
1577
 
1514
1578
  [[package]]
@@ -1661,9 +1725,9 @@ dependencies = [
1661
1725
 
1662
1726
  [[package]]
1663
1727
  name = "itertools"
1664
- version = "0.13.0"
1728
+ version = "0.14.0"
1665
1729
  source = "registry+https://github.com/rust-lang/crates.io-index"
1666
- checksum = "413ee7dfc52ee1a4949ceeb7dbc8a33f2d6c088194d9f922fb8318faf1f01186"
1730
+ checksum = "2b192c782037fadd9cfa75548310488aabdbf3d2da73885b31bd0abd03351285"
1667
1731
  dependencies = [
1668
1732
  "either",
1669
1733
  ]
@@ -1685,9 +1749,9 @@ dependencies = [
1685
1749
 
1686
1750
  [[package]]
1687
1751
  name = "js-sys"
1688
- version = "0.3.76"
1752
+ version = "0.3.77"
1689
1753
  source = "registry+https://github.com/rust-lang/crates.io-index"
1690
- checksum = "6717b6b5b077764fb5966237269cb3c64edddde4b14ce42647430a78ced9e7b7"
1754
+ checksum = "1cfaf33c695fc6e08064efbc1f72ec937429614f25eef83af942d0e227c3a28f"
1691
1755
  dependencies = [
1692
1756
  "once_cell",
1693
1757
  "wasm-bindgen",
@@ -1716,9 +1780,9 @@ checksum = "884e2677b40cc8c339eaefcb701c32ef1fd2493d71118dc0ca4b6a736c93bd67"
1716
1780
 
1717
1781
  [[package]]
1718
1782
  name = "libc"
1719
- version = "0.2.168"
1783
+ version = "0.2.169"
1720
1784
  source = "registry+https://github.com/rust-lang/crates.io-index"
1721
- checksum = "5aaeb2981e0606ca11d79718f8bb01164f1d6ed75080182d3abf017e6d244b6d"
1785
+ checksum = "b5aba8db14291edd000dfcc4d620c7ebfb122c613afb886ca8803fa4e128a20a"
1722
1786
 
1723
1787
  [[package]]
1724
1788
  name = "libm"
@@ -1732,7 +1796,7 @@ version = "0.1.3"
1732
1796
  source = "registry+https://github.com/rust-lang/crates.io-index"
1733
1797
  checksum = "c0ff37bd590ca25063e35af745c343cb7a0271906fb7b37e4813e8f79f00268d"
1734
1798
  dependencies = [
1735
- "bitflags 2.6.0",
1799
+ "bitflags 2.8.0",
1736
1800
  "libc",
1737
1801
  ]
1738
1802
 
@@ -1759,7 +1823,7 @@ dependencies = [
1759
1823
  "serde",
1760
1824
  "serde-wasm-bindgen",
1761
1825
  "serde_json",
1762
- "strum",
1826
+ "strum 0.25.0",
1763
1827
  "strum_macros 0.25.3",
1764
1828
  "wasm-bindgen",
1765
1829
  ]
@@ -1817,14 +1881,14 @@ checksum = "edbe595006d355eaf9ae11db92707d4338cd2384d16866131cc1afdbdd35d8d9"
1817
1881
  dependencies = [
1818
1882
  "proc-macro2",
1819
1883
  "quote",
1820
- "syn 2.0.90",
1884
+ "syn 2.0.96",
1821
1885
  ]
1822
1886
 
1823
1887
  [[package]]
1824
1888
  name = "linux-raw-sys"
1825
- version = "0.4.14"
1889
+ version = "0.4.15"
1826
1890
  source = "registry+https://github.com/rust-lang/crates.io-index"
1827
- checksum = "78b3ae25bc7c8c38cec158d1f2757ee79e9b3740fbc7ccf0e59e4b08d793fa89"
1891
+ checksum = "d26c52dbd32dccf2d10cac7725f8eae5296885fb5703b261f7d0a0739ec807ab"
1828
1892
 
1829
1893
  [[package]]
1830
1894
  name = "lock_api"
@@ -1844,9 +1908,9 @@ checksum = "9374ef4228402d4b7e403e5838cb880d9ee663314b0a900d5a6aabf0c213552e"
1844
1908
 
1845
1909
  [[package]]
1846
1910
  name = "log"
1847
- version = "0.4.22"
1911
+ version = "0.4.25"
1848
1912
  source = "registry+https://github.com/rust-lang/crates.io-index"
1849
- checksum = "a7a70ba024b9dc04c27ea2f0c0548feb474ec5c54bba33a7f72f873a39d07b24"
1913
+ checksum = "04cbf5b083de1c7e0222a7a51dbfdba1cbe1c6ab0b15e29fff3f6c077fd9cd9f"
1850
1914
 
1851
1915
  [[package]]
1852
1916
  name = "logos"
@@ -1870,7 +1934,7 @@ dependencies = [
1870
1934
  "quote",
1871
1935
  "regex-syntax 0.8.5",
1872
1936
  "rustc_version",
1873
- "syn 2.0.90",
1937
+ "syn 2.0.96",
1874
1938
  ]
1875
1939
 
1876
1940
  [[package]]
@@ -1907,7 +1971,7 @@ version = "0.16.2"
1907
1971
  source = "registry+https://github.com/rust-lang/crates.io-index"
1908
1972
  checksum = "a200ae03df8c3dce7a963f6eeaac8feb41bf9001cb7e5ab22e3205aec2f0373d"
1909
1973
  dependencies = [
1910
- "bitflags 2.6.0",
1974
+ "bitflags 2.8.0",
1911
1975
  "libc",
1912
1976
  "magic-sys",
1913
1977
  "thiserror 1.0.69",
@@ -2013,9 +2077,9 @@ checksum = "68354c5c6bd36d73ff3feceb05efa59b6acb7626617f4962be322a825e61f79a"
2013
2077
 
2014
2078
  [[package]]
2015
2079
  name = "miniz_oxide"
2016
- version = "0.8.0"
2080
+ version = "0.8.3"
2017
2081
  source = "registry+https://github.com/rust-lang/crates.io-index"
2018
- checksum = "e2d80299ef12ff69b16a84bb182e3b9df68b5a91574d3d4fa6e41b65deec4df1"
2082
+ checksum = "b8402cab7aefae129c6977bb0ff1b8fd9a04eb5b51efc50a70bea51cda0c7924"
2019
2083
  dependencies = [
2020
2084
  "adler2",
2021
2085
  ]
@@ -2076,6 +2140,12 @@ dependencies = [
2076
2140
  "minimal-lexical",
2077
2141
  ]
2078
2142
 
2143
+ [[package]]
2144
+ name = "normalize-line-endings"
2145
+ version = "0.3.0"
2146
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2147
+ checksum = "61807f77802ff30975e01f4f071c8ba10c022052f98b3294119f3e615d13e5be"
2148
+
2079
2149
  [[package]]
2080
2150
  name = "num"
2081
2151
  version = "0.4.3"
@@ -2151,7 +2221,7 @@ checksum = "ed3955f1a9c7c0c15e092f9c887db08b1fc683305fdf6eb6684f22555355e202"
2151
2221
  dependencies = [
2152
2222
  "proc-macro2",
2153
2223
  "quote",
2154
- "syn 2.0.90",
2224
+ "syn 2.0.96",
2155
2225
  ]
2156
2226
 
2157
2227
  [[package]]
@@ -2197,9 +2267,9 @@ dependencies = [
2197
2267
 
2198
2268
  [[package]]
2199
2269
  name = "object"
2200
- version = "0.36.5"
2270
+ version = "0.36.7"
2201
2271
  source = "registry+https://github.com/rust-lang/crates.io-index"
2202
- checksum = "aedf0a2d09c573ed1d8d85b30c119153926a2b36dce0ab28322c09a117a4683e"
2272
+ checksum = "62948e14d923ea95ea2c7c86c71013138b66525b86bdc08d2dcc262bdb497b87"
2203
2273
  dependencies = [
2204
2274
  "crc32fast",
2205
2275
  "hashbrown 0.15.2",
@@ -2209,9 +2279,9 @@ dependencies = [
2209
2279
 
2210
2280
  [[package]]
2211
2281
  name = "oid-registry"
2212
- version = "0.7.1"
2282
+ version = "0.8.0"
2213
2283
  source = "registry+https://github.com/rust-lang/crates.io-index"
2214
- checksum = "a8d8034d9489cdaf79228eb9f6a3b8d7bb32ba00d6645ebd48eef4077ceb5bd9"
2284
+ checksum = "264c56d1492c13e769662197fb6b94e0a52abe52d27efac374615799a4bf453d"
2215
2285
  dependencies = [
2216
2286
  "asn1-rs",
2217
2287
  ]
@@ -2239,9 +2309,9 @@ dependencies = [
2239
2309
 
2240
2310
  [[package]]
2241
2311
  name = "ordered-float"
2242
- version = "4.5.0"
2312
+ version = "4.6.0"
2243
2313
  source = "registry+https://github.com/rust-lang/crates.io-index"
2244
- checksum = "c65ee1f9701bf938026630b455d5315f490640234259037edb259798b3bcf85e"
2314
+ checksum = "7bb71e1b3fa6ca1c61f383464aaf2bb0e2f8e772a1f01d486832464de363b951"
2245
2315
  dependencies = [
2246
2316
  "num-traits",
2247
2317
  ]
@@ -2316,7 +2386,7 @@ dependencies = [
2316
2386
  "regex",
2317
2387
  "regex-syntax 0.7.5",
2318
2388
  "structmeta",
2319
- "syn 2.0.90",
2389
+ "syn 2.0.96",
2320
2390
  ]
2321
2391
 
2322
2392
  [[package]]
@@ -2351,7 +2421,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
2351
2421
  checksum = "8b7cafe60d6cf8e62e1b9b2ea516a089c008945bb5a275416789e7db0bc199dc"
2352
2422
  dependencies = [
2353
2423
  "memchr",
2354
- "thiserror 2.0.6",
2424
+ "thiserror 2.0.11",
2355
2425
  "ucd-trie",
2356
2426
  ]
2357
2427
 
@@ -2375,7 +2445,7 @@ dependencies = [
2375
2445
  "pest_meta",
2376
2446
  "proc-macro2",
2377
2447
  "quote",
2378
- "syn 2.0.90",
2448
+ "syn 2.0.96",
2379
2449
  ]
2380
2450
 
2381
2451
  [[package]]
@@ -2400,45 +2470,45 @@ dependencies = [
2400
2470
 
2401
2471
  [[package]]
2402
2472
  name = "phf"
2403
- version = "0.11.2"
2473
+ version = "0.11.3"
2404
2474
  source = "registry+https://github.com/rust-lang/crates.io-index"
2405
- checksum = "ade2d8b8f33c7333b51bcf0428d37e217e9f32192ae4772156f65063b8ce03dc"
2475
+ checksum = "1fd6780a80ae0c52cc120a26a1a42c1ae51b247a253e4e06113d23d2c2edd078"
2406
2476
  dependencies = [
2407
2477
  "phf_macros",
2408
- "phf_shared 0.11.2",
2478
+ "phf_shared 0.11.3",
2409
2479
  ]
2410
2480
 
2411
2481
  [[package]]
2412
2482
  name = "phf_codegen"
2413
- version = "0.11.2"
2483
+ version = "0.11.3"
2414
2484
  source = "registry+https://github.com/rust-lang/crates.io-index"
2415
- checksum = "e8d39688d359e6b34654d328e262234662d16cc0f60ec8dcbe5e718709342a5a"
2485
+ checksum = "aef8048c789fa5e851558d709946d6d79a8ff88c0440c587967f8e94bfb1216a"
2416
2486
  dependencies = [
2417
2487
  "phf_generator",
2418
- "phf_shared 0.11.2",
2488
+ "phf_shared 0.11.3",
2419
2489
  ]
2420
2490
 
2421
2491
  [[package]]
2422
2492
  name = "phf_generator"
2423
- version = "0.11.2"
2493
+ version = "0.11.3"
2424
2494
  source = "registry+https://github.com/rust-lang/crates.io-index"
2425
- checksum = "48e4cc64c2ad9ebe670cb8fd69dd50ae301650392e81c05f9bfcb2d5bdbc24b0"
2495
+ checksum = "3c80231409c20246a13fddb31776fb942c38553c51e871f8cbd687a4cfb5843d"
2426
2496
  dependencies = [
2427
- "phf_shared 0.11.2",
2497
+ "phf_shared 0.11.3",
2428
2498
  "rand",
2429
2499
  ]
2430
2500
 
2431
2501
  [[package]]
2432
2502
  name = "phf_macros"
2433
- version = "0.11.2"
2503
+ version = "0.11.3"
2434
2504
  source = "registry+https://github.com/rust-lang/crates.io-index"
2435
- checksum = "3444646e286606587e49f3bcf1679b8cef1dc2c5ecc29ddacaffc305180d464b"
2505
+ checksum = "f84ac04429c13a7ff43785d75ad27569f2951ce0ffd30a3321230db2fc727216"
2436
2506
  dependencies = [
2437
2507
  "phf_generator",
2438
- "phf_shared 0.11.2",
2508
+ "phf_shared 0.11.3",
2439
2509
  "proc-macro2",
2440
2510
  "quote",
2441
- "syn 2.0.90",
2511
+ "syn 2.0.96",
2442
2512
  ]
2443
2513
 
2444
2514
  [[package]]
@@ -2447,16 +2517,16 @@ version = "0.10.0"
2447
2517
  source = "registry+https://github.com/rust-lang/crates.io-index"
2448
2518
  checksum = "b6796ad771acdc0123d2a88dc428b5e38ef24456743ddb1744ed628f9815c096"
2449
2519
  dependencies = [
2450
- "siphasher",
2520
+ "siphasher 0.3.11",
2451
2521
  ]
2452
2522
 
2453
2523
  [[package]]
2454
2524
  name = "phf_shared"
2455
- version = "0.11.2"
2525
+ version = "0.11.3"
2456
2526
  source = "registry+https://github.com/rust-lang/crates.io-index"
2457
- checksum = "90fcb95eef784c2ac79119d1dd819e162b5da872ce6f3c3abe1e8ca1c082f72b"
2527
+ checksum = "67eabc2ef2a60eb7faa00097bd1ffdb5bd28e62bf39990626a582201b7a754e5"
2458
2528
  dependencies = [
2459
- "siphasher",
2529
+ "siphasher 1.0.1",
2460
2530
  ]
2461
2531
 
2462
2532
  [[package]]
@@ -2519,6 +2589,36 @@ dependencies = [
2519
2589
  "zerocopy",
2520
2590
  ]
2521
2591
 
2592
+ [[package]]
2593
+ name = "predicates"
2594
+ version = "3.1.3"
2595
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2596
+ checksum = "a5d19ee57562043d37e82899fade9a22ebab7be9cef5026b07fda9cdd4293573"
2597
+ dependencies = [
2598
+ "anstyle",
2599
+ "difflib",
2600
+ "float-cmp",
2601
+ "normalize-line-endings",
2602
+ "predicates-core",
2603
+ "regex",
2604
+ ]
2605
+
2606
+ [[package]]
2607
+ name = "predicates-core"
2608
+ version = "1.0.9"
2609
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2610
+ checksum = "727e462b119fe9c93fd0eb1429a5f7647394014cf3c04ab2c0350eeb09095ffa"
2611
+
2612
+ [[package]]
2613
+ name = "predicates-tree"
2614
+ version = "1.0.12"
2615
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2616
+ checksum = "72dd2d6d381dfb73a193c7fca536518d7caee39fc8503f74e7dc0be0531b425c"
2617
+ dependencies = [
2618
+ "predicates-core",
2619
+ "termtree",
2620
+ ]
2621
+
2522
2622
  [[package]]
2523
2623
  name = "pretty_assertions"
2524
2624
  version = "1.4.1"
@@ -2540,9 +2640,9 @@ dependencies = [
2540
2640
 
2541
2641
  [[package]]
2542
2642
  name = "proc-macro2"
2543
- version = "1.0.92"
2643
+ version = "1.0.93"
2544
2644
  source = "registry+https://github.com/rust-lang/crates.io-index"
2545
- checksum = "37d3544b3f2748c54e147655edb5025752e2303145b5aefb3c3ea2c78b973bb0"
2645
+ checksum = "60946a68e5f9d28b0dc1c21bb8a97ee7d018a8b322fa57838ba31cc878e22d99"
2546
2646
  dependencies = [
2547
2647
  "unicode-ident",
2548
2648
  ]
@@ -2624,27 +2724,28 @@ version = "0.9.6"
2624
2724
  source = "registry+https://github.com/rust-lang/crates.io-index"
2625
2725
  checksum = "57206b407293d2bcd3af849ce869d52068623f19e1b5ff8e8778e3309439682b"
2626
2726
  dependencies = [
2627
- "bitflags 2.6.0",
2727
+ "bitflags 2.8.0",
2628
2728
  "memchr",
2629
2729
  "unicase",
2630
2730
  ]
2631
2731
 
2632
2732
  [[package]]
2633
2733
  name = "pulley-interpreter"
2634
- version = "26.0.1"
2734
+ version = "29.0.1"
2635
2735
  source = "registry+https://github.com/rust-lang/crates.io-index"
2636
- checksum = "df33e7f8a43ccc7f93b330fef4baf271764674926f3f4d40f4a196d54de8af26"
2736
+ checksum = "62d95f8575df49a2708398182f49a888cf9dc30210fb1fd2df87c889edcee75d"
2637
2737
  dependencies = [
2638
2738
  "cranelift-bitset",
2639
2739
  "log",
2640
2740
  "sptr",
2741
+ "wasmtime-math",
2641
2742
  ]
2642
2743
 
2643
2744
  [[package]]
2644
2745
  name = "pyo3"
2645
- version = "0.23.3"
2746
+ version = "0.23.4"
2646
2747
  source = "registry+https://github.com/rust-lang/crates.io-index"
2647
- checksum = "e484fd2c8b4cb67ab05a318f1fd6fa8f199fcc30819f08f07d200809dba26c15"
2748
+ checksum = "57fe09249128b3173d092de9523eaa75136bf7ba85e0d69eca241c7939c933cc"
2648
2749
  dependencies = [
2649
2750
  "cfg-if",
2650
2751
  "indoc",
@@ -2660,19 +2761,19 @@ dependencies = [
2660
2761
 
2661
2762
  [[package]]
2662
2763
  name = "pyo3-build-config"
2663
- version = "0.23.3"
2764
+ version = "0.23.4"
2664
2765
  source = "registry+https://github.com/rust-lang/crates.io-index"
2665
- checksum = "dc0e0469a84f208e20044b98965e1561028180219e35352a2afaf2b942beff3b"
2766
+ checksum = "1cd3927b5a78757a0d71aa9dff669f903b1eb64b54142a9bd9f757f8fde65fd7"
2666
2767
  dependencies = [
2667
2768
  "once_cell",
2668
- "target-lexicon",
2769
+ "target-lexicon 0.12.16",
2669
2770
  ]
2670
2771
 
2671
2772
  [[package]]
2672
2773
  name = "pyo3-ffi"
2673
- version = "0.23.3"
2774
+ version = "0.23.4"
2674
2775
  source = "registry+https://github.com/rust-lang/crates.io-index"
2675
- checksum = "eb1547a7f9966f6f1a0f0227564a9945fe36b90da5a93b3933fc3dc03fae372d"
2776
+ checksum = "dab6bb2102bd8f991e7749f130a70d05dd557613e39ed2deeee8e9ca0c4d548d"
2676
2777
  dependencies = [
2677
2778
  "libc",
2678
2779
  "pyo3-build-config",
@@ -2690,34 +2791,34 @@ dependencies = [
2690
2791
 
2691
2792
  [[package]]
2692
2793
  name = "pyo3-macros"
2693
- version = "0.23.3"
2794
+ version = "0.23.4"
2694
2795
  source = "registry+https://github.com/rust-lang/crates.io-index"
2695
- checksum = "fdb6da8ec6fa5cedd1626c886fc8749bdcbb09424a86461eb8cdf096b7c33257"
2796
+ checksum = "91871864b353fd5ffcb3f91f2f703a22a9797c91b9ab497b1acac7b07ae509c7"
2696
2797
  dependencies = [
2697
2798
  "proc-macro2",
2698
2799
  "pyo3-macros-backend",
2699
2800
  "quote",
2700
- "syn 2.0.90",
2801
+ "syn 2.0.96",
2701
2802
  ]
2702
2803
 
2703
2804
  [[package]]
2704
2805
  name = "pyo3-macros-backend"
2705
- version = "0.23.3"
2806
+ version = "0.23.4"
2706
2807
  source = "registry+https://github.com/rust-lang/crates.io-index"
2707
- checksum = "38a385202ff5a92791168b1136afae5059d3ac118457bb7bc304c197c2d33e7d"
2808
+ checksum = "43abc3b80bc20f3facd86cd3c60beed58c3e2aa26213f3cda368de39c60a27e4"
2708
2809
  dependencies = [
2709
2810
  "heck 0.5.0",
2710
2811
  "proc-macro2",
2711
2812
  "pyo3-build-config",
2712
2813
  "quote",
2713
- "syn 2.0.90",
2814
+ "syn 2.0.96",
2714
2815
  ]
2715
2816
 
2716
2817
  [[package]]
2717
2818
  name = "quanta"
2718
- version = "0.12.3"
2819
+ version = "0.12.5"
2719
2820
  source = "registry+https://github.com/rust-lang/crates.io-index"
2720
- checksum = "8e5167a477619228a0b284fac2674e3c388cba90631d7b7de620e6f1fcd08da5"
2821
+ checksum = "3bd1fe6824cea6538803de3ff1bc0cf3949024db3d43c9643024bfb33a807c0e"
2721
2822
  dependencies = [
2722
2823
  "crossbeam-utils",
2723
2824
  "libc",
@@ -2730,9 +2831,9 @@ dependencies = [
2730
2831
 
2731
2832
  [[package]]
2732
2833
  name = "quote"
2733
- version = "1.0.37"
2834
+ version = "1.0.38"
2734
2835
  source = "registry+https://github.com/rust-lang/crates.io-index"
2735
- checksum = "b5b9d34b8991d19d98081b46eacdd8eb58c6f2b201139f7c5f643cc155a633af"
2836
+ checksum = "0e4dccaaaf89514f546c693ddc140f729f958c247918a13380cccc6078391acc"
2736
2837
  dependencies = [
2737
2838
  "proc-macro2",
2738
2839
  ]
@@ -2775,11 +2876,11 @@ dependencies = [
2775
2876
 
2776
2877
  [[package]]
2777
2878
  name = "raw-cpuid"
2778
- version = "11.2.0"
2879
+ version = "11.3.0"
2779
2880
  source = "registry+https://github.com/rust-lang/crates.io-index"
2780
- checksum = "1ab240315c661615f2ee9f0f2cd32d5a7343a84d5ebcccb99d46e6637565e7b0"
2881
+ checksum = "c6928fa44c097620b706542d428957635951bade7143269085389d42c8a4927e"
2781
2882
  dependencies = [
2782
- "bitflags 2.6.0",
2883
+ "bitflags 2.8.0",
2783
2884
  ]
2784
2885
 
2785
2886
  [[package]]
@@ -2804,11 +2905,11 @@ dependencies = [
2804
2905
 
2805
2906
  [[package]]
2806
2907
  name = "redox_syscall"
2807
- version = "0.5.7"
2908
+ version = "0.5.8"
2808
2909
  source = "registry+https://github.com/rust-lang/crates.io-index"
2809
- checksum = "9b6dfecf2c74bce2466cabf93f6664d6998a69eb21e39f4207930065b27b771f"
2910
+ checksum = "03a862b389f93e68874fbf580b9de08dd02facb9a788ebadaf4a3fd33cf58834"
2810
2911
  dependencies = [
2811
- "bitflags 2.6.0",
2912
+ "bitflags 2.8.0",
2812
2913
  ]
2813
2914
 
2814
2915
  [[package]]
@@ -2824,14 +2925,15 @@ dependencies = [
2824
2925
 
2825
2926
  [[package]]
2826
2927
  name = "regalloc2"
2827
- version = "0.10.2"
2928
+ version = "0.11.1"
2828
2929
  source = "registry+https://github.com/rust-lang/crates.io-index"
2829
- checksum = "12908dbeb234370af84d0579b9f68258a0f67e201412dd9a2814e6f45b2fc0f0"
2930
+ checksum = "145c1c267e14f20fb0f88aa76a1c5ffec42d592c1d28b3cd9148ae35916158d3"
2830
2931
  dependencies = [
2831
- "hashbrown 0.14.5",
2932
+ "allocator-api2",
2933
+ "bumpalo",
2934
+ "hashbrown 0.15.2",
2832
2935
  "log",
2833
2936
  "rustc-hash 2.1.0",
2834
- "slice-group-by",
2835
2937
  "smallvec",
2836
2938
  ]
2837
2939
 
@@ -2951,7 +3053,7 @@ version = "0.4.1"
2951
3053
  source = "registry+https://github.com/rust-lang/crates.io-index"
2952
3054
  checksum = "cfcb3a22ef46e85b45de6ee7e79d063319ebb6594faafcf1c225ea92ab6e9b92"
2953
3055
  dependencies = [
2954
- "semver 1.0.23",
3056
+ "semver 1.0.24",
2955
3057
  ]
2956
3058
 
2957
3059
  [[package]]
@@ -2965,11 +3067,11 @@ dependencies = [
2965
3067
 
2966
3068
  [[package]]
2967
3069
  name = "rustix"
2968
- version = "0.38.42"
3070
+ version = "0.38.43"
2969
3071
  source = "registry+https://github.com/rust-lang/crates.io-index"
2970
- checksum = "f93dc38ecbab2eb790ff964bb77fa94faf256fd3e73285fd7ba0903b76bedb85"
3072
+ checksum = "a78891ee6bf2340288408954ac787aa063d8e8817e9f53abb37c695c6d834ef6"
2971
3073
  dependencies = [
2972
- "bitflags 2.6.0",
3074
+ "bitflags 2.8.0",
2973
3075
  "errno",
2974
3076
  "libc",
2975
3077
  "linux-raw-sys",
@@ -2978,9 +3080,9 @@ dependencies = [
2978
3080
 
2979
3081
  [[package]]
2980
3082
  name = "rustversion"
2981
- version = "1.0.18"
3083
+ version = "1.0.19"
2982
3084
  source = "registry+https://github.com/rust-lang/crates.io-index"
2983
- checksum = "0e819f2bc632f285be6d7cd36e25940d45b2391dd6d9b939e79de557f7014248"
3085
+ checksum = "f7c45b9784283f1b2e7fb61b42047c2fd678ef0960d4f6f1eba131594cc369d4"
2984
3086
 
2985
3087
  [[package]]
2986
3088
  name = "ryu"
@@ -3028,9 +3130,9 @@ dependencies = [
3028
3130
 
3029
3131
  [[package]]
3030
3132
  name = "semver"
3031
- version = "1.0.23"
3133
+ version = "1.0.24"
3032
3134
  source = "registry+https://github.com/rust-lang/crates.io-index"
3033
- checksum = "61697e0a1c7e512e84a621326239844a24d8207b4669b41bc18b32ea5cbf988b"
3135
+ checksum = "3cb6eb87a131f756572d7fb904f6e7b68633f09cca868c5df1c4b8d1a694bbba"
3034
3136
  dependencies = [
3035
3137
  "serde",
3036
3138
  ]
@@ -3046,9 +3148,9 @@ dependencies = [
3046
3148
 
3047
3149
  [[package]]
3048
3150
  name = "serde"
3049
- version = "1.0.215"
3151
+ version = "1.0.217"
3050
3152
  source = "registry+https://github.com/rust-lang/crates.io-index"
3051
- checksum = "6513c1ad0b11a9376da888e3e0baa0077f1aed55c17f50e7b2397136129fb88f"
3153
+ checksum = "02fc4265df13d6fa1d00ecff087228cc0a2b5f3c0e87e258d8b94a156e984c70"
3052
3154
  dependencies = [
3053
3155
  "serde_derive",
3054
3156
  ]
@@ -3066,20 +3168,20 @@ dependencies = [
3066
3168
 
3067
3169
  [[package]]
3068
3170
  name = "serde_derive"
3069
- version = "1.0.215"
3171
+ version = "1.0.217"
3070
3172
  source = "registry+https://github.com/rust-lang/crates.io-index"
3071
- checksum = "ad1e866f866923f252f05c889987993144fb74e722403468a4ebd70c3cd756c0"
3173
+ checksum = "5a9bf7cf98d04a2b28aead066b7496853d4779c9cc183c440dbac457641e19a0"
3072
3174
  dependencies = [
3073
3175
  "proc-macro2",
3074
3176
  "quote",
3075
- "syn 2.0.90",
3177
+ "syn 2.0.96",
3076
3178
  ]
3077
3179
 
3078
3180
  [[package]]
3079
3181
  name = "serde_json"
3080
- version = "1.0.133"
3182
+ version = "1.0.135"
3081
3183
  source = "registry+https://github.com/rust-lang/crates.io-index"
3082
- checksum = "c7fceb2473b9166b2294ef05efcb65a3db80803f0b03ef86a5fc88a2b85ee377"
3184
+ checksum = "2b0d7ba2887406110130a978386c4e1befb98c674b4fba677954e4db976630d9"
3083
3185
  dependencies = [
3084
3186
  "indexmap 2.7.0",
3085
3187
  "itoa",
@@ -3221,6 +3323,12 @@ version = "0.3.11"
3221
3323
  source = "registry+https://github.com/rust-lang/crates.io-index"
3222
3324
  checksum = "38b58827f4464d87d377d175e90bf58eb00fd8716ff0a62f80356b5e61555d0d"
3223
3325
 
3326
+ [[package]]
3327
+ name = "siphasher"
3328
+ version = "1.0.1"
3329
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3330
+ checksum = "56199f7ddabf13fe5074ce809e7d3f42b42ae711800501b5b16ea82ad029c39d"
3331
+
3224
3332
  [[package]]
3225
3333
  name = "skeptic"
3226
3334
  version = "0.13.7"
@@ -3236,12 +3344,6 @@ dependencies = [
3236
3344
  "walkdir",
3237
3345
  ]
3238
3346
 
3239
- [[package]]
3240
- name = "slice-group-by"
3241
- version = "0.3.1"
3242
- source = "registry+https://github.com/rust-lang/crates.io-index"
3243
- checksum = "826167069c09b99d56f31e9ae5c99049e932a98c9dc2dac47645b08dbbf76ba7"
3244
-
3245
3347
  [[package]]
3246
3348
  name = "smallvec"
3247
3349
  version = "1.13.2"
@@ -3306,7 +3408,7 @@ dependencies = [
3306
3408
  "proc-macro2",
3307
3409
  "quote",
3308
3410
  "structmeta-derive",
3309
- "syn 2.0.90",
3411
+ "syn 2.0.96",
3310
3412
  ]
3311
3413
 
3312
3414
  [[package]]
@@ -3317,7 +3419,7 @@ checksum = "a60bcaff7397072dca0017d1db428e30d5002e00b6847703e2e42005c95fbe00"
3317
3419
  dependencies = [
3318
3420
  "proc-macro2",
3319
3421
  "quote",
3320
- "syn 2.0.90",
3422
+ "syn 2.0.96",
3321
3423
  ]
3322
3424
 
3323
3425
  [[package]]
@@ -3326,6 +3428,12 @@ version = "0.25.0"
3326
3428
  source = "registry+https://github.com/rust-lang/crates.io-index"
3327
3429
  checksum = "290d54ea6f91c969195bdbcd7442c8c2a2ba87da8bf60a7ee86a235d4bc1e125"
3328
3430
 
3431
+ [[package]]
3432
+ name = "strum"
3433
+ version = "0.26.3"
3434
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3435
+ checksum = "8fec0f0aef304996cf250b31b5a10dee7980c85da9d759361292b8bca5a18f06"
3436
+
3329
3437
  [[package]]
3330
3438
  name = "strum_macros"
3331
3439
  version = "0.25.3"
@@ -3336,7 +3444,7 @@ dependencies = [
3336
3444
  "proc-macro2",
3337
3445
  "quote",
3338
3446
  "rustversion",
3339
- "syn 2.0.90",
3447
+ "syn 2.0.96",
3340
3448
  ]
3341
3449
 
3342
3450
  [[package]]
@@ -3349,7 +3457,7 @@ dependencies = [
3349
3457
  "proc-macro2",
3350
3458
  "quote",
3351
3459
  "rustversion",
3352
- "syn 2.0.90",
3460
+ "syn 2.0.96",
3353
3461
  ]
3354
3462
 
3355
3463
  [[package]]
@@ -3387,9 +3495,9 @@ dependencies = [
3387
3495
 
3388
3496
  [[package]]
3389
3497
  name = "syn"
3390
- version = "2.0.90"
3498
+ version = "2.0.96"
3391
3499
  source = "registry+https://github.com/rust-lang/crates.io-index"
3392
- checksum = "919d3b74a5dd0ccd15aeb8f93e7006bd9e14c295087c9896a110f490752bcf31"
3500
+ checksum = "d5d0adab1ae378d7f53bdebc67a39f1f151407ef230f0ce2883572f5d8985c80"
3393
3501
  dependencies = [
3394
3502
  "proc-macro2",
3395
3503
  "quote",
@@ -3404,7 +3512,7 @@ checksum = "c8af7666ab7b6390ab78131fb5b0fce11d6b7a6951602017c35fa82800708971"
3404
3512
  dependencies = [
3405
3513
  "proc-macro2",
3406
3514
  "quote",
3407
- "syn 2.0.90",
3515
+ "syn 2.0.96",
3408
3516
  ]
3409
3517
 
3410
3518
  [[package]]
@@ -3419,14 +3527,21 @@ version = "0.12.16"
3419
3527
  source = "registry+https://github.com/rust-lang/crates.io-index"
3420
3528
  checksum = "61c41af27dd6d1e27b1b16b489db798443478cef1f06a660c96db617ba5de3b1"
3421
3529
 
3530
+ [[package]]
3531
+ name = "target-lexicon"
3532
+ version = "0.13.1"
3533
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3534
+ checksum = "dc12939a1c9b9d391e0b7135f72fd30508b73450753e28341fed159317582a77"
3535
+
3422
3536
  [[package]]
3423
3537
  name = "tempfile"
3424
- version = "3.14.0"
3538
+ version = "3.15.0"
3425
3539
  source = "registry+https://github.com/rust-lang/crates.io-index"
3426
- checksum = "28cce251fcbc87fac86a866eeb0d6c2d536fc16d06f184bb61aeae11aa4cee0c"
3540
+ checksum = "9a8a559c81686f576e8cd0290cd2a24a2a9ad80c98b3478856500fcbd7acd704"
3427
3541
  dependencies = [
3428
3542
  "cfg-if",
3429
3543
  "fastrand",
3544
+ "getrandom",
3430
3545
  "once_cell",
3431
3546
  "rustix",
3432
3547
  "windows-sys 0.59.0",
@@ -3450,7 +3565,7 @@ dependencies = [
3450
3565
  "dirs",
3451
3566
  "fnv",
3452
3567
  "nom 5.1.3",
3453
- "phf 0.11.2",
3568
+ "phf 0.11.3",
3454
3569
  "phf_codegen",
3455
3570
  ]
3456
3571
 
@@ -3463,6 +3578,12 @@ dependencies = [
3463
3578
  "libc",
3464
3579
  ]
3465
3580
 
3581
+ [[package]]
3582
+ name = "termtree"
3583
+ version = "0.5.1"
3584
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3585
+ checksum = "8f50febec83f5ee1df3015341d8bd429f2d1cc62bcba7ea2076759d315084683"
3586
+
3466
3587
  [[package]]
3467
3588
  name = "termwiz"
3468
3589
  version = "0.18.0"
@@ -3492,7 +3613,7 @@ dependencies = [
3492
3613
  "semver 0.11.0",
3493
3614
  "sha2 0.9.9",
3494
3615
  "signal-hook 0.1.17",
3495
- "siphasher",
3616
+ "siphasher 0.3.11",
3496
3617
  "terminfo",
3497
3618
  "termios",
3498
3619
  "thiserror 1.0.69",
@@ -3522,11 +3643,11 @@ dependencies = [
3522
3643
 
3523
3644
  [[package]]
3524
3645
  name = "thiserror"
3525
- version = "2.0.6"
3646
+ version = "2.0.11"
3526
3647
  source = "registry+https://github.com/rust-lang/crates.io-index"
3527
- checksum = "8fec2a1820ebd077e2b90c4df007bebf344cd394098a13c563957d0afc83ea47"
3648
+ checksum = "d452f284b73e6d76dd36758a0c8684b1d5be31f92b89d07fd5822175732206fc"
3528
3649
  dependencies = [
3529
- "thiserror-impl 2.0.6",
3650
+ "thiserror-impl 2.0.11",
3530
3651
  ]
3531
3652
 
3532
3653
  [[package]]
@@ -3537,18 +3658,18 @@ checksum = "4fee6c4efc90059e10f81e6d42c60a18f76588c3d74cb83a0b242a2b6c7504c1"
3537
3658
  dependencies = [
3538
3659
  "proc-macro2",
3539
3660
  "quote",
3540
- "syn 2.0.90",
3661
+ "syn 2.0.96",
3541
3662
  ]
3542
3663
 
3543
3664
  [[package]]
3544
3665
  name = "thiserror-impl"
3545
- version = "2.0.6"
3666
+ version = "2.0.11"
3546
3667
  source = "registry+https://github.com/rust-lang/crates.io-index"
3547
- checksum = "d65750cab40f4ff1929fb1ba509e9914eb756131cef4210da8d5d700d26f6312"
3668
+ checksum = "26afc1baea8a989337eeb52b6e72a039780ce45c3edfcc9c5b9d112feeb173c2"
3548
3669
  dependencies = [
3549
3670
  "proc-macro2",
3550
3671
  "quote",
3551
- "syn 2.0.90",
3672
+ "syn 2.0.96",
3552
3673
  ]
3553
3674
 
3554
3675
  [[package]]
@@ -3654,9 +3775,9 @@ dependencies = [
3654
3775
 
3655
3776
  [[package]]
3656
3777
  name = "unicase"
3657
- version = "2.8.0"
3778
+ version = "2.8.1"
3658
3779
  source = "registry+https://github.com/rust-lang/crates.io-index"
3659
- checksum = "7e51b68083f157f853b6379db119d1c1be0e6e4dec98101079dec41f6f5cf6df"
3780
+ checksum = "75b844d17643ee918803943289730bec8aac480150456169e647ed0b576ba539"
3660
3781
 
3661
3782
  [[package]]
3662
3783
  name = "unicode-ident"
@@ -3702,9 +3823,9 @@ checksum = "06abde3611657adf66d383f00b093d7faecc7fa57071cce2578660c9f1010821"
3702
3823
 
3703
3824
  [[package]]
3704
3825
  name = "uuid"
3705
- version = "1.11.0"
3826
+ version = "1.12.0"
3706
3827
  source = "registry+https://github.com/rust-lang/crates.io-index"
3707
- checksum = "f8c5f0a0af699448548ad1a2fbf920fb4bee257eae39953ba95cb84891a0446a"
3828
+ checksum = "744018581f9a3454a9e15beb8a33b017183f1e7c0cd170232a2d1453b23a51c4"
3708
3829
  dependencies = [
3709
3830
  "getrandom",
3710
3831
  ]
@@ -3730,6 +3851,15 @@ dependencies = [
3730
3851
  "utf8parse",
3731
3852
  ]
3732
3853
 
3854
+ [[package]]
3855
+ name = "wait-timeout"
3856
+ version = "0.2.0"
3857
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3858
+ checksum = "9f200f5b12eb75f8c1ed65abd4b2db8a6e1b138a20de009dacee265a2498f3f6"
3859
+ dependencies = [
3860
+ "libc",
3861
+ ]
3862
+
3733
3863
  [[package]]
3734
3864
  name = "walkdir"
3735
3865
  version = "2.5.0"
@@ -3742,9 +3872,9 @@ dependencies = [
3742
3872
 
3743
3873
  [[package]]
3744
3874
  name = "walrus"
3745
- version = "0.23.2"
3875
+ version = "0.23.3"
3746
3876
  source = "registry+https://github.com/rust-lang/crates.io-index"
3747
- checksum = "031bc51853697a6a01731f1c2d6d56989c3a742d63316f59918c90b709a6edd9"
3877
+ checksum = "6481311b98508f4bc2d0abbfa5d42172e7a54b4b24d8f15e28b0dc650be0c59f"
3748
3878
  dependencies = [
3749
3879
  "anyhow",
3750
3880
  "gimli 0.26.2",
@@ -3765,7 +3895,7 @@ dependencies = [
3765
3895
  "heck 0.5.0",
3766
3896
  "proc-macro2",
3767
3897
  "quote",
3768
- "syn 2.0.90",
3898
+ "syn 2.0.96",
3769
3899
  ]
3770
3900
 
3771
3901
  [[package]]
@@ -3776,34 +3906,35 @@ checksum = "9c8d87e72b64a3b4db28d11ce29237c246188f4f51057d65a7eab63b7987e423"
3776
3906
 
3777
3907
  [[package]]
3778
3908
  name = "wasm-bindgen"
3779
- version = "0.2.99"
3909
+ version = "0.2.100"
3780
3910
  source = "registry+https://github.com/rust-lang/crates.io-index"
3781
- checksum = "a474f6281d1d70c17ae7aa6a613c87fce69a127e2624002df63dcb39d6cf6396"
3911
+ checksum = "1edc8929d7499fc4e8f0be2262a241556cfc54a0bea223790e71446f2aab1ef5"
3782
3912
  dependencies = [
3783
3913
  "cfg-if",
3784
3914
  "once_cell",
3915
+ "rustversion",
3785
3916
  "wasm-bindgen-macro",
3786
3917
  ]
3787
3918
 
3788
3919
  [[package]]
3789
3920
  name = "wasm-bindgen-backend"
3790
- version = "0.2.99"
3921
+ version = "0.2.100"
3791
3922
  source = "registry+https://github.com/rust-lang/crates.io-index"
3792
- checksum = "5f89bb38646b4f81674e8f5c3fb81b562be1fd936d84320f3264486418519c79"
3923
+ checksum = "2f0a0651a5c2bc21487bde11ee802ccaf4c51935d0d3d42a6101f98161700bc6"
3793
3924
  dependencies = [
3794
3925
  "bumpalo",
3795
3926
  "log",
3796
3927
  "proc-macro2",
3797
3928
  "quote",
3798
- "syn 2.0.90",
3929
+ "syn 2.0.96",
3799
3930
  "wasm-bindgen-shared",
3800
3931
  ]
3801
3932
 
3802
3933
  [[package]]
3803
3934
  name = "wasm-bindgen-macro"
3804
- version = "0.2.99"
3935
+ version = "0.2.100"
3805
3936
  source = "registry+https://github.com/rust-lang/crates.io-index"
3806
- checksum = "2cc6181fd9a7492eef6fef1f33961e3695e4579b9872a6f7c83aee556666d4fe"
3937
+ checksum = "7fe63fc6d09ed3792bd0897b314f53de8e16568c2b3f7982f468c0bf9bd0b407"
3807
3938
  dependencies = [
3808
3939
  "quote",
3809
3940
  "wasm-bindgen-macro-support",
@@ -3811,22 +3942,25 @@ dependencies = [
3811
3942
 
3812
3943
  [[package]]
3813
3944
  name = "wasm-bindgen-macro-support"
3814
- version = "0.2.99"
3945
+ version = "0.2.100"
3815
3946
  source = "registry+https://github.com/rust-lang/crates.io-index"
3816
- checksum = "30d7a95b763d3c45903ed6c81f156801839e5ee968bb07e534c44df0fcd330c2"
3947
+ checksum = "8ae87ea40c9f689fc23f209965b6fb8a99ad69aeeb0231408be24920604395de"
3817
3948
  dependencies = [
3818
3949
  "proc-macro2",
3819
3950
  "quote",
3820
- "syn 2.0.90",
3951
+ "syn 2.0.96",
3821
3952
  "wasm-bindgen-backend",
3822
3953
  "wasm-bindgen-shared",
3823
3954
  ]
3824
3955
 
3825
3956
  [[package]]
3826
3957
  name = "wasm-bindgen-shared"
3827
- version = "0.2.99"
3958
+ version = "0.2.100"
3828
3959
  source = "registry+https://github.com/rust-lang/crates.io-index"
3829
- checksum = "943aab3fdaaa029a6e0271b35ea10b72b943135afe9bffca82384098ad0e06a6"
3960
+ checksum = "1a05d73b933a847d6cccdda8f838a22ff101ad9bf93e33684f39c1f5f0eece3d"
3961
+ dependencies = [
3962
+ "unicode-ident",
3963
+ ]
3830
3964
 
3831
3965
  [[package]]
3832
3966
  name = "wasm-encoder"
@@ -3839,11 +3973,12 @@ dependencies = [
3839
3973
 
3840
3974
  [[package]]
3841
3975
  name = "wasm-encoder"
3842
- version = "0.218.0"
3976
+ version = "0.221.2"
3843
3977
  source = "registry+https://github.com/rust-lang/crates.io-index"
3844
- checksum = "22b896fa8ceb71091ace9bcb81e853f54043183a1c9667cf93422c40252ffa0a"
3978
+ checksum = "c17a3bd88f2155da63a1f2fcb8a56377a24f0b6dfed12733bb5f544e86f690c5"
3845
3979
  dependencies = [
3846
3980
  "leb128",
3981
+ "wasmparser 0.221.2",
3847
3982
  ]
3848
3983
 
3849
3984
  [[package]]
@@ -3853,53 +3988,51 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
3853
3988
  checksum = "5309c1090e3e84dad0d382f42064e9933fdaedb87e468cc239f0eabea73ddcb6"
3854
3989
  dependencies = [
3855
3990
  "ahash",
3856
- "bitflags 2.6.0",
3991
+ "bitflags 2.8.0",
3857
3992
  "hashbrown 0.14.5",
3858
3993
  "indexmap 2.7.0",
3859
- "semver 1.0.23",
3994
+ "semver 1.0.24",
3860
3995
  "serde",
3861
3996
  ]
3862
3997
 
3863
3998
  [[package]]
3864
3999
  name = "wasmparser"
3865
- version = "0.218.0"
4000
+ version = "0.221.2"
3866
4001
  source = "registry+https://github.com/rust-lang/crates.io-index"
3867
- checksum = "b09e46c7fceceaa72b2dd1a8a137ea7fd8f93dfaa69806010a709918e496c5dc"
4002
+ checksum = "9845c470a2e10b61dd42c385839cdd6496363ed63b5c9e420b5488b77bd22083"
3868
4003
  dependencies = [
3869
- "ahash",
3870
- "bitflags 2.6.0",
3871
- "hashbrown 0.14.5",
4004
+ "bitflags 2.8.0",
4005
+ "hashbrown 0.15.2",
3872
4006
  "indexmap 2.7.0",
3873
- "semver 1.0.23",
4007
+ "semver 1.0.24",
3874
4008
  "serde",
3875
4009
  ]
3876
4010
 
3877
4011
  [[package]]
3878
4012
  name = "wasmprinter"
3879
- version = "0.218.0"
4013
+ version = "0.221.2"
3880
4014
  source = "registry+https://github.com/rust-lang/crates.io-index"
3881
- checksum = "0ace089155491837b75f474bf47c99073246d1b737393fe722d6dee311595ddc"
4015
+ checksum = "a80742ff1b9e6d8c231ac7c7247782c6fc5bce503af760bca071811e5fc9ee56"
3882
4016
  dependencies = [
3883
4017
  "anyhow",
3884
4018
  "termcolor",
3885
- "wasmparser 0.218.0",
4019
+ "wasmparser 0.221.2",
3886
4020
  ]
3887
4021
 
3888
4022
  [[package]]
3889
4023
  name = "wasmtime"
3890
- version = "26.0.1"
4024
+ version = "29.0.1"
3891
4025
  source = "registry+https://github.com/rust-lang/crates.io-index"
3892
- checksum = "51e762e163fd305770c6c341df3290f0cabb3c264e7952943018e9a1ced8d917"
4026
+ checksum = "11976a250672556d1c4c04c6d5d7656ac9192ac9edc42a4587d6c21460010e69"
3893
4027
  dependencies = [
3894
4028
  "anyhow",
3895
- "bitflags 2.6.0",
4029
+ "bitflags 2.8.0",
3896
4030
  "bumpalo",
3897
4031
  "cc",
3898
4032
  "cfg-if",
3899
4033
  "hashbrown 0.14.5",
3900
4034
  "indexmap 2.7.0",
3901
4035
  "libc",
3902
- "libm",
3903
4036
  "log",
3904
4037
  "mach2",
3905
4038
  "memfd",
@@ -3915,13 +4048,15 @@ dependencies = [
3915
4048
  "serde_derive",
3916
4049
  "smallvec",
3917
4050
  "sptr",
3918
- "target-lexicon",
3919
- "wasmparser 0.218.0",
4051
+ "target-lexicon 0.13.1",
4052
+ "wasmparser 0.221.2",
3920
4053
  "wasmtime-asm-macros",
3921
4054
  "wasmtime-component-macro",
3922
4055
  "wasmtime-cranelift",
3923
4056
  "wasmtime-environ",
4057
+ "wasmtime-fiber",
3924
4058
  "wasmtime-jit-icache-coherence",
4059
+ "wasmtime-math",
3925
4060
  "wasmtime-slab",
3926
4061
  "wasmtime-versioned-export-macros",
3927
4062
  "windows-sys 0.59.0",
@@ -3929,23 +4064,23 @@ dependencies = [
3929
4064
 
3930
4065
  [[package]]
3931
4066
  name = "wasmtime-asm-macros"
3932
- version = "26.0.1"
4067
+ version = "29.0.1"
3933
4068
  source = "registry+https://github.com/rust-lang/crates.io-index"
3934
- checksum = "63caa7aebb546374e26257a1900fb93579171e7c02514cde26805b9ece3ef812"
4069
+ checksum = "1f178b0d125201fbe9f75beaf849bd3e511891f9e45ba216a5b620802ccf64f2"
3935
4070
  dependencies = [
3936
4071
  "cfg-if",
3937
4072
  ]
3938
4073
 
3939
4074
  [[package]]
3940
4075
  name = "wasmtime-component-macro"
3941
- version = "26.0.1"
4076
+ version = "29.0.1"
3942
4077
  source = "registry+https://github.com/rust-lang/crates.io-index"
3943
- checksum = "d61a4b5ce2ad9c15655e830f0eac0c38b8def30c74ecac71f452d3901e491b68"
4078
+ checksum = "d74de6592ed945d0a602f71243982a304d5d02f1e501b638addf57f42d57dfaf"
3944
4079
  dependencies = [
3945
4080
  "anyhow",
3946
4081
  "proc-macro2",
3947
4082
  "quote",
3948
- "syn 2.0.90",
4083
+ "syn 2.0.96",
3949
4084
  "wasmtime-component-util",
3950
4085
  "wasmtime-wit-bindgen",
3951
4086
  "wit-parser",
@@ -3953,15 +4088,15 @@ dependencies = [
3953
4088
 
3954
4089
  [[package]]
3955
4090
  name = "wasmtime-component-util"
3956
- version = "26.0.1"
4091
+ version = "29.0.1"
3957
4092
  source = "registry+https://github.com/rust-lang/crates.io-index"
3958
- checksum = "35e87a1212270dbb84a49af13d82594e00a92769d6952b0ea7fc4366c949f6ad"
4093
+ checksum = "707dc7b3c112ab5a366b30cfe2fb5b2f8e6a0f682f16df96a5ec582bfe6f056e"
3959
4094
 
3960
4095
  [[package]]
3961
4096
  name = "wasmtime-cranelift"
3962
- version = "26.0.1"
4097
+ version = "29.0.1"
3963
4098
  source = "registry+https://github.com/rust-lang/crates.io-index"
3964
- checksum = "7cb40dddf38c6a5eefd5ce7c1baf43b00fe44eada11a319fab22e993a960262f"
4099
+ checksum = "366be722674d4bf153290fbcbc4d7d16895cc82fb3e869f8d550ff768f9e9e87"
3965
4100
  dependencies = [
3966
4101
  "anyhow",
3967
4102
  "cfg-if",
@@ -3975,18 +4110,18 @@ dependencies = [
3975
4110
  "log",
3976
4111
  "object",
3977
4112
  "smallvec",
3978
- "target-lexicon",
4113
+ "target-lexicon 0.13.1",
3979
4114
  "thiserror 1.0.69",
3980
- "wasmparser 0.218.0",
4115
+ "wasmparser 0.221.2",
3981
4116
  "wasmtime-environ",
3982
4117
  "wasmtime-versioned-export-macros",
3983
4118
  ]
3984
4119
 
3985
4120
  [[package]]
3986
4121
  name = "wasmtime-environ"
3987
- version = "26.0.1"
4122
+ version = "29.0.1"
3988
4123
  source = "registry+https://github.com/rust-lang/crates.io-index"
3989
- checksum = "8613075e89e94a48c05862243c2b718eef1b9c337f51493ebf951e149a10fa19"
4124
+ checksum = "cdadc1af7097347aa276a4f008929810f726b5b46946971c660b6d421e9994ad"
3990
4125
  dependencies = [
3991
4126
  "anyhow",
3992
4127
  "cranelift-bitset",
@@ -3999,17 +4134,32 @@ dependencies = [
3999
4134
  "serde",
4000
4135
  "serde_derive",
4001
4136
  "smallvec",
4002
- "target-lexicon",
4003
- "wasm-encoder 0.218.0",
4004
- "wasmparser 0.218.0",
4137
+ "target-lexicon 0.13.1",
4138
+ "wasm-encoder 0.221.2",
4139
+ "wasmparser 0.221.2",
4005
4140
  "wasmprinter",
4006
4141
  ]
4007
4142
 
4143
+ [[package]]
4144
+ name = "wasmtime-fiber"
4145
+ version = "29.0.1"
4146
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4147
+ checksum = "ccba90d4119f081bca91190485650730a617be1fff5228f8c4757ce133d21117"
4148
+ dependencies = [
4149
+ "anyhow",
4150
+ "cc",
4151
+ "cfg-if",
4152
+ "rustix",
4153
+ "wasmtime-asm-macros",
4154
+ "wasmtime-versioned-export-macros",
4155
+ "windows-sys 0.59.0",
4156
+ ]
4157
+
4008
4158
  [[package]]
4009
4159
  name = "wasmtime-jit-icache-coherence"
4010
- version = "26.0.1"
4160
+ version = "29.0.1"
4011
4161
  source = "registry+https://github.com/rust-lang/crates.io-index"
4012
- checksum = "da47fba49af72581bc0dc67c8faaf5ee550e6f106e285122a184a675193701a5"
4162
+ checksum = "ec5e8552e01692e6c2e5293171704fed8abdec79d1a6995a0870ab190e5747d1"
4013
4163
  dependencies = [
4014
4164
  "anyhow",
4015
4165
  "cfg-if",
@@ -4017,28 +4167,37 @@ dependencies = [
4017
4167
  "windows-sys 0.59.0",
4018
4168
  ]
4019
4169
 
4170
+ [[package]]
4171
+ name = "wasmtime-math"
4172
+ version = "29.0.1"
4173
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4174
+ checksum = "29210ec2aa25e00f4d54605cedaf080f39ec01a872c5bd520ad04c67af1dde17"
4175
+ dependencies = [
4176
+ "libm",
4177
+ ]
4178
+
4020
4179
  [[package]]
4021
4180
  name = "wasmtime-slab"
4022
- version = "26.0.1"
4181
+ version = "29.0.1"
4023
4182
  source = "registry+https://github.com/rust-lang/crates.io-index"
4024
- checksum = "770e10cdefb15f2b6304152978e115bd062753c1ebe7221c0b6b104fa0419ff6"
4183
+ checksum = "fcb5821a96fa04ac14bc7b158bb3d5cd7729a053db5a74dad396cd513a5e5ccf"
4025
4184
 
4026
4185
  [[package]]
4027
4186
  name = "wasmtime-versioned-export-macros"
4028
- version = "26.0.1"
4187
+ version = "29.0.1"
4029
4188
  source = "registry+https://github.com/rust-lang/crates.io-index"
4030
- checksum = "db8efb877c9e5e67239d4553bb44dd2a34ae5cfb728f3cf2c5e64439c6ca6ee7"
4189
+ checksum = "86ff86db216dc0240462de40c8290887a613dddf9685508eb39479037ba97b5b"
4031
4190
  dependencies = [
4032
4191
  "proc-macro2",
4033
4192
  "quote",
4034
- "syn 2.0.90",
4193
+ "syn 2.0.96",
4035
4194
  ]
4036
4195
 
4037
4196
  [[package]]
4038
4197
  name = "wasmtime-wit-bindgen"
4039
- version = "26.0.1"
4198
+ version = "29.0.1"
4040
4199
  source = "registry+https://github.com/rust-lang/crates.io-index"
4041
- checksum = "4bef2a726fd8d1ee9b0144655e16c492dc32eb4c7c9f7e3309fcffe637870933"
4200
+ checksum = "8358319c2dd1e4db79e3c1c5d3a5af84956615343f9f89f4e4996a36816e06e6"
4042
4201
  dependencies = [
4043
4202
  "anyhow",
4044
4203
  "heck 0.5.0",
@@ -4048,9 +4207,9 @@ dependencies = [
4048
4207
 
4049
4208
  [[package]]
4050
4209
  name = "web-sys"
4051
- version = "0.3.76"
4210
+ version = "0.3.77"
4052
4211
  source = "registry+https://github.com/rust-lang/crates.io-index"
4053
- checksum = "04dd7223427d52553d3702c004d3b2fe07c148165faa56313cb00211e31c12bc"
4212
+ checksum = "33b6dd2ef9186f1f2072e409e99cd22a975331a6b3591b12c764e0e55c60d5d2"
4054
4213
  dependencies = [
4055
4214
  "js-sys",
4056
4215
  "wasm-bindgen",
@@ -4098,7 +4257,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
4098
4257
  checksum = "dfb128bacfa86734e07681fb6068e34c144698e84ee022d6e009145d1abb77b5"
4099
4258
  dependencies = [
4100
4259
  "log",
4101
- "ordered-float 4.5.0",
4260
+ "ordered-float 4.6.0",
4102
4261
  "strsim 0.10.0",
4103
4262
  "thiserror 1.0.69",
4104
4263
  "wezterm-dynamic-derive",
@@ -4383,29 +4542,29 @@ checksum = "589f6da84c646204747d1270a2a5661ea66ed1cced2631d546fdfb155959f9ec"
4383
4542
 
4384
4543
  [[package]]
4385
4544
  name = "winnow"
4386
- version = "0.6.20"
4545
+ version = "0.6.24"
4387
4546
  source = "registry+https://github.com/rust-lang/crates.io-index"
4388
- checksum = "36c1fec1a2bb5866f07c25f68c26e565c4c200aebb96d7e55710c19d3e8ac49b"
4547
+ checksum = "c8d71a593cc5c42ad7876e2c1fda56f314f3754c084128833e64f1345ff8a03a"
4389
4548
  dependencies = [
4390
4549
  "memchr",
4391
4550
  ]
4392
4551
 
4393
4552
  [[package]]
4394
4553
  name = "wit-parser"
4395
- version = "0.218.0"
4554
+ version = "0.221.2"
4396
4555
  source = "registry+https://github.com/rust-lang/crates.io-index"
4397
- checksum = "0d3d1066ab761b115f97fef2b191090faabcb0f37b555b758d3caf42d4ed9e55"
4556
+ checksum = "fbe1538eea6ea5ddbe5defd0dc82539ad7ba751e1631e9185d24a931f0a5adc8"
4398
4557
  dependencies = [
4399
4558
  "anyhow",
4400
4559
  "id-arena",
4401
4560
  "indexmap 2.7.0",
4402
4561
  "log",
4403
- "semver 1.0.23",
4562
+ "semver 1.0.24",
4404
4563
  "serde",
4405
4564
  "serde_derive",
4406
4565
  "serde_json",
4407
4566
  "unicode-xid",
4408
- "wasmparser 0.218.0",
4567
+ "wasmparser 0.221.2",
4409
4568
  ]
4410
4569
 
4411
4570
  [[package]]
@@ -4419,9 +4578,9 @@ dependencies = [
4419
4578
 
4420
4579
  [[package]]
4421
4580
  name = "x509-parser"
4422
- version = "0.16.0"
4581
+ version = "0.17.0"
4423
4582
  source = "registry+https://github.com/rust-lang/crates.io-index"
4424
- checksum = "fcbc162f30700d6f3f82a24bf7cc62ffe7caea42c0b2cba8bf7f3ae50cf51f69"
4583
+ checksum = "4569f339c0c402346d4a75a9e39cf8dad310e287eef1ff56d4c68e5067f53460"
4425
4584
  dependencies = [
4426
4585
  "asn1-rs",
4427
4586
  "data-encoding",
@@ -4431,7 +4590,7 @@ dependencies = [
4431
4590
  "oid-registry",
4432
4591
  "ring",
4433
4592
  "rusticata-macros",
4434
- "thiserror 1.0.69",
4593
+ "thiserror 2.0.11",
4435
4594
  "time",
4436
4595
  ]
4437
4596
 
@@ -4443,7 +4602,7 @@ checksum = "cfe53a6657fd280eaa890a3bc59152892ffa3e30101319d168b781ed6529b049"
4443
4602
 
4444
4603
  [[package]]
4445
4604
  name = "yara-x"
4446
- version = "0.12.0"
4605
+ version = "0.13.0"
4447
4606
  dependencies = [
4448
4607
  "aho-corasick",
4449
4608
  "annotate-snippets",
@@ -4452,7 +4611,7 @@ dependencies = [
4452
4611
  "ascii_tree",
4453
4612
  "base64 0.22.1",
4454
4613
  "bincode",
4455
- "bitmask",
4614
+ "bitflags 2.8.0",
4456
4615
  "bitvec",
4457
4616
  "bstr",
4458
4617
  "const-oid",
@@ -4467,7 +4626,7 @@ dependencies = [
4467
4626
  "ihex",
4468
4627
  "indexmap 2.7.0",
4469
4628
  "intaglio",
4470
- "itertools 0.13.0",
4629
+ "itertools 0.14.0",
4471
4630
  "lazy_static",
4472
4631
  "lingua",
4473
4632
  "linkme",
@@ -4488,6 +4647,7 @@ dependencies = [
4488
4647
  "protobuf-parse",
4489
4648
  "quanta",
4490
4649
  "rayon",
4650
+ "regex",
4491
4651
  "regex-automata",
4492
4652
  "regex-syntax 0.8.5",
4493
4653
  "roxmltree",
@@ -4498,7 +4658,8 @@ dependencies = [
4498
4658
  "sha1",
4499
4659
  "sha2 0.10.8",
4500
4660
  "smallvec",
4501
- "thiserror 2.0.6",
4661
+ "strum_macros 0.26.4",
4662
+ "thiserror 2.0.11",
4502
4663
  "tlsh-fixed",
4503
4664
  "uuid",
4504
4665
  "walrus",
@@ -4514,7 +4675,7 @@ dependencies = [
4514
4675
 
4515
4676
  [[package]]
4516
4677
  name = "yara-x-capi"
4517
- version = "0.12.0"
4678
+ version = "0.13.0"
4518
4679
  dependencies = [
4519
4680
  "cbindgen",
4520
4681
  "serde_json",
@@ -4523,10 +4684,12 @@ dependencies = [
4523
4684
 
4524
4685
  [[package]]
4525
4686
  name = "yara-x-cli"
4526
- version = "0.12.0"
4687
+ version = "0.13.0"
4527
4688
  dependencies = [
4528
4689
  "anyhow",
4529
4690
  "ascii_tree",
4691
+ "assert_cmd",
4692
+ "assert_fs",
4530
4693
  "chardetng",
4531
4694
  "clap",
4532
4695
  "clap_complete",
@@ -4539,12 +4702,14 @@ dependencies = [
4539
4702
  "figment",
4540
4703
  "globwalk",
4541
4704
  "home",
4542
- "itertools 0.13.0",
4705
+ "itertools 0.14.0",
4543
4706
  "log",
4707
+ "predicates",
4544
4708
  "protobuf",
4545
4709
  "protobuf-json-mapping",
4546
4710
  "serde",
4547
4711
  "serde_json",
4712
+ "strum 0.26.3",
4548
4713
  "strum_macros 0.26.4",
4549
4714
  "superconsole",
4550
4715
  "wild",
@@ -4557,42 +4722,42 @@ dependencies = [
4557
4722
 
4558
4723
  [[package]]
4559
4724
  name = "yara-x-fmt"
4560
- version = "0.12.0"
4725
+ version = "0.13.0"
4561
4726
  dependencies = [
4562
- "bitmask",
4727
+ "bitflags 2.8.0",
4563
4728
  "bstr",
4564
4729
  "globwalk",
4565
4730
  "goldenfile",
4566
4731
  "lazy_static",
4567
4732
  "pretty_assertions",
4568
4733
  "rayon",
4569
- "thiserror 2.0.6",
4734
+ "thiserror 2.0.11",
4570
4735
  "yara-x-parser",
4571
4736
  ]
4572
4737
 
4573
4738
  [[package]]
4574
4739
  name = "yara-x-macros"
4575
- version = "0.12.0"
4740
+ version = "0.13.0"
4576
4741
  dependencies = [
4577
4742
  "darling",
4578
4743
  "proc-macro2",
4579
4744
  "quote",
4580
- "syn 2.0.90",
4745
+ "syn 2.0.96",
4581
4746
  ]
4582
4747
 
4583
4748
  [[package]]
4584
4749
  name = "yara-x-parser"
4585
- version = "0.12.0"
4750
+ version = "0.13.0"
4586
4751
  dependencies = [
4587
4752
  "anyhow",
4588
4753
  "ascii_tree",
4589
- "bitmask",
4754
+ "bitflags 2.8.0",
4590
4755
  "bstr",
4591
4756
  "env_logger",
4592
4757
  "globwalk",
4593
4758
  "goldenfile",
4594
4759
  "indexmap 2.7.0",
4595
- "itertools 0.13.0",
4760
+ "itertools 0.14.0",
4596
4761
  "log",
4597
4762
  "logos",
4598
4763
  "num-traits",
@@ -4606,7 +4771,7 @@ dependencies = [
4606
4771
 
4607
4772
  [[package]]
4608
4773
  name = "yara-x-proto"
4609
- version = "0.12.0"
4774
+ version = "0.13.0"
4610
4775
  dependencies = [
4611
4776
  "protobuf",
4612
4777
  "protobuf-codegen",
@@ -4615,12 +4780,12 @@ dependencies = [
4615
4780
 
4616
4781
  [[package]]
4617
4782
  name = "yara-x-proto-yaml"
4618
- version = "0.12.0"
4783
+ version = "0.13.0"
4619
4784
  dependencies = [
4620
4785
  "chrono",
4621
4786
  "globwalk",
4622
4787
  "goldenfile",
4623
- "itertools 0.13.0",
4788
+ "itertools 0.14.0",
4624
4789
  "protobuf",
4625
4790
  "protobuf-codegen",
4626
4791
  "protobuf-parse",
@@ -4630,7 +4795,7 @@ dependencies = [
4630
4795
 
4631
4796
  [[package]]
4632
4797
  name = "yara-x-py"
4633
- version = "0.12.0"
4798
+ version = "0.13.0"
4634
4799
  dependencies = [
4635
4800
  "protobuf-json-mapping",
4636
4801
  "pyo3",
@@ -4638,6 +4803,7 @@ dependencies = [
4638
4803
  "pyo3-file",
4639
4804
  "serde_json",
4640
4805
  "yara-x",
4806
+ "yara-x-fmt",
4641
4807
  ]
4642
4808
 
4643
4809
  [[package]]
@@ -4658,7 +4824,7 @@ checksum = "fa4f8080344d4671fb4e831a13ad1e68092748387dfc4f55e356242fae12ce3e"
4658
4824
  dependencies = [
4659
4825
  "proc-macro2",
4660
4826
  "quote",
4661
- "syn 2.0.90",
4827
+ "syn 2.0.96",
4662
4828
  ]
4663
4829
 
4664
4830
  [[package]]
@@ -4678,14 +4844,14 @@ checksum = "ce36e65b0d2999d2aafac989fb249189a141aee1f53c612c1f37d72631959f69"
4678
4844
  dependencies = [
4679
4845
  "proc-macro2",
4680
4846
  "quote",
4681
- "syn 2.0.90",
4847
+ "syn 2.0.96",
4682
4848
  ]
4683
4849
 
4684
4850
  [[package]]
4685
4851
  name = "zip"
4686
- version = "2.2.1"
4852
+ version = "2.2.2"
4687
4853
  source = "registry+https://github.com/rust-lang/crates.io-index"
4688
- checksum = "99d52293fc86ea7cf13971b3bb81eb21683636e7ae24c729cdaf1b7c4157a352"
4854
+ checksum = "ae9c1ea7b3a5e1f4b922ff856a129881167511563dc219869afe3787fc0c1a45"
4689
4855
  dependencies = [
4690
4856
  "aes",
4691
4857
  "arbitrary",
@@ -4703,7 +4869,7 @@ dependencies = [
4703
4869
  "pbkdf2",
4704
4870
  "rand",
4705
4871
  "sha1",
4706
- "thiserror 2.0.6",
4872
+ "thiserror 2.0.11",
4707
4873
  "time",
4708
4874
  "zeroize",
4709
4875
  "zopfli",