yara-x 0.11.0__tar.gz → 0.11.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 (731) hide show
  1. {yara_x-0.11.0 → yara_x-0.11.1}/Cargo.lock +13 -13
  2. {yara_x-0.11.0 → yara_x-0.11.1}/Cargo.toml +8 -8
  3. {yara_x-0.11.0 → yara_x-0.11.1}/PKG-INFO +2 -2
  4. yara_x-0.11.1/lib/src/modules/cuckoo/mod.rs +249 -0
  5. yara_x-0.11.1/lib/src/modules/cuckoo/schema.rs +166 -0
  6. {yara_x-0.11.0 → yara_x-0.11.1}/lib/src/modules/pe/parser.rs +7 -4
  7. {yara_x-0.11.0 → yara_x-0.11.1}/pyproject.toml +2 -2
  8. yara_x-0.11.0/lib/src/modules/cuckoo/mod.rs +0 -312
  9. {yara_x-0.11.0 → yara_x-0.11.1}/README.md +0 -0
  10. {yara_x-0.11.0 → yara_x-0.11.1}/lib/Cargo.toml +0 -0
  11. {yara_x-0.11.0 → yara_x-0.11.1}/lib/README.md +0 -0
  12. {yara_x-0.11.0 → yara_x-0.11.1}/lib/build.rs +0 -0
  13. {yara_x-0.11.0 → yara_x-0.11.1}/lib/src/compiler/atoms/mask.rs +0 -0
  14. {yara_x-0.11.0 → yara_x-0.11.1}/lib/src/compiler/atoms/mod.rs +0 -0
  15. {yara_x-0.11.0 → yara_x-0.11.1}/lib/src/compiler/atoms/quality.rs +0 -0
  16. {yara_x-0.11.0 → yara_x-0.11.1}/lib/src/compiler/base64.rs +0 -0
  17. {yara_x-0.11.0 → yara_x-0.11.1}/lib/src/compiler/context.rs +0 -0
  18. {yara_x-0.11.0 → yara_x-0.11.1}/lib/src/compiler/emit.rs +0 -0
  19. {yara_x-0.11.0 → yara_x-0.11.1}/lib/src/compiler/errors.rs +0 -0
  20. {yara_x-0.11.0 → yara_x-0.11.1}/lib/src/compiler/ir/ast2ir.rs +0 -0
  21. {yara_x-0.11.0 → yara_x-0.11.1}/lib/src/compiler/ir/dfs.rs +0 -0
  22. {yara_x-0.11.0 → yara_x-0.11.1}/lib/src/compiler/ir/hex2hir.rs +0 -0
  23. {yara_x-0.11.0 → yara_x-0.11.1}/lib/src/compiler/ir/mod.rs +0 -0
  24. {yara_x-0.11.0 → yara_x-0.11.1}/lib/src/compiler/ir/tests/mod.rs +0 -0
  25. {yara_x-0.11.0 → yara_x-0.11.1}/lib/src/compiler/ir/tests/testdata/1.cse.ir +0 -0
  26. {yara_x-0.11.0 → yara_x-0.11.1}/lib/src/compiler/ir/tests/testdata/1.hoisting.ir +0 -0
  27. {yara_x-0.11.0 → yara_x-0.11.1}/lib/src/compiler/ir/tests/testdata/1.in +0 -0
  28. {yara_x-0.11.0 → yara_x-0.11.1}/lib/src/compiler/ir/tests/testdata/1.ir +0 -0
  29. {yara_x-0.11.0 → yara_x-0.11.1}/lib/src/compiler/ir/tests/testdata/1.no-folding.ir +0 -0
  30. {yara_x-0.11.0 → yara_x-0.11.1}/lib/src/compiler/ir/tests/testdata/2.cse.ir +0 -0
  31. {yara_x-0.11.0 → yara_x-0.11.1}/lib/src/compiler/ir/tests/testdata/2.hoisting.ir +0 -0
  32. {yara_x-0.11.0 → yara_x-0.11.1}/lib/src/compiler/ir/tests/testdata/2.in +0 -0
  33. {yara_x-0.11.0 → yara_x-0.11.1}/lib/src/compiler/ir/tests/testdata/2.ir +0 -0
  34. {yara_x-0.11.0 → yara_x-0.11.1}/lib/src/compiler/ir/tests/testdata/2.no-folding.ir +0 -0
  35. {yara_x-0.11.0 → yara_x-0.11.1}/lib/src/compiler/ir/tests/testdata/3.cse.ir +0 -0
  36. {yara_x-0.11.0 → yara_x-0.11.1}/lib/src/compiler/ir/tests/testdata/3.hoisting.ir +0 -0
  37. {yara_x-0.11.0 → yara_x-0.11.1}/lib/src/compiler/ir/tests/testdata/3.in +0 -0
  38. {yara_x-0.11.0 → yara_x-0.11.1}/lib/src/compiler/ir/tests/testdata/3.ir +0 -0
  39. {yara_x-0.11.0 → yara_x-0.11.1}/lib/src/compiler/ir/tests/testdata/3.no-folding.ir +0 -0
  40. {yara_x-0.11.0 → yara_x-0.11.1}/lib/src/compiler/ir/tests/testdata/4.cse.ir +0 -0
  41. {yara_x-0.11.0 → yara_x-0.11.1}/lib/src/compiler/ir/tests/testdata/4.hoisting.ir +0 -0
  42. {yara_x-0.11.0 → yara_x-0.11.1}/lib/src/compiler/ir/tests/testdata/4.in +0 -0
  43. {yara_x-0.11.0 → yara_x-0.11.1}/lib/src/compiler/ir/tests/testdata/4.ir +0 -0
  44. {yara_x-0.11.0 → yara_x-0.11.1}/lib/src/compiler/ir/tests/testdata/4.no-folding.ir +0 -0
  45. {yara_x-0.11.0 → yara_x-0.11.1}/lib/src/compiler/ir/tests/testdata/5.cse.ir +0 -0
  46. {yara_x-0.11.0 → yara_x-0.11.1}/lib/src/compiler/ir/tests/testdata/5.hoisting.ir +0 -0
  47. {yara_x-0.11.0 → yara_x-0.11.1}/lib/src/compiler/ir/tests/testdata/5.in +0 -0
  48. {yara_x-0.11.0 → yara_x-0.11.1}/lib/src/compiler/ir/tests/testdata/5.ir +0 -0
  49. {yara_x-0.11.0 → yara_x-0.11.1}/lib/src/compiler/ir/tests/testdata/5.no-folding.ir +0 -0
  50. {yara_x-0.11.0 → yara_x-0.11.1}/lib/src/compiler/ir/tests/testdata/6.cse.ir +0 -0
  51. {yara_x-0.11.0 → yara_x-0.11.1}/lib/src/compiler/ir/tests/testdata/6.hoisting.ir +0 -0
  52. {yara_x-0.11.0 → yara_x-0.11.1}/lib/src/compiler/ir/tests/testdata/6.in +0 -0
  53. {yara_x-0.11.0 → yara_x-0.11.1}/lib/src/compiler/ir/tests/testdata/6.ir +0 -0
  54. {yara_x-0.11.0 → yara_x-0.11.1}/lib/src/compiler/ir/tests/testdata/6.no-folding.ir +0 -0
  55. {yara_x-0.11.0 → yara_x-0.11.1}/lib/src/compiler/ir/tests/testdata/7.cse.ir +0 -0
  56. {yara_x-0.11.0 → yara_x-0.11.1}/lib/src/compiler/ir/tests/testdata/7.hoisting.ir +0 -0
  57. {yara_x-0.11.0 → yara_x-0.11.1}/lib/src/compiler/ir/tests/testdata/7.in +0 -0
  58. {yara_x-0.11.0 → yara_x-0.11.1}/lib/src/compiler/ir/tests/testdata/7.ir +0 -0
  59. {yara_x-0.11.0 → yara_x-0.11.1}/lib/src/compiler/ir/tests/testdata/7.no-folding.ir +0 -0
  60. {yara_x-0.11.0 → yara_x-0.11.1}/lib/src/compiler/ir/tests/testdata/8.cse.ir +0 -0
  61. {yara_x-0.11.0 → yara_x-0.11.1}/lib/src/compiler/ir/tests/testdata/8.hoisting.ir +0 -0
  62. {yara_x-0.11.0 → yara_x-0.11.1}/lib/src/compiler/ir/tests/testdata/8.in +0 -0
  63. {yara_x-0.11.0 → yara_x-0.11.1}/lib/src/compiler/ir/tests/testdata/8.ir +0 -0
  64. {yara_x-0.11.0 → yara_x-0.11.1}/lib/src/compiler/ir/tests/testdata/8.no-folding.ir +0 -0
  65. {yara_x-0.11.0 → yara_x-0.11.1}/lib/src/compiler/mod.rs +0 -0
  66. {yara_x-0.11.0 → yara_x-0.11.1}/lib/src/compiler/report.rs +0 -0
  67. {yara_x-0.11.0 → yara_x-0.11.1}/lib/src/compiler/rules.rs +0 -0
  68. {yara_x-0.11.0 → yara_x-0.11.1}/lib/src/compiler/tests/mod.rs +0 -0
  69. {yara_x-0.11.0 → yara_x-0.11.1}/lib/src/compiler/tests/testdata/errors/1.in +0 -0
  70. {yara_x-0.11.0 → yara_x-0.11.1}/lib/src/compiler/tests/testdata/errors/1.out +0 -0
  71. {yara_x-0.11.0 → yara_x-0.11.1}/lib/src/compiler/tests/testdata/errors/10.in +0 -0
  72. {yara_x-0.11.0 → yara_x-0.11.1}/lib/src/compiler/tests/testdata/errors/10.out +0 -0
  73. {yara_x-0.11.0 → yara_x-0.11.1}/lib/src/compiler/tests/testdata/errors/100.in +0 -0
  74. {yara_x-0.11.0 → yara_x-0.11.1}/lib/src/compiler/tests/testdata/errors/100.out +0 -0
  75. {yara_x-0.11.0 → yara_x-0.11.1}/lib/src/compiler/tests/testdata/errors/101.in +0 -0
  76. {yara_x-0.11.0 → yara_x-0.11.1}/lib/src/compiler/tests/testdata/errors/101.out +0 -0
  77. {yara_x-0.11.0 → yara_x-0.11.1}/lib/src/compiler/tests/testdata/errors/102.in +0 -0
  78. {yara_x-0.11.0 → yara_x-0.11.1}/lib/src/compiler/tests/testdata/errors/102.out +0 -0
  79. {yara_x-0.11.0 → yara_x-0.11.1}/lib/src/compiler/tests/testdata/errors/103.in +0 -0
  80. {yara_x-0.11.0 → yara_x-0.11.1}/lib/src/compiler/tests/testdata/errors/103.out +0 -0
  81. {yara_x-0.11.0 → yara_x-0.11.1}/lib/src/compiler/tests/testdata/errors/104.in +0 -0
  82. {yara_x-0.11.0 → yara_x-0.11.1}/lib/src/compiler/tests/testdata/errors/104.out +0 -0
  83. {yara_x-0.11.0 → yara_x-0.11.1}/lib/src/compiler/tests/testdata/errors/105.in +0 -0
  84. {yara_x-0.11.0 → yara_x-0.11.1}/lib/src/compiler/tests/testdata/errors/105.out +0 -0
  85. {yara_x-0.11.0 → yara_x-0.11.1}/lib/src/compiler/tests/testdata/errors/106.in +0 -0
  86. {yara_x-0.11.0 → yara_x-0.11.1}/lib/src/compiler/tests/testdata/errors/106.out +0 -0
  87. {yara_x-0.11.0 → yara_x-0.11.1}/lib/src/compiler/tests/testdata/errors/107.in +0 -0
  88. {yara_x-0.11.0 → yara_x-0.11.1}/lib/src/compiler/tests/testdata/errors/107.out +0 -0
  89. {yara_x-0.11.0 → yara_x-0.11.1}/lib/src/compiler/tests/testdata/errors/108.in +0 -0
  90. {yara_x-0.11.0 → yara_x-0.11.1}/lib/src/compiler/tests/testdata/errors/108.out +0 -0
  91. {yara_x-0.11.0 → yara_x-0.11.1}/lib/src/compiler/tests/testdata/errors/109.in +0 -0
  92. {yara_x-0.11.0 → yara_x-0.11.1}/lib/src/compiler/tests/testdata/errors/109.out +0 -0
  93. {yara_x-0.11.0 → yara_x-0.11.1}/lib/src/compiler/tests/testdata/errors/11.in +0 -0
  94. {yara_x-0.11.0 → yara_x-0.11.1}/lib/src/compiler/tests/testdata/errors/11.out +0 -0
  95. {yara_x-0.11.0 → yara_x-0.11.1}/lib/src/compiler/tests/testdata/errors/110.in +0 -0
  96. {yara_x-0.11.0 → yara_x-0.11.1}/lib/src/compiler/tests/testdata/errors/110.out +0 -0
  97. {yara_x-0.11.0 → yara_x-0.11.1}/lib/src/compiler/tests/testdata/errors/111.in +0 -0
  98. {yara_x-0.11.0 → yara_x-0.11.1}/lib/src/compiler/tests/testdata/errors/111.out +0 -0
  99. {yara_x-0.11.0 → yara_x-0.11.1}/lib/src/compiler/tests/testdata/errors/112.in +0 -0
  100. {yara_x-0.11.0 → yara_x-0.11.1}/lib/src/compiler/tests/testdata/errors/112.out +0 -0
  101. {yara_x-0.11.0 → yara_x-0.11.1}/lib/src/compiler/tests/testdata/errors/113.in +0 -0
  102. {yara_x-0.11.0 → yara_x-0.11.1}/lib/src/compiler/tests/testdata/errors/113.out +0 -0
  103. {yara_x-0.11.0 → yara_x-0.11.1}/lib/src/compiler/tests/testdata/errors/114.in +0 -0
  104. {yara_x-0.11.0 → yara_x-0.11.1}/lib/src/compiler/tests/testdata/errors/114.out +0 -0
  105. {yara_x-0.11.0 → yara_x-0.11.1}/lib/src/compiler/tests/testdata/errors/115.in +0 -0
  106. {yara_x-0.11.0 → yara_x-0.11.1}/lib/src/compiler/tests/testdata/errors/115.out +0 -0
  107. {yara_x-0.11.0 → yara_x-0.11.1}/lib/src/compiler/tests/testdata/errors/116.in +0 -0
  108. {yara_x-0.11.0 → yara_x-0.11.1}/lib/src/compiler/tests/testdata/errors/116.out +0 -0
  109. {yara_x-0.11.0 → yara_x-0.11.1}/lib/src/compiler/tests/testdata/errors/117.in +0 -0
  110. {yara_x-0.11.0 → yara_x-0.11.1}/lib/src/compiler/tests/testdata/errors/117.out +0 -0
  111. {yara_x-0.11.0 → yara_x-0.11.1}/lib/src/compiler/tests/testdata/errors/118.in +0 -0
  112. {yara_x-0.11.0 → yara_x-0.11.1}/lib/src/compiler/tests/testdata/errors/118.out +0 -0
  113. {yara_x-0.11.0 → yara_x-0.11.1}/lib/src/compiler/tests/testdata/errors/119.in +0 -0
  114. {yara_x-0.11.0 → yara_x-0.11.1}/lib/src/compiler/tests/testdata/errors/119.out +0 -0
  115. {yara_x-0.11.0 → yara_x-0.11.1}/lib/src/compiler/tests/testdata/errors/12.in +0 -0
  116. {yara_x-0.11.0 → yara_x-0.11.1}/lib/src/compiler/tests/testdata/errors/12.out +0 -0
  117. {yara_x-0.11.0 → yara_x-0.11.1}/lib/src/compiler/tests/testdata/errors/120.in +0 -0
  118. {yara_x-0.11.0 → yara_x-0.11.1}/lib/src/compiler/tests/testdata/errors/120.out +0 -0
  119. {yara_x-0.11.0 → yara_x-0.11.1}/lib/src/compiler/tests/testdata/errors/121.in +0 -0
  120. {yara_x-0.11.0 → yara_x-0.11.1}/lib/src/compiler/tests/testdata/errors/121.out +0 -0
  121. {yara_x-0.11.0 → yara_x-0.11.1}/lib/src/compiler/tests/testdata/errors/122.in +0 -0
  122. {yara_x-0.11.0 → yara_x-0.11.1}/lib/src/compiler/tests/testdata/errors/122.out +0 -0
  123. {yara_x-0.11.0 → yara_x-0.11.1}/lib/src/compiler/tests/testdata/errors/123.in +0 -0
  124. {yara_x-0.11.0 → yara_x-0.11.1}/lib/src/compiler/tests/testdata/errors/123.out +0 -0
  125. {yara_x-0.11.0 → yara_x-0.11.1}/lib/src/compiler/tests/testdata/errors/124.in +0 -0
  126. {yara_x-0.11.0 → yara_x-0.11.1}/lib/src/compiler/tests/testdata/errors/124.out +0 -0
  127. {yara_x-0.11.0 → yara_x-0.11.1}/lib/src/compiler/tests/testdata/errors/125.in +0 -0
  128. {yara_x-0.11.0 → yara_x-0.11.1}/lib/src/compiler/tests/testdata/errors/125.out +0 -0
  129. {yara_x-0.11.0 → yara_x-0.11.1}/lib/src/compiler/tests/testdata/errors/126.in +0 -0
  130. {yara_x-0.11.0 → yara_x-0.11.1}/lib/src/compiler/tests/testdata/errors/126.out +0 -0
  131. {yara_x-0.11.0 → yara_x-0.11.1}/lib/src/compiler/tests/testdata/errors/127.in +0 -0
  132. {yara_x-0.11.0 → yara_x-0.11.1}/lib/src/compiler/tests/testdata/errors/127.out +0 -0
  133. {yara_x-0.11.0 → yara_x-0.11.1}/lib/src/compiler/tests/testdata/errors/128.in +0 -0
  134. {yara_x-0.11.0 → yara_x-0.11.1}/lib/src/compiler/tests/testdata/errors/128.out +0 -0
  135. {yara_x-0.11.0 → yara_x-0.11.1}/lib/src/compiler/tests/testdata/errors/129.in +0 -0
  136. {yara_x-0.11.0 → yara_x-0.11.1}/lib/src/compiler/tests/testdata/errors/129.out +0 -0
  137. {yara_x-0.11.0 → yara_x-0.11.1}/lib/src/compiler/tests/testdata/errors/13.in +0 -0
  138. {yara_x-0.11.0 → yara_x-0.11.1}/lib/src/compiler/tests/testdata/errors/13.out +0 -0
  139. {yara_x-0.11.0 → yara_x-0.11.1}/lib/src/compiler/tests/testdata/errors/131.in +0 -0
  140. {yara_x-0.11.0 → yara_x-0.11.1}/lib/src/compiler/tests/testdata/errors/131.out +0 -0
  141. {yara_x-0.11.0 → yara_x-0.11.1}/lib/src/compiler/tests/testdata/errors/132.in +0 -0
  142. {yara_x-0.11.0 → yara_x-0.11.1}/lib/src/compiler/tests/testdata/errors/132.out +0 -0
  143. {yara_x-0.11.0 → yara_x-0.11.1}/lib/src/compiler/tests/testdata/errors/133.in +0 -0
  144. {yara_x-0.11.0 → yara_x-0.11.1}/lib/src/compiler/tests/testdata/errors/133.out +0 -0
  145. {yara_x-0.11.0 → yara_x-0.11.1}/lib/src/compiler/tests/testdata/errors/134.in +0 -0
  146. {yara_x-0.11.0 → yara_x-0.11.1}/lib/src/compiler/tests/testdata/errors/134.out +0 -0
  147. {yara_x-0.11.0 → yara_x-0.11.1}/lib/src/compiler/tests/testdata/errors/135.in +0 -0
  148. {yara_x-0.11.0 → yara_x-0.11.1}/lib/src/compiler/tests/testdata/errors/135.out +0 -0
  149. {yara_x-0.11.0 → yara_x-0.11.1}/lib/src/compiler/tests/testdata/errors/136.in +0 -0
  150. {yara_x-0.11.0 → yara_x-0.11.1}/lib/src/compiler/tests/testdata/errors/136.out +0 -0
  151. {yara_x-0.11.0 → yara_x-0.11.1}/lib/src/compiler/tests/testdata/errors/137.in +0 -0
  152. {yara_x-0.11.0 → yara_x-0.11.1}/lib/src/compiler/tests/testdata/errors/137.out +0 -0
  153. {yara_x-0.11.0 → yara_x-0.11.1}/lib/src/compiler/tests/testdata/errors/138.in +0 -0
  154. {yara_x-0.11.0 → yara_x-0.11.1}/lib/src/compiler/tests/testdata/errors/138.out +0 -0
  155. {yara_x-0.11.0 → yara_x-0.11.1}/lib/src/compiler/tests/testdata/errors/139.in +0 -0
  156. {yara_x-0.11.0 → yara_x-0.11.1}/lib/src/compiler/tests/testdata/errors/139.out +0 -0
  157. {yara_x-0.11.0 → yara_x-0.11.1}/lib/src/compiler/tests/testdata/errors/14.in +0 -0
  158. {yara_x-0.11.0 → yara_x-0.11.1}/lib/src/compiler/tests/testdata/errors/14.out +0 -0
  159. {yara_x-0.11.0 → yara_x-0.11.1}/lib/src/compiler/tests/testdata/errors/15.in +0 -0
  160. {yara_x-0.11.0 → yara_x-0.11.1}/lib/src/compiler/tests/testdata/errors/15.out +0 -0
  161. {yara_x-0.11.0 → yara_x-0.11.1}/lib/src/compiler/tests/testdata/errors/16.in +0 -0
  162. {yara_x-0.11.0 → yara_x-0.11.1}/lib/src/compiler/tests/testdata/errors/16.out +0 -0
  163. {yara_x-0.11.0 → yara_x-0.11.1}/lib/src/compiler/tests/testdata/errors/17.in +0 -0
  164. {yara_x-0.11.0 → yara_x-0.11.1}/lib/src/compiler/tests/testdata/errors/17.out +0 -0
  165. {yara_x-0.11.0 → yara_x-0.11.1}/lib/src/compiler/tests/testdata/errors/18.in +0 -0
  166. {yara_x-0.11.0 → yara_x-0.11.1}/lib/src/compiler/tests/testdata/errors/18.out +0 -0
  167. {yara_x-0.11.0 → yara_x-0.11.1}/lib/src/compiler/tests/testdata/errors/19.in +0 -0
  168. {yara_x-0.11.0 → yara_x-0.11.1}/lib/src/compiler/tests/testdata/errors/19.out +0 -0
  169. {yara_x-0.11.0 → yara_x-0.11.1}/lib/src/compiler/tests/testdata/errors/2.in +0 -0
  170. {yara_x-0.11.0 → yara_x-0.11.1}/lib/src/compiler/tests/testdata/errors/2.out +0 -0
  171. {yara_x-0.11.0 → yara_x-0.11.1}/lib/src/compiler/tests/testdata/errors/20.in +0 -0
  172. {yara_x-0.11.0 → yara_x-0.11.1}/lib/src/compiler/tests/testdata/errors/20.out +0 -0
  173. {yara_x-0.11.0 → yara_x-0.11.1}/lib/src/compiler/tests/testdata/errors/21.in +0 -0
  174. {yara_x-0.11.0 → yara_x-0.11.1}/lib/src/compiler/tests/testdata/errors/21.out +0 -0
  175. {yara_x-0.11.0 → yara_x-0.11.1}/lib/src/compiler/tests/testdata/errors/22.in +0 -0
  176. {yara_x-0.11.0 → yara_x-0.11.1}/lib/src/compiler/tests/testdata/errors/22.out +0 -0
  177. {yara_x-0.11.0 → yara_x-0.11.1}/lib/src/compiler/tests/testdata/errors/23.in +0 -0
  178. {yara_x-0.11.0 → yara_x-0.11.1}/lib/src/compiler/tests/testdata/errors/23.out +0 -0
  179. {yara_x-0.11.0 → yara_x-0.11.1}/lib/src/compiler/tests/testdata/errors/24.in +0 -0
  180. {yara_x-0.11.0 → yara_x-0.11.1}/lib/src/compiler/tests/testdata/errors/24.out +0 -0
  181. {yara_x-0.11.0 → yara_x-0.11.1}/lib/src/compiler/tests/testdata/errors/25.in +0 -0
  182. {yara_x-0.11.0 → yara_x-0.11.1}/lib/src/compiler/tests/testdata/errors/25.out +0 -0
  183. {yara_x-0.11.0 → yara_x-0.11.1}/lib/src/compiler/tests/testdata/errors/26.in +0 -0
  184. {yara_x-0.11.0 → yara_x-0.11.1}/lib/src/compiler/tests/testdata/errors/26.out +0 -0
  185. {yara_x-0.11.0 → yara_x-0.11.1}/lib/src/compiler/tests/testdata/errors/28.in +0 -0
  186. {yara_x-0.11.0 → yara_x-0.11.1}/lib/src/compiler/tests/testdata/errors/28.out +0 -0
  187. {yara_x-0.11.0 → yara_x-0.11.1}/lib/src/compiler/tests/testdata/errors/29.in +0 -0
  188. {yara_x-0.11.0 → yara_x-0.11.1}/lib/src/compiler/tests/testdata/errors/29.out +0 -0
  189. {yara_x-0.11.0 → yara_x-0.11.1}/lib/src/compiler/tests/testdata/errors/3.in +0 -0
  190. {yara_x-0.11.0 → yara_x-0.11.1}/lib/src/compiler/tests/testdata/errors/3.out +0 -0
  191. {yara_x-0.11.0 → yara_x-0.11.1}/lib/src/compiler/tests/testdata/errors/30.in +0 -0
  192. {yara_x-0.11.0 → yara_x-0.11.1}/lib/src/compiler/tests/testdata/errors/30.out +0 -0
  193. {yara_x-0.11.0 → yara_x-0.11.1}/lib/src/compiler/tests/testdata/errors/31.in +0 -0
  194. {yara_x-0.11.0 → yara_x-0.11.1}/lib/src/compiler/tests/testdata/errors/31.out +0 -0
  195. {yara_x-0.11.0 → yara_x-0.11.1}/lib/src/compiler/tests/testdata/errors/32.in +0 -0
  196. {yara_x-0.11.0 → yara_x-0.11.1}/lib/src/compiler/tests/testdata/errors/32.out +0 -0
  197. {yara_x-0.11.0 → yara_x-0.11.1}/lib/src/compiler/tests/testdata/errors/33.in +0 -0
  198. {yara_x-0.11.0 → yara_x-0.11.1}/lib/src/compiler/tests/testdata/errors/33.out +0 -0
  199. {yara_x-0.11.0 → yara_x-0.11.1}/lib/src/compiler/tests/testdata/errors/34.in +0 -0
  200. {yara_x-0.11.0 → yara_x-0.11.1}/lib/src/compiler/tests/testdata/errors/34.out +0 -0
  201. {yara_x-0.11.0 → yara_x-0.11.1}/lib/src/compiler/tests/testdata/errors/35.in +0 -0
  202. {yara_x-0.11.0 → yara_x-0.11.1}/lib/src/compiler/tests/testdata/errors/35.out +0 -0
  203. {yara_x-0.11.0 → yara_x-0.11.1}/lib/src/compiler/tests/testdata/errors/37.in +0 -0
  204. {yara_x-0.11.0 → yara_x-0.11.1}/lib/src/compiler/tests/testdata/errors/37.out +0 -0
  205. {yara_x-0.11.0 → yara_x-0.11.1}/lib/src/compiler/tests/testdata/errors/38.in +0 -0
  206. {yara_x-0.11.0 → yara_x-0.11.1}/lib/src/compiler/tests/testdata/errors/38.out +0 -0
  207. {yara_x-0.11.0 → yara_x-0.11.1}/lib/src/compiler/tests/testdata/errors/39.in +0 -0
  208. {yara_x-0.11.0 → yara_x-0.11.1}/lib/src/compiler/tests/testdata/errors/39.out +0 -0
  209. {yara_x-0.11.0 → yara_x-0.11.1}/lib/src/compiler/tests/testdata/errors/4.in +0 -0
  210. {yara_x-0.11.0 → yara_x-0.11.1}/lib/src/compiler/tests/testdata/errors/4.out +0 -0
  211. {yara_x-0.11.0 → yara_x-0.11.1}/lib/src/compiler/tests/testdata/errors/40.in +0 -0
  212. {yara_x-0.11.0 → yara_x-0.11.1}/lib/src/compiler/tests/testdata/errors/40.out +0 -0
  213. {yara_x-0.11.0 → yara_x-0.11.1}/lib/src/compiler/tests/testdata/errors/41.in +0 -0
  214. {yara_x-0.11.0 → yara_x-0.11.1}/lib/src/compiler/tests/testdata/errors/41.out +0 -0
  215. {yara_x-0.11.0 → yara_x-0.11.1}/lib/src/compiler/tests/testdata/errors/42.in +0 -0
  216. {yara_x-0.11.0 → yara_x-0.11.1}/lib/src/compiler/tests/testdata/errors/42.out +0 -0
  217. {yara_x-0.11.0 → yara_x-0.11.1}/lib/src/compiler/tests/testdata/errors/43.in +0 -0
  218. {yara_x-0.11.0 → yara_x-0.11.1}/lib/src/compiler/tests/testdata/errors/43.out +0 -0
  219. {yara_x-0.11.0 → yara_x-0.11.1}/lib/src/compiler/tests/testdata/errors/44.in +0 -0
  220. {yara_x-0.11.0 → yara_x-0.11.1}/lib/src/compiler/tests/testdata/errors/44.out +0 -0
  221. {yara_x-0.11.0 → yara_x-0.11.1}/lib/src/compiler/tests/testdata/errors/45.in +0 -0
  222. {yara_x-0.11.0 → yara_x-0.11.1}/lib/src/compiler/tests/testdata/errors/45.out +0 -0
  223. {yara_x-0.11.0 → yara_x-0.11.1}/lib/src/compiler/tests/testdata/errors/46.in +0 -0
  224. {yara_x-0.11.0 → yara_x-0.11.1}/lib/src/compiler/tests/testdata/errors/46.out +0 -0
  225. {yara_x-0.11.0 → yara_x-0.11.1}/lib/src/compiler/tests/testdata/errors/47.in +0 -0
  226. {yara_x-0.11.0 → yara_x-0.11.1}/lib/src/compiler/tests/testdata/errors/47.out +0 -0
  227. {yara_x-0.11.0 → yara_x-0.11.1}/lib/src/compiler/tests/testdata/errors/48.in +0 -0
  228. {yara_x-0.11.0 → yara_x-0.11.1}/lib/src/compiler/tests/testdata/errors/48.out +0 -0
  229. {yara_x-0.11.0 → yara_x-0.11.1}/lib/src/compiler/tests/testdata/errors/49.in +0 -0
  230. {yara_x-0.11.0 → yara_x-0.11.1}/lib/src/compiler/tests/testdata/errors/49.out +0 -0
  231. {yara_x-0.11.0 → yara_x-0.11.1}/lib/src/compiler/tests/testdata/errors/5.in +0 -0
  232. {yara_x-0.11.0 → yara_x-0.11.1}/lib/src/compiler/tests/testdata/errors/5.out +0 -0
  233. {yara_x-0.11.0 → yara_x-0.11.1}/lib/src/compiler/tests/testdata/errors/50.in +0 -0
  234. {yara_x-0.11.0 → yara_x-0.11.1}/lib/src/compiler/tests/testdata/errors/50.out +0 -0
  235. {yara_x-0.11.0 → yara_x-0.11.1}/lib/src/compiler/tests/testdata/errors/51.in +0 -0
  236. {yara_x-0.11.0 → yara_x-0.11.1}/lib/src/compiler/tests/testdata/errors/51.out +0 -0
  237. {yara_x-0.11.0 → yara_x-0.11.1}/lib/src/compiler/tests/testdata/errors/52.in +0 -0
  238. {yara_x-0.11.0 → yara_x-0.11.1}/lib/src/compiler/tests/testdata/errors/52.out +0 -0
  239. {yara_x-0.11.0 → yara_x-0.11.1}/lib/src/compiler/tests/testdata/errors/53.in +0 -0
  240. {yara_x-0.11.0 → yara_x-0.11.1}/lib/src/compiler/tests/testdata/errors/53.out +0 -0
  241. {yara_x-0.11.0 → yara_x-0.11.1}/lib/src/compiler/tests/testdata/errors/54.in +0 -0
  242. {yara_x-0.11.0 → yara_x-0.11.1}/lib/src/compiler/tests/testdata/errors/54.out +0 -0
  243. {yara_x-0.11.0 → yara_x-0.11.1}/lib/src/compiler/tests/testdata/errors/55.in +0 -0
  244. {yara_x-0.11.0 → yara_x-0.11.1}/lib/src/compiler/tests/testdata/errors/55.out +0 -0
  245. {yara_x-0.11.0 → yara_x-0.11.1}/lib/src/compiler/tests/testdata/errors/56.in +0 -0
  246. {yara_x-0.11.0 → yara_x-0.11.1}/lib/src/compiler/tests/testdata/errors/56.out +0 -0
  247. {yara_x-0.11.0 → yara_x-0.11.1}/lib/src/compiler/tests/testdata/errors/57.in +0 -0
  248. {yara_x-0.11.0 → yara_x-0.11.1}/lib/src/compiler/tests/testdata/errors/57.out +0 -0
  249. {yara_x-0.11.0 → yara_x-0.11.1}/lib/src/compiler/tests/testdata/errors/58.in +0 -0
  250. {yara_x-0.11.0 → yara_x-0.11.1}/lib/src/compiler/tests/testdata/errors/58.out +0 -0
  251. {yara_x-0.11.0 → yara_x-0.11.1}/lib/src/compiler/tests/testdata/errors/59.in +0 -0
  252. {yara_x-0.11.0 → yara_x-0.11.1}/lib/src/compiler/tests/testdata/errors/59.out +0 -0
  253. {yara_x-0.11.0 → yara_x-0.11.1}/lib/src/compiler/tests/testdata/errors/6.in +0 -0
  254. {yara_x-0.11.0 → yara_x-0.11.1}/lib/src/compiler/tests/testdata/errors/6.out +0 -0
  255. {yara_x-0.11.0 → yara_x-0.11.1}/lib/src/compiler/tests/testdata/errors/60.in +0 -0
  256. {yara_x-0.11.0 → yara_x-0.11.1}/lib/src/compiler/tests/testdata/errors/60.out +0 -0
  257. {yara_x-0.11.0 → yara_x-0.11.1}/lib/src/compiler/tests/testdata/errors/61.in +0 -0
  258. {yara_x-0.11.0 → yara_x-0.11.1}/lib/src/compiler/tests/testdata/errors/61.out +0 -0
  259. {yara_x-0.11.0 → yara_x-0.11.1}/lib/src/compiler/tests/testdata/errors/62.in +0 -0
  260. {yara_x-0.11.0 → yara_x-0.11.1}/lib/src/compiler/tests/testdata/errors/62.out +0 -0
  261. {yara_x-0.11.0 → yara_x-0.11.1}/lib/src/compiler/tests/testdata/errors/63.in +0 -0
  262. {yara_x-0.11.0 → yara_x-0.11.1}/lib/src/compiler/tests/testdata/errors/63.out +0 -0
  263. {yara_x-0.11.0 → yara_x-0.11.1}/lib/src/compiler/tests/testdata/errors/64.in +0 -0
  264. {yara_x-0.11.0 → yara_x-0.11.1}/lib/src/compiler/tests/testdata/errors/64.out +0 -0
  265. {yara_x-0.11.0 → yara_x-0.11.1}/lib/src/compiler/tests/testdata/errors/65.in +0 -0
  266. {yara_x-0.11.0 → yara_x-0.11.1}/lib/src/compiler/tests/testdata/errors/65.out +0 -0
  267. {yara_x-0.11.0 → yara_x-0.11.1}/lib/src/compiler/tests/testdata/errors/66.in +0 -0
  268. {yara_x-0.11.0 → yara_x-0.11.1}/lib/src/compiler/tests/testdata/errors/66.out +0 -0
  269. {yara_x-0.11.0 → yara_x-0.11.1}/lib/src/compiler/tests/testdata/errors/67.in +0 -0
  270. {yara_x-0.11.0 → yara_x-0.11.1}/lib/src/compiler/tests/testdata/errors/67.out +0 -0
  271. {yara_x-0.11.0 → yara_x-0.11.1}/lib/src/compiler/tests/testdata/errors/68.in +0 -0
  272. {yara_x-0.11.0 → yara_x-0.11.1}/lib/src/compiler/tests/testdata/errors/68.out +0 -0
  273. {yara_x-0.11.0 → yara_x-0.11.1}/lib/src/compiler/tests/testdata/errors/69.in +0 -0
  274. {yara_x-0.11.0 → yara_x-0.11.1}/lib/src/compiler/tests/testdata/errors/69.out +0 -0
  275. {yara_x-0.11.0 → yara_x-0.11.1}/lib/src/compiler/tests/testdata/errors/7.in +0 -0
  276. {yara_x-0.11.0 → yara_x-0.11.1}/lib/src/compiler/tests/testdata/errors/7.out +0 -0
  277. {yara_x-0.11.0 → yara_x-0.11.1}/lib/src/compiler/tests/testdata/errors/70.in +0 -0
  278. {yara_x-0.11.0 → yara_x-0.11.1}/lib/src/compiler/tests/testdata/errors/70.out +0 -0
  279. {yara_x-0.11.0 → yara_x-0.11.1}/lib/src/compiler/tests/testdata/errors/71.in +0 -0
  280. {yara_x-0.11.0 → yara_x-0.11.1}/lib/src/compiler/tests/testdata/errors/71.out +0 -0
  281. {yara_x-0.11.0 → yara_x-0.11.1}/lib/src/compiler/tests/testdata/errors/72.in +0 -0
  282. {yara_x-0.11.0 → yara_x-0.11.1}/lib/src/compiler/tests/testdata/errors/72.out +0 -0
  283. {yara_x-0.11.0 → yara_x-0.11.1}/lib/src/compiler/tests/testdata/errors/73.in +0 -0
  284. {yara_x-0.11.0 → yara_x-0.11.1}/lib/src/compiler/tests/testdata/errors/73.out +0 -0
  285. {yara_x-0.11.0 → yara_x-0.11.1}/lib/src/compiler/tests/testdata/errors/74.in +0 -0
  286. {yara_x-0.11.0 → yara_x-0.11.1}/lib/src/compiler/tests/testdata/errors/74.out +0 -0
  287. {yara_x-0.11.0 → yara_x-0.11.1}/lib/src/compiler/tests/testdata/errors/75.in +0 -0
  288. {yara_x-0.11.0 → yara_x-0.11.1}/lib/src/compiler/tests/testdata/errors/75.out +0 -0
  289. {yara_x-0.11.0 → yara_x-0.11.1}/lib/src/compiler/tests/testdata/errors/76.in +0 -0
  290. {yara_x-0.11.0 → yara_x-0.11.1}/lib/src/compiler/tests/testdata/errors/76.out +0 -0
  291. {yara_x-0.11.0 → yara_x-0.11.1}/lib/src/compiler/tests/testdata/errors/77.in +0 -0
  292. {yara_x-0.11.0 → yara_x-0.11.1}/lib/src/compiler/tests/testdata/errors/77.out +0 -0
  293. {yara_x-0.11.0 → yara_x-0.11.1}/lib/src/compiler/tests/testdata/errors/78.in +0 -0
  294. {yara_x-0.11.0 → yara_x-0.11.1}/lib/src/compiler/tests/testdata/errors/78.out +0 -0
  295. {yara_x-0.11.0 → yara_x-0.11.1}/lib/src/compiler/tests/testdata/errors/79.in +0 -0
  296. {yara_x-0.11.0 → yara_x-0.11.1}/lib/src/compiler/tests/testdata/errors/79.out +0 -0
  297. {yara_x-0.11.0 → yara_x-0.11.1}/lib/src/compiler/tests/testdata/errors/8.in +0 -0
  298. {yara_x-0.11.0 → yara_x-0.11.1}/lib/src/compiler/tests/testdata/errors/8.out +0 -0
  299. {yara_x-0.11.0 → yara_x-0.11.1}/lib/src/compiler/tests/testdata/errors/80.in +0 -0
  300. {yara_x-0.11.0 → yara_x-0.11.1}/lib/src/compiler/tests/testdata/errors/80.out +0 -0
  301. {yara_x-0.11.0 → yara_x-0.11.1}/lib/src/compiler/tests/testdata/errors/81.in +0 -0
  302. {yara_x-0.11.0 → yara_x-0.11.1}/lib/src/compiler/tests/testdata/errors/81.out +0 -0
  303. {yara_x-0.11.0 → yara_x-0.11.1}/lib/src/compiler/tests/testdata/errors/82.in +0 -0
  304. {yara_x-0.11.0 → yara_x-0.11.1}/lib/src/compiler/tests/testdata/errors/82.out +0 -0
  305. {yara_x-0.11.0 → yara_x-0.11.1}/lib/src/compiler/tests/testdata/errors/83.in +0 -0
  306. {yara_x-0.11.0 → yara_x-0.11.1}/lib/src/compiler/tests/testdata/errors/83.out +0 -0
  307. {yara_x-0.11.0 → yara_x-0.11.1}/lib/src/compiler/tests/testdata/errors/84.in +0 -0
  308. {yara_x-0.11.0 → yara_x-0.11.1}/lib/src/compiler/tests/testdata/errors/84.out +0 -0
  309. {yara_x-0.11.0 → yara_x-0.11.1}/lib/src/compiler/tests/testdata/errors/85.in +0 -0
  310. {yara_x-0.11.0 → yara_x-0.11.1}/lib/src/compiler/tests/testdata/errors/85.out +0 -0
  311. {yara_x-0.11.0 → yara_x-0.11.1}/lib/src/compiler/tests/testdata/errors/86.in +0 -0
  312. {yara_x-0.11.0 → yara_x-0.11.1}/lib/src/compiler/tests/testdata/errors/86.out +0 -0
  313. {yara_x-0.11.0 → yara_x-0.11.1}/lib/src/compiler/tests/testdata/errors/87.in +0 -0
  314. {yara_x-0.11.0 → yara_x-0.11.1}/lib/src/compiler/tests/testdata/errors/87.out +0 -0
  315. {yara_x-0.11.0 → yara_x-0.11.1}/lib/src/compiler/tests/testdata/errors/88.in +0 -0
  316. {yara_x-0.11.0 → yara_x-0.11.1}/lib/src/compiler/tests/testdata/errors/88.out +0 -0
  317. {yara_x-0.11.0 → yara_x-0.11.1}/lib/src/compiler/tests/testdata/errors/89.in +0 -0
  318. {yara_x-0.11.0 → yara_x-0.11.1}/lib/src/compiler/tests/testdata/errors/89.out +0 -0
  319. {yara_x-0.11.0 → yara_x-0.11.1}/lib/src/compiler/tests/testdata/errors/9.in +0 -0
  320. {yara_x-0.11.0 → yara_x-0.11.1}/lib/src/compiler/tests/testdata/errors/9.out +0 -0
  321. {yara_x-0.11.0 → yara_x-0.11.1}/lib/src/compiler/tests/testdata/errors/90.in +0 -0
  322. {yara_x-0.11.0 → yara_x-0.11.1}/lib/src/compiler/tests/testdata/errors/90.out +0 -0
  323. {yara_x-0.11.0 → yara_x-0.11.1}/lib/src/compiler/tests/testdata/errors/91.in +0 -0
  324. {yara_x-0.11.0 → yara_x-0.11.1}/lib/src/compiler/tests/testdata/errors/91.out +0 -0
  325. {yara_x-0.11.0 → yara_x-0.11.1}/lib/src/compiler/tests/testdata/errors/92.in +0 -0
  326. {yara_x-0.11.0 → yara_x-0.11.1}/lib/src/compiler/tests/testdata/errors/92.out +0 -0
  327. {yara_x-0.11.0 → yara_x-0.11.1}/lib/src/compiler/tests/testdata/errors/93.in +0 -0
  328. {yara_x-0.11.0 → yara_x-0.11.1}/lib/src/compiler/tests/testdata/errors/93.out +0 -0
  329. {yara_x-0.11.0 → yara_x-0.11.1}/lib/src/compiler/tests/testdata/errors/94.in +0 -0
  330. {yara_x-0.11.0 → yara_x-0.11.1}/lib/src/compiler/tests/testdata/errors/94.out +0 -0
  331. {yara_x-0.11.0 → yara_x-0.11.1}/lib/src/compiler/tests/testdata/errors/95.in +0 -0
  332. {yara_x-0.11.0 → yara_x-0.11.1}/lib/src/compiler/tests/testdata/errors/95.out +0 -0
  333. {yara_x-0.11.0 → yara_x-0.11.1}/lib/src/compiler/tests/testdata/errors/96.in +0 -0
  334. {yara_x-0.11.0 → yara_x-0.11.1}/lib/src/compiler/tests/testdata/errors/96.out +0 -0
  335. {yara_x-0.11.0 → yara_x-0.11.1}/lib/src/compiler/tests/testdata/errors/97.in +0 -0
  336. {yara_x-0.11.0 → yara_x-0.11.1}/lib/src/compiler/tests/testdata/errors/97.out +0 -0
  337. {yara_x-0.11.0 → yara_x-0.11.1}/lib/src/compiler/tests/testdata/errors/98.in +0 -0
  338. {yara_x-0.11.0 → yara_x-0.11.1}/lib/src/compiler/tests/testdata/errors/98.out +0 -0
  339. {yara_x-0.11.0 → yara_x-0.11.1}/lib/src/compiler/tests/testdata/errors/99.in +0 -0
  340. {yara_x-0.11.0 → yara_x-0.11.1}/lib/src/compiler/tests/testdata/errors/99.out +0 -0
  341. {yara_x-0.11.0 → yara_x-0.11.1}/lib/src/compiler/tests/testdata/warnings/1.in +0 -0
  342. {yara_x-0.11.0 → yara_x-0.11.1}/lib/src/compiler/tests/testdata/warnings/1.out +0 -0
  343. {yara_x-0.11.0 → yara_x-0.11.1}/lib/src/compiler/tests/testdata/warnings/10.in +0 -0
  344. {yara_x-0.11.0 → yara_x-0.11.1}/lib/src/compiler/tests/testdata/warnings/10.out +0 -0
  345. {yara_x-0.11.0 → yara_x-0.11.1}/lib/src/compiler/tests/testdata/warnings/11.in +0 -0
  346. {yara_x-0.11.0 → yara_x-0.11.1}/lib/src/compiler/tests/testdata/warnings/11.out +0 -0
  347. {yara_x-0.11.0 → yara_x-0.11.1}/lib/src/compiler/tests/testdata/warnings/12.in +0 -0
  348. {yara_x-0.11.0 → yara_x-0.11.1}/lib/src/compiler/tests/testdata/warnings/12.out +0 -0
  349. {yara_x-0.11.0 → yara_x-0.11.1}/lib/src/compiler/tests/testdata/warnings/13.in +0 -0
  350. {yara_x-0.11.0 → yara_x-0.11.1}/lib/src/compiler/tests/testdata/warnings/13.out +0 -0
  351. {yara_x-0.11.0 → yara_x-0.11.1}/lib/src/compiler/tests/testdata/warnings/14.in +0 -0
  352. {yara_x-0.11.0 → yara_x-0.11.1}/lib/src/compiler/tests/testdata/warnings/14.out +0 -0
  353. {yara_x-0.11.0 → yara_x-0.11.1}/lib/src/compiler/tests/testdata/warnings/15.in +0 -0
  354. {yara_x-0.11.0 → yara_x-0.11.1}/lib/src/compiler/tests/testdata/warnings/15.out +0 -0
  355. {yara_x-0.11.0 → yara_x-0.11.1}/lib/src/compiler/tests/testdata/warnings/16.in +0 -0
  356. {yara_x-0.11.0 → yara_x-0.11.1}/lib/src/compiler/tests/testdata/warnings/16.out +0 -0
  357. {yara_x-0.11.0 → yara_x-0.11.1}/lib/src/compiler/tests/testdata/warnings/17.in +0 -0
  358. {yara_x-0.11.0 → yara_x-0.11.1}/lib/src/compiler/tests/testdata/warnings/17.out +0 -0
  359. {yara_x-0.11.0 → yara_x-0.11.1}/lib/src/compiler/tests/testdata/warnings/18.in +0 -0
  360. {yara_x-0.11.0 → yara_x-0.11.1}/lib/src/compiler/tests/testdata/warnings/18.out +0 -0
  361. {yara_x-0.11.0 → yara_x-0.11.1}/lib/src/compiler/tests/testdata/warnings/19.in +0 -0
  362. {yara_x-0.11.0 → yara_x-0.11.1}/lib/src/compiler/tests/testdata/warnings/19.out +0 -0
  363. {yara_x-0.11.0 → yara_x-0.11.1}/lib/src/compiler/tests/testdata/warnings/2.in +0 -0
  364. {yara_x-0.11.0 → yara_x-0.11.1}/lib/src/compiler/tests/testdata/warnings/2.out +0 -0
  365. {yara_x-0.11.0 → yara_x-0.11.1}/lib/src/compiler/tests/testdata/warnings/20.in +0 -0
  366. {yara_x-0.11.0 → yara_x-0.11.1}/lib/src/compiler/tests/testdata/warnings/20.out +0 -0
  367. {yara_x-0.11.0 → yara_x-0.11.1}/lib/src/compiler/tests/testdata/warnings/21.in +0 -0
  368. {yara_x-0.11.0 → yara_x-0.11.1}/lib/src/compiler/tests/testdata/warnings/21.out +0 -0
  369. {yara_x-0.11.0 → yara_x-0.11.1}/lib/src/compiler/tests/testdata/warnings/22.in +0 -0
  370. {yara_x-0.11.0 → yara_x-0.11.1}/lib/src/compiler/tests/testdata/warnings/22.out +0 -0
  371. {yara_x-0.11.0 → yara_x-0.11.1}/lib/src/compiler/tests/testdata/warnings/23.in +0 -0
  372. {yara_x-0.11.0 → yara_x-0.11.1}/lib/src/compiler/tests/testdata/warnings/23.out +0 -0
  373. {yara_x-0.11.0 → yara_x-0.11.1}/lib/src/compiler/tests/testdata/warnings/24.in +0 -0
  374. {yara_x-0.11.0 → yara_x-0.11.1}/lib/src/compiler/tests/testdata/warnings/24.out +0 -0
  375. {yara_x-0.11.0 → yara_x-0.11.1}/lib/src/compiler/tests/testdata/warnings/25.in +0 -0
  376. {yara_x-0.11.0 → yara_x-0.11.1}/lib/src/compiler/tests/testdata/warnings/25.out +0 -0
  377. {yara_x-0.11.0 → yara_x-0.11.1}/lib/src/compiler/tests/testdata/warnings/26.in +0 -0
  378. {yara_x-0.11.0 → yara_x-0.11.1}/lib/src/compiler/tests/testdata/warnings/26.out +0 -0
  379. {yara_x-0.11.0 → yara_x-0.11.1}/lib/src/compiler/tests/testdata/warnings/27.in +0 -0
  380. {yara_x-0.11.0 → yara_x-0.11.1}/lib/src/compiler/tests/testdata/warnings/27.out +0 -0
  381. {yara_x-0.11.0 → yara_x-0.11.1}/lib/src/compiler/tests/testdata/warnings/28.in +0 -0
  382. {yara_x-0.11.0 → yara_x-0.11.1}/lib/src/compiler/tests/testdata/warnings/28.out +0 -0
  383. {yara_x-0.11.0 → yara_x-0.11.1}/lib/src/compiler/tests/testdata/warnings/29.in +0 -0
  384. {yara_x-0.11.0 → yara_x-0.11.1}/lib/src/compiler/tests/testdata/warnings/29.out +0 -0
  385. {yara_x-0.11.0 → yara_x-0.11.1}/lib/src/compiler/tests/testdata/warnings/3.in +0 -0
  386. {yara_x-0.11.0 → yara_x-0.11.1}/lib/src/compiler/tests/testdata/warnings/3.out +0 -0
  387. {yara_x-0.11.0 → yara_x-0.11.1}/lib/src/compiler/tests/testdata/warnings/30.in +0 -0
  388. {yara_x-0.11.0 → yara_x-0.11.1}/lib/src/compiler/tests/testdata/warnings/30.out +0 -0
  389. {yara_x-0.11.0 → yara_x-0.11.1}/lib/src/compiler/tests/testdata/warnings/31.in +0 -0
  390. {yara_x-0.11.0 → yara_x-0.11.1}/lib/src/compiler/tests/testdata/warnings/31.out +0 -0
  391. {yara_x-0.11.0 → yara_x-0.11.1}/lib/src/compiler/tests/testdata/warnings/32.in +0 -0
  392. {yara_x-0.11.0 → yara_x-0.11.1}/lib/src/compiler/tests/testdata/warnings/32.out +0 -0
  393. {yara_x-0.11.0 → yara_x-0.11.1}/lib/src/compiler/tests/testdata/warnings/33.in +0 -0
  394. {yara_x-0.11.0 → yara_x-0.11.1}/lib/src/compiler/tests/testdata/warnings/33.out +0 -0
  395. {yara_x-0.11.0 → yara_x-0.11.1}/lib/src/compiler/tests/testdata/warnings/34.in +0 -0
  396. {yara_x-0.11.0 → yara_x-0.11.1}/lib/src/compiler/tests/testdata/warnings/34.out +0 -0
  397. {yara_x-0.11.0 → yara_x-0.11.1}/lib/src/compiler/tests/testdata/warnings/4.in +0 -0
  398. {yara_x-0.11.0 → yara_x-0.11.1}/lib/src/compiler/tests/testdata/warnings/4.out +0 -0
  399. {yara_x-0.11.0 → yara_x-0.11.1}/lib/src/compiler/tests/testdata/warnings/5.in +0 -0
  400. {yara_x-0.11.0 → yara_x-0.11.1}/lib/src/compiler/tests/testdata/warnings/5.out +0 -0
  401. {yara_x-0.11.0 → yara_x-0.11.1}/lib/src/compiler/tests/testdata/warnings/6.in +0 -0
  402. {yara_x-0.11.0 → yara_x-0.11.1}/lib/src/compiler/tests/testdata/warnings/6.out +0 -0
  403. {yara_x-0.11.0 → yara_x-0.11.1}/lib/src/compiler/tests/testdata/warnings/7.in +0 -0
  404. {yara_x-0.11.0 → yara_x-0.11.1}/lib/src/compiler/tests/testdata/warnings/7.out +0 -0
  405. {yara_x-0.11.0 → yara_x-0.11.1}/lib/src/compiler/tests/testdata/warnings/8.in +0 -0
  406. {yara_x-0.11.0 → yara_x-0.11.1}/lib/src/compiler/tests/testdata/warnings/8.out +0 -0
  407. {yara_x-0.11.0 → yara_x-0.11.1}/lib/src/compiler/tests/testdata/warnings/9.in +0 -0
  408. {yara_x-0.11.0 → yara_x-0.11.1}/lib/src/compiler/tests/testdata/warnings/9.out +0 -0
  409. {yara_x-0.11.0 → yara_x-0.11.1}/lib/src/compiler/tests/testdata/warnings/no_warnings.in +0 -0
  410. {yara_x-0.11.0 → yara_x-0.11.1}/lib/src/compiler/tests/testdata/warnings/no_warnings.out +0 -0
  411. {yara_x-0.11.0 → yara_x-0.11.1}/lib/src/compiler/warnings.rs +0 -0
  412. {yara_x-0.11.0 → yara_x-0.11.1}/lib/src/lib.rs +0 -0
  413. {yara_x-0.11.0 → yara_x-0.11.1}/lib/src/models.rs +0 -0
  414. {yara_x-0.11.0 → yara_x-0.11.1}/lib/src/modules/add_modules.rs +0 -0
  415. {yara_x-0.11.0 → yara_x-0.11.1}/lib/src/modules/console.rs +0 -0
  416. {yara_x-0.11.0 → yara_x-0.11.1}/lib/src/modules/cuckoo/tests/mod.rs +0 -0
  417. {yara_x-0.11.0 → yara_x-0.11.1}/lib/src/modules/cuckoo/tests/testdata/1.json +0 -0
  418. {yara_x-0.11.0 → yara_x-0.11.1}/lib/src/modules/cuckoo/tests/testdata/1.yar +0 -0
  419. {yara_x-0.11.0 → yara_x-0.11.1}/lib/src/modules/cuckoo/tests/testdata/2.json +0 -0
  420. {yara_x-0.11.0 → yara_x-0.11.1}/lib/src/modules/cuckoo/tests/testdata/2.yar +0 -0
  421. {yara_x-0.11.0 → yara_x-0.11.1}/lib/src/modules/dotnet/mod.rs +0 -0
  422. {yara_x-0.11.0 → yara_x-0.11.1}/lib/src/modules/dotnet/parser.rs +0 -0
  423. {yara_x-0.11.0 → yara_x-0.11.1}/lib/src/modules/dotnet/tests/testdata/605ebe5b5f4b94e1a73e0ad1162bd542e5cb948d1a4ea5a575a14d6b9d6ee849.in +0 -0
  424. {yara_x-0.11.0 → yara_x-0.11.1}/lib/src/modules/dotnet/tests/testdata/86a1e48cfc843eabfe1b468ef9358c1068950f849c612ab808225b359db0bb8c.in +0 -0
  425. {yara_x-0.11.0 → yara_x-0.11.1}/lib/src/modules/elf/mod.rs +0 -0
  426. {yara_x-0.11.0 → yara_x-0.11.1}/lib/src/modules/elf/parser.rs +0 -0
  427. {yara_x-0.11.0 → yara_x-0.11.1}/lib/src/modules/elf/tests/mod.rs +0 -0
  428. {yara_x-0.11.0 → yara_x-0.11.1}/lib/src/modules/hash/mod.rs +0 -0
  429. {yara_x-0.11.0 → yara_x-0.11.1}/lib/src/modules/hash/tests/mod.rs +0 -0
  430. {yara_x-0.11.0 → yara_x-0.11.1}/lib/src/modules/lnk/mod.rs +0 -0
  431. {yara_x-0.11.0 → yara_x-0.11.1}/lib/src/modules/lnk/parser.rs +0 -0
  432. {yara_x-0.11.0 → yara_x-0.11.1}/lib/src/modules/macho/mod.rs +0 -0
  433. {yara_x-0.11.0 → yara_x-0.11.1}/lib/src/modules/macho/parser.rs +0 -0
  434. {yara_x-0.11.0 → yara_x-0.11.1}/lib/src/modules/macho/tests/mod.rs +0 -0
  435. {yara_x-0.11.0 → yara_x-0.11.1}/lib/src/modules/magic/mod.rs +0 -0
  436. {yara_x-0.11.0 → yara_x-0.11.1}/lib/src/modules/magic/tests/mod.rs +0 -0
  437. {yara_x-0.11.0 → yara_x-0.11.1}/lib/src/modules/math.rs +0 -0
  438. {yara_x-0.11.0 → yara_x-0.11.1}/lib/src/modules/mod.rs +0 -0
  439. {yara_x-0.11.0 → yara_x-0.11.1}/lib/src/modules/modules.rs +0 -0
  440. {yara_x-0.11.0 → yara_x-0.11.1}/lib/src/modules/pe/asn1.rs +0 -0
  441. {yara_x-0.11.0 → yara_x-0.11.1}/lib/src/modules/pe/authenticode.rs +0 -0
  442. {yara_x-0.11.0 → yara_x-0.11.1}/lib/src/modules/pe/mod.rs +0 -0
  443. {yara_x-0.11.0 → yara_x-0.11.1}/lib/src/modules/pe/rva2off.rs +0 -0
  444. {yara_x-0.11.0 → yara_x-0.11.1}/lib/src/modules/pe/tests/mod.rs +0 -0
  445. {yara_x-0.11.0 → yara_x-0.11.1}/lib/src/modules/protos/console.proto +0 -0
  446. {yara_x-0.11.0 → yara_x-0.11.1}/lib/src/modules/protos/cuckoo.proto +0 -0
  447. {yara_x-0.11.0 → yara_x-0.11.1}/lib/src/modules/protos/dotnet.proto +0 -0
  448. {yara_x-0.11.0 → yara_x-0.11.1}/lib/src/modules/protos/elf.proto +0 -0
  449. {yara_x-0.11.0 → yara_x-0.11.1}/lib/src/modules/protos/hash.proto +0 -0
  450. {yara_x-0.11.0 → yara_x-0.11.1}/lib/src/modules/protos/lnk.proto +0 -0
  451. {yara_x-0.11.0 → yara_x-0.11.1}/lib/src/modules/protos/macho.proto +0 -0
  452. {yara_x-0.11.0 → yara_x-0.11.1}/lib/src/modules/protos/magic.proto +0 -0
  453. {yara_x-0.11.0 → yara_x-0.11.1}/lib/src/modules/protos/math.proto +0 -0
  454. {yara_x-0.11.0 → yara_x-0.11.1}/lib/src/modules/protos/mods.proto +0 -0
  455. {yara_x-0.11.0 → yara_x-0.11.1}/lib/src/modules/protos/pe.proto +0 -0
  456. {yara_x-0.11.0 → yara_x-0.11.1}/lib/src/modules/protos/string.proto +0 -0
  457. {yara_x-0.11.0 → yara_x-0.11.1}/lib/src/modules/protos/test_proto2.proto +0 -0
  458. {yara_x-0.11.0 → yara_x-0.11.1}/lib/src/modules/protos/test_proto3.proto +0 -0
  459. {yara_x-0.11.0 → yara_x-0.11.1}/lib/src/modules/protos/text.proto +0 -0
  460. {yara_x-0.11.0 → yara_x-0.11.1}/lib/src/modules/protos/time.proto +0 -0
  461. {yara_x-0.11.0 → yara_x-0.11.1}/lib/src/modules/protos/yaml.proto +0 -0
  462. {yara_x-0.11.0 → yara_x-0.11.1}/lib/src/modules/protos/yara.proto +0 -0
  463. {yara_x-0.11.0 → yara_x-0.11.1}/lib/src/modules/string.rs +0 -0
  464. {yara_x-0.11.0 → yara_x-0.11.1}/lib/src/modules/test_proto2/mod.rs +0 -0
  465. {yara_x-0.11.0 → yara_x-0.11.1}/lib/src/modules/test_proto2/tests/mod.rs +0 -0
  466. {yara_x-0.11.0 → yara_x-0.11.1}/lib/src/modules/test_proto3/mod.rs +0 -0
  467. {yara_x-0.11.0 → yara_x-0.11.1}/lib/src/modules/tests.rs +0 -0
  468. {yara_x-0.11.0 → yara_x-0.11.1}/lib/src/modules/text.rs +0 -0
  469. {yara_x-0.11.0 → yara_x-0.11.1}/lib/src/modules/time.rs +0 -0
  470. {yara_x-0.11.0 → yara_x-0.11.1}/lib/src/re/bitmapset.rs +0 -0
  471. {yara_x-0.11.0 → yara_x-0.11.1}/lib/src/re/fast/compiler.rs +0 -0
  472. {yara_x-0.11.0 → yara_x-0.11.1}/lib/src/re/fast/fastvm.rs +0 -0
  473. {yara_x-0.11.0 → yara_x-0.11.1}/lib/src/re/fast/instr.rs +0 -0
  474. {yara_x-0.11.0 → yara_x-0.11.1}/lib/src/re/fast/mod.rs +0 -0
  475. {yara_x-0.11.0 → yara_x-0.11.1}/lib/src/re/hir.rs +0 -0
  476. {yara_x-0.11.0 → yara_x-0.11.1}/lib/src/re/mod.rs +0 -0
  477. {yara_x-0.11.0 → yara_x-0.11.1}/lib/src/re/parser.rs +0 -0
  478. {yara_x-0.11.0 → yara_x-0.11.1}/lib/src/re/thompson/compiler.rs +0 -0
  479. {yara_x-0.11.0 → yara_x-0.11.1}/lib/src/re/thompson/instr.rs +0 -0
  480. {yara_x-0.11.0 → yara_x-0.11.1}/lib/src/re/thompson/mod.rs +0 -0
  481. {yara_x-0.11.0 → yara_x-0.11.1}/lib/src/re/thompson/pikevm.rs +0 -0
  482. {yara_x-0.11.0 → yara_x-0.11.1}/lib/src/re/thompson/tests.rs +0 -0
  483. {yara_x-0.11.0 → yara_x-0.11.1}/lib/src/scanner/context.rs +0 -0
  484. {yara_x-0.11.0 → yara_x-0.11.1}/lib/src/scanner/matches.rs +0 -0
  485. {yara_x-0.11.0 → yara_x-0.11.1}/lib/src/scanner/mod.rs +0 -0
  486. {yara_x-0.11.0 → yara_x-0.11.1}/lib/src/scanner/tests.rs +0 -0
  487. {yara_x-0.11.0 → yara_x-0.11.1}/lib/src/string_pool.rs +0 -0
  488. {yara_x-0.11.0 → yara_x-0.11.1}/lib/src/symbols/mod.rs +0 -0
  489. {yara_x-0.11.0 → yara_x-0.11.1}/lib/src/tests/mod.rs +0 -0
  490. {yara_x-0.11.0 → yara_x-0.11.1}/lib/src/tests/testdata/jumps.bin +0 -0
  491. {yara_x-0.11.0 → yara_x-0.11.1}/lib/src/types/array.rs +0 -0
  492. {yara_x-0.11.0 → yara_x-0.11.1}/lib/src/types/func.rs +0 -0
  493. {yara_x-0.11.0 → yara_x-0.11.1}/lib/src/types/map.rs +0 -0
  494. {yara_x-0.11.0 → yara_x-0.11.1}/lib/src/types/mod.rs +0 -0
  495. {yara_x-0.11.0 → yara_x-0.11.1}/lib/src/types/structure.rs +0 -0
  496. {yara_x-0.11.0 → yara_x-0.11.1}/lib/src/variables.rs +0 -0
  497. {yara_x-0.11.0 → yara_x-0.11.1}/lib/src/wasm/builder.rs +0 -0
  498. {yara_x-0.11.0 → yara_x-0.11.1}/lib/src/wasm/mod.rs +0 -0
  499. {yara_x-0.11.0 → yara_x-0.11.1}/lib/src/wasm/string.rs +0 -0
  500. {yara_x-0.11.0 → yara_x-0.11.1}/macros/Cargo.toml +0 -0
  501. {yara_x-0.11.0 → yara_x-0.11.1}/macros/src/error.rs +0 -0
  502. {yara_x-0.11.0 → yara_x-0.11.1}/macros/src/lib.rs +0 -0
  503. {yara_x-0.11.0 → yara_x-0.11.1}/macros/src/module_export.rs +0 -0
  504. {yara_x-0.11.0 → yara_x-0.11.1}/macros/src/module_main.rs +0 -0
  505. {yara_x-0.11.0 → yara_x-0.11.1}/macros/src/wasm_export.rs +0 -0
  506. {yara_x-0.11.0 → yara_x-0.11.1}/parser/Cargo.toml +0 -0
  507. {yara_x-0.11.0 → yara_x-0.11.1}/parser/README.md +0 -0
  508. {yara_x-0.11.0 → yara_x-0.11.1}/parser/src/ast/ascii_tree.rs +0 -0
  509. {yara_x-0.11.0 → yara_x-0.11.1}/parser/src/ast/cst2ast.rs +0 -0
  510. {yara_x-0.11.0 → yara_x-0.11.1}/parser/src/ast/errors.rs +0 -0
  511. {yara_x-0.11.0 → yara_x-0.11.1}/parser/src/ast/mod.rs +0 -0
  512. {yara_x-0.11.0 → yara_x-0.11.1}/parser/src/cst/mod.rs +0 -0
  513. {yara_x-0.11.0 → yara_x-0.11.1}/parser/src/cst/syntax_kind.rs +0 -0
  514. {yara_x-0.11.0 → yara_x-0.11.1}/parser/src/cst/syntax_stream.rs +0 -0
  515. {yara_x-0.11.0 → yara_x-0.11.1}/parser/src/cst/tests.rs +0 -0
  516. {yara_x-0.11.0 → yara_x-0.11.1}/parser/src/lib.rs +0 -0
  517. {yara_x-0.11.0 → yara_x-0.11.1}/parser/src/parser/mod.rs +0 -0
  518. {yara_x-0.11.0 → yara_x-0.11.1}/parser/src/parser/tests/mod.rs +0 -0
  519. {yara_x-0.11.0 → yara_x-0.11.1}/parser/src/parser/tests/testdata/arithmetic-ops.ast +0 -0
  520. {yara_x-0.11.0 → yara_x-0.11.1}/parser/src/parser/tests/testdata/arithmetic-ops.cst +0 -0
  521. {yara_x-0.11.0 → yara_x-0.11.1}/parser/src/parser/tests/testdata/arithmetic-ops.in +0 -0
  522. {yara_x-0.11.0 → yara_x-0.11.1}/parser/src/parser/tests/testdata/basic-1.ast +0 -0
  523. {yara_x-0.11.0 → yara_x-0.11.1}/parser/src/parser/tests/testdata/basic-1.cst +0 -0
  524. {yara_x-0.11.0 → yara_x-0.11.1}/parser/src/parser/tests/testdata/basic-1.in +0 -0
  525. {yara_x-0.11.0 → yara_x-0.11.1}/parser/src/parser/tests/testdata/basic-2.ast +0 -0
  526. {yara_x-0.11.0 → yara_x-0.11.1}/parser/src/parser/tests/testdata/basic-2.cst +0 -0
  527. {yara_x-0.11.0 → yara_x-0.11.1}/parser/src/parser/tests/testdata/basic-2.in +0 -0
  528. {yara_x-0.11.0 → yara_x-0.11.1}/parser/src/parser/tests/testdata/basic-3.ast +0 -0
  529. {yara_x-0.11.0 → yara_x-0.11.1}/parser/src/parser/tests/testdata/basic-3.cst +0 -0
  530. {yara_x-0.11.0 → yara_x-0.11.1}/parser/src/parser/tests/testdata/basic-3.in +0 -0
  531. {yara_x-0.11.0 → yara_x-0.11.1}/parser/src/parser/tests/testdata/basic-4.ast +0 -0
  532. {yara_x-0.11.0 → yara_x-0.11.1}/parser/src/parser/tests/testdata/basic-4.cst +0 -0
  533. {yara_x-0.11.0 → yara_x-0.11.1}/parser/src/parser/tests/testdata/basic-4.in +0 -0
  534. {yara_x-0.11.0 → yara_x-0.11.1}/parser/src/parser/tests/testdata/basic-error-1.ast +0 -0
  535. {yara_x-0.11.0 → yara_x-0.11.1}/parser/src/parser/tests/testdata/basic-error-1.cst +0 -0
  536. {yara_x-0.11.0 → yara_x-0.11.1}/parser/src/parser/tests/testdata/basic-error-1.in +0 -0
  537. {yara_x-0.11.0 → yara_x-0.11.1}/parser/src/parser/tests/testdata/basic-error-2.ast +0 -0
  538. {yara_x-0.11.0 → yara_x-0.11.1}/parser/src/parser/tests/testdata/basic-error-2.cst +0 -0
  539. {yara_x-0.11.0 → yara_x-0.11.1}/parser/src/parser/tests/testdata/basic-error-2.in +0 -0
  540. {yara_x-0.11.0 → yara_x-0.11.1}/parser/src/parser/tests/testdata/basic-error-3.ast +0 -0
  541. {yara_x-0.11.0 → yara_x-0.11.1}/parser/src/parser/tests/testdata/basic-error-3.cst +0 -0
  542. {yara_x-0.11.0 → yara_x-0.11.1}/parser/src/parser/tests/testdata/basic-error-3.in +0 -0
  543. {yara_x-0.11.0 → yara_x-0.11.1}/parser/src/parser/tests/testdata/basic-error-4.ast +0 -0
  544. {yara_x-0.11.0 → yara_x-0.11.1}/parser/src/parser/tests/testdata/basic-error-4.cst +0 -0
  545. {yara_x-0.11.0 → yara_x-0.11.1}/parser/src/parser/tests/testdata/basic-error-4.in +0 -0
  546. {yara_x-0.11.0 → yara_x-0.11.1}/parser/src/parser/tests/testdata/basic-error-5.ast +0 -0
  547. {yara_x-0.11.0 → yara_x-0.11.1}/parser/src/parser/tests/testdata/basic-error-5.cst +0 -0
  548. {yara_x-0.11.0 → yara_x-0.11.1}/parser/src/parser/tests/testdata/basic-error-5.in +0 -0
  549. {yara_x-0.11.0 → yara_x-0.11.1}/parser/src/parser/tests/testdata/bitwise-ops-error-1.ast +0 -0
  550. {yara_x-0.11.0 → yara_x-0.11.1}/parser/src/parser/tests/testdata/bitwise-ops-error-1.cst +0 -0
  551. {yara_x-0.11.0 → yara_x-0.11.1}/parser/src/parser/tests/testdata/bitwise-ops-error-1.in +0 -0
  552. {yara_x-0.11.0 → yara_x-0.11.1}/parser/src/parser/tests/testdata/bitwise-ops.ast +0 -0
  553. {yara_x-0.11.0 → yara_x-0.11.1}/parser/src/parser/tests/testdata/bitwise-ops.cst +0 -0
  554. {yara_x-0.11.0 → yara_x-0.11.1}/parser/src/parser/tests/testdata/bitwise-ops.in +0 -0
  555. {yara_x-0.11.0 → yara_x-0.11.1}/parser/src/parser/tests/testdata/comments.ast +0 -0
  556. {yara_x-0.11.0 → yara_x-0.11.1}/parser/src/parser/tests/testdata/comments.cst +0 -0
  557. {yara_x-0.11.0 → yara_x-0.11.1}/parser/src/parser/tests/testdata/comments.in +0 -0
  558. {yara_x-0.11.0 → yara_x-0.11.1}/parser/src/parser/tests/testdata/expr-1.ast +0 -0
  559. {yara_x-0.11.0 → yara_x-0.11.1}/parser/src/parser/tests/testdata/expr-1.cst +0 -0
  560. {yara_x-0.11.0 → yara_x-0.11.1}/parser/src/parser/tests/testdata/expr-1.in +0 -0
  561. {yara_x-0.11.0 → yara_x-0.11.1}/parser/src/parser/tests/testdata/expr-2.ast +0 -0
  562. {yara_x-0.11.0 → yara_x-0.11.1}/parser/src/parser/tests/testdata/expr-2.cst +0 -0
  563. {yara_x-0.11.0 → yara_x-0.11.1}/parser/src/parser/tests/testdata/expr-2.in +0 -0
  564. {yara_x-0.11.0 → yara_x-0.11.1}/parser/src/parser/tests/testdata/expr-3.ast +0 -0
  565. {yara_x-0.11.0 → yara_x-0.11.1}/parser/src/parser/tests/testdata/expr-3.cst +0 -0
  566. {yara_x-0.11.0 → yara_x-0.11.1}/parser/src/parser/tests/testdata/expr-3.in +0 -0
  567. {yara_x-0.11.0 → yara_x-0.11.1}/parser/src/parser/tests/testdata/expr-4.ast +0 -0
  568. {yara_x-0.11.0 → yara_x-0.11.1}/parser/src/parser/tests/testdata/expr-4.cst +0 -0
  569. {yara_x-0.11.0 → yara_x-0.11.1}/parser/src/parser/tests/testdata/expr-4.in +0 -0
  570. {yara_x-0.11.0 → yara_x-0.11.1}/parser/src/parser/tests/testdata/expr-5.ast +0 -0
  571. {yara_x-0.11.0 → yara_x-0.11.1}/parser/src/parser/tests/testdata/expr-5.cst +0 -0
  572. {yara_x-0.11.0 → yara_x-0.11.1}/parser/src/parser/tests/testdata/expr-5.in +0 -0
  573. {yara_x-0.11.0 → yara_x-0.11.1}/parser/src/parser/tests/testdata/expr-6.ast +0 -0
  574. {yara_x-0.11.0 → yara_x-0.11.1}/parser/src/parser/tests/testdata/expr-6.cst +0 -0
  575. {yara_x-0.11.0 → yara_x-0.11.1}/parser/src/parser/tests/testdata/expr-6.in +0 -0
  576. {yara_x-0.11.0 → yara_x-0.11.1}/parser/src/parser/tests/testdata/expr-error-1.ast +0 -0
  577. {yara_x-0.11.0 → yara_x-0.11.1}/parser/src/parser/tests/testdata/expr-error-1.cst +0 -0
  578. {yara_x-0.11.0 → yara_x-0.11.1}/parser/src/parser/tests/testdata/expr-error-1.in +0 -0
  579. {yara_x-0.11.0 → yara_x-0.11.1}/parser/src/parser/tests/testdata/for-1.ast +0 -0
  580. {yara_x-0.11.0 → yara_x-0.11.1}/parser/src/parser/tests/testdata/for-1.cst +0 -0
  581. {yara_x-0.11.0 → yara_x-0.11.1}/parser/src/parser/tests/testdata/for-1.in +0 -0
  582. {yara_x-0.11.0 → yara_x-0.11.1}/parser/src/parser/tests/testdata/for-2.ast +0 -0
  583. {yara_x-0.11.0 → yara_x-0.11.1}/parser/src/parser/tests/testdata/for-2.cst +0 -0
  584. {yara_x-0.11.0 → yara_x-0.11.1}/parser/src/parser/tests/testdata/for-2.in +0 -0
  585. {yara_x-0.11.0 → yara_x-0.11.1}/parser/src/parser/tests/testdata/for-3.ast +0 -0
  586. {yara_x-0.11.0 → yara_x-0.11.1}/parser/src/parser/tests/testdata/for-3.cst +0 -0
  587. {yara_x-0.11.0 → yara_x-0.11.1}/parser/src/parser/tests/testdata/for-3.in +0 -0
  588. {yara_x-0.11.0 → yara_x-0.11.1}/parser/src/parser/tests/testdata/for-4.ast +0 -0
  589. {yara_x-0.11.0 → yara_x-0.11.1}/parser/src/parser/tests/testdata/for-4.cst +0 -0
  590. {yara_x-0.11.0 → yara_x-0.11.1}/parser/src/parser/tests/testdata/for-4.in +0 -0
  591. {yara_x-0.11.0 → yara_x-0.11.1}/parser/src/parser/tests/testdata/for-5.ast +0 -0
  592. {yara_x-0.11.0 → yara_x-0.11.1}/parser/src/parser/tests/testdata/for-5.cst +0 -0
  593. {yara_x-0.11.0 → yara_x-0.11.1}/parser/src/parser/tests/testdata/for-5.in +0 -0
  594. {yara_x-0.11.0 → yara_x-0.11.1}/parser/src/parser/tests/testdata/for-error-1.ast +0 -0
  595. {yara_x-0.11.0 → yara_x-0.11.1}/parser/src/parser/tests/testdata/for-error-1.cst +0 -0
  596. {yara_x-0.11.0 → yara_x-0.11.1}/parser/src/parser/tests/testdata/for-error-1.in +0 -0
  597. {yara_x-0.11.0 → yara_x-0.11.1}/parser/src/parser/tests/testdata/func-call.ast +0 -0
  598. {yara_x-0.11.0 → yara_x-0.11.1}/parser/src/parser/tests/testdata/func-call.cst +0 -0
  599. {yara_x-0.11.0 → yara_x-0.11.1}/parser/src/parser/tests/testdata/func-call.in +0 -0
  600. {yara_x-0.11.0 → yara_x-0.11.1}/parser/src/parser/tests/testdata/hex-patterns-1.ast +0 -0
  601. {yara_x-0.11.0 → yara_x-0.11.1}/parser/src/parser/tests/testdata/hex-patterns-1.cst +0 -0
  602. {yara_x-0.11.0 → yara_x-0.11.1}/parser/src/parser/tests/testdata/hex-patterns-1.in +0 -0
  603. {yara_x-0.11.0 → yara_x-0.11.1}/parser/src/parser/tests/testdata/hex-patterns-2.ast +0 -0
  604. {yara_x-0.11.0 → yara_x-0.11.1}/parser/src/parser/tests/testdata/hex-patterns-2.cst +0 -0
  605. {yara_x-0.11.0 → yara_x-0.11.1}/parser/src/parser/tests/testdata/hex-patterns-2.in +0 -0
  606. {yara_x-0.11.0 → yara_x-0.11.1}/parser/src/parser/tests/testdata/hex-patterns-3.ast +0 -0
  607. {yara_x-0.11.0 → yara_x-0.11.1}/parser/src/parser/tests/testdata/hex-patterns-3.cst +0 -0
  608. {yara_x-0.11.0 → yara_x-0.11.1}/parser/src/parser/tests/testdata/hex-patterns-3.in +0 -0
  609. {yara_x-0.11.0 → yara_x-0.11.1}/parser/src/parser/tests/testdata/hex-patterns-error-1.ast +0 -0
  610. {yara_x-0.11.0 → yara_x-0.11.1}/parser/src/parser/tests/testdata/hex-patterns-error-1.cst +0 -0
  611. {yara_x-0.11.0 → yara_x-0.11.1}/parser/src/parser/tests/testdata/hex-patterns-error-1.in +0 -0
  612. {yara_x-0.11.0 → yara_x-0.11.1}/parser/src/parser/tests/testdata/hex-patterns-error-2.ast +0 -0
  613. {yara_x-0.11.0 → yara_x-0.11.1}/parser/src/parser/tests/testdata/hex-patterns-error-2.cst +0 -0
  614. {yara_x-0.11.0 → yara_x-0.11.1}/parser/src/parser/tests/testdata/hex-patterns-error-2.in +0 -0
  615. {yara_x-0.11.0 → yara_x-0.11.1}/parser/src/parser/tests/testdata/meta-error-1.ast +0 -0
  616. {yara_x-0.11.0 → yara_x-0.11.1}/parser/src/parser/tests/testdata/meta-error-1.cst +0 -0
  617. {yara_x-0.11.0 → yara_x-0.11.1}/parser/src/parser/tests/testdata/meta-error-1.in +0 -0
  618. {yara_x-0.11.0 → yara_x-0.11.1}/parser/src/parser/tests/testdata/meta-error-2.ast +0 -0
  619. {yara_x-0.11.0 → yara_x-0.11.1}/parser/src/parser/tests/testdata/meta-error-2.cst +0 -0
  620. {yara_x-0.11.0 → yara_x-0.11.1}/parser/src/parser/tests/testdata/meta-error-2.in +0 -0
  621. {yara_x-0.11.0 → yara_x-0.11.1}/parser/src/parser/tests/testdata/meta-error-3.ast +0 -0
  622. {yara_x-0.11.0 → yara_x-0.11.1}/parser/src/parser/tests/testdata/meta-error-3.cst +0 -0
  623. {yara_x-0.11.0 → yara_x-0.11.1}/parser/src/parser/tests/testdata/meta-error-3.in +0 -0
  624. {yara_x-0.11.0 → yara_x-0.11.1}/parser/src/parser/tests/testdata/meta-error-4.ast +0 -0
  625. {yara_x-0.11.0 → yara_x-0.11.1}/parser/src/parser/tests/testdata/meta-error-4.cst +0 -0
  626. {yara_x-0.11.0 → yara_x-0.11.1}/parser/src/parser/tests/testdata/meta-error-4.in +0 -0
  627. {yara_x-0.11.0 → yara_x-0.11.1}/parser/src/parser/tests/testdata/meta-error-5.ast +0 -0
  628. {yara_x-0.11.0 → yara_x-0.11.1}/parser/src/parser/tests/testdata/meta-error-5.cst +0 -0
  629. {yara_x-0.11.0 → yara_x-0.11.1}/parser/src/parser/tests/testdata/meta-error-5.in +0 -0
  630. {yara_x-0.11.0 → yara_x-0.11.1}/parser/src/parser/tests/testdata/meta-error-6.ast +0 -0
  631. {yara_x-0.11.0 → yara_x-0.11.1}/parser/src/parser/tests/testdata/meta-error-6.cst +0 -0
  632. {yara_x-0.11.0 → yara_x-0.11.1}/parser/src/parser/tests/testdata/meta-error-6.in +0 -0
  633. {yara_x-0.11.0 → yara_x-0.11.1}/parser/src/parser/tests/testdata/meta.ast +0 -0
  634. {yara_x-0.11.0 → yara_x-0.11.1}/parser/src/parser/tests/testdata/meta.cst +0 -0
  635. {yara_x-0.11.0 → yara_x-0.11.1}/parser/src/parser/tests/testdata/meta.in +0 -0
  636. {yara_x-0.11.0 → yara_x-0.11.1}/parser/src/parser/tests/testdata/of-1.ast +0 -0
  637. {yara_x-0.11.0 → yara_x-0.11.1}/parser/src/parser/tests/testdata/of-1.cst +0 -0
  638. {yara_x-0.11.0 → yara_x-0.11.1}/parser/src/parser/tests/testdata/of-1.in +0 -0
  639. {yara_x-0.11.0 → yara_x-0.11.1}/parser/src/parser/tests/testdata/of-error-1.ast +0 -0
  640. {yara_x-0.11.0 → yara_x-0.11.1}/parser/src/parser/tests/testdata/of-error-1.cst +0 -0
  641. {yara_x-0.11.0 → yara_x-0.11.1}/parser/src/parser/tests/testdata/of-error-1.in +0 -0
  642. {yara_x-0.11.0 → yara_x-0.11.1}/parser/src/parser/tests/testdata/pattern-mods-1.ast +0 -0
  643. {yara_x-0.11.0 → yara_x-0.11.1}/parser/src/parser/tests/testdata/pattern-mods-1.cst +0 -0
  644. {yara_x-0.11.0 → yara_x-0.11.1}/parser/src/parser/tests/testdata/pattern-mods-1.in +0 -0
  645. {yara_x-0.11.0 → yara_x-0.11.1}/parser/src/parser/tests/testdata/pattern-mods-error-1.ast +0 -0
  646. {yara_x-0.11.0 → yara_x-0.11.1}/parser/src/parser/tests/testdata/pattern-mods-error-1.cst +0 -0
  647. {yara_x-0.11.0 → yara_x-0.11.1}/parser/src/parser/tests/testdata/pattern-mods-error-1.in +0 -0
  648. {yara_x-0.11.0 → yara_x-0.11.1}/parser/src/parser/tests/testdata/patterns-1.ast +0 -0
  649. {yara_x-0.11.0 → yara_x-0.11.1}/parser/src/parser/tests/testdata/patterns-1.cst +0 -0
  650. {yara_x-0.11.0 → yara_x-0.11.1}/parser/src/parser/tests/testdata/patterns-1.in +0 -0
  651. {yara_x-0.11.0 → yara_x-0.11.1}/parser/src/parser/tests/testdata/patterns-2.ast +0 -0
  652. {yara_x-0.11.0 → yara_x-0.11.1}/parser/src/parser/tests/testdata/patterns-2.cst +0 -0
  653. {yara_x-0.11.0 → yara_x-0.11.1}/parser/src/parser/tests/testdata/patterns-2.in +0 -0
  654. {yara_x-0.11.0 → yara_x-0.11.1}/parser/src/parser/tests/testdata/patterns-3.ast +0 -0
  655. {yara_x-0.11.0 → yara_x-0.11.1}/parser/src/parser/tests/testdata/patterns-3.cst +0 -0
  656. {yara_x-0.11.0 → yara_x-0.11.1}/parser/src/parser/tests/testdata/patterns-3.in +0 -0
  657. {yara_x-0.11.0 → yara_x-0.11.1}/parser/src/parser/tests/testdata/patterns-error-1.ast +0 -0
  658. {yara_x-0.11.0 → yara_x-0.11.1}/parser/src/parser/tests/testdata/patterns-error-1.cst +0 -0
  659. {yara_x-0.11.0 → yara_x-0.11.1}/parser/src/parser/tests/testdata/patterns-error-1.in +0 -0
  660. {yara_x-0.11.0 → yara_x-0.11.1}/parser/src/parser/tests/testdata/patterns-error-2.ast +0 -0
  661. {yara_x-0.11.0 → yara_x-0.11.1}/parser/src/parser/tests/testdata/patterns-error-2.cst +0 -0
  662. {yara_x-0.11.0 → yara_x-0.11.1}/parser/src/parser/tests/testdata/patterns-error-2.in +0 -0
  663. {yara_x-0.11.0 → yara_x-0.11.1}/parser/src/parser/tests/testdata/patterns-error-3.ast +0 -0
  664. {yara_x-0.11.0 → yara_x-0.11.1}/parser/src/parser/tests/testdata/patterns-error-3.cst +0 -0
  665. {yara_x-0.11.0 → yara_x-0.11.1}/parser/src/parser/tests/testdata/patterns-error-3.in +0 -0
  666. {yara_x-0.11.0 → yara_x-0.11.1}/parser/src/parser/tests/testdata/patterns-error-4.ast +0 -0
  667. {yara_x-0.11.0 → yara_x-0.11.1}/parser/src/parser/tests/testdata/patterns-error-4.cst +0 -0
  668. {yara_x-0.11.0 → yara_x-0.11.1}/parser/src/parser/tests/testdata/patterns-error-4.in +0 -0
  669. {yara_x-0.11.0 → yara_x-0.11.1}/parser/src/parser/tests/testdata/patterns-error-5.ast +0 -0
  670. {yara_x-0.11.0 → yara_x-0.11.1}/parser/src/parser/tests/testdata/patterns-error-5.cst +0 -0
  671. {yara_x-0.11.0 → yara_x-0.11.1}/parser/src/parser/tests/testdata/patterns-error-5.in +0 -0
  672. {yara_x-0.11.0 → yara_x-0.11.1}/parser/src/parser/tests/testdata/patterns-error-6.ast +0 -0
  673. {yara_x-0.11.0 → yara_x-0.11.1}/parser/src/parser/tests/testdata/patterns-error-6.cst +0 -0
  674. {yara_x-0.11.0 → yara_x-0.11.1}/parser/src/parser/tests/testdata/patterns-error-6.in +0 -0
  675. {yara_x-0.11.0 → yara_x-0.11.1}/parser/src/parser/tests/testdata/patterns-error-7.ast +0 -0
  676. {yara_x-0.11.0 → yara_x-0.11.1}/parser/src/parser/tests/testdata/patterns-error-7.cst +0 -0
  677. {yara_x-0.11.0 → yara_x-0.11.1}/parser/src/parser/tests/testdata/patterns-error-7.in +0 -0
  678. {yara_x-0.11.0 → yara_x-0.11.1}/parser/src/parser/tests/testdata/rule-mods-1.ast +0 -0
  679. {yara_x-0.11.0 → yara_x-0.11.1}/parser/src/parser/tests/testdata/rule-mods-1.cst +0 -0
  680. {yara_x-0.11.0 → yara_x-0.11.1}/parser/src/parser/tests/testdata/rule-mods-1.in +0 -0
  681. {yara_x-0.11.0 → yara_x-0.11.1}/parser/src/parser/tests/testdata/rule-tags-error-1.ast +0 -0
  682. {yara_x-0.11.0 → yara_x-0.11.1}/parser/src/parser/tests/testdata/rule-tags-error-1.cst +0 -0
  683. {yara_x-0.11.0 → yara_x-0.11.1}/parser/src/parser/tests/testdata/rule-tags-error-1.in +0 -0
  684. {yara_x-0.11.0 → yara_x-0.11.1}/parser/src/parser/tests/testdata/rule-tags-error-2.ast +0 -0
  685. {yara_x-0.11.0 → yara_x-0.11.1}/parser/src/parser/tests/testdata/rule-tags-error-2.cst +0 -0
  686. {yara_x-0.11.0 → yara_x-0.11.1}/parser/src/parser/tests/testdata/rule-tags-error-2.in +0 -0
  687. {yara_x-0.11.0 → yara_x-0.11.1}/parser/src/parser/tests/testdata/rule-tags-error-3.ast +0 -0
  688. {yara_x-0.11.0 → yara_x-0.11.1}/parser/src/parser/tests/testdata/rule-tags-error-3.cst +0 -0
  689. {yara_x-0.11.0 → yara_x-0.11.1}/parser/src/parser/tests/testdata/rule-tags-error-3.in +0 -0
  690. {yara_x-0.11.0 → yara_x-0.11.1}/parser/src/parser/tests/testdata/rule-tags.ast +0 -0
  691. {yara_x-0.11.0 → yara_x-0.11.1}/parser/src/parser/tests/testdata/rule-tags.cst +0 -0
  692. {yara_x-0.11.0 → yara_x-0.11.1}/parser/src/parser/tests/testdata/rule-tags.in +0 -0
  693. {yara_x-0.11.0 → yara_x-0.11.1}/parser/src/parser/tests/testdata/with-1.ast +0 -0
  694. {yara_x-0.11.0 → yara_x-0.11.1}/parser/src/parser/tests/testdata/with-1.cst +0 -0
  695. {yara_x-0.11.0 → yara_x-0.11.1}/parser/src/parser/tests/testdata/with-1.in +0 -0
  696. {yara_x-0.11.0 → yara_x-0.11.1}/parser/src/parser/tests/testdata/with-2.ast +0 -0
  697. {yara_x-0.11.0 → yara_x-0.11.1}/parser/src/parser/tests/testdata/with-2.cst +0 -0
  698. {yara_x-0.11.0 → yara_x-0.11.1}/parser/src/parser/tests/testdata/with-2.in +0 -0
  699. {yara_x-0.11.0 → yara_x-0.11.1}/parser/src/parser/tests/testdata/with-error-1.ast +0 -0
  700. {yara_x-0.11.0 → yara_x-0.11.1}/parser/src/parser/tests/testdata/with-error-1.cst +0 -0
  701. {yara_x-0.11.0 → yara_x-0.11.1}/parser/src/parser/tests/testdata/with-error-1.in +0 -0
  702. {yara_x-0.11.0 → yara_x-0.11.1}/parser/src/parser/tests/testdata/with-error-2.ast +0 -0
  703. {yara_x-0.11.0 → yara_x-0.11.1}/parser/src/parser/tests/testdata/with-error-2.cst +0 -0
  704. {yara_x-0.11.0 → yara_x-0.11.1}/parser/src/parser/tests/testdata/with-error-2.in +0 -0
  705. {yara_x-0.11.0 → yara_x-0.11.1}/parser/src/parser/tests/testdata/with-error-3.ast +0 -0
  706. {yara_x-0.11.0 → yara_x-0.11.1}/parser/src/parser/tests/testdata/with-error-3.cst +0 -0
  707. {yara_x-0.11.0 → yara_x-0.11.1}/parser/src/parser/tests/testdata/with-error-3.in +0 -0
  708. {yara_x-0.11.0 → yara_x-0.11.1}/parser/src/parser/token_stream.rs +0 -0
  709. {yara_x-0.11.0 → yara_x-0.11.1}/parser/src/tokenizer/mod.rs +0 -0
  710. {yara_x-0.11.0 → yara_x-0.11.1}/parser/src/tokenizer/tests.rs +0 -0
  711. {yara_x-0.11.0 → yara_x-0.11.1}/parser/src/tokenizer/tokens.rs +0 -0
  712. {yara_x-0.11.0 → yara_x-0.11.1}/proto/Cargo.toml +0 -0
  713. {yara_x-0.11.0 → yara_x-0.11.1}/proto/README.md +0 -0
  714. {yara_x-0.11.0 → yara_x-0.11.1}/proto/build.rs +0 -0
  715. {yara_x-0.11.0 → yara_x-0.11.1}/proto/src/lib.rs +0 -0
  716. {yara_x-0.11.0 → yara_x-0.11.1}/proto/src/yara.proto +0 -0
  717. {yara_x-0.11.0 → yara_x-0.11.1}/proto-yaml/Cargo.toml +0 -0
  718. {yara_x-0.11.0 → yara_x-0.11.1}/proto-yaml/README.md +0 -0
  719. {yara_x-0.11.0 → yara_x-0.11.1}/proto-yaml/build.rs +0 -0
  720. {yara_x-0.11.0 → yara_x-0.11.1}/proto-yaml/src/lib.rs +0 -0
  721. {yara_x-0.11.0 → yara_x-0.11.1}/proto-yaml/src/tests/mod.rs +0 -0
  722. {yara_x-0.11.0 → yara_x-0.11.1}/proto-yaml/src/tests/test.proto +0 -0
  723. {yara_x-0.11.0 → yara_x-0.11.1}/proto-yaml/src/tests/testdata/1.in +0 -0
  724. {yara_x-0.11.0 → yara_x-0.11.1}/proto-yaml/src/tests/testdata/1.out +0 -0
  725. {yara_x-0.11.0 → yara_x-0.11.1}/proto-yaml/src/yaml.proto +0 -0
  726. {yara_x-0.11.0 → yara_x-0.11.1}/py/Cargo.toml +0 -0
  727. {yara_x-0.11.0 → yara_x-0.11.1}/py/README.md +0 -0
  728. {yara_x-0.11.0 → yara_x-0.11.1}/py/build.rs +0 -0
  729. {yara_x-0.11.0 → yara_x-0.11.1}/py/src/lib.rs +0 -0
  730. {yara_x-0.11.0 → yara_x-0.11.1}/py/tests/test_api.py +0 -0
  731. {yara_x-0.11.0 → yara_x-0.11.1}/py/yara_x.pyi +0 -0
