yara-x 1.0.0__tar.gz → 1.0.1__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 (880) hide show
  1. {yara_x-1.0.0 → yara_x-1.0.1}/Cargo.lock +11 -10
  2. {yara_x-1.0.0 → yara_x-1.0.1}/Cargo.toml +8 -8
  3. {yara_x-1.0.0 → yara_x-1.0.1}/PKG-INFO +1 -1
  4. {yara_x-1.0.0 → yara_x-1.0.1}/lib/build.rs +2 -10
  5. {yara_x-1.0.0 → yara_x-1.0.1}/lib/src/compiler/mod.rs +19 -22
  6. {yara_x-1.0.0 → yara_x-1.0.1}/lib/src/types/func.rs +2 -2
  7. yara_x-1.0.1/proto/src/yara.proto +169 -0
  8. {yara_x-1.0.0 → yara_x-1.0.1}/proto-json/build.rs +1 -2
  9. {yara_x-1.0.0 → yara_x-1.0.1}/proto-json/src/lib.rs +1 -1
  10. {yara_x-1.0.0 → yara_x-1.0.1}/proto-json/src/tests/test.proto +15 -0
  11. {yara_x-1.0.0 → yara_x-1.0.1}/proto-json/src/tests/testdata/1.in +2 -0
  12. {yara_x-1.0.0 → yara_x-1.0.1}/proto-json/src/tests/testdata/1.out +3 -1
  13. yara_x-1.0.1/proto-json/src/yara.proto +169 -0
  14. {yara_x-1.0.0 → yara_x-1.0.1}/proto-yaml/build.rs +1 -2
  15. yara_x-1.0.1/proto-yaml/src/yara.proto +169 -0
  16. {yara_x-1.0.0 → yara_x-1.0.1}/README.md +0 -0
  17. {yara_x-1.0.0 → yara_x-1.0.1}/fmt/Cargo.lock +0 -0
  18. {yara_x-1.0.0 → yara_x-1.0.1}/fmt/Cargo.toml +0 -0
  19. {yara_x-1.0.0 → yara_x-1.0.1}/fmt/README.md +0 -0
  20. {yara_x-1.0.0 → yara_x-1.0.1}/fmt/src/align.rs +0 -0
  21. {yara_x-1.0.0 → yara_x-1.0.1}/fmt/src/bubble.rs +0 -0
  22. {yara_x-1.0.0 → yara_x-1.0.1}/fmt/src/comments.rs +0 -0
  23. {yara_x-1.0.0 → yara_x-1.0.1}/fmt/src/format_hex_patterns.rs +0 -0
  24. {yara_x-1.0.0 → yara_x-1.0.1}/fmt/src/indentation.rs +0 -0
  25. {yara_x-1.0.0 → yara_x-1.0.1}/fmt/src/lib.rs +0 -0
  26. {yara_x-1.0.0 → yara_x-1.0.1}/fmt/src/processor/mod.rs +0 -0
  27. {yara_x-1.0.0 → yara_x-1.0.1}/fmt/src/processor/tests.rs +0 -0
  28. {yara_x-1.0.0 → yara_x-1.0.1}/fmt/src/testdata/config_tests/align_metadata_false.formatted +0 -0
  29. {yara_x-1.0.0 → yara_x-1.0.1}/fmt/src/testdata/config_tests/align_patterns_false.formatted +0 -0
  30. {yara_x-1.0.0 → yara_x-1.0.1}/fmt/src/testdata/config_tests/align_rule.unformatted +0 -0
  31. {yara_x-1.0.0 → yara_x-1.0.1}/fmt/src/testdata/config_tests/empty_line_after_section_header_true.formatted +0 -0
  32. {yara_x-1.0.0 → yara_x-1.0.1}/fmt/src/testdata/config_tests/empty_line_before_section_header_false.formatted +0 -0
  33. {yara_x-1.0.0 → yara_x-1.0.1}/fmt/src/testdata/config_tests/generic_rule.unformatted +0 -0
  34. {yara_x-1.0.0 → yara_x-1.0.1}/fmt/src/testdata/config_tests/indent_section_contents_false.formatted +0 -0
  35. {yara_x-1.0.0 → yara_x-1.0.1}/fmt/src/testdata/config_tests/indent_section_headers_false.formatted +0 -0
  36. {yara_x-1.0.0 → yara_x-1.0.1}/fmt/src/testdata/config_tests/indent_spaces_one.formatted +0 -0
  37. {yara_x-1.0.0 → yara_x-1.0.1}/fmt/src/testdata/config_tests/indent_spaces_zero.formatted +0 -0
  38. {yara_x-1.0.0 → yara_x-1.0.1}/fmt/src/testdata/config_tests/newline_before_curly_brace_true.formatted +0 -0
  39. {yara_x-1.0.0 → yara_x-1.0.1}/fmt/src/testdata/default_tests/test1.formatted +0 -0
  40. {yara_x-1.0.0 → yara_x-1.0.1}/fmt/src/testdata/default_tests/test1.unformatted +0 -0
  41. {yara_x-1.0.0 → yara_x-1.0.1}/fmt/src/testdata/default_tests/test10.formatted +0 -0
  42. {yara_x-1.0.0 → yara_x-1.0.1}/fmt/src/testdata/default_tests/test10.unformatted +0 -0
  43. {yara_x-1.0.0 → yara_x-1.0.1}/fmt/src/testdata/default_tests/test11.formatted +0 -0
  44. {yara_x-1.0.0 → yara_x-1.0.1}/fmt/src/testdata/default_tests/test11.unformatted +0 -0
  45. {yara_x-1.0.0 → yara_x-1.0.1}/fmt/src/testdata/default_tests/test12.formatted +0 -0
  46. {yara_x-1.0.0 → yara_x-1.0.1}/fmt/src/testdata/default_tests/test12.unformatted +0 -0
  47. {yara_x-1.0.0 → yara_x-1.0.1}/fmt/src/testdata/default_tests/test13.formatted +0 -0
  48. {yara_x-1.0.0 → yara_x-1.0.1}/fmt/src/testdata/default_tests/test13.unformatted +0 -0
  49. {yara_x-1.0.0 → yara_x-1.0.1}/fmt/src/testdata/default_tests/test14.formatted +0 -0
  50. {yara_x-1.0.0 → yara_x-1.0.1}/fmt/src/testdata/default_tests/test14.unformatted +0 -0
  51. {yara_x-1.0.0 → yara_x-1.0.1}/fmt/src/testdata/default_tests/test15.formatted +0 -0
  52. {yara_x-1.0.0 → yara_x-1.0.1}/fmt/src/testdata/default_tests/test15.unformatted +0 -0
  53. {yara_x-1.0.0 → yara_x-1.0.1}/fmt/src/testdata/default_tests/test16.formatted +0 -0
  54. {yara_x-1.0.0 → yara_x-1.0.1}/fmt/src/testdata/default_tests/test16.unformatted +0 -0
  55. {yara_x-1.0.0 → yara_x-1.0.1}/fmt/src/testdata/default_tests/test17.formatted +0 -0
  56. {yara_x-1.0.0 → yara_x-1.0.1}/fmt/src/testdata/default_tests/test17.unformatted +0 -0
  57. {yara_x-1.0.0 → yara_x-1.0.1}/fmt/src/testdata/default_tests/test18.formatted +0 -0
  58. {yara_x-1.0.0 → yara_x-1.0.1}/fmt/src/testdata/default_tests/test18.unformatted +0 -0
  59. {yara_x-1.0.0 → yara_x-1.0.1}/fmt/src/testdata/default_tests/test19.formatted +0 -0
  60. {yara_x-1.0.0 → yara_x-1.0.1}/fmt/src/testdata/default_tests/test19.unformatted +0 -0
  61. {yara_x-1.0.0 → yara_x-1.0.1}/fmt/src/testdata/default_tests/test2.formatted +0 -0
  62. {yara_x-1.0.0 → yara_x-1.0.1}/fmt/src/testdata/default_tests/test2.unformatted +0 -0
  63. {yara_x-1.0.0 → yara_x-1.0.1}/fmt/src/testdata/default_tests/test20.formatted +0 -0
  64. {yara_x-1.0.0 → yara_x-1.0.1}/fmt/src/testdata/default_tests/test20.unformatted +0 -0
  65. {yara_x-1.0.0 → yara_x-1.0.1}/fmt/src/testdata/default_tests/test21.formatted +0 -0
  66. {yara_x-1.0.0 → yara_x-1.0.1}/fmt/src/testdata/default_tests/test21.unformatted +0 -0
  67. {yara_x-1.0.0 → yara_x-1.0.1}/fmt/src/testdata/default_tests/test22.formatted +0 -0
  68. {yara_x-1.0.0 → yara_x-1.0.1}/fmt/src/testdata/default_tests/test22.unformatted +0 -0
  69. {yara_x-1.0.0 → yara_x-1.0.1}/fmt/src/testdata/default_tests/test23.formatted +0 -0
  70. {yara_x-1.0.0 → yara_x-1.0.1}/fmt/src/testdata/default_tests/test23.unformatted +0 -0
  71. {yara_x-1.0.0 → yara_x-1.0.1}/fmt/src/testdata/default_tests/test24.formatted +0 -0
  72. {yara_x-1.0.0 → yara_x-1.0.1}/fmt/src/testdata/default_tests/test24.unformatted +0 -0
  73. {yara_x-1.0.0 → yara_x-1.0.1}/fmt/src/testdata/default_tests/test25.formatted +0 -0
  74. {yara_x-1.0.0 → yara_x-1.0.1}/fmt/src/testdata/default_tests/test25.unformatted +0 -0
  75. {yara_x-1.0.0 → yara_x-1.0.1}/fmt/src/testdata/default_tests/test26.formatted +0 -0
  76. {yara_x-1.0.0 → yara_x-1.0.1}/fmt/src/testdata/default_tests/test26.unformatted +0 -0
  77. {yara_x-1.0.0 → yara_x-1.0.1}/fmt/src/testdata/default_tests/test27.formatted +0 -0
  78. {yara_x-1.0.0 → yara_x-1.0.1}/fmt/src/testdata/default_tests/test27.unformatted +0 -0
  79. {yara_x-1.0.0 → yara_x-1.0.1}/fmt/src/testdata/default_tests/test28.formatted +0 -0
  80. {yara_x-1.0.0 → yara_x-1.0.1}/fmt/src/testdata/default_tests/test28.unformatted +0 -0
  81. {yara_x-1.0.0 → yara_x-1.0.1}/fmt/src/testdata/default_tests/test29.formatted +0 -0
  82. {yara_x-1.0.0 → yara_x-1.0.1}/fmt/src/testdata/default_tests/test29.unformatted +0 -0
  83. {yara_x-1.0.0 → yara_x-1.0.1}/fmt/src/testdata/default_tests/test3.formatted +0 -0
  84. {yara_x-1.0.0 → yara_x-1.0.1}/fmt/src/testdata/default_tests/test3.unformatted +0 -0
  85. {yara_x-1.0.0 → yara_x-1.0.1}/fmt/src/testdata/default_tests/test30.formatted +0 -0
  86. {yara_x-1.0.0 → yara_x-1.0.1}/fmt/src/testdata/default_tests/test30.unformatted +0 -0
  87. {yara_x-1.0.0 → yara_x-1.0.1}/fmt/src/testdata/default_tests/test31.formatted +0 -0
  88. {yara_x-1.0.0 → yara_x-1.0.1}/fmt/src/testdata/default_tests/test31.unformatted +0 -0
  89. {yara_x-1.0.0 → yara_x-1.0.1}/fmt/src/testdata/default_tests/test32.formatted +0 -0
  90. {yara_x-1.0.0 → yara_x-1.0.1}/fmt/src/testdata/default_tests/test32.unformatted +0 -0
  91. {yara_x-1.0.0 → yara_x-1.0.1}/fmt/src/testdata/default_tests/test33.formatted +0 -0
  92. {yara_x-1.0.0 → yara_x-1.0.1}/fmt/src/testdata/default_tests/test33.unformatted +0 -0
  93. {yara_x-1.0.0 → yara_x-1.0.1}/fmt/src/testdata/default_tests/test34.formatted +0 -0
  94. {yara_x-1.0.0 → yara_x-1.0.1}/fmt/src/testdata/default_tests/test34.unformatted +0 -0
  95. {yara_x-1.0.0 → yara_x-1.0.1}/fmt/src/testdata/default_tests/test4.formatted +0 -0
  96. {yara_x-1.0.0 → yara_x-1.0.1}/fmt/src/testdata/default_tests/test4.unformatted +0 -0
  97. {yara_x-1.0.0 → yara_x-1.0.1}/fmt/src/testdata/default_tests/test5.formatted +0 -0
  98. {yara_x-1.0.0 → yara_x-1.0.1}/fmt/src/testdata/default_tests/test5.unformatted +0 -0
  99. {yara_x-1.0.0 → yara_x-1.0.1}/fmt/src/testdata/default_tests/test6.formatted +0 -0
  100. {yara_x-1.0.0 → yara_x-1.0.1}/fmt/src/testdata/default_tests/test6.unformatted +0 -0
  101. {yara_x-1.0.0 → yara_x-1.0.1}/fmt/src/testdata/default_tests/test7.formatted +0 -0
  102. {yara_x-1.0.0 → yara_x-1.0.1}/fmt/src/testdata/default_tests/test7.unformatted +0 -0
  103. {yara_x-1.0.0 → yara_x-1.0.1}/fmt/src/testdata/default_tests/test8.formatted +0 -0
  104. {yara_x-1.0.0 → yara_x-1.0.1}/fmt/src/testdata/default_tests/test8.unformatted +0 -0
  105. {yara_x-1.0.0 → yara_x-1.0.1}/fmt/src/testdata/default_tests/test9.formatted +0 -0
  106. {yara_x-1.0.0 → yara_x-1.0.1}/fmt/src/testdata/default_tests/test9.unformatted +0 -0
  107. {yara_x-1.0.0 → yara_x-1.0.1}/fmt/src/tests.rs +0 -0
  108. {yara_x-1.0.0 → yara_x-1.0.1}/fmt/src/tokens/mod.rs +0 -0
  109. {yara_x-1.0.0 → yara_x-1.0.1}/fmt/src/tokens/tests.rs +0 -0
  110. {yara_x-1.0.0 → yara_x-1.0.1}/fmt/src/trailing_spaces.rs +0 -0
  111. {yara_x-1.0.0 → yara_x-1.0.1}/lib/Cargo.toml +0 -0
  112. {yara_x-1.0.0 → yara_x-1.0.1}/lib/README.md +0 -0
  113. {yara_x-1.0.0 → yara_x-1.0.1}/lib/src/compiler/atoms/mask.rs +0 -0
  114. {yara_x-1.0.0 → yara_x-1.0.1}/lib/src/compiler/atoms/mod.rs +0 -0
  115. {yara_x-1.0.0 → yara_x-1.0.1}/lib/src/compiler/atoms/quality.rs +0 -0
  116. {yara_x-1.0.0 → yara_x-1.0.1}/lib/src/compiler/base64.rs +0 -0
  117. {yara_x-1.0.0 → yara_x-1.0.1}/lib/src/compiler/context.rs +0 -0
  118. {yara_x-1.0.0 → yara_x-1.0.1}/lib/src/compiler/emit.rs +0 -0
  119. {yara_x-1.0.0 → yara_x-1.0.1}/lib/src/compiler/errors.rs +0 -0
  120. {yara_x-1.0.0 → yara_x-1.0.1}/lib/src/compiler/ir/ast2ir.rs +0 -0
  121. {yara_x-1.0.0 → yara_x-1.0.1}/lib/src/compiler/ir/dfs.rs +0 -0
  122. {yara_x-1.0.0 → yara_x-1.0.1}/lib/src/compiler/ir/hex2hir.rs +0 -0
  123. {yara_x-1.0.0 → yara_x-1.0.1}/lib/src/compiler/ir/mod.rs +0 -0
  124. {yara_x-1.0.0 → yara_x-1.0.1}/lib/src/compiler/ir/tests/mod.rs +0 -0
  125. {yara_x-1.0.0 → yara_x-1.0.1}/lib/src/compiler/ir/tests/testdata/1.cse.ir +0 -0
  126. {yara_x-1.0.0 → yara_x-1.0.1}/lib/src/compiler/ir/tests/testdata/1.hoisting.ir +0 -0
  127. {yara_x-1.0.0 → yara_x-1.0.1}/lib/src/compiler/ir/tests/testdata/1.in +0 -0
  128. {yara_x-1.0.0 → yara_x-1.0.1}/lib/src/compiler/ir/tests/testdata/1.ir +0 -0
  129. {yara_x-1.0.0 → yara_x-1.0.1}/lib/src/compiler/ir/tests/testdata/1.no-folding.ir +0 -0
  130. {yara_x-1.0.0 → yara_x-1.0.1}/lib/src/compiler/ir/tests/testdata/2.cse.ir +0 -0
  131. {yara_x-1.0.0 → yara_x-1.0.1}/lib/src/compiler/ir/tests/testdata/2.hoisting.ir +0 -0
  132. {yara_x-1.0.0 → yara_x-1.0.1}/lib/src/compiler/ir/tests/testdata/2.in +0 -0
  133. {yara_x-1.0.0 → yara_x-1.0.1}/lib/src/compiler/ir/tests/testdata/2.ir +0 -0
  134. {yara_x-1.0.0 → yara_x-1.0.1}/lib/src/compiler/ir/tests/testdata/2.no-folding.ir +0 -0
  135. {yara_x-1.0.0 → yara_x-1.0.1}/lib/src/compiler/ir/tests/testdata/3.cse.ir +0 -0
  136. {yara_x-1.0.0 → yara_x-1.0.1}/lib/src/compiler/ir/tests/testdata/3.hoisting.ir +0 -0
  137. {yara_x-1.0.0 → yara_x-1.0.1}/lib/src/compiler/ir/tests/testdata/3.in +0 -0
  138. {yara_x-1.0.0 → yara_x-1.0.1}/lib/src/compiler/ir/tests/testdata/3.ir +0 -0
  139. {yara_x-1.0.0 → yara_x-1.0.1}/lib/src/compiler/ir/tests/testdata/3.no-folding.ir +0 -0
  140. {yara_x-1.0.0 → yara_x-1.0.1}/lib/src/compiler/ir/tests/testdata/4.cse.ir +0 -0
  141. {yara_x-1.0.0 → yara_x-1.0.1}/lib/src/compiler/ir/tests/testdata/4.hoisting.ir +0 -0
  142. {yara_x-1.0.0 → yara_x-1.0.1}/lib/src/compiler/ir/tests/testdata/4.in +0 -0
  143. {yara_x-1.0.0 → yara_x-1.0.1}/lib/src/compiler/ir/tests/testdata/4.ir +0 -0
  144. {yara_x-1.0.0 → yara_x-1.0.1}/lib/src/compiler/ir/tests/testdata/4.no-folding.ir +0 -0
  145. {yara_x-1.0.0 → yara_x-1.0.1}/lib/src/compiler/ir/tests/testdata/5.cse.ir +0 -0
  146. {yara_x-1.0.0 → yara_x-1.0.1}/lib/src/compiler/ir/tests/testdata/5.hoisting.ir +0 -0
  147. {yara_x-1.0.0 → yara_x-1.0.1}/lib/src/compiler/ir/tests/testdata/5.in +0 -0
  148. {yara_x-1.0.0 → yara_x-1.0.1}/lib/src/compiler/ir/tests/testdata/5.ir +0 -0
  149. {yara_x-1.0.0 → yara_x-1.0.1}/lib/src/compiler/ir/tests/testdata/5.no-folding.ir +0 -0
  150. {yara_x-1.0.0 → yara_x-1.0.1}/lib/src/compiler/ir/tests/testdata/6.cse.ir +0 -0
  151. {yara_x-1.0.0 → yara_x-1.0.1}/lib/src/compiler/ir/tests/testdata/6.hoisting.ir +0 -0
  152. {yara_x-1.0.0 → yara_x-1.0.1}/lib/src/compiler/ir/tests/testdata/6.in +0 -0
  153. {yara_x-1.0.0 → yara_x-1.0.1}/lib/src/compiler/ir/tests/testdata/6.ir +0 -0
  154. {yara_x-1.0.0 → yara_x-1.0.1}/lib/src/compiler/ir/tests/testdata/6.no-folding.ir +0 -0
  155. {yara_x-1.0.0 → yara_x-1.0.1}/lib/src/compiler/ir/tests/testdata/7.cse.ir +0 -0
  156. {yara_x-1.0.0 → yara_x-1.0.1}/lib/src/compiler/ir/tests/testdata/7.hoisting.ir +0 -0
  157. {yara_x-1.0.0 → yara_x-1.0.1}/lib/src/compiler/ir/tests/testdata/7.in +0 -0
  158. {yara_x-1.0.0 → yara_x-1.0.1}/lib/src/compiler/ir/tests/testdata/7.ir +0 -0
  159. {yara_x-1.0.0 → yara_x-1.0.1}/lib/src/compiler/ir/tests/testdata/7.no-folding.ir +0 -0
  160. {yara_x-1.0.0 → yara_x-1.0.1}/lib/src/compiler/ir/tests/testdata/8.cse.ir +0 -0
  161. {yara_x-1.0.0 → yara_x-1.0.1}/lib/src/compiler/ir/tests/testdata/8.hoisting.ir +0 -0
  162. {yara_x-1.0.0 → yara_x-1.0.1}/lib/src/compiler/ir/tests/testdata/8.in +0 -0
  163. {yara_x-1.0.0 → yara_x-1.0.1}/lib/src/compiler/ir/tests/testdata/8.ir +0 -0
  164. {yara_x-1.0.0 → yara_x-1.0.1}/lib/src/compiler/ir/tests/testdata/8.no-folding.ir +0 -0
  165. {yara_x-1.0.0 → yara_x-1.0.1}/lib/src/compiler/ir/tests/testdata/9.cse.ir +0 -0
  166. {yara_x-1.0.0 → yara_x-1.0.1}/lib/src/compiler/ir/tests/testdata/9.hoisting.ir +0 -0
  167. {yara_x-1.0.0 → yara_x-1.0.1}/lib/src/compiler/ir/tests/testdata/9.in +0 -0
  168. {yara_x-1.0.0 → yara_x-1.0.1}/lib/src/compiler/ir/tests/testdata/9.ir +0 -0
  169. {yara_x-1.0.0 → yara_x-1.0.1}/lib/src/compiler/ir/tests/testdata/9.no-folding.ir +0 -0
  170. {yara_x-1.0.0 → yara_x-1.0.1}/lib/src/compiler/linters.rs +0 -0
  171. {yara_x-1.0.0 → yara_x-1.0.1}/lib/src/compiler/report.rs +0 -0
  172. {yara_x-1.0.0 → yara_x-1.0.1}/lib/src/compiler/rules.rs +0 -0
  173. {yara_x-1.0.0 → yara_x-1.0.1}/lib/src/compiler/tests/mod.rs +0 -0
  174. {yara_x-1.0.0 → yara_x-1.0.1}/lib/src/compiler/tests/testdata/errors/1.in +0 -0
  175. {yara_x-1.0.0 → yara_x-1.0.1}/lib/src/compiler/tests/testdata/errors/1.out +0 -0
  176. {yara_x-1.0.0 → yara_x-1.0.1}/lib/src/compiler/tests/testdata/errors/10.in +0 -0
  177. {yara_x-1.0.0 → yara_x-1.0.1}/lib/src/compiler/tests/testdata/errors/10.out +0 -0
  178. {yara_x-1.0.0 → yara_x-1.0.1}/lib/src/compiler/tests/testdata/errors/100.in +0 -0
  179. {yara_x-1.0.0 → yara_x-1.0.1}/lib/src/compiler/tests/testdata/errors/100.out +0 -0
  180. {yara_x-1.0.0 → yara_x-1.0.1}/lib/src/compiler/tests/testdata/errors/101.in +0 -0
  181. {yara_x-1.0.0 → yara_x-1.0.1}/lib/src/compiler/tests/testdata/errors/101.out +0 -0
  182. {yara_x-1.0.0 → yara_x-1.0.1}/lib/src/compiler/tests/testdata/errors/102.in +0 -0
  183. {yara_x-1.0.0 → yara_x-1.0.1}/lib/src/compiler/tests/testdata/errors/102.out +0 -0
  184. {yara_x-1.0.0 → yara_x-1.0.1}/lib/src/compiler/tests/testdata/errors/103.in +0 -0
  185. {yara_x-1.0.0 → yara_x-1.0.1}/lib/src/compiler/tests/testdata/errors/103.out +0 -0
  186. {yara_x-1.0.0 → yara_x-1.0.1}/lib/src/compiler/tests/testdata/errors/104.in +0 -0
  187. {yara_x-1.0.0 → yara_x-1.0.1}/lib/src/compiler/tests/testdata/errors/104.out +0 -0
  188. {yara_x-1.0.0 → yara_x-1.0.1}/lib/src/compiler/tests/testdata/errors/105.in +0 -0
  189. {yara_x-1.0.0 → yara_x-1.0.1}/lib/src/compiler/tests/testdata/errors/105.out +0 -0
  190. {yara_x-1.0.0 → yara_x-1.0.1}/lib/src/compiler/tests/testdata/errors/106.in +0 -0
  191. {yara_x-1.0.0 → yara_x-1.0.1}/lib/src/compiler/tests/testdata/errors/106.out +0 -0
  192. {yara_x-1.0.0 → yara_x-1.0.1}/lib/src/compiler/tests/testdata/errors/107.in +0 -0
  193. {yara_x-1.0.0 → yara_x-1.0.1}/lib/src/compiler/tests/testdata/errors/107.out +0 -0
  194. {yara_x-1.0.0 → yara_x-1.0.1}/lib/src/compiler/tests/testdata/errors/108.in +0 -0
  195. {yara_x-1.0.0 → yara_x-1.0.1}/lib/src/compiler/tests/testdata/errors/108.out +0 -0
  196. {yara_x-1.0.0 → yara_x-1.0.1}/lib/src/compiler/tests/testdata/errors/109.in +0 -0
  197. {yara_x-1.0.0 → yara_x-1.0.1}/lib/src/compiler/tests/testdata/errors/109.out +0 -0
  198. {yara_x-1.0.0 → yara_x-1.0.1}/lib/src/compiler/tests/testdata/errors/11.in +0 -0
  199. {yara_x-1.0.0 → yara_x-1.0.1}/lib/src/compiler/tests/testdata/errors/11.out +0 -0
  200. {yara_x-1.0.0 → yara_x-1.0.1}/lib/src/compiler/tests/testdata/errors/110.in +0 -0
  201. {yara_x-1.0.0 → yara_x-1.0.1}/lib/src/compiler/tests/testdata/errors/110.out +0 -0
  202. {yara_x-1.0.0 → yara_x-1.0.1}/lib/src/compiler/tests/testdata/errors/111.in +0 -0
  203. {yara_x-1.0.0 → yara_x-1.0.1}/lib/src/compiler/tests/testdata/errors/111.out +0 -0
  204. {yara_x-1.0.0 → yara_x-1.0.1}/lib/src/compiler/tests/testdata/errors/112.in +0 -0
  205. {yara_x-1.0.0 → yara_x-1.0.1}/lib/src/compiler/tests/testdata/errors/112.out +0 -0
  206. {yara_x-1.0.0 → yara_x-1.0.1}/lib/src/compiler/tests/testdata/errors/113.in +0 -0
  207. {yara_x-1.0.0 → yara_x-1.0.1}/lib/src/compiler/tests/testdata/errors/113.out +0 -0
  208. {yara_x-1.0.0 → yara_x-1.0.1}/lib/src/compiler/tests/testdata/errors/114.in +0 -0
  209. {yara_x-1.0.0 → yara_x-1.0.1}/lib/src/compiler/tests/testdata/errors/114.out +0 -0
  210. {yara_x-1.0.0 → yara_x-1.0.1}/lib/src/compiler/tests/testdata/errors/115.in +0 -0
  211. {yara_x-1.0.0 → yara_x-1.0.1}/lib/src/compiler/tests/testdata/errors/115.out +0 -0
  212. {yara_x-1.0.0 → yara_x-1.0.1}/lib/src/compiler/tests/testdata/errors/116.in +0 -0
  213. {yara_x-1.0.0 → yara_x-1.0.1}/lib/src/compiler/tests/testdata/errors/116.out +0 -0
  214. {yara_x-1.0.0 → yara_x-1.0.1}/lib/src/compiler/tests/testdata/errors/117.in +0 -0
  215. {yara_x-1.0.0 → yara_x-1.0.1}/lib/src/compiler/tests/testdata/errors/117.out +0 -0
  216. {yara_x-1.0.0 → yara_x-1.0.1}/lib/src/compiler/tests/testdata/errors/118.in +0 -0
  217. {yara_x-1.0.0 → yara_x-1.0.1}/lib/src/compiler/tests/testdata/errors/118.out +0 -0
  218. {yara_x-1.0.0 → yara_x-1.0.1}/lib/src/compiler/tests/testdata/errors/119.in +0 -0
  219. {yara_x-1.0.0 → yara_x-1.0.1}/lib/src/compiler/tests/testdata/errors/119.out +0 -0
  220. {yara_x-1.0.0 → yara_x-1.0.1}/lib/src/compiler/tests/testdata/errors/12.in +0 -0
  221. {yara_x-1.0.0 → yara_x-1.0.1}/lib/src/compiler/tests/testdata/errors/12.out +0 -0
  222. {yara_x-1.0.0 → yara_x-1.0.1}/lib/src/compiler/tests/testdata/errors/120.in +0 -0
  223. {yara_x-1.0.0 → yara_x-1.0.1}/lib/src/compiler/tests/testdata/errors/120.out +0 -0
  224. {yara_x-1.0.0 → yara_x-1.0.1}/lib/src/compiler/tests/testdata/errors/121.in +0 -0
  225. {yara_x-1.0.0 → yara_x-1.0.1}/lib/src/compiler/tests/testdata/errors/121.out +0 -0
  226. {yara_x-1.0.0 → yara_x-1.0.1}/lib/src/compiler/tests/testdata/errors/122.in +0 -0
  227. {yara_x-1.0.0 → yara_x-1.0.1}/lib/src/compiler/tests/testdata/errors/122.out +0 -0
  228. {yara_x-1.0.0 → yara_x-1.0.1}/lib/src/compiler/tests/testdata/errors/123.in +0 -0
  229. {yara_x-1.0.0 → yara_x-1.0.1}/lib/src/compiler/tests/testdata/errors/123.out +0 -0
  230. {yara_x-1.0.0 → yara_x-1.0.1}/lib/src/compiler/tests/testdata/errors/124.in +0 -0
  231. {yara_x-1.0.0 → yara_x-1.0.1}/lib/src/compiler/tests/testdata/errors/124.out +0 -0
  232. {yara_x-1.0.0 → yara_x-1.0.1}/lib/src/compiler/tests/testdata/errors/125.in +0 -0
  233. {yara_x-1.0.0 → yara_x-1.0.1}/lib/src/compiler/tests/testdata/errors/125.out +0 -0
  234. {yara_x-1.0.0 → yara_x-1.0.1}/lib/src/compiler/tests/testdata/errors/126.in +0 -0
  235. {yara_x-1.0.0 → yara_x-1.0.1}/lib/src/compiler/tests/testdata/errors/126.out +0 -0
  236. {yara_x-1.0.0 → yara_x-1.0.1}/lib/src/compiler/tests/testdata/errors/127.in +0 -0
  237. {yara_x-1.0.0 → yara_x-1.0.1}/lib/src/compiler/tests/testdata/errors/127.out +0 -0
  238. {yara_x-1.0.0 → yara_x-1.0.1}/lib/src/compiler/tests/testdata/errors/128.in +0 -0
  239. {yara_x-1.0.0 → yara_x-1.0.1}/lib/src/compiler/tests/testdata/errors/128.out +0 -0
  240. {yara_x-1.0.0 → yara_x-1.0.1}/lib/src/compiler/tests/testdata/errors/129.in +0 -0
  241. {yara_x-1.0.0 → yara_x-1.0.1}/lib/src/compiler/tests/testdata/errors/129.out +0 -0
  242. {yara_x-1.0.0 → yara_x-1.0.1}/lib/src/compiler/tests/testdata/errors/13.in +0 -0
  243. {yara_x-1.0.0 → yara_x-1.0.1}/lib/src/compiler/tests/testdata/errors/13.out +0 -0
  244. {yara_x-1.0.0 → yara_x-1.0.1}/lib/src/compiler/tests/testdata/errors/131.in +0 -0
  245. {yara_x-1.0.0 → yara_x-1.0.1}/lib/src/compiler/tests/testdata/errors/131.out +0 -0
  246. {yara_x-1.0.0 → yara_x-1.0.1}/lib/src/compiler/tests/testdata/errors/132.in +0 -0
  247. {yara_x-1.0.0 → yara_x-1.0.1}/lib/src/compiler/tests/testdata/errors/132.out +0 -0
  248. {yara_x-1.0.0 → yara_x-1.0.1}/lib/src/compiler/tests/testdata/errors/133.in +0 -0
  249. {yara_x-1.0.0 → yara_x-1.0.1}/lib/src/compiler/tests/testdata/errors/133.out +0 -0
  250. {yara_x-1.0.0 → yara_x-1.0.1}/lib/src/compiler/tests/testdata/errors/134.in +0 -0
  251. {yara_x-1.0.0 → yara_x-1.0.1}/lib/src/compiler/tests/testdata/errors/134.out +0 -0
  252. {yara_x-1.0.0 → yara_x-1.0.1}/lib/src/compiler/tests/testdata/errors/135.in +0 -0
  253. {yara_x-1.0.0 → yara_x-1.0.1}/lib/src/compiler/tests/testdata/errors/135.out +0 -0
  254. {yara_x-1.0.0 → yara_x-1.0.1}/lib/src/compiler/tests/testdata/errors/136.in +0 -0
  255. {yara_x-1.0.0 → yara_x-1.0.1}/lib/src/compiler/tests/testdata/errors/136.out +0 -0
  256. {yara_x-1.0.0 → yara_x-1.0.1}/lib/src/compiler/tests/testdata/errors/137.in +0 -0
  257. {yara_x-1.0.0 → yara_x-1.0.1}/lib/src/compiler/tests/testdata/errors/137.out +0 -0
  258. {yara_x-1.0.0 → yara_x-1.0.1}/lib/src/compiler/tests/testdata/errors/138.in +0 -0
  259. {yara_x-1.0.0 → yara_x-1.0.1}/lib/src/compiler/tests/testdata/errors/138.out +0 -0
  260. {yara_x-1.0.0 → yara_x-1.0.1}/lib/src/compiler/tests/testdata/errors/139.in +0 -0
  261. {yara_x-1.0.0 → yara_x-1.0.1}/lib/src/compiler/tests/testdata/errors/139.out +0 -0
  262. {yara_x-1.0.0 → yara_x-1.0.1}/lib/src/compiler/tests/testdata/errors/14.in +0 -0
  263. {yara_x-1.0.0 → yara_x-1.0.1}/lib/src/compiler/tests/testdata/errors/14.out +0 -0
  264. {yara_x-1.0.0 → yara_x-1.0.1}/lib/src/compiler/tests/testdata/errors/140.in +0 -0
  265. {yara_x-1.0.0 → yara_x-1.0.1}/lib/src/compiler/tests/testdata/errors/140.out +0 -0
  266. {yara_x-1.0.0 → yara_x-1.0.1}/lib/src/compiler/tests/testdata/errors/141.in +0 -0
  267. {yara_x-1.0.0 → yara_x-1.0.1}/lib/src/compiler/tests/testdata/errors/141.out +0 -0
  268. {yara_x-1.0.0 → yara_x-1.0.1}/lib/src/compiler/tests/testdata/errors/142.in +0 -0
  269. {yara_x-1.0.0 → yara_x-1.0.1}/lib/src/compiler/tests/testdata/errors/142.out +0 -0
  270. {yara_x-1.0.0 → yara_x-1.0.1}/lib/src/compiler/tests/testdata/errors/143.in +0 -0
  271. {yara_x-1.0.0 → yara_x-1.0.1}/lib/src/compiler/tests/testdata/errors/143.out +0 -0
  272. {yara_x-1.0.0 → yara_x-1.0.1}/lib/src/compiler/tests/testdata/errors/15.in +0 -0
  273. {yara_x-1.0.0 → yara_x-1.0.1}/lib/src/compiler/tests/testdata/errors/15.out +0 -0
  274. {yara_x-1.0.0 → yara_x-1.0.1}/lib/src/compiler/tests/testdata/errors/16.in +0 -0
  275. {yara_x-1.0.0 → yara_x-1.0.1}/lib/src/compiler/tests/testdata/errors/16.out +0 -0
  276. {yara_x-1.0.0 → yara_x-1.0.1}/lib/src/compiler/tests/testdata/errors/17.in +0 -0
  277. {yara_x-1.0.0 → yara_x-1.0.1}/lib/src/compiler/tests/testdata/errors/17.out +0 -0
  278. {yara_x-1.0.0 → yara_x-1.0.1}/lib/src/compiler/tests/testdata/errors/18.in +0 -0
  279. {yara_x-1.0.0 → yara_x-1.0.1}/lib/src/compiler/tests/testdata/errors/18.out +0 -0
  280. {yara_x-1.0.0 → yara_x-1.0.1}/lib/src/compiler/tests/testdata/errors/19.in +0 -0
  281. {yara_x-1.0.0 → yara_x-1.0.1}/lib/src/compiler/tests/testdata/errors/19.out +0 -0
  282. {yara_x-1.0.0 → yara_x-1.0.1}/lib/src/compiler/tests/testdata/errors/2.in +0 -0
  283. {yara_x-1.0.0 → yara_x-1.0.1}/lib/src/compiler/tests/testdata/errors/2.out +0 -0
  284. {yara_x-1.0.0 → yara_x-1.0.1}/lib/src/compiler/tests/testdata/errors/20.in +0 -0
  285. {yara_x-1.0.0 → yara_x-1.0.1}/lib/src/compiler/tests/testdata/errors/20.out +0 -0
  286. {yara_x-1.0.0 → yara_x-1.0.1}/lib/src/compiler/tests/testdata/errors/21.in +0 -0
  287. {yara_x-1.0.0 → yara_x-1.0.1}/lib/src/compiler/tests/testdata/errors/21.out +0 -0
  288. {yara_x-1.0.0 → yara_x-1.0.1}/lib/src/compiler/tests/testdata/errors/22.in +0 -0
  289. {yara_x-1.0.0 → yara_x-1.0.1}/lib/src/compiler/tests/testdata/errors/22.out +0 -0
  290. {yara_x-1.0.0 → yara_x-1.0.1}/lib/src/compiler/tests/testdata/errors/23.in +0 -0
  291. {yara_x-1.0.0 → yara_x-1.0.1}/lib/src/compiler/tests/testdata/errors/23.out +0 -0
  292. {yara_x-1.0.0 → yara_x-1.0.1}/lib/src/compiler/tests/testdata/errors/24.in +0 -0
  293. {yara_x-1.0.0 → yara_x-1.0.1}/lib/src/compiler/tests/testdata/errors/24.out +0 -0
  294. {yara_x-1.0.0 → yara_x-1.0.1}/lib/src/compiler/tests/testdata/errors/25.in +0 -0
  295. {yara_x-1.0.0 → yara_x-1.0.1}/lib/src/compiler/tests/testdata/errors/25.out +0 -0
  296. {yara_x-1.0.0 → yara_x-1.0.1}/lib/src/compiler/tests/testdata/errors/26.in +0 -0
  297. {yara_x-1.0.0 → yara_x-1.0.1}/lib/src/compiler/tests/testdata/errors/26.out +0 -0
  298. {yara_x-1.0.0 → yara_x-1.0.1}/lib/src/compiler/tests/testdata/errors/28.in +0 -0
  299. {yara_x-1.0.0 → yara_x-1.0.1}/lib/src/compiler/tests/testdata/errors/28.out +0 -0
  300. {yara_x-1.0.0 → yara_x-1.0.1}/lib/src/compiler/tests/testdata/errors/29.in +0 -0
  301. {yara_x-1.0.0 → yara_x-1.0.1}/lib/src/compiler/tests/testdata/errors/29.out +0 -0
  302. {yara_x-1.0.0 → yara_x-1.0.1}/lib/src/compiler/tests/testdata/errors/3.in +0 -0
  303. {yara_x-1.0.0 → yara_x-1.0.1}/lib/src/compiler/tests/testdata/errors/3.out +0 -0
  304. {yara_x-1.0.0 → yara_x-1.0.1}/lib/src/compiler/tests/testdata/errors/30.in +0 -0
  305. {yara_x-1.0.0 → yara_x-1.0.1}/lib/src/compiler/tests/testdata/errors/30.out +0 -0
  306. {yara_x-1.0.0 → yara_x-1.0.1}/lib/src/compiler/tests/testdata/errors/31.in +0 -0
  307. {yara_x-1.0.0 → yara_x-1.0.1}/lib/src/compiler/tests/testdata/errors/31.out +0 -0
  308. {yara_x-1.0.0 → yara_x-1.0.1}/lib/src/compiler/tests/testdata/errors/32.in +0 -0
  309. {yara_x-1.0.0 → yara_x-1.0.1}/lib/src/compiler/tests/testdata/errors/32.out +0 -0
  310. {yara_x-1.0.0 → yara_x-1.0.1}/lib/src/compiler/tests/testdata/errors/33.in +0 -0
  311. {yara_x-1.0.0 → yara_x-1.0.1}/lib/src/compiler/tests/testdata/errors/33.out +0 -0
  312. {yara_x-1.0.0 → yara_x-1.0.1}/lib/src/compiler/tests/testdata/errors/34.in +0 -0
  313. {yara_x-1.0.0 → yara_x-1.0.1}/lib/src/compiler/tests/testdata/errors/34.out +0 -0
  314. {yara_x-1.0.0 → yara_x-1.0.1}/lib/src/compiler/tests/testdata/errors/35.in +0 -0
  315. {yara_x-1.0.0 → yara_x-1.0.1}/lib/src/compiler/tests/testdata/errors/35.out +0 -0
  316. {yara_x-1.0.0 → yara_x-1.0.1}/lib/src/compiler/tests/testdata/errors/37.in +0 -0
  317. {yara_x-1.0.0 → yara_x-1.0.1}/lib/src/compiler/tests/testdata/errors/37.out +0 -0
  318. {yara_x-1.0.0 → yara_x-1.0.1}/lib/src/compiler/tests/testdata/errors/38.in +0 -0
  319. {yara_x-1.0.0 → yara_x-1.0.1}/lib/src/compiler/tests/testdata/errors/38.out +0 -0
  320. {yara_x-1.0.0 → yara_x-1.0.1}/lib/src/compiler/tests/testdata/errors/39.in +0 -0
  321. {yara_x-1.0.0 → yara_x-1.0.1}/lib/src/compiler/tests/testdata/errors/39.out +0 -0
  322. {yara_x-1.0.0 → yara_x-1.0.1}/lib/src/compiler/tests/testdata/errors/4.in +0 -0
  323. {yara_x-1.0.0 → yara_x-1.0.1}/lib/src/compiler/tests/testdata/errors/4.out +0 -0
  324. {yara_x-1.0.0 → yara_x-1.0.1}/lib/src/compiler/tests/testdata/errors/40.in +0 -0
  325. {yara_x-1.0.0 → yara_x-1.0.1}/lib/src/compiler/tests/testdata/errors/40.out +0 -0
  326. {yara_x-1.0.0 → yara_x-1.0.1}/lib/src/compiler/tests/testdata/errors/41.in +0 -0
  327. {yara_x-1.0.0 → yara_x-1.0.1}/lib/src/compiler/tests/testdata/errors/41.out +0 -0
  328. {yara_x-1.0.0 → yara_x-1.0.1}/lib/src/compiler/tests/testdata/errors/42.in +0 -0
  329. {yara_x-1.0.0 → yara_x-1.0.1}/lib/src/compiler/tests/testdata/errors/42.out +0 -0
  330. {yara_x-1.0.0 → yara_x-1.0.1}/lib/src/compiler/tests/testdata/errors/43.in +0 -0
  331. {yara_x-1.0.0 → yara_x-1.0.1}/lib/src/compiler/tests/testdata/errors/43.out +0 -0
  332. {yara_x-1.0.0 → yara_x-1.0.1}/lib/src/compiler/tests/testdata/errors/44.in +0 -0
  333. {yara_x-1.0.0 → yara_x-1.0.1}/lib/src/compiler/tests/testdata/errors/44.out +0 -0
  334. {yara_x-1.0.0 → yara_x-1.0.1}/lib/src/compiler/tests/testdata/errors/45.in +0 -0
  335. {yara_x-1.0.0 → yara_x-1.0.1}/lib/src/compiler/tests/testdata/errors/45.out +0 -0
  336. {yara_x-1.0.0 → yara_x-1.0.1}/lib/src/compiler/tests/testdata/errors/46.in +0 -0
  337. {yara_x-1.0.0 → yara_x-1.0.1}/lib/src/compiler/tests/testdata/errors/46.out +0 -0
  338. {yara_x-1.0.0 → yara_x-1.0.1}/lib/src/compiler/tests/testdata/errors/47.in +0 -0
  339. {yara_x-1.0.0 → yara_x-1.0.1}/lib/src/compiler/tests/testdata/errors/47.out +0 -0
  340. {yara_x-1.0.0 → yara_x-1.0.1}/lib/src/compiler/tests/testdata/errors/48.in +0 -0
  341. {yara_x-1.0.0 → yara_x-1.0.1}/lib/src/compiler/tests/testdata/errors/48.out +0 -0
  342. {yara_x-1.0.0 → yara_x-1.0.1}/lib/src/compiler/tests/testdata/errors/49.in +0 -0
  343. {yara_x-1.0.0 → yara_x-1.0.1}/lib/src/compiler/tests/testdata/errors/49.out +0 -0
  344. {yara_x-1.0.0 → yara_x-1.0.1}/lib/src/compiler/tests/testdata/errors/5.in +0 -0
  345. {yara_x-1.0.0 → yara_x-1.0.1}/lib/src/compiler/tests/testdata/errors/5.out +0 -0
  346. {yara_x-1.0.0 → yara_x-1.0.1}/lib/src/compiler/tests/testdata/errors/50.in +0 -0
  347. {yara_x-1.0.0 → yara_x-1.0.1}/lib/src/compiler/tests/testdata/errors/50.out +0 -0
  348. {yara_x-1.0.0 → yara_x-1.0.1}/lib/src/compiler/tests/testdata/errors/51.in +0 -0
  349. {yara_x-1.0.0 → yara_x-1.0.1}/lib/src/compiler/tests/testdata/errors/51.out +0 -0
  350. {yara_x-1.0.0 → yara_x-1.0.1}/lib/src/compiler/tests/testdata/errors/52.in +0 -0
  351. {yara_x-1.0.0 → yara_x-1.0.1}/lib/src/compiler/tests/testdata/errors/52.out +0 -0
  352. {yara_x-1.0.0 → yara_x-1.0.1}/lib/src/compiler/tests/testdata/errors/53.in +0 -0
  353. {yara_x-1.0.0 → yara_x-1.0.1}/lib/src/compiler/tests/testdata/errors/53.out +0 -0
  354. {yara_x-1.0.0 → yara_x-1.0.1}/lib/src/compiler/tests/testdata/errors/54.in +0 -0
  355. {yara_x-1.0.0 → yara_x-1.0.1}/lib/src/compiler/tests/testdata/errors/54.out +0 -0
  356. {yara_x-1.0.0 → yara_x-1.0.1}/lib/src/compiler/tests/testdata/errors/55.in +0 -0
  357. {yara_x-1.0.0 → yara_x-1.0.1}/lib/src/compiler/tests/testdata/errors/55.out +0 -0
  358. {yara_x-1.0.0 → yara_x-1.0.1}/lib/src/compiler/tests/testdata/errors/56.in +0 -0
  359. {yara_x-1.0.0 → yara_x-1.0.1}/lib/src/compiler/tests/testdata/errors/56.out +0 -0
  360. {yara_x-1.0.0 → yara_x-1.0.1}/lib/src/compiler/tests/testdata/errors/57.in +0 -0
  361. {yara_x-1.0.0 → yara_x-1.0.1}/lib/src/compiler/tests/testdata/errors/57.out +0 -0
  362. {yara_x-1.0.0 → yara_x-1.0.1}/lib/src/compiler/tests/testdata/errors/58.in +0 -0
  363. {yara_x-1.0.0 → yara_x-1.0.1}/lib/src/compiler/tests/testdata/errors/58.out +0 -0
  364. {yara_x-1.0.0 → yara_x-1.0.1}/lib/src/compiler/tests/testdata/errors/59.in +0 -0
  365. {yara_x-1.0.0 → yara_x-1.0.1}/lib/src/compiler/tests/testdata/errors/59.out +0 -0
  366. {yara_x-1.0.0 → yara_x-1.0.1}/lib/src/compiler/tests/testdata/errors/6.in +0 -0
  367. {yara_x-1.0.0 → yara_x-1.0.1}/lib/src/compiler/tests/testdata/errors/6.out +0 -0
  368. {yara_x-1.0.0 → yara_x-1.0.1}/lib/src/compiler/tests/testdata/errors/60.in +0 -0
  369. {yara_x-1.0.0 → yara_x-1.0.1}/lib/src/compiler/tests/testdata/errors/60.out +0 -0
  370. {yara_x-1.0.0 → yara_x-1.0.1}/lib/src/compiler/tests/testdata/errors/61.in +0 -0
  371. {yara_x-1.0.0 → yara_x-1.0.1}/lib/src/compiler/tests/testdata/errors/61.out +0 -0
  372. {yara_x-1.0.0 → yara_x-1.0.1}/lib/src/compiler/tests/testdata/errors/62.in +0 -0
  373. {yara_x-1.0.0 → yara_x-1.0.1}/lib/src/compiler/tests/testdata/errors/62.out +0 -0
  374. {yara_x-1.0.0 → yara_x-1.0.1}/lib/src/compiler/tests/testdata/errors/63.in +0 -0
  375. {yara_x-1.0.0 → yara_x-1.0.1}/lib/src/compiler/tests/testdata/errors/63.out +0 -0
  376. {yara_x-1.0.0 → yara_x-1.0.1}/lib/src/compiler/tests/testdata/errors/64.in +0 -0
  377. {yara_x-1.0.0 → yara_x-1.0.1}/lib/src/compiler/tests/testdata/errors/64.out +0 -0
  378. {yara_x-1.0.0 → yara_x-1.0.1}/lib/src/compiler/tests/testdata/errors/65.in +0 -0
  379. {yara_x-1.0.0 → yara_x-1.0.1}/lib/src/compiler/tests/testdata/errors/65.out +0 -0
  380. {yara_x-1.0.0 → yara_x-1.0.1}/lib/src/compiler/tests/testdata/errors/66.in +0 -0
  381. {yara_x-1.0.0 → yara_x-1.0.1}/lib/src/compiler/tests/testdata/errors/66.out +0 -0
  382. {yara_x-1.0.0 → yara_x-1.0.1}/lib/src/compiler/tests/testdata/errors/67.in +0 -0
  383. {yara_x-1.0.0 → yara_x-1.0.1}/lib/src/compiler/tests/testdata/errors/67.out +0 -0
  384. {yara_x-1.0.0 → yara_x-1.0.1}/lib/src/compiler/tests/testdata/errors/68.in +0 -0
  385. {yara_x-1.0.0 → yara_x-1.0.1}/lib/src/compiler/tests/testdata/errors/68.out +0 -0
  386. {yara_x-1.0.0 → yara_x-1.0.1}/lib/src/compiler/tests/testdata/errors/69.in +0 -0
  387. {yara_x-1.0.0 → yara_x-1.0.1}/lib/src/compiler/tests/testdata/errors/69.out +0 -0
  388. {yara_x-1.0.0 → yara_x-1.0.1}/lib/src/compiler/tests/testdata/errors/7.in +0 -0
  389. {yara_x-1.0.0 → yara_x-1.0.1}/lib/src/compiler/tests/testdata/errors/7.out +0 -0
  390. {yara_x-1.0.0 → yara_x-1.0.1}/lib/src/compiler/tests/testdata/errors/70.in +0 -0
  391. {yara_x-1.0.0 → yara_x-1.0.1}/lib/src/compiler/tests/testdata/errors/70.out +0 -0
  392. {yara_x-1.0.0 → yara_x-1.0.1}/lib/src/compiler/tests/testdata/errors/71.in +0 -0
  393. {yara_x-1.0.0 → yara_x-1.0.1}/lib/src/compiler/tests/testdata/errors/71.out +0 -0
  394. {yara_x-1.0.0 → yara_x-1.0.1}/lib/src/compiler/tests/testdata/errors/72.in +0 -0
  395. {yara_x-1.0.0 → yara_x-1.0.1}/lib/src/compiler/tests/testdata/errors/72.out +0 -0
  396. {yara_x-1.0.0 → yara_x-1.0.1}/lib/src/compiler/tests/testdata/errors/73.in +0 -0
  397. {yara_x-1.0.0 → yara_x-1.0.1}/lib/src/compiler/tests/testdata/errors/73.out +0 -0
  398. {yara_x-1.0.0 → yara_x-1.0.1}/lib/src/compiler/tests/testdata/errors/74.in +0 -0
  399. {yara_x-1.0.0 → yara_x-1.0.1}/lib/src/compiler/tests/testdata/errors/74.out +0 -0
  400. {yara_x-1.0.0 → yara_x-1.0.1}/lib/src/compiler/tests/testdata/errors/75.in +0 -0
  401. {yara_x-1.0.0 → yara_x-1.0.1}/lib/src/compiler/tests/testdata/errors/75.out +0 -0
  402. {yara_x-1.0.0 → yara_x-1.0.1}/lib/src/compiler/tests/testdata/errors/76.in +0 -0
  403. {yara_x-1.0.0 → yara_x-1.0.1}/lib/src/compiler/tests/testdata/errors/76.out +0 -0
  404. {yara_x-1.0.0 → yara_x-1.0.1}/lib/src/compiler/tests/testdata/errors/77.in +0 -0
  405. {yara_x-1.0.0 → yara_x-1.0.1}/lib/src/compiler/tests/testdata/errors/77.out +0 -0
  406. {yara_x-1.0.0 → yara_x-1.0.1}/lib/src/compiler/tests/testdata/errors/78.in +0 -0
  407. {yara_x-1.0.0 → yara_x-1.0.1}/lib/src/compiler/tests/testdata/errors/78.out +0 -0
  408. {yara_x-1.0.0 → yara_x-1.0.1}/lib/src/compiler/tests/testdata/errors/79.in +0 -0
  409. {yara_x-1.0.0 → yara_x-1.0.1}/lib/src/compiler/tests/testdata/errors/79.out +0 -0
  410. {yara_x-1.0.0 → yara_x-1.0.1}/lib/src/compiler/tests/testdata/errors/8.in +0 -0
  411. {yara_x-1.0.0 → yara_x-1.0.1}/lib/src/compiler/tests/testdata/errors/8.out +0 -0
  412. {yara_x-1.0.0 → yara_x-1.0.1}/lib/src/compiler/tests/testdata/errors/80.in +0 -0
  413. {yara_x-1.0.0 → yara_x-1.0.1}/lib/src/compiler/tests/testdata/errors/80.out +0 -0
  414. {yara_x-1.0.0 → yara_x-1.0.1}/lib/src/compiler/tests/testdata/errors/81.in +0 -0
  415. {yara_x-1.0.0 → yara_x-1.0.1}/lib/src/compiler/tests/testdata/errors/81.out +0 -0
  416. {yara_x-1.0.0 → yara_x-1.0.1}/lib/src/compiler/tests/testdata/errors/82.in +0 -0
  417. {yara_x-1.0.0 → yara_x-1.0.1}/lib/src/compiler/tests/testdata/errors/82.out +0 -0
  418. {yara_x-1.0.0 → yara_x-1.0.1}/lib/src/compiler/tests/testdata/errors/83.in +0 -0
  419. {yara_x-1.0.0 → yara_x-1.0.1}/lib/src/compiler/tests/testdata/errors/83.out +0 -0
  420. {yara_x-1.0.0 → yara_x-1.0.1}/lib/src/compiler/tests/testdata/errors/84.in +0 -0
  421. {yara_x-1.0.0 → yara_x-1.0.1}/lib/src/compiler/tests/testdata/errors/84.out +0 -0
  422. {yara_x-1.0.0 → yara_x-1.0.1}/lib/src/compiler/tests/testdata/errors/85.in +0 -0
  423. {yara_x-1.0.0 → yara_x-1.0.1}/lib/src/compiler/tests/testdata/errors/85.out +0 -0
  424. {yara_x-1.0.0 → yara_x-1.0.1}/lib/src/compiler/tests/testdata/errors/86.in +0 -0
  425. {yara_x-1.0.0 → yara_x-1.0.1}/lib/src/compiler/tests/testdata/errors/86.out +0 -0
  426. {yara_x-1.0.0 → yara_x-1.0.1}/lib/src/compiler/tests/testdata/errors/87.in +0 -0
  427. {yara_x-1.0.0 → yara_x-1.0.1}/lib/src/compiler/tests/testdata/errors/87.out +0 -0
  428. {yara_x-1.0.0 → yara_x-1.0.1}/lib/src/compiler/tests/testdata/errors/88.in +0 -0
  429. {yara_x-1.0.0 → yara_x-1.0.1}/lib/src/compiler/tests/testdata/errors/88.out +0 -0
  430. {yara_x-1.0.0 → yara_x-1.0.1}/lib/src/compiler/tests/testdata/errors/89.in +0 -0
  431. {yara_x-1.0.0 → yara_x-1.0.1}/lib/src/compiler/tests/testdata/errors/89.out +0 -0
  432. {yara_x-1.0.0 → yara_x-1.0.1}/lib/src/compiler/tests/testdata/errors/9.in +0 -0
  433. {yara_x-1.0.0 → yara_x-1.0.1}/lib/src/compiler/tests/testdata/errors/9.out +0 -0
  434. {yara_x-1.0.0 → yara_x-1.0.1}/lib/src/compiler/tests/testdata/errors/90.in +0 -0
  435. {yara_x-1.0.0 → yara_x-1.0.1}/lib/src/compiler/tests/testdata/errors/90.out +0 -0
  436. {yara_x-1.0.0 → yara_x-1.0.1}/lib/src/compiler/tests/testdata/errors/91.in +0 -0
  437. {yara_x-1.0.0 → yara_x-1.0.1}/lib/src/compiler/tests/testdata/errors/91.out +0 -0
  438. {yara_x-1.0.0 → yara_x-1.0.1}/lib/src/compiler/tests/testdata/errors/92.in +0 -0
  439. {yara_x-1.0.0 → yara_x-1.0.1}/lib/src/compiler/tests/testdata/errors/92.out +0 -0
  440. {yara_x-1.0.0 → yara_x-1.0.1}/lib/src/compiler/tests/testdata/errors/93.in +0 -0
  441. {yara_x-1.0.0 → yara_x-1.0.1}/lib/src/compiler/tests/testdata/errors/93.out +0 -0
  442. {yara_x-1.0.0 → yara_x-1.0.1}/lib/src/compiler/tests/testdata/errors/94.in +0 -0
  443. {yara_x-1.0.0 → yara_x-1.0.1}/lib/src/compiler/tests/testdata/errors/94.out +0 -0
  444. {yara_x-1.0.0 → yara_x-1.0.1}/lib/src/compiler/tests/testdata/errors/95.in +0 -0
  445. {yara_x-1.0.0 → yara_x-1.0.1}/lib/src/compiler/tests/testdata/errors/95.out +0 -0
  446. {yara_x-1.0.0 → yara_x-1.0.1}/lib/src/compiler/tests/testdata/errors/96.in +0 -0
  447. {yara_x-1.0.0 → yara_x-1.0.1}/lib/src/compiler/tests/testdata/errors/96.out +0 -0
  448. {yara_x-1.0.0 → yara_x-1.0.1}/lib/src/compiler/tests/testdata/errors/97.in +0 -0
  449. {yara_x-1.0.0 → yara_x-1.0.1}/lib/src/compiler/tests/testdata/errors/97.out +0 -0
  450. {yara_x-1.0.0 → yara_x-1.0.1}/lib/src/compiler/tests/testdata/errors/98.in +0 -0
  451. {yara_x-1.0.0 → yara_x-1.0.1}/lib/src/compiler/tests/testdata/errors/98.out +0 -0
  452. {yara_x-1.0.0 → yara_x-1.0.1}/lib/src/compiler/tests/testdata/errors/99.in +0 -0
  453. {yara_x-1.0.0 → yara_x-1.0.1}/lib/src/compiler/tests/testdata/errors/99.out +0 -0
  454. {yara_x-1.0.0 → yara_x-1.0.1}/lib/src/compiler/tests/testdata/includes/included_error.yar +0 -0
  455. {yara_x-1.0.0 → yara_x-1.0.1}/lib/src/compiler/tests/testdata/includes/included_ok.yar +0 -0
  456. {yara_x-1.0.0 → yara_x-1.0.1}/lib/src/compiler/tests/testdata/warnings/1.in +0 -0
  457. {yara_x-1.0.0 → yara_x-1.0.1}/lib/src/compiler/tests/testdata/warnings/1.out +0 -0
  458. {yara_x-1.0.0 → yara_x-1.0.1}/lib/src/compiler/tests/testdata/warnings/10.in +0 -0
  459. {yara_x-1.0.0 → yara_x-1.0.1}/lib/src/compiler/tests/testdata/warnings/10.out +0 -0
  460. {yara_x-1.0.0 → yara_x-1.0.1}/lib/src/compiler/tests/testdata/warnings/11.in +0 -0
  461. {yara_x-1.0.0 → yara_x-1.0.1}/lib/src/compiler/tests/testdata/warnings/11.out +0 -0
  462. {yara_x-1.0.0 → yara_x-1.0.1}/lib/src/compiler/tests/testdata/warnings/12.in +0 -0
  463. {yara_x-1.0.0 → yara_x-1.0.1}/lib/src/compiler/tests/testdata/warnings/12.out +0 -0
  464. {yara_x-1.0.0 → yara_x-1.0.1}/lib/src/compiler/tests/testdata/warnings/13.in +0 -0
  465. {yara_x-1.0.0 → yara_x-1.0.1}/lib/src/compiler/tests/testdata/warnings/13.out +0 -0
  466. {yara_x-1.0.0 → yara_x-1.0.1}/lib/src/compiler/tests/testdata/warnings/14.in +0 -0
  467. {yara_x-1.0.0 → yara_x-1.0.1}/lib/src/compiler/tests/testdata/warnings/14.out +0 -0
  468. {yara_x-1.0.0 → yara_x-1.0.1}/lib/src/compiler/tests/testdata/warnings/15.in +0 -0
  469. {yara_x-1.0.0 → yara_x-1.0.1}/lib/src/compiler/tests/testdata/warnings/15.out +0 -0
  470. {yara_x-1.0.0 → yara_x-1.0.1}/lib/src/compiler/tests/testdata/warnings/16.in +0 -0
  471. {yara_x-1.0.0 → yara_x-1.0.1}/lib/src/compiler/tests/testdata/warnings/16.out +0 -0
  472. {yara_x-1.0.0 → yara_x-1.0.1}/lib/src/compiler/tests/testdata/warnings/17.in +0 -0
  473. {yara_x-1.0.0 → yara_x-1.0.1}/lib/src/compiler/tests/testdata/warnings/17.out +0 -0
  474. {yara_x-1.0.0 → yara_x-1.0.1}/lib/src/compiler/tests/testdata/warnings/18.in +0 -0
  475. {yara_x-1.0.0 → yara_x-1.0.1}/lib/src/compiler/tests/testdata/warnings/18.out +0 -0
  476. {yara_x-1.0.0 → yara_x-1.0.1}/lib/src/compiler/tests/testdata/warnings/19.in +0 -0
  477. {yara_x-1.0.0 → yara_x-1.0.1}/lib/src/compiler/tests/testdata/warnings/19.out +0 -0
  478. {yara_x-1.0.0 → yara_x-1.0.1}/lib/src/compiler/tests/testdata/warnings/2.in +0 -0
  479. {yara_x-1.0.0 → yara_x-1.0.1}/lib/src/compiler/tests/testdata/warnings/2.out +0 -0
  480. {yara_x-1.0.0 → yara_x-1.0.1}/lib/src/compiler/tests/testdata/warnings/20.in +0 -0
  481. {yara_x-1.0.0 → yara_x-1.0.1}/lib/src/compiler/tests/testdata/warnings/20.out +0 -0
  482. {yara_x-1.0.0 → yara_x-1.0.1}/lib/src/compiler/tests/testdata/warnings/21.in +0 -0
  483. {yara_x-1.0.0 → yara_x-1.0.1}/lib/src/compiler/tests/testdata/warnings/21.out +0 -0
  484. {yara_x-1.0.0 → yara_x-1.0.1}/lib/src/compiler/tests/testdata/warnings/22.in +0 -0
  485. {yara_x-1.0.0 → yara_x-1.0.1}/lib/src/compiler/tests/testdata/warnings/22.out +0 -0
  486. {yara_x-1.0.0 → yara_x-1.0.1}/lib/src/compiler/tests/testdata/warnings/23.in +0 -0
  487. {yara_x-1.0.0 → yara_x-1.0.1}/lib/src/compiler/tests/testdata/warnings/23.out +0 -0
  488. {yara_x-1.0.0 → yara_x-1.0.1}/lib/src/compiler/tests/testdata/warnings/24.in +0 -0
  489. {yara_x-1.0.0 → yara_x-1.0.1}/lib/src/compiler/tests/testdata/warnings/24.out +0 -0
  490. {yara_x-1.0.0 → yara_x-1.0.1}/lib/src/compiler/tests/testdata/warnings/25.in +0 -0
  491. {yara_x-1.0.0 → yara_x-1.0.1}/lib/src/compiler/tests/testdata/warnings/25.out +0 -0
  492. {yara_x-1.0.0 → yara_x-1.0.1}/lib/src/compiler/tests/testdata/warnings/26.in +0 -0
  493. {yara_x-1.0.0 → yara_x-1.0.1}/lib/src/compiler/tests/testdata/warnings/26.out +0 -0
  494. {yara_x-1.0.0 → yara_x-1.0.1}/lib/src/compiler/tests/testdata/warnings/27.in +0 -0
  495. {yara_x-1.0.0 → yara_x-1.0.1}/lib/src/compiler/tests/testdata/warnings/27.out +0 -0
  496. {yara_x-1.0.0 → yara_x-1.0.1}/lib/src/compiler/tests/testdata/warnings/28.in +0 -0
  497. {yara_x-1.0.0 → yara_x-1.0.1}/lib/src/compiler/tests/testdata/warnings/28.out +0 -0
  498. {yara_x-1.0.0 → yara_x-1.0.1}/lib/src/compiler/tests/testdata/warnings/29.in +0 -0
  499. {yara_x-1.0.0 → yara_x-1.0.1}/lib/src/compiler/tests/testdata/warnings/29.out +0 -0
  500. {yara_x-1.0.0 → yara_x-1.0.1}/lib/src/compiler/tests/testdata/warnings/3.in +0 -0
  501. {yara_x-1.0.0 → yara_x-1.0.1}/lib/src/compiler/tests/testdata/warnings/3.out +0 -0
  502. {yara_x-1.0.0 → yara_x-1.0.1}/lib/src/compiler/tests/testdata/warnings/30.in +0 -0
  503. {yara_x-1.0.0 → yara_x-1.0.1}/lib/src/compiler/tests/testdata/warnings/30.out +0 -0
  504. {yara_x-1.0.0 → yara_x-1.0.1}/lib/src/compiler/tests/testdata/warnings/31.in +0 -0
  505. {yara_x-1.0.0 → yara_x-1.0.1}/lib/src/compiler/tests/testdata/warnings/31.out +0 -0
  506. {yara_x-1.0.0 → yara_x-1.0.1}/lib/src/compiler/tests/testdata/warnings/32.in +0 -0
  507. {yara_x-1.0.0 → yara_x-1.0.1}/lib/src/compiler/tests/testdata/warnings/32.out +0 -0
  508. {yara_x-1.0.0 → yara_x-1.0.1}/lib/src/compiler/tests/testdata/warnings/33.in +0 -0
  509. {yara_x-1.0.0 → yara_x-1.0.1}/lib/src/compiler/tests/testdata/warnings/33.out +0 -0
  510. {yara_x-1.0.0 → yara_x-1.0.1}/lib/src/compiler/tests/testdata/warnings/34.in +0 -0
  511. {yara_x-1.0.0 → yara_x-1.0.1}/lib/src/compiler/tests/testdata/warnings/34.out +0 -0
  512. {yara_x-1.0.0 → yara_x-1.0.1}/lib/src/compiler/tests/testdata/warnings/35.in +0 -0
  513. {yara_x-1.0.0 → yara_x-1.0.1}/lib/src/compiler/tests/testdata/warnings/35.out +0 -0
  514. {yara_x-1.0.0 → yara_x-1.0.1}/lib/src/compiler/tests/testdata/warnings/36.in +0 -0
  515. {yara_x-1.0.0 → yara_x-1.0.1}/lib/src/compiler/tests/testdata/warnings/36.out +0 -0
  516. {yara_x-1.0.0 → yara_x-1.0.1}/lib/src/compiler/tests/testdata/warnings/37.in +0 -0
  517. {yara_x-1.0.0 → yara_x-1.0.1}/lib/src/compiler/tests/testdata/warnings/37.out +0 -0
  518. {yara_x-1.0.0 → yara_x-1.0.1}/lib/src/compiler/tests/testdata/warnings/38.in +0 -0
  519. {yara_x-1.0.0 → yara_x-1.0.1}/lib/src/compiler/tests/testdata/warnings/38.out +0 -0
  520. {yara_x-1.0.0 → yara_x-1.0.1}/lib/src/compiler/tests/testdata/warnings/4.in +0 -0
  521. {yara_x-1.0.0 → yara_x-1.0.1}/lib/src/compiler/tests/testdata/warnings/4.out +0 -0
  522. {yara_x-1.0.0 → yara_x-1.0.1}/lib/src/compiler/tests/testdata/warnings/5.in +0 -0
  523. {yara_x-1.0.0 → yara_x-1.0.1}/lib/src/compiler/tests/testdata/warnings/5.out +0 -0
  524. {yara_x-1.0.0 → yara_x-1.0.1}/lib/src/compiler/tests/testdata/warnings/6.in +0 -0
  525. {yara_x-1.0.0 → yara_x-1.0.1}/lib/src/compiler/tests/testdata/warnings/6.out +0 -0
  526. {yara_x-1.0.0 → yara_x-1.0.1}/lib/src/compiler/tests/testdata/warnings/7.in +0 -0
  527. {yara_x-1.0.0 → yara_x-1.0.1}/lib/src/compiler/tests/testdata/warnings/7.out +0 -0
  528. {yara_x-1.0.0 → yara_x-1.0.1}/lib/src/compiler/tests/testdata/warnings/8.in +0 -0
  529. {yara_x-1.0.0 → yara_x-1.0.1}/lib/src/compiler/tests/testdata/warnings/8.out +0 -0
  530. {yara_x-1.0.0 → yara_x-1.0.1}/lib/src/compiler/tests/testdata/warnings/9.in +0 -0
  531. {yara_x-1.0.0 → yara_x-1.0.1}/lib/src/compiler/tests/testdata/warnings/9.out +0 -0
  532. {yara_x-1.0.0 → yara_x-1.0.1}/lib/src/compiler/tests/testdata/warnings/no_warnings.in +0 -0
  533. {yara_x-1.0.0 → yara_x-1.0.1}/lib/src/compiler/tests/testdata/warnings/no_warnings.out +0 -0
  534. {yara_x-1.0.0 → yara_x-1.0.1}/lib/src/compiler/warnings.rs +0 -0
  535. {yara_x-1.0.0 → yara_x-1.0.1}/lib/src/lib.rs +0 -0
  536. {yara_x-1.0.0 → yara_x-1.0.1}/lib/src/models.rs +0 -0
  537. {yara_x-1.0.0 → yara_x-1.0.1}/lib/src/modules/add_modules.rs +0 -0
  538. {yara_x-1.0.0 → yara_x-1.0.1}/lib/src/modules/console.rs +0 -0
  539. {yara_x-1.0.0 → yara_x-1.0.1}/lib/src/modules/cuckoo/mod.rs +0 -0
  540. {yara_x-1.0.0 → yara_x-1.0.1}/lib/src/modules/cuckoo/schema.rs +0 -0
  541. {yara_x-1.0.0 → yara_x-1.0.1}/lib/src/modules/cuckoo/tests/mod.rs +0 -0
  542. {yara_x-1.0.0 → yara_x-1.0.1}/lib/src/modules/cuckoo/tests/testdata/1.json +0 -0
  543. {yara_x-1.0.0 → yara_x-1.0.1}/lib/src/modules/cuckoo/tests/testdata/1.yar +0 -0
  544. {yara_x-1.0.0 → yara_x-1.0.1}/lib/src/modules/cuckoo/tests/testdata/2.json +0 -0
  545. {yara_x-1.0.0 → yara_x-1.0.1}/lib/src/modules/cuckoo/tests/testdata/2.yar +0 -0
  546. {yara_x-1.0.0 → yara_x-1.0.1}/lib/src/modules/dotnet/mod.rs +0 -0
  547. {yara_x-1.0.0 → yara_x-1.0.1}/lib/src/modules/dotnet/parser.rs +0 -0
  548. {yara_x-1.0.0 → yara_x-1.0.1}/lib/src/modules/dotnet/tests/testdata/605ebe5b5f4b94e1a73e0ad1162bd542e5cb948d1a4ea5a575a14d6b9d6ee849.in +0 -0
  549. {yara_x-1.0.0 → yara_x-1.0.1}/lib/src/modules/dotnet/tests/testdata/86a1e48cfc843eabfe1b468ef9358c1068950f849c612ab808225b359db0bb8c.in +0 -0
  550. {yara_x-1.0.0 → yara_x-1.0.1}/lib/src/modules/elf/mod.rs +0 -0
  551. {yara_x-1.0.0 → yara_x-1.0.1}/lib/src/modules/elf/parser.rs +0 -0
  552. {yara_x-1.0.0 → yara_x-1.0.1}/lib/src/modules/elf/tests/mod.rs +0 -0
  553. {yara_x-1.0.0 → yara_x-1.0.1}/lib/src/modules/hash/mod.rs +0 -0
  554. {yara_x-1.0.0 → yara_x-1.0.1}/lib/src/modules/hash/tests/mod.rs +0 -0
  555. {yara_x-1.0.0 → yara_x-1.0.1}/lib/src/modules/lnk/mod.rs +0 -0
  556. {yara_x-1.0.0 → yara_x-1.0.1}/lib/src/modules/lnk/parser.rs +0 -0
  557. {yara_x-1.0.0 → yara_x-1.0.1}/lib/src/modules/macho/mod.rs +0 -0
  558. {yara_x-1.0.0 → yara_x-1.0.1}/lib/src/modules/macho/parser.rs +0 -0
  559. {yara_x-1.0.0 → yara_x-1.0.1}/lib/src/modules/macho/tests/mod.rs +0 -0
  560. {yara_x-1.0.0 → yara_x-1.0.1}/lib/src/modules/magic/mod.rs +0 -0
  561. {yara_x-1.0.0 → yara_x-1.0.1}/lib/src/modules/magic/tests/mod.rs +0 -0
  562. {yara_x-1.0.0 → yara_x-1.0.1}/lib/src/modules/math.rs +0 -0
  563. {yara_x-1.0.0 → yara_x-1.0.1}/lib/src/modules/mod.rs +0 -0
  564. {yara_x-1.0.0 → yara_x-1.0.1}/lib/src/modules/modules.rs +0 -0
  565. {yara_x-1.0.0 → yara_x-1.0.1}/lib/src/modules/pe/authenticode.rs +0 -0
  566. {yara_x-1.0.0 → yara_x-1.0.1}/lib/src/modules/pe/mod.rs +0 -0
  567. {yara_x-1.0.0 → yara_x-1.0.1}/lib/src/modules/pe/parser.rs +0 -0
  568. {yara_x-1.0.0 → yara_x-1.0.1}/lib/src/modules/pe/rva2off.rs +0 -0
  569. {yara_x-1.0.0 → yara_x-1.0.1}/lib/src/modules/pe/tests/mod.rs +0 -0
  570. {yara_x-1.0.0 → yara_x-1.0.1}/lib/src/modules/protos/console.proto +0 -0
  571. {yara_x-1.0.0 → yara_x-1.0.1}/lib/src/modules/protos/cuckoo.proto +0 -0
  572. {yara_x-1.0.0 → yara_x-1.0.1}/lib/src/modules/protos/dotnet.proto +0 -0
  573. {yara_x-1.0.0 → yara_x-1.0.1}/lib/src/modules/protos/elf.proto +0 -0
  574. {yara_x-1.0.0 → yara_x-1.0.1}/lib/src/modules/protos/hash.proto +0 -0
  575. {yara_x-1.0.0 → yara_x-1.0.1}/lib/src/modules/protos/lnk.proto +0 -0
  576. {yara_x-1.0.0 → yara_x-1.0.1}/lib/src/modules/protos/macho.proto +0 -0
  577. {yara_x-1.0.0 → yara_x-1.0.1}/lib/src/modules/protos/magic.proto +0 -0
  578. {yara_x-1.0.0 → yara_x-1.0.1}/lib/src/modules/protos/math.proto +0 -0
  579. {yara_x-1.0.0 → yara_x-1.0.1}/lib/src/modules/protos/mods.proto +0 -0
  580. {yara_x-1.0.0 → yara_x-1.0.1}/lib/src/modules/protos/pe.proto +0 -0
  581. {yara_x-1.0.0 → yara_x-1.0.1}/lib/src/modules/protos/string.proto +0 -0
  582. {yara_x-1.0.0 → yara_x-1.0.1}/lib/src/modules/protos/test_proto2.proto +0 -0
  583. {yara_x-1.0.0 → yara_x-1.0.1}/lib/src/modules/protos/test_proto3.proto +0 -0
  584. {yara_x-1.0.0 → yara_x-1.0.1}/lib/src/modules/protos/text.proto +0 -0
  585. {yara_x-1.0.0 → yara_x-1.0.1}/lib/src/modules/protos/time.proto +0 -0
  586. {yara_x-1.0.0 → yara_x-1.0.1}/lib/src/modules/protos/vt/analysis.proto +0 -0
  587. {yara_x-1.0.0 → yara_x-1.0.1}/lib/src/modules/protos/vt/filetypes.proto +0 -0
  588. {yara_x-1.0.0 → yara_x-1.0.1}/lib/src/modules/protos/vt/gti_score.proto +0 -0
  589. {yara_x-1.0.0 → yara_x-1.0.1}/lib/src/modules/protos/vt/hunting_gti_score.proto +0 -0
  590. {yara_x-1.0.0 → yara_x-1.0.1}/lib/src/modules/protos/vt/sandbox.proto +0 -0
  591. {yara_x-1.0.0 → yara_x-1.0.1}/lib/src/modules/protos/vt/sigma.proto +0 -0
  592. {yara_x-1.0.0 → yara_x-1.0.1}/lib/src/modules/protos/vt/submitter.proto +0 -0
  593. {yara_x-1.0.0 → yara_x-1.0.1}/lib/src/modules/protos/vt/titan.proto +0 -0
  594. {yara_x-1.0.0 → yara_x-1.0.1}/lib/src/modules/protos/vt/tools/net_analysis.proto +0 -0
  595. {yara_x-1.0.0 → yara_x-1.0.1}/lib/src/modules/protos/vt/vtnet.proto +0 -0
  596. {yara_x-1.0.0/proto/src → yara_x-1.0.1/lib/src/modules/protos}/yara.proto +0 -0
  597. {yara_x-1.0.0 → yara_x-1.0.1}/lib/src/modules/string.rs +0 -0
  598. {yara_x-1.0.0 → yara_x-1.0.1}/lib/src/modules/test_proto2/mod.rs +0 -0
  599. {yara_x-1.0.0 → yara_x-1.0.1}/lib/src/modules/test_proto2/tests/mod.rs +0 -0
  600. {yara_x-1.0.0 → yara_x-1.0.1}/lib/src/modules/test_proto3/mod.rs +0 -0
  601. {yara_x-1.0.0 → yara_x-1.0.1}/lib/src/modules/tests.rs +0 -0
  602. {yara_x-1.0.0 → yara_x-1.0.1}/lib/src/modules/text.rs +0 -0
  603. {yara_x-1.0.0 → yara_x-1.0.1}/lib/src/modules/time.rs +0 -0
  604. {yara_x-1.0.0 → yara_x-1.0.1}/lib/src/modules/utils/asn1.rs +0 -0
  605. {yara_x-1.0.0 → yara_x-1.0.1}/lib/src/modules/utils/mod.rs +0 -0
  606. {yara_x-1.0.0 → yara_x-1.0.1}/lib/src/modules/vt/bitsquatting.rs +0 -0
  607. {yara_x-1.0.0 → yara_x-1.0.1}/lib/src/modules/vt/homoglyphs.rs +0 -0
  608. {yara_x-1.0.0 → yara_x-1.0.1}/lib/src/modules/vt/interleaved.rs +0 -0
  609. {yara_x-1.0.0 → yara_x-1.0.1}/lib/src/modules/vt/mod.rs +0 -0
  610. {yara_x-1.0.0 → yara_x-1.0.1}/lib/src/modules/vt/typos.rs +0 -0
  611. {yara_x-1.0.0 → yara_x-1.0.1}/lib/src/re/bitmapset.rs +0 -0
  612. {yara_x-1.0.0 → yara_x-1.0.1}/lib/src/re/fast/compiler.rs +0 -0
  613. {yara_x-1.0.0 → yara_x-1.0.1}/lib/src/re/fast/fastvm.rs +0 -0
  614. {yara_x-1.0.0 → yara_x-1.0.1}/lib/src/re/fast/instr.rs +0 -0
  615. {yara_x-1.0.0 → yara_x-1.0.1}/lib/src/re/fast/mod.rs +0 -0
  616. {yara_x-1.0.0 → yara_x-1.0.1}/lib/src/re/hir.rs +0 -0
  617. {yara_x-1.0.0 → yara_x-1.0.1}/lib/src/re/mod.rs +0 -0
  618. {yara_x-1.0.0 → yara_x-1.0.1}/lib/src/re/parser.rs +0 -0
  619. {yara_x-1.0.0 → yara_x-1.0.1}/lib/src/re/thompson/compiler.rs +0 -0
  620. {yara_x-1.0.0 → yara_x-1.0.1}/lib/src/re/thompson/instr.rs +0 -0
  621. {yara_x-1.0.0 → yara_x-1.0.1}/lib/src/re/thompson/mod.rs +0 -0
  622. {yara_x-1.0.0 → yara_x-1.0.1}/lib/src/re/thompson/pikevm.rs +0 -0
  623. {yara_x-1.0.0 → yara_x-1.0.1}/lib/src/re/thompson/tests.rs +0 -0
  624. {yara_x-1.0.0 → yara_x-1.0.1}/lib/src/scanner/context.rs +0 -0
  625. {yara_x-1.0.0 → yara_x-1.0.1}/lib/src/scanner/matches.rs +0 -0
  626. {yara_x-1.0.0 → yara_x-1.0.1}/lib/src/scanner/mod.rs +0 -0
  627. {yara_x-1.0.0 → yara_x-1.0.1}/lib/src/scanner/tests.rs +0 -0
  628. {yara_x-1.0.0 → yara_x-1.0.1}/lib/src/string_pool.rs +0 -0
  629. {yara_x-1.0.0 → yara_x-1.0.1}/lib/src/symbols/mod.rs +0 -0
  630. {yara_x-1.0.0 → yara_x-1.0.1}/lib/src/tests/mod.rs +0 -0
  631. {yara_x-1.0.0 → yara_x-1.0.1}/lib/src/tests/testdata/jumps.bin +0 -0
  632. {yara_x-1.0.0 → yara_x-1.0.1}/lib/src/types/array.rs +0 -0
  633. {yara_x-1.0.0 → yara_x-1.0.1}/lib/src/types/map.rs +0 -0
  634. {yara_x-1.0.0 → yara_x-1.0.1}/lib/src/types/mod.rs +0 -0
  635. {yara_x-1.0.0 → yara_x-1.0.1}/lib/src/types/structure.rs +0 -0
  636. {yara_x-1.0.0 → yara_x-1.0.1}/lib/src/variables.rs +0 -0
  637. {yara_x-1.0.0 → yara_x-1.0.1}/lib/src/wasm/builder.rs +0 -0
  638. {yara_x-1.0.0 → yara_x-1.0.1}/lib/src/wasm/mod.rs +0 -0
  639. {yara_x-1.0.0 → yara_x-1.0.1}/lib/src/wasm/string.rs +0 -0
  640. {yara_x-1.0.0 → yara_x-1.0.1}/macros/Cargo.lock +0 -0
  641. {yara_x-1.0.0 → yara_x-1.0.1}/macros/Cargo.toml +0 -0
  642. {yara_x-1.0.0 → yara_x-1.0.1}/macros/src/error.rs +0 -0
  643. {yara_x-1.0.0 → yara_x-1.0.1}/macros/src/lib.rs +0 -0
  644. {yara_x-1.0.0 → yara_x-1.0.1}/macros/src/module_export.rs +0 -0
  645. {yara_x-1.0.0 → yara_x-1.0.1}/macros/src/module_main.rs +0 -0
  646. {yara_x-1.0.0 → yara_x-1.0.1}/macros/src/wasm_export.rs +0 -0
  647. {yara_x-1.0.0 → yara_x-1.0.1}/parser/Cargo.toml +0 -0
  648. {yara_x-1.0.0 → yara_x-1.0.1}/parser/README.md +0 -0
  649. {yara_x-1.0.0 → yara_x-1.0.1}/parser/src/ast/ascii_tree.rs +0 -0
  650. {yara_x-1.0.0 → yara_x-1.0.1}/parser/src/ast/cst2ast.rs +0 -0
  651. {yara_x-1.0.0 → yara_x-1.0.1}/parser/src/ast/errors.rs +0 -0
  652. {yara_x-1.0.0 → yara_x-1.0.1}/parser/src/ast/mod.rs +0 -0
  653. {yara_x-1.0.0 → yara_x-1.0.1}/parser/src/cst/mod.rs +0 -0
  654. {yara_x-1.0.0 → yara_x-1.0.1}/parser/src/cst/syntax_kind.rs +0 -0
  655. {yara_x-1.0.0 → yara_x-1.0.1}/parser/src/cst/syntax_stream.rs +0 -0
  656. {yara_x-1.0.0 → yara_x-1.0.1}/parser/src/cst/tests.rs +0 -0
  657. {yara_x-1.0.0 → yara_x-1.0.1}/parser/src/lib.rs +0 -0
  658. {yara_x-1.0.0 → yara_x-1.0.1}/parser/src/parser/mod.rs +0 -0
  659. {yara_x-1.0.0 → yara_x-1.0.1}/parser/src/parser/tests/mod.rs +0 -0
  660. {yara_x-1.0.0 → yara_x-1.0.1}/parser/src/parser/tests/testdata/arithmetic-ops.ast +0 -0
  661. {yara_x-1.0.0 → yara_x-1.0.1}/parser/src/parser/tests/testdata/arithmetic-ops.cst +0 -0
  662. {yara_x-1.0.0 → yara_x-1.0.1}/parser/src/parser/tests/testdata/arithmetic-ops.in +0 -0
  663. {yara_x-1.0.0 → yara_x-1.0.1}/parser/src/parser/tests/testdata/basic-1.ast +0 -0
  664. {yara_x-1.0.0 → yara_x-1.0.1}/parser/src/parser/tests/testdata/basic-1.cst +0 -0
  665. {yara_x-1.0.0 → yara_x-1.0.1}/parser/src/parser/tests/testdata/basic-1.in +0 -0
  666. {yara_x-1.0.0 → yara_x-1.0.1}/parser/src/parser/tests/testdata/basic-2.ast +0 -0
  667. {yara_x-1.0.0 → yara_x-1.0.1}/parser/src/parser/tests/testdata/basic-2.cst +0 -0
  668. {yara_x-1.0.0 → yara_x-1.0.1}/parser/src/parser/tests/testdata/basic-2.in +0 -0
  669. {yara_x-1.0.0 → yara_x-1.0.1}/parser/src/parser/tests/testdata/basic-3.ast +0 -0
  670. {yara_x-1.0.0 → yara_x-1.0.1}/parser/src/parser/tests/testdata/basic-3.cst +0 -0
  671. {yara_x-1.0.0 → yara_x-1.0.1}/parser/src/parser/tests/testdata/basic-3.in +0 -0
  672. {yara_x-1.0.0 → yara_x-1.0.1}/parser/src/parser/tests/testdata/basic-4.ast +0 -0
  673. {yara_x-1.0.0 → yara_x-1.0.1}/parser/src/parser/tests/testdata/basic-4.cst +0 -0
  674. {yara_x-1.0.0 → yara_x-1.0.1}/parser/src/parser/tests/testdata/basic-4.in +0 -0
  675. {yara_x-1.0.0 → yara_x-1.0.1}/parser/src/parser/tests/testdata/basic-error-1.ast +0 -0
  676. {yara_x-1.0.0 → yara_x-1.0.1}/parser/src/parser/tests/testdata/basic-error-1.cst +0 -0
  677. {yara_x-1.0.0 → yara_x-1.0.1}/parser/src/parser/tests/testdata/basic-error-1.in +0 -0
  678. {yara_x-1.0.0 → yara_x-1.0.1}/parser/src/parser/tests/testdata/basic-error-2.ast +0 -0
  679. {yara_x-1.0.0 → yara_x-1.0.1}/parser/src/parser/tests/testdata/basic-error-2.cst +0 -0
  680. {yara_x-1.0.0 → yara_x-1.0.1}/parser/src/parser/tests/testdata/basic-error-2.in +0 -0
  681. {yara_x-1.0.0 → yara_x-1.0.1}/parser/src/parser/tests/testdata/basic-error-3.ast +0 -0
  682. {yara_x-1.0.0 → yara_x-1.0.1}/parser/src/parser/tests/testdata/basic-error-3.cst +0 -0
  683. {yara_x-1.0.0 → yara_x-1.0.1}/parser/src/parser/tests/testdata/basic-error-3.in +0 -0
  684. {yara_x-1.0.0 → yara_x-1.0.1}/parser/src/parser/tests/testdata/basic-error-4.ast +0 -0
  685. {yara_x-1.0.0 → yara_x-1.0.1}/parser/src/parser/tests/testdata/basic-error-4.cst +0 -0
  686. {yara_x-1.0.0 → yara_x-1.0.1}/parser/src/parser/tests/testdata/basic-error-4.in +0 -0
  687. {yara_x-1.0.0 → yara_x-1.0.1}/parser/src/parser/tests/testdata/basic-error-5.ast +0 -0
  688. {yara_x-1.0.0 → yara_x-1.0.1}/parser/src/parser/tests/testdata/basic-error-5.cst +0 -0
  689. {yara_x-1.0.0 → yara_x-1.0.1}/parser/src/parser/tests/testdata/basic-error-5.in +0 -0
  690. {yara_x-1.0.0 → yara_x-1.0.1}/parser/src/parser/tests/testdata/bitwise-ops-error-1.ast +0 -0
  691. {yara_x-1.0.0 → yara_x-1.0.1}/parser/src/parser/tests/testdata/bitwise-ops-error-1.cst +0 -0
  692. {yara_x-1.0.0 → yara_x-1.0.1}/parser/src/parser/tests/testdata/bitwise-ops-error-1.in +0 -0
  693. {yara_x-1.0.0 → yara_x-1.0.1}/parser/src/parser/tests/testdata/bitwise-ops.ast +0 -0
  694. {yara_x-1.0.0 → yara_x-1.0.1}/parser/src/parser/tests/testdata/bitwise-ops.cst +0 -0
  695. {yara_x-1.0.0 → yara_x-1.0.1}/parser/src/parser/tests/testdata/bitwise-ops.in +0 -0
  696. {yara_x-1.0.0 → yara_x-1.0.1}/parser/src/parser/tests/testdata/comments.ast +0 -0
  697. {yara_x-1.0.0 → yara_x-1.0.1}/parser/src/parser/tests/testdata/comments.cst +0 -0
  698. {yara_x-1.0.0 → yara_x-1.0.1}/parser/src/parser/tests/testdata/comments.in +0 -0
  699. {yara_x-1.0.0 → yara_x-1.0.1}/parser/src/parser/tests/testdata/expr-1.ast +0 -0
  700. {yara_x-1.0.0 → yara_x-1.0.1}/parser/src/parser/tests/testdata/expr-1.cst +0 -0
  701. {yara_x-1.0.0 → yara_x-1.0.1}/parser/src/parser/tests/testdata/expr-1.in +0 -0
  702. {yara_x-1.0.0 → yara_x-1.0.1}/parser/src/parser/tests/testdata/expr-2.ast +0 -0
  703. {yara_x-1.0.0 → yara_x-1.0.1}/parser/src/parser/tests/testdata/expr-2.cst +0 -0
  704. {yara_x-1.0.0 → yara_x-1.0.1}/parser/src/parser/tests/testdata/expr-2.in +0 -0
  705. {yara_x-1.0.0 → yara_x-1.0.1}/parser/src/parser/tests/testdata/expr-3.ast +0 -0
  706. {yara_x-1.0.0 → yara_x-1.0.1}/parser/src/parser/tests/testdata/expr-3.cst +0 -0
  707. {yara_x-1.0.0 → yara_x-1.0.1}/parser/src/parser/tests/testdata/expr-3.in +0 -0
  708. {yara_x-1.0.0 → yara_x-1.0.1}/parser/src/parser/tests/testdata/expr-4.ast +0 -0
  709. {yara_x-1.0.0 → yara_x-1.0.1}/parser/src/parser/tests/testdata/expr-4.cst +0 -0
  710. {yara_x-1.0.0 → yara_x-1.0.1}/parser/src/parser/tests/testdata/expr-4.in +0 -0
  711. {yara_x-1.0.0 → yara_x-1.0.1}/parser/src/parser/tests/testdata/expr-5.ast +0 -0
  712. {yara_x-1.0.0 → yara_x-1.0.1}/parser/src/parser/tests/testdata/expr-5.cst +0 -0
  713. {yara_x-1.0.0 → yara_x-1.0.1}/parser/src/parser/tests/testdata/expr-5.in +0 -0
  714. {yara_x-1.0.0 → yara_x-1.0.1}/parser/src/parser/tests/testdata/expr-6.ast +0 -0
  715. {yara_x-1.0.0 → yara_x-1.0.1}/parser/src/parser/tests/testdata/expr-6.cst +0 -0
  716. {yara_x-1.0.0 → yara_x-1.0.1}/parser/src/parser/tests/testdata/expr-6.in +0 -0
  717. {yara_x-1.0.0 → yara_x-1.0.1}/parser/src/parser/tests/testdata/expr-error-1.ast +0 -0
  718. {yara_x-1.0.0 → yara_x-1.0.1}/parser/src/parser/tests/testdata/expr-error-1.cst +0 -0
  719. {yara_x-1.0.0 → yara_x-1.0.1}/parser/src/parser/tests/testdata/expr-error-1.in +0 -0
  720. {yara_x-1.0.0 → yara_x-1.0.1}/parser/src/parser/tests/testdata/for-1.ast +0 -0
  721. {yara_x-1.0.0 → yara_x-1.0.1}/parser/src/parser/tests/testdata/for-1.cst +0 -0
  722. {yara_x-1.0.0 → yara_x-1.0.1}/parser/src/parser/tests/testdata/for-1.in +0 -0
  723. {yara_x-1.0.0 → yara_x-1.0.1}/parser/src/parser/tests/testdata/for-2.ast +0 -0
  724. {yara_x-1.0.0 → yara_x-1.0.1}/parser/src/parser/tests/testdata/for-2.cst +0 -0
  725. {yara_x-1.0.0 → yara_x-1.0.1}/parser/src/parser/tests/testdata/for-2.in +0 -0
  726. {yara_x-1.0.0 → yara_x-1.0.1}/parser/src/parser/tests/testdata/for-3.ast +0 -0
  727. {yara_x-1.0.0 → yara_x-1.0.1}/parser/src/parser/tests/testdata/for-3.cst +0 -0
  728. {yara_x-1.0.0 → yara_x-1.0.1}/parser/src/parser/tests/testdata/for-3.in +0 -0
  729. {yara_x-1.0.0 → yara_x-1.0.1}/parser/src/parser/tests/testdata/for-4.ast +0 -0
  730. {yara_x-1.0.0 → yara_x-1.0.1}/parser/src/parser/tests/testdata/for-4.cst +0 -0
  731. {yara_x-1.0.0 → yara_x-1.0.1}/parser/src/parser/tests/testdata/for-4.in +0 -0
  732. {yara_x-1.0.0 → yara_x-1.0.1}/parser/src/parser/tests/testdata/for-5.ast +0 -0
  733. {yara_x-1.0.0 → yara_x-1.0.1}/parser/src/parser/tests/testdata/for-5.cst +0 -0
  734. {yara_x-1.0.0 → yara_x-1.0.1}/parser/src/parser/tests/testdata/for-5.in +0 -0
  735. {yara_x-1.0.0 → yara_x-1.0.1}/parser/src/parser/tests/testdata/for-error-1.ast +0 -0
  736. {yara_x-1.0.0 → yara_x-1.0.1}/parser/src/parser/tests/testdata/for-error-1.cst +0 -0
  737. {yara_x-1.0.0 → yara_x-1.0.1}/parser/src/parser/tests/testdata/for-error-1.in +0 -0
  738. {yara_x-1.0.0 → yara_x-1.0.1}/parser/src/parser/tests/testdata/func-call.ast +0 -0
  739. {yara_x-1.0.0 → yara_x-1.0.1}/parser/src/parser/tests/testdata/func-call.cst +0 -0
  740. {yara_x-1.0.0 → yara_x-1.0.1}/parser/src/parser/tests/testdata/func-call.in +0 -0
  741. {yara_x-1.0.0 → yara_x-1.0.1}/parser/src/parser/tests/testdata/hex-patterns-1.ast +0 -0
  742. {yara_x-1.0.0 → yara_x-1.0.1}/parser/src/parser/tests/testdata/hex-patterns-1.cst +0 -0
  743. {yara_x-1.0.0 → yara_x-1.0.1}/parser/src/parser/tests/testdata/hex-patterns-1.in +0 -0
  744. {yara_x-1.0.0 → yara_x-1.0.1}/parser/src/parser/tests/testdata/hex-patterns-2.ast +0 -0
  745. {yara_x-1.0.0 → yara_x-1.0.1}/parser/src/parser/tests/testdata/hex-patterns-2.cst +0 -0
  746. {yara_x-1.0.0 → yara_x-1.0.1}/parser/src/parser/tests/testdata/hex-patterns-2.in +0 -0
  747. {yara_x-1.0.0 → yara_x-1.0.1}/parser/src/parser/tests/testdata/hex-patterns-3.ast +0 -0
  748. {yara_x-1.0.0 → yara_x-1.0.1}/parser/src/parser/tests/testdata/hex-patterns-3.cst +0 -0
  749. {yara_x-1.0.0 → yara_x-1.0.1}/parser/src/parser/tests/testdata/hex-patterns-3.in +0 -0
  750. {yara_x-1.0.0 → yara_x-1.0.1}/parser/src/parser/tests/testdata/hex-patterns-error-1.ast +0 -0
  751. {yara_x-1.0.0 → yara_x-1.0.1}/parser/src/parser/tests/testdata/hex-patterns-error-1.cst +0 -0
  752. {yara_x-1.0.0 → yara_x-1.0.1}/parser/src/parser/tests/testdata/hex-patterns-error-1.in +0 -0
  753. {yara_x-1.0.0 → yara_x-1.0.1}/parser/src/parser/tests/testdata/hex-patterns-error-2.ast +0 -0
  754. {yara_x-1.0.0 → yara_x-1.0.1}/parser/src/parser/tests/testdata/hex-patterns-error-2.cst +0 -0
  755. {yara_x-1.0.0 → yara_x-1.0.1}/parser/src/parser/tests/testdata/hex-patterns-error-2.in +0 -0
  756. {yara_x-1.0.0 → yara_x-1.0.1}/parser/src/parser/tests/testdata/import.ast +0 -0
  757. {yara_x-1.0.0 → yara_x-1.0.1}/parser/src/parser/tests/testdata/import.cst +0 -0
  758. {yara_x-1.0.0 → yara_x-1.0.1}/parser/src/parser/tests/testdata/import.in +0 -0
  759. {yara_x-1.0.0 → yara_x-1.0.1}/parser/src/parser/tests/testdata/include.ast +0 -0
  760. {yara_x-1.0.0 → yara_x-1.0.1}/parser/src/parser/tests/testdata/include.cst +0 -0
  761. {yara_x-1.0.0 → yara_x-1.0.1}/parser/src/parser/tests/testdata/include.in +0 -0
  762. {yara_x-1.0.0 → yara_x-1.0.1}/parser/src/parser/tests/testdata/meta-error-1.ast +0 -0
  763. {yara_x-1.0.0 → yara_x-1.0.1}/parser/src/parser/tests/testdata/meta-error-1.cst +0 -0
  764. {yara_x-1.0.0 → yara_x-1.0.1}/parser/src/parser/tests/testdata/meta-error-1.in +0 -0
  765. {yara_x-1.0.0 → yara_x-1.0.1}/parser/src/parser/tests/testdata/meta-error-2.ast +0 -0
  766. {yara_x-1.0.0 → yara_x-1.0.1}/parser/src/parser/tests/testdata/meta-error-2.cst +0 -0
  767. {yara_x-1.0.0 → yara_x-1.0.1}/parser/src/parser/tests/testdata/meta-error-2.in +0 -0
  768. {yara_x-1.0.0 → yara_x-1.0.1}/parser/src/parser/tests/testdata/meta-error-3.ast +0 -0
  769. {yara_x-1.0.0 → yara_x-1.0.1}/parser/src/parser/tests/testdata/meta-error-3.cst +0 -0
  770. {yara_x-1.0.0 → yara_x-1.0.1}/parser/src/parser/tests/testdata/meta-error-3.in +0 -0
  771. {yara_x-1.0.0 → yara_x-1.0.1}/parser/src/parser/tests/testdata/meta-error-4.ast +0 -0
  772. {yara_x-1.0.0 → yara_x-1.0.1}/parser/src/parser/tests/testdata/meta-error-4.cst +0 -0
  773. {yara_x-1.0.0 → yara_x-1.0.1}/parser/src/parser/tests/testdata/meta-error-4.in +0 -0
  774. {yara_x-1.0.0 → yara_x-1.0.1}/parser/src/parser/tests/testdata/meta-error-5.ast +0 -0
  775. {yara_x-1.0.0 → yara_x-1.0.1}/parser/src/parser/tests/testdata/meta-error-5.cst +0 -0
  776. {yara_x-1.0.0 → yara_x-1.0.1}/parser/src/parser/tests/testdata/meta-error-5.in +0 -0
  777. {yara_x-1.0.0 → yara_x-1.0.1}/parser/src/parser/tests/testdata/meta-error-6.ast +0 -0
  778. {yara_x-1.0.0 → yara_x-1.0.1}/parser/src/parser/tests/testdata/meta-error-6.cst +0 -0
  779. {yara_x-1.0.0 → yara_x-1.0.1}/parser/src/parser/tests/testdata/meta-error-6.in +0 -0
  780. {yara_x-1.0.0 → yara_x-1.0.1}/parser/src/parser/tests/testdata/meta.ast +0 -0
  781. {yara_x-1.0.0 → yara_x-1.0.1}/parser/src/parser/tests/testdata/meta.cst +0 -0
  782. {yara_x-1.0.0 → yara_x-1.0.1}/parser/src/parser/tests/testdata/meta.in +0 -0
  783. {yara_x-1.0.0 → yara_x-1.0.1}/parser/src/parser/tests/testdata/of-1.ast +0 -0
  784. {yara_x-1.0.0 → yara_x-1.0.1}/parser/src/parser/tests/testdata/of-1.cst +0 -0
  785. {yara_x-1.0.0 → yara_x-1.0.1}/parser/src/parser/tests/testdata/of-1.in +0 -0
  786. {yara_x-1.0.0 → yara_x-1.0.1}/parser/src/parser/tests/testdata/of-error-1.ast +0 -0
  787. {yara_x-1.0.0 → yara_x-1.0.1}/parser/src/parser/tests/testdata/of-error-1.cst +0 -0
  788. {yara_x-1.0.0 → yara_x-1.0.1}/parser/src/parser/tests/testdata/of-error-1.in +0 -0
  789. {yara_x-1.0.0 → yara_x-1.0.1}/parser/src/parser/tests/testdata/pattern-mods-1.ast +0 -0
  790. {yara_x-1.0.0 → yara_x-1.0.1}/parser/src/parser/tests/testdata/pattern-mods-1.cst +0 -0
  791. {yara_x-1.0.0 → yara_x-1.0.1}/parser/src/parser/tests/testdata/pattern-mods-1.in +0 -0
  792. {yara_x-1.0.0 → yara_x-1.0.1}/parser/src/parser/tests/testdata/pattern-mods-error-1.ast +0 -0
  793. {yara_x-1.0.0 → yara_x-1.0.1}/parser/src/parser/tests/testdata/pattern-mods-error-1.cst +0 -0
  794. {yara_x-1.0.0 → yara_x-1.0.1}/parser/src/parser/tests/testdata/pattern-mods-error-1.in +0 -0
  795. {yara_x-1.0.0 → yara_x-1.0.1}/parser/src/parser/tests/testdata/patterns-1.ast +0 -0
  796. {yara_x-1.0.0 → yara_x-1.0.1}/parser/src/parser/tests/testdata/patterns-1.cst +0 -0
  797. {yara_x-1.0.0 → yara_x-1.0.1}/parser/src/parser/tests/testdata/patterns-1.in +0 -0
  798. {yara_x-1.0.0 → yara_x-1.0.1}/parser/src/parser/tests/testdata/patterns-2.ast +0 -0
  799. {yara_x-1.0.0 → yara_x-1.0.1}/parser/src/parser/tests/testdata/patterns-2.cst +0 -0
  800. {yara_x-1.0.0 → yara_x-1.0.1}/parser/src/parser/tests/testdata/patterns-2.in +0 -0
  801. {yara_x-1.0.0 → yara_x-1.0.1}/parser/src/parser/tests/testdata/patterns-3.ast +0 -0
  802. {yara_x-1.0.0 → yara_x-1.0.1}/parser/src/parser/tests/testdata/patterns-3.cst +0 -0
  803. {yara_x-1.0.0 → yara_x-1.0.1}/parser/src/parser/tests/testdata/patterns-3.in +0 -0
  804. {yara_x-1.0.0 → yara_x-1.0.1}/parser/src/parser/tests/testdata/patterns-error-1.ast +0 -0
  805. {yara_x-1.0.0 → yara_x-1.0.1}/parser/src/parser/tests/testdata/patterns-error-1.cst +0 -0
  806. {yara_x-1.0.0 → yara_x-1.0.1}/parser/src/parser/tests/testdata/patterns-error-1.in +0 -0
  807. {yara_x-1.0.0 → yara_x-1.0.1}/parser/src/parser/tests/testdata/patterns-error-2.ast +0 -0
  808. {yara_x-1.0.0 → yara_x-1.0.1}/parser/src/parser/tests/testdata/patterns-error-2.cst +0 -0
  809. {yara_x-1.0.0 → yara_x-1.0.1}/parser/src/parser/tests/testdata/patterns-error-2.in +0 -0
  810. {yara_x-1.0.0 → yara_x-1.0.1}/parser/src/parser/tests/testdata/patterns-error-3.ast +0 -0
  811. {yara_x-1.0.0 → yara_x-1.0.1}/parser/src/parser/tests/testdata/patterns-error-3.cst +0 -0
  812. {yara_x-1.0.0 → yara_x-1.0.1}/parser/src/parser/tests/testdata/patterns-error-3.in +0 -0
  813. {yara_x-1.0.0 → yara_x-1.0.1}/parser/src/parser/tests/testdata/patterns-error-4.ast +0 -0
  814. {yara_x-1.0.0 → yara_x-1.0.1}/parser/src/parser/tests/testdata/patterns-error-4.cst +0 -0
  815. {yara_x-1.0.0 → yara_x-1.0.1}/parser/src/parser/tests/testdata/patterns-error-4.in +0 -0
  816. {yara_x-1.0.0 → yara_x-1.0.1}/parser/src/parser/tests/testdata/patterns-error-5.ast +0 -0
  817. {yara_x-1.0.0 → yara_x-1.0.1}/parser/src/parser/tests/testdata/patterns-error-5.cst +0 -0
  818. {yara_x-1.0.0 → yara_x-1.0.1}/parser/src/parser/tests/testdata/patterns-error-5.in +0 -0
  819. {yara_x-1.0.0 → yara_x-1.0.1}/parser/src/parser/tests/testdata/patterns-error-6.ast +0 -0
  820. {yara_x-1.0.0 → yara_x-1.0.1}/parser/src/parser/tests/testdata/patterns-error-6.cst +0 -0
  821. {yara_x-1.0.0 → yara_x-1.0.1}/parser/src/parser/tests/testdata/patterns-error-6.in +0 -0
  822. {yara_x-1.0.0 → yara_x-1.0.1}/parser/src/parser/tests/testdata/patterns-error-7.ast +0 -0
  823. {yara_x-1.0.0 → yara_x-1.0.1}/parser/src/parser/tests/testdata/patterns-error-7.cst +0 -0
  824. {yara_x-1.0.0 → yara_x-1.0.1}/parser/src/parser/tests/testdata/patterns-error-7.in +0 -0
  825. {yara_x-1.0.0 → yara_x-1.0.1}/parser/src/parser/tests/testdata/rule-mods-1.ast +0 -0
  826. {yara_x-1.0.0 → yara_x-1.0.1}/parser/src/parser/tests/testdata/rule-mods-1.cst +0 -0
  827. {yara_x-1.0.0 → yara_x-1.0.1}/parser/src/parser/tests/testdata/rule-mods-1.in +0 -0
  828. {yara_x-1.0.0 → yara_x-1.0.1}/parser/src/parser/tests/testdata/rule-tags-error-1.ast +0 -0
  829. {yara_x-1.0.0 → yara_x-1.0.1}/parser/src/parser/tests/testdata/rule-tags-error-1.cst +0 -0
  830. {yara_x-1.0.0 → yara_x-1.0.1}/parser/src/parser/tests/testdata/rule-tags-error-1.in +0 -0
  831. {yara_x-1.0.0 → yara_x-1.0.1}/parser/src/parser/tests/testdata/rule-tags-error-2.ast +0 -0
  832. {yara_x-1.0.0 → yara_x-1.0.1}/parser/src/parser/tests/testdata/rule-tags-error-2.cst +0 -0
  833. {yara_x-1.0.0 → yara_x-1.0.1}/parser/src/parser/tests/testdata/rule-tags-error-2.in +0 -0
  834. {yara_x-1.0.0 → yara_x-1.0.1}/parser/src/parser/tests/testdata/rule-tags-error-3.ast +0 -0
  835. {yara_x-1.0.0 → yara_x-1.0.1}/parser/src/parser/tests/testdata/rule-tags-error-3.cst +0 -0
  836. {yara_x-1.0.0 → yara_x-1.0.1}/parser/src/parser/tests/testdata/rule-tags-error-3.in +0 -0
  837. {yara_x-1.0.0 → yara_x-1.0.1}/parser/src/parser/tests/testdata/rule-tags.ast +0 -0
  838. {yara_x-1.0.0 → yara_x-1.0.1}/parser/src/parser/tests/testdata/rule-tags.cst +0 -0
  839. {yara_x-1.0.0 → yara_x-1.0.1}/parser/src/parser/tests/testdata/rule-tags.in +0 -0
  840. {yara_x-1.0.0 → yara_x-1.0.1}/parser/src/parser/tests/testdata/with-1.ast +0 -0
  841. {yara_x-1.0.0 → yara_x-1.0.1}/parser/src/parser/tests/testdata/with-1.cst +0 -0
  842. {yara_x-1.0.0 → yara_x-1.0.1}/parser/src/parser/tests/testdata/with-1.in +0 -0
  843. {yara_x-1.0.0 → yara_x-1.0.1}/parser/src/parser/tests/testdata/with-2.ast +0 -0
  844. {yara_x-1.0.0 → yara_x-1.0.1}/parser/src/parser/tests/testdata/with-2.cst +0 -0
  845. {yara_x-1.0.0 → yara_x-1.0.1}/parser/src/parser/tests/testdata/with-2.in +0 -0
  846. {yara_x-1.0.0 → yara_x-1.0.1}/parser/src/parser/tests/testdata/with-error-1.ast +0 -0
  847. {yara_x-1.0.0 → yara_x-1.0.1}/parser/src/parser/tests/testdata/with-error-1.cst +0 -0
  848. {yara_x-1.0.0 → yara_x-1.0.1}/parser/src/parser/tests/testdata/with-error-1.in +0 -0
  849. {yara_x-1.0.0 → yara_x-1.0.1}/parser/src/parser/tests/testdata/with-error-2.ast +0 -0
  850. {yara_x-1.0.0 → yara_x-1.0.1}/parser/src/parser/tests/testdata/with-error-2.cst +0 -0
  851. {yara_x-1.0.0 → yara_x-1.0.1}/parser/src/parser/tests/testdata/with-error-2.in +0 -0
  852. {yara_x-1.0.0 → yara_x-1.0.1}/parser/src/parser/tests/testdata/with-error-3.ast +0 -0
  853. {yara_x-1.0.0 → yara_x-1.0.1}/parser/src/parser/tests/testdata/with-error-3.cst +0 -0
  854. {yara_x-1.0.0 → yara_x-1.0.1}/parser/src/parser/tests/testdata/with-error-3.in +0 -0
  855. {yara_x-1.0.0 → yara_x-1.0.1}/parser/src/parser/token_stream.rs +0 -0
  856. {yara_x-1.0.0 → yara_x-1.0.1}/parser/src/tokenizer/mod.rs +0 -0
  857. {yara_x-1.0.0 → yara_x-1.0.1}/parser/src/tokenizer/tests.rs +0 -0
  858. {yara_x-1.0.0 → yara_x-1.0.1}/parser/src/tokenizer/tokens.rs +0 -0
  859. {yara_x-1.0.0 → yara_x-1.0.1}/proto/Cargo.lock +0 -0
  860. {yara_x-1.0.0 → yara_x-1.0.1}/proto/Cargo.toml +0 -0
  861. {yara_x-1.0.0 → yara_x-1.0.1}/proto/README.md +0 -0
  862. {yara_x-1.0.0 → yara_x-1.0.1}/proto/build.rs +0 -0
  863. {yara_x-1.0.0 → yara_x-1.0.1}/proto/src/lib.rs +0 -0
  864. {yara_x-1.0.0 → yara_x-1.0.1}/proto-json/Cargo.toml +0 -0
  865. {yara_x-1.0.0 → yara_x-1.0.1}/proto-json/README.md +0 -0
  866. {yara_x-1.0.0 → yara_x-1.0.1}/proto-json/src/tests/mod.rs +0 -0
  867. {yara_x-1.0.0 → yara_x-1.0.1}/proto-yaml/Cargo.toml +0 -0
  868. {yara_x-1.0.0 → yara_x-1.0.1}/proto-yaml/README.md +0 -0
  869. {yara_x-1.0.0 → yara_x-1.0.1}/proto-yaml/src/lib.rs +0 -0
  870. {yara_x-1.0.0 → yara_x-1.0.1}/proto-yaml/src/tests/mod.rs +0 -0
  871. {yara_x-1.0.0 → yara_x-1.0.1}/proto-yaml/src/tests/test.proto +0 -0
  872. {yara_x-1.0.0 → yara_x-1.0.1}/proto-yaml/src/tests/testdata/1.in +0 -0
  873. {yara_x-1.0.0 → yara_x-1.0.1}/proto-yaml/src/tests/testdata/1.out +0 -0
  874. {yara_x-1.0.0 → yara_x-1.0.1}/py/Cargo.toml +0 -0
  875. {yara_x-1.0.0 → yara_x-1.0.1}/py/README.md +0 -0
  876. {yara_x-1.0.0 → yara_x-1.0.1}/py/build.rs +0 -0
  877. {yara_x-1.0.0 → yara_x-1.0.1}/py/src/lib.rs +0 -0
  878. {yara_x-1.0.0 → yara_x-1.0.1}/py/tests/test_api.py +0 -0
  879. {yara_x-1.0.0 → yara_x-1.0.1}/py/yara_x.pyi +0 -0
  880. {yara_x-1.0.0 → yara_x-1.0.1}/pyproject.toml +0 -0
