yara-x 0.11.1__tar.gz → 0.12.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 (759) hide show
  1. {yara_x-0.11.1 → yara_x-0.12.0}/Cargo.lock +265 -180
  2. {yara_x-0.11.1 → yara_x-0.12.0}/Cargo.toml +7 -7
  3. {yara_x-0.11.1 → yara_x-0.12.0}/PKG-INFO +2 -2
  4. {yara_x-0.11.1/py → yara_x-0.12.0}/README.md +1 -1
  5. {yara_x-0.11.1 → yara_x-0.12.0}/lib/Cargo.toml +4 -0
  6. {yara_x-0.11.1 → yara_x-0.12.0}/lib/src/compiler/ir/mod.rs +1 -39
  7. {yara_x-0.11.1 → yara_x-0.12.0}/lib/src/compiler/ir/tests/testdata/1.cse.ir +30 -5
  8. {yara_x-0.11.1 → yara_x-0.12.0}/lib/src/compiler/ir/tests/testdata/1.hoisting.ir +30 -5
  9. {yara_x-0.11.1 → yara_x-0.12.0}/lib/src/compiler/ir/tests/testdata/1.in +15 -5
  10. {yara_x-0.11.1 → yara_x-0.12.0}/lib/src/compiler/ir/tests/testdata/1.ir +30 -5
  11. {yara_x-0.11.1 → yara_x-0.12.0}/lib/src/compiler/ir/tests/testdata/1.no-folding.ir +30 -5
  12. yara_x-0.12.0/lib/src/compiler/ir/tests/testdata/9.cse.ir +23 -0
  13. yara_x-0.12.0/lib/src/compiler/ir/tests/testdata/9.hoisting.ir +23 -0
  14. yara_x-0.12.0/lib/src/compiler/ir/tests/testdata/9.in +23 -0
  15. yara_x-0.12.0/lib/src/compiler/ir/tests/testdata/9.ir +23 -0
  16. yara_x-0.12.0/lib/src/compiler/ir/tests/testdata/9.no-folding.ir +23 -0
  17. {yara_x-0.11.1 → yara_x-0.12.0}/lib/src/compiler/mod.rs +21 -10
  18. {yara_x-0.11.1 → yara_x-0.12.0}/lib/src/compiler/tests/testdata/errors/1.out +1 -1
  19. yara_x-0.12.0/lib/src/compiler/tests/testdata/errors/113.out +9 -0
  20. yara_x-0.12.0/lib/src/compiler/tests/testdata/errors/114.out +9 -0
  21. {yara_x-0.11.1 → yara_x-0.12.0}/lib/src/compiler/tests/testdata/errors/128.out +1 -1
  22. yara_x-0.12.0/lib/src/compiler/tests/testdata/errors/2.out +8 -0
  23. yara_x-0.12.0/lib/src/compiler/tests/testdata/errors/31.out +8 -0
  24. yara_x-0.12.0/lib/src/compiler/tests/testdata/errors/32.out +8 -0
  25. yara_x-0.12.0/lib/src/compiler/tests/testdata/errors/33.out +8 -0
  26. yara_x-0.12.0/lib/src/compiler/tests/testdata/errors/34.out +8 -0
  27. {yara_x-0.11.1 → yara_x-0.12.0}/lib/src/compiler/tests/testdata/errors/42.out +3 -2
  28. yara_x-0.12.0/lib/src/compiler/tests/testdata/errors/46.out +9 -0
  29. yara_x-0.12.0/lib/src/compiler/tests/testdata/errors/47.out +8 -0
  30. yara_x-0.12.0/lib/src/compiler/tests/testdata/errors/48.out +8 -0
  31. yara_x-0.12.0/lib/src/compiler/tests/testdata/errors/50.out +8 -0
  32. yara_x-0.12.0/lib/src/compiler/tests/testdata/errors/51.out +8 -0
  33. yara_x-0.12.0/lib/src/compiler/tests/testdata/errors/52.out +8 -0
  34. yara_x-0.12.0/lib/src/compiler/tests/testdata/warnings/11.out +8 -0
  35. {yara_x-0.11.1 → yara_x-0.12.0}/lib/src/compiler/tests/testdata/warnings/13.out +1 -1
  36. yara_x-0.12.0/lib/src/compiler/tests/testdata/warnings/23.in +13 -0
  37. {yara_x-0.11.1 → yara_x-0.12.0}/lib/src/compiler/tests/testdata/warnings/23.out +6 -0
  38. yara_x-0.12.0/lib/src/compiler/tests/testdata/warnings/3.out +8 -0
  39. yara_x-0.12.0/lib/src/compiler/tests/testdata/warnings/34.out +18 -0
  40. yara_x-0.12.0/lib/src/compiler/tests/testdata/warnings/35.in +6 -0
  41. yara_x-0.12.0/lib/src/compiler/tests/testdata/warnings/35.out +6 -0
  42. yara_x-0.12.0/lib/src/compiler/tests/testdata/warnings/4.out +8 -0
  43. yara_x-0.12.0/lib/src/compiler/tests/testdata/warnings/5.out +8 -0
  44. yara_x-0.12.0/lib/src/compiler/tests/testdata/warnings/7.out +8 -0
  45. yara_x-0.12.0/lib/src/compiler/tests/testdata/warnings/8.out +8 -0
  46. yara_x-0.12.0/lib/src/compiler/tests/testdata/warnings/9.out +8 -0
  47. {yara_x-0.11.1 → yara_x-0.12.0}/lib/src/compiler/tests/testdata/warnings/no_warnings.in +7 -0
  48. {yara_x-0.11.1 → yara_x-0.12.0}/lib/src/lib.rs +1 -0
  49. {yara_x-0.11.1 → yara_x-0.12.0}/lib/src/modules/macho/mod.rs +12 -13
  50. {yara_x-0.11.1 → yara_x-0.12.0}/lib/src/modules/macho/parser.rs +36 -1
  51. {yara_x-0.11.1 → yara_x-0.12.0}/lib/src/modules/macho/tests/mod.rs +26 -0
  52. {yara_x-0.11.1 → yara_x-0.12.0}/lib/src/modules/math.rs +10 -0
  53. {yara_x-0.11.1 → yara_x-0.12.0}/lib/src/modules/pe/asn1.rs +35 -13
  54. {yara_x-0.11.1 → yara_x-0.12.0}/lib/src/modules/pe/authenticode.rs +14 -1
  55. {yara_x-0.11.1 → yara_x-0.12.0}/lib/src/modules/protos/macho.proto +7 -4
  56. {yara_x-0.11.1 → yara_x-0.12.0}/lib/src/modules/protos/math.proto +5 -0
  57. {yara_x-0.11.1 → yara_x-0.12.0}/lib/src/modules/protos/pe.proto +4 -3
  58. {yara_x-0.11.1/proto/src → yara_x-0.12.0/lib/src/modules/protos}/yara.proto +4 -1
  59. {yara_x-0.11.1 → yara_x-0.12.0}/lib/src/scanner/context.rs +11 -2
  60. {yara_x-0.11.1 → yara_x-0.12.0}/lib/src/scanner/mod.rs +19 -4
  61. {yara_x-0.11.1 → yara_x-0.12.0}/lib/src/scanner/tests.rs +64 -1
  62. {yara_x-0.11.1 → yara_x-0.12.0}/lib/src/types/mod.rs +10 -0
  63. {yara_x-0.11.1 → yara_x-0.12.0}/lib/src/types/structure.rs +15 -7
  64. {yara_x-0.11.1 → yara_x-0.12.0}/parser/Cargo.toml +1 -1
  65. {yara_x-0.11.1/lib/src/modules/protos → yara_x-0.12.0/proto/src}/yara.proto +4 -1
  66. {yara_x-0.11.1 → yara_x-0.12.0}/py/Cargo.toml +3 -3
  67. {yara_x-0.11.1 → yara_x-0.12.0/py}/README.md +1 -1
  68. {yara_x-0.11.1 → yara_x-0.12.0}/py/src/lib.rs +28 -34
  69. {yara_x-0.11.1 → yara_x-0.12.0}/pyproject.toml +1 -1
  70. yara_x-0.11.1/lib/src/compiler/tests/testdata/errors/113.out +0 -8
  71. yara_x-0.11.1/lib/src/compiler/tests/testdata/errors/114.out +0 -8
  72. yara_x-0.11.1/lib/src/compiler/tests/testdata/errors/2.out +0 -7
  73. yara_x-0.11.1/lib/src/compiler/tests/testdata/errors/31.out +0 -7
  74. yara_x-0.11.1/lib/src/compiler/tests/testdata/errors/32.out +0 -7
  75. yara_x-0.11.1/lib/src/compiler/tests/testdata/errors/33.out +0 -7
  76. yara_x-0.11.1/lib/src/compiler/tests/testdata/errors/34.out +0 -7
  77. yara_x-0.11.1/lib/src/compiler/tests/testdata/errors/46.out +0 -7
  78. yara_x-0.11.1/lib/src/compiler/tests/testdata/errors/47.out +0 -7
  79. yara_x-0.11.1/lib/src/compiler/tests/testdata/errors/48.out +0 -7
  80. yara_x-0.11.1/lib/src/compiler/tests/testdata/errors/50.out +0 -7
  81. yara_x-0.11.1/lib/src/compiler/tests/testdata/errors/51.out +0 -7
  82. yara_x-0.11.1/lib/src/compiler/tests/testdata/errors/52.out +0 -7
  83. yara_x-0.11.1/lib/src/compiler/tests/testdata/warnings/11.out +0 -7
  84. yara_x-0.11.1/lib/src/compiler/tests/testdata/warnings/23.in +0 -6
  85. yara_x-0.11.1/lib/src/compiler/tests/testdata/warnings/3.out +0 -7
  86. yara_x-0.11.1/lib/src/compiler/tests/testdata/warnings/34.out +0 -14
  87. yara_x-0.11.1/lib/src/compiler/tests/testdata/warnings/4.out +0 -7
  88. yara_x-0.11.1/lib/src/compiler/tests/testdata/warnings/5.out +0 -7
  89. yara_x-0.11.1/lib/src/compiler/tests/testdata/warnings/7.out +0 -7
  90. yara_x-0.11.1/lib/src/compiler/tests/testdata/warnings/8.out +0 -7
  91. yara_x-0.11.1/lib/src/compiler/tests/testdata/warnings/9.out +0 -7
  92. {yara_x-0.11.1 → yara_x-0.12.0}/lib/README.md +0 -0
  93. {yara_x-0.11.1 → yara_x-0.12.0}/lib/build.rs +0 -0
  94. {yara_x-0.11.1 → yara_x-0.12.0}/lib/src/compiler/atoms/mask.rs +0 -0
  95. {yara_x-0.11.1 → yara_x-0.12.0}/lib/src/compiler/atoms/mod.rs +0 -0
  96. {yara_x-0.11.1 → yara_x-0.12.0}/lib/src/compiler/atoms/quality.rs +0 -0
  97. {yara_x-0.11.1 → yara_x-0.12.0}/lib/src/compiler/base64.rs +0 -0
  98. {yara_x-0.11.1 → yara_x-0.12.0}/lib/src/compiler/context.rs +0 -0
  99. {yara_x-0.11.1 → yara_x-0.12.0}/lib/src/compiler/emit.rs +0 -0
  100. {yara_x-0.11.1 → yara_x-0.12.0}/lib/src/compiler/errors.rs +0 -0
  101. {yara_x-0.11.1 → yara_x-0.12.0}/lib/src/compiler/ir/ast2ir.rs +0 -0
  102. {yara_x-0.11.1 → yara_x-0.12.0}/lib/src/compiler/ir/dfs.rs +0 -0
  103. {yara_x-0.11.1 → yara_x-0.12.0}/lib/src/compiler/ir/hex2hir.rs +0 -0
  104. {yara_x-0.11.1 → yara_x-0.12.0}/lib/src/compiler/ir/tests/mod.rs +0 -0
  105. {yara_x-0.11.1 → yara_x-0.12.0}/lib/src/compiler/ir/tests/testdata/2.cse.ir +0 -0
  106. {yara_x-0.11.1 → yara_x-0.12.0}/lib/src/compiler/ir/tests/testdata/2.hoisting.ir +0 -0
  107. {yara_x-0.11.1 → yara_x-0.12.0}/lib/src/compiler/ir/tests/testdata/2.in +0 -0
  108. {yara_x-0.11.1 → yara_x-0.12.0}/lib/src/compiler/ir/tests/testdata/2.ir +0 -0
  109. {yara_x-0.11.1 → yara_x-0.12.0}/lib/src/compiler/ir/tests/testdata/2.no-folding.ir +0 -0
  110. {yara_x-0.11.1 → yara_x-0.12.0}/lib/src/compiler/ir/tests/testdata/3.cse.ir +0 -0
  111. {yara_x-0.11.1 → yara_x-0.12.0}/lib/src/compiler/ir/tests/testdata/3.hoisting.ir +0 -0
  112. {yara_x-0.11.1 → yara_x-0.12.0}/lib/src/compiler/ir/tests/testdata/3.in +0 -0
  113. {yara_x-0.11.1 → yara_x-0.12.0}/lib/src/compiler/ir/tests/testdata/3.ir +0 -0
  114. {yara_x-0.11.1 → yara_x-0.12.0}/lib/src/compiler/ir/tests/testdata/3.no-folding.ir +0 -0
  115. {yara_x-0.11.1 → yara_x-0.12.0}/lib/src/compiler/ir/tests/testdata/4.cse.ir +0 -0
  116. {yara_x-0.11.1 → yara_x-0.12.0}/lib/src/compiler/ir/tests/testdata/4.hoisting.ir +0 -0
  117. {yara_x-0.11.1 → yara_x-0.12.0}/lib/src/compiler/ir/tests/testdata/4.in +0 -0
  118. {yara_x-0.11.1 → yara_x-0.12.0}/lib/src/compiler/ir/tests/testdata/4.ir +0 -0
  119. {yara_x-0.11.1 → yara_x-0.12.0}/lib/src/compiler/ir/tests/testdata/4.no-folding.ir +0 -0
  120. {yara_x-0.11.1 → yara_x-0.12.0}/lib/src/compiler/ir/tests/testdata/5.cse.ir +0 -0
  121. {yara_x-0.11.1 → yara_x-0.12.0}/lib/src/compiler/ir/tests/testdata/5.hoisting.ir +0 -0
  122. {yara_x-0.11.1 → yara_x-0.12.0}/lib/src/compiler/ir/tests/testdata/5.in +0 -0
  123. {yara_x-0.11.1 → yara_x-0.12.0}/lib/src/compiler/ir/tests/testdata/5.ir +0 -0
  124. {yara_x-0.11.1 → yara_x-0.12.0}/lib/src/compiler/ir/tests/testdata/5.no-folding.ir +0 -0
  125. {yara_x-0.11.1 → yara_x-0.12.0}/lib/src/compiler/ir/tests/testdata/6.cse.ir +0 -0
  126. {yara_x-0.11.1 → yara_x-0.12.0}/lib/src/compiler/ir/tests/testdata/6.hoisting.ir +0 -0
  127. {yara_x-0.11.1 → yara_x-0.12.0}/lib/src/compiler/ir/tests/testdata/6.in +0 -0
  128. {yara_x-0.11.1 → yara_x-0.12.0}/lib/src/compiler/ir/tests/testdata/6.ir +0 -0
  129. {yara_x-0.11.1 → yara_x-0.12.0}/lib/src/compiler/ir/tests/testdata/6.no-folding.ir +0 -0
  130. {yara_x-0.11.1 → yara_x-0.12.0}/lib/src/compiler/ir/tests/testdata/7.cse.ir +0 -0
  131. {yara_x-0.11.1 → yara_x-0.12.0}/lib/src/compiler/ir/tests/testdata/7.hoisting.ir +0 -0
  132. {yara_x-0.11.1 → yara_x-0.12.0}/lib/src/compiler/ir/tests/testdata/7.in +0 -0
  133. {yara_x-0.11.1 → yara_x-0.12.0}/lib/src/compiler/ir/tests/testdata/7.ir +0 -0
  134. {yara_x-0.11.1 → yara_x-0.12.0}/lib/src/compiler/ir/tests/testdata/7.no-folding.ir +0 -0
  135. {yara_x-0.11.1 → yara_x-0.12.0}/lib/src/compiler/ir/tests/testdata/8.cse.ir +0 -0
  136. {yara_x-0.11.1 → yara_x-0.12.0}/lib/src/compiler/ir/tests/testdata/8.hoisting.ir +0 -0
  137. {yara_x-0.11.1 → yara_x-0.12.0}/lib/src/compiler/ir/tests/testdata/8.in +0 -0
  138. {yara_x-0.11.1 → yara_x-0.12.0}/lib/src/compiler/ir/tests/testdata/8.ir +0 -0
  139. {yara_x-0.11.1 → yara_x-0.12.0}/lib/src/compiler/ir/tests/testdata/8.no-folding.ir +0 -0
  140. {yara_x-0.11.1 → yara_x-0.12.0}/lib/src/compiler/report.rs +0 -0
  141. {yara_x-0.11.1 → yara_x-0.12.0}/lib/src/compiler/rules.rs +0 -0
  142. {yara_x-0.11.1 → yara_x-0.12.0}/lib/src/compiler/tests/mod.rs +0 -0
  143. {yara_x-0.11.1 → yara_x-0.12.0}/lib/src/compiler/tests/testdata/errors/1.in +0 -0
  144. {yara_x-0.11.1 → yara_x-0.12.0}/lib/src/compiler/tests/testdata/errors/10.in +0 -0
  145. {yara_x-0.11.1 → yara_x-0.12.0}/lib/src/compiler/tests/testdata/errors/10.out +0 -0
  146. {yara_x-0.11.1 → yara_x-0.12.0}/lib/src/compiler/tests/testdata/errors/100.in +0 -0
  147. {yara_x-0.11.1 → yara_x-0.12.0}/lib/src/compiler/tests/testdata/errors/100.out +0 -0
  148. {yara_x-0.11.1 → yara_x-0.12.0}/lib/src/compiler/tests/testdata/errors/101.in +0 -0
  149. {yara_x-0.11.1 → yara_x-0.12.0}/lib/src/compiler/tests/testdata/errors/101.out +0 -0
  150. {yara_x-0.11.1 → yara_x-0.12.0}/lib/src/compiler/tests/testdata/errors/102.in +0 -0
  151. {yara_x-0.11.1 → yara_x-0.12.0}/lib/src/compiler/tests/testdata/errors/102.out +0 -0
  152. {yara_x-0.11.1 → yara_x-0.12.0}/lib/src/compiler/tests/testdata/errors/103.in +0 -0
  153. {yara_x-0.11.1 → yara_x-0.12.0}/lib/src/compiler/tests/testdata/errors/103.out +0 -0
  154. {yara_x-0.11.1 → yara_x-0.12.0}/lib/src/compiler/tests/testdata/errors/104.in +0 -0
  155. {yara_x-0.11.1 → yara_x-0.12.0}/lib/src/compiler/tests/testdata/errors/104.out +0 -0
  156. {yara_x-0.11.1 → yara_x-0.12.0}/lib/src/compiler/tests/testdata/errors/105.in +0 -0
  157. {yara_x-0.11.1 → yara_x-0.12.0}/lib/src/compiler/tests/testdata/errors/105.out +0 -0
  158. {yara_x-0.11.1 → yara_x-0.12.0}/lib/src/compiler/tests/testdata/errors/106.in +0 -0
  159. {yara_x-0.11.1 → yara_x-0.12.0}/lib/src/compiler/tests/testdata/errors/106.out +0 -0
  160. {yara_x-0.11.1 → yara_x-0.12.0}/lib/src/compiler/tests/testdata/errors/107.in +0 -0
  161. {yara_x-0.11.1 → yara_x-0.12.0}/lib/src/compiler/tests/testdata/errors/107.out +0 -0
  162. {yara_x-0.11.1 → yara_x-0.12.0}/lib/src/compiler/tests/testdata/errors/108.in +0 -0
  163. {yara_x-0.11.1 → yara_x-0.12.0}/lib/src/compiler/tests/testdata/errors/108.out +0 -0
  164. {yara_x-0.11.1 → yara_x-0.12.0}/lib/src/compiler/tests/testdata/errors/109.in +0 -0
  165. {yara_x-0.11.1 → yara_x-0.12.0}/lib/src/compiler/tests/testdata/errors/109.out +0 -0
  166. {yara_x-0.11.1 → yara_x-0.12.0}/lib/src/compiler/tests/testdata/errors/11.in +0 -0
  167. {yara_x-0.11.1 → yara_x-0.12.0}/lib/src/compiler/tests/testdata/errors/11.out +0 -0
  168. {yara_x-0.11.1 → yara_x-0.12.0}/lib/src/compiler/tests/testdata/errors/110.in +0 -0
  169. {yara_x-0.11.1 → yara_x-0.12.0}/lib/src/compiler/tests/testdata/errors/110.out +0 -0
  170. {yara_x-0.11.1 → yara_x-0.12.0}/lib/src/compiler/tests/testdata/errors/111.in +0 -0
  171. {yara_x-0.11.1 → yara_x-0.12.0}/lib/src/compiler/tests/testdata/errors/111.out +0 -0
  172. {yara_x-0.11.1 → yara_x-0.12.0}/lib/src/compiler/tests/testdata/errors/112.in +0 -0
  173. {yara_x-0.11.1 → yara_x-0.12.0}/lib/src/compiler/tests/testdata/errors/112.out +0 -0
  174. {yara_x-0.11.1 → yara_x-0.12.0}/lib/src/compiler/tests/testdata/errors/113.in +0 -0
  175. {yara_x-0.11.1 → yara_x-0.12.0}/lib/src/compiler/tests/testdata/errors/114.in +0 -0
  176. {yara_x-0.11.1 → yara_x-0.12.0}/lib/src/compiler/tests/testdata/errors/115.in +0 -0
  177. {yara_x-0.11.1 → yara_x-0.12.0}/lib/src/compiler/tests/testdata/errors/115.out +0 -0
  178. {yara_x-0.11.1 → yara_x-0.12.0}/lib/src/compiler/tests/testdata/errors/116.in +0 -0
  179. {yara_x-0.11.1 → yara_x-0.12.0}/lib/src/compiler/tests/testdata/errors/116.out +0 -0
  180. {yara_x-0.11.1 → yara_x-0.12.0}/lib/src/compiler/tests/testdata/errors/117.in +0 -0
  181. {yara_x-0.11.1 → yara_x-0.12.0}/lib/src/compiler/tests/testdata/errors/117.out +0 -0
  182. {yara_x-0.11.1 → yara_x-0.12.0}/lib/src/compiler/tests/testdata/errors/118.in +0 -0
  183. {yara_x-0.11.1 → yara_x-0.12.0}/lib/src/compiler/tests/testdata/errors/118.out +0 -0
  184. {yara_x-0.11.1 → yara_x-0.12.0}/lib/src/compiler/tests/testdata/errors/119.in +0 -0
  185. {yara_x-0.11.1 → yara_x-0.12.0}/lib/src/compiler/tests/testdata/errors/119.out +0 -0
  186. {yara_x-0.11.1 → yara_x-0.12.0}/lib/src/compiler/tests/testdata/errors/12.in +0 -0
  187. {yara_x-0.11.1 → yara_x-0.12.0}/lib/src/compiler/tests/testdata/errors/12.out +0 -0
  188. {yara_x-0.11.1 → yara_x-0.12.0}/lib/src/compiler/tests/testdata/errors/120.in +0 -0
  189. {yara_x-0.11.1 → yara_x-0.12.0}/lib/src/compiler/tests/testdata/errors/120.out +0 -0
  190. {yara_x-0.11.1 → yara_x-0.12.0}/lib/src/compiler/tests/testdata/errors/121.in +0 -0
  191. {yara_x-0.11.1 → yara_x-0.12.0}/lib/src/compiler/tests/testdata/errors/121.out +0 -0
  192. {yara_x-0.11.1 → yara_x-0.12.0}/lib/src/compiler/tests/testdata/errors/122.in +0 -0
  193. {yara_x-0.11.1 → yara_x-0.12.0}/lib/src/compiler/tests/testdata/errors/122.out +0 -0
  194. {yara_x-0.11.1 → yara_x-0.12.0}/lib/src/compiler/tests/testdata/errors/123.in +0 -0
  195. {yara_x-0.11.1 → yara_x-0.12.0}/lib/src/compiler/tests/testdata/errors/123.out +0 -0
  196. {yara_x-0.11.1 → yara_x-0.12.0}/lib/src/compiler/tests/testdata/errors/124.in +0 -0
  197. {yara_x-0.11.1 → yara_x-0.12.0}/lib/src/compiler/tests/testdata/errors/124.out +0 -0
  198. {yara_x-0.11.1 → yara_x-0.12.0}/lib/src/compiler/tests/testdata/errors/125.in +0 -0
  199. {yara_x-0.11.1 → yara_x-0.12.0}/lib/src/compiler/tests/testdata/errors/125.out +0 -0
  200. {yara_x-0.11.1 → yara_x-0.12.0}/lib/src/compiler/tests/testdata/errors/126.in +0 -0
  201. {yara_x-0.11.1 → yara_x-0.12.0}/lib/src/compiler/tests/testdata/errors/126.out +0 -0
  202. {yara_x-0.11.1 → yara_x-0.12.0}/lib/src/compiler/tests/testdata/errors/127.in +0 -0
  203. {yara_x-0.11.1 → yara_x-0.12.0}/lib/src/compiler/tests/testdata/errors/127.out +0 -0
  204. {yara_x-0.11.1 → yara_x-0.12.0}/lib/src/compiler/tests/testdata/errors/128.in +0 -0
  205. {yara_x-0.11.1 → yara_x-0.12.0}/lib/src/compiler/tests/testdata/errors/129.in +0 -0
  206. {yara_x-0.11.1 → yara_x-0.12.0}/lib/src/compiler/tests/testdata/errors/129.out +0 -0
  207. {yara_x-0.11.1 → yara_x-0.12.0}/lib/src/compiler/tests/testdata/errors/13.in +0 -0
  208. {yara_x-0.11.1 → yara_x-0.12.0}/lib/src/compiler/tests/testdata/errors/13.out +0 -0
  209. {yara_x-0.11.1 → yara_x-0.12.0}/lib/src/compiler/tests/testdata/errors/131.in +0 -0
  210. {yara_x-0.11.1 → yara_x-0.12.0}/lib/src/compiler/tests/testdata/errors/131.out +0 -0
  211. {yara_x-0.11.1 → yara_x-0.12.0}/lib/src/compiler/tests/testdata/errors/132.in +0 -0
  212. {yara_x-0.11.1 → yara_x-0.12.0}/lib/src/compiler/tests/testdata/errors/132.out +0 -0
  213. {yara_x-0.11.1 → yara_x-0.12.0}/lib/src/compiler/tests/testdata/errors/133.in +0 -0
  214. {yara_x-0.11.1 → yara_x-0.12.0}/lib/src/compiler/tests/testdata/errors/133.out +0 -0
  215. {yara_x-0.11.1 → yara_x-0.12.0}/lib/src/compiler/tests/testdata/errors/134.in +0 -0
  216. {yara_x-0.11.1 → yara_x-0.12.0}/lib/src/compiler/tests/testdata/errors/134.out +0 -0
  217. {yara_x-0.11.1 → yara_x-0.12.0}/lib/src/compiler/tests/testdata/errors/135.in +0 -0
  218. {yara_x-0.11.1 → yara_x-0.12.0}/lib/src/compiler/tests/testdata/errors/135.out +0 -0
  219. {yara_x-0.11.1 → yara_x-0.12.0}/lib/src/compiler/tests/testdata/errors/136.in +0 -0
  220. {yara_x-0.11.1 → yara_x-0.12.0}/lib/src/compiler/tests/testdata/errors/136.out +0 -0
  221. {yara_x-0.11.1 → yara_x-0.12.0}/lib/src/compiler/tests/testdata/errors/137.in +0 -0
  222. {yara_x-0.11.1 → yara_x-0.12.0}/lib/src/compiler/tests/testdata/errors/137.out +0 -0
  223. {yara_x-0.11.1 → yara_x-0.12.0}/lib/src/compiler/tests/testdata/errors/138.in +0 -0
  224. {yara_x-0.11.1 → yara_x-0.12.0}/lib/src/compiler/tests/testdata/errors/138.out +0 -0
  225. {yara_x-0.11.1 → yara_x-0.12.0}/lib/src/compiler/tests/testdata/errors/139.in +0 -0
  226. {yara_x-0.11.1 → yara_x-0.12.0}/lib/src/compiler/tests/testdata/errors/139.out +0 -0
  227. {yara_x-0.11.1 → yara_x-0.12.0}/lib/src/compiler/tests/testdata/errors/14.in +0 -0
  228. {yara_x-0.11.1 → yara_x-0.12.0}/lib/src/compiler/tests/testdata/errors/14.out +0 -0
  229. {yara_x-0.11.1 → yara_x-0.12.0}/lib/src/compiler/tests/testdata/errors/15.in +0 -0
  230. {yara_x-0.11.1 → yara_x-0.12.0}/lib/src/compiler/tests/testdata/errors/15.out +0 -0
  231. {yara_x-0.11.1 → yara_x-0.12.0}/lib/src/compiler/tests/testdata/errors/16.in +0 -0
  232. {yara_x-0.11.1 → yara_x-0.12.0}/lib/src/compiler/tests/testdata/errors/16.out +0 -0
  233. {yara_x-0.11.1 → yara_x-0.12.0}/lib/src/compiler/tests/testdata/errors/17.in +0 -0
  234. {yara_x-0.11.1 → yara_x-0.12.0}/lib/src/compiler/tests/testdata/errors/17.out +0 -0
  235. {yara_x-0.11.1 → yara_x-0.12.0}/lib/src/compiler/tests/testdata/errors/18.in +0 -0
  236. {yara_x-0.11.1 → yara_x-0.12.0}/lib/src/compiler/tests/testdata/errors/18.out +0 -0
  237. {yara_x-0.11.1 → yara_x-0.12.0}/lib/src/compiler/tests/testdata/errors/19.in +0 -0
  238. {yara_x-0.11.1 → yara_x-0.12.0}/lib/src/compiler/tests/testdata/errors/19.out +0 -0
  239. {yara_x-0.11.1 → yara_x-0.12.0}/lib/src/compiler/tests/testdata/errors/2.in +0 -0
  240. {yara_x-0.11.1 → yara_x-0.12.0}/lib/src/compiler/tests/testdata/errors/20.in +0 -0
  241. {yara_x-0.11.1 → yara_x-0.12.0}/lib/src/compiler/tests/testdata/errors/20.out +0 -0
  242. {yara_x-0.11.1 → yara_x-0.12.0}/lib/src/compiler/tests/testdata/errors/21.in +0 -0
  243. {yara_x-0.11.1 → yara_x-0.12.0}/lib/src/compiler/tests/testdata/errors/21.out +0 -0
  244. {yara_x-0.11.1 → yara_x-0.12.0}/lib/src/compiler/tests/testdata/errors/22.in +0 -0
  245. {yara_x-0.11.1 → yara_x-0.12.0}/lib/src/compiler/tests/testdata/errors/22.out +0 -0
  246. {yara_x-0.11.1 → yara_x-0.12.0}/lib/src/compiler/tests/testdata/errors/23.in +0 -0
  247. {yara_x-0.11.1 → yara_x-0.12.0}/lib/src/compiler/tests/testdata/errors/23.out +0 -0
  248. {yara_x-0.11.1 → yara_x-0.12.0}/lib/src/compiler/tests/testdata/errors/24.in +0 -0
  249. {yara_x-0.11.1 → yara_x-0.12.0}/lib/src/compiler/tests/testdata/errors/24.out +0 -0
  250. {yara_x-0.11.1 → yara_x-0.12.0}/lib/src/compiler/tests/testdata/errors/25.in +0 -0
  251. {yara_x-0.11.1 → yara_x-0.12.0}/lib/src/compiler/tests/testdata/errors/25.out +0 -0
  252. {yara_x-0.11.1 → yara_x-0.12.0}/lib/src/compiler/tests/testdata/errors/26.in +0 -0
  253. {yara_x-0.11.1 → yara_x-0.12.0}/lib/src/compiler/tests/testdata/errors/26.out +0 -0
  254. {yara_x-0.11.1 → yara_x-0.12.0}/lib/src/compiler/tests/testdata/errors/28.in +0 -0
  255. {yara_x-0.11.1 → yara_x-0.12.0}/lib/src/compiler/tests/testdata/errors/28.out +0 -0
  256. {yara_x-0.11.1 → yara_x-0.12.0}/lib/src/compiler/tests/testdata/errors/29.in +0 -0
  257. {yara_x-0.11.1 → yara_x-0.12.0}/lib/src/compiler/tests/testdata/errors/29.out +0 -0
  258. {yara_x-0.11.1 → yara_x-0.12.0}/lib/src/compiler/tests/testdata/errors/3.in +0 -0
  259. {yara_x-0.11.1 → yara_x-0.12.0}/lib/src/compiler/tests/testdata/errors/3.out +0 -0
  260. {yara_x-0.11.1 → yara_x-0.12.0}/lib/src/compiler/tests/testdata/errors/30.in +0 -0
  261. {yara_x-0.11.1 → yara_x-0.12.0}/lib/src/compiler/tests/testdata/errors/30.out +0 -0
  262. {yara_x-0.11.1 → yara_x-0.12.0}/lib/src/compiler/tests/testdata/errors/31.in +0 -0
  263. {yara_x-0.11.1 → yara_x-0.12.0}/lib/src/compiler/tests/testdata/errors/32.in +0 -0
  264. {yara_x-0.11.1 → yara_x-0.12.0}/lib/src/compiler/tests/testdata/errors/33.in +0 -0
  265. {yara_x-0.11.1 → yara_x-0.12.0}/lib/src/compiler/tests/testdata/errors/34.in +0 -0
  266. {yara_x-0.11.1 → yara_x-0.12.0}/lib/src/compiler/tests/testdata/errors/35.in +0 -0
  267. {yara_x-0.11.1 → yara_x-0.12.0}/lib/src/compiler/tests/testdata/errors/35.out +0 -0
  268. {yara_x-0.11.1 → yara_x-0.12.0}/lib/src/compiler/tests/testdata/errors/37.in +0 -0
  269. {yara_x-0.11.1 → yara_x-0.12.0}/lib/src/compiler/tests/testdata/errors/37.out +0 -0
  270. {yara_x-0.11.1 → yara_x-0.12.0}/lib/src/compiler/tests/testdata/errors/38.in +0 -0
  271. {yara_x-0.11.1 → yara_x-0.12.0}/lib/src/compiler/tests/testdata/errors/38.out +0 -0
  272. {yara_x-0.11.1 → yara_x-0.12.0}/lib/src/compiler/tests/testdata/errors/39.in +0 -0
  273. {yara_x-0.11.1 → yara_x-0.12.0}/lib/src/compiler/tests/testdata/errors/39.out +0 -0
  274. {yara_x-0.11.1 → yara_x-0.12.0}/lib/src/compiler/tests/testdata/errors/4.in +0 -0
  275. {yara_x-0.11.1 → yara_x-0.12.0}/lib/src/compiler/tests/testdata/errors/4.out +0 -0
  276. {yara_x-0.11.1 → yara_x-0.12.0}/lib/src/compiler/tests/testdata/errors/40.in +0 -0
  277. {yara_x-0.11.1 → yara_x-0.12.0}/lib/src/compiler/tests/testdata/errors/40.out +0 -0
  278. {yara_x-0.11.1 → yara_x-0.12.0}/lib/src/compiler/tests/testdata/errors/41.in +0 -0
  279. {yara_x-0.11.1 → yara_x-0.12.0}/lib/src/compiler/tests/testdata/errors/41.out +0 -0
  280. {yara_x-0.11.1 → yara_x-0.12.0}/lib/src/compiler/tests/testdata/errors/42.in +0 -0
  281. {yara_x-0.11.1 → yara_x-0.12.0}/lib/src/compiler/tests/testdata/errors/43.in +0 -0
  282. {yara_x-0.11.1 → yara_x-0.12.0}/lib/src/compiler/tests/testdata/errors/43.out +0 -0
  283. {yara_x-0.11.1 → yara_x-0.12.0}/lib/src/compiler/tests/testdata/errors/44.in +0 -0
  284. {yara_x-0.11.1 → yara_x-0.12.0}/lib/src/compiler/tests/testdata/errors/44.out +0 -0
  285. {yara_x-0.11.1 → yara_x-0.12.0}/lib/src/compiler/tests/testdata/errors/45.in +0 -0
  286. {yara_x-0.11.1 → yara_x-0.12.0}/lib/src/compiler/tests/testdata/errors/45.out +0 -0
  287. {yara_x-0.11.1 → yara_x-0.12.0}/lib/src/compiler/tests/testdata/errors/46.in +0 -0
  288. {yara_x-0.11.1 → yara_x-0.12.0}/lib/src/compiler/tests/testdata/errors/47.in +0 -0
  289. {yara_x-0.11.1 → yara_x-0.12.0}/lib/src/compiler/tests/testdata/errors/48.in +0 -0
  290. {yara_x-0.11.1 → yara_x-0.12.0}/lib/src/compiler/tests/testdata/errors/49.in +0 -0
  291. {yara_x-0.11.1 → yara_x-0.12.0}/lib/src/compiler/tests/testdata/errors/49.out +0 -0
  292. {yara_x-0.11.1 → yara_x-0.12.0}/lib/src/compiler/tests/testdata/errors/5.in +0 -0
  293. {yara_x-0.11.1 → yara_x-0.12.0}/lib/src/compiler/tests/testdata/errors/5.out +0 -0
  294. {yara_x-0.11.1 → yara_x-0.12.0}/lib/src/compiler/tests/testdata/errors/50.in +0 -0
  295. {yara_x-0.11.1 → yara_x-0.12.0}/lib/src/compiler/tests/testdata/errors/51.in +0 -0
  296. {yara_x-0.11.1 → yara_x-0.12.0}/lib/src/compiler/tests/testdata/errors/52.in +0 -0
  297. {yara_x-0.11.1 → yara_x-0.12.0}/lib/src/compiler/tests/testdata/errors/53.in +0 -0
  298. {yara_x-0.11.1 → yara_x-0.12.0}/lib/src/compiler/tests/testdata/errors/53.out +0 -0
  299. {yara_x-0.11.1 → yara_x-0.12.0}/lib/src/compiler/tests/testdata/errors/54.in +0 -0
  300. {yara_x-0.11.1 → yara_x-0.12.0}/lib/src/compiler/tests/testdata/errors/54.out +0 -0
  301. {yara_x-0.11.1 → yara_x-0.12.0}/lib/src/compiler/tests/testdata/errors/55.in +0 -0
  302. {yara_x-0.11.1 → yara_x-0.12.0}/lib/src/compiler/tests/testdata/errors/55.out +0 -0
  303. {yara_x-0.11.1 → yara_x-0.12.0}/lib/src/compiler/tests/testdata/errors/56.in +0 -0
  304. {yara_x-0.11.1 → yara_x-0.12.0}/lib/src/compiler/tests/testdata/errors/56.out +0 -0
  305. {yara_x-0.11.1 → yara_x-0.12.0}/lib/src/compiler/tests/testdata/errors/57.in +0 -0
  306. {yara_x-0.11.1 → yara_x-0.12.0}/lib/src/compiler/tests/testdata/errors/57.out +0 -0
  307. {yara_x-0.11.1 → yara_x-0.12.0}/lib/src/compiler/tests/testdata/errors/58.in +0 -0
  308. {yara_x-0.11.1 → yara_x-0.12.0}/lib/src/compiler/tests/testdata/errors/58.out +0 -0
  309. {yara_x-0.11.1 → yara_x-0.12.0}/lib/src/compiler/tests/testdata/errors/59.in +0 -0
  310. {yara_x-0.11.1 → yara_x-0.12.0}/lib/src/compiler/tests/testdata/errors/59.out +0 -0
  311. {yara_x-0.11.1 → yara_x-0.12.0}/lib/src/compiler/tests/testdata/errors/6.in +0 -0
  312. {yara_x-0.11.1 → yara_x-0.12.0}/lib/src/compiler/tests/testdata/errors/6.out +0 -0
  313. {yara_x-0.11.1 → yara_x-0.12.0}/lib/src/compiler/tests/testdata/errors/60.in +0 -0
  314. {yara_x-0.11.1 → yara_x-0.12.0}/lib/src/compiler/tests/testdata/errors/60.out +0 -0
  315. {yara_x-0.11.1 → yara_x-0.12.0}/lib/src/compiler/tests/testdata/errors/61.in +0 -0
  316. {yara_x-0.11.1 → yara_x-0.12.0}/lib/src/compiler/tests/testdata/errors/61.out +0 -0
  317. {yara_x-0.11.1 → yara_x-0.12.0}/lib/src/compiler/tests/testdata/errors/62.in +0 -0
  318. {yara_x-0.11.1 → yara_x-0.12.0}/lib/src/compiler/tests/testdata/errors/62.out +0 -0
  319. {yara_x-0.11.1 → yara_x-0.12.0}/lib/src/compiler/tests/testdata/errors/63.in +0 -0
  320. {yara_x-0.11.1 → yara_x-0.12.0}/lib/src/compiler/tests/testdata/errors/63.out +0 -0
  321. {yara_x-0.11.1 → yara_x-0.12.0}/lib/src/compiler/tests/testdata/errors/64.in +0 -0
  322. {yara_x-0.11.1 → yara_x-0.12.0}/lib/src/compiler/tests/testdata/errors/64.out +0 -0
  323. {yara_x-0.11.1 → yara_x-0.12.0}/lib/src/compiler/tests/testdata/errors/65.in +0 -0
  324. {yara_x-0.11.1 → yara_x-0.12.0}/lib/src/compiler/tests/testdata/errors/65.out +0 -0
  325. {yara_x-0.11.1 → yara_x-0.12.0}/lib/src/compiler/tests/testdata/errors/66.in +0 -0
  326. {yara_x-0.11.1 → yara_x-0.12.0}/lib/src/compiler/tests/testdata/errors/66.out +0 -0
  327. {yara_x-0.11.1 → yara_x-0.12.0}/lib/src/compiler/tests/testdata/errors/67.in +0 -0
  328. {yara_x-0.11.1 → yara_x-0.12.0}/lib/src/compiler/tests/testdata/errors/67.out +0 -0
  329. {yara_x-0.11.1 → yara_x-0.12.0}/lib/src/compiler/tests/testdata/errors/68.in +0 -0
  330. {yara_x-0.11.1 → yara_x-0.12.0}/lib/src/compiler/tests/testdata/errors/68.out +0 -0
  331. {yara_x-0.11.1 → yara_x-0.12.0}/lib/src/compiler/tests/testdata/errors/69.in +0 -0
  332. {yara_x-0.11.1 → yara_x-0.12.0}/lib/src/compiler/tests/testdata/errors/69.out +0 -0
  333. {yara_x-0.11.1 → yara_x-0.12.0}/lib/src/compiler/tests/testdata/errors/7.in +0 -0
  334. {yara_x-0.11.1 → yara_x-0.12.0}/lib/src/compiler/tests/testdata/errors/7.out +0 -0
  335. {yara_x-0.11.1 → yara_x-0.12.0}/lib/src/compiler/tests/testdata/errors/70.in +0 -0
  336. {yara_x-0.11.1 → yara_x-0.12.0}/lib/src/compiler/tests/testdata/errors/70.out +0 -0
  337. {yara_x-0.11.1 → yara_x-0.12.0}/lib/src/compiler/tests/testdata/errors/71.in +0 -0
  338. {yara_x-0.11.1 → yara_x-0.12.0}/lib/src/compiler/tests/testdata/errors/71.out +0 -0
  339. {yara_x-0.11.1 → yara_x-0.12.0}/lib/src/compiler/tests/testdata/errors/72.in +0 -0
  340. {yara_x-0.11.1 → yara_x-0.12.0}/lib/src/compiler/tests/testdata/errors/72.out +0 -0
  341. {yara_x-0.11.1 → yara_x-0.12.0}/lib/src/compiler/tests/testdata/errors/73.in +0 -0
  342. {yara_x-0.11.1 → yara_x-0.12.0}/lib/src/compiler/tests/testdata/errors/73.out +0 -0
  343. {yara_x-0.11.1 → yara_x-0.12.0}/lib/src/compiler/tests/testdata/errors/74.in +0 -0
  344. {yara_x-0.11.1 → yara_x-0.12.0}/lib/src/compiler/tests/testdata/errors/74.out +0 -0
  345. {yara_x-0.11.1 → yara_x-0.12.0}/lib/src/compiler/tests/testdata/errors/75.in +0 -0
  346. {yara_x-0.11.1 → yara_x-0.12.0}/lib/src/compiler/tests/testdata/errors/75.out +0 -0
  347. {yara_x-0.11.1 → yara_x-0.12.0}/lib/src/compiler/tests/testdata/errors/76.in +0 -0
  348. {yara_x-0.11.1 → yara_x-0.12.0}/lib/src/compiler/tests/testdata/errors/76.out +0 -0
  349. {yara_x-0.11.1 → yara_x-0.12.0}/lib/src/compiler/tests/testdata/errors/77.in +0 -0
  350. {yara_x-0.11.1 → yara_x-0.12.0}/lib/src/compiler/tests/testdata/errors/77.out +0 -0
  351. {yara_x-0.11.1 → yara_x-0.12.0}/lib/src/compiler/tests/testdata/errors/78.in +0 -0
  352. {yara_x-0.11.1 → yara_x-0.12.0}/lib/src/compiler/tests/testdata/errors/78.out +0 -0
  353. {yara_x-0.11.1 → yara_x-0.12.0}/lib/src/compiler/tests/testdata/errors/79.in +0 -0
  354. {yara_x-0.11.1 → yara_x-0.12.0}/lib/src/compiler/tests/testdata/errors/79.out +0 -0
  355. {yara_x-0.11.1 → yara_x-0.12.0}/lib/src/compiler/tests/testdata/errors/8.in +0 -0
  356. {yara_x-0.11.1 → yara_x-0.12.0}/lib/src/compiler/tests/testdata/errors/8.out +0 -0
  357. {yara_x-0.11.1 → yara_x-0.12.0}/lib/src/compiler/tests/testdata/errors/80.in +0 -0
  358. {yara_x-0.11.1 → yara_x-0.12.0}/lib/src/compiler/tests/testdata/errors/80.out +0 -0
  359. {yara_x-0.11.1 → yara_x-0.12.0}/lib/src/compiler/tests/testdata/errors/81.in +0 -0
  360. {yara_x-0.11.1 → yara_x-0.12.0}/lib/src/compiler/tests/testdata/errors/81.out +0 -0
  361. {yara_x-0.11.1 → yara_x-0.12.0}/lib/src/compiler/tests/testdata/errors/82.in +0 -0
  362. {yara_x-0.11.1 → yara_x-0.12.0}/lib/src/compiler/tests/testdata/errors/82.out +0 -0
  363. {yara_x-0.11.1 → yara_x-0.12.0}/lib/src/compiler/tests/testdata/errors/83.in +0 -0
  364. {yara_x-0.11.1 → yara_x-0.12.0}/lib/src/compiler/tests/testdata/errors/83.out +0 -0
  365. {yara_x-0.11.1 → yara_x-0.12.0}/lib/src/compiler/tests/testdata/errors/84.in +0 -0
  366. {yara_x-0.11.1 → yara_x-0.12.0}/lib/src/compiler/tests/testdata/errors/84.out +0 -0
  367. {yara_x-0.11.1 → yara_x-0.12.0}/lib/src/compiler/tests/testdata/errors/85.in +0 -0
  368. {yara_x-0.11.1 → yara_x-0.12.0}/lib/src/compiler/tests/testdata/errors/85.out +0 -0
  369. {yara_x-0.11.1 → yara_x-0.12.0}/lib/src/compiler/tests/testdata/errors/86.in +0 -0
  370. {yara_x-0.11.1 → yara_x-0.12.0}/lib/src/compiler/tests/testdata/errors/86.out +0 -0
  371. {yara_x-0.11.1 → yara_x-0.12.0}/lib/src/compiler/tests/testdata/errors/87.in +0 -0
  372. {yara_x-0.11.1 → yara_x-0.12.0}/lib/src/compiler/tests/testdata/errors/87.out +0 -0
  373. {yara_x-0.11.1 → yara_x-0.12.0}/lib/src/compiler/tests/testdata/errors/88.in +0 -0
  374. {yara_x-0.11.1 → yara_x-0.12.0}/lib/src/compiler/tests/testdata/errors/88.out +0 -0
  375. {yara_x-0.11.1 → yara_x-0.12.0}/lib/src/compiler/tests/testdata/errors/89.in +0 -0
  376. {yara_x-0.11.1 → yara_x-0.12.0}/lib/src/compiler/tests/testdata/errors/89.out +0 -0
  377. {yara_x-0.11.1 → yara_x-0.12.0}/lib/src/compiler/tests/testdata/errors/9.in +0 -0
  378. {yara_x-0.11.1 → yara_x-0.12.0}/lib/src/compiler/tests/testdata/errors/9.out +0 -0
  379. {yara_x-0.11.1 → yara_x-0.12.0}/lib/src/compiler/tests/testdata/errors/90.in +0 -0
  380. {yara_x-0.11.1 → yara_x-0.12.0}/lib/src/compiler/tests/testdata/errors/90.out +0 -0
  381. {yara_x-0.11.1 → yara_x-0.12.0}/lib/src/compiler/tests/testdata/errors/91.in +0 -0
  382. {yara_x-0.11.1 → yara_x-0.12.0}/lib/src/compiler/tests/testdata/errors/91.out +0 -0
  383. {yara_x-0.11.1 → yara_x-0.12.0}/lib/src/compiler/tests/testdata/errors/92.in +0 -0
  384. {yara_x-0.11.1 → yara_x-0.12.0}/lib/src/compiler/tests/testdata/errors/92.out +0 -0
  385. {yara_x-0.11.1 → yara_x-0.12.0}/lib/src/compiler/tests/testdata/errors/93.in +0 -0
  386. {yara_x-0.11.1 → yara_x-0.12.0}/lib/src/compiler/tests/testdata/errors/93.out +0 -0
  387. {yara_x-0.11.1 → yara_x-0.12.0}/lib/src/compiler/tests/testdata/errors/94.in +0 -0
  388. {yara_x-0.11.1 → yara_x-0.12.0}/lib/src/compiler/tests/testdata/errors/94.out +0 -0
  389. {yara_x-0.11.1 → yara_x-0.12.0}/lib/src/compiler/tests/testdata/errors/95.in +0 -0
  390. {yara_x-0.11.1 → yara_x-0.12.0}/lib/src/compiler/tests/testdata/errors/95.out +0 -0
  391. {yara_x-0.11.1 → yara_x-0.12.0}/lib/src/compiler/tests/testdata/errors/96.in +0 -0
  392. {yara_x-0.11.1 → yara_x-0.12.0}/lib/src/compiler/tests/testdata/errors/96.out +0 -0
  393. {yara_x-0.11.1 → yara_x-0.12.0}/lib/src/compiler/tests/testdata/errors/97.in +0 -0
  394. {yara_x-0.11.1 → yara_x-0.12.0}/lib/src/compiler/tests/testdata/errors/97.out +0 -0
  395. {yara_x-0.11.1 → yara_x-0.12.0}/lib/src/compiler/tests/testdata/errors/98.in +0 -0
  396. {yara_x-0.11.1 → yara_x-0.12.0}/lib/src/compiler/tests/testdata/errors/98.out +0 -0
  397. {yara_x-0.11.1 → yara_x-0.12.0}/lib/src/compiler/tests/testdata/errors/99.in +0 -0
  398. {yara_x-0.11.1 → yara_x-0.12.0}/lib/src/compiler/tests/testdata/errors/99.out +0 -0
  399. {yara_x-0.11.1 → yara_x-0.12.0}/lib/src/compiler/tests/testdata/warnings/1.in +0 -0
  400. {yara_x-0.11.1 → yara_x-0.12.0}/lib/src/compiler/tests/testdata/warnings/1.out +0 -0
  401. {yara_x-0.11.1 → yara_x-0.12.0}/lib/src/compiler/tests/testdata/warnings/10.in +0 -0
  402. {yara_x-0.11.1 → yara_x-0.12.0}/lib/src/compiler/tests/testdata/warnings/10.out +0 -0
  403. {yara_x-0.11.1 → yara_x-0.12.0}/lib/src/compiler/tests/testdata/warnings/11.in +0 -0
  404. {yara_x-0.11.1 → yara_x-0.12.0}/lib/src/compiler/tests/testdata/warnings/12.in +0 -0
  405. {yara_x-0.11.1 → yara_x-0.12.0}/lib/src/compiler/tests/testdata/warnings/12.out +0 -0
  406. {yara_x-0.11.1 → yara_x-0.12.0}/lib/src/compiler/tests/testdata/warnings/13.in +0 -0
  407. {yara_x-0.11.1 → yara_x-0.12.0}/lib/src/compiler/tests/testdata/warnings/14.in +0 -0
  408. {yara_x-0.11.1 → yara_x-0.12.0}/lib/src/compiler/tests/testdata/warnings/14.out +0 -0
  409. {yara_x-0.11.1 → yara_x-0.12.0}/lib/src/compiler/tests/testdata/warnings/15.in +0 -0
  410. {yara_x-0.11.1 → yara_x-0.12.0}/lib/src/compiler/tests/testdata/warnings/15.out +0 -0
  411. {yara_x-0.11.1 → yara_x-0.12.0}/lib/src/compiler/tests/testdata/warnings/16.in +0 -0
  412. {yara_x-0.11.1 → yara_x-0.12.0}/lib/src/compiler/tests/testdata/warnings/16.out +0 -0
  413. {yara_x-0.11.1 → yara_x-0.12.0}/lib/src/compiler/tests/testdata/warnings/17.in +0 -0
  414. {yara_x-0.11.1 → yara_x-0.12.0}/lib/src/compiler/tests/testdata/warnings/17.out +0 -0
  415. {yara_x-0.11.1 → yara_x-0.12.0}/lib/src/compiler/tests/testdata/warnings/18.in +0 -0
  416. {yara_x-0.11.1 → yara_x-0.12.0}/lib/src/compiler/tests/testdata/warnings/18.out +0 -0
  417. {yara_x-0.11.1 → yara_x-0.12.0}/lib/src/compiler/tests/testdata/warnings/19.in +0 -0
  418. {yara_x-0.11.1 → yara_x-0.12.0}/lib/src/compiler/tests/testdata/warnings/19.out +0 -0
  419. {yara_x-0.11.1 → yara_x-0.12.0}/lib/src/compiler/tests/testdata/warnings/2.in +0 -0
  420. {yara_x-0.11.1 → yara_x-0.12.0}/lib/src/compiler/tests/testdata/warnings/2.out +0 -0
  421. {yara_x-0.11.1 → yara_x-0.12.0}/lib/src/compiler/tests/testdata/warnings/20.in +0 -0
  422. {yara_x-0.11.1 → yara_x-0.12.0}/lib/src/compiler/tests/testdata/warnings/20.out +0 -0
  423. {yara_x-0.11.1 → yara_x-0.12.0}/lib/src/compiler/tests/testdata/warnings/21.in +0 -0
  424. {yara_x-0.11.1 → yara_x-0.12.0}/lib/src/compiler/tests/testdata/warnings/21.out +0 -0
  425. {yara_x-0.11.1 → yara_x-0.12.0}/lib/src/compiler/tests/testdata/warnings/22.in +0 -0
  426. {yara_x-0.11.1 → yara_x-0.12.0}/lib/src/compiler/tests/testdata/warnings/22.out +0 -0
  427. {yara_x-0.11.1 → yara_x-0.12.0}/lib/src/compiler/tests/testdata/warnings/24.in +0 -0
  428. {yara_x-0.11.1 → yara_x-0.12.0}/lib/src/compiler/tests/testdata/warnings/24.out +0 -0
  429. {yara_x-0.11.1 → yara_x-0.12.0}/lib/src/compiler/tests/testdata/warnings/25.in +0 -0
  430. {yara_x-0.11.1 → yara_x-0.12.0}/lib/src/compiler/tests/testdata/warnings/25.out +0 -0
  431. {yara_x-0.11.1 → yara_x-0.12.0}/lib/src/compiler/tests/testdata/warnings/26.in +0 -0
  432. {yara_x-0.11.1 → yara_x-0.12.0}/lib/src/compiler/tests/testdata/warnings/26.out +0 -0
  433. {yara_x-0.11.1 → yara_x-0.12.0}/lib/src/compiler/tests/testdata/warnings/27.in +0 -0
  434. {yara_x-0.11.1 → yara_x-0.12.0}/lib/src/compiler/tests/testdata/warnings/27.out +0 -0
  435. {yara_x-0.11.1 → yara_x-0.12.0}/lib/src/compiler/tests/testdata/warnings/28.in +0 -0
  436. {yara_x-0.11.1 → yara_x-0.12.0}/lib/src/compiler/tests/testdata/warnings/28.out +0 -0
  437. {yara_x-0.11.1 → yara_x-0.12.0}/lib/src/compiler/tests/testdata/warnings/29.in +0 -0
  438. {yara_x-0.11.1 → yara_x-0.12.0}/lib/src/compiler/tests/testdata/warnings/29.out +0 -0
  439. {yara_x-0.11.1 → yara_x-0.12.0}/lib/src/compiler/tests/testdata/warnings/3.in +0 -0
  440. {yara_x-0.11.1 → yara_x-0.12.0}/lib/src/compiler/tests/testdata/warnings/30.in +0 -0
  441. {yara_x-0.11.1 → yara_x-0.12.0}/lib/src/compiler/tests/testdata/warnings/30.out +0 -0
  442. {yara_x-0.11.1 → yara_x-0.12.0}/lib/src/compiler/tests/testdata/warnings/31.in +0 -0
  443. {yara_x-0.11.1 → yara_x-0.12.0}/lib/src/compiler/tests/testdata/warnings/31.out +0 -0
  444. {yara_x-0.11.1 → yara_x-0.12.0}/lib/src/compiler/tests/testdata/warnings/32.in +0 -0
  445. {yara_x-0.11.1 → yara_x-0.12.0}/lib/src/compiler/tests/testdata/warnings/32.out +0 -0
  446. {yara_x-0.11.1 → yara_x-0.12.0}/lib/src/compiler/tests/testdata/warnings/33.in +0 -0
  447. {yara_x-0.11.1 → yara_x-0.12.0}/lib/src/compiler/tests/testdata/warnings/33.out +0 -0
  448. {yara_x-0.11.1 → yara_x-0.12.0}/lib/src/compiler/tests/testdata/warnings/34.in +0 -0
  449. {yara_x-0.11.1 → yara_x-0.12.0}/lib/src/compiler/tests/testdata/warnings/4.in +0 -0
  450. {yara_x-0.11.1 → yara_x-0.12.0}/lib/src/compiler/tests/testdata/warnings/5.in +0 -0
  451. {yara_x-0.11.1 → yara_x-0.12.0}/lib/src/compiler/tests/testdata/warnings/6.in +0 -0
  452. {yara_x-0.11.1 → yara_x-0.12.0}/lib/src/compiler/tests/testdata/warnings/6.out +0 -0
  453. {yara_x-0.11.1 → yara_x-0.12.0}/lib/src/compiler/tests/testdata/warnings/7.in +0 -0
  454. {yara_x-0.11.1 → yara_x-0.12.0}/lib/src/compiler/tests/testdata/warnings/8.in +0 -0
  455. {yara_x-0.11.1 → yara_x-0.12.0}/lib/src/compiler/tests/testdata/warnings/9.in +0 -0
  456. {yara_x-0.11.1 → yara_x-0.12.0}/lib/src/compiler/tests/testdata/warnings/no_warnings.out +0 -0
  457. {yara_x-0.11.1 → yara_x-0.12.0}/lib/src/compiler/warnings.rs +0 -0
  458. {yara_x-0.11.1 → yara_x-0.12.0}/lib/src/models.rs +0 -0
  459. {yara_x-0.11.1 → yara_x-0.12.0}/lib/src/modules/add_modules.rs +0 -0
  460. {yara_x-0.11.1 → yara_x-0.12.0}/lib/src/modules/console.rs +0 -0
  461. {yara_x-0.11.1 → yara_x-0.12.0}/lib/src/modules/cuckoo/mod.rs +0 -0
  462. {yara_x-0.11.1 → yara_x-0.12.0}/lib/src/modules/cuckoo/schema.rs +0 -0
  463. {yara_x-0.11.1 → yara_x-0.12.0}/lib/src/modules/cuckoo/tests/mod.rs +0 -0
  464. {yara_x-0.11.1 → yara_x-0.12.0}/lib/src/modules/cuckoo/tests/testdata/1.json +0 -0
  465. {yara_x-0.11.1 → yara_x-0.12.0}/lib/src/modules/cuckoo/tests/testdata/1.yar +0 -0
  466. {yara_x-0.11.1 → yara_x-0.12.0}/lib/src/modules/cuckoo/tests/testdata/2.json +0 -0
  467. {yara_x-0.11.1 → yara_x-0.12.0}/lib/src/modules/cuckoo/tests/testdata/2.yar +0 -0
  468. {yara_x-0.11.1 → yara_x-0.12.0}/lib/src/modules/dotnet/mod.rs +0 -0
  469. {yara_x-0.11.1 → yara_x-0.12.0}/lib/src/modules/dotnet/parser.rs +0 -0
  470. {yara_x-0.11.1 → yara_x-0.12.0}/lib/src/modules/dotnet/tests/testdata/605ebe5b5f4b94e1a73e0ad1162bd542e5cb948d1a4ea5a575a14d6b9d6ee849.in +0 -0
  471. {yara_x-0.11.1 → yara_x-0.12.0}/lib/src/modules/dotnet/tests/testdata/86a1e48cfc843eabfe1b468ef9358c1068950f849c612ab808225b359db0bb8c.in +0 -0
  472. {yara_x-0.11.1 → yara_x-0.12.0}/lib/src/modules/elf/mod.rs +0 -0
  473. {yara_x-0.11.1 → yara_x-0.12.0}/lib/src/modules/elf/parser.rs +0 -0
  474. {yara_x-0.11.1 → yara_x-0.12.0}/lib/src/modules/elf/tests/mod.rs +0 -0
  475. {yara_x-0.11.1 → yara_x-0.12.0}/lib/src/modules/hash/mod.rs +0 -0
  476. {yara_x-0.11.1 → yara_x-0.12.0}/lib/src/modules/hash/tests/mod.rs +0 -0
  477. {yara_x-0.11.1 → yara_x-0.12.0}/lib/src/modules/lnk/mod.rs +0 -0
  478. {yara_x-0.11.1 → yara_x-0.12.0}/lib/src/modules/lnk/parser.rs +0 -0
  479. {yara_x-0.11.1 → yara_x-0.12.0}/lib/src/modules/magic/mod.rs +0 -0
  480. {yara_x-0.11.1 → yara_x-0.12.0}/lib/src/modules/magic/tests/mod.rs +0 -0
  481. {yara_x-0.11.1 → yara_x-0.12.0}/lib/src/modules/mod.rs +0 -0
  482. {yara_x-0.11.1 → yara_x-0.12.0}/lib/src/modules/modules.rs +0 -0
  483. {yara_x-0.11.1 → yara_x-0.12.0}/lib/src/modules/pe/mod.rs +0 -0
  484. {yara_x-0.11.1 → yara_x-0.12.0}/lib/src/modules/pe/parser.rs +0 -0
  485. {yara_x-0.11.1 → yara_x-0.12.0}/lib/src/modules/pe/rva2off.rs +0 -0
  486. {yara_x-0.11.1 → yara_x-0.12.0}/lib/src/modules/pe/tests/mod.rs +0 -0
  487. {yara_x-0.11.1 → yara_x-0.12.0}/lib/src/modules/protos/console.proto +0 -0
  488. {yara_x-0.11.1 → yara_x-0.12.0}/lib/src/modules/protos/cuckoo.proto +0 -0
  489. {yara_x-0.11.1 → yara_x-0.12.0}/lib/src/modules/protos/dotnet.proto +0 -0
  490. {yara_x-0.11.1 → yara_x-0.12.0}/lib/src/modules/protos/elf.proto +0 -0
  491. {yara_x-0.11.1 → yara_x-0.12.0}/lib/src/modules/protos/hash.proto +0 -0
  492. {yara_x-0.11.1 → yara_x-0.12.0}/lib/src/modules/protos/lnk.proto +0 -0
  493. {yara_x-0.11.1 → yara_x-0.12.0}/lib/src/modules/protos/magic.proto +0 -0
  494. {yara_x-0.11.1 → yara_x-0.12.0}/lib/src/modules/protos/mods.proto +0 -0
  495. {yara_x-0.11.1 → yara_x-0.12.0}/lib/src/modules/protos/string.proto +0 -0
  496. {yara_x-0.11.1 → yara_x-0.12.0}/lib/src/modules/protos/test_proto2.proto +0 -0
  497. {yara_x-0.11.1 → yara_x-0.12.0}/lib/src/modules/protos/test_proto3.proto +0 -0
  498. {yara_x-0.11.1 → yara_x-0.12.0}/lib/src/modules/protos/text.proto +0 -0
  499. {yara_x-0.11.1 → yara_x-0.12.0}/lib/src/modules/protos/time.proto +0 -0
  500. {yara_x-0.11.1 → yara_x-0.12.0}/lib/src/modules/protos/yaml.proto +0 -0
  501. {yara_x-0.11.1 → yara_x-0.12.0}/lib/src/modules/string.rs +0 -0
  502. {yara_x-0.11.1 → yara_x-0.12.0}/lib/src/modules/test_proto2/mod.rs +0 -0
  503. {yara_x-0.11.1 → yara_x-0.12.0}/lib/src/modules/test_proto2/tests/mod.rs +0 -0
  504. {yara_x-0.11.1 → yara_x-0.12.0}/lib/src/modules/test_proto3/mod.rs +0 -0
  505. {yara_x-0.11.1 → yara_x-0.12.0}/lib/src/modules/tests.rs +0 -0
  506. {yara_x-0.11.1 → yara_x-0.12.0}/lib/src/modules/text.rs +0 -0
  507. {yara_x-0.11.1 → yara_x-0.12.0}/lib/src/modules/time.rs +0 -0
  508. {yara_x-0.11.1 → yara_x-0.12.0}/lib/src/re/bitmapset.rs +0 -0
  509. {yara_x-0.11.1 → yara_x-0.12.0}/lib/src/re/fast/compiler.rs +0 -0
  510. {yara_x-0.11.1 → yara_x-0.12.0}/lib/src/re/fast/fastvm.rs +0 -0
  511. {yara_x-0.11.1 → yara_x-0.12.0}/lib/src/re/fast/instr.rs +0 -0
  512. {yara_x-0.11.1 → yara_x-0.12.0}/lib/src/re/fast/mod.rs +0 -0
  513. {yara_x-0.11.1 → yara_x-0.12.0}/lib/src/re/hir.rs +0 -0
  514. {yara_x-0.11.1 → yara_x-0.12.0}/lib/src/re/mod.rs +0 -0
  515. {yara_x-0.11.1 → yara_x-0.12.0}/lib/src/re/parser.rs +0 -0
  516. {yara_x-0.11.1 → yara_x-0.12.0}/lib/src/re/thompson/compiler.rs +0 -0
  517. {yara_x-0.11.1 → yara_x-0.12.0}/lib/src/re/thompson/instr.rs +0 -0
  518. {yara_x-0.11.1 → yara_x-0.12.0}/lib/src/re/thompson/mod.rs +0 -0
  519. {yara_x-0.11.1 → yara_x-0.12.0}/lib/src/re/thompson/pikevm.rs +0 -0
  520. {yara_x-0.11.1 → yara_x-0.12.0}/lib/src/re/thompson/tests.rs +0 -0
  521. {yara_x-0.11.1 → yara_x-0.12.0}/lib/src/scanner/matches.rs +0 -0
  522. {yara_x-0.11.1 → yara_x-0.12.0}/lib/src/string_pool.rs +0 -0
  523. {yara_x-0.11.1 → yara_x-0.12.0}/lib/src/symbols/mod.rs +0 -0
  524. {yara_x-0.11.1 → yara_x-0.12.0}/lib/src/tests/mod.rs +0 -0
  525. {yara_x-0.11.1 → yara_x-0.12.0}/lib/src/tests/testdata/jumps.bin +0 -0
  526. {yara_x-0.11.1 → yara_x-0.12.0}/lib/src/types/array.rs +0 -0
  527. {yara_x-0.11.1 → yara_x-0.12.0}/lib/src/types/func.rs +0 -0
  528. {yara_x-0.11.1 → yara_x-0.12.0}/lib/src/types/map.rs +0 -0
  529. {yara_x-0.11.1 → yara_x-0.12.0}/lib/src/variables.rs +0 -0
  530. {yara_x-0.11.1 → yara_x-0.12.0}/lib/src/wasm/builder.rs +0 -0
  531. {yara_x-0.11.1 → yara_x-0.12.0}/lib/src/wasm/mod.rs +0 -0
  532. {yara_x-0.11.1 → yara_x-0.12.0}/lib/src/wasm/string.rs +0 -0
  533. {yara_x-0.11.1 → yara_x-0.12.0}/macros/Cargo.toml +0 -0
  534. {yara_x-0.11.1 → yara_x-0.12.0}/macros/src/error.rs +0 -0
  535. {yara_x-0.11.1 → yara_x-0.12.0}/macros/src/lib.rs +0 -0
  536. {yara_x-0.11.1 → yara_x-0.12.0}/macros/src/module_export.rs +0 -0
  537. {yara_x-0.11.1 → yara_x-0.12.0}/macros/src/module_main.rs +0 -0
  538. {yara_x-0.11.1 → yara_x-0.12.0}/macros/src/wasm_export.rs +0 -0
  539. {yara_x-0.11.1 → yara_x-0.12.0}/parser/README.md +0 -0
  540. {yara_x-0.11.1 → yara_x-0.12.0}/parser/src/ast/ascii_tree.rs +0 -0
  541. {yara_x-0.11.1 → yara_x-0.12.0}/parser/src/ast/cst2ast.rs +0 -0
  542. {yara_x-0.11.1 → yara_x-0.12.0}/parser/src/ast/errors.rs +0 -0
  543. {yara_x-0.11.1 → yara_x-0.12.0}/parser/src/ast/mod.rs +0 -0
  544. {yara_x-0.11.1 → yara_x-0.12.0}/parser/src/cst/mod.rs +0 -0
  545. {yara_x-0.11.1 → yara_x-0.12.0}/parser/src/cst/syntax_kind.rs +0 -0
  546. {yara_x-0.11.1 → yara_x-0.12.0}/parser/src/cst/syntax_stream.rs +0 -0
  547. {yara_x-0.11.1 → yara_x-0.12.0}/parser/src/cst/tests.rs +0 -0
  548. {yara_x-0.11.1 → yara_x-0.12.0}/parser/src/lib.rs +0 -0
  549. {yara_x-0.11.1 → yara_x-0.12.0}/parser/src/parser/mod.rs +0 -0
  550. {yara_x-0.11.1 → yara_x-0.12.0}/parser/src/parser/tests/mod.rs +0 -0
  551. {yara_x-0.11.1 → yara_x-0.12.0}/parser/src/parser/tests/testdata/arithmetic-ops.ast +0 -0
  552. {yara_x-0.11.1 → yara_x-0.12.0}/parser/src/parser/tests/testdata/arithmetic-ops.cst +0 -0
  553. {yara_x-0.11.1 → yara_x-0.12.0}/parser/src/parser/tests/testdata/arithmetic-ops.in +0 -0
  554. {yara_x-0.11.1 → yara_x-0.12.0}/parser/src/parser/tests/testdata/basic-1.ast +0 -0
  555. {yara_x-0.11.1 → yara_x-0.12.0}/parser/src/parser/tests/testdata/basic-1.cst +0 -0
  556. {yara_x-0.11.1 → yara_x-0.12.0}/parser/src/parser/tests/testdata/basic-1.in +0 -0
  557. {yara_x-0.11.1 → yara_x-0.12.0}/parser/src/parser/tests/testdata/basic-2.ast +0 -0
  558. {yara_x-0.11.1 → yara_x-0.12.0}/parser/src/parser/tests/testdata/basic-2.cst +0 -0
  559. {yara_x-0.11.1 → yara_x-0.12.0}/parser/src/parser/tests/testdata/basic-2.in +0 -0
  560. {yara_x-0.11.1 → yara_x-0.12.0}/parser/src/parser/tests/testdata/basic-3.ast +0 -0
  561. {yara_x-0.11.1 → yara_x-0.12.0}/parser/src/parser/tests/testdata/basic-3.cst +0 -0
  562. {yara_x-0.11.1 → yara_x-0.12.0}/parser/src/parser/tests/testdata/basic-3.in +0 -0
  563. {yara_x-0.11.1 → yara_x-0.12.0}/parser/src/parser/tests/testdata/basic-4.ast +0 -0
  564. {yara_x-0.11.1 → yara_x-0.12.0}/parser/src/parser/tests/testdata/basic-4.cst +0 -0
  565. {yara_x-0.11.1 → yara_x-0.12.0}/parser/src/parser/tests/testdata/basic-4.in +0 -0
  566. {yara_x-0.11.1 → yara_x-0.12.0}/parser/src/parser/tests/testdata/basic-error-1.ast +0 -0
  567. {yara_x-0.11.1 → yara_x-0.12.0}/parser/src/parser/tests/testdata/basic-error-1.cst +0 -0
  568. {yara_x-0.11.1 → yara_x-0.12.0}/parser/src/parser/tests/testdata/basic-error-1.in +0 -0
  569. {yara_x-0.11.1 → yara_x-0.12.0}/parser/src/parser/tests/testdata/basic-error-2.ast +0 -0
  570. {yara_x-0.11.1 → yara_x-0.12.0}/parser/src/parser/tests/testdata/basic-error-2.cst +0 -0
  571. {yara_x-0.11.1 → yara_x-0.12.0}/parser/src/parser/tests/testdata/basic-error-2.in +0 -0
  572. {yara_x-0.11.1 → yara_x-0.12.0}/parser/src/parser/tests/testdata/basic-error-3.ast +0 -0
  573. {yara_x-0.11.1 → yara_x-0.12.0}/parser/src/parser/tests/testdata/basic-error-3.cst +0 -0
  574. {yara_x-0.11.1 → yara_x-0.12.0}/parser/src/parser/tests/testdata/basic-error-3.in +0 -0
  575. {yara_x-0.11.1 → yara_x-0.12.0}/parser/src/parser/tests/testdata/basic-error-4.ast +0 -0
  576. {yara_x-0.11.1 → yara_x-0.12.0}/parser/src/parser/tests/testdata/basic-error-4.cst +0 -0
  577. {yara_x-0.11.1 → yara_x-0.12.0}/parser/src/parser/tests/testdata/basic-error-4.in +0 -0
  578. {yara_x-0.11.1 → yara_x-0.12.0}/parser/src/parser/tests/testdata/basic-error-5.ast +0 -0
  579. {yara_x-0.11.1 → yara_x-0.12.0}/parser/src/parser/tests/testdata/basic-error-5.cst +0 -0
  580. {yara_x-0.11.1 → yara_x-0.12.0}/parser/src/parser/tests/testdata/basic-error-5.in +0 -0
  581. {yara_x-0.11.1 → yara_x-0.12.0}/parser/src/parser/tests/testdata/bitwise-ops-error-1.ast +0 -0
  582. {yara_x-0.11.1 → yara_x-0.12.0}/parser/src/parser/tests/testdata/bitwise-ops-error-1.cst +0 -0
  583. {yara_x-0.11.1 → yara_x-0.12.0}/parser/src/parser/tests/testdata/bitwise-ops-error-1.in +0 -0
  584. {yara_x-0.11.1 → yara_x-0.12.0}/parser/src/parser/tests/testdata/bitwise-ops.ast +0 -0
  585. {yara_x-0.11.1 → yara_x-0.12.0}/parser/src/parser/tests/testdata/bitwise-ops.cst +0 -0
  586. {yara_x-0.11.1 → yara_x-0.12.0}/parser/src/parser/tests/testdata/bitwise-ops.in +0 -0
  587. {yara_x-0.11.1 → yara_x-0.12.0}/parser/src/parser/tests/testdata/comments.ast +0 -0
  588. {yara_x-0.11.1 → yara_x-0.12.0}/parser/src/parser/tests/testdata/comments.cst +0 -0
  589. {yara_x-0.11.1 → yara_x-0.12.0}/parser/src/parser/tests/testdata/comments.in +0 -0
  590. {yara_x-0.11.1 → yara_x-0.12.0}/parser/src/parser/tests/testdata/expr-1.ast +0 -0
  591. {yara_x-0.11.1 → yara_x-0.12.0}/parser/src/parser/tests/testdata/expr-1.cst +0 -0
  592. {yara_x-0.11.1 → yara_x-0.12.0}/parser/src/parser/tests/testdata/expr-1.in +0 -0
  593. {yara_x-0.11.1 → yara_x-0.12.0}/parser/src/parser/tests/testdata/expr-2.ast +0 -0
  594. {yara_x-0.11.1 → yara_x-0.12.0}/parser/src/parser/tests/testdata/expr-2.cst +0 -0
  595. {yara_x-0.11.1 → yara_x-0.12.0}/parser/src/parser/tests/testdata/expr-2.in +0 -0
  596. {yara_x-0.11.1 → yara_x-0.12.0}/parser/src/parser/tests/testdata/expr-3.ast +0 -0
  597. {yara_x-0.11.1 → yara_x-0.12.0}/parser/src/parser/tests/testdata/expr-3.cst +0 -0
  598. {yara_x-0.11.1 → yara_x-0.12.0}/parser/src/parser/tests/testdata/expr-3.in +0 -0
  599. {yara_x-0.11.1 → yara_x-0.12.0}/parser/src/parser/tests/testdata/expr-4.ast +0 -0
  600. {yara_x-0.11.1 → yara_x-0.12.0}/parser/src/parser/tests/testdata/expr-4.cst +0 -0
  601. {yara_x-0.11.1 → yara_x-0.12.0}/parser/src/parser/tests/testdata/expr-4.in +0 -0
  602. {yara_x-0.11.1 → yara_x-0.12.0}/parser/src/parser/tests/testdata/expr-5.ast +0 -0
  603. {yara_x-0.11.1 → yara_x-0.12.0}/parser/src/parser/tests/testdata/expr-5.cst +0 -0
  604. {yara_x-0.11.1 → yara_x-0.12.0}/parser/src/parser/tests/testdata/expr-5.in +0 -0
  605. {yara_x-0.11.1 → yara_x-0.12.0}/parser/src/parser/tests/testdata/expr-6.ast +0 -0
  606. {yara_x-0.11.1 → yara_x-0.12.0}/parser/src/parser/tests/testdata/expr-6.cst +0 -0
  607. {yara_x-0.11.1 → yara_x-0.12.0}/parser/src/parser/tests/testdata/expr-6.in +0 -0
  608. {yara_x-0.11.1 → yara_x-0.12.0}/parser/src/parser/tests/testdata/expr-error-1.ast +0 -0
  609. {yara_x-0.11.1 → yara_x-0.12.0}/parser/src/parser/tests/testdata/expr-error-1.cst +0 -0
  610. {yara_x-0.11.1 → yara_x-0.12.0}/parser/src/parser/tests/testdata/expr-error-1.in +0 -0
  611. {yara_x-0.11.1 → yara_x-0.12.0}/parser/src/parser/tests/testdata/for-1.ast +0 -0
  612. {yara_x-0.11.1 → yara_x-0.12.0}/parser/src/parser/tests/testdata/for-1.cst +0 -0
  613. {yara_x-0.11.1 → yara_x-0.12.0}/parser/src/parser/tests/testdata/for-1.in +0 -0
  614. {yara_x-0.11.1 → yara_x-0.12.0}/parser/src/parser/tests/testdata/for-2.ast +0 -0
  615. {yara_x-0.11.1 → yara_x-0.12.0}/parser/src/parser/tests/testdata/for-2.cst +0 -0
  616. {yara_x-0.11.1 → yara_x-0.12.0}/parser/src/parser/tests/testdata/for-2.in +0 -0
  617. {yara_x-0.11.1 → yara_x-0.12.0}/parser/src/parser/tests/testdata/for-3.ast +0 -0
  618. {yara_x-0.11.1 → yara_x-0.12.0}/parser/src/parser/tests/testdata/for-3.cst +0 -0
  619. {yara_x-0.11.1 → yara_x-0.12.0}/parser/src/parser/tests/testdata/for-3.in +0 -0
  620. {yara_x-0.11.1 → yara_x-0.12.0}/parser/src/parser/tests/testdata/for-4.ast +0 -0
  621. {yara_x-0.11.1 → yara_x-0.12.0}/parser/src/parser/tests/testdata/for-4.cst +0 -0
  622. {yara_x-0.11.1 → yara_x-0.12.0}/parser/src/parser/tests/testdata/for-4.in +0 -0
  623. {yara_x-0.11.1 → yara_x-0.12.0}/parser/src/parser/tests/testdata/for-5.ast +0 -0
  624. {yara_x-0.11.1 → yara_x-0.12.0}/parser/src/parser/tests/testdata/for-5.cst +0 -0
  625. {yara_x-0.11.1 → yara_x-0.12.0}/parser/src/parser/tests/testdata/for-5.in +0 -0
  626. {yara_x-0.11.1 → yara_x-0.12.0}/parser/src/parser/tests/testdata/for-error-1.ast +0 -0
  627. {yara_x-0.11.1 → yara_x-0.12.0}/parser/src/parser/tests/testdata/for-error-1.cst +0 -0
  628. {yara_x-0.11.1 → yara_x-0.12.0}/parser/src/parser/tests/testdata/for-error-1.in +0 -0
  629. {yara_x-0.11.1 → yara_x-0.12.0}/parser/src/parser/tests/testdata/func-call.ast +0 -0
  630. {yara_x-0.11.1 → yara_x-0.12.0}/parser/src/parser/tests/testdata/func-call.cst +0 -0
  631. {yara_x-0.11.1 → yara_x-0.12.0}/parser/src/parser/tests/testdata/func-call.in +0 -0
  632. {yara_x-0.11.1 → yara_x-0.12.0}/parser/src/parser/tests/testdata/hex-patterns-1.ast +0 -0
  633. {yara_x-0.11.1 → yara_x-0.12.0}/parser/src/parser/tests/testdata/hex-patterns-1.cst +0 -0
  634. {yara_x-0.11.1 → yara_x-0.12.0}/parser/src/parser/tests/testdata/hex-patterns-1.in +0 -0
  635. {yara_x-0.11.1 → yara_x-0.12.0}/parser/src/parser/tests/testdata/hex-patterns-2.ast +0 -0
  636. {yara_x-0.11.1 → yara_x-0.12.0}/parser/src/parser/tests/testdata/hex-patterns-2.cst +0 -0
  637. {yara_x-0.11.1 → yara_x-0.12.0}/parser/src/parser/tests/testdata/hex-patterns-2.in +0 -0
  638. {yara_x-0.11.1 → yara_x-0.12.0}/parser/src/parser/tests/testdata/hex-patterns-3.ast +0 -0
  639. {yara_x-0.11.1 → yara_x-0.12.0}/parser/src/parser/tests/testdata/hex-patterns-3.cst +0 -0
  640. {yara_x-0.11.1 → yara_x-0.12.0}/parser/src/parser/tests/testdata/hex-patterns-3.in +0 -0
  641. {yara_x-0.11.1 → yara_x-0.12.0}/parser/src/parser/tests/testdata/hex-patterns-error-1.ast +0 -0
  642. {yara_x-0.11.1 → yara_x-0.12.0}/parser/src/parser/tests/testdata/hex-patterns-error-1.cst +0 -0
  643. {yara_x-0.11.1 → yara_x-0.12.0}/parser/src/parser/tests/testdata/hex-patterns-error-1.in +0 -0
  644. {yara_x-0.11.1 → yara_x-0.12.0}/parser/src/parser/tests/testdata/hex-patterns-error-2.ast +0 -0
  645. {yara_x-0.11.1 → yara_x-0.12.0}/parser/src/parser/tests/testdata/hex-patterns-error-2.cst +0 -0
  646. {yara_x-0.11.1 → yara_x-0.12.0}/parser/src/parser/tests/testdata/hex-patterns-error-2.in +0 -0
  647. {yara_x-0.11.1 → yara_x-0.12.0}/parser/src/parser/tests/testdata/meta-error-1.ast +0 -0
  648. {yara_x-0.11.1 → yara_x-0.12.0}/parser/src/parser/tests/testdata/meta-error-1.cst +0 -0
  649. {yara_x-0.11.1 → yara_x-0.12.0}/parser/src/parser/tests/testdata/meta-error-1.in +0 -0
  650. {yara_x-0.11.1 → yara_x-0.12.0}/parser/src/parser/tests/testdata/meta-error-2.ast +0 -0
  651. {yara_x-0.11.1 → yara_x-0.12.0}/parser/src/parser/tests/testdata/meta-error-2.cst +0 -0
  652. {yara_x-0.11.1 → yara_x-0.12.0}/parser/src/parser/tests/testdata/meta-error-2.in +0 -0
  653. {yara_x-0.11.1 → yara_x-0.12.0}/parser/src/parser/tests/testdata/meta-error-3.ast +0 -0
  654. {yara_x-0.11.1 → yara_x-0.12.0}/parser/src/parser/tests/testdata/meta-error-3.cst +0 -0
  655. {yara_x-0.11.1 → yara_x-0.12.0}/parser/src/parser/tests/testdata/meta-error-3.in +0 -0
  656. {yara_x-0.11.1 → yara_x-0.12.0}/parser/src/parser/tests/testdata/meta-error-4.ast +0 -0
  657. {yara_x-0.11.1 → yara_x-0.12.0}/parser/src/parser/tests/testdata/meta-error-4.cst +0 -0
  658. {yara_x-0.11.1 → yara_x-0.12.0}/parser/src/parser/tests/testdata/meta-error-4.in +0 -0
  659. {yara_x-0.11.1 → yara_x-0.12.0}/parser/src/parser/tests/testdata/meta-error-5.ast +0 -0
  660. {yara_x-0.11.1 → yara_x-0.12.0}/parser/src/parser/tests/testdata/meta-error-5.cst +0 -0
  661. {yara_x-0.11.1 → yara_x-0.12.0}/parser/src/parser/tests/testdata/meta-error-5.in +0 -0
  662. {yara_x-0.11.1 → yara_x-0.12.0}/parser/src/parser/tests/testdata/meta-error-6.ast +0 -0
  663. {yara_x-0.11.1 → yara_x-0.12.0}/parser/src/parser/tests/testdata/meta-error-6.cst +0 -0
  664. {yara_x-0.11.1 → yara_x-0.12.0}/parser/src/parser/tests/testdata/meta-error-6.in +0 -0
  665. {yara_x-0.11.1 → yara_x-0.12.0}/parser/src/parser/tests/testdata/meta.ast +0 -0
  666. {yara_x-0.11.1 → yara_x-0.12.0}/parser/src/parser/tests/testdata/meta.cst +0 -0
  667. {yara_x-0.11.1 → yara_x-0.12.0}/parser/src/parser/tests/testdata/meta.in +0 -0
  668. {yara_x-0.11.1 → yara_x-0.12.0}/parser/src/parser/tests/testdata/of-1.ast +0 -0
  669. {yara_x-0.11.1 → yara_x-0.12.0}/parser/src/parser/tests/testdata/of-1.cst +0 -0
  670. {yara_x-0.11.1 → yara_x-0.12.0}/parser/src/parser/tests/testdata/of-1.in +0 -0
  671. {yara_x-0.11.1 → yara_x-0.12.0}/parser/src/parser/tests/testdata/of-error-1.ast +0 -0
  672. {yara_x-0.11.1 → yara_x-0.12.0}/parser/src/parser/tests/testdata/of-error-1.cst +0 -0
  673. {yara_x-0.11.1 → yara_x-0.12.0}/parser/src/parser/tests/testdata/of-error-1.in +0 -0
  674. {yara_x-0.11.1 → yara_x-0.12.0}/parser/src/parser/tests/testdata/pattern-mods-1.ast +0 -0
  675. {yara_x-0.11.1 → yara_x-0.12.0}/parser/src/parser/tests/testdata/pattern-mods-1.cst +0 -0
  676. {yara_x-0.11.1 → yara_x-0.12.0}/parser/src/parser/tests/testdata/pattern-mods-1.in +0 -0
  677. {yara_x-0.11.1 → yara_x-0.12.0}/parser/src/parser/tests/testdata/pattern-mods-error-1.ast +0 -0
  678. {yara_x-0.11.1 → yara_x-0.12.0}/parser/src/parser/tests/testdata/pattern-mods-error-1.cst +0 -0
  679. {yara_x-0.11.1 → yara_x-0.12.0}/parser/src/parser/tests/testdata/pattern-mods-error-1.in +0 -0
  680. {yara_x-0.11.1 → yara_x-0.12.0}/parser/src/parser/tests/testdata/patterns-1.ast +0 -0
  681. {yara_x-0.11.1 → yara_x-0.12.0}/parser/src/parser/tests/testdata/patterns-1.cst +0 -0
  682. {yara_x-0.11.1 → yara_x-0.12.0}/parser/src/parser/tests/testdata/patterns-1.in +0 -0
  683. {yara_x-0.11.1 → yara_x-0.12.0}/parser/src/parser/tests/testdata/patterns-2.ast +0 -0
  684. {yara_x-0.11.1 → yara_x-0.12.0}/parser/src/parser/tests/testdata/patterns-2.cst +0 -0
  685. {yara_x-0.11.1 → yara_x-0.12.0}/parser/src/parser/tests/testdata/patterns-2.in +0 -0
  686. {yara_x-0.11.1 → yara_x-0.12.0}/parser/src/parser/tests/testdata/patterns-3.ast +0 -0
  687. {yara_x-0.11.1 → yara_x-0.12.0}/parser/src/parser/tests/testdata/patterns-3.cst +0 -0
  688. {yara_x-0.11.1 → yara_x-0.12.0}/parser/src/parser/tests/testdata/patterns-3.in +0 -0
  689. {yara_x-0.11.1 → yara_x-0.12.0}/parser/src/parser/tests/testdata/patterns-error-1.ast +0 -0
  690. {yara_x-0.11.1 → yara_x-0.12.0}/parser/src/parser/tests/testdata/patterns-error-1.cst +0 -0
  691. {yara_x-0.11.1 → yara_x-0.12.0}/parser/src/parser/tests/testdata/patterns-error-1.in +0 -0
  692. {yara_x-0.11.1 → yara_x-0.12.0}/parser/src/parser/tests/testdata/patterns-error-2.ast +0 -0
  693. {yara_x-0.11.1 → yara_x-0.12.0}/parser/src/parser/tests/testdata/patterns-error-2.cst +0 -0
  694. {yara_x-0.11.1 → yara_x-0.12.0}/parser/src/parser/tests/testdata/patterns-error-2.in +0 -0
  695. {yara_x-0.11.1 → yara_x-0.12.0}/parser/src/parser/tests/testdata/patterns-error-3.ast +0 -0
  696. {yara_x-0.11.1 → yara_x-0.12.0}/parser/src/parser/tests/testdata/patterns-error-3.cst +0 -0
  697. {yara_x-0.11.1 → yara_x-0.12.0}/parser/src/parser/tests/testdata/patterns-error-3.in +0 -0
  698. {yara_x-0.11.1 → yara_x-0.12.0}/parser/src/parser/tests/testdata/patterns-error-4.ast +0 -0
  699. {yara_x-0.11.1 → yara_x-0.12.0}/parser/src/parser/tests/testdata/patterns-error-4.cst +0 -0
  700. {yara_x-0.11.1 → yara_x-0.12.0}/parser/src/parser/tests/testdata/patterns-error-4.in +0 -0
  701. {yara_x-0.11.1 → yara_x-0.12.0}/parser/src/parser/tests/testdata/patterns-error-5.ast +0 -0
  702. {yara_x-0.11.1 → yara_x-0.12.0}/parser/src/parser/tests/testdata/patterns-error-5.cst +0 -0
  703. {yara_x-0.11.1 → yara_x-0.12.0}/parser/src/parser/tests/testdata/patterns-error-5.in +0 -0
  704. {yara_x-0.11.1 → yara_x-0.12.0}/parser/src/parser/tests/testdata/patterns-error-6.ast +0 -0
  705. {yara_x-0.11.1 → yara_x-0.12.0}/parser/src/parser/tests/testdata/patterns-error-6.cst +0 -0
  706. {yara_x-0.11.1 → yara_x-0.12.0}/parser/src/parser/tests/testdata/patterns-error-6.in +0 -0
  707. {yara_x-0.11.1 → yara_x-0.12.0}/parser/src/parser/tests/testdata/patterns-error-7.ast +0 -0
  708. {yara_x-0.11.1 → yara_x-0.12.0}/parser/src/parser/tests/testdata/patterns-error-7.cst +0 -0
  709. {yara_x-0.11.1 → yara_x-0.12.0}/parser/src/parser/tests/testdata/patterns-error-7.in +0 -0
  710. {yara_x-0.11.1 → yara_x-0.12.0}/parser/src/parser/tests/testdata/rule-mods-1.ast +0 -0
  711. {yara_x-0.11.1 → yara_x-0.12.0}/parser/src/parser/tests/testdata/rule-mods-1.cst +0 -0
  712. {yara_x-0.11.1 → yara_x-0.12.0}/parser/src/parser/tests/testdata/rule-mods-1.in +0 -0
  713. {yara_x-0.11.1 → yara_x-0.12.0}/parser/src/parser/tests/testdata/rule-tags-error-1.ast +0 -0
  714. {yara_x-0.11.1 → yara_x-0.12.0}/parser/src/parser/tests/testdata/rule-tags-error-1.cst +0 -0
  715. {yara_x-0.11.1 → yara_x-0.12.0}/parser/src/parser/tests/testdata/rule-tags-error-1.in +0 -0
  716. {yara_x-0.11.1 → yara_x-0.12.0}/parser/src/parser/tests/testdata/rule-tags-error-2.ast +0 -0
  717. {yara_x-0.11.1 → yara_x-0.12.0}/parser/src/parser/tests/testdata/rule-tags-error-2.cst +0 -0
  718. {yara_x-0.11.1 → yara_x-0.12.0}/parser/src/parser/tests/testdata/rule-tags-error-2.in +0 -0
  719. {yara_x-0.11.1 → yara_x-0.12.0}/parser/src/parser/tests/testdata/rule-tags-error-3.ast +0 -0
  720. {yara_x-0.11.1 → yara_x-0.12.0}/parser/src/parser/tests/testdata/rule-tags-error-3.cst +0 -0
  721. {yara_x-0.11.1 → yara_x-0.12.0}/parser/src/parser/tests/testdata/rule-tags-error-3.in +0 -0
  722. {yara_x-0.11.1 → yara_x-0.12.0}/parser/src/parser/tests/testdata/rule-tags.ast +0 -0
  723. {yara_x-0.11.1 → yara_x-0.12.0}/parser/src/parser/tests/testdata/rule-tags.cst +0 -0
  724. {yara_x-0.11.1 → yara_x-0.12.0}/parser/src/parser/tests/testdata/rule-tags.in +0 -0
  725. {yara_x-0.11.1 → yara_x-0.12.0}/parser/src/parser/tests/testdata/with-1.ast +0 -0
  726. {yara_x-0.11.1 → yara_x-0.12.0}/parser/src/parser/tests/testdata/with-1.cst +0 -0
  727. {yara_x-0.11.1 → yara_x-0.12.0}/parser/src/parser/tests/testdata/with-1.in +0 -0
  728. {yara_x-0.11.1 → yara_x-0.12.0}/parser/src/parser/tests/testdata/with-2.ast +0 -0
  729. {yara_x-0.11.1 → yara_x-0.12.0}/parser/src/parser/tests/testdata/with-2.cst +0 -0
  730. {yara_x-0.11.1 → yara_x-0.12.0}/parser/src/parser/tests/testdata/with-2.in +0 -0
  731. {yara_x-0.11.1 → yara_x-0.12.0}/parser/src/parser/tests/testdata/with-error-1.ast +0 -0
  732. {yara_x-0.11.1 → yara_x-0.12.0}/parser/src/parser/tests/testdata/with-error-1.cst +0 -0
  733. {yara_x-0.11.1 → yara_x-0.12.0}/parser/src/parser/tests/testdata/with-error-1.in +0 -0
  734. {yara_x-0.11.1 → yara_x-0.12.0}/parser/src/parser/tests/testdata/with-error-2.ast +0 -0
  735. {yara_x-0.11.1 → yara_x-0.12.0}/parser/src/parser/tests/testdata/with-error-2.cst +0 -0
  736. {yara_x-0.11.1 → yara_x-0.12.0}/parser/src/parser/tests/testdata/with-error-2.in +0 -0
  737. {yara_x-0.11.1 → yara_x-0.12.0}/parser/src/parser/tests/testdata/with-error-3.ast +0 -0
  738. {yara_x-0.11.1 → yara_x-0.12.0}/parser/src/parser/tests/testdata/with-error-3.cst +0 -0
  739. {yara_x-0.11.1 → yara_x-0.12.0}/parser/src/parser/tests/testdata/with-error-3.in +0 -0
  740. {yara_x-0.11.1 → yara_x-0.12.0}/parser/src/parser/token_stream.rs +0 -0
  741. {yara_x-0.11.1 → yara_x-0.12.0}/parser/src/tokenizer/mod.rs +0 -0
  742. {yara_x-0.11.1 → yara_x-0.12.0}/parser/src/tokenizer/tests.rs +0 -0
  743. {yara_x-0.11.1 → yara_x-0.12.0}/parser/src/tokenizer/tokens.rs +0 -0
  744. {yara_x-0.11.1 → yara_x-0.12.0}/proto/Cargo.toml +0 -0
  745. {yara_x-0.11.1 → yara_x-0.12.0}/proto/README.md +0 -0
  746. {yara_x-0.11.1 → yara_x-0.12.0}/proto/build.rs +0 -0
  747. {yara_x-0.11.1 → yara_x-0.12.0}/proto/src/lib.rs +0 -0
  748. {yara_x-0.11.1 → yara_x-0.12.0}/proto-yaml/Cargo.toml +0 -0
  749. {yara_x-0.11.1 → yara_x-0.12.0}/proto-yaml/README.md +0 -0
  750. {yara_x-0.11.1 → yara_x-0.12.0}/proto-yaml/build.rs +0 -0
  751. {yara_x-0.11.1 → yara_x-0.12.0}/proto-yaml/src/lib.rs +0 -0
  752. {yara_x-0.11.1 → yara_x-0.12.0}/proto-yaml/src/tests/mod.rs +0 -0
  753. {yara_x-0.11.1 → yara_x-0.12.0}/proto-yaml/src/tests/test.proto +0 -0
  754. {yara_x-0.11.1 → yara_x-0.12.0}/proto-yaml/src/tests/testdata/1.in +0 -0
  755. {yara_x-0.11.1 → yara_x-0.12.0}/proto-yaml/src/tests/testdata/1.out +0 -0
  756. {yara_x-0.11.1 → yara_x-0.12.0}/proto-yaml/src/yaml.proto +0 -0
  757. {yara_x-0.11.1 → yara_x-0.12.0}/py/build.rs +0 -0
  758. {yara_x-0.11.1 → yara_x-0.12.0}/py/tests/test_api.py +0 -0
  759. {yara_x-0.11.1 → yara_x-0.12.0}/py/yara_x.pyi +0 -0