@@ -2981,9 +2981,9 @@ dependencies = [
2981
2981
 
2982
2982
  [[package]]
2983
2983
  name = "serde"
2984
- version = "1.0.210"
2984
+ version = "1.0.215"
2985
2985
  source = "registry+https://github.com/rust-lang/crates.io-index"
2986
- checksum = "c8e3592472072e6e22e0a54d5904d9febf8508f65fb8552499a1abc7d1078c3a"
2986
+ checksum = "6513c1ad0b11a9376da888e3e0baa0077f1aed55c17f50e7b2397136129fb88f"
2987
2987
  dependencies = [
2988
2988
  "serde_derive",
2989
2989
  ]
@@ -3001,9 +3001,9 @@ dependencies = [
3001
3001
 
3002
3002
  [[package]]
3003
3003
  name = "serde_derive"
3004
- version = "1.0.210"
3004
+ version = "1.0.215"
3005
3005
  source = "registry+https://github.com/rust-lang/crates.io-index"
3006
- checksum = "243902eda00fad750862fc144cea25caca5e20d615af0a81bee94ca738f1df1f"
3006
+ checksum = "ad1e866f866923f252f05c889987993144fb74e722403468a4ebd70c3cd756c0"
3007
3007
  dependencies = [
3008
3008
  "proc-macro2",
3009
3009
  "quote",
@@ -4358,7 +4358,7 @@ checksum = "cfe53a6657fd280eaa890a3bc59152892ffa3e30101319d168b781ed6529b049"
4358
4358
 
4359
4359
  [[package]]
4360
4360
  name = "yara-x"
4361
- version = "0.11.0"
4361
+ version = "0.11.1"
4362
4362
  dependencies = [
4363
4363
  "aho-corasick",
4364
4364
  "annotate-snippets",
@@ -4429,7 +4429,7 @@ dependencies = [
4429
4429
 
4430
4430
  [[package]]
4431
4431
  name = "yara-x-capi"
4432
- version = "0.11.0"
4432
+ version = "0.11.1"
4433
4433
  dependencies = [
4434
4434
  "cbindgen",
4435
4435
  "serde_json",
@@ -4438,7 +4438,7 @@ dependencies = [
4438
4438
 
4439
4439
  [[package]]
4440
4440
  name = "yara-x-cli"
4441
- version = "0.11.0"
4441
+ version = "0.11.1"
4442
4442
  dependencies = [
4443
4443
  "anyhow",
4444
4444
  "ascii_tree",
@@ -4472,7 +4472,7 @@ dependencies = [
4472
4472
 
4473
4473
  [[package]]
4474
4474
  name = "yara-x-fmt"
4475
- version = "0.11.0"
4475
+ version = "0.11.1"
4476
4476
  dependencies = [
4477
4477
  "bitmask",
4478
4478
  "bstr",
@@ -4487,7 +4487,7 @@ dependencies = [
4487
4487
 
4488
4488
  [[package]]
4489
4489
  name = "yara-x-macros"
4490
- version = "0.11.0"
4490
+ version = "0.11.1"
4491
4491
  dependencies = [
4492
4492
  "darling",
4493
4493
  "proc-macro2",
@@ -4497,7 +4497,7 @@ dependencies = [
4497
4497
 
4498
4498
  [[package]]
4499
4499
  name = "yara-x-parser"
4500
- version = "0.11.0"
4500
+ version = "0.11.1"
4501
4501
  dependencies = [
4502
4502
  "anyhow",
4503
4503
  "ascii_tree",
@@ -4521,7 +4521,7 @@ dependencies = [
4521
4521
 
4522
4522
  [[package]]
4523
4523
  name = "yara-x-proto"
4524
- version = "0.11.0"
4524
+ version = "0.11.1"
4525
4525
  dependencies = [
4526
4526
  "protobuf",
4527
4527
  "protobuf-codegen",
@@ -4530,7 +4530,7 @@ dependencies = [
4530
4530
 
4531
4531
  [[package]]
4532
4532
  name = "yara-x-proto-yaml"
4533
- version = "0.11.0"
4533
+ version = "0.11.1"
4534
4534
  dependencies = [
4535
4535
  "chrono",
4536
4536
  "globwalk",
@@ -4545,7 +4545,7 @@ dependencies = [
4545
4545
 
4546
4546
  [[package]]
4547
4547
  name = "yara-x-py"
4548
- version = "0.11.0"
4548
+ version = "0.11.1"
4549
4549
  dependencies = [
4550
4550
  "protobuf-json-mapping",
4551
4551
  "pyo3",
@@ -1,5 +1,5 @@
1
1
  [workspace.package]
2
- version = "0.11.0"
2
+ version = "0.11.1"
3
3
  authors = ["Victor M. Alvarez <vmalvarez@virustotal.com>"]
4
4
  edition = "2021"
5
5
  homepage = "https://virustotal.github.io/yara-x"
@@ -79,8 +79,8 @@ regex-automata = "0.4.7"
79
79
  roxmltree = "0.20.0"
80
80
  rsa = "0.9.6"
81
81
  rustc-hash = "2.0.0"
82
- serde = "=1.0.210"
83
- serde_json = "1.0.132"
82
+ serde = "1.0.215"
83
+ serde_json = "1.0.133"
84
84
  sha1 = "0.10.6"
85
85
  sha2 = "0.10.8"
86
86
  smallvec = "1.13.2"
@@ -95,11 +95,11 @@ x509-parser = "0.16.0"
95
95
  yaml-rust = "0.4.5"
96
96
  yansi = "1.0.1"
97
97
  yara-x = { path = "lib" }
98
- yara-x-fmt = { path = "fmt", version = "0.11.0" }
99
- yara-x-macros = { path = "macros", version = "0.11.0" }
100
- yara-x-parser = { path = "parser", version = "0.11.0" }
101
- yara-x-proto = { path = "proto", version = "0.11.0" }
102
- yara-x-proto-yaml = { path = "proto-yaml", version = "0.11.0" }
98
+ yara-x-fmt = { path = "fmt", version = "0.11.1" }
99
+ yara-x-macros = { path = "macros", version = "0.11.1" }
100
+ yara-x-parser = { path = "parser", version = "0.11.1" }
101
+ yara-x-proto = { path = "proto", version = "0.11.1" }
102
+ yara-x-proto-yaml = { path = "proto-yaml", version = "0.11.1" }
103
103
  zip = "2.1.1"
104
104
 
105
105
  # 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: 0.11.0
3
+ Version: 0.11.1
4
4
  Classifier: Programming Language :: Rust
5
5
  Classifier: Programming Language :: Python :: Implementation :: CPython
6
6
  Classifier: Programming Language :: Python :: Implementation :: PyPy
@@ -9,7 +9,7 @@ Summary: Python bindings for YARA-X
9
9
  Keywords: pattern-matching,cybersecurity,forensics,malware,yara
10
10
  Home-Page: https://virustotal.github.io/yara-x
11
11
  License: BSD-3-Clause
12
- Requires-Python: >=3.8
12
+ Requires-Python: >=3.9
13
13
  Description-Content-Type: text/markdown; charset=UTF-8; variant=GFM
14
14
  Project-URL: homepage, https://virustotal.github.io/yara-x
15
15
  Project-URL: repository, https://github.com/VirusTotal/yara-x.git
@@ -0,0 +1,249 @@
1
+ #[cfg(feature = "logging")]
2
+ use log::error;
3
+
4
+ use crate::compiler::RegexpId;
5
+ use crate::modules::prelude::*;
6
+ use crate::modules::protos::cuckoo::*;
7
+
8
+ mod schema;
9
+ #[cfg(test)]
10
+ mod tests;
11
+
12
+ use std::cell::RefCell;
13
+ use std::rc::Rc;
14
+ thread_local! {
15
+ static LOCAL_DATA: RefCell<Option<Rc<schema::CuckooJson>>> = const { RefCell::new(None) };
16
+ }
17
+
18
+ fn get_local() -> Option<Rc<schema::CuckooJson>> {
19
+ LOCAL_DATA.with(|data| data.borrow().clone())
20
+ }
21
+
22
+ fn set_local(value: schema::CuckooJson) {
23
+ LOCAL_DATA.with(|data| {
24
+ *data.borrow_mut() = Some(Rc::new(value));
25
+ });
26
+ }
27
+
28
+ #[module_main]
29
+ fn main(_data: &[u8], meta: Option<&[u8]>) -> Cuckoo {
30
+ let parsed =
31
+ serde_json::from_slice::<schema::CuckooJson>(meta.unwrap_or_default());
32
+
33
+ match parsed {
34
+ Ok(parsed) => {
35
+ set_local(parsed);
36
+ }
37
+ #[cfg(feature = "logging")]
38
+ Err(e) => {
39
+ error!("can't parse cuckoo report: {}", e);
40
+ }
41
+ #[cfg(not(feature = "logging"))]
42
+ Err(_) => {}
43
+ };
44
+
45
+ Cuckoo::new()
46
+ }
47
+
48
+ #[module_export(name = "network.dns_lookup")]
49
+ fn network_dns_lookup_r(
50
+ ctx: &ScanContext,
51
+ regexp_id: RegexpId,
52
+ ) -> Option<i64> {
53
+ Some(
54
+ get_local()?
55
+ .network
56
+ .domains
57
+ .iter()
58
+ .flatten()
59
+ .filter(|domain| {
60
+ ctx.regexp_matches(regexp_id, domain.domain.as_bytes())
61
+ })
62
+ .count() as _,
63
+ )
64
+ }
65
+
66
+ #[module_export(name = "network.http_request")]
67
+ fn network_http_request_r(
68
+ ctx: &ScanContext,
69
+ regexp_id: RegexpId,
70
+ ) -> Option<i64> {
71
+ Some(
72
+ get_local()?
73
+ .network
74
+ .http
75
+ .iter()
76
+ .flatten()
77
+ .filter(|http| {
78
+ http.method.is_some() // ~> is request (is not response)
79
+ && ctx.regexp_matches(regexp_id, http.uri.as_bytes())
80
+ })
81
+ .count() as _,
82
+ )
83
+ }
84
+
85
+ #[module_export(name = "network.http_get")]
86
+ fn network_http_get_r(ctx: &ScanContext, regexp_id: RegexpId) -> Option<i64> {
87
+ Some(
88
+ get_local()?
89
+ .network
90
+ .http
91
+ .iter()
92
+ .flatten()
93
+ .filter(|http| {
94
+ http.method
95
+ .as_ref()
96
+ .map(|method| method.eq_ignore_ascii_case("get"))
97
+ .unwrap_or(false)
98
+ && ctx.regexp_matches(regexp_id, http.uri.as_bytes())
99
+ })
100
+ .count() as _,
101
+ )
102
+ }
103
+
104
+ #[module_export(name = "network.http_post")]
105
+ fn network_http_post_r(ctx: &ScanContext, regexp_id: RegexpId) -> Option<i64> {
106
+ Some(
107
+ get_local()?
108
+ .network
109
+ .http
110
+ .iter()
111
+ .flatten()
112
+ .filter(|http| {
113
+ http.method
114
+ .as_ref()
115
+ .map(|method| method.eq_ignore_ascii_case("post"))
116
+ .unwrap_or(false)
117
+ && ctx.regexp_matches(regexp_id, http.uri.as_bytes())
118
+ })
119
+ .count() as _,
120
+ )
121
+ }
122
+
123
+ #[module_export(name = "network.http_user_agent")]
124
+ fn network_http_user_agent_r(
125
+ ctx: &ScanContext,
126
+ regexp_id: RegexpId,
127
+ ) -> Option<i64> {
128
+ Some(
129
+ get_local()?
130
+ .network
131
+ .http
132
+ .iter()
133
+ .flatten()
134
+ .flat_map(|http| http.user_agent.iter())
135
+ .filter(|user_agent| {
136
+ ctx.regexp_matches(regexp_id, user_agent.as_bytes())
137
+ })
138
+ .count() as _,
139
+ )
140
+ }
141
+
142
+ #[module_export(name = "network.tcp")]
143
+ fn network_tcp_ri(
144
+ ctx: &ScanContext,
145
+ dst_re: RegexpId,
146
+ port: i64,
147
+ ) -> Option<i64> {
148
+ Some(
149
+ get_local()?
150
+ .network
151
+ .tcp
152
+ .iter()
153
+ .flatten()
154
+ .filter(|tcp| {
155
+ tcp.dport == port as u64
156
+ && tcp
157
+ .dst
158
+ .iter()
159
+ .chain(tcp.dst_domain.iter())
160
+ .any(|dst| ctx.regexp_matches(dst_re, dst.as_bytes()))
161
+ })
162
+ .count() as _,
163
+ )
164
+ }
165
+
166
+ #[module_export(name = "network.udp")]
167
+ fn network_udp_ri(
168
+ ctx: &ScanContext,
169
+ dst_re: RegexpId,
170
+ port: i64,
171
+ ) -> Option<i64> {
172
+ Some(
173
+ get_local()?
174
+ .network
175
+ .udp
176
+ .iter()
177
+ .flatten()
178
+ .filter(|udp| {
179
+ udp.dport == port as u64
180
+ && udp
181
+ .dst
182
+ .iter()
183
+ .chain(udp.dst_domain.iter())
184
+ .any(|dst| ctx.regexp_matches(dst_re, dst.as_bytes()))
185
+ })
186
+ .count() as _,
187
+ )
188
+ }
189
+
190
+ #[module_export(name = "network.host")]
191
+ fn network_host_r(ctx: &ScanContext, re: RegexpId) -> Option<i64> {
192
+ Some(
193
+ get_local()?
194
+ .network
195
+ .hosts
196
+ .iter()
197
+ .flatten()
198
+ .filter(|host| ctx.regexp_matches(re, host.as_bytes()))
199
+ .count() as _,
200
+ )
201
+ }
202
+
203
+ #[module_export(name = "sync.mutex")]
204
+ fn sync_mutex_r(ctx: &ScanContext, mutex_re: RegexpId) -> Option<i64> {
205
+ Some(
206
+ get_local()?
207
+ .behavior
208
+ .summary
209
+ .mutexes
210
+ .iter()
211
+ .flatten()
212
+ .filter(|mutex| ctx.regexp_matches(mutex_re, mutex.as_bytes()))
213
+ .count() as _,
214
+ )
215
+ }
216
+
217
+ #[module_export(name = "filesystem.file_access")]
218
+ fn filesystem_file_access_r(
219
+ ctx: &ScanContext,
220
+ regexp_id: RegexpId,
221
+ ) -> Option<i64> {
222
+ Some(
223
+ get_local()?
224
+ .behavior
225
+ .summary
226
+ .files
227
+ .iter()
228
+ .flatten()
229
+ .filter(|file| ctx.regexp_matches(regexp_id, file.as_bytes()))
230
+ .count() as _,
231
+ )
232
+ }
233
+
234
+ #[module_export(name = "registry.key_access")]
235
+ fn registry_key_access_r(
236
+ ctx: &ScanContext,
237
+ regexp_id: RegexpId,
238
+ ) -> Option<i64> {
239
+ Some(
240
+ get_local()?
241
+ .behavior
242
+ .summary
243
+ .keys
244
+ .iter()
245
+ .flatten()
246
+ .filter(|key| ctx.regexp_matches(regexp_id, key.as_bytes()))
247
+ .count() as _,
248
+ )
249
+ }
@@ -0,0 +1,166 @@
1
+ use std::fmt;
2
+
3
+ use serde::de::Error;
4
+ use serde::{de::Visitor, Deserialize, Deserializer};
5
+
6
+ #[derive(serde::Deserialize, Debug)]
7
+ pub(super) struct DomainJson {
8
+ pub domain: String,
9
+ }
10
+
11
+ #[derive(serde::Deserialize, Debug)]
12
+ pub(super) struct HttpJson {
13
+ #[serde(rename = "user-agent")]
14
+ pub user_agent: Option<String>,
15
+ pub method: Option<String>, // string ftw
16
+ pub uri: String,
17
+ }
18
+
19
+ #[derive(serde::Deserialize, Debug)]
20
+ pub(super) struct TcpJson {
21
+ pub dst: Option<String>,
22
+ pub dst_domain: Option<String>,
23
+ pub dport: u64,
24
+ }
25
+
26
+ #[derive(serde::Deserialize, Debug)]
27
+ pub(super) struct UdpJson {
28
+ pub dst: Option<String>,
29
+ pub dst_domain: Option<String>,
30
+ pub dport: u64,
31
+ }
32
+
33
+ #[derive(/* serde::Deserialize, - custom */ Debug)]
34
+ pub(super) struct NetworkJson {
35
+ pub domains: Option<Vec<DomainJson>>,
36
+ pub http: Option<Vec<HttpJson>>,
37
+ pub tcp: Option<Vec<TcpJson>>,
38
+ pub udp: Option<Vec<UdpJson>>,
39
+ pub hosts: Option<Vec<String>>,
40
+ }
41
+
42
+ #[derive(serde::Deserialize, Debug)]
43
+ pub(super) struct SummaryJson {
44
+ pub mutexes: Option<Vec<String>>,
45
+ pub files: Option<Vec<String>>,
46
+ pub keys: Option<Vec<String>>,
47
+ }
48
+
49
+ #[derive(serde::Deserialize, Debug)]
50
+ pub(super) struct BehaviorJson {
51
+ pub summary: SummaryJson,
52
+ }
53
+
54
+ #[derive(serde::Deserialize, Debug)]
55
+ pub(super) struct CuckooJson {
56
+ pub network: NetworkJson,
57
+ pub behavior: BehaviorJson,
58
+ }
59
+
60
+ impl<'de> Deserialize<'de> for NetworkJson {
61
+ fn deserialize<D>(deserializer: D) -> Result<Self, D::Error>
62
+ where
63
+ D: Deserializer<'de>,
64
+ {
65
+ struct MyVisitor;
66
+
67
+ impl<'de> Visitor<'de> for MyVisitor {
68
+ type Value = NetworkJson;
69
+
70
+ fn expecting(&self, fmt: &mut fmt::Formatter<'_>) -> fmt::Result {
71
+ fmt.write_str("string or object")
72
+ }
73
+
74
+ fn visit_map<A>(self, mut map: A) -> Result<Self::Value, A::Error>
75
+ where
76
+ A: serde::de::MapAccess<'de>,
77
+ {
78
+ // Must not parse `old_domains` before the whole map is
79
+ // searched if there is a `domains` field, then the value for
80
+ // the key `old_domains` should be ignored - specifically, it
81
+ // is okay if the `old_domains` does not have the expected
82
+ // structure if `domains` is present.
83
+ let mut old_domains = None::<serde_json::Value>;
84
+ let mut domains = None::<serde_json::Value>;
85
+
86
+ let mut http = None::<Vec<HttpJson>>;
87
+ let mut tcp = None::<Vec<TcpJson>>;
88
+ let mut udp = None::<Vec<UdpJson>>;
89
+ let mut hosts = None::<Vec<String>>;
90
+
91
+ while let Some((key, val)) =
92
+ map.next_entry::<String, serde_json::Value>()?
93
+ {
94
+ match key.as_str() {
95
+ "domains" => {
96
+ domains = Some(val);
97
+ }
98
+ "dns" => {
99
+ if domains.is_some() {
100
+ continue; // prefer "domains" over "dns"
101
+ }
102
+ old_domains = Some(val);
103
+ }
104
+ "http" => {
105
+ http = Some(
106
+ Deserialize::deserialize(val)
107
+ .map_err(Error::custom)?,
108
+ );
109
+ }
110
+ "tcp" => {
111
+ tcp = Some(
112
+ Deserialize::deserialize(val)
113
+ .map_err(Error::custom)?,
114
+ );
115
+ }
116
+ "udp" => {
117
+ udp = Some(
118
+ Deserialize::deserialize(val)
119
+ .map_err(Error::custom)?,
120
+ );
121
+ }
122
+ "hosts" => {
123
+ hosts = Some(
124
+ Deserialize::deserialize(val)
125
+ .map_err(Error::custom)?,
126
+ );
127
+ }
128
+ _ => {}
129
+ }
130
+ }
131
+
132
+ #[derive(serde::Deserialize, Debug)]
133
+ struct OldDomainJson {
134
+ pub hostname: String,
135
+ }
136
+
137
+ let domains: Option<Vec<DomainJson>> =
138
+ match (domains, old_domains) {
139
+ (Some(domains), _) => {
140
+ Deserialize::deserialize(domains)
141
+ .map_err(Error::custom)?
142
+ }
143
+ (None, Some(old_domains)) => {
144
+ let old_domains: Vec<OldDomainJson> =
145
+ Deserialize::deserialize(old_domains)
146
+ .map_err(Error::custom)?;
147
+
148
+ Some(
149
+ old_domains
150
+ .into_iter()
151
+ .map(|old| DomainJson {
152
+ domain: old.hostname,
153
+ })
154
+ .collect(),
155
+ )
156
+ }
157
+ (None, None) => None, // domains field is optional
158
+ };
159
+
160
+ Ok(NetworkJson { domains, http, tcp, udp, hosts })
161
+ }
162
+ }
163
+
164
+ deserializer.deserialize_any(MyVisitor)
165
+ }
166
+ }
@@ -1752,9 +1752,9 @@ impl<'a> PE<'a> {
1752
1752
  /// arrays equivalent to the INT and IAT.
1753
1753
  ///
1754
1754
  /// Another differences between ordinal and delayed imports is that in
1755
- /// in delayed imports the INT and IAT can contain virtual addresses
1756
- /// instead of relative virtual address (RVAs). Whether they contain one
1757
- /// or the other depends on a bit in the `attributes` field in the
1755
+ /// delayed imports the INT and IAT can contain virtual addresses instead
1756
+ /// of relative virtual address (RVAs). Whether they contain one or the
1757
+ /// other depends on a bit in the `attributes` field in the
1758
1758
  /// IMAGE_DELAYLOAD_DESCRIPTOR structure.
1759
1759
  fn parse_import_impl<P>(
1760
1760
  &self,
@@ -1789,6 +1789,8 @@ impl<'a> PE<'a> {
1789
1789
  }),
1790
1790
  );
1791
1791
 
1792
+ let mut num_imported_funcs = 0;
1793
+
1792
1794
  for mut descriptor in import_descriptors.take(Self::MAX_PE_IMPORTS) {
1793
1795
  // If the values in the descriptor are virtual addresses, convert
1794
1796
  // them to relative virtual addresses (RVAs) by subtracting the
@@ -1900,10 +1902,11 @@ impl<'a> PE<'a> {
1900
1902
  }
1901
1903
 
1902
1904
  if !funcs.is_empty() {
1905
+ num_imported_funcs += funcs.len();
1903
1906
  imported_funcs.push((dll_name, funcs));
1904
1907
  }
1905
1908
 
1906
- if imported_funcs.len() >= Self::MAX_PE_IMPORTS {
1909
+ if num_imported_funcs >= Self::MAX_PE_IMPORTS {
1907
1910
  break;
1908
1911
  }
1909
1912
  }
@@ -1,11 +1,11 @@
1
1
  [build-system]
2
- requires = ["maturin>=1.0,<2.0"]
2
+ requires = ["maturin==1.7.4"]
3
3
  build-backend = "maturin"
4
4
 
5
5
  [project]
6
6
  name = "yara-x"
7
7
  description = "Python bindings for YARA-X"
8
- requires-python = ">=3.8"
8
+ requires-python = ">=3.9"
9
9
  readme = "README.md"
10
10
  keywords = ["pattern-matching", "cybersecurity", "forensics", "malware", "yara"]
11
11
  classifiers = [