@@ -4682,7 +4682,7 @@ checksum = "cfe53a6657fd280eaa890a3bc59152892ffa3e30101319d168b781ed6529b049"
4682
4682
 
4683
4683
  [[package]]
4684
4684
  name = "yara-x"
4685
- version = "1.0.0"
4685
+ version = "1.0.1"
4686
4686
  dependencies = [
4687
4687
  "aho-corasick",
4688
4688
  "annotate-snippets",
@@ -4756,7 +4756,7 @@ dependencies = [
4756
4756
 
4757
4757
  [[package]]
4758
4758
  name = "yara-x-capi"
4759
- version = "1.0.0"
4759
+ version = "1.0.1"
4760
4760
  dependencies = [
4761
4761
  "cbindgen",
4762
4762
  "serde_json",
@@ -4765,7 +4765,7 @@ dependencies = [
4765
4765
 
4766
4766
  [[package]]
4767
4767
  name = "yara-x-cli"
4768
- version = "1.0.0"
4768
+ version = "1.0.1"
4769
4769
  dependencies = [
4770
4770
  "anyhow",
4771
4771
  "assert_cmd",
@@ -4790,6 +4790,7 @@ dependencies = [
4790
4790
  "strum",
4791
4791
  "strum_macros",
4792
4792
  "superconsole",
4793
+ "unicode-width",
4793
4794
  "wild",
4794
4795
  "yansi",
4795
4796
  "yara-x",
@@ -4801,7 +4802,7 @@ dependencies = [
4801
4802
 
4802
4803
  [[package]]
4803
4804
  name = "yara-x-fmt"
4804
- version = "1.0.0"
4805
+ version = "1.0.1"
4805
4806
  dependencies = [
4806
4807
  "bitflags 2.9.1",
4807
4808
  "bstr",
@@ -4815,7 +4816,7 @@ dependencies = [
4815
4816
 
4816
4817
  [[package]]
4817
4818
  name = "yara-x-macros"
4818
- version = "1.0.0"
4819
+ version = "1.0.1"
4819
4820
  dependencies = [
4820
4821
  "darling",
4821
4822
  "proc-macro2",
@@ -4825,7 +4826,7 @@ dependencies = [
4825
4826
 
4826
4827
  [[package]]
4827
4828
  name = "yara-x-parser"
4828
- version = "1.0.0"
4829
+ version = "1.0.1"
4829
4830
  dependencies = [
4830
4831
  "anyhow",
4831
4832
  "ascii_tree",
@@ -4849,7 +4850,7 @@ dependencies = [
4849
4850
 
4850
4851
  [[package]]
4851
4852
  name = "yara-x-proto"
4852
- version = "1.0.0"
4853
+ version = "1.0.1"
4853
4854
  dependencies = [
4854
4855
  "protobuf",
4855
4856
  "protobuf-codegen",
@@ -4858,7 +4859,7 @@ dependencies = [
4858
4859
 
4859
4860
  [[package]]
4860
4861
  name = "yara-x-proto-json"
4861
- version = "1.0.0"
4862
+ version = "1.0.1"
4862
4863
  dependencies = [
4863
4864
  "base64 0.22.1",
4864
4865
  "globwalk",
@@ -4872,7 +4873,7 @@ dependencies = [
4872
4873
 
4873
4874
  [[package]]
4874
4875
  name = "yara-x-proto-yaml"
4875
- version = "1.0.0"
4876
+ version = "1.0.1"
4876
4877
  dependencies = [
4877
4878
  "chrono",
4878
4879
  "globwalk",
@@ -4886,7 +4887,7 @@ dependencies = [
4886
4887
 
4887
4888
  [[package]]
4888
4889
  name = "yara-x-py"
4889
- version = "1.0.0"
4890
+ version = "1.0.1"
4890
4891
  dependencies = [
4891
4892
  "base64 0.22.1",
4892
4893
  "protobuf",
@@ -1,5 +1,5 @@
1
1
  [workspace.package]
2
- version = "1.0.0"
2
+ version = "1.0.1"
3
3
  authors = ["Victor M. Alvarez <vmalvarez@virustotal.com>"]
4
4
  edition = "2021"
5
5
  homepage = "https://virustotal.github.io/yara-x"
@@ -94,13 +94,13 @@ walrus = "0.23.3"
94
94
  wasmtime = { version = "33.0.0", default-features = false }
95
95
  x509-parser = "0.17.0"
96
96
  yansi = "1.0.1"
97
- yara-x = { path = "lib", version = "1.0.0" }
98
- yara-x-fmt = { path = "fmt", version = "1.0.0" }
99
- yara-x-macros = { path = "macros", version = "1.0.0" }
100
- yara-x-parser = { path = "parser", version = "1.0.0" }
101
- yara-x-proto = { path = "proto", version = "1.0.0" }
102
- yara-x-proto-yaml = { path = "proto-yaml", version = "1.0.0" }
103
- yara-x-proto-json = { path = "proto-json", version = "1.0.0" }
97
+ yara-x = { path = "lib", version = "1.0.1" }
98
+ yara-x-fmt = { path = "fmt", version = "1.0.1" }
99
+ yara-x-macros = { path = "macros", version = "1.0.1" }
100
+ yara-x-parser = { path = "parser", version = "1.0.1" }
101
+ yara-x-proto = { path = "proto", version = "1.0.1" }
102
+ yara-x-proto-yaml = { path = "proto-yaml", version = "1.0.1" }
103
+ yara-x-proto-json = { path = "proto-json", version = "1.0.1" }
104
104
  zip = "4.0.0"
105
105
 
106
106
  # Special profile that builds a release binary with link-time optimization.
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.3
2
2
  Name: yara-x
3
- Version: 1.0.0
3
+ Version: 1.0.1
4
4
  Classifier: Programming Language :: Rust
5
5
  Classifier: Programming Language :: Python :: Implementation :: CPython
6
6
  Classifier: Programming Language :: Python :: Implementation :: PyPy
@@ -157,16 +157,8 @@ fn main() {
157
157
  proto_parser.pure();
158
158
  }
159
159
 
160
- proto_compiler
161
- .cargo_out_dir("protos")
162
- .include("./src/modules/protos")
163
- .include("../proto/src")
164
- .input("../proto/src/yara.proto");
165
-
166
- proto_parser
167
- .include("./src/modules/protos")
168
- .include("../proto/src")
169
- .input("../proto/src/yara.proto");
160
+ proto_compiler.cargo_out_dir("protos").include("./src/modules/protos");
161
+ proto_parser.include("./src/modules/protos");
170
162
 
171
163
  // All `.proto` files in src/modules/protos must be compiled
172
164
  for entry in globwalk::glob("src/modules/protos/**").unwrap().flatten() {
@@ -526,21 +526,18 @@ impl<'a> Compiler<'a> {
526
526
  /// Adds some YARA source code to be compiled.
527
527
  ///
528
528
  /// The `src` parameter accepts any type that implements [`Into<SourceCode>`],
529
- /// such as `&str`, `&[u8]`, and naturally, [`SourceCode`] itself. This input
530
- /// can include one or more YARA rules.
529
+ /// such as `&str`, `&[u8]`, or an instance of [`SourceCode`] itself. The source
530
+ /// code may include one or more YARA rules.
531
531
  ///
532
- /// This function may be invoked multiple times to add several sets of YARA
533
- /// rules. If the rules provided in `src` contain errors that prevent
534
- /// compilation, the function will return the first error encountered.
535
- /// Additionally, the compiler will store this error, along with any others
536
- /// discovered during compilation, which can be accessed using
532
+ /// You can call this function multiple times to add different sets of rules.
533
+ /// If the provided source code contains syntax or semantic errors that prevent
534
+ /// compilation, the function returns the first encountered error. All errors
535
+ /// found during compilation are also recorded and can be retrieved using
537
536
  /// [`Compiler::errors`].
538
537
  ///
539
- /// Even if a previous invocation resulted in a compilation error, you can
540
- /// continue calling this function for adding more rules. In such cases, any
541
- /// rules that failed to compile will not be included in the final compiled
542
- /// set.
543
- /// about the source code's origin.
538
+ /// Even if previous calls to this function resulted in compilation errors,
539
+ /// you may continue adding additional rules. Only successfully compiled rules
540
+ /// will be included in the final rule set.
544
541
  pub fn add_source<'src, S>(
545
542
  &mut self,
546
543
  src: S,
@@ -608,15 +605,17 @@ impl<'a> Compiler<'a> {
608
605
 
609
606
  /// Defines a global variable and sets its initial value.
610
607
  ///
611
- /// Global variables must be defined before using [`Compiler::add_source`]
612
- /// for adding any YARA source code that uses those variables. The variable
613
- /// will retain its initial value when the compiled [`Rules`] are used for
614
- /// scanning data, however each scanner can change the variable's initial
615
- /// value by calling [`crate::Scanner::set_global`].
608
+ /// Global variables must be defined before adding any YARA source code
609
+ /// that references them via [`Compiler::add_source`]. Once defined, the
610
+ /// variable's initial value is preserved in the compiled [`Rules`] and
611
+ /// will be used unless overridden.
616
612
  ///
617
- /// `T` can be any type that implements [`TryInto<Variable>`], which
618
- /// includes: `i64`, `i32`, `i16`, `i8`, `u32`, `u16`, `u8`, `f64`, `f32`,
619
- /// `bool`, `&str`, `String` and [`serde_json::Value`].
613
+ /// When scanning, each scanner instance can modify the initial value of
614
+ /// the variable using [`crate::Scanner::set_global`].
615
+ ///
616
+ /// `T` can be any type that implements [`TryInto<Variable>`], including:
617
+ /// `i64`, `i32`, `i16`, `i8`, `u32`, `u16`, `u8`, `f64`, `f32`, `bool`,
618
+ /// `&str`, `String` and [`serde_json::Value`].
620
619
  ///
621
620
  /// ```
622
621
  /// # use yara_x::Compiler;
@@ -964,8 +963,6 @@ impl<'a> Compiler<'a> {
964
963
  /// include the content of other files. When includes are disabled, any
965
964
  /// attempt to use an `include` statement will result in a compile error.
966
965
  ///
967
- /// # Example
968
- ///
969
966
  /// ```
970
967
  /// # use yara_x::Compiler;
971
968
  /// let mut compiler = Compiler::new();
@@ -1,6 +1,6 @@
1
1
  use crate::types::{StringConstraint, TypeValue};
2
2
  use itertools::Itertools;
3
- use nom::AsChar;
3
+
4
4
  use serde::{Deserialize, Serialize};
5
5
  use std::cmp::Ordering;
6
6
  use std::hash::{Hash, Hasher};
@@ -127,7 +127,7 @@ impl MangledFnName {
127
127
  Some('N') => {
128
128
  let n = chars
129
129
  .by_ref()
130
- .peeking_take_while(|&c| c.is_dec_digit())
130
+ .peeking_take_while(|&c| c.is_ascii_digit())
131
131
  .collect::<String>()
132
132
  .parse::<usize>()
133
133
  .unwrap_or_else(|_| {
@@ -0,0 +1,169 @@
1
+ // Protocol buffer that specifies the options that can be used in other protos
2
+ // for controlling the generation of YARA modules.
3
+
4
+ syntax = "proto2";
5
+
6
+ package yara;
7
+
8
+ import "google/protobuf/descriptor.proto";
9
+
10
+ message ModuleOptions {
11
+ required string name = 1;
12
+ required string root_message = 2;
13
+ optional string rust_module = 3;
14
+ optional string cargo_feature = 4;
15
+ }
16
+
17
+ message FieldOptions {
18
+ // Name of the field in YARA rules.
19
+ //
20
+ // By default, the name of the field in YARA rules is the same it has in
21
+ // the protobuf, but sometimes it's useful to override this behaviour and
22
+ // specify our own name. For instance, suppose we have the following field
23
+ // definition:
24
+ //
25
+ // FileMetadata metadata = 32 [(yara.field_options).name = "meta"];
26
+ //
27
+ // The name of the field in the protobuf is "metadata", but this is a
28
+ // reserved keyword in YARA, so we use (yara.field_options).name = "meta"
29
+ // for specifying a different name.
30
+ optional string name = 1;
31
+
32
+ // Ignore the field and don't use it in YARA.
33
+ //
34
+ // This useful when the protobuf definition has some fields that we don't
35
+ // want to expose to YARA rules. For example:
36
+ //
37
+ // string some_private_data = 32 [(yara.field_options).ignore = true];
38
+ optional bool ignore = 2;
39
+
40
+ // Control under which circumstances the field is accessible by YARA rules.
41
+ //
42
+ // In some cases, a field should only be used in YARA rules when certain
43
+ // requirements are satisfied. Consider the following field definition:
44
+ //
45
+ // uint64 my_field = 1 [
46
+ // (yara.field_options) = {
47
+ // acl: [
48
+ // {
49
+ // accept_if: ["foo", "FOO"],
50
+ // error_title: "foo is required",
51
+ // error_label: "this field was used without foo"
52
+ // },
53
+ // {
54
+ // accept_if: "bar",
55
+ // error_title: "bar is required",
56
+ // error_label: "this field was used without bar"
57
+ // },
58
+ // {
59
+ // reject_if: "baz",
60
+ // error_title: "baz is forbidden",
61
+ // error_label: "this field was used with baz"
62
+ // }
63
+ // ]
64
+ // }
65
+ // ];
66
+ //
67
+ // The field "my_field" can be used in YARA rules, but only if the features
68
+ // "foo" (or "FOO") and "bar" are enabled in the YARA compiler, while "baz"
69
+ // must not be enabled. If these conditions are not met, the compiler will
70
+ // return an error. For example, if "FOO" and "baz" are enabled, the following
71
+ // error will occur:
72
+ //
73
+ // error[E034]: bar is required
74
+ // --> line:5:29
75
+ // |
76
+ // 5 | my_module.my_field == 0
77
+ // | ^^^^^^^^ this field was used without bar
78
+ // |
79
+ //
80
+ // Notice that the error message's title and label are derived from the ACL
81
+ // entry that was not satisfied.
82
+ //
83
+ // Also, keep in mind that ACL entries are evaluated sequentially. The first
84
+ // entry that fails will trigger the corresponding error message.
85
+ repeated AclEntry acl = 3;
86
+
87
+ // Indicates that a string field is always lowercase.
88
+ //
89
+ // This option can be used only with fields of type string. If used with some
90
+ // other type YARA will panic.
91
+ //
92
+ // string some_lowercase_string = 32 [(yara.field_options).lowercase = true];
93
+ optional bool lowercase = 4;
94
+
95
+ // Specifies the format of the field when converted to a string.
96
+ //
97
+ // This option can be used with integer, float, and boolean fields. It uses
98
+ // Rust's formatting syntax. For example, if an integer field has `fmt = "{:#x}"`
99
+ // it will be formatted as a hexadecimal string with a "0x" prefix.
100
+ optional string fmt = 5;
101
+ }
102
+
103
+ // An entry in a field's ACL.
104
+ //
105
+ // Each entry in the ACL is a condition that must be met. If some of the
106
+ // conditions in the ACL is not met, the compiler shows an error message that
107
+ // is defined by the ACL entry itself.
108
+ //
109
+ // The condition depends on the features listed in "accept_if" and "reject_if".
110
+ // Let's see some examples:
111
+ //
112
+ // accept_if: "foo"
113
+ //
114
+ // In the example above, the field can be used if the feature "foo" is enabled,
115
+ // otherwise the compiler shows an error.
116
+ //
117
+ // accept_if: ["foo", "bar"]
118
+ //
119
+ // In the example above, the field can be used if any of the features in the
120
+ // list is enabled, otherwise the error is shown. This can be read as: accept
121
+ // if "foo" or "bar".
122
+ //
123
+ // reject_if: ["foo", "bar"]
124
+ //
125
+ // In the example above, the field can be used if none of the features in the
126
+ // list is enabled, otherwise the error is shown. This can be read as: reject
127
+ // if "foo" or "bar".
128
+ message AclEntry {
129
+ required string error_title = 1;
130
+ required string error_label = 2;
131
+ repeated string accept_if = 3;
132
+ repeated string reject_if = 4;
133
+ }
134
+
135
+ message MessageOptions {
136
+ optional string name = 1;
137
+ }
138
+
139
+ message EnumOptions {
140
+ optional string name = 1;
141
+ optional bool inline = 2;
142
+ }
143
+
144
+ message EnumValueOptions {
145
+ oneof value {
146
+ int64 i64 = 1;
147
+ double f64 = 2;
148
+ }
149
+ }
150
+
151
+ extend google.protobuf.FileOptions {
152
+ optional ModuleOptions module_options = 51503;
153
+ }
154
+
155
+ extend google.protobuf.FieldOptions {
156
+ optional FieldOptions field_options = 51504;
157
+ }
158
+
159
+ extend google.protobuf.MessageOptions {
160
+ optional MessageOptions message_options = 51505;
161
+ }
162
+
163
+ extend google.protobuf.EnumOptions {
164
+ optional EnumOptions enum_options = 51506;
165
+ }
166
+
167
+ extend google.protobuf.EnumValueOptions {
168
+ optional EnumValueOptions enum_value = 51507;
169
+ }
@@ -5,10 +5,9 @@ fn main() {
5
5
  Codegen::new()
6
6
  .pure()
7
7
  .cargo_out_dir("protos")
8
- .include("../proto/src")
9
8
  .include("src/tests")
10
9
  .include("src")
11
10
  .input("src/tests/test.proto")
12
- .input("../proto/src/yara.proto")
11
+ .input("src/yara.proto")
13
12
  .run_from_script();
14
13
  }
@@ -253,7 +253,7 @@ impl<W: Write> Serializer<W> {
253
253
  BASE64_STANDARD.encode(v).paint(self.colors.string)
254
254
  )?,
255
255
  ReflectValueRef::Enum(d, v) => match d.value_by_number(*v) {
256
- Some(e) => write!(self.output, "{}", e.name())?,
256
+ Some(e) => write!(self.output, "\"{}\"", e.name())?,
257
257
  None => write!(self.output, "{}", v)?,
258
258
  },
259
259
  ReflectValueRef::Message(msg) => self.write_msg(msg)?,
@@ -20,4 +20,19 @@ message Message {
20
20
  repeated SubMessage repeated_msg = 8;
21
21
  optional SubMessage nested_msg = 9;
22
22
  optional int32 timestamp= 10 [(yara.field_options).fmt = "t"];
23
+ optional Enum enum = 11;
24
+ required uint32 flags = 12 [(yara.field_options).fmt = "flags:Flags"];
25
+
26
+ }
27
+
28
+ enum Enum {
29
+ Foo = 1;
30
+ Bar = 2;
23
31
  }
32
+
33
+ enum Flags {
34
+ option (yara.enum_options).inline = true;
35
+ FOO = 0x1;
36
+ BAR = 0x2;
37
+ BAZ = 0x4;
38
+ }
@@ -4,6 +4,8 @@ str: "foo"
4
4
  bool: true
5
5
  bytes: "\xCA\xFE"
6
6
  timestamp: 0
7
+ enum: Foo
8
+ flags: 3
7
9
  repeated_msg {
8
10
  i32: 456
9
11
  str: "bar\nbar"
@@ -25,5 +25,7 @@
25
25
  "foo": "bar"
26
26
  }
27
27
  },
28
- "timestamp": { "encoding": "timestamp", "value": 0 }
28
+ "timestamp": { "encoding": "timestamp", "value": 0 },
29
+ "enum": "Foo",
30
+ "flags": 3
29
31
  }
@@ -0,0 +1,169 @@
1
+ // Protocol buffer that specifies the options that can be used in other protos
2
+ // for controlling the generation of YARA modules.
3
+
4
+ syntax = "proto2";
5
+
6
+ package yara;
7
+
8
+ import "google/protobuf/descriptor.proto";
9
+
10
+ message ModuleOptions {
11
+ required string name = 1;
12
+ required string root_message = 2;
13
+ optional string rust_module = 3;
14
+ optional string cargo_feature = 4;
15
+ }
16
+
17
+ message FieldOptions {
18
+ // Name of the field in YARA rules.
19
+ //
20
+ // By default, the name of the field in YARA rules is the same it has in
21
+ // the protobuf, but sometimes it's useful to override this behaviour and
22
+ // specify our own name. For instance, suppose we have the following field
23
+ // definition:
24
+ //
25
+ // FileMetadata metadata = 32 [(yara.field_options).name = "meta"];
26
+ //
27
+ // The name of the field in the protobuf is "metadata", but this is a
28
+ // reserved keyword in YARA, so we use (yara.field_options).name = "meta"
29
+ // for specifying a different name.
30
+ optional string name = 1;
31
+
32
+ // Ignore the field and don't use it in YARA.
33
+ //
34
+ // This useful when the protobuf definition has some fields that we don't
35
+ // want to expose to YARA rules. For example:
36
+ //
37
+ // string some_private_data = 32 [(yara.field_options).ignore = true];
38
+ optional bool ignore = 2;
39
+
40
+ // Control under which circumstances the field is accessible by YARA rules.
41
+ //
42
+ // In some cases, a field should only be used in YARA rules when certain
43
+ // requirements are satisfied. Consider the following field definition:
44
+ //
45
+ // uint64 my_field = 1 [
46
+ // (yara.field_options) = {
47
+ // acl: [
48
+ // {
49
+ // accept_if: ["foo", "FOO"],
50
+ // error_title: "foo is required",
51
+ // error_label: "this field was used without foo"
52
+ // },
53
+ // {
54
+ // accept_if: "bar",
55
+ // error_title: "bar is required",
56
+ // error_label: "this field was used without bar"
57
+ // },
58
+ // {
59
+ // reject_if: "baz",
60
+ // error_title: "baz is forbidden",
61
+ // error_label: "this field was used with baz"
62
+ // }
63
+ // ]
64
+ // }
65
+ // ];
66
+ //
67
+ // The field "my_field" can be used in YARA rules, but only if the features
68
+ // "foo" (or "FOO") and "bar" are enabled in the YARA compiler, while "baz"
69
+ // must not be enabled. If these conditions are not met, the compiler will
70
+ // return an error. For example, if "FOO" and "baz" are enabled, the following
71
+ // error will occur:
72
+ //
73
+ // error[E034]: bar is required
74
+ // --> line:5:29
75
+ // |
76
+ // 5 | my_module.my_field == 0
77
+ // | ^^^^^^^^ this field was used without bar
78
+ // |
79
+ //
80
+ // Notice that the error message's title and label are derived from the ACL
81
+ // entry that was not satisfied.
82
+ //
83
+ // Also, keep in mind that ACL entries are evaluated sequentially. The first
84
+ // entry that fails will trigger the corresponding error message.
85
+ repeated AclEntry acl = 3;
86
+
87
+ // Indicates that a string field is always lowercase.
88
+ //
89
+ // This option can be used only with fields of type string. If used with some
90
+ // other type YARA will panic.
91
+ //
92
+ // string some_lowercase_string = 32 [(yara.field_options).lowercase = true];
93
+ optional bool lowercase = 4;
94
+
95
+ // Specifies the format of the field when converted to a string.
96
+ //
97
+ // This option can be used with integer, float, and boolean fields. It uses
98
+ // Rust's formatting syntax. For example, if an integer field has `fmt = "{:#x}"`
99
+ // it will be formatted as a hexadecimal string with a "0x" prefix.
100
+ optional string fmt = 5;
101
+ }
102
+
103
+ // An entry in a field's ACL.
104
+ //
105
+ // Each entry in the ACL is a condition that must be met. If some of the
106
+ // conditions in the ACL is not met, the compiler shows an error message that
107
+ // is defined by the ACL entry itself.
108
+ //
109
+ // The condition depends on the features listed in "accept_if" and "reject_if".
110
+ // Let's see some examples:
111
+ //
112
+ // accept_if: "foo"
113
+ //
114
+ // In the example above, the field can be used if the feature "foo" is enabled,
115
+ // otherwise the compiler shows an error.
116
+ //
117
+ // accept_if: ["foo", "bar"]
118
+ //
119
+ // In the example above, the field can be used if any of the features in the
120
+ // list is enabled, otherwise the error is shown. This can be read as: accept
121
+ // if "foo" or "bar".
122
+ //
123
+ // reject_if: ["foo", "bar"]
124
+ //
125
+ // In the example above, the field can be used if none of the features in the
126
+ // list is enabled, otherwise the error is shown. This can be read as: reject
127
+ // if "foo" or "bar".
128
+ message AclEntry {
129
+ required string error_title = 1;
130
+ required string error_label = 2;
131
+ repeated string accept_if = 3;
132
+ repeated string reject_if = 4;
133
+ }
134
+
135
+ message MessageOptions {
136
+ optional string name = 1;
137
+ }
138
+
139
+ message EnumOptions {
140
+ optional string name = 1;
141
+ optional bool inline = 2;
142
+ }
143
+
144
+ message EnumValueOptions {
145
+ oneof value {
146
+ int64 i64 = 1;
147
+ double f64 = 2;
148
+ }
149
+ }
150
+
151
+ extend google.protobuf.FileOptions {
152
+ optional ModuleOptions module_options = 51503;
153
+ }
154
+
155
+ extend google.protobuf.FieldOptions {
156
+ optional FieldOptions field_options = 51504;
157
+ }
158
+
159
+ extend google.protobuf.MessageOptions {
160
+ optional MessageOptions message_options = 51505;
161
+ }
162
+
163
+ extend google.protobuf.EnumOptions {
164
+ optional EnumOptions enum_options = 51506;
165
+ }
166
+
167
+ extend google.protobuf.EnumValueOptions {
168
+ optional EnumValueOptions enum_value = 51507;
169
+ }
@@ -5,10 +5,9 @@ fn main() {
5
5
  Codegen::new()
6
6
  .pure()
7
7
  .cargo_out_dir("protos")
8
- .include("../proto/src")
9
8
  .include("src/tests")
10
9
  .include("src")
11
10
  .input("src/tests/test.proto")
12
- .input("../proto/src/yara.proto")
11
+ .input("src/yara.proto")
13
12
  .run_from_script();
14
13
  }