@@ -75,9 +75,9 @@ dependencies = [
75
75
 
76
76
  [[package]]
77
77
  name = "annotate-snippets"
78
- version = "0.11.4"
78
+ version = "0.11.5"
79
79
  source = "registry+https://github.com/rust-lang/crates.io-index"
80
- checksum = "24e35ed54e5ea7997c14ed4c70ba043478db1112e98263b3b035907aa197d991"
80
+ checksum = "710e8eae58854cdc1790fcb56cca04d712a17be849eeb81da2a724bf4bae2bc4"
81
81
  dependencies = [
82
82
  "anstyle",
83
83
  "unicode-width",
@@ -134,9 +134,9 @@ dependencies = [
134
134
 
135
135
  [[package]]
136
136
  name = "anyhow"
137
- version = "1.0.93"
137
+ version = "1.0.94"
138
138
  source = "registry+https://github.com/rust-lang/crates.io-index"
139
- checksum = "4c95c10ba0b00a02636238b814946408b1322d5ac4760326e6fb8ec956d85775"
139
+ checksum = "c1fd03a028ef38ba2276dce7e33fcd6369c158a1bca17946c4b1b701891c1ff7"
140
140
 
141
141
  [[package]]
142
142
  name = "arbitrary"
@@ -149,9 +149,9 @@ dependencies = [
149
149
 
150
150
  [[package]]
151
151
  name = "array-bytes"
152
- version = "6.2.3"
152
+ version = "7.1.0"
153
153
  source = "registry+https://github.com/rust-lang/crates.io-index"
154
- checksum = "5d5dde061bd34119e902bbb2d9b90c5692635cf59fb91d582c2b68043f1b8293"
154
+ checksum = "ede2733fdd21c8fde19f3d16cebc409666f2fc2b623a22c5078a6775708db5de"
155
155
 
156
156
  [[package]]
157
157
  name = "ascii_tree"
@@ -183,7 +183,7 @@ checksum = "965c2d33e53cb6b267e148a4cb0760bc01f4904c1cd4bb4002a085bb016d1490"
183
183
  dependencies = [
184
184
  "proc-macro2",
185
185
  "quote",
186
- "syn 2.0.89",
186
+ "syn 2.0.90",
187
187
  "synstructure",
188
188
  ]
189
189
 
@@ -195,7 +195,7 @@ checksum = "7b18050c2cd6fe86c3a76584ef5e0baf286d038cda203eb6223df2cc413565f7"
195
195
  dependencies = [
196
196
  "proc-macro2",
197
197
  "quote",
198
- "syn 2.0.89",
198
+ "syn 2.0.90",
199
199
  ]
200
200
 
201
201
  [[package]]
@@ -338,6 +338,12 @@ version = "3.16.0"
338
338
  source = "registry+https://github.com/rust-lang/crates.io-index"
339
339
  checksum = "79296716171880943b8470b5f8d03aa55eb2e645a4874bdbb28adb49162e012c"
340
340
 
341
+ [[package]]
342
+ name = "bytecount"
343
+ version = "0.6.8"
344
+ source = "registry+https://github.com/rust-lang/crates.io-index"
345
+ checksum = "5ce89b21cab1437276d2650d57e971f9d548a2d9037cc231abdc0562b97498ce"
346
+
341
347
  [[package]]
342
348
  name = "bytemuck"
343
349
  version = "1.20.0"
@@ -352,9 +358,9 @@ checksum = "1fd0f2584146f6f2ef48085050886acf353beff7305ebd1ae69500e27c67f64b"
352
358
 
353
359
  [[package]]
354
360
  name = "bytes"
355
- version = "1.8.0"
361
+ version = "1.9.0"
356
362
  source = "registry+https://github.com/rust-lang/crates.io-index"
357
- checksum = "9ac0150caa2ae65ca5bd83f25c7de183dea78d4d366469f148435e2acfbad0da"
363
+ checksum = "325918d6fe32f23b19878fe4b34794ae41fc19ddbe53b10571a4874d44ffd39b"
358
364
 
359
365
  [[package]]
360
366
  name = "bzip2"
@@ -377,6 +383,37 @@ dependencies = [
377
383
  "pkg-config",
378
384
  ]
379
385
 
386
+ [[package]]
387
+ name = "camino"
388
+ version = "1.1.9"
389
+ source = "registry+https://github.com/rust-lang/crates.io-index"
390
+ checksum = "8b96ec4966b5813e2c0507c1f86115c8c5abaadc3980879c3424042a02fd1ad3"
391
+ dependencies = [
392
+ "serde",
393
+ ]
394
+
395
+ [[package]]
396
+ name = "cargo-platform"
397
+ version = "0.1.9"
398
+ source = "registry+https://github.com/rust-lang/crates.io-index"
399
+ checksum = "e35af189006b9c0f00a064685c727031e3ed2d8020f7ba284d78cc2671bd36ea"
400
+ dependencies = [
401
+ "serde",
402
+ ]
403
+
404
+ [[package]]
405
+ name = "cargo_metadata"
406
+ version = "0.14.2"
407
+ source = "registry+https://github.com/rust-lang/crates.io-index"
408
+ checksum = "4acbb09d9ee8e23699b9634375c72795d095bf268439da88562cf9b501f181fa"
409
+ dependencies = [
410
+ "camino",
411
+ "cargo-platform",
412
+ "semver 1.0.23",
413
+ "serde",
414
+ "serde_json",
415
+ ]
416
+
380
417
  [[package]]
381
418
  name = "castaway"
382
419
  version = "0.2.3"
@@ -394,22 +431,22 @@ checksum = "3fce8dd7fcfcbf3a0a87d8f515194b49d6135acab73e18bd380d1d93bb1a15eb"
394
431
  dependencies = [
395
432
  "clap",
396
433
  "heck 0.4.1",
397
- "indexmap 2.6.0",
434
+ "indexmap 2.7.0",
398
435
  "log",
399
436
  "proc-macro2",
400
437
  "quote",
401
438
  "serde",
402
439
  "serde_json",
403
- "syn 2.0.89",
440
+ "syn 2.0.90",
404
441
  "tempfile",
405
442
  "toml",
406
443
  ]
407
444
 
408
445
  [[package]]
409
446
  name = "cc"
410
- version = "1.2.1"
447
+ version = "1.2.3"
411
448
  source = "registry+https://github.com/rust-lang/crates.io-index"
412
- checksum = "fd9de9f2205d5ef3fd67e685b0df337994ddd4495e2a28d185500d0e1edfea47"
449
+ checksum = "27f657647bcff5394bf56c7317665bbf790a137a50eaaa5c6bfbb9e27a518f2d"
413
450
  dependencies = [
414
451
  "jobserver",
415
452
  "libc",
@@ -435,9 +472,9 @@ dependencies = [
435
472
 
436
473
  [[package]]
437
474
  name = "chrono"
438
- version = "0.4.38"
475
+ version = "0.4.39"
439
476
  source = "registry+https://github.com/rust-lang/crates.io-index"
440
- checksum = "a21f936df1771bf62b77f047b726c4625ff2e8aa607c01ec06e5a05bd8463401"
477
+ checksum = "7e36cc9d416881d2e24f9a963be5fb1cd90966419ac844274161d10488b3e825"
441
478
  dependencies = [
442
479
  "android-tzdata",
443
480
  "iana-time-zone",
@@ -459,9 +496,9 @@ dependencies = [
459
496
 
460
497
  [[package]]
461
498
  name = "clap"
462
- version = "4.5.21"
499
+ version = "4.5.23"
463
500
  source = "registry+https://github.com/rust-lang/crates.io-index"
464
- checksum = "fb3b4b9e5a7c7514dfa52869339ee98b3156b0bfb4e8a77c4ff4babb64b1604f"
501
+ checksum = "3135e7ec2ef7b10c6ed8950f0f792ed96ee093fa088608f1c76e569722700c84"
465
502
  dependencies = [
466
503
  "clap_builder",
467
504
  "clap_derive",
@@ -469,9 +506,9 @@ dependencies = [
469
506
 
470
507
  [[package]]
471
508
  name = "clap_builder"
472
- version = "4.5.21"
509
+ version = "4.5.23"
473
510
  source = "registry+https://github.com/rust-lang/crates.io-index"
474
- checksum = "b17a95aa67cc7b5ebd32aa5370189aa0d79069ef1c64ce893bd30fb24bff20ec"
511
+ checksum = "30582fc632330df2bd26877bde0c1f4470d57c582bbc070376afcd04d8cb4838"
475
512
  dependencies = [
476
513
  "anstream",
477
514
  "anstyle",
@@ -497,14 +534,14 @@ dependencies = [
497
534
  "heck 0.5.0",
498
535
  "proc-macro2",
499
536
  "quote",
500
- "syn 2.0.89",
537
+ "syn 2.0.90",
501
538
  ]
502
539
 
503
540
  [[package]]
504
541
  name = "clap_lex"
505
- version = "0.7.3"
542
+ version = "0.7.4"
506
543
  source = "registry+https://github.com/rust-lang/crates.io-index"
507
- checksum = "afb84c814227b90d6895e01398aee0d8033c00e7466aca416fb6a8e0eb19d8a7"
544
+ checksum = "f46ad14479a25103f283c0f10005961cf086d8dc42205bb44c46ac563475dca6"
508
545
 
509
546
  [[package]]
510
547
  name = "cobs"
@@ -644,7 +681,7 @@ dependencies = [
644
681
  "hashbrown 0.14.5",
645
682
  "log",
646
683
  "regalloc2",
647
- "rustc-hash 2.0.0",
684
+ "rustc-hash 2.1.0",
648
685
  "smallvec",
649
686
  "target-lexicon",
650
687
  ]
@@ -817,7 +854,7 @@ checksum = "829d955a0bb380ef178a640b91779e3987da38c9aea133b20614cfed8cdea9c6"
817
854
  dependencies = [
818
855
  "bitflags 2.6.0",
819
856
  "crossterm_winapi",
820
- "mio 1.0.2",
857
+ "mio 1.0.3",
821
858
  "parking_lot",
822
859
  "rustix",
823
860
  "signal-hook 0.3.17",
@@ -893,7 +930,7 @@ dependencies = [
893
930
  "proc-macro2",
894
931
  "quote",
895
932
  "strsim 0.11.1",
896
- "syn 2.0.89",
933
+ "syn 2.0.90",
897
934
  ]
898
935
 
899
936
  [[package]]
@@ -904,7 +941,7 @@ checksum = "d336a2a514f6ccccaa3e09b02d41d35330c07ddf03a62165fcec10bb561c7806"
904
941
  dependencies = [
905
942
  "darling_core",
906
943
  "quote",
907
- "syn 2.0.89",
944
+ "syn 2.0.90",
908
945
  ]
909
946
 
910
947
  [[package]]
@@ -967,7 +1004,7 @@ checksum = "30542c1ad912e0e3d22a1935c290e12e8a29d704a420177a31faad4a601a0800"
967
1004
  dependencies = [
968
1005
  "proc-macro2",
969
1006
  "quote",
970
- "syn 2.0.89",
1007
+ "syn 2.0.90",
971
1008
  ]
972
1009
 
973
1010
  [[package]]
@@ -1025,7 +1062,7 @@ checksum = "97369cbbc041bc366949bc74d34658d6cda5621039731c6310521892a3a20ae0"
1025
1062
  dependencies = [
1026
1063
  "proc-macro2",
1027
1064
  "quote",
1028
- "syn 2.0.89",
1065
+ "syn 2.0.90",
1029
1066
  ]
1030
1067
 
1031
1068
  [[package]]
@@ -1130,7 +1167,7 @@ dependencies = [
1130
1167
  "once_cell",
1131
1168
  "proc-macro2",
1132
1169
  "quote",
1133
- "syn 2.0.89",
1170
+ "syn 2.0.90",
1134
1171
  ]
1135
1172
 
1136
1173
  [[package]]
@@ -1164,12 +1201,21 @@ checksum = "5443807d6dff69373d433ab9ef5378ad8df50ca6298caf15de6e52e24aaf54d5"
1164
1201
 
1165
1202
  [[package]]
1166
1203
  name = "errno"
1167
- version = "0.3.9"
1204
+ version = "0.3.10"
1168
1205
  source = "registry+https://github.com/rust-lang/crates.io-index"
1169
- checksum = "534c5cf6194dfab3db3242765c03bbe257cf92f22b38f6bc0c58d59108a820ba"
1206
+ checksum = "33d852cb9b869c2a9b3df2f71a3074817f01e1844f839a144f5fcef059a4eb5d"
1170
1207
  dependencies = [
1171
1208
  "libc",
1172
- "windows-sys 0.52.0",
1209
+ "windows-sys 0.59.0",
1210
+ ]
1211
+
1212
+ [[package]]
1213
+ name = "error-chain"
1214
+ version = "0.12.4"
1215
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1216
+ checksum = "2d2f06b9cac1506ece98fe3231e3cc9c4410ec3d5b1f24ae1c8946f0742cdefc"
1217
+ dependencies = [
1218
+ "version_check",
1173
1219
  ]
1174
1220
 
1175
1221
  [[package]]
@@ -1186,9 +1232,9 @@ checksum = "2acce4a10f12dc2fb14a218589d4f1f62ef011b2d0cc4b3cb1bba8e94da14649"
1186
1232
 
1187
1233
  [[package]]
1188
1234
  name = "fastrand"
1189
- version = "2.2.0"
1235
+ version = "2.3.0"
1190
1236
  source = "registry+https://github.com/rust-lang/crates.io-index"
1191
- checksum = "486f806e73c5707928240ddc295403b1b93c96a02038563881c4a2fd84b81ac4"
1237
+ checksum = "37909eebbb50d72f9059c3b6d82c0463f2ff062c9e95845c43a6c9c0355411be"
1192
1238
 
1193
1239
  [[package]]
1194
1240
  name = "ff"
@@ -1338,7 +1384,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
1338
1384
  checksum = "07e28edb80900c19c28f1072f2e8aeca7fa06b23cd4169cefe1af5aa3260783f"
1339
1385
  dependencies = [
1340
1386
  "fallible-iterator 0.3.0",
1341
- "indexmap 2.6.0",
1387
+ "indexmap 2.7.0",
1342
1388
  "stable_deref_trait",
1343
1389
  ]
1344
1390
 
@@ -1413,9 +1459,9 @@ dependencies = [
1413
1459
 
1414
1460
  [[package]]
1415
1461
  name = "hashbrown"
1416
- version = "0.15.1"
1462
+ version = "0.15.2"
1417
1463
  source = "registry+https://github.com/rust-lang/crates.io-index"
1418
- checksum = "3a9bfc1af68b1726ea47d3d5109de126281def866b33970e10fbab11b5dafab3"
1464
+ checksum = "bf151400ff0baff5465007dd2f3e717f3fe502074ca563069ce3a6629d07b289"
1419
1465
  dependencies = [
1420
1466
  "foldhash",
1421
1467
  ]
@@ -1432,12 +1478,6 @@ version = "0.5.0"
1432
1478
  source = "registry+https://github.com/rust-lang/crates.io-index"
1433
1479
  checksum = "2304e00983f87ffb38b55b444b5e3b60a884b5d30c0fca7d82fe33449bbe55ea"
1434
1480
 
1435
- [[package]]
1436
- name = "hermit-abi"
1437
- version = "0.3.9"
1438
- source = "registry+https://github.com/rust-lang/crates.io-index"
1439
- checksum = "d231dfb89cfffdbc30e7fc41579ed6066ad03abda9e567ccafae602b97ec5024"
1440
-
1441
1481
  [[package]]
1442
1482
  name = "hex"
1443
1483
  version = "0.4.3"
@@ -1565,12 +1605,12 @@ dependencies = [
1565
1605
 
1566
1606
  [[package]]
1567
1607
  name = "indexmap"
1568
- version = "2.6.0"
1608
+ version = "2.7.0"
1569
1609
  source = "registry+https://github.com/rust-lang/crates.io-index"
1570
- checksum = "707907fe3c25f5424cce2cb7e1cbcafee6bdbe735ca90ef77c29e84591e5b9da"
1610
+ checksum = "62f822373a4fe84d4bb149bf54e584a7f4abec90e072ed49cda0edea5b95471f"
1571
1611
  dependencies = [
1572
1612
  "equivalent",
1573
- "hashbrown 0.15.1",
1613
+ "hashbrown 0.15.2",
1574
1614
  "serde",
1575
1615
  ]
1576
1616
 
@@ -1591,9 +1631,9 @@ dependencies = [
1591
1631
 
1592
1632
  [[package]]
1593
1633
  name = "intaglio"
1594
- version = "1.9.1"
1634
+ version = "1.10.0"
1595
1635
  source = "registry+https://github.com/rust-lang/crates.io-index"
1596
- checksum = "aa3eb1c7e05b0f9ddc99a1e9f186a434fa0bfd0087d6369acf5f2814731ab610"
1636
+ checksum = "7785e397d45f5a00bd35df6c293518c240c321b734b15a02718aa21103de1ce9"
1597
1637
 
1598
1638
  [[package]]
1599
1639
  name = "is_terminal_polyfill"
@@ -1630,9 +1670,9 @@ dependencies = [
1630
1670
 
1631
1671
  [[package]]
1632
1672
  name = "itoa"
1633
- version = "1.0.13"
1673
+ version = "1.0.14"
1634
1674
  source = "registry+https://github.com/rust-lang/crates.io-index"
1635
- checksum = "540654e97a3f4470a492cd30ff187bc95d89557a903a2bbf112e2fae98104ef2"
1675
+ checksum = "d75a2a4b1b190afb6f5425f10f6a8f959d2ea0b9c2b1d79553551850539e4674"
1636
1676
 
1637
1677
  [[package]]
1638
1678
  name = "jobserver"
@@ -1645,10 +1685,11 @@ dependencies = [
1645
1685
 
1646
1686
  [[package]]
1647
1687
  name = "js-sys"
1648
- version = "0.3.72"
1688
+ version = "0.3.76"
1649
1689
  source = "registry+https://github.com/rust-lang/crates.io-index"
1650
- checksum = "6a88f1bda2bd75b0452a14784937d796722fdebfe50df998aeb3f0b7603019a9"
1690
+ checksum = "6717b6b5b077764fb5966237269cb3c64edddde4b14ce42647430a78ced9e7b7"
1651
1691
  dependencies = [
1692
+ "once_cell",
1652
1693
  "wasm-bindgen",
1653
1694
  ]
1654
1695
 
@@ -1675,9 +1716,9 @@ checksum = "884e2677b40cc8c339eaefcb701c32ef1fd2493d71118dc0ca4b6a736c93bd67"
1675
1716
 
1676
1717
  [[package]]
1677
1718
  name = "libc"
1678
- version = "0.2.164"
1719
+ version = "0.2.168"
1679
1720
  source = "registry+https://github.com/rust-lang/crates.io-index"
1680
- checksum = "433bfe06b8c75da9b2e3fbea6e5329ff87748f0b144ef75306e674c3f6f7c13f"
1721
+ checksum = "5aaeb2981e0606ca11d79718f8bb01164f1d6ed75080182d3abf017e6d244b6d"
1681
1722
 
1682
1723
  [[package]]
1683
1724
  name = "libm"
@@ -1776,7 +1817,7 @@ checksum = "edbe595006d355eaf9ae11db92707d4338cd2384d16866131cc1afdbdd35d8d9"
1776
1817
  dependencies = [
1777
1818
  "proc-macro2",
1778
1819
  "quote",
1779
- "syn 2.0.89",
1820
+ "syn 2.0.90",
1780
1821
  ]
1781
1822
 
1782
1823
  [[package]]
@@ -1809,18 +1850,18 @@ checksum = "a7a70ba024b9dc04c27ea2f0c0548feb474ec5c54bba33a7f72f873a39d07b24"
1809
1850
 
1810
1851
  [[package]]
1811
1852
  name = "logos"
1812
- version = "0.14.2"
1853
+ version = "0.15.0"
1813
1854
  source = "registry+https://github.com/rust-lang/crates.io-index"
1814
- checksum = "1c6b6e02facda28ca5fb8dbe4b152496ba3b1bd5a4b40bb2b1b2d8ad74e0f39b"
1855
+ checksum = "ab6f536c1af4c7cc81edf73da1f8029896e7e1e16a219ef09b184e76a296f3db"
1815
1856
  dependencies = [
1816
1857
  "logos-derive",
1817
1858
  ]
1818
1859
 
1819
1860
  [[package]]
1820
1861
  name = "logos-codegen"
1821
- version = "0.14.2"
1862
+ version = "0.15.0"
1822
1863
  source = "registry+https://github.com/rust-lang/crates.io-index"
1823
- checksum = "b32eb6b5f26efacd015b000bfc562186472cd9b34bdba3f6b264e2a052676d10"
1864
+ checksum = "189bbfd0b61330abea797e5e9276408f2edbe4f822d7ad08685d67419aafb34e"
1824
1865
  dependencies = [
1825
1866
  "beef",
1826
1867
  "fnv",
@@ -1828,14 +1869,15 @@ dependencies = [
1828
1869
  "proc-macro2",
1829
1870
  "quote",
1830
1871
  "regex-syntax 0.8.5",
1831
- "syn 2.0.89",
1872
+ "rustc_version",
1873
+ "syn 2.0.90",
1832
1874
  ]
1833
1875
 
1834
1876
  [[package]]
1835
1877
  name = "logos-derive"
1836
- version = "0.14.2"
1878
+ version = "0.15.0"
1837
1879
  source = "registry+https://github.com/rust-lang/crates.io-index"
1838
- checksum = "3e5d0c5463c911ef55624739fc353238b4e310f0144be1f875dc42fec6bfd5ec"
1880
+ checksum = "ebfe8e1a19049ddbfccbd14ac834b215e11b85b90bab0c2dba7c7b92fb5d5cba"
1839
1881
  dependencies = [
1840
1882
  "logos-codegen",
1841
1883
  ]
@@ -1992,11 +2034,10 @@ dependencies = [
1992
2034
 
1993
2035
  [[package]]
1994
2036
  name = "mio"
1995
- version = "1.0.2"
2037
+ version = "1.0.3"
1996
2038
  source = "registry+https://github.com/rust-lang/crates.io-index"
1997
- checksum = "80e04d1dcff3aae0704555fe5fee3bcfaf3d1fdf8a7e521d5b9d2b42acb52cec"
2039
+ checksum = "2886843bf800fba2e3377cff24abf6379b4c4d5c6681eaf9ea5b0d15090450bd"
1998
2040
  dependencies = [
1999
- "hermit-abi",
2000
2041
  "libc",
2001
2042
  "log",
2002
2043
  "wasi",
@@ -2110,7 +2151,7 @@ checksum = "ed3955f1a9c7c0c15e092f9c887db08b1fc683305fdf6eb6684f22555355e202"
2110
2151
  dependencies = [
2111
2152
  "proc-macro2",
2112
2153
  "quote",
2113
- "syn 2.0.89",
2154
+ "syn 2.0.90",
2114
2155
  ]
2115
2156
 
2116
2157
  [[package]]
@@ -2161,8 +2202,8 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
2161
2202
  checksum = "aedf0a2d09c573ed1d8d85b30c119153926a2b36dce0ab28322c09a117a4683e"
2162
2203
  dependencies = [
2163
2204
  "crc32fast",
2164
- "hashbrown 0.15.1",
2165
- "indexmap 2.6.0",
2205
+ "hashbrown 0.15.2",
2206
+ "indexmap 2.7.0",
2166
2207
  "memchr",
2167
2208
  ]
2168
2209
 
@@ -2275,7 +2316,7 @@ dependencies = [
2275
2316
  "regex",
2276
2317
  "regex-syntax 0.7.5",
2277
2318
  "structmeta",
2278
- "syn 2.0.89",
2319
+ "syn 2.0.90",
2279
2320
  ]
2280
2321
 
2281
2322
  [[package]]
@@ -2305,20 +2346,20 @@ dependencies = [
2305
2346
 
2306
2347
  [[package]]
2307
2348
  name = "pest"
2308
- version = "2.7.14"
2349
+ version = "2.7.15"
2309
2350
  source = "registry+https://github.com/rust-lang/crates.io-index"
2310
- checksum = "879952a81a83930934cbf1786752d6dedc3b1f29e8f8fb2ad1d0a36f377cf442"
2351
+ checksum = "8b7cafe60d6cf8e62e1b9b2ea516a089c008945bb5a275416789e7db0bc199dc"
2311
2352
  dependencies = [
2312
2353
  "memchr",
2313
- "thiserror 1.0.69",
2354
+ "thiserror 2.0.6",
2314
2355
  "ucd-trie",
2315
2356
  ]
2316
2357
 
2317
2358
  [[package]]
2318
2359
  name = "pest_derive"
2319
- version = "2.7.14"
2360
+ version = "2.7.15"
2320
2361
  source = "registry+https://github.com/rust-lang/crates.io-index"
2321
- checksum = "d214365f632b123a47fd913301e14c946c61d1c183ee245fa76eb752e59a02dd"
2362
+ checksum = "816518421cfc6887a0d62bf441b6ffb4536fcc926395a69e1a85852d4363f57e"
2322
2363
  dependencies = [
2323
2364
  "pest",
2324
2365
  "pest_generator",
@@ -2326,22 +2367,22 @@ dependencies = [
2326
2367
 
2327
2368
  [[package]]
2328
2369
  name = "pest_generator"
2329
- version = "2.7.14"
2370
+ version = "2.7.15"
2330
2371
  source = "registry+https://github.com/rust-lang/crates.io-index"
2331
- checksum = "eb55586734301717aea2ac313f50b2eb8f60d2fc3dc01d190eefa2e625f60c4e"
2372
+ checksum = "7d1396fd3a870fc7838768d171b4616d5c91f6cc25e377b673d714567d99377b"
2332
2373
  dependencies = [
2333
2374
  "pest",
2334
2375
  "pest_meta",
2335
2376
  "proc-macro2",
2336
2377
  "quote",
2337
- "syn 2.0.89",
2378
+ "syn 2.0.90",
2338
2379
  ]
2339
2380
 
2340
2381
  [[package]]
2341
2382
  name = "pest_meta"
2342
- version = "2.7.14"
2383
+ version = "2.7.15"
2343
2384
  source = "registry+https://github.com/rust-lang/crates.io-index"
2344
- checksum = "b75da2a70cf4d9cb76833c990ac9cd3923c9a8905a8929789ce347c84564d03d"
2385
+ checksum = "e1e58089ea25d717bfd31fb534e4f3afcc2cc569c70de3e239778991ea3b7dea"
2345
2386
  dependencies = [
2346
2387
  "once_cell",
2347
2388
  "pest",
@@ -2397,7 +2438,7 @@ dependencies = [
2397
2438
  "phf_shared 0.11.2",
2398
2439
  "proc-macro2",
2399
2440
  "quote",
2400
- "syn 2.0.89",
2441
+ "syn 2.0.90",
2401
2442
  ]
2402
2443
 
2403
2444
  [[package]]
@@ -2447,15 +2488,15 @@ checksum = "953ec861398dccce10c670dfeaf3ec4911ca479e9c02154b3a215178c5f566f2"
2447
2488
 
2448
2489
  [[package]]
2449
2490
  name = "portable-atomic"
2450
- version = "1.9.0"
2491
+ version = "1.10.0"
2451
2492
  source = "registry+https://github.com/rust-lang/crates.io-index"
2452
- checksum = "cc9c68a3f6da06753e9335d63e27f6b9754dd1920d941135b7ea8224f141adb2"
2493
+ checksum = "280dc24453071f1b63954171985a0b0d30058d287960968b9b2aca264c8d4ee6"
2453
2494
 
2454
2495
  [[package]]
2455
2496
  name = "postcard"
2456
- version = "1.0.10"
2497
+ version = "1.1.1"
2457
2498
  source = "registry+https://github.com/rust-lang/crates.io-index"
2458
- checksum = "5f7f0a8d620d71c457dd1d47df76bb18960378da56af4527aaa10f515eee732e"
2499
+ checksum = "170a2601f67cc9dba8edd8c4870b15f71a6a2dc196daec8c83f72b59dff628a8"
2459
2500
  dependencies = [
2460
2501
  "cobs",
2461
2502
  "embedded-io 0.4.0",
@@ -2550,7 +2591,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
2550
2591
  checksum = "322330e133eab455718444b4e033ebfac7c6528972c784fcde28d2cc783c6257"
2551
2592
  dependencies = [
2552
2593
  "anyhow",
2553
- "indexmap 2.6.0",
2594
+ "indexmap 2.7.0",
2554
2595
  "log",
2555
2596
  "protobuf",
2556
2597
  "protobuf-support",
@@ -2577,6 +2618,17 @@ dependencies = [
2577
2618
  "cc",
2578
2619
  ]
2579
2620
 
2621
+ [[package]]
2622
+ name = "pulldown-cmark"
2623
+ version = "0.9.6"
2624
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2625
+ checksum = "57206b407293d2bcd3af849ce869d52068623f19e1b5ff8e8778e3309439682b"
2626
+ dependencies = [
2627
+ "bitflags 2.6.0",
2628
+ "memchr",
2629
+ "unicase",
2630
+ ]
2631
+
2580
2632
  [[package]]
2581
2633
  name = "pulley-interpreter"
2582
2634
  version = "26.0.1"
@@ -2590,9 +2642,9 @@ dependencies = [
2590
2642
 
2591
2643
  [[package]]
2592
2644
  name = "pyo3"
2593
- version = "0.22.6"
2645
+ version = "0.23.3"
2594
2646
  source = "registry+https://github.com/rust-lang/crates.io-index"
2595
- checksum = "f402062616ab18202ae8319da13fa4279883a2b8a9d9f83f20dbade813ce1884"
2647
+ checksum = "e484fd2c8b4cb67ab05a318f1fd6fa8f199fcc30819f08f07d200809dba26c15"
2596
2648
  dependencies = [
2597
2649
  "cfg-if",
2598
2650
  "indoc",
@@ -2608,9 +2660,9 @@ dependencies = [
2608
2660
 
2609
2661
  [[package]]
2610
2662
  name = "pyo3-build-config"
2611
- version = "0.22.6"
2663
+ version = "0.23.3"
2612
2664
  source = "registry+https://github.com/rust-lang/crates.io-index"
2613
- checksum = "b14b5775b5ff446dd1056212d778012cbe8a0fbffd368029fd9e25b514479c38"
2665
+ checksum = "dc0e0469a84f208e20044b98965e1561028180219e35352a2afaf2b942beff3b"
2614
2666
  dependencies = [
2615
2667
  "once_cell",
2616
2668
  "target-lexicon",
@@ -2618,9 +2670,9 @@ dependencies = [
2618
2670
 
2619
2671
  [[package]]
2620
2672
  name = "pyo3-ffi"
2621
- version = "0.22.6"
2673
+ version = "0.23.3"
2622
2674
  source = "registry+https://github.com/rust-lang/crates.io-index"
2623
- checksum = "9ab5bcf04a2cdcbb50c7d6105de943f543f9ed92af55818fd17b660390fc8636"
2675
+ checksum = "eb1547a7f9966f6f1a0f0227564a9945fe36b90da5a93b3933fc3dc03fae372d"
2624
2676
  dependencies = [
2625
2677
  "libc",
2626
2678
  "pyo3-build-config",
@@ -2628,36 +2680,37 @@ dependencies = [
2628
2680
 
2629
2681
  [[package]]
2630
2682
  name = "pyo3-file"
2631
- version = "0.9.0"
2683
+ version = "0.10.0"
2632
2684
  source = "registry+https://github.com/rust-lang/crates.io-index"
2633
- checksum = "488563e2317157edd6e12c3ef23e10363bd079bf8630e3de719e368b4eb02a21"
2685
+ checksum = "3134dfe0d6458ea56d6c1cd4047c8894f331297aaf53eb9bf046ac7485dd469b"
2634
2686
  dependencies = [
2635
2687
  "pyo3",
2688
+ "skeptic",
2636
2689
  ]
2637
2690
 
2638
2691
  [[package]]
2639
2692
  name = "pyo3-macros"
2640
- version = "0.22.6"
2693
+ version = "0.23.3"
2641
2694
  source = "registry+https://github.com/rust-lang/crates.io-index"
2642
- checksum = "0fd24d897903a9e6d80b968368a34e1525aeb719d568dba8b3d4bfa5dc67d453"
2695
+ checksum = "fdb6da8ec6fa5cedd1626c886fc8749bdcbb09424a86461eb8cdf096b7c33257"
2643
2696
  dependencies = [
2644
2697
  "proc-macro2",
2645
2698
  "pyo3-macros-backend",
2646
2699
  "quote",
2647
- "syn 2.0.89",
2700
+ "syn 2.0.90",
2648
2701
  ]
2649
2702
 
2650
2703
  [[package]]
2651
2704
  name = "pyo3-macros-backend"
2652
- version = "0.22.6"
2705
+ version = "0.23.3"
2653
2706
  source = "registry+https://github.com/rust-lang/crates.io-index"
2654
- checksum = "36c011a03ba1e50152b4b394b479826cad97e7a21eb52df179cd91ac411cbfbe"
2707
+ checksum = "38a385202ff5a92791168b1136afae5059d3ac118457bb7bc304c197c2d33e7d"
2655
2708
  dependencies = [
2656
2709
  "heck 0.5.0",
2657
2710
  "proc-macro2",
2658
2711
  "pyo3-build-config",
2659
2712
  "quote",
2660
- "syn 2.0.89",
2713
+ "syn 2.0.90",
2661
2714
  ]
2662
2715
 
2663
2716
  [[package]]
@@ -2777,7 +2830,7 @@ checksum = "12908dbeb234370af84d0579b9f68258a0f67e201412dd9a2814e6f45b2fc0f0"
2777
2830
  dependencies = [
2778
2831
  "hashbrown 0.14.5",
2779
2832
  "log",
2780
- "rustc-hash 2.0.0",
2833
+ "rustc-hash 2.1.0",
2781
2834
  "slice-group-by",
2782
2835
  "smallvec",
2783
2836
  ]
@@ -2844,9 +2897,9 @@ dependencies = [
2844
2897
 
2845
2898
  [[package]]
2846
2899
  name = "rowan"
2847
- version = "0.16.0"
2900
+ version = "0.16.1"
2848
2901
  source = "registry+https://github.com/rust-lang/crates.io-index"
2849
- checksum = "028acc0aeb6c46a4e4390928ef6ec0f4b7e9432f37bd4129a976e77f86f93322"
2902
+ checksum = "417a3a9f582e349834051b8a10c8d71ca88da4211e4093528e36b9845f6b5f21"
2850
2903
  dependencies = [
2851
2904
  "countme",
2852
2905
  "hashbrown 0.14.5",
@@ -2862,9 +2915,9 @@ checksum = "6c20b6793b5c2fa6553b250154b78d6d0db37e72700ae35fad9387a46f487c97"
2862
2915
 
2863
2916
  [[package]]
2864
2917
  name = "rsa"
2865
- version = "0.9.6"
2918
+ version = "0.9.7"
2866
2919
  source = "registry+https://github.com/rust-lang/crates.io-index"
2867
- checksum = "5d0e5124fcb30e76a7e79bfee683a2746db83784b86289f6251b54b7950a0dfc"
2920
+ checksum = "47c75d7c5c6b673e58bf54d8544a9f432e3a925b0e80f7cd3602ab5c50c55519"
2868
2921
  dependencies = [
2869
2922
  "const-oid",
2870
2923
  "digest 0.10.7",
@@ -2888,9 +2941,18 @@ checksum = "08d43f7aa6b08d49f382cde6a7982047c3426db949b1424bc4b7ec9ae12c6ce2"
2888
2941
 
2889
2942
  [[package]]
2890
2943
  name = "rustc-hash"
2891
- version = "2.0.0"
2944
+ version = "2.1.0"
2892
2945
  source = "registry+https://github.com/rust-lang/crates.io-index"
2893
- checksum = "583034fd73374156e66797ed8e5b0d5690409c9226b22d87cb7f19821c05d152"
2946
+ checksum = "c7fb8039b3032c191086b10f11f319a6e99e1e82889c5cc6046f515c9db1d497"
2947
+
2948
+ [[package]]
2949
+ name = "rustc_version"
2950
+ version = "0.4.1"
2951
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2952
+ checksum = "cfcb3a22ef46e85b45de6ee7e79d063319ebb6594faafcf1c225ea92ab6e9b92"
2953
+ dependencies = [
2954
+ "semver 1.0.23",
2955
+ ]
2894
2956
 
2895
2957
  [[package]]
2896
2958
  name = "rusticata-macros"
@@ -2903,15 +2965,15 @@ dependencies = [
2903
2965
 
2904
2966
  [[package]]
2905
2967
  name = "rustix"
2906
- version = "0.38.41"
2968
+ version = "0.38.42"
2907
2969
  source = "registry+https://github.com/rust-lang/crates.io-index"
2908
- checksum = "d7f649912bc1495e167a6edee79151c84b1bad49748cb4f1f1167f459f6224f6"
2970
+ checksum = "f93dc38ecbab2eb790ff964bb77fa94faf256fd3e73285fd7ba0903b76bedb85"
2909
2971
  dependencies = [
2910
2972
  "bitflags 2.6.0",
2911
2973
  "errno",
2912
2974
  "libc",
2913
2975
  "linux-raw-sys",
2914
- "windows-sys 0.52.0",
2976
+ "windows-sys 0.59.0",
2915
2977
  ]
2916
2978
 
2917
2979
  [[package]]
@@ -2969,6 +3031,9 @@ name = "semver"
2969
3031
  version = "1.0.23"
2970
3032
  source = "registry+https://github.com/rust-lang/crates.io-index"
2971
3033
  checksum = "61697e0a1c7e512e84a621326239844a24d8207b4669b41bc18b32ea5cbf988b"
3034
+ dependencies = [
3035
+ "serde",
3036
+ ]
2972
3037
 
2973
3038
  [[package]]
2974
3039
  name = "semver-parser"
@@ -3007,7 +3072,7 @@ checksum = "ad1e866f866923f252f05c889987993144fb74e722403468a4ebd70c3cd756c0"
3007
3072
  dependencies = [
3008
3073
  "proc-macro2",
3009
3074
  "quote",
3010
- "syn 2.0.89",
3075
+ "syn 2.0.90",
3011
3076
  ]
3012
3077
 
3013
3078
  [[package]]
@@ -3016,7 +3081,7 @@ version = "1.0.133"
3016
3081
  source = "registry+https://github.com/rust-lang/crates.io-index"
3017
3082
  checksum = "c7fceb2473b9166b2294ef05efcb65a3db80803f0b03ef86a5fc88a2b85ee377"
3018
3083
  dependencies = [
3019
- "indexmap 2.6.0",
3084
+ "indexmap 2.7.0",
3020
3085
  "itoa",
3021
3086
  "memchr",
3022
3087
  "ryu",
@@ -3101,7 +3166,7 @@ checksum = "34db1a06d485c9142248b7a054f034b349b212551f3dfd19c94d45a754a217cd"
3101
3166
  dependencies = [
3102
3167
  "libc",
3103
3168
  "mio 0.8.11",
3104
- "mio 1.0.2",
3169
+ "mio 1.0.3",
3105
3170
  "signal-hook 0.3.17",
3106
3171
  ]
3107
3172
 
@@ -3156,6 +3221,21 @@ version = "0.3.11"
3156
3221
  source = "registry+https://github.com/rust-lang/crates.io-index"
3157
3222
  checksum = "38b58827f4464d87d377d175e90bf58eb00fd8716ff0a62f80356b5e61555d0d"
3158
3223
 
3224
+ [[package]]
3225
+ name = "skeptic"
3226
+ version = "0.13.7"
3227
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3228
+ checksum = "16d23b015676c90a0f01c197bfdc786c20342c73a0afdda9025adb0bc42940a8"
3229
+ dependencies = [
3230
+ "bytecount",
3231
+ "cargo_metadata",
3232
+ "error-chain",
3233
+ "glob",
3234
+ "pulldown-cmark",
3235
+ "tempfile",
3236
+ "walkdir",
3237
+ ]
3238
+
3159
3239
  [[package]]
3160
3240
  name = "slice-group-by"
3161
3241
  version = "0.3.1"
@@ -3226,7 +3306,7 @@ dependencies = [
3226
3306
  "proc-macro2",
3227
3307
  "quote",
3228
3308
  "structmeta-derive",
3229
- "syn 2.0.89",
3309
+ "syn 2.0.90",
3230
3310
  ]
3231
3311
 
3232
3312
  [[package]]
@@ -3237,7 +3317,7 @@ checksum = "a60bcaff7397072dca0017d1db428e30d5002e00b6847703e2e42005c95fbe00"
3237
3317
  dependencies = [
3238
3318
  "proc-macro2",
3239
3319
  "quote",
3240
- "syn 2.0.89",
3320
+ "syn 2.0.90",
3241
3321
  ]
3242
3322
 
3243
3323
  [[package]]
@@ -3256,7 +3336,7 @@ dependencies = [
3256
3336
  "proc-macro2",
3257
3337
  "quote",
3258
3338
  "rustversion",
3259
- "syn 2.0.89",
3339
+ "syn 2.0.90",
3260
3340
  ]
3261
3341
 
3262
3342
  [[package]]
@@ -3269,7 +3349,7 @@ dependencies = [
3269
3349
  "proc-macro2",
3270
3350
  "quote",
3271
3351
  "rustversion",
3272
- "syn 2.0.89",
3352
+ "syn 2.0.90",
3273
3353
  ]
3274
3354
 
3275
3355
  [[package]]
@@ -3307,9 +3387,9 @@ dependencies = [
3307
3387
 
3308
3388
  [[package]]
3309
3389
  name = "syn"
3310
- version = "2.0.89"
3390
+ version = "2.0.90"
3311
3391
  source = "registry+https://github.com/rust-lang/crates.io-index"
3312
- checksum = "44d46482f1c1c87acd84dea20c1bf5ebff4c757009ed6bf19cfd36fb10e92c4e"
3392
+ checksum = "919d3b74a5dd0ccd15aeb8f93e7006bd9e14c295087c9896a110f490752bcf31"
3313
3393
  dependencies = [
3314
3394
  "proc-macro2",
3315
3395
  "quote",
@@ -3324,7 +3404,7 @@ checksum = "c8af7666ab7b6390ab78131fb5b0fce11d6b7a6951602017c35fa82800708971"
3324
3404
  dependencies = [
3325
3405
  "proc-macro2",
3326
3406
  "quote",
3327
- "syn 2.0.89",
3407
+ "syn 2.0.90",
3328
3408
  ]
3329
3409
 
3330
3410
  [[package]]
@@ -3442,11 +3522,11 @@ dependencies = [
3442
3522
 
3443
3523
  [[package]]
3444
3524
  name = "thiserror"
3445
- version = "2.0.3"
3525
+ version = "2.0.6"
3446
3526
  source = "registry+https://github.com/rust-lang/crates.io-index"
3447
- checksum = "c006c85c7651b3cf2ada4584faa36773bd07bac24acfb39f3c431b36d7e667aa"
3527
+ checksum = "8fec2a1820ebd077e2b90c4df007bebf344cd394098a13c563957d0afc83ea47"
3448
3528
  dependencies = [
3449
- "thiserror-impl 2.0.3",
3529
+ "thiserror-impl 2.0.6",
3450
3530
  ]
3451
3531
 
3452
3532
  [[package]]
@@ -3457,25 +3537,25 @@ checksum = "4fee6c4efc90059e10f81e6d42c60a18f76588c3d74cb83a0b242a2b6c7504c1"
3457
3537
  dependencies = [
3458
3538
  "proc-macro2",
3459
3539
  "quote",
3460
- "syn 2.0.89",
3540
+ "syn 2.0.90",
3461
3541
  ]
3462
3542
 
3463
3543
  [[package]]
3464
3544
  name = "thiserror-impl"
3465
- version = "2.0.3"
3545
+ version = "2.0.6"
3466
3546
  source = "registry+https://github.com/rust-lang/crates.io-index"
3467
- checksum = "f077553d607adc1caf65430528a576c757a71ed73944b66ebb58ef2bbd243568"
3547
+ checksum = "d65750cab40f4ff1929fb1ba509e9914eb756131cef4210da8d5d700d26f6312"
3468
3548
  dependencies = [
3469
3549
  "proc-macro2",
3470
3550
  "quote",
3471
- "syn 2.0.89",
3551
+ "syn 2.0.90",
3472
3552
  ]
3473
3553
 
3474
3554
  [[package]]
3475
3555
  name = "time"
3476
- version = "0.3.36"
3556
+ version = "0.3.37"
3477
3557
  source = "registry+https://github.com/rust-lang/crates.io-index"
3478
- checksum = "5dfd88e563464686c916c7e46e623e520ddc6d79fa6641390f2e3fa86e83e885"
3558
+ checksum = "35e7868883861bd0e56d9ac6efcaaca0d6d5d82a2a7ec8209ff492c07cf37b21"
3479
3559
  dependencies = [
3480
3560
  "deranged",
3481
3561
  "itoa",
@@ -3494,9 +3574,9 @@ checksum = "ef927ca75afb808a4d64dd374f00a2adf8d0fcff8e7b184af886c3c87ec4a3f3"
3494
3574
 
3495
3575
  [[package]]
3496
3576
  name = "time-macros"
3497
- version = "0.2.18"
3577
+ version = "0.2.19"
3498
3578
  source = "registry+https://github.com/rust-lang/crates.io-index"
3499
- checksum = "3f252a68540fde3a3877aeea552b832b40ab9a69e318efd078774a01ddee1ccf"
3579
+ checksum = "2834e6017e3e5e4b9834939793b282bc03b37a3336245fa820e35e233e2a85de"
3500
3580
  dependencies = [
3501
3581
  "num-conv",
3502
3582
  "time-core",
@@ -3544,7 +3624,7 @@ version = "0.22.22"
3544
3624
  source = "registry+https://github.com/rust-lang/crates.io-index"
3545
3625
  checksum = "4ae48d6208a266e853d946088ed816055e556cc6028c5e8e2b84d9fa5dd7c7f5"
3546
3626
  dependencies = [
3547
- "indexmap 2.6.0",
3627
+ "indexmap 2.7.0",
3548
3628
  "serde",
3549
3629
  "serde_spanned",
3550
3630
  "toml_datetime",
@@ -3572,6 +3652,12 @@ dependencies = [
3572
3652
  "version_check",
3573
3653
  ]
3574
3654
 
3655
+ [[package]]
3656
+ name = "unicase"
3657
+ version = "2.8.0"
3658
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3659
+ checksum = "7e51b68083f157f853b6379db119d1c1be0e6e4dec98101079dec41f6f5cf6df"
3660
+
3575
3661
  [[package]]
3576
3662
  name = "unicode-ident"
3577
3663
  version = "1.0.14"
@@ -3586,9 +3672,9 @@ checksum = "f6ccf251212114b54433ec949fd6a7841275f9ada20dddd2f29e9ceea4501493"
3586
3672
 
3587
3673
  [[package]]
3588
3674
  name = "unicode-width"
3589
- version = "0.1.14"
3675
+ version = "0.2.0"
3590
3676
  source = "registry+https://github.com/rust-lang/crates.io-index"
3591
- checksum = "7dd6e30e90baa6f72411720665d41d89b9a3d039dc45b8faea1ddd07f617f6af"
3677
+ checksum = "1fc81956842c57dac11422a97c3b8195a1ff727f06e85c84ed2e8aa277c9a0fd"
3592
3678
 
3593
3679
  [[package]]
3594
3680
  name = "unicode-xid"
@@ -3656,9 +3742,9 @@ dependencies = [
3656
3742
 
3657
3743
  [[package]]
3658
3744
  name = "walrus"
3659
- version = "0.23.0"
3745
+ version = "0.23.2"
3660
3746
  source = "registry+https://github.com/rust-lang/crates.io-index"
3661
- checksum = "b0654ee28b7febcbe12fb3db23c69fde0a6a41c538147bfbd8412aee586728cb"
3747
+ checksum = "031bc51853697a6a01731f1c2d6d56989c3a742d63316f59918c90b709a6edd9"
3662
3748
  dependencies = [
3663
3749
  "anyhow",
3664
3750
  "gimli 0.26.2",
@@ -3679,7 +3765,7 @@ dependencies = [
3679
3765
  "heck 0.5.0",
3680
3766
  "proc-macro2",
3681
3767
  "quote",
3682
- "syn 2.0.89",
3768
+ "syn 2.0.90",
3683
3769
  ]
3684
3770
 
3685
3771
  [[package]]
@@ -3690,9 +3776,9 @@ checksum = "9c8d87e72b64a3b4db28d11ce29237c246188f4f51057d65a7eab63b7987e423"
3690
3776
 
3691
3777
  [[package]]
3692
3778
  name = "wasm-bindgen"
3693
- version = "0.2.95"
3779
+ version = "0.2.99"
3694
3780
  source = "registry+https://github.com/rust-lang/crates.io-index"
3695
- checksum = "128d1e363af62632b8eb57219c8fd7877144af57558fb2ef0368d0087bddeb2e"
3781
+ checksum = "a474f6281d1d70c17ae7aa6a613c87fce69a127e2624002df63dcb39d6cf6396"
3696
3782
  dependencies = [
3697
3783
  "cfg-if",
3698
3784
  "once_cell",
@@ -3701,24 +3787,23 @@ dependencies = [
3701
3787
 
3702
3788
  [[package]]
3703
3789
  name = "wasm-bindgen-backend"
3704
- version = "0.2.95"
3790
+ version = "0.2.99"
3705
3791
  source = "registry+https://github.com/rust-lang/crates.io-index"
3706
- checksum = "cb6dd4d3ca0ddffd1dd1c9c04f94b868c37ff5fac97c30b97cff2d74fce3a358"
3792
+ checksum = "5f89bb38646b4f81674e8f5c3fb81b562be1fd936d84320f3264486418519c79"
3707
3793
  dependencies = [
3708
3794
  "bumpalo",
3709
3795
  "log",
3710
- "once_cell",
3711
3796
  "proc-macro2",
3712
3797
  "quote",
3713
- "syn 2.0.89",
3798
+ "syn 2.0.90",
3714
3799
  "wasm-bindgen-shared",
3715
3800
  ]
3716
3801
 
3717
3802
  [[package]]
3718
3803
  name = "wasm-bindgen-macro"
3719
- version = "0.2.95"
3804
+ version = "0.2.99"
3720
3805
  source = "registry+https://github.com/rust-lang/crates.io-index"
3721
- checksum = "e79384be7f8f5a9dd5d7167216f022090cf1f9ec128e6e6a482a2cb5c5422c56"
3806
+ checksum = "2cc6181fd9a7492eef6fef1f33961e3695e4579b9872a6f7c83aee556666d4fe"
3722
3807
  dependencies = [
3723
3808
  "quote",
3724
3809
  "wasm-bindgen-macro-support",
@@ -3726,22 +3811,22 @@ dependencies = [
3726
3811
 
3727
3812
  [[package]]
3728
3813
  name = "wasm-bindgen-macro-support"
3729
- version = "0.2.95"
3814
+ version = "0.2.99"
3730
3815
  source = "registry+https://github.com/rust-lang/crates.io-index"
3731
- checksum = "26c6ab57572f7a24a4985830b120de1594465e5d500f24afe89e16b4e833ef68"
3816
+ checksum = "30d7a95b763d3c45903ed6c81f156801839e5ee968bb07e534c44df0fcd330c2"
3732
3817
  dependencies = [
3733
3818
  "proc-macro2",
3734
3819
  "quote",
3735
- "syn 2.0.89",
3820
+ "syn 2.0.90",
3736
3821
  "wasm-bindgen-backend",
3737
3822
  "wasm-bindgen-shared",
3738
3823
  ]
3739
3824
 
3740
3825
  [[package]]
3741
3826
  name = "wasm-bindgen-shared"
3742
- version = "0.2.95"
3827
+ version = "0.2.99"
3743
3828
  source = "registry+https://github.com/rust-lang/crates.io-index"
3744
- checksum = "65fc09f10666a9f147042251e0dda9c18f166ff7de300607007e96bdebc1068d"
3829
+ checksum = "943aab3fdaaa029a6e0271b35ea10b72b943135afe9bffca82384098ad0e06a6"
3745
3830
 
3746
3831
  [[package]]
3747
3832
  name = "wasm-encoder"
@@ -3770,7 +3855,7 @@ dependencies = [
3770
3855
  "ahash",
3771
3856
  "bitflags 2.6.0",
3772
3857
  "hashbrown 0.14.5",
3773
- "indexmap 2.6.0",
3858
+ "indexmap 2.7.0",
3774
3859
  "semver 1.0.23",
3775
3860
  "serde",
3776
3861
  ]
@@ -3784,7 +3869,7 @@ dependencies = [
3784
3869
  "ahash",
3785
3870
  "bitflags 2.6.0",
3786
3871
  "hashbrown 0.14.5",
3787
- "indexmap 2.6.0",
3872
+ "indexmap 2.7.0",
3788
3873
  "semver 1.0.23",
3789
3874
  "serde",
3790
3875
  ]
@@ -3812,7 +3897,7 @@ dependencies = [
3812
3897
  "cc",
3813
3898
  "cfg-if",
3814
3899
  "hashbrown 0.14.5",
3815
- "indexmap 2.6.0",
3900
+ "indexmap 2.7.0",
3816
3901
  "libc",
3817
3902
  "libm",
3818
3903
  "log",
@@ -3860,7 +3945,7 @@ dependencies = [
3860
3945
  "anyhow",
3861
3946
  "proc-macro2",
3862
3947
  "quote",
3863
- "syn 2.0.89",
3948
+ "syn 2.0.90",
3864
3949
  "wasmtime-component-util",
3865
3950
  "wasmtime-wit-bindgen",
3866
3951
  "wit-parser",
@@ -3907,7 +3992,7 @@ dependencies = [
3907
3992
  "cranelift-bitset",
3908
3993
  "cranelift-entity",
3909
3994
  "gimli 0.31.1",
3910
- "indexmap 2.6.0",
3995
+ "indexmap 2.7.0",
3911
3996
  "log",
3912
3997
  "object",
3913
3998
  "postcard",
@@ -3946,7 +4031,7 @@ checksum = "db8efb877c9e5e67239d4553bb44dd2a34ae5cfb728f3cf2c5e64439c6ca6ee7"
3946
4031
  dependencies = [
3947
4032
  "proc-macro2",
3948
4033
  "quote",
3949
- "syn 2.0.89",
4034
+ "syn 2.0.90",
3950
4035
  ]
3951
4036
 
3952
4037
  [[package]]
@@ -3957,15 +4042,15 @@ checksum = "4bef2a726fd8d1ee9b0144655e16c492dc32eb4c7c9f7e3309fcffe637870933"
3957
4042
  dependencies = [
3958
4043
  "anyhow",
3959
4044
  "heck 0.5.0",
3960
- "indexmap 2.6.0",
4045
+ "indexmap 2.7.0",
3961
4046
  "wit-parser",
3962
4047
  ]
3963
4048
 
3964
4049
  [[package]]
3965
4050
  name = "web-sys"
3966
- version = "0.3.72"
4051
+ version = "0.3.76"
3967
4052
  source = "registry+https://github.com/rust-lang/crates.io-index"
3968
- checksum = "f6488b90108c040df0fe62fa815cbdee25124641df01814dd7282749234c6112"
4053
+ checksum = "04dd7223427d52553d3702c004d3b2fe07c148165faa56313cb00211e31c12bc"
3969
4054
  dependencies = [
3970
4055
  "js-sys",
3971
4056
  "wasm-bindgen",
@@ -4313,7 +4398,7 @@ checksum = "0d3d1066ab761b115f97fef2b191090faabcb0f37b555b758d3caf42d4ed9e55"
4313
4398
  dependencies = [
4314
4399
  "anyhow",
4315
4400
  "id-arena",
4316
- "indexmap 2.6.0",
4401
+ "indexmap 2.7.0",
4317
4402
  "log",
4318
4403
  "semver 1.0.23",
4319
4404
  "serde",
@@ -4358,7 +4443,7 @@ checksum = "cfe53a6657fd280eaa890a3bc59152892ffa3e30101319d168b781ed6529b049"
4358
4443
 
4359
4444
  [[package]]
4360
4445
  name = "yara-x"
4361
- version = "0.11.1"
4446
+ version = "0.12.0"
4362
4447
  dependencies = [
4363
4448
  "aho-corasick",
4364
4449
  "annotate-snippets",
@@ -4380,7 +4465,7 @@ dependencies = [
4380
4465
  "globwalk",
4381
4466
  "goldenfile",
4382
4467
  "ihex",
4383
- "indexmap 2.6.0",
4468
+ "indexmap 2.7.0",
4384
4469
  "intaglio",
4385
4470
  "itertools 0.13.0",
4386
4471
  "lazy_static",
@@ -4407,13 +4492,13 @@ dependencies = [
4407
4492
  "regex-syntax 0.8.5",
4408
4493
  "roxmltree",
4409
4494
  "rsa",
4410
- "rustc-hash 2.0.0",
4495
+ "rustc-hash 2.1.0",
4411
4496
  "serde",
4412
4497
  "serde_json",
4413
4498
  "sha1",
4414
4499
  "sha2 0.10.8",
4415
4500
  "smallvec",
4416
- "thiserror 2.0.3",
4501
+ "thiserror 2.0.6",
4417
4502
  "tlsh-fixed",
4418
4503
  "uuid",
4419
4504
  "walrus",
@@ -4429,7 +4514,7 @@ dependencies = [
4429
4514
 
4430
4515
  [[package]]
4431
4516
  name = "yara-x-capi"
4432
- version = "0.11.1"
4517
+ version = "0.12.0"
4433
4518
  dependencies = [
4434
4519
  "cbindgen",
4435
4520
  "serde_json",
@@ -4438,7 +4523,7 @@ dependencies = [
4438
4523
 
4439
4524
  [[package]]
4440
4525
  name = "yara-x-cli"
4441
- version = "0.11.1"
4526
+ version = "0.12.0"
4442
4527
  dependencies = [
4443
4528
  "anyhow",
4444
4529
  "ascii_tree",
@@ -4472,7 +4557,7 @@ dependencies = [
4472
4557
 
4473
4558
  [[package]]
4474
4559
  name = "yara-x-fmt"
4475
- version = "0.11.1"
4560
+ version = "0.12.0"
4476
4561
  dependencies = [
4477
4562
  "bitmask",
4478
4563
  "bstr",
@@ -4481,23 +4566,23 @@ dependencies = [
4481
4566
  "lazy_static",
4482
4567
  "pretty_assertions",
4483
4568
  "rayon",
4484
- "thiserror 2.0.3",
4569
+ "thiserror 2.0.6",
4485
4570
  "yara-x-parser",
4486
4571
  ]
4487
4572
 
4488
4573
  [[package]]
4489
4574
  name = "yara-x-macros"
4490
- version = "0.11.1"
4575
+ version = "0.12.0"
4491
4576
  dependencies = [
4492
4577
  "darling",
4493
4578
  "proc-macro2",
4494
4579
  "quote",
4495
- "syn 2.0.89",
4580
+ "syn 2.0.90",
4496
4581
  ]
4497
4582
 
4498
4583
  [[package]]
4499
4584
  name = "yara-x-parser"
4500
- version = "0.11.1"
4585
+ version = "0.12.0"
4501
4586
  dependencies = [
4502
4587
  "anyhow",
4503
4588
  "ascii_tree",
@@ -4506,7 +4591,7 @@ dependencies = [
4506
4591
  "env_logger",
4507
4592
  "globwalk",
4508
4593
  "goldenfile",
4509
- "indexmap 2.6.0",
4594
+ "indexmap 2.7.0",
4510
4595
  "itertools 0.13.0",
4511
4596
  "log",
4512
4597
  "logos",
@@ -4514,14 +4599,14 @@ dependencies = [
4514
4599
  "pretty_assertions",
4515
4600
  "rayon",
4516
4601
  "rowan",
4517
- "rustc-hash 2.0.0",
4602
+ "rustc-hash 2.1.0",
4518
4603
  "serde",
4519
4604
  "yansi",
4520
4605
  ]
4521
4606
 
4522
4607
  [[package]]
4523
4608
  name = "yara-x-proto"
4524
- version = "0.11.1"
4609
+ version = "0.12.0"
4525
4610
  dependencies = [
4526
4611
  "protobuf",
4527
4612
  "protobuf-codegen",
@@ -4530,7 +4615,7 @@ dependencies = [
4530
4615
 
4531
4616
  [[package]]
4532
4617
  name = "yara-x-proto-yaml"
4533
- version = "0.11.1"
4618
+ version = "0.12.0"
4534
4619
  dependencies = [
4535
4620
  "chrono",
4536
4621
  "globwalk",
@@ -4545,7 +4630,7 @@ dependencies = [
4545
4630
 
4546
4631
  [[package]]
4547
4632
  name = "yara-x-py"
4548
- version = "0.11.1"
4633
+ version = "0.12.0"
4549
4634
  dependencies = [
4550
4635
  "protobuf-json-mapping",
4551
4636
  "pyo3",
@@ -4573,7 +4658,7 @@ checksum = "fa4f8080344d4671fb4e831a13ad1e68092748387dfc4f55e356242fae12ce3e"
4573
4658
  dependencies = [
4574
4659
  "proc-macro2",
4575
4660
  "quote",
4576
- "syn 2.0.89",
4661
+ "syn 2.0.90",
4577
4662
  ]
4578
4663
 
4579
4664
  [[package]]
@@ -4593,7 +4678,7 @@ checksum = "ce36e65b0d2999d2aafac989fb249189a141aee1f53c612c1f37d72631959f69"
4593
4678
  dependencies = [
4594
4679
  "proc-macro2",
4595
4680
  "quote",
4596
- "syn 2.0.89",
4681
+ "syn 2.0.90",
4597
4682
  ]
4598
4683
 
4599
4684
  [[package]]
@@ -4612,13 +4697,13 @@ dependencies = [
4612
4697
  "displaydoc",
4613
4698
  "flate2",
4614
4699
  "hmac",
4615
- "indexmap 2.6.0",
4700
+ "indexmap 2.7.0",
4616
4701
  "lzma-rs",
4617
4702
  "memchr",
4618
4703
  "pbkdf2",
4619
4704
  "rand",
4620
4705
  "sha1",
4621
- "thiserror 2.0.3",
4706
+ "thiserror 2.0.6",
4622
4707
  "time",
4623
4708
  "zeroize",
4624
4709
  "zopfli",