yara-x 0.10.0__tar.gz → 0.11.0__tar.gz

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (747) hide show
  1. {yara_x-0.10.0 → yara_x-0.11.0}/Cargo.lock +278 -482
  2. {yara_x-0.10.0 → yara_x-0.11.0}/Cargo.toml +16 -16
  3. {yara_x-0.10.0 → yara_x-0.11.0}/PKG-INFO +1 -1
  4. {yara_x-0.10.0 → yara_x-0.11.0}/lib/src/compiler/base64.rs +1 -1
  5. {yara_x-0.10.0 → yara_x-0.11.0}/lib/src/compiler/context.rs +144 -28
  6. {yara_x-0.10.0 → yara_x-0.11.0}/lib/src/compiler/emit.rs +433 -391
  7. {yara_x-0.10.0 → yara_x-0.11.0}/lib/src/compiler/errors.rs +11 -0
  8. {yara_x-0.10.0 → yara_x-0.11.0}/lib/src/compiler/ir/ast2ir.rs +552 -501
  9. yara_x-0.11.0/lib/src/compiler/ir/dfs.rs +646 -0
  10. {yara_x-0.10.0 → yara_x-0.11.0}/lib/src/compiler/ir/hex2hir.rs +67 -76
  11. yara_x-0.11.0/lib/src/compiler/ir/mod.rs +3154 -0
  12. yara_x-0.11.0/lib/src/compiler/ir/tests/mod.rs +140 -0
  13. yara_x-0.11.0/lib/src/compiler/ir/tests/testdata/1.cse.ir +63 -0
  14. yara_x-0.11.0/lib/src/compiler/ir/tests/testdata/1.hoisting.ir +63 -0
  15. {yara_x-0.10.0 → yara_x-0.11.0}/lib/src/compiler/ir/tests/testdata/1.in +11 -1
  16. yara_x-0.11.0/lib/src/compiler/ir/tests/testdata/1.ir +63 -0
  17. yara_x-0.11.0/lib/src/compiler/ir/tests/testdata/1.no-folding.ir +77 -0
  18. yara_x-0.11.0/lib/src/compiler/ir/tests/testdata/2.cse.ir +43 -0
  19. yara_x-0.11.0/lib/src/compiler/ir/tests/testdata/2.hoisting.ir +57 -0
  20. yara_x-0.11.0/lib/src/compiler/ir/tests/testdata/2.ir +45 -0
  21. yara_x-0.11.0/lib/src/compiler/ir/tests/testdata/2.no-folding.ir +45 -0
  22. yara_x-0.11.0/lib/src/compiler/ir/tests/testdata/3.cse.ir +13 -0
  23. yara_x-0.11.0/lib/src/compiler/ir/tests/testdata/3.hoisting.ir +13 -0
  24. yara_x-0.11.0/lib/src/compiler/ir/tests/testdata/3.ir +13 -0
  25. yara_x-0.11.0/lib/src/compiler/ir/tests/testdata/3.no-folding.ir +13 -0
  26. yara_x-0.11.0/lib/src/compiler/ir/tests/testdata/4.cse.ir +42 -0
  27. yara_x-0.11.0/lib/src/compiler/ir/tests/testdata/4.hoisting.ir +64 -0
  28. yara_x-0.11.0/lib/src/compiler/ir/tests/testdata/4.in +13 -0
  29. yara_x-0.11.0/lib/src/compiler/ir/tests/testdata/4.ir +42 -0
  30. yara_x-0.11.0/lib/src/compiler/ir/tests/testdata/4.no-folding.ir +42 -0
  31. yara_x-0.11.0/lib/src/compiler/ir/tests/testdata/5.cse.ir +102 -0
  32. yara_x-0.11.0/lib/src/compiler/ir/tests/testdata/5.hoisting.ir +110 -0
  33. yara_x-0.11.0/lib/src/compiler/ir/tests/testdata/5.in +24 -0
  34. yara_x-0.11.0/lib/src/compiler/ir/tests/testdata/5.ir +110 -0
  35. yara_x-0.11.0/lib/src/compiler/ir/tests/testdata/5.no-folding.ir +110 -0
  36. yara_x-0.11.0/lib/src/compiler/ir/tests/testdata/6.cse.ir +23 -0
  37. yara_x-0.11.0/lib/src/compiler/ir/tests/testdata/6.hoisting.ir +22 -0
  38. yara_x-0.11.0/lib/src/compiler/ir/tests/testdata/6.in +7 -0
  39. yara_x-0.11.0/lib/src/compiler/ir/tests/testdata/6.ir +22 -0
  40. yara_x-0.11.0/lib/src/compiler/ir/tests/testdata/6.no-folding.ir +22 -0
  41. yara_x-0.11.0/lib/src/compiler/ir/tests/testdata/7.cse.ir +42 -0
  42. yara_x-0.11.0/lib/src/compiler/ir/tests/testdata/7.hoisting.ir +52 -0
  43. yara_x-0.11.0/lib/src/compiler/ir/tests/testdata/7.in +21 -0
  44. yara_x-0.11.0/lib/src/compiler/ir/tests/testdata/7.ir +46 -0
  45. yara_x-0.11.0/lib/src/compiler/ir/tests/testdata/7.no-folding.ir +46 -0
  46. yara_x-0.11.0/lib/src/compiler/ir/tests/testdata/8.cse.ir +28 -0
  47. yara_x-0.11.0/lib/src/compiler/ir/tests/testdata/8.hoisting.ir +30 -0
  48. yara_x-0.11.0/lib/src/compiler/ir/tests/testdata/8.in +19 -0
  49. yara_x-0.11.0/lib/src/compiler/ir/tests/testdata/8.ir +28 -0
  50. yara_x-0.11.0/lib/src/compiler/ir/tests/testdata/8.no-folding.ir +28 -0
  51. {yara_x-0.10.0 → yara_x-0.11.0}/lib/src/compiler/mod.rs +138 -51
  52. {yara_x-0.10.0 → yara_x-0.11.0}/lib/src/compiler/tests/mod.rs +48 -22
  53. {yara_x-0.10.0 → yara_x-0.11.0}/lib/src/compiler/tests/testdata/errors/101.in +1 -1
  54. yara_x-0.11.0/lib/src/compiler/tests/testdata/errors/101.out +6 -0
  55. yara_x-0.11.0/lib/src/compiler/tests/testdata/errors/124.out +6 -0
  56. yara_x-0.11.0/lib/src/compiler/tests/testdata/errors/125.out +6 -0
  57. yara_x-0.11.0/lib/src/compiler/tests/testdata/errors/126.out +6 -0
  58. yara_x-0.11.0/lib/src/compiler/tests/testdata/errors/127.out +6 -0
  59. yara_x-0.11.0/lib/src/compiler/tests/testdata/errors/139.in +8 -0
  60. yara_x-0.11.0/lib/src/compiler/tests/testdata/errors/139.out +6 -0
  61. {yara_x-0.10.0 → yara_x-0.11.0}/lib/src/compiler/tests/testdata/errors/89.out +1 -1
  62. yara_x-0.11.0/lib/src/compiler/tests/testdata/errors/98.out +6 -0
  63. {yara_x-0.10.0 → yara_x-0.11.0}/lib/src/modules/macho/mod.rs +41 -4
  64. {yara_x-0.10.0 → yara_x-0.11.0}/lib/src/modules/macho/tests/mod.rs +48 -0
  65. {yara_x-0.10.0 → yara_x-0.11.0}/lib/src/modules/protos/test_proto2.proto +26 -1
  66. yara_x-0.11.0/lib/src/modules/protos/yara.proto +151 -0
  67. {yara_x-0.10.0 → yara_x-0.11.0}/lib/src/modules/test_proto2/tests/mod.rs +92 -32
  68. {yara_x-0.10.0 → yara_x-0.11.0}/lib/src/re/hir.rs +4 -4
  69. {yara_x-0.10.0 → yara_x-0.11.0}/lib/src/scanner/context.rs +12 -12
  70. {yara_x-0.10.0 → yara_x-0.11.0}/lib/src/scanner/mod.rs +15 -7
  71. {yara_x-0.10.0 → yara_x-0.11.0}/lib/src/symbols/mod.rs +105 -49
  72. {yara_x-0.10.0 → yara_x-0.11.0}/lib/src/tests/mod.rs +86 -18
  73. {yara_x-0.10.0 → yara_x-0.11.0}/lib/src/types/func.rs +9 -2
  74. {yara_x-0.10.0 → yara_x-0.11.0}/lib/src/types/mod.rs +63 -18
  75. {yara_x-0.10.0 → yara_x-0.11.0}/lib/src/types/structure.rs +91 -7
  76. {yara_x-0.10.0 → yara_x-0.11.0}/lib/src/wasm/mod.rs +14 -9
  77. {yara_x-0.10.0 → yara_x-0.11.0}/parser/Cargo.toml +2 -2
  78. {yara_x-0.10.0 → yara_x-0.11.0}/parser/src/ast/ascii_tree.rs +18 -15
  79. {yara_x-0.10.0 → yara_x-0.11.0}/parser/src/ast/cst2ast.rs +69 -52
  80. {yara_x-0.10.0 → yara_x-0.11.0}/parser/src/ast/mod.rs +39 -24
  81. {yara_x-0.10.0 → yara_x-0.11.0}/parser/src/cst/syntax_kind.rs +1 -1
  82. {yara_x-0.10.0 → yara_x-0.11.0}/parser/src/parser/mod.rs +40 -22
  83. {yara_x-0.10.0 → yara_x-0.11.0}/parser/src/parser/tests/testdata/bitwise-ops-error-1.ast +1 -1
  84. {yara_x-0.10.0 → yara_x-0.11.0}/parser/src/parser/tests/testdata/bitwise-ops-error-1.cst +1 -1
  85. {yara_x-0.10.0 → yara_x-0.11.0}/parser/src/parser/tests/testdata/expr-3.ast +4 -7
  86. {yara_x-0.10.0 → yara_x-0.11.0}/parser/src/parser/tests/testdata/expr-3.cst +35 -34
  87. {yara_x-0.10.0 → yara_x-0.11.0}/parser/src/parser/tests/testdata/expr-error-1.ast +1 -1
  88. {yara_x-0.10.0 → yara_x-0.11.0}/parser/src/parser/tests/testdata/expr-error-1.cst +1 -1
  89. {yara_x-0.10.0 → yara_x-0.11.0}/parser/src/parser/tests/testdata/func-call.ast +7 -12
  90. {yara_x-0.10.0 → yara_x-0.11.0}/parser/src/parser/tests/testdata/func-call.cst +53 -51
  91. yara_x-0.11.0/proto/src/yara.proto +151 -0
  92. {yara_x-0.10.0 → yara_x-0.11.0}/py/Cargo.toml +2 -2
  93. {yara_x-0.10.0 → yara_x-0.11.0}/py/src/lib.rs +12 -0
  94. {yara_x-0.10.0 → yara_x-0.11.0}/py/tests/test_api.py +13 -0
  95. yara_x-0.11.0/py/yara_x.pyi +188 -0
  96. yara_x-0.10.0/lib/src/compiler/ir/dfs.rs +0 -287
  97. yara_x-0.10.0/lib/src/compiler/ir/mod.rs +0 -1269
  98. yara_x-0.10.0/lib/src/compiler/ir/tests/mod.rs +0 -33
  99. yara_x-0.10.0/lib/src/compiler/ir/tests/testdata/1.folding.ir +0 -52
  100. yara_x-0.10.0/lib/src/compiler/ir/tests/testdata/1.no-folding.ir +0 -59
  101. yara_x-0.10.0/lib/src/compiler/ir/tests/testdata/2.folding.ir +0 -45
  102. yara_x-0.10.0/lib/src/compiler/ir/tests/testdata/2.no-folding.ir +0 -45
  103. yara_x-0.10.0/lib/src/compiler/ir/tests/testdata/3.folding.ir +0 -19
  104. yara_x-0.10.0/lib/src/compiler/ir/tests/testdata/3.no-folding.ir +0 -19
  105. yara_x-0.10.0/lib/src/compiler/tests/testdata/errors/101.out +0 -6
  106. yara_x-0.10.0/lib/src/compiler/tests/testdata/errors/124.out +0 -6
  107. yara_x-0.10.0/lib/src/compiler/tests/testdata/errors/125.out +0 -6
  108. yara_x-0.10.0/lib/src/compiler/tests/testdata/errors/126.out +0 -6
  109. yara_x-0.10.0/lib/src/compiler/tests/testdata/errors/127.out +0 -6
  110. yara_x-0.10.0/lib/src/compiler/tests/testdata/errors/98.out +0 -6
  111. yara_x-0.10.0/lib/src/modules/protos/yara.proto +0 -53
  112. yara_x-0.10.0/proto/src/yara.proto +0 -53
  113. yara_x-0.10.0/py/yara_x.pyi +0 -176
  114. {yara_x-0.10.0 → yara_x-0.11.0}/README.md +0 -0
  115. {yara_x-0.10.0 → yara_x-0.11.0}/lib/Cargo.toml +0 -0
  116. {yara_x-0.10.0 → yara_x-0.11.0}/lib/README.md +0 -0
  117. {yara_x-0.10.0 → yara_x-0.11.0}/lib/build.rs +0 -0
  118. {yara_x-0.10.0 → yara_x-0.11.0}/lib/src/compiler/atoms/mask.rs +0 -0
  119. {yara_x-0.10.0 → yara_x-0.11.0}/lib/src/compiler/atoms/mod.rs +0 -0
  120. {yara_x-0.10.0 → yara_x-0.11.0}/lib/src/compiler/atoms/quality.rs +0 -0
  121. {yara_x-0.10.0 → yara_x-0.11.0}/lib/src/compiler/ir/tests/testdata/2.in +0 -0
  122. {yara_x-0.10.0 → yara_x-0.11.0}/lib/src/compiler/ir/tests/testdata/3.in +0 -0
  123. {yara_x-0.10.0 → yara_x-0.11.0}/lib/src/compiler/report.rs +0 -0
  124. {yara_x-0.10.0 → yara_x-0.11.0}/lib/src/compiler/rules.rs +0 -0
  125. {yara_x-0.10.0 → yara_x-0.11.0}/lib/src/compiler/tests/testdata/errors/1.in +0 -0
  126. {yara_x-0.10.0 → yara_x-0.11.0}/lib/src/compiler/tests/testdata/errors/1.out +0 -0
  127. {yara_x-0.10.0 → yara_x-0.11.0}/lib/src/compiler/tests/testdata/errors/10.in +0 -0
  128. {yara_x-0.10.0 → yara_x-0.11.0}/lib/src/compiler/tests/testdata/errors/10.out +0 -0
  129. {yara_x-0.10.0 → yara_x-0.11.0}/lib/src/compiler/tests/testdata/errors/100.in +0 -0
  130. {yara_x-0.10.0 → yara_x-0.11.0}/lib/src/compiler/tests/testdata/errors/100.out +0 -0
  131. {yara_x-0.10.0 → yara_x-0.11.0}/lib/src/compiler/tests/testdata/errors/102.in +0 -0
  132. {yara_x-0.10.0 → yara_x-0.11.0}/lib/src/compiler/tests/testdata/errors/102.out +0 -0
  133. {yara_x-0.10.0 → yara_x-0.11.0}/lib/src/compiler/tests/testdata/errors/103.in +0 -0
  134. {yara_x-0.10.0 → yara_x-0.11.0}/lib/src/compiler/tests/testdata/errors/103.out +0 -0
  135. {yara_x-0.10.0 → yara_x-0.11.0}/lib/src/compiler/tests/testdata/errors/104.in +0 -0
  136. {yara_x-0.10.0 → yara_x-0.11.0}/lib/src/compiler/tests/testdata/errors/104.out +0 -0
  137. {yara_x-0.10.0 → yara_x-0.11.0}/lib/src/compiler/tests/testdata/errors/105.in +0 -0
  138. {yara_x-0.10.0 → yara_x-0.11.0}/lib/src/compiler/tests/testdata/errors/105.out +0 -0
  139. {yara_x-0.10.0 → yara_x-0.11.0}/lib/src/compiler/tests/testdata/errors/106.in +0 -0
  140. {yara_x-0.10.0 → yara_x-0.11.0}/lib/src/compiler/tests/testdata/errors/106.out +0 -0
  141. {yara_x-0.10.0 → yara_x-0.11.0}/lib/src/compiler/tests/testdata/errors/107.in +0 -0
  142. {yara_x-0.10.0 → yara_x-0.11.0}/lib/src/compiler/tests/testdata/errors/107.out +0 -0
  143. {yara_x-0.10.0 → yara_x-0.11.0}/lib/src/compiler/tests/testdata/errors/108.in +0 -0
  144. {yara_x-0.10.0 → yara_x-0.11.0}/lib/src/compiler/tests/testdata/errors/108.out +0 -0
  145. {yara_x-0.10.0 → yara_x-0.11.0}/lib/src/compiler/tests/testdata/errors/109.in +0 -0
  146. {yara_x-0.10.0 → yara_x-0.11.0}/lib/src/compiler/tests/testdata/errors/109.out +0 -0
  147. {yara_x-0.10.0 → yara_x-0.11.0}/lib/src/compiler/tests/testdata/errors/11.in +0 -0
  148. {yara_x-0.10.0 → yara_x-0.11.0}/lib/src/compiler/tests/testdata/errors/11.out +0 -0
  149. {yara_x-0.10.0 → yara_x-0.11.0}/lib/src/compiler/tests/testdata/errors/110.in +0 -0
  150. {yara_x-0.10.0 → yara_x-0.11.0}/lib/src/compiler/tests/testdata/errors/110.out +0 -0
  151. {yara_x-0.10.0 → yara_x-0.11.0}/lib/src/compiler/tests/testdata/errors/111.in +0 -0
  152. {yara_x-0.10.0 → yara_x-0.11.0}/lib/src/compiler/tests/testdata/errors/111.out +0 -0
  153. {yara_x-0.10.0 → yara_x-0.11.0}/lib/src/compiler/tests/testdata/errors/112.in +0 -0
  154. {yara_x-0.10.0 → yara_x-0.11.0}/lib/src/compiler/tests/testdata/errors/112.out +0 -0
  155. {yara_x-0.10.0 → yara_x-0.11.0}/lib/src/compiler/tests/testdata/errors/113.in +0 -0
  156. {yara_x-0.10.0 → yara_x-0.11.0}/lib/src/compiler/tests/testdata/errors/113.out +0 -0
  157. {yara_x-0.10.0 → yara_x-0.11.0}/lib/src/compiler/tests/testdata/errors/114.in +0 -0
  158. {yara_x-0.10.0 → yara_x-0.11.0}/lib/src/compiler/tests/testdata/errors/114.out +0 -0
  159. {yara_x-0.10.0 → yara_x-0.11.0}/lib/src/compiler/tests/testdata/errors/115.in +0 -0
  160. {yara_x-0.10.0 → yara_x-0.11.0}/lib/src/compiler/tests/testdata/errors/115.out +0 -0
  161. {yara_x-0.10.0 → yara_x-0.11.0}/lib/src/compiler/tests/testdata/errors/116.in +0 -0
  162. {yara_x-0.10.0 → yara_x-0.11.0}/lib/src/compiler/tests/testdata/errors/116.out +0 -0
  163. {yara_x-0.10.0 → yara_x-0.11.0}/lib/src/compiler/tests/testdata/errors/117.in +0 -0
  164. {yara_x-0.10.0 → yara_x-0.11.0}/lib/src/compiler/tests/testdata/errors/117.out +0 -0
  165. {yara_x-0.10.0 → yara_x-0.11.0}/lib/src/compiler/tests/testdata/errors/118.in +0 -0
  166. {yara_x-0.10.0 → yara_x-0.11.0}/lib/src/compiler/tests/testdata/errors/118.out +0 -0
  167. {yara_x-0.10.0 → yara_x-0.11.0}/lib/src/compiler/tests/testdata/errors/119.in +0 -0
  168. {yara_x-0.10.0 → yara_x-0.11.0}/lib/src/compiler/tests/testdata/errors/119.out +0 -0
  169. {yara_x-0.10.0 → yara_x-0.11.0}/lib/src/compiler/tests/testdata/errors/12.in +0 -0
  170. {yara_x-0.10.0 → yara_x-0.11.0}/lib/src/compiler/tests/testdata/errors/12.out +0 -0
  171. {yara_x-0.10.0 → yara_x-0.11.0}/lib/src/compiler/tests/testdata/errors/120.in +0 -0
  172. {yara_x-0.10.0 → yara_x-0.11.0}/lib/src/compiler/tests/testdata/errors/120.out +0 -0
  173. {yara_x-0.10.0 → yara_x-0.11.0}/lib/src/compiler/tests/testdata/errors/121.in +0 -0
  174. {yara_x-0.10.0 → yara_x-0.11.0}/lib/src/compiler/tests/testdata/errors/121.out +0 -0
  175. {yara_x-0.10.0 → yara_x-0.11.0}/lib/src/compiler/tests/testdata/errors/122.in +0 -0
  176. {yara_x-0.10.0 → yara_x-0.11.0}/lib/src/compiler/tests/testdata/errors/122.out +0 -0
  177. {yara_x-0.10.0 → yara_x-0.11.0}/lib/src/compiler/tests/testdata/errors/123.in +0 -0
  178. {yara_x-0.10.0 → yara_x-0.11.0}/lib/src/compiler/tests/testdata/errors/123.out +0 -0
  179. {yara_x-0.10.0 → yara_x-0.11.0}/lib/src/compiler/tests/testdata/errors/124.in +0 -0
  180. {yara_x-0.10.0 → yara_x-0.11.0}/lib/src/compiler/tests/testdata/errors/125.in +0 -0
  181. {yara_x-0.10.0 → yara_x-0.11.0}/lib/src/compiler/tests/testdata/errors/126.in +0 -0
  182. {yara_x-0.10.0 → yara_x-0.11.0}/lib/src/compiler/tests/testdata/errors/127.in +0 -0
  183. {yara_x-0.10.0 → yara_x-0.11.0}/lib/src/compiler/tests/testdata/errors/128.in +0 -0
  184. {yara_x-0.10.0 → yara_x-0.11.0}/lib/src/compiler/tests/testdata/errors/128.out +0 -0
  185. {yara_x-0.10.0 → yara_x-0.11.0}/lib/src/compiler/tests/testdata/errors/129.in +0 -0
  186. {yara_x-0.10.0 → yara_x-0.11.0}/lib/src/compiler/tests/testdata/errors/129.out +0 -0
  187. {yara_x-0.10.0 → yara_x-0.11.0}/lib/src/compiler/tests/testdata/errors/13.in +0 -0
  188. {yara_x-0.10.0 → yara_x-0.11.0}/lib/src/compiler/tests/testdata/errors/13.out +0 -0
  189. {yara_x-0.10.0 → yara_x-0.11.0}/lib/src/compiler/tests/testdata/errors/131.in +0 -0
  190. {yara_x-0.10.0 → yara_x-0.11.0}/lib/src/compiler/tests/testdata/errors/131.out +0 -0
  191. {yara_x-0.10.0 → yara_x-0.11.0}/lib/src/compiler/tests/testdata/errors/132.in +0 -0
  192. {yara_x-0.10.0 → yara_x-0.11.0}/lib/src/compiler/tests/testdata/errors/132.out +0 -0
  193. {yara_x-0.10.0 → yara_x-0.11.0}/lib/src/compiler/tests/testdata/errors/133.in +0 -0
  194. {yara_x-0.10.0 → yara_x-0.11.0}/lib/src/compiler/tests/testdata/errors/133.out +0 -0
  195. {yara_x-0.10.0 → yara_x-0.11.0}/lib/src/compiler/tests/testdata/errors/134.in +0 -0
  196. {yara_x-0.10.0 → yara_x-0.11.0}/lib/src/compiler/tests/testdata/errors/134.out +0 -0
  197. {yara_x-0.10.0 → yara_x-0.11.0}/lib/src/compiler/tests/testdata/errors/135.in +0 -0
  198. {yara_x-0.10.0 → yara_x-0.11.0}/lib/src/compiler/tests/testdata/errors/135.out +0 -0
  199. {yara_x-0.10.0 → yara_x-0.11.0}/lib/src/compiler/tests/testdata/errors/136.in +0 -0
  200. {yara_x-0.10.0 → yara_x-0.11.0}/lib/src/compiler/tests/testdata/errors/136.out +0 -0
  201. {yara_x-0.10.0 → yara_x-0.11.0}/lib/src/compiler/tests/testdata/errors/137.in +0 -0
  202. {yara_x-0.10.0 → yara_x-0.11.0}/lib/src/compiler/tests/testdata/errors/137.out +0 -0
  203. {yara_x-0.10.0 → yara_x-0.11.0}/lib/src/compiler/tests/testdata/errors/138.in +0 -0
  204. {yara_x-0.10.0 → yara_x-0.11.0}/lib/src/compiler/tests/testdata/errors/138.out +0 -0
  205. {yara_x-0.10.0 → yara_x-0.11.0}/lib/src/compiler/tests/testdata/errors/14.in +0 -0
  206. {yara_x-0.10.0 → yara_x-0.11.0}/lib/src/compiler/tests/testdata/errors/14.out +0 -0
  207. {yara_x-0.10.0 → yara_x-0.11.0}/lib/src/compiler/tests/testdata/errors/15.in +0 -0
  208. {yara_x-0.10.0 → yara_x-0.11.0}/lib/src/compiler/tests/testdata/errors/15.out +0 -0
  209. {yara_x-0.10.0 → yara_x-0.11.0}/lib/src/compiler/tests/testdata/errors/16.in +0 -0
  210. {yara_x-0.10.0 → yara_x-0.11.0}/lib/src/compiler/tests/testdata/errors/16.out +0 -0
  211. {yara_x-0.10.0 → yara_x-0.11.0}/lib/src/compiler/tests/testdata/errors/17.in +0 -0
  212. {yara_x-0.10.0 → yara_x-0.11.0}/lib/src/compiler/tests/testdata/errors/17.out +0 -0
  213. {yara_x-0.10.0 → yara_x-0.11.0}/lib/src/compiler/tests/testdata/errors/18.in +0 -0
  214. {yara_x-0.10.0 → yara_x-0.11.0}/lib/src/compiler/tests/testdata/errors/18.out +0 -0
  215. {yara_x-0.10.0 → yara_x-0.11.0}/lib/src/compiler/tests/testdata/errors/19.in +0 -0
  216. {yara_x-0.10.0 → yara_x-0.11.0}/lib/src/compiler/tests/testdata/errors/19.out +0 -0
  217. {yara_x-0.10.0 → yara_x-0.11.0}/lib/src/compiler/tests/testdata/errors/2.in +0 -0
  218. {yara_x-0.10.0 → yara_x-0.11.0}/lib/src/compiler/tests/testdata/errors/2.out +0 -0
  219. {yara_x-0.10.0 → yara_x-0.11.0}/lib/src/compiler/tests/testdata/errors/20.in +0 -0
  220. {yara_x-0.10.0 → yara_x-0.11.0}/lib/src/compiler/tests/testdata/errors/20.out +0 -0
  221. {yara_x-0.10.0 → yara_x-0.11.0}/lib/src/compiler/tests/testdata/errors/21.in +0 -0
  222. {yara_x-0.10.0 → yara_x-0.11.0}/lib/src/compiler/tests/testdata/errors/21.out +0 -0
  223. {yara_x-0.10.0 → yara_x-0.11.0}/lib/src/compiler/tests/testdata/errors/22.in +0 -0
  224. {yara_x-0.10.0 → yara_x-0.11.0}/lib/src/compiler/tests/testdata/errors/22.out +0 -0
  225. {yara_x-0.10.0 → yara_x-0.11.0}/lib/src/compiler/tests/testdata/errors/23.in +0 -0
  226. {yara_x-0.10.0 → yara_x-0.11.0}/lib/src/compiler/tests/testdata/errors/23.out +0 -0
  227. {yara_x-0.10.0 → yara_x-0.11.0}/lib/src/compiler/tests/testdata/errors/24.in +0 -0
  228. {yara_x-0.10.0 → yara_x-0.11.0}/lib/src/compiler/tests/testdata/errors/24.out +0 -0
  229. {yara_x-0.10.0 → yara_x-0.11.0}/lib/src/compiler/tests/testdata/errors/25.in +0 -0
  230. {yara_x-0.10.0 → yara_x-0.11.0}/lib/src/compiler/tests/testdata/errors/25.out +0 -0
  231. {yara_x-0.10.0 → yara_x-0.11.0}/lib/src/compiler/tests/testdata/errors/26.in +0 -0
  232. {yara_x-0.10.0 → yara_x-0.11.0}/lib/src/compiler/tests/testdata/errors/26.out +0 -0
  233. {yara_x-0.10.0 → yara_x-0.11.0}/lib/src/compiler/tests/testdata/errors/28.in +0 -0
  234. {yara_x-0.10.0 → yara_x-0.11.0}/lib/src/compiler/tests/testdata/errors/28.out +0 -0
  235. {yara_x-0.10.0 → yara_x-0.11.0}/lib/src/compiler/tests/testdata/errors/29.in +0 -0
  236. {yara_x-0.10.0 → yara_x-0.11.0}/lib/src/compiler/tests/testdata/errors/29.out +0 -0
  237. {yara_x-0.10.0 → yara_x-0.11.0}/lib/src/compiler/tests/testdata/errors/3.in +0 -0
  238. {yara_x-0.10.0 → yara_x-0.11.0}/lib/src/compiler/tests/testdata/errors/3.out +0 -0
  239. {yara_x-0.10.0 → yara_x-0.11.0}/lib/src/compiler/tests/testdata/errors/30.in +0 -0
  240. {yara_x-0.10.0 → yara_x-0.11.0}/lib/src/compiler/tests/testdata/errors/30.out +0 -0
  241. {yara_x-0.10.0 → yara_x-0.11.0}/lib/src/compiler/tests/testdata/errors/31.in +0 -0
  242. {yara_x-0.10.0 → yara_x-0.11.0}/lib/src/compiler/tests/testdata/errors/31.out +0 -0
  243. {yara_x-0.10.0 → yara_x-0.11.0}/lib/src/compiler/tests/testdata/errors/32.in +0 -0
  244. {yara_x-0.10.0 → yara_x-0.11.0}/lib/src/compiler/tests/testdata/errors/32.out +0 -0
  245. {yara_x-0.10.0 → yara_x-0.11.0}/lib/src/compiler/tests/testdata/errors/33.in +0 -0
  246. {yara_x-0.10.0 → yara_x-0.11.0}/lib/src/compiler/tests/testdata/errors/33.out +0 -0
  247. {yara_x-0.10.0 → yara_x-0.11.0}/lib/src/compiler/tests/testdata/errors/34.in +0 -0
  248. {yara_x-0.10.0 → yara_x-0.11.0}/lib/src/compiler/tests/testdata/errors/34.out +0 -0
  249. {yara_x-0.10.0 → yara_x-0.11.0}/lib/src/compiler/tests/testdata/errors/35.in +0 -0
  250. {yara_x-0.10.0 → yara_x-0.11.0}/lib/src/compiler/tests/testdata/errors/35.out +0 -0
  251. {yara_x-0.10.0 → yara_x-0.11.0}/lib/src/compiler/tests/testdata/errors/37.in +0 -0
  252. {yara_x-0.10.0 → yara_x-0.11.0}/lib/src/compiler/tests/testdata/errors/37.out +0 -0
  253. {yara_x-0.10.0 → yara_x-0.11.0}/lib/src/compiler/tests/testdata/errors/38.in +0 -0
  254. {yara_x-0.10.0 → yara_x-0.11.0}/lib/src/compiler/tests/testdata/errors/38.out +0 -0
  255. {yara_x-0.10.0 → yara_x-0.11.0}/lib/src/compiler/tests/testdata/errors/39.in +0 -0
  256. {yara_x-0.10.0 → yara_x-0.11.0}/lib/src/compiler/tests/testdata/errors/39.out +0 -0
  257. {yara_x-0.10.0 → yara_x-0.11.0}/lib/src/compiler/tests/testdata/errors/4.in +0 -0
  258. {yara_x-0.10.0 → yara_x-0.11.0}/lib/src/compiler/tests/testdata/errors/4.out +0 -0
  259. {yara_x-0.10.0 → yara_x-0.11.0}/lib/src/compiler/tests/testdata/errors/40.in +0 -0
  260. {yara_x-0.10.0 → yara_x-0.11.0}/lib/src/compiler/tests/testdata/errors/40.out +0 -0
  261. {yara_x-0.10.0 → yara_x-0.11.0}/lib/src/compiler/tests/testdata/errors/41.in +0 -0
  262. {yara_x-0.10.0 → yara_x-0.11.0}/lib/src/compiler/tests/testdata/errors/41.out +0 -0
  263. {yara_x-0.10.0 → yara_x-0.11.0}/lib/src/compiler/tests/testdata/errors/42.in +0 -0
  264. {yara_x-0.10.0 → yara_x-0.11.0}/lib/src/compiler/tests/testdata/errors/42.out +0 -0
  265. {yara_x-0.10.0 → yara_x-0.11.0}/lib/src/compiler/tests/testdata/errors/43.in +0 -0
  266. {yara_x-0.10.0 → yara_x-0.11.0}/lib/src/compiler/tests/testdata/errors/43.out +0 -0
  267. {yara_x-0.10.0 → yara_x-0.11.0}/lib/src/compiler/tests/testdata/errors/44.in +0 -0
  268. {yara_x-0.10.0 → yara_x-0.11.0}/lib/src/compiler/tests/testdata/errors/44.out +0 -0
  269. {yara_x-0.10.0 → yara_x-0.11.0}/lib/src/compiler/tests/testdata/errors/45.in +0 -0
  270. {yara_x-0.10.0 → yara_x-0.11.0}/lib/src/compiler/tests/testdata/errors/45.out +0 -0
  271. {yara_x-0.10.0 → yara_x-0.11.0}/lib/src/compiler/tests/testdata/errors/46.in +0 -0
  272. {yara_x-0.10.0 → yara_x-0.11.0}/lib/src/compiler/tests/testdata/errors/46.out +0 -0
  273. {yara_x-0.10.0 → yara_x-0.11.0}/lib/src/compiler/tests/testdata/errors/47.in +0 -0
  274. {yara_x-0.10.0 → yara_x-0.11.0}/lib/src/compiler/tests/testdata/errors/47.out +0 -0
  275. {yara_x-0.10.0 → yara_x-0.11.0}/lib/src/compiler/tests/testdata/errors/48.in +0 -0
  276. {yara_x-0.10.0 → yara_x-0.11.0}/lib/src/compiler/tests/testdata/errors/48.out +0 -0
  277. {yara_x-0.10.0 → yara_x-0.11.0}/lib/src/compiler/tests/testdata/errors/49.in +0 -0
  278. {yara_x-0.10.0 → yara_x-0.11.0}/lib/src/compiler/tests/testdata/errors/49.out +0 -0
  279. {yara_x-0.10.0 → yara_x-0.11.0}/lib/src/compiler/tests/testdata/errors/5.in +0 -0
  280. {yara_x-0.10.0 → yara_x-0.11.0}/lib/src/compiler/tests/testdata/errors/5.out +0 -0
  281. {yara_x-0.10.0 → yara_x-0.11.0}/lib/src/compiler/tests/testdata/errors/50.in +0 -0
  282. {yara_x-0.10.0 → yara_x-0.11.0}/lib/src/compiler/tests/testdata/errors/50.out +0 -0
  283. {yara_x-0.10.0 → yara_x-0.11.0}/lib/src/compiler/tests/testdata/errors/51.in +0 -0
  284. {yara_x-0.10.0 → yara_x-0.11.0}/lib/src/compiler/tests/testdata/errors/51.out +0 -0
  285. {yara_x-0.10.0 → yara_x-0.11.0}/lib/src/compiler/tests/testdata/errors/52.in +0 -0
  286. {yara_x-0.10.0 → yara_x-0.11.0}/lib/src/compiler/tests/testdata/errors/52.out +0 -0
  287. {yara_x-0.10.0 → yara_x-0.11.0}/lib/src/compiler/tests/testdata/errors/53.in +0 -0
  288. {yara_x-0.10.0 → yara_x-0.11.0}/lib/src/compiler/tests/testdata/errors/53.out +0 -0
  289. {yara_x-0.10.0 → yara_x-0.11.0}/lib/src/compiler/tests/testdata/errors/54.in +0 -0
  290. {yara_x-0.10.0 → yara_x-0.11.0}/lib/src/compiler/tests/testdata/errors/54.out +0 -0
  291. {yara_x-0.10.0 → yara_x-0.11.0}/lib/src/compiler/tests/testdata/errors/55.in +0 -0
  292. {yara_x-0.10.0 → yara_x-0.11.0}/lib/src/compiler/tests/testdata/errors/55.out +0 -0
  293. {yara_x-0.10.0 → yara_x-0.11.0}/lib/src/compiler/tests/testdata/errors/56.in +0 -0
  294. {yara_x-0.10.0 → yara_x-0.11.0}/lib/src/compiler/tests/testdata/errors/56.out +0 -0
  295. {yara_x-0.10.0 → yara_x-0.11.0}/lib/src/compiler/tests/testdata/errors/57.in +0 -0
  296. {yara_x-0.10.0 → yara_x-0.11.0}/lib/src/compiler/tests/testdata/errors/57.out +0 -0
  297. {yara_x-0.10.0 → yara_x-0.11.0}/lib/src/compiler/tests/testdata/errors/58.in +0 -0
  298. {yara_x-0.10.0 → yara_x-0.11.0}/lib/src/compiler/tests/testdata/errors/58.out +0 -0
  299. {yara_x-0.10.0 → yara_x-0.11.0}/lib/src/compiler/tests/testdata/errors/59.in +0 -0
  300. {yara_x-0.10.0 → yara_x-0.11.0}/lib/src/compiler/tests/testdata/errors/59.out +0 -0
  301. {yara_x-0.10.0 → yara_x-0.11.0}/lib/src/compiler/tests/testdata/errors/6.in +0 -0
  302. {yara_x-0.10.0 → yara_x-0.11.0}/lib/src/compiler/tests/testdata/errors/6.out +0 -0
  303. {yara_x-0.10.0 → yara_x-0.11.0}/lib/src/compiler/tests/testdata/errors/60.in +0 -0
  304. {yara_x-0.10.0 → yara_x-0.11.0}/lib/src/compiler/tests/testdata/errors/60.out +0 -0
  305. {yara_x-0.10.0 → yara_x-0.11.0}/lib/src/compiler/tests/testdata/errors/61.in +0 -0
  306. {yara_x-0.10.0 → yara_x-0.11.0}/lib/src/compiler/tests/testdata/errors/61.out +0 -0
  307. {yara_x-0.10.0 → yara_x-0.11.0}/lib/src/compiler/tests/testdata/errors/62.in +0 -0
  308. {yara_x-0.10.0 → yara_x-0.11.0}/lib/src/compiler/tests/testdata/errors/62.out +0 -0
  309. {yara_x-0.10.0 → yara_x-0.11.0}/lib/src/compiler/tests/testdata/errors/63.in +0 -0
  310. {yara_x-0.10.0 → yara_x-0.11.0}/lib/src/compiler/tests/testdata/errors/63.out +0 -0
  311. {yara_x-0.10.0 → yara_x-0.11.0}/lib/src/compiler/tests/testdata/errors/64.in +0 -0
  312. {yara_x-0.10.0 → yara_x-0.11.0}/lib/src/compiler/tests/testdata/errors/64.out +0 -0
  313. {yara_x-0.10.0 → yara_x-0.11.0}/lib/src/compiler/tests/testdata/errors/65.in +0 -0
  314. {yara_x-0.10.0 → yara_x-0.11.0}/lib/src/compiler/tests/testdata/errors/65.out +0 -0
  315. {yara_x-0.10.0 → yara_x-0.11.0}/lib/src/compiler/tests/testdata/errors/66.in +0 -0
  316. {yara_x-0.10.0 → yara_x-0.11.0}/lib/src/compiler/tests/testdata/errors/66.out +0 -0
  317. {yara_x-0.10.0 → yara_x-0.11.0}/lib/src/compiler/tests/testdata/errors/67.in +0 -0
  318. {yara_x-0.10.0 → yara_x-0.11.0}/lib/src/compiler/tests/testdata/errors/67.out +0 -0
  319. {yara_x-0.10.0 → yara_x-0.11.0}/lib/src/compiler/tests/testdata/errors/68.in +0 -0
  320. {yara_x-0.10.0 → yara_x-0.11.0}/lib/src/compiler/tests/testdata/errors/68.out +0 -0
  321. {yara_x-0.10.0 → yara_x-0.11.0}/lib/src/compiler/tests/testdata/errors/69.in +0 -0
  322. {yara_x-0.10.0 → yara_x-0.11.0}/lib/src/compiler/tests/testdata/errors/69.out +0 -0
  323. {yara_x-0.10.0 → yara_x-0.11.0}/lib/src/compiler/tests/testdata/errors/7.in +0 -0
  324. {yara_x-0.10.0 → yara_x-0.11.0}/lib/src/compiler/tests/testdata/errors/7.out +0 -0
  325. {yara_x-0.10.0 → yara_x-0.11.0}/lib/src/compiler/tests/testdata/errors/70.in +0 -0
  326. {yara_x-0.10.0 → yara_x-0.11.0}/lib/src/compiler/tests/testdata/errors/70.out +0 -0
  327. {yara_x-0.10.0 → yara_x-0.11.0}/lib/src/compiler/tests/testdata/errors/71.in +0 -0
  328. {yara_x-0.10.0 → yara_x-0.11.0}/lib/src/compiler/tests/testdata/errors/71.out +0 -0
  329. {yara_x-0.10.0 → yara_x-0.11.0}/lib/src/compiler/tests/testdata/errors/72.in +0 -0
  330. {yara_x-0.10.0 → yara_x-0.11.0}/lib/src/compiler/tests/testdata/errors/72.out +0 -0
  331. {yara_x-0.10.0 → yara_x-0.11.0}/lib/src/compiler/tests/testdata/errors/73.in +0 -0
  332. {yara_x-0.10.0 → yara_x-0.11.0}/lib/src/compiler/tests/testdata/errors/73.out +0 -0
  333. {yara_x-0.10.0 → yara_x-0.11.0}/lib/src/compiler/tests/testdata/errors/74.in +0 -0
  334. {yara_x-0.10.0 → yara_x-0.11.0}/lib/src/compiler/tests/testdata/errors/74.out +0 -0
  335. {yara_x-0.10.0 → yara_x-0.11.0}/lib/src/compiler/tests/testdata/errors/75.in +0 -0
  336. {yara_x-0.10.0 → yara_x-0.11.0}/lib/src/compiler/tests/testdata/errors/75.out +0 -0
  337. {yara_x-0.10.0 → yara_x-0.11.0}/lib/src/compiler/tests/testdata/errors/76.in +0 -0
  338. {yara_x-0.10.0 → yara_x-0.11.0}/lib/src/compiler/tests/testdata/errors/76.out +0 -0
  339. {yara_x-0.10.0 → yara_x-0.11.0}/lib/src/compiler/tests/testdata/errors/77.in +0 -0
  340. {yara_x-0.10.0 → yara_x-0.11.0}/lib/src/compiler/tests/testdata/errors/77.out +0 -0
  341. {yara_x-0.10.0 → yara_x-0.11.0}/lib/src/compiler/tests/testdata/errors/78.in +0 -0
  342. {yara_x-0.10.0 → yara_x-0.11.0}/lib/src/compiler/tests/testdata/errors/78.out +0 -0
  343. {yara_x-0.10.0 → yara_x-0.11.0}/lib/src/compiler/tests/testdata/errors/79.in +0 -0
  344. {yara_x-0.10.0 → yara_x-0.11.0}/lib/src/compiler/tests/testdata/errors/79.out +0 -0
  345. {yara_x-0.10.0 → yara_x-0.11.0}/lib/src/compiler/tests/testdata/errors/8.in +0 -0
  346. {yara_x-0.10.0 → yara_x-0.11.0}/lib/src/compiler/tests/testdata/errors/8.out +0 -0
  347. {yara_x-0.10.0 → yara_x-0.11.0}/lib/src/compiler/tests/testdata/errors/80.in +0 -0
  348. {yara_x-0.10.0 → yara_x-0.11.0}/lib/src/compiler/tests/testdata/errors/80.out +0 -0
  349. {yara_x-0.10.0 → yara_x-0.11.0}/lib/src/compiler/tests/testdata/errors/81.in +0 -0
  350. {yara_x-0.10.0 → yara_x-0.11.0}/lib/src/compiler/tests/testdata/errors/81.out +0 -0
  351. {yara_x-0.10.0 → yara_x-0.11.0}/lib/src/compiler/tests/testdata/errors/82.in +0 -0
  352. {yara_x-0.10.0 → yara_x-0.11.0}/lib/src/compiler/tests/testdata/errors/82.out +0 -0
  353. {yara_x-0.10.0 → yara_x-0.11.0}/lib/src/compiler/tests/testdata/errors/83.in +0 -0
  354. {yara_x-0.10.0 → yara_x-0.11.0}/lib/src/compiler/tests/testdata/errors/83.out +0 -0
  355. {yara_x-0.10.0 → yara_x-0.11.0}/lib/src/compiler/tests/testdata/errors/84.in +0 -0
  356. {yara_x-0.10.0 → yara_x-0.11.0}/lib/src/compiler/tests/testdata/errors/84.out +0 -0
  357. {yara_x-0.10.0 → yara_x-0.11.0}/lib/src/compiler/tests/testdata/errors/85.in +0 -0
  358. {yara_x-0.10.0 → yara_x-0.11.0}/lib/src/compiler/tests/testdata/errors/85.out +0 -0
  359. {yara_x-0.10.0 → yara_x-0.11.0}/lib/src/compiler/tests/testdata/errors/86.in +0 -0
  360. {yara_x-0.10.0 → yara_x-0.11.0}/lib/src/compiler/tests/testdata/errors/86.out +0 -0
  361. {yara_x-0.10.0 → yara_x-0.11.0}/lib/src/compiler/tests/testdata/errors/87.in +0 -0
  362. {yara_x-0.10.0 → yara_x-0.11.0}/lib/src/compiler/tests/testdata/errors/87.out +0 -0
  363. {yara_x-0.10.0 → yara_x-0.11.0}/lib/src/compiler/tests/testdata/errors/88.in +0 -0
  364. {yara_x-0.10.0 → yara_x-0.11.0}/lib/src/compiler/tests/testdata/errors/88.out +0 -0
  365. {yara_x-0.10.0 → yara_x-0.11.0}/lib/src/compiler/tests/testdata/errors/89.in +0 -0
  366. {yara_x-0.10.0 → yara_x-0.11.0}/lib/src/compiler/tests/testdata/errors/9.in +0 -0
  367. {yara_x-0.10.0 → yara_x-0.11.0}/lib/src/compiler/tests/testdata/errors/9.out +0 -0
  368. {yara_x-0.10.0 → yara_x-0.11.0}/lib/src/compiler/tests/testdata/errors/90.in +0 -0
  369. {yara_x-0.10.0 → yara_x-0.11.0}/lib/src/compiler/tests/testdata/errors/90.out +0 -0
  370. {yara_x-0.10.0 → yara_x-0.11.0}/lib/src/compiler/tests/testdata/errors/91.in +0 -0
  371. {yara_x-0.10.0 → yara_x-0.11.0}/lib/src/compiler/tests/testdata/errors/91.out +0 -0
  372. {yara_x-0.10.0 → yara_x-0.11.0}/lib/src/compiler/tests/testdata/errors/92.in +0 -0
  373. {yara_x-0.10.0 → yara_x-0.11.0}/lib/src/compiler/tests/testdata/errors/92.out +0 -0
  374. {yara_x-0.10.0 → yara_x-0.11.0}/lib/src/compiler/tests/testdata/errors/93.in +0 -0
  375. {yara_x-0.10.0 → yara_x-0.11.0}/lib/src/compiler/tests/testdata/errors/93.out +0 -0
  376. {yara_x-0.10.0 → yara_x-0.11.0}/lib/src/compiler/tests/testdata/errors/94.in +0 -0
  377. {yara_x-0.10.0 → yara_x-0.11.0}/lib/src/compiler/tests/testdata/errors/94.out +0 -0
  378. {yara_x-0.10.0 → yara_x-0.11.0}/lib/src/compiler/tests/testdata/errors/95.in +0 -0
  379. {yara_x-0.10.0 → yara_x-0.11.0}/lib/src/compiler/tests/testdata/errors/95.out +0 -0
  380. {yara_x-0.10.0 → yara_x-0.11.0}/lib/src/compiler/tests/testdata/errors/96.in +0 -0
  381. {yara_x-0.10.0 → yara_x-0.11.0}/lib/src/compiler/tests/testdata/errors/96.out +0 -0
  382. {yara_x-0.10.0 → yara_x-0.11.0}/lib/src/compiler/tests/testdata/errors/97.in +0 -0
  383. {yara_x-0.10.0 → yara_x-0.11.0}/lib/src/compiler/tests/testdata/errors/97.out +0 -0
  384. {yara_x-0.10.0 → yara_x-0.11.0}/lib/src/compiler/tests/testdata/errors/98.in +0 -0
  385. {yara_x-0.10.0 → yara_x-0.11.0}/lib/src/compiler/tests/testdata/errors/99.in +0 -0
  386. {yara_x-0.10.0 → yara_x-0.11.0}/lib/src/compiler/tests/testdata/errors/99.out +0 -0
  387. {yara_x-0.10.0 → yara_x-0.11.0}/lib/src/compiler/tests/testdata/warnings/1.in +0 -0
  388. {yara_x-0.10.0 → yara_x-0.11.0}/lib/src/compiler/tests/testdata/warnings/1.out +0 -0
  389. {yara_x-0.10.0 → yara_x-0.11.0}/lib/src/compiler/tests/testdata/warnings/10.in +0 -0
  390. {yara_x-0.10.0 → yara_x-0.11.0}/lib/src/compiler/tests/testdata/warnings/10.out +0 -0
  391. {yara_x-0.10.0 → yara_x-0.11.0}/lib/src/compiler/tests/testdata/warnings/11.in +0 -0
  392. {yara_x-0.10.0 → yara_x-0.11.0}/lib/src/compiler/tests/testdata/warnings/11.out +0 -0
  393. {yara_x-0.10.0 → yara_x-0.11.0}/lib/src/compiler/tests/testdata/warnings/12.in +0 -0
  394. {yara_x-0.10.0 → yara_x-0.11.0}/lib/src/compiler/tests/testdata/warnings/12.out +0 -0
  395. {yara_x-0.10.0 → yara_x-0.11.0}/lib/src/compiler/tests/testdata/warnings/13.in +0 -0
  396. {yara_x-0.10.0 → yara_x-0.11.0}/lib/src/compiler/tests/testdata/warnings/13.out +0 -0
  397. {yara_x-0.10.0 → yara_x-0.11.0}/lib/src/compiler/tests/testdata/warnings/14.in +0 -0
  398. {yara_x-0.10.0 → yara_x-0.11.0}/lib/src/compiler/tests/testdata/warnings/14.out +0 -0
  399. {yara_x-0.10.0 → yara_x-0.11.0}/lib/src/compiler/tests/testdata/warnings/15.in +0 -0
  400. {yara_x-0.10.0 → yara_x-0.11.0}/lib/src/compiler/tests/testdata/warnings/15.out +0 -0
  401. {yara_x-0.10.0 → yara_x-0.11.0}/lib/src/compiler/tests/testdata/warnings/16.in +0 -0
  402. {yara_x-0.10.0 → yara_x-0.11.0}/lib/src/compiler/tests/testdata/warnings/16.out +0 -0
  403. {yara_x-0.10.0 → yara_x-0.11.0}/lib/src/compiler/tests/testdata/warnings/17.in +0 -0
  404. {yara_x-0.10.0 → yara_x-0.11.0}/lib/src/compiler/tests/testdata/warnings/17.out +0 -0
  405. {yara_x-0.10.0 → yara_x-0.11.0}/lib/src/compiler/tests/testdata/warnings/18.in +0 -0
  406. {yara_x-0.10.0 → yara_x-0.11.0}/lib/src/compiler/tests/testdata/warnings/18.out +0 -0
  407. {yara_x-0.10.0 → yara_x-0.11.0}/lib/src/compiler/tests/testdata/warnings/19.in +0 -0
  408. {yara_x-0.10.0 → yara_x-0.11.0}/lib/src/compiler/tests/testdata/warnings/19.out +0 -0
  409. {yara_x-0.10.0 → yara_x-0.11.0}/lib/src/compiler/tests/testdata/warnings/2.in +0 -0
  410. {yara_x-0.10.0 → yara_x-0.11.0}/lib/src/compiler/tests/testdata/warnings/2.out +0 -0
  411. {yara_x-0.10.0 → yara_x-0.11.0}/lib/src/compiler/tests/testdata/warnings/20.in +0 -0
  412. {yara_x-0.10.0 → yara_x-0.11.0}/lib/src/compiler/tests/testdata/warnings/20.out +0 -0
  413. {yara_x-0.10.0 → yara_x-0.11.0}/lib/src/compiler/tests/testdata/warnings/21.in +0 -0
  414. {yara_x-0.10.0 → yara_x-0.11.0}/lib/src/compiler/tests/testdata/warnings/21.out +0 -0
  415. {yara_x-0.10.0 → yara_x-0.11.0}/lib/src/compiler/tests/testdata/warnings/22.in +0 -0
  416. {yara_x-0.10.0 → yara_x-0.11.0}/lib/src/compiler/tests/testdata/warnings/22.out +0 -0
  417. {yara_x-0.10.0 → yara_x-0.11.0}/lib/src/compiler/tests/testdata/warnings/23.in +0 -0
  418. {yara_x-0.10.0 → yara_x-0.11.0}/lib/src/compiler/tests/testdata/warnings/23.out +0 -0
  419. {yara_x-0.10.0 → yara_x-0.11.0}/lib/src/compiler/tests/testdata/warnings/24.in +0 -0
  420. {yara_x-0.10.0 → yara_x-0.11.0}/lib/src/compiler/tests/testdata/warnings/24.out +0 -0
  421. {yara_x-0.10.0 → yara_x-0.11.0}/lib/src/compiler/tests/testdata/warnings/25.in +0 -0
  422. {yara_x-0.10.0 → yara_x-0.11.0}/lib/src/compiler/tests/testdata/warnings/25.out +0 -0
  423. {yara_x-0.10.0 → yara_x-0.11.0}/lib/src/compiler/tests/testdata/warnings/26.in +0 -0
  424. {yara_x-0.10.0 → yara_x-0.11.0}/lib/src/compiler/tests/testdata/warnings/26.out +0 -0
  425. {yara_x-0.10.0 → yara_x-0.11.0}/lib/src/compiler/tests/testdata/warnings/27.in +0 -0
  426. {yara_x-0.10.0 → yara_x-0.11.0}/lib/src/compiler/tests/testdata/warnings/27.out +0 -0
  427. {yara_x-0.10.0 → yara_x-0.11.0}/lib/src/compiler/tests/testdata/warnings/28.in +0 -0
  428. {yara_x-0.10.0 → yara_x-0.11.0}/lib/src/compiler/tests/testdata/warnings/28.out +0 -0
  429. {yara_x-0.10.0 → yara_x-0.11.0}/lib/src/compiler/tests/testdata/warnings/29.in +0 -0
  430. {yara_x-0.10.0 → yara_x-0.11.0}/lib/src/compiler/tests/testdata/warnings/29.out +0 -0
  431. {yara_x-0.10.0 → yara_x-0.11.0}/lib/src/compiler/tests/testdata/warnings/3.in +0 -0
  432. {yara_x-0.10.0 → yara_x-0.11.0}/lib/src/compiler/tests/testdata/warnings/3.out +0 -0
  433. {yara_x-0.10.0 → yara_x-0.11.0}/lib/src/compiler/tests/testdata/warnings/30.in +0 -0
  434. {yara_x-0.10.0 → yara_x-0.11.0}/lib/src/compiler/tests/testdata/warnings/30.out +0 -0
  435. {yara_x-0.10.0 → yara_x-0.11.0}/lib/src/compiler/tests/testdata/warnings/31.in +0 -0
  436. {yara_x-0.10.0 → yara_x-0.11.0}/lib/src/compiler/tests/testdata/warnings/31.out +0 -0
  437. {yara_x-0.10.0 → yara_x-0.11.0}/lib/src/compiler/tests/testdata/warnings/32.in +0 -0
  438. {yara_x-0.10.0 → yara_x-0.11.0}/lib/src/compiler/tests/testdata/warnings/32.out +0 -0
  439. {yara_x-0.10.0 → yara_x-0.11.0}/lib/src/compiler/tests/testdata/warnings/33.in +0 -0
  440. {yara_x-0.10.0 → yara_x-0.11.0}/lib/src/compiler/tests/testdata/warnings/33.out +0 -0
  441. {yara_x-0.10.0 → yara_x-0.11.0}/lib/src/compiler/tests/testdata/warnings/34.in +0 -0
  442. {yara_x-0.10.0 → yara_x-0.11.0}/lib/src/compiler/tests/testdata/warnings/34.out +0 -0
  443. {yara_x-0.10.0 → yara_x-0.11.0}/lib/src/compiler/tests/testdata/warnings/4.in +0 -0
  444. {yara_x-0.10.0 → yara_x-0.11.0}/lib/src/compiler/tests/testdata/warnings/4.out +0 -0
  445. {yara_x-0.10.0 → yara_x-0.11.0}/lib/src/compiler/tests/testdata/warnings/5.in +0 -0
  446. {yara_x-0.10.0 → yara_x-0.11.0}/lib/src/compiler/tests/testdata/warnings/5.out +0 -0
  447. {yara_x-0.10.0 → yara_x-0.11.0}/lib/src/compiler/tests/testdata/warnings/6.in +0 -0
  448. {yara_x-0.10.0 → yara_x-0.11.0}/lib/src/compiler/tests/testdata/warnings/6.out +0 -0
  449. {yara_x-0.10.0 → yara_x-0.11.0}/lib/src/compiler/tests/testdata/warnings/7.in +0 -0
  450. {yara_x-0.10.0 → yara_x-0.11.0}/lib/src/compiler/tests/testdata/warnings/7.out +0 -0
  451. {yara_x-0.10.0 → yara_x-0.11.0}/lib/src/compiler/tests/testdata/warnings/8.in +0 -0
  452. {yara_x-0.10.0 → yara_x-0.11.0}/lib/src/compiler/tests/testdata/warnings/8.out +0 -0
  453. {yara_x-0.10.0 → yara_x-0.11.0}/lib/src/compiler/tests/testdata/warnings/9.in +0 -0
  454. {yara_x-0.10.0 → yara_x-0.11.0}/lib/src/compiler/tests/testdata/warnings/9.out +0 -0
  455. {yara_x-0.10.0 → yara_x-0.11.0}/lib/src/compiler/tests/testdata/warnings/no_warnings.in +0 -0
  456. {yara_x-0.10.0 → yara_x-0.11.0}/lib/src/compiler/tests/testdata/warnings/no_warnings.out +0 -0
  457. {yara_x-0.10.0 → yara_x-0.11.0}/lib/src/compiler/warnings.rs +0 -0
  458. {yara_x-0.10.0 → yara_x-0.11.0}/lib/src/lib.rs +0 -0
  459. {yara_x-0.10.0 → yara_x-0.11.0}/lib/src/models.rs +0 -0
  460. {yara_x-0.10.0 → yara_x-0.11.0}/lib/src/modules/add_modules.rs +0 -0
  461. {yara_x-0.10.0 → yara_x-0.11.0}/lib/src/modules/console.rs +0 -0
  462. {yara_x-0.10.0 → yara_x-0.11.0}/lib/src/modules/cuckoo/mod.rs +0 -0
  463. {yara_x-0.10.0 → yara_x-0.11.0}/lib/src/modules/cuckoo/tests/mod.rs +0 -0
  464. {yara_x-0.10.0 → yara_x-0.11.0}/lib/src/modules/cuckoo/tests/testdata/1.json +0 -0
  465. {yara_x-0.10.0 → yara_x-0.11.0}/lib/src/modules/cuckoo/tests/testdata/1.yar +0 -0
  466. {yara_x-0.10.0 → yara_x-0.11.0}/lib/src/modules/cuckoo/tests/testdata/2.json +0 -0
  467. {yara_x-0.10.0 → yara_x-0.11.0}/lib/src/modules/cuckoo/tests/testdata/2.yar +0 -0
  468. {yara_x-0.10.0 → yara_x-0.11.0}/lib/src/modules/dotnet/mod.rs +0 -0
  469. {yara_x-0.10.0 → yara_x-0.11.0}/lib/src/modules/dotnet/parser.rs +0 -0
  470. {yara_x-0.10.0 → yara_x-0.11.0}/lib/src/modules/dotnet/tests/testdata/605ebe5b5f4b94e1a73e0ad1162bd542e5cb948d1a4ea5a575a14d6b9d6ee849.in +0 -0
  471. {yara_x-0.10.0 → yara_x-0.11.0}/lib/src/modules/dotnet/tests/testdata/86a1e48cfc843eabfe1b468ef9358c1068950f849c612ab808225b359db0bb8c.in +0 -0
  472. {yara_x-0.10.0 → yara_x-0.11.0}/lib/src/modules/elf/mod.rs +0 -0
  473. {yara_x-0.10.0 → yara_x-0.11.0}/lib/src/modules/elf/parser.rs +0 -0
  474. {yara_x-0.10.0 → yara_x-0.11.0}/lib/src/modules/elf/tests/mod.rs +0 -0
  475. {yara_x-0.10.0 → yara_x-0.11.0}/lib/src/modules/hash/mod.rs +0 -0
  476. {yara_x-0.10.0 → yara_x-0.11.0}/lib/src/modules/hash/tests/mod.rs +0 -0
  477. {yara_x-0.10.0 → yara_x-0.11.0}/lib/src/modules/lnk/mod.rs +0 -0
  478. {yara_x-0.10.0 → yara_x-0.11.0}/lib/src/modules/lnk/parser.rs +0 -0
  479. {yara_x-0.10.0 → yara_x-0.11.0}/lib/src/modules/macho/parser.rs +0 -0
  480. {yara_x-0.10.0 → yara_x-0.11.0}/lib/src/modules/magic/mod.rs +0 -0
  481. {yara_x-0.10.0 → yara_x-0.11.0}/lib/src/modules/magic/tests/mod.rs +0 -0
  482. {yara_x-0.10.0 → yara_x-0.11.0}/lib/src/modules/math.rs +0 -0
  483. {yara_x-0.10.0 → yara_x-0.11.0}/lib/src/modules/mod.rs +0 -0
  484. {yara_x-0.10.0 → yara_x-0.11.0}/lib/src/modules/modules.rs +0 -0
  485. {yara_x-0.10.0 → yara_x-0.11.0}/lib/src/modules/pe/asn1.rs +0 -0
  486. {yara_x-0.10.0 → yara_x-0.11.0}/lib/src/modules/pe/authenticode.rs +0 -0
  487. {yara_x-0.10.0 → yara_x-0.11.0}/lib/src/modules/pe/mod.rs +0 -0
  488. {yara_x-0.10.0 → yara_x-0.11.0}/lib/src/modules/pe/parser.rs +0 -0
  489. {yara_x-0.10.0 → yara_x-0.11.0}/lib/src/modules/pe/rva2off.rs +0 -0
  490. {yara_x-0.10.0 → yara_x-0.11.0}/lib/src/modules/pe/tests/mod.rs +0 -0
  491. {yara_x-0.10.0 → yara_x-0.11.0}/lib/src/modules/protos/console.proto +0 -0
  492. {yara_x-0.10.0 → yara_x-0.11.0}/lib/src/modules/protos/cuckoo.proto +0 -0
  493. {yara_x-0.10.0 → yara_x-0.11.0}/lib/src/modules/protos/dotnet.proto +0 -0
  494. {yara_x-0.10.0 → yara_x-0.11.0}/lib/src/modules/protos/elf.proto +0 -0
  495. {yara_x-0.10.0 → yara_x-0.11.0}/lib/src/modules/protos/hash.proto +0 -0
  496. {yara_x-0.10.0 → yara_x-0.11.0}/lib/src/modules/protos/lnk.proto +0 -0
  497. {yara_x-0.10.0 → yara_x-0.11.0}/lib/src/modules/protos/macho.proto +0 -0
  498. {yara_x-0.10.0 → yara_x-0.11.0}/lib/src/modules/protos/magic.proto +0 -0
  499. {yara_x-0.10.0 → yara_x-0.11.0}/lib/src/modules/protos/math.proto +0 -0
  500. {yara_x-0.10.0 → yara_x-0.11.0}/lib/src/modules/protos/mods.proto +0 -0
  501. {yara_x-0.10.0 → yara_x-0.11.0}/lib/src/modules/protos/pe.proto +0 -0
  502. {yara_x-0.10.0 → yara_x-0.11.0}/lib/src/modules/protos/string.proto +0 -0
  503. {yara_x-0.10.0 → yara_x-0.11.0}/lib/src/modules/protos/test_proto3.proto +0 -0
  504. {yara_x-0.10.0 → yara_x-0.11.0}/lib/src/modules/protos/text.proto +0 -0
  505. {yara_x-0.10.0 → yara_x-0.11.0}/lib/src/modules/protos/time.proto +0 -0
  506. {yara_x-0.10.0 → yara_x-0.11.0}/lib/src/modules/protos/yaml.proto +0 -0
  507. {yara_x-0.10.0 → yara_x-0.11.0}/lib/src/modules/string.rs +0 -0
  508. {yara_x-0.10.0 → yara_x-0.11.0}/lib/src/modules/test_proto2/mod.rs +0 -0
  509. {yara_x-0.10.0 → yara_x-0.11.0}/lib/src/modules/test_proto3/mod.rs +0 -0
  510. {yara_x-0.10.0 → yara_x-0.11.0}/lib/src/modules/tests.rs +0 -0
  511. {yara_x-0.10.0 → yara_x-0.11.0}/lib/src/modules/text.rs +0 -0
  512. {yara_x-0.10.0 → yara_x-0.11.0}/lib/src/modules/time.rs +0 -0
  513. {yara_x-0.10.0 → yara_x-0.11.0}/lib/src/re/bitmapset.rs +0 -0
  514. {yara_x-0.10.0 → yara_x-0.11.0}/lib/src/re/fast/compiler.rs +0 -0
  515. {yara_x-0.10.0 → yara_x-0.11.0}/lib/src/re/fast/fastvm.rs +0 -0
  516. {yara_x-0.10.0 → yara_x-0.11.0}/lib/src/re/fast/instr.rs +0 -0
  517. {yara_x-0.10.0 → yara_x-0.11.0}/lib/src/re/fast/mod.rs +0 -0
  518. {yara_x-0.10.0 → yara_x-0.11.0}/lib/src/re/mod.rs +0 -0
  519. {yara_x-0.10.0 → yara_x-0.11.0}/lib/src/re/parser.rs +0 -0
  520. {yara_x-0.10.0 → yara_x-0.11.0}/lib/src/re/thompson/compiler.rs +0 -0
  521. {yara_x-0.10.0 → yara_x-0.11.0}/lib/src/re/thompson/instr.rs +0 -0
  522. {yara_x-0.10.0 → yara_x-0.11.0}/lib/src/re/thompson/mod.rs +0 -0
  523. {yara_x-0.10.0 → yara_x-0.11.0}/lib/src/re/thompson/pikevm.rs +0 -0
  524. {yara_x-0.10.0 → yara_x-0.11.0}/lib/src/re/thompson/tests.rs +0 -0
  525. {yara_x-0.10.0 → yara_x-0.11.0}/lib/src/scanner/matches.rs +0 -0
  526. {yara_x-0.10.0 → yara_x-0.11.0}/lib/src/scanner/tests.rs +0 -0
  527. {yara_x-0.10.0 → yara_x-0.11.0}/lib/src/string_pool.rs +0 -0
  528. {yara_x-0.10.0 → yara_x-0.11.0}/lib/src/tests/testdata/jumps.bin +0 -0
  529. {yara_x-0.10.0 → yara_x-0.11.0}/lib/src/types/array.rs +0 -0
  530. {yara_x-0.10.0 → yara_x-0.11.0}/lib/src/types/map.rs +0 -0
  531. {yara_x-0.10.0 → yara_x-0.11.0}/lib/src/variables.rs +0 -0
  532. {yara_x-0.10.0 → yara_x-0.11.0}/lib/src/wasm/builder.rs +0 -0
  533. {yara_x-0.10.0 → yara_x-0.11.0}/lib/src/wasm/string.rs +0 -0
  534. {yara_x-0.10.0 → yara_x-0.11.0}/macros/Cargo.toml +0 -0
  535. {yara_x-0.10.0 → yara_x-0.11.0}/macros/src/error.rs +0 -0
  536. {yara_x-0.10.0 → yara_x-0.11.0}/macros/src/lib.rs +0 -0
  537. {yara_x-0.10.0 → yara_x-0.11.0}/macros/src/module_export.rs +0 -0
  538. {yara_x-0.10.0 → yara_x-0.11.0}/macros/src/module_main.rs +0 -0
  539. {yara_x-0.10.0 → yara_x-0.11.0}/macros/src/wasm_export.rs +0 -0
  540. {yara_x-0.10.0 → yara_x-0.11.0}/parser/README.md +0 -0
  541. {yara_x-0.10.0 → yara_x-0.11.0}/parser/src/ast/errors.rs +0 -0
  542. {yara_x-0.10.0 → yara_x-0.11.0}/parser/src/cst/mod.rs +0 -0
  543. {yara_x-0.10.0 → yara_x-0.11.0}/parser/src/cst/syntax_stream.rs +0 -0
  544. {yara_x-0.10.0 → yara_x-0.11.0}/parser/src/cst/tests.rs +0 -0
  545. {yara_x-0.10.0 → yara_x-0.11.0}/parser/src/lib.rs +0 -0
  546. {yara_x-0.10.0 → yara_x-0.11.0}/parser/src/parser/tests/mod.rs +0 -0
  547. {yara_x-0.10.0 → yara_x-0.11.0}/parser/src/parser/tests/testdata/arithmetic-ops.ast +0 -0
  548. {yara_x-0.10.0 → yara_x-0.11.0}/parser/src/parser/tests/testdata/arithmetic-ops.cst +0 -0
  549. {yara_x-0.10.0 → yara_x-0.11.0}/parser/src/parser/tests/testdata/arithmetic-ops.in +0 -0
  550. {yara_x-0.10.0 → yara_x-0.11.0}/parser/src/parser/tests/testdata/basic-1.ast +0 -0
  551. {yara_x-0.10.0 → yara_x-0.11.0}/parser/src/parser/tests/testdata/basic-1.cst +0 -0
  552. {yara_x-0.10.0 → yara_x-0.11.0}/parser/src/parser/tests/testdata/basic-1.in +0 -0
  553. {yara_x-0.10.0 → yara_x-0.11.0}/parser/src/parser/tests/testdata/basic-2.ast +0 -0
  554. {yara_x-0.10.0 → yara_x-0.11.0}/parser/src/parser/tests/testdata/basic-2.cst +0 -0
  555. {yara_x-0.10.0 → yara_x-0.11.0}/parser/src/parser/tests/testdata/basic-2.in +0 -0
  556. {yara_x-0.10.0 → yara_x-0.11.0}/parser/src/parser/tests/testdata/basic-3.ast +0 -0
  557. {yara_x-0.10.0 → yara_x-0.11.0}/parser/src/parser/tests/testdata/basic-3.cst +0 -0
  558. {yara_x-0.10.0 → yara_x-0.11.0}/parser/src/parser/tests/testdata/basic-3.in +0 -0
  559. {yara_x-0.10.0 → yara_x-0.11.0}/parser/src/parser/tests/testdata/basic-4.ast +0 -0
  560. {yara_x-0.10.0 → yara_x-0.11.0}/parser/src/parser/tests/testdata/basic-4.cst +0 -0
  561. {yara_x-0.10.0 → yara_x-0.11.0}/parser/src/parser/tests/testdata/basic-4.in +0 -0
  562. {yara_x-0.10.0 → yara_x-0.11.0}/parser/src/parser/tests/testdata/basic-error-1.ast +0 -0
  563. {yara_x-0.10.0 → yara_x-0.11.0}/parser/src/parser/tests/testdata/basic-error-1.cst +0 -0
  564. {yara_x-0.10.0 → yara_x-0.11.0}/parser/src/parser/tests/testdata/basic-error-1.in +0 -0
  565. {yara_x-0.10.0 → yara_x-0.11.0}/parser/src/parser/tests/testdata/basic-error-2.ast +0 -0
  566. {yara_x-0.10.0 → yara_x-0.11.0}/parser/src/parser/tests/testdata/basic-error-2.cst +0 -0
  567. {yara_x-0.10.0 → yara_x-0.11.0}/parser/src/parser/tests/testdata/basic-error-2.in +0 -0
  568. {yara_x-0.10.0 → yara_x-0.11.0}/parser/src/parser/tests/testdata/basic-error-3.ast +0 -0
  569. {yara_x-0.10.0 → yara_x-0.11.0}/parser/src/parser/tests/testdata/basic-error-3.cst +0 -0
  570. {yara_x-0.10.0 → yara_x-0.11.0}/parser/src/parser/tests/testdata/basic-error-3.in +0 -0
  571. {yara_x-0.10.0 → yara_x-0.11.0}/parser/src/parser/tests/testdata/basic-error-4.ast +0 -0
  572. {yara_x-0.10.0 → yara_x-0.11.0}/parser/src/parser/tests/testdata/basic-error-4.cst +0 -0
  573. {yara_x-0.10.0 → yara_x-0.11.0}/parser/src/parser/tests/testdata/basic-error-4.in +0 -0
  574. {yara_x-0.10.0 → yara_x-0.11.0}/parser/src/parser/tests/testdata/basic-error-5.ast +0 -0
  575. {yara_x-0.10.0 → yara_x-0.11.0}/parser/src/parser/tests/testdata/basic-error-5.cst +0 -0
  576. {yara_x-0.10.0 → yara_x-0.11.0}/parser/src/parser/tests/testdata/basic-error-5.in +0 -0
  577. {yara_x-0.10.0 → yara_x-0.11.0}/parser/src/parser/tests/testdata/bitwise-ops-error-1.in +0 -0
  578. {yara_x-0.10.0 → yara_x-0.11.0}/parser/src/parser/tests/testdata/bitwise-ops.ast +0 -0
  579. {yara_x-0.10.0 → yara_x-0.11.0}/parser/src/parser/tests/testdata/bitwise-ops.cst +0 -0
  580. {yara_x-0.10.0 → yara_x-0.11.0}/parser/src/parser/tests/testdata/bitwise-ops.in +0 -0
  581. {yara_x-0.10.0 → yara_x-0.11.0}/parser/src/parser/tests/testdata/comments.ast +0 -0
  582. {yara_x-0.10.0 → yara_x-0.11.0}/parser/src/parser/tests/testdata/comments.cst +0 -0
  583. {yara_x-0.10.0 → yara_x-0.11.0}/parser/src/parser/tests/testdata/comments.in +0 -0
  584. {yara_x-0.10.0 → yara_x-0.11.0}/parser/src/parser/tests/testdata/expr-1.ast +0 -0
  585. {yara_x-0.10.0 → yara_x-0.11.0}/parser/src/parser/tests/testdata/expr-1.cst +0 -0
  586. {yara_x-0.10.0 → yara_x-0.11.0}/parser/src/parser/tests/testdata/expr-1.in +0 -0
  587. {yara_x-0.10.0 → yara_x-0.11.0}/parser/src/parser/tests/testdata/expr-2.ast +0 -0
  588. {yara_x-0.10.0 → yara_x-0.11.0}/parser/src/parser/tests/testdata/expr-2.cst +0 -0
  589. {yara_x-0.10.0 → yara_x-0.11.0}/parser/src/parser/tests/testdata/expr-2.in +0 -0
  590. {yara_x-0.10.0 → yara_x-0.11.0}/parser/src/parser/tests/testdata/expr-3.in +0 -0
  591. {yara_x-0.10.0 → yara_x-0.11.0}/parser/src/parser/tests/testdata/expr-4.ast +0 -0
  592. {yara_x-0.10.0 → yara_x-0.11.0}/parser/src/parser/tests/testdata/expr-4.cst +0 -0
  593. {yara_x-0.10.0 → yara_x-0.11.0}/parser/src/parser/tests/testdata/expr-4.in +0 -0
  594. {yara_x-0.10.0 → yara_x-0.11.0}/parser/src/parser/tests/testdata/expr-5.ast +0 -0
  595. {yara_x-0.10.0 → yara_x-0.11.0}/parser/src/parser/tests/testdata/expr-5.cst +0 -0
  596. {yara_x-0.10.0 → yara_x-0.11.0}/parser/src/parser/tests/testdata/expr-5.in +0 -0
  597. {yara_x-0.10.0 → yara_x-0.11.0}/parser/src/parser/tests/testdata/expr-6.ast +0 -0
  598. {yara_x-0.10.0 → yara_x-0.11.0}/parser/src/parser/tests/testdata/expr-6.cst +0 -0
  599. {yara_x-0.10.0 → yara_x-0.11.0}/parser/src/parser/tests/testdata/expr-6.in +0 -0
  600. {yara_x-0.10.0 → yara_x-0.11.0}/parser/src/parser/tests/testdata/expr-error-1.in +0 -0
  601. {yara_x-0.10.0 → yara_x-0.11.0}/parser/src/parser/tests/testdata/for-1.ast +0 -0
  602. {yara_x-0.10.0 → yara_x-0.11.0}/parser/src/parser/tests/testdata/for-1.cst +0 -0
  603. {yara_x-0.10.0 → yara_x-0.11.0}/parser/src/parser/tests/testdata/for-1.in +0 -0
  604. {yara_x-0.10.0 → yara_x-0.11.0}/parser/src/parser/tests/testdata/for-2.ast +0 -0
  605. {yara_x-0.10.0 → yara_x-0.11.0}/parser/src/parser/tests/testdata/for-2.cst +0 -0
  606. {yara_x-0.10.0 → yara_x-0.11.0}/parser/src/parser/tests/testdata/for-2.in +0 -0
  607. {yara_x-0.10.0 → yara_x-0.11.0}/parser/src/parser/tests/testdata/for-3.ast +0 -0
  608. {yara_x-0.10.0 → yara_x-0.11.0}/parser/src/parser/tests/testdata/for-3.cst +0 -0
  609. {yara_x-0.10.0 → yara_x-0.11.0}/parser/src/parser/tests/testdata/for-3.in +0 -0
  610. {yara_x-0.10.0 → yara_x-0.11.0}/parser/src/parser/tests/testdata/for-4.ast +0 -0
  611. {yara_x-0.10.0 → yara_x-0.11.0}/parser/src/parser/tests/testdata/for-4.cst +0 -0
  612. {yara_x-0.10.0 → yara_x-0.11.0}/parser/src/parser/tests/testdata/for-4.in +0 -0
  613. {yara_x-0.10.0 → yara_x-0.11.0}/parser/src/parser/tests/testdata/for-5.ast +0 -0
  614. {yara_x-0.10.0 → yara_x-0.11.0}/parser/src/parser/tests/testdata/for-5.cst +0 -0
  615. {yara_x-0.10.0 → yara_x-0.11.0}/parser/src/parser/tests/testdata/for-5.in +0 -0
  616. {yara_x-0.10.0 → yara_x-0.11.0}/parser/src/parser/tests/testdata/for-error-1.ast +0 -0
  617. {yara_x-0.10.0 → yara_x-0.11.0}/parser/src/parser/tests/testdata/for-error-1.cst +0 -0
  618. {yara_x-0.10.0 → yara_x-0.11.0}/parser/src/parser/tests/testdata/for-error-1.in +0 -0
  619. {yara_x-0.10.0 → yara_x-0.11.0}/parser/src/parser/tests/testdata/func-call.in +0 -0
  620. {yara_x-0.10.0 → yara_x-0.11.0}/parser/src/parser/tests/testdata/hex-patterns-1.ast +0 -0
  621. {yara_x-0.10.0 → yara_x-0.11.0}/parser/src/parser/tests/testdata/hex-patterns-1.cst +0 -0
  622. {yara_x-0.10.0 → yara_x-0.11.0}/parser/src/parser/tests/testdata/hex-patterns-1.in +0 -0
  623. {yara_x-0.10.0 → yara_x-0.11.0}/parser/src/parser/tests/testdata/hex-patterns-2.ast +0 -0
  624. {yara_x-0.10.0 → yara_x-0.11.0}/parser/src/parser/tests/testdata/hex-patterns-2.cst +0 -0
  625. {yara_x-0.10.0 → yara_x-0.11.0}/parser/src/parser/tests/testdata/hex-patterns-2.in +0 -0
  626. {yara_x-0.10.0 → yara_x-0.11.0}/parser/src/parser/tests/testdata/hex-patterns-3.ast +0 -0
  627. {yara_x-0.10.0 → yara_x-0.11.0}/parser/src/parser/tests/testdata/hex-patterns-3.cst +0 -0
  628. {yara_x-0.10.0 → yara_x-0.11.0}/parser/src/parser/tests/testdata/hex-patterns-3.in +0 -0
  629. {yara_x-0.10.0 → yara_x-0.11.0}/parser/src/parser/tests/testdata/hex-patterns-error-1.ast +0 -0
  630. {yara_x-0.10.0 → yara_x-0.11.0}/parser/src/parser/tests/testdata/hex-patterns-error-1.cst +0 -0
  631. {yara_x-0.10.0 → yara_x-0.11.0}/parser/src/parser/tests/testdata/hex-patterns-error-1.in +0 -0
  632. {yara_x-0.10.0 → yara_x-0.11.0}/parser/src/parser/tests/testdata/hex-patterns-error-2.ast +0 -0
  633. {yara_x-0.10.0 → yara_x-0.11.0}/parser/src/parser/tests/testdata/hex-patterns-error-2.cst +0 -0
  634. {yara_x-0.10.0 → yara_x-0.11.0}/parser/src/parser/tests/testdata/hex-patterns-error-2.in +0 -0
  635. {yara_x-0.10.0 → yara_x-0.11.0}/parser/src/parser/tests/testdata/meta-error-1.ast +0 -0
  636. {yara_x-0.10.0 → yara_x-0.11.0}/parser/src/parser/tests/testdata/meta-error-1.cst +0 -0
  637. {yara_x-0.10.0 → yara_x-0.11.0}/parser/src/parser/tests/testdata/meta-error-1.in +0 -0
  638. {yara_x-0.10.0 → yara_x-0.11.0}/parser/src/parser/tests/testdata/meta-error-2.ast +0 -0
  639. {yara_x-0.10.0 → yara_x-0.11.0}/parser/src/parser/tests/testdata/meta-error-2.cst +0 -0
  640. {yara_x-0.10.0 → yara_x-0.11.0}/parser/src/parser/tests/testdata/meta-error-2.in +0 -0
  641. {yara_x-0.10.0 → yara_x-0.11.0}/parser/src/parser/tests/testdata/meta-error-3.ast +0 -0
  642. {yara_x-0.10.0 → yara_x-0.11.0}/parser/src/parser/tests/testdata/meta-error-3.cst +0 -0
  643. {yara_x-0.10.0 → yara_x-0.11.0}/parser/src/parser/tests/testdata/meta-error-3.in +0 -0
  644. {yara_x-0.10.0 → yara_x-0.11.0}/parser/src/parser/tests/testdata/meta-error-4.ast +0 -0
  645. {yara_x-0.10.0 → yara_x-0.11.0}/parser/src/parser/tests/testdata/meta-error-4.cst +0 -0
  646. {yara_x-0.10.0 → yara_x-0.11.0}/parser/src/parser/tests/testdata/meta-error-4.in +0 -0
  647. {yara_x-0.10.0 → yara_x-0.11.0}/parser/src/parser/tests/testdata/meta-error-5.ast +0 -0
  648. {yara_x-0.10.0 → yara_x-0.11.0}/parser/src/parser/tests/testdata/meta-error-5.cst +0 -0
  649. {yara_x-0.10.0 → yara_x-0.11.0}/parser/src/parser/tests/testdata/meta-error-5.in +0 -0
  650. {yara_x-0.10.0 → yara_x-0.11.0}/parser/src/parser/tests/testdata/meta-error-6.ast +0 -0
  651. {yara_x-0.10.0 → yara_x-0.11.0}/parser/src/parser/tests/testdata/meta-error-6.cst +0 -0
  652. {yara_x-0.10.0 → yara_x-0.11.0}/parser/src/parser/tests/testdata/meta-error-6.in +0 -0
  653. {yara_x-0.10.0 → yara_x-0.11.0}/parser/src/parser/tests/testdata/meta.ast +0 -0
  654. {yara_x-0.10.0 → yara_x-0.11.0}/parser/src/parser/tests/testdata/meta.cst +0 -0
  655. {yara_x-0.10.0 → yara_x-0.11.0}/parser/src/parser/tests/testdata/meta.in +0 -0
  656. {yara_x-0.10.0 → yara_x-0.11.0}/parser/src/parser/tests/testdata/of-1.ast +0 -0
  657. {yara_x-0.10.0 → yara_x-0.11.0}/parser/src/parser/tests/testdata/of-1.cst +0 -0
  658. {yara_x-0.10.0 → yara_x-0.11.0}/parser/src/parser/tests/testdata/of-1.in +0 -0
  659. {yara_x-0.10.0 → yara_x-0.11.0}/parser/src/parser/tests/testdata/of-error-1.ast +0 -0
  660. {yara_x-0.10.0 → yara_x-0.11.0}/parser/src/parser/tests/testdata/of-error-1.cst +0 -0
  661. {yara_x-0.10.0 → yara_x-0.11.0}/parser/src/parser/tests/testdata/of-error-1.in +0 -0
  662. {yara_x-0.10.0 → yara_x-0.11.0}/parser/src/parser/tests/testdata/pattern-mods-1.ast +0 -0
  663. {yara_x-0.10.0 → yara_x-0.11.0}/parser/src/parser/tests/testdata/pattern-mods-1.cst +0 -0
  664. {yara_x-0.10.0 → yara_x-0.11.0}/parser/src/parser/tests/testdata/pattern-mods-1.in +0 -0
  665. {yara_x-0.10.0 → yara_x-0.11.0}/parser/src/parser/tests/testdata/pattern-mods-error-1.ast +0 -0
  666. {yara_x-0.10.0 → yara_x-0.11.0}/parser/src/parser/tests/testdata/pattern-mods-error-1.cst +0 -0
  667. {yara_x-0.10.0 → yara_x-0.11.0}/parser/src/parser/tests/testdata/pattern-mods-error-1.in +0 -0
  668. {yara_x-0.10.0 → yara_x-0.11.0}/parser/src/parser/tests/testdata/patterns-1.ast +0 -0
  669. {yara_x-0.10.0 → yara_x-0.11.0}/parser/src/parser/tests/testdata/patterns-1.cst +0 -0
  670. {yara_x-0.10.0 → yara_x-0.11.0}/parser/src/parser/tests/testdata/patterns-1.in +0 -0
  671. {yara_x-0.10.0 → yara_x-0.11.0}/parser/src/parser/tests/testdata/patterns-2.ast +0 -0
  672. {yara_x-0.10.0 → yara_x-0.11.0}/parser/src/parser/tests/testdata/patterns-2.cst +0 -0
  673. {yara_x-0.10.0 → yara_x-0.11.0}/parser/src/parser/tests/testdata/patterns-2.in +0 -0
  674. {yara_x-0.10.0 → yara_x-0.11.0}/parser/src/parser/tests/testdata/patterns-3.ast +0 -0
  675. {yara_x-0.10.0 → yara_x-0.11.0}/parser/src/parser/tests/testdata/patterns-3.cst +0 -0
  676. {yara_x-0.10.0 → yara_x-0.11.0}/parser/src/parser/tests/testdata/patterns-3.in +0 -0
  677. {yara_x-0.10.0 → yara_x-0.11.0}/parser/src/parser/tests/testdata/patterns-error-1.ast +0 -0
  678. {yara_x-0.10.0 → yara_x-0.11.0}/parser/src/parser/tests/testdata/patterns-error-1.cst +0 -0
  679. {yara_x-0.10.0 → yara_x-0.11.0}/parser/src/parser/tests/testdata/patterns-error-1.in +0 -0
  680. {yara_x-0.10.0 → yara_x-0.11.0}/parser/src/parser/tests/testdata/patterns-error-2.ast +0 -0
  681. {yara_x-0.10.0 → yara_x-0.11.0}/parser/src/parser/tests/testdata/patterns-error-2.cst +0 -0
  682. {yara_x-0.10.0 → yara_x-0.11.0}/parser/src/parser/tests/testdata/patterns-error-2.in +0 -0
  683. {yara_x-0.10.0 → yara_x-0.11.0}/parser/src/parser/tests/testdata/patterns-error-3.ast +0 -0
  684. {yara_x-0.10.0 → yara_x-0.11.0}/parser/src/parser/tests/testdata/patterns-error-3.cst +0 -0
  685. {yara_x-0.10.0 → yara_x-0.11.0}/parser/src/parser/tests/testdata/patterns-error-3.in +0 -0
  686. {yara_x-0.10.0 → yara_x-0.11.0}/parser/src/parser/tests/testdata/patterns-error-4.ast +0 -0
  687. {yara_x-0.10.0 → yara_x-0.11.0}/parser/src/parser/tests/testdata/patterns-error-4.cst +0 -0
  688. {yara_x-0.10.0 → yara_x-0.11.0}/parser/src/parser/tests/testdata/patterns-error-4.in +0 -0
  689. {yara_x-0.10.0 → yara_x-0.11.0}/parser/src/parser/tests/testdata/patterns-error-5.ast +0 -0
  690. {yara_x-0.10.0 → yara_x-0.11.0}/parser/src/parser/tests/testdata/patterns-error-5.cst +0 -0
  691. {yara_x-0.10.0 → yara_x-0.11.0}/parser/src/parser/tests/testdata/patterns-error-5.in +0 -0
  692. {yara_x-0.10.0 → yara_x-0.11.0}/parser/src/parser/tests/testdata/patterns-error-6.ast +0 -0
  693. {yara_x-0.10.0 → yara_x-0.11.0}/parser/src/parser/tests/testdata/patterns-error-6.cst +0 -0
  694. {yara_x-0.10.0 → yara_x-0.11.0}/parser/src/parser/tests/testdata/patterns-error-6.in +0 -0
  695. {yara_x-0.10.0 → yara_x-0.11.0}/parser/src/parser/tests/testdata/patterns-error-7.ast +0 -0
  696. {yara_x-0.10.0 → yara_x-0.11.0}/parser/src/parser/tests/testdata/patterns-error-7.cst +0 -0
  697. {yara_x-0.10.0 → yara_x-0.11.0}/parser/src/parser/tests/testdata/patterns-error-7.in +0 -0
  698. {yara_x-0.10.0 → yara_x-0.11.0}/parser/src/parser/tests/testdata/rule-mods-1.ast +0 -0
  699. {yara_x-0.10.0 → yara_x-0.11.0}/parser/src/parser/tests/testdata/rule-mods-1.cst +0 -0
  700. {yara_x-0.10.0 → yara_x-0.11.0}/parser/src/parser/tests/testdata/rule-mods-1.in +0 -0
  701. {yara_x-0.10.0 → yara_x-0.11.0}/parser/src/parser/tests/testdata/rule-tags-error-1.ast +0 -0
  702. {yara_x-0.10.0 → yara_x-0.11.0}/parser/src/parser/tests/testdata/rule-tags-error-1.cst +0 -0
  703. {yara_x-0.10.0 → yara_x-0.11.0}/parser/src/parser/tests/testdata/rule-tags-error-1.in +0 -0
  704. {yara_x-0.10.0 → yara_x-0.11.0}/parser/src/parser/tests/testdata/rule-tags-error-2.ast +0 -0
  705. {yara_x-0.10.0 → yara_x-0.11.0}/parser/src/parser/tests/testdata/rule-tags-error-2.cst +0 -0
  706. {yara_x-0.10.0 → yara_x-0.11.0}/parser/src/parser/tests/testdata/rule-tags-error-2.in +0 -0
  707. {yara_x-0.10.0 → yara_x-0.11.0}/parser/src/parser/tests/testdata/rule-tags-error-3.ast +0 -0
  708. {yara_x-0.10.0 → yara_x-0.11.0}/parser/src/parser/tests/testdata/rule-tags-error-3.cst +0 -0
  709. {yara_x-0.10.0 → yara_x-0.11.0}/parser/src/parser/tests/testdata/rule-tags-error-3.in +0 -0
  710. {yara_x-0.10.0 → yara_x-0.11.0}/parser/src/parser/tests/testdata/rule-tags.ast +0 -0
  711. {yara_x-0.10.0 → yara_x-0.11.0}/parser/src/parser/tests/testdata/rule-tags.cst +0 -0
  712. {yara_x-0.10.0 → yara_x-0.11.0}/parser/src/parser/tests/testdata/rule-tags.in +0 -0
  713. {yara_x-0.10.0 → yara_x-0.11.0}/parser/src/parser/tests/testdata/with-1.ast +0 -0
  714. {yara_x-0.10.0 → yara_x-0.11.0}/parser/src/parser/tests/testdata/with-1.cst +0 -0
  715. {yara_x-0.10.0 → yara_x-0.11.0}/parser/src/parser/tests/testdata/with-1.in +0 -0
  716. {yara_x-0.10.0 → yara_x-0.11.0}/parser/src/parser/tests/testdata/with-2.ast +0 -0
  717. {yara_x-0.10.0 → yara_x-0.11.0}/parser/src/parser/tests/testdata/with-2.cst +0 -0
  718. {yara_x-0.10.0 → yara_x-0.11.0}/parser/src/parser/tests/testdata/with-2.in +0 -0
  719. {yara_x-0.10.0 → yara_x-0.11.0}/parser/src/parser/tests/testdata/with-error-1.ast +0 -0
  720. {yara_x-0.10.0 → yara_x-0.11.0}/parser/src/parser/tests/testdata/with-error-1.cst +0 -0
  721. {yara_x-0.10.0 → yara_x-0.11.0}/parser/src/parser/tests/testdata/with-error-1.in +0 -0
  722. {yara_x-0.10.0 → yara_x-0.11.0}/parser/src/parser/tests/testdata/with-error-2.ast +0 -0
  723. {yara_x-0.10.0 → yara_x-0.11.0}/parser/src/parser/tests/testdata/with-error-2.cst +0 -0
  724. {yara_x-0.10.0 → yara_x-0.11.0}/parser/src/parser/tests/testdata/with-error-2.in +0 -0
  725. {yara_x-0.10.0 → yara_x-0.11.0}/parser/src/parser/tests/testdata/with-error-3.ast +0 -0
  726. {yara_x-0.10.0 → yara_x-0.11.0}/parser/src/parser/tests/testdata/with-error-3.cst +0 -0
  727. {yara_x-0.10.0 → yara_x-0.11.0}/parser/src/parser/tests/testdata/with-error-3.in +0 -0
  728. {yara_x-0.10.0 → yara_x-0.11.0}/parser/src/parser/token_stream.rs +0 -0
  729. {yara_x-0.10.0 → yara_x-0.11.0}/parser/src/tokenizer/mod.rs +0 -0
  730. {yara_x-0.10.0 → yara_x-0.11.0}/parser/src/tokenizer/tests.rs +0 -0
  731. {yara_x-0.10.0 → yara_x-0.11.0}/parser/src/tokenizer/tokens.rs +0 -0
  732. {yara_x-0.10.0 → yara_x-0.11.0}/proto/Cargo.toml +0 -0
  733. {yara_x-0.10.0 → yara_x-0.11.0}/proto/README.md +0 -0
  734. {yara_x-0.10.0 → yara_x-0.11.0}/proto/build.rs +0 -0
  735. {yara_x-0.10.0 → yara_x-0.11.0}/proto/src/lib.rs +0 -0
  736. {yara_x-0.10.0 → yara_x-0.11.0}/proto-yaml/Cargo.toml +0 -0
  737. {yara_x-0.10.0 → yara_x-0.11.0}/proto-yaml/README.md +0 -0
  738. {yara_x-0.10.0 → yara_x-0.11.0}/proto-yaml/build.rs +0 -0
  739. {yara_x-0.10.0 → yara_x-0.11.0}/proto-yaml/src/lib.rs +0 -0
  740. {yara_x-0.10.0 → yara_x-0.11.0}/proto-yaml/src/tests/mod.rs +0 -0
  741. {yara_x-0.10.0 → yara_x-0.11.0}/proto-yaml/src/tests/test.proto +0 -0
  742. {yara_x-0.10.0 → yara_x-0.11.0}/proto-yaml/src/tests/testdata/1.in +0 -0
  743. {yara_x-0.10.0 → yara_x-0.11.0}/proto-yaml/src/tests/testdata/1.out +0 -0
  744. {yara_x-0.10.0 → yara_x-0.11.0}/proto-yaml/src/yaml.proto +0 -0
  745. {yara_x-0.10.0 → yara_x-0.11.0}/py/README.md +0 -0
  746. {yara_x-0.10.0 → yara_x-0.11.0}/py/build.rs +0 -0
  747. {yara_x-0.10.0 → yara_x-0.11.0}/pyproject.toml +0 -0
@@ -2,15 +2,6 @@
2
2
  # It is not intended for manual editing.
3
3
  version = 3
4
4
 
5
- [[package]]
6
- name = "addr2line"
7
- version = "0.24.2"
8
- source = "registry+https://github.com/rust-lang/crates.io-index"
9
- checksum = "dfbe277e56a376000877090da837660b4427aad530e3028d44e0bffe4f89a1c1"
10
- dependencies = [
11
- "gimli 0.31.1",
12
- ]
13
-
14
5
  [[package]]
15
6
  name = "adler2"
16
7
  version = "2.0.0"
@@ -94,9 +85,9 @@ dependencies = [
94
85
 
95
86
  [[package]]
96
87
  name = "anstream"
97
- version = "0.6.15"
88
+ version = "0.6.18"
98
89
  source = "registry+https://github.com/rust-lang/crates.io-index"
99
- checksum = "64e15c1ab1f89faffbf04a634d5e1962e9074f2741eef6d97f3c4e322426d526"
90
+ checksum = "8acc5369981196006228e28809f761875c0327210a891e941f4c683b3a99529b"
100
91
  dependencies = [
101
92
  "anstyle",
102
93
  "anstyle-parse",
@@ -109,49 +100,49 @@ dependencies = [
109
100
 
110
101
  [[package]]
111
102
  name = "anstyle"
112
- version = "1.0.8"
103
+ version = "1.0.10"
113
104
  source = "registry+https://github.com/rust-lang/crates.io-index"
114
- checksum = "1bec1de6f59aedf83baf9ff929c98f2ad654b97c9510f4e70cf6f661d49fd5b1"
105
+ checksum = "55cc3b69f167a1ef2e161439aa98aed94e6028e5f9a59be9a6ffb47aef1651f9"
115
106
 
116
107
  [[package]]
117
108
  name = "anstyle-parse"
118
- version = "0.2.5"
109
+ version = "0.2.6"
119
110
  source = "registry+https://github.com/rust-lang/crates.io-index"
120
- checksum = "eb47de1e80c2b463c735db5b217a0ddc39d612e7ac9e2e96a5aed1f57616c1cb"
111
+ checksum = "3b2d16507662817a6a20a9ea92df6652ee4f94f914589377d69f3b21bc5798a9"
121
112
  dependencies = [
122
113
  "utf8parse",
123
114
  ]
124
115
 
125
116
  [[package]]
126
117
  name = "anstyle-query"
127
- version = "1.1.1"
118
+ version = "1.1.2"
128
119
  source = "registry+https://github.com/rust-lang/crates.io-index"
129
- checksum = "6d36fc52c7f6c869915e99412912f22093507da8d9e942ceaf66fe4b7c14422a"
120
+ checksum = "79947af37f4177cfead1110013d678905c37501914fba0efea834c3fe9a8d60c"
130
121
  dependencies = [
131
- "windows-sys 0.52.0",
122
+ "windows-sys 0.59.0",
132
123
  ]
133
124
 
134
125
  [[package]]
135
126
  name = "anstyle-wincon"
136
- version = "3.0.4"
127
+ version = "3.0.6"
137
128
  source = "registry+https://github.com/rust-lang/crates.io-index"
138
- checksum = "5bf74e1b6e971609db8ca7a9ce79fd5768ab6ae46441c572e46cf596f59e57f8"
129
+ checksum = "2109dbce0e72be3ec00bed26e6a7479ca384ad226efdd66db8fa2e3a38c83125"
139
130
  dependencies = [
140
131
  "anstyle",
141
- "windows-sys 0.52.0",
132
+ "windows-sys 0.59.0",
142
133
  ]
143
134
 
144
135
  [[package]]
145
136
  name = "anyhow"
146
- version = "1.0.89"
137
+ version = "1.0.93"
147
138
  source = "registry+https://github.com/rust-lang/crates.io-index"
148
- checksum = "86fdf8605db99b54d3cd748a44c6d04df638eb5dafb219b135d0149bd0db01f6"
139
+ checksum = "4c95c10ba0b00a02636238b814946408b1322d5ac4760326e6fb8ec956d85775"
149
140
 
150
141
  [[package]]
151
142
  name = "arbitrary"
152
- version = "1.3.2"
143
+ version = "1.4.1"
153
144
  source = "registry+https://github.com/rust-lang/crates.io-index"
154
- checksum = "7d5a26814d8dcb93b0e5a0ff3c6d80a8843bafb21b39e8e18a6f05471870e110"
145
+ checksum = "dde20b3d026af13f561bdd0f15edf01fc734f0dafcedbaf42bba506a9517f223"
155
146
  dependencies = [
156
147
  "derive_arbitrary",
157
148
  ]
@@ -162,12 +153,6 @@ version = "6.2.3"
162
153
  source = "registry+https://github.com/rust-lang/crates.io-index"
163
154
  checksum = "5d5dde061bd34119e902bbb2d9b90c5692635cf59fb91d582c2b68043f1b8293"
164
155
 
165
- [[package]]
166
- name = "arrayvec"
167
- version = "0.7.6"
168
- source = "registry+https://github.com/rust-lang/crates.io-index"
169
- checksum = "7c02d123df017efcdfbd739ef81735b36c5ba83ec3c59c80a9d7ecc718f92e50"
170
-
171
156
  [[package]]
172
157
  name = "ascii_tree"
173
158
  version = "0.1.1"
@@ -186,7 +171,7 @@ dependencies = [
186
171
  "nom 7.1.3",
187
172
  "num-traits",
188
173
  "rusticata-macros",
189
- "thiserror",
174
+ "thiserror 1.0.69",
190
175
  "time",
191
176
  ]
192
177
 
@@ -198,7 +183,7 @@ checksum = "965c2d33e53cb6b267e148a4cb0760bc01f4904c1cd4bb4002a085bb016d1490"
198
183
  dependencies = [
199
184
  "proc-macro2",
200
185
  "quote",
201
- "syn 2.0.79",
186
+ "syn 2.0.89",
202
187
  "synstructure",
203
188
  ]
204
189
 
@@ -210,7 +195,7 @@ checksum = "7b18050c2cd6fe86c3a76584ef5e0baf286d038cda203eb6223df2cc413565f7"
210
195
  dependencies = [
211
196
  "proc-macro2",
212
197
  "quote",
213
- "syn 2.0.79",
198
+ "syn 2.0.89",
214
199
  ]
215
200
 
216
201
  [[package]]
@@ -228,21 +213,6 @@ version = "1.4.0"
228
213
  source = "registry+https://github.com/rust-lang/crates.io-index"
229
214
  checksum = "ace50bade8e6234aa140d9a2f552bbee1db4d353f69b8217bc503490fc1a9f26"
230
215
 
231
- [[package]]
232
- name = "backtrace"
233
- version = "0.3.74"
234
- source = "registry+https://github.com/rust-lang/crates.io-index"
235
- checksum = "8d82cb332cdfaed17ae235a638438ac4d4839913cc2af585c3c6746e8f8bee1a"
236
- dependencies = [
237
- "addr2line",
238
- "cfg-if",
239
- "libc",
240
- "miniz_oxide",
241
- "object",
242
- "rustc-demangle",
243
- "windows-targets 0.52.6",
244
- ]
245
-
246
216
  [[package]]
247
217
  name = "base16ct"
248
218
  version = "0.2.0"
@@ -353,9 +323,9 @@ dependencies = [
353
323
 
354
324
  [[package]]
355
325
  name = "bstr"
356
- version = "1.10.0"
326
+ version = "1.11.0"
357
327
  source = "registry+https://github.com/rust-lang/crates.io-index"
358
- checksum = "40723b8fb387abc38f4f4a37c09073622e41dd12327033091ef8950659e6dc0c"
328
+ checksum = "1a68f1f47cdf0ec8ee4b941b2eee2a80cb796db73118c0dd09ac63fbe405be22"
359
329
  dependencies = [
360
330
  "memchr",
361
331
  "regex-automata",
@@ -370,9 +340,9 @@ checksum = "79296716171880943b8470b5f8d03aa55eb2e645a4874bdbb28adb49162e012c"
370
340
 
371
341
  [[package]]
372
342
  name = "bytemuck"
373
- version = "1.19.0"
343
+ version = "1.20.0"
374
344
  source = "registry+https://github.com/rust-lang/crates.io-index"
375
- checksum = "8334215b81e418a0a7bdb8ef0849474f40bb10c8b71f1c4ed315cff49f32494d"
345
+ checksum = "8b37c88a63ffd85d15b406896cc343916d7cf57838a847b3a6f2ca5d39a5695a"
376
346
 
377
347
  [[package]]
378
348
  name = "byteorder"
@@ -382,9 +352,9 @@ checksum = "1fd0f2584146f6f2ef48085050886acf353beff7305ebd1ae69500e27c67f64b"
382
352
 
383
353
  [[package]]
384
354
  name = "bytes"
385
- version = "1.7.2"
355
+ version = "1.8.0"
386
356
  source = "registry+https://github.com/rust-lang/crates.io-index"
387
- checksum = "428d9aa8fbc0670b7b8d6030a7fadd0f86151cae55e4dbbece15f3780a3dfaf3"
357
+ checksum = "9ac0150caa2ae65ca5bd83f25c7de183dea78d4d366469f148435e2acfbad0da"
388
358
 
389
359
  [[package]]
390
360
  name = "bzip2"
@@ -430,16 +400,16 @@ dependencies = [
430
400
  "quote",
431
401
  "serde",
432
402
  "serde_json",
433
- "syn 2.0.79",
403
+ "syn 2.0.89",
434
404
  "tempfile",
435
405
  "toml",
436
406
  ]
437
407
 
438
408
  [[package]]
439
409
  name = "cc"
440
- version = "1.1.30"
410
+ version = "1.2.1"
441
411
  source = "registry+https://github.com/rust-lang/crates.io-index"
442
- checksum = "b16803a61b81d9eabb7eae2588776c4c1e584b738ede45fdbb4c972cec1e9945"
412
+ checksum = "fd9de9f2205d5ef3fd67e685b0df337994ddd4495e2a28d185500d0e1edfea47"
443
413
  dependencies = [
444
414
  "jobserver",
445
415
  "libc",
@@ -489,9 +459,9 @@ dependencies = [
489
459
 
490
460
  [[package]]
491
461
  name = "clap"
492
- version = "4.5.20"
462
+ version = "4.5.21"
493
463
  source = "registry+https://github.com/rust-lang/crates.io-index"
494
- checksum = "b97f376d85a664d5837dbae44bf546e6477a679ff6610010f17276f686d867e8"
464
+ checksum = "fb3b4b9e5a7c7514dfa52869339ee98b3156b0bfb4e8a77c4ff4babb64b1604f"
495
465
  dependencies = [
496
466
  "clap_builder",
497
467
  "clap_derive",
@@ -499,9 +469,9 @@ dependencies = [
499
469
 
500
470
  [[package]]
501
471
  name = "clap_builder"
502
- version = "4.5.20"
472
+ version = "4.5.21"
503
473
  source = "registry+https://github.com/rust-lang/crates.io-index"
504
- checksum = "19bc80abd44e4bed93ca373a0704ccbd1b710dc5749406201bb018272808dc54"
474
+ checksum = "b17a95aa67cc7b5ebd32aa5370189aa0d79069ef1c64ce893bd30fb24bff20ec"
505
475
  dependencies = [
506
476
  "anstream",
507
477
  "anstyle",
@@ -511,9 +481,9 @@ dependencies = [
511
481
 
512
482
  [[package]]
513
483
  name = "clap_complete"
514
- version = "4.5.33"
484
+ version = "4.5.38"
515
485
  source = "registry+https://github.com/rust-lang/crates.io-index"
516
- checksum = "9646e2e245bf62f45d39a0f3f36f1171ad1ea0d6967fd114bca72cb02a8fcdfb"
486
+ checksum = "d9647a559c112175f17cf724dc72d3645680a883c58481332779192b0d8e7a01"
517
487
  dependencies = [
518
488
  "clap",
519
489
  ]
@@ -527,14 +497,14 @@ dependencies = [
527
497
  "heck 0.5.0",
528
498
  "proc-macro2",
529
499
  "quote",
530
- "syn 2.0.79",
500
+ "syn 2.0.89",
531
501
  ]
532
502
 
533
503
  [[package]]
534
504
  name = "clap_lex"
535
- version = "0.7.2"
505
+ version = "0.7.3"
536
506
  source = "registry+https://github.com/rust-lang/crates.io-index"
537
- checksum = "1462739cb27611015575c0c11df5df7601141071f07518d56fcc1be504cbec97"
507
+ checksum = "afb84c814227b90d6895e01398aee0d8033c00e7466aca416fb6a8e0eb19d8a7"
538
508
 
539
509
  [[package]]
540
510
  name = "cobs"
@@ -544,9 +514,9 @@ checksum = "67ba02a97a2bd10f4b59b25c7973101c79642302776489e030cd13cdab09ed15"
544
514
 
545
515
  [[package]]
546
516
  name = "colorchoice"
547
- version = "1.0.2"
517
+ version = "1.0.3"
548
518
  source = "registry+https://github.com/rust-lang/crates.io-index"
549
- checksum = "d3fd119d74b830634cea2a0f58bbd0d54540518a14397557951e79340abc28c0"
519
+ checksum = "5b63caa9aa9397e2d9480a9b13673856c78d8ac123288526c37d7839f2a86990"
550
520
 
551
521
  [[package]]
552
522
  name = "colored_json"
@@ -628,38 +598,29 @@ version = "3.0.1"
628
598
  source = "registry+https://github.com/rust-lang/crates.io-index"
629
599
  checksum = "7704b5fdd17b18ae31c4c1da5a2e0305a2bf17b5249300a9ee9ed7b72114c636"
630
600
 
631
- [[package]]
632
- name = "cpp_demangle"
633
- version = "0.4.4"
634
- source = "registry+https://github.com/rust-lang/crates.io-index"
635
- checksum = "96e58d342ad113c2b878f16d5d034c03be492ae460cdbc02b7f0f2284d310c7d"
636
- dependencies = [
637
- "cfg-if",
638
- ]
639
-
640
601
  [[package]]
641
602
  name = "cpufeatures"
642
- version = "0.2.14"
603
+ version = "0.2.16"
643
604
  source = "registry+https://github.com/rust-lang/crates.io-index"
644
- checksum = "608697df725056feaccfa42cffdaeeec3fccc4ffc38358ecd19b243e716a78e0"
605
+ checksum = "16b80225097f2e5ae4e7179dd2266824648f3e2f49d9134d584b76389d31c4c3"
645
606
  dependencies = [
646
607
  "libc",
647
608
  ]
648
609
 
649
610
  [[package]]
650
611
  name = "cranelift-bforest"
651
- version = "0.112.2"
612
+ version = "0.113.1"
652
613
  source = "registry+https://github.com/rust-lang/crates.io-index"
653
- checksum = "7b765ed4349e66bedd9b88c7691da42e24c7f62067a6be17ddffa949367b6e17"
614
+ checksum = "540b193ff98b825a1f250a75b3118911af918a734154c69d80bcfcf91e7e9522"
654
615
  dependencies = [
655
616
  "cranelift-entity",
656
617
  ]
657
618
 
658
619
  [[package]]
659
620
  name = "cranelift-bitset"
660
- version = "0.112.2"
621
+ version = "0.113.1"
661
622
  source = "registry+https://github.com/rust-lang/crates.io-index"
662
- checksum = "9eaa2aece6237198afd32bff57699e08d4dccb8d3902c214fc1e6ba907247ca4"
623
+ checksum = "c7cb269598b9557ab942d687d3c1086d77c4b50dcf35813f3a65ba306fd42279"
663
624
  dependencies = [
664
625
  "serde",
665
626
  "serde_derive",
@@ -667,9 +628,9 @@ dependencies = [
667
628
 
668
629
  [[package]]
669
630
  name = "cranelift-codegen"
670
- version = "0.112.2"
631
+ version = "0.113.1"
671
632
  source = "registry+https://github.com/rust-lang/crates.io-index"
672
- checksum = "351824439e59d42f0e4fa5aac1d13deded155120043565769e55cd4ad3ca8ed9"
633
+ checksum = "46566d7c83a8bff4150748d66020f4c7224091952aa4b4df1ec4959c39d937a1"
673
634
  dependencies = [
674
635
  "bumpalo",
675
636
  "cranelift-bforest",
@@ -679,7 +640,7 @@ dependencies = [
679
640
  "cranelift-control",
680
641
  "cranelift-entity",
681
642
  "cranelift-isle",
682
- "gimli 0.29.0",
643
+ "gimli 0.31.1",
683
644
  "hashbrown 0.14.5",
684
645
  "log",
685
646
  "regalloc2",
@@ -690,33 +651,33 @@ dependencies = [
690
651
 
691
652
  [[package]]
692
653
  name = "cranelift-codegen-meta"
693
- version = "0.112.2"
654
+ version = "0.113.1"
694
655
  source = "registry+https://github.com/rust-lang/crates.io-index"
695
- checksum = "5a0ce0273d7a493ef8f31f606849a4e931c19187a4923f5f87fc1f2b13109981"
656
+ checksum = "2df8a86a34236cc75a8a6a271973da779c2aeb36c43b6e14da474cf931317082"
696
657
  dependencies = [
697
658
  "cranelift-codegen-shared",
698
659
  ]
699
660
 
700
661
  [[package]]
701
662
  name = "cranelift-codegen-shared"
702
- version = "0.112.2"
663
+ version = "0.113.1"
703
664
  source = "registry+https://github.com/rust-lang/crates.io-index"
704
- checksum = "0f72016ac35579051913f4f07f6b36c509ed69412d852fd44c8e1d7b7fa6d92a"
665
+ checksum = "cf75340b6a57b7c7c1b74f10d3d90883ee6d43a554be8131a4046c2ebcf5eb65"
705
666
 
706
667
  [[package]]
707
668
  name = "cranelift-control"
708
- version = "0.112.2"
669
+ version = "0.113.1"
709
670
  source = "registry+https://github.com/rust-lang/crates.io-index"
710
- checksum = "db28951d21512c4fd0554ef179bfb11e4eb6815062957a9173824eee5de0c46c"
671
+ checksum = "2e84495bc5d23d86aad8c86f8ade4af765b94882af60d60e271d3153942f1978"
711
672
  dependencies = [
712
673
  "arbitrary",
713
674
  ]
714
675
 
715
676
  [[package]]
716
677
  name = "cranelift-entity"
717
- version = "0.112.2"
678
+ version = "0.113.1"
718
679
  source = "registry+https://github.com/rust-lang/crates.io-index"
719
- checksum = "14ebe592a2f81af9237cf9be29dd3854ecb72108cfffa59e85ef12389bf939e3"
680
+ checksum = "963c17147b80df351965e57c04d20dbedc85bcaf44c3436780a59a3f1ff1b1c2"
720
681
  dependencies = [
721
682
  "cranelift-bitset",
722
683
  "serde",
@@ -725,9 +686,9 @@ dependencies = [
725
686
 
726
687
  [[package]]
727
688
  name = "cranelift-frontend"
728
- version = "0.112.2"
689
+ version = "0.113.1"
729
690
  source = "registry+https://github.com/rust-lang/crates.io-index"
730
- checksum = "4437db9d60c7053ac91ded0802740c2ccf123ee6d6898dd906c34f8c530cd119"
691
+ checksum = "727f02acbc4b4cb2ba38a6637101d579db50190df1dd05168c68e762851a3dd5"
731
692
  dependencies = [
732
693
  "cranelift-codegen",
733
694
  "log",
@@ -737,37 +698,21 @@ dependencies = [
737
698
 
738
699
  [[package]]
739
700
  name = "cranelift-isle"
740
- version = "0.112.2"
701
+ version = "0.113.1"
741
702
  source = "registry+https://github.com/rust-lang/crates.io-index"
742
- checksum = "230cb33572b9926e210f2ca28145f2bc87f389e1456560932168e2591feb65c1"
703
+ checksum = "32b00cc2e03c748f2531eea01c871f502b909d30295fdcad43aec7bf5c5b4667"
743
704
 
744
705
  [[package]]
745
706
  name = "cranelift-native"
746
- version = "0.112.2"
707
+ version = "0.113.1"
747
708
  source = "registry+https://github.com/rust-lang/crates.io-index"
748
- checksum = "364524ac7aef7070b1141478724abebeec297d4ea1e87ad8b8986465e91146d9"
709
+ checksum = "bbeaf978dc7c1a2de8bbb9162510ed218eb156697bc45590b8fbdd69bb08e8de"
749
710
  dependencies = [
750
711
  "cranelift-codegen",
751
712
  "libc",
752
713
  "target-lexicon",
753
714
  ]
754
715
 
755
- [[package]]
756
- name = "cranelift-wasm"
757
- version = "0.112.2"
758
- source = "registry+https://github.com/rust-lang/crates.io-index"
759
- checksum = "0572cbd9d136a62c0f39837b6bce3b0978b96b8586794042bec0c214668fd6f5"
760
- dependencies = [
761
- "cranelift-codegen",
762
- "cranelift-entity",
763
- "cranelift-frontend",
764
- "itertools 0.12.1",
765
- "log",
766
- "smallvec",
767
- "wasmparser 0.217.0",
768
- "wasmtime-types",
769
- ]
770
-
771
716
  [[package]]
772
717
  name = "crc"
773
718
  version = "3.2.1"
@@ -948,7 +893,7 @@ dependencies = [
948
893
  "proc-macro2",
949
894
  "quote",
950
895
  "strsim 0.11.1",
951
- "syn 2.0.79",
896
+ "syn 2.0.89",
952
897
  ]
953
898
 
954
899
  [[package]]
@@ -959,7 +904,7 @@ checksum = "d336a2a514f6ccccaa3e09b02d41d35330c07ddf03a62165fcec10bb561c7806"
959
904
  dependencies = [
960
905
  "darling_core",
961
906
  "quote",
962
- "syn 2.0.79",
907
+ "syn 2.0.89",
963
908
  ]
964
909
 
965
910
  [[package]]
@@ -968,15 +913,6 @@ version = "2.6.0"
968
913
  source = "registry+https://github.com/rust-lang/crates.io-index"
969
914
  checksum = "e8566979429cf69b49a5c740c60791108e86440e8be149bbea4fe54d2c32d6e2"
970
915
 
971
- [[package]]
972
- name = "debugid"
973
- version = "0.8.0"
974
- source = "registry+https://github.com/rust-lang/crates.io-index"
975
- checksum = "bef552e6f588e446098f6ba40d89ac146c8c7b64aade83c051ee00bb5d2bc18d"
976
- dependencies = [
977
- "uuid",
978
- ]
979
-
980
916
  [[package]]
981
917
  name = "deflate64"
982
918
  version = "0.1.9"
@@ -1025,13 +961,13 @@ dependencies = [
1025
961
 
1026
962
  [[package]]
1027
963
  name = "derive_arbitrary"
1028
- version = "1.3.2"
964
+ version = "1.4.1"
1029
965
  source = "registry+https://github.com/rust-lang/crates.io-index"
1030
- checksum = "67e77553c4162a157adbf834ebae5b415acbecbeafc7a74b0e886657506a7611"
966
+ checksum = "30542c1ad912e0e3d22a1935c290e12e8a29d704a420177a31faad4a601a0800"
1031
967
  dependencies = [
1032
968
  "proc-macro2",
1033
969
  "quote",
1034
- "syn 2.0.79",
970
+ "syn 2.0.89",
1035
971
  ]
1036
972
 
1037
973
  [[package]]
@@ -1089,7 +1025,7 @@ checksum = "97369cbbc041bc366949bc74d34658d6cda5621039731c6310521892a3a20ae0"
1089
1025
  dependencies = [
1090
1026
  "proc-macro2",
1091
1027
  "quote",
1092
- "syn 2.0.79",
1028
+ "syn 2.0.89",
1093
1029
  ]
1094
1030
 
1095
1031
  [[package]]
@@ -1178,9 +1114,9 @@ checksum = "a357d28ed41a50f9c765dbfe56cbc04a64e53e5fc58ba79fbc34c10ef3df831f"
1178
1114
 
1179
1115
  [[package]]
1180
1116
  name = "encoding_rs"
1181
- version = "0.8.34"
1117
+ version = "0.8.35"
1182
1118
  source = "registry+https://github.com/rust-lang/crates.io-index"
1183
- checksum = "b45de904aa0b010bce2ab45264d0631681847fa7b6f2eaa7dab7619943bc4f59"
1119
+ checksum = "75030f3c4f45dafd7586dd6780965a8c7e8e285a5ecb86713e63a79c5b2766f3"
1184
1120
  dependencies = [
1185
1121
  "cfg-if",
1186
1122
  ]
@@ -1194,7 +1130,7 @@ dependencies = [
1194
1130
  "once_cell",
1195
1131
  "proc-macro2",
1196
1132
  "quote",
1197
- "syn 2.0.79",
1133
+ "syn 2.0.89",
1198
1134
  ]
1199
1135
 
1200
1136
  [[package]]
@@ -1250,9 +1186,9 @@ checksum = "2acce4a10f12dc2fb14a218589d4f1f62ef011b2d0cc4b3cb1bba8e94da14649"
1250
1186
 
1251
1187
  [[package]]
1252
1188
  name = "fastrand"
1253
- version = "2.1.1"
1189
+ version = "2.2.0"
1254
1190
  source = "registry+https://github.com/rust-lang/crates.io-index"
1255
- checksum = "e8c02a5121d4ea3eb16a80748c74f5549a5665e4c21333c6098f283870fbdea6"
1191
+ checksum = "486f806e73c5707928240ddc295403b1b93c96a02038563881c4a2fd84b81ac4"
1256
1192
 
1257
1193
  [[package]]
1258
1194
  name = "ff"
@@ -1284,27 +1220,15 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
1284
1220
  checksum = "7199d965852c3bac31f779ef99cbb4537f80e952e2d6aa0ffeb30cce00f4f46e"
1285
1221
  dependencies = [
1286
1222
  "libc",
1287
- "thiserror",
1288
- "winapi",
1289
- ]
1290
-
1291
- [[package]]
1292
- name = "findshlibs"
1293
- version = "0.10.2"
1294
- source = "registry+https://github.com/rust-lang/crates.io-index"
1295
- checksum = "40b9e59cd0f7e0806cca4be089683ecb6434e602038df21fe6bf6711b2f07f64"
1296
- dependencies = [
1297
- "cc",
1298
- "lazy_static",
1299
- "libc",
1223
+ "thiserror 1.0.69",
1300
1224
  "winapi",
1301
1225
  ]
1302
1226
 
1303
1227
  [[package]]
1304
1228
  name = "finl_unicode"
1305
- version = "1.2.0"
1229
+ version = "1.3.0"
1306
1230
  source = "registry+https://github.com/rust-lang/crates.io-index"
1307
- checksum = "8fcfdc7a0362c9f4444381a9e697c79d435fe65b52a37466fc2c1184cee9edc6"
1231
+ checksum = "94c970b525906eb37d3940083aa65b95e481fc1857d467d13374e1d925cfc163"
1308
1232
 
1309
1233
  [[package]]
1310
1234
  name = "fixedbitset"
@@ -1314,9 +1238,9 @@ checksum = "0ce7134b9999ecaf8bcd65542e436736ef32ddca1b3e06094cb6ec5755203b80"
1314
1238
 
1315
1239
  [[package]]
1316
1240
  name = "flate2"
1317
- version = "1.0.34"
1241
+ version = "1.0.35"
1318
1242
  source = "registry+https://github.com/rust-lang/crates.io-index"
1319
- checksum = "a1b589b4dc103969ad3cf85c950899926ec64300a1a46d76c03a6072957036f0"
1243
+ checksum = "c936bfdafb507ebbf50b8074c54fa31c5be9a1e7e5f467dd659697041407d07c"
1320
1244
  dependencies = [
1321
1245
  "crc32fast",
1322
1246
  "miniz_oxide",
@@ -1409,21 +1333,15 @@ dependencies = [
1409
1333
 
1410
1334
  [[package]]
1411
1335
  name = "gimli"
1412
- version = "0.29.0"
1336
+ version = "0.31.1"
1413
1337
  source = "registry+https://github.com/rust-lang/crates.io-index"
1414
- checksum = "40ecd4077b5ae9fd2e9e169b102c6c330d0605168eb0e8bf79952b256dbefffd"
1338
+ checksum = "07e28edb80900c19c28f1072f2e8aeca7fa06b23cd4169cefe1af5aa3260783f"
1415
1339
  dependencies = [
1416
1340
  "fallible-iterator 0.3.0",
1417
1341
  "indexmap 2.6.0",
1418
1342
  "stable_deref_trait",
1419
1343
  ]
1420
1344
 
1421
- [[package]]
1422
- name = "gimli"
1423
- version = "0.31.1"
1424
- source = "registry+https://github.com/rust-lang/crates.io-index"
1425
- checksum = "07e28edb80900c19c28f1072f2e8aeca7fa06b23cd4169cefe1af5aa3260783f"
1426
-
1427
1345
  [[package]]
1428
1346
  name = "glob"
1429
1347
  version = "0.3.1"
@@ -1495,9 +1413,9 @@ dependencies = [
1495
1413
 
1496
1414
  [[package]]
1497
1415
  name = "hashbrown"
1498
- version = "0.15.0"
1416
+ version = "0.15.1"
1499
1417
  source = "registry+https://github.com/rust-lang/crates.io-index"
1500
- checksum = "1e087f84d4f86bf4b218b927129862374b72199ae7d8657835f1e89000eea4fb"
1418
+ checksum = "3a9bfc1af68b1726ea47d3d5109de126281def866b33970e10fbab11b5dafab3"
1501
1419
  dependencies = [
1502
1420
  "foldhash",
1503
1421
  ]
@@ -1520,12 +1438,6 @@ version = "0.3.9"
1520
1438
  source = "registry+https://github.com/rust-lang/crates.io-index"
1521
1439
  checksum = "d231dfb89cfffdbc30e7fc41579ed6066ad03abda9e567ccafae602b97ec5024"
1522
1440
 
1523
- [[package]]
1524
- name = "hermit-abi"
1525
- version = "0.4.0"
1526
- source = "registry+https://github.com/rust-lang/crates.io-index"
1527
- checksum = "fbf6a919d6cf397374f7dfeeea91d974c7c0a7221d0d0f4f20d859d329e53fcc"
1528
-
1529
1441
  [[package]]
1530
1442
  name = "hex"
1531
1443
  version = "0.4.3"
@@ -1658,7 +1570,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
1658
1570
  checksum = "707907fe3c25f5424cce2cb7e1cbcafee6bdbe735ca90ef77c29e84591e5b9da"
1659
1571
  dependencies = [
1660
1572
  "equivalent",
1661
- "hashbrown 0.15.0",
1573
+ "hashbrown 0.15.1",
1662
1574
  "serde",
1663
1575
  ]
1664
1576
 
@@ -1668,24 +1580,6 @@ version = "2.0.5"
1668
1580
  source = "registry+https://github.com/rust-lang/crates.io-index"
1669
1581
  checksum = "b248f5224d1d606005e02c97f5aa4e88eeb230488bcc03bc9ca4d7991399f2b5"
1670
1582
 
1671
- [[package]]
1672
- name = "inferno"
1673
- version = "0.11.21"
1674
- source = "registry+https://github.com/rust-lang/crates.io-index"
1675
- checksum = "232929e1d75fe899576a3d5c7416ad0d88dbfbb3c3d6aa00873a7408a50ddb88"
1676
- dependencies = [
1677
- "ahash",
1678
- "indexmap 2.6.0",
1679
- "is-terminal",
1680
- "itoa",
1681
- "log",
1682
- "num-format",
1683
- "once_cell",
1684
- "quick-xml",
1685
- "rgb",
1686
- "str_stack",
1687
- ]
1688
-
1689
1583
  [[package]]
1690
1584
  name = "inout"
1691
1585
  version = "0.1.3"
@@ -1701,17 +1595,6 @@ version = "1.9.1"
1701
1595
  source = "registry+https://github.com/rust-lang/crates.io-index"
1702
1596
  checksum = "aa3eb1c7e05b0f9ddc99a1e9f186a434fa0bfd0087d6369acf5f2814731ab610"
1703
1597
 
1704
- [[package]]
1705
- name = "is-terminal"
1706
- version = "0.4.13"
1707
- source = "registry+https://github.com/rust-lang/crates.io-index"
1708
- checksum = "261f68e344040fbd0edea105bef17c66edf46f984ddb1115b775ce31be948f4b"
1709
- dependencies = [
1710
- "hermit-abi 0.4.0",
1711
- "libc",
1712
- "windows-sys 0.52.0",
1713
- ]
1714
-
1715
1598
  [[package]]
1716
1599
  name = "is_terminal_polyfill"
1717
1600
  version = "1.70.1"
@@ -1747,9 +1630,9 @@ dependencies = [
1747
1630
 
1748
1631
  [[package]]
1749
1632
  name = "itoa"
1750
- version = "1.0.11"
1633
+ version = "1.0.13"
1751
1634
  source = "registry+https://github.com/rust-lang/crates.io-index"
1752
- checksum = "49f1f14873335454500d59611f1cf4a4b0f786f9ac11f4312a78e4cf2566695b"
1635
+ checksum = "540654e97a3f4470a492cd30ff187bc95d89557a903a2bbf112e2fae98104ef2"
1753
1636
 
1754
1637
  [[package]]
1755
1638
  name = "jobserver"
@@ -1792,15 +1675,15 @@ checksum = "884e2677b40cc8c339eaefcb701c32ef1fd2493d71118dc0ca4b6a736c93bd67"
1792
1675
 
1793
1676
  [[package]]
1794
1677
  name = "libc"
1795
- version = "0.2.159"
1678
+ version = "0.2.164"
1796
1679
  source = "registry+https://github.com/rust-lang/crates.io-index"
1797
- checksum = "561d97a539a36e26a9a5fad1ea11a3039a67714694aaa379433e580854bc3dc5"
1680
+ checksum = "433bfe06b8c75da9b2e3fbea6e5329ff87748f0b144ef75306e674c3f6f7c13f"
1798
1681
 
1799
1682
  [[package]]
1800
1683
  name = "libm"
1801
- version = "0.2.8"
1684
+ version = "0.2.11"
1802
1685
  source = "registry+https://github.com/rust-lang/crates.io-index"
1803
- checksum = "4ec2a862134d2a7d32d7983ddcdd1c4923530833c9f2ea1a44fc5fa473989058"
1686
+ checksum = "8355be11b20d696c8f18f6cc018c4e372165b1fa8126cef092399c9951984ffa"
1804
1687
 
1805
1688
  [[package]]
1806
1689
  name = "libredox"
@@ -1878,22 +1761,22 @@ dependencies = [
1878
1761
 
1879
1762
  [[package]]
1880
1763
  name = "linkme"
1881
- version = "0.3.28"
1764
+ version = "0.3.31"
1882
1765
  source = "registry+https://github.com/rust-lang/crates.io-index"
1883
- checksum = "3c943daedff228392b791b33bba32e75737756e80a613e32e246c6ce9cbab20a"
1766
+ checksum = "566336154b9e58a4f055f6dd4cbab62c7dc0826ce3c0a04e63b2d2ecd784cdae"
1884
1767
  dependencies = [
1885
1768
  "linkme-impl",
1886
1769
  ]
1887
1770
 
1888
1771
  [[package]]
1889
1772
  name = "linkme-impl"
1890
- version = "0.3.28"
1773
+ version = "0.3.31"
1891
1774
  source = "registry+https://github.com/rust-lang/crates.io-index"
1892
- checksum = "cb26336e6dc7cc76e7927d2c9e7e3bb376d7af65a6f56a0b16c47d18a9b1abc5"
1775
+ checksum = "edbe595006d355eaf9ae11db92707d4338cd2384d16866131cc1afdbdd35d8d9"
1893
1776
  dependencies = [
1894
1777
  "proc-macro2",
1895
1778
  "quote",
1896
- "syn 2.0.79",
1779
+ "syn 2.0.89",
1897
1780
  ]
1898
1781
 
1899
1782
  [[package]]
@@ -1945,7 +1828,7 @@ dependencies = [
1945
1828
  "proc-macro2",
1946
1829
  "quote",
1947
1830
  "regex-syntax 0.8.5",
1948
- "syn 2.0.79",
1831
+ "syn 2.0.89",
1949
1832
  ]
1950
1833
 
1951
1834
  [[package]]
@@ -1985,7 +1868,7 @@ dependencies = [
1985
1868
  "bitflags 2.6.0",
1986
1869
  "libc",
1987
1870
  "magic-sys",
1988
- "thiserror",
1871
+ "thiserror 1.0.69",
1989
1872
  ]
1990
1873
 
1991
1874
  [[package]]
@@ -2038,15 +1921,6 @@ dependencies = [
2038
1921
  "rustix",
2039
1922
  ]
2040
1923
 
2041
- [[package]]
2042
- name = "memmap2"
2043
- version = "0.9.5"
2044
- source = "registry+https://github.com/rust-lang/crates.io-index"
2045
- checksum = "fd3f7eed9d3848f8b98834af67102b720745c4ec028fcd0aa0239277e7de374f"
2046
- dependencies = [
2047
- "libc",
2048
- ]
2049
-
2050
1924
  [[package]]
2051
1925
  name = "memmapix"
2052
1926
  version = "0.7.6"
@@ -2122,7 +1996,7 @@ version = "1.0.2"
2122
1996
  source = "registry+https://github.com/rust-lang/crates.io-index"
2123
1997
  checksum = "80e04d1dcff3aae0704555fe5fee3bcfaf3d1fdf8a7e521d5b9d2b42acb52cec"
2124
1998
  dependencies = [
2125
- "hermit-abi 0.3.9",
1999
+ "hermit-abi",
2126
2000
  "libc",
2127
2001
  "log",
2128
2002
  "wasi",
@@ -2141,17 +2015,6 @@ dependencies = [
2141
2015
  "memoffset 0.6.5",
2142
2016
  ]
2143
2017
 
2144
- [[package]]
2145
- name = "nix"
2146
- version = "0.26.4"
2147
- source = "registry+https://github.com/rust-lang/crates.io-index"
2148
- checksum = "598beaf3cc6fdd9a5dfb1630c2800c7acd31df7aaf0f565796fba2b53ca1af1b"
2149
- dependencies = [
2150
- "bitflags 1.3.2",
2151
- "cfg-if",
2152
- "libc",
2153
- ]
2154
-
2155
2018
  [[package]]
2156
2019
  name = "nom"
2157
2020
  version = "5.1.3"
@@ -2247,17 +2110,7 @@ checksum = "ed3955f1a9c7c0c15e092f9c887db08b1fc683305fdf6eb6684f22555355e202"
2247
2110
  dependencies = [
2248
2111
  "proc-macro2",
2249
2112
  "quote",
2250
- "syn 2.0.79",
2251
- ]
2252
-
2253
- [[package]]
2254
- name = "num-format"
2255
- version = "0.4.4"
2256
- source = "registry+https://github.com/rust-lang/crates.io-index"
2257
- checksum = "a652d9771a63711fd3c3deb670acfbe5c30a4072e664d7a3bf5a9e1056ac72c3"
2258
- dependencies = [
2259
- "arrayvec",
2260
- "itoa",
2113
+ "syn 2.0.89",
2261
2114
  ]
2262
2115
 
2263
2116
  [[package]]
@@ -2308,7 +2161,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
2308
2161
  checksum = "aedf0a2d09c573ed1d8d85b30c119153926a2b36dce0ab28322c09a117a4683e"
2309
2162
  dependencies = [
2310
2163
  "crc32fast",
2311
- "hashbrown 0.15.0",
2164
+ "hashbrown 0.15.1",
2312
2165
  "indexmap 2.6.0",
2313
2166
  "memchr",
2314
2167
  ]
@@ -2345,9 +2198,9 @@ dependencies = [
2345
2198
 
2346
2199
  [[package]]
2347
2200
  name = "ordered-float"
2348
- version = "4.3.0"
2201
+ version = "4.5.0"
2349
2202
  source = "registry+https://github.com/rust-lang/crates.io-index"
2350
- checksum = "44d501f1a72f71d3c063a6bbc8f7271fa73aa09fe5d6283b6571e2ed176a2537"
2203
+ checksum = "c65ee1f9701bf938026630b455d5315f490640234259037edb259798b3bcf85e"
2351
2204
  dependencies = [
2352
2205
  "num-traits",
2353
2206
  ]
@@ -2422,7 +2275,7 @@ dependencies = [
2422
2275
  "regex",
2423
2276
  "regex-syntax 0.7.5",
2424
2277
  "structmeta",
2425
- "syn 2.0.79",
2278
+ "syn 2.0.89",
2426
2279
  ]
2427
2280
 
2428
2281
  [[package]]
@@ -2457,7 +2310,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
2457
2310
  checksum = "879952a81a83930934cbf1786752d6dedc3b1f29e8f8fb2ad1d0a36f377cf442"
2458
2311
  dependencies = [
2459
2312
  "memchr",
2460
- "thiserror",
2313
+ "thiserror 1.0.69",
2461
2314
  "ucd-trie",
2462
2315
  ]
2463
2316
 
@@ -2481,7 +2334,7 @@ dependencies = [
2481
2334
  "pest_meta",
2482
2335
  "proc-macro2",
2483
2336
  "quote",
2484
- "syn 2.0.79",
2337
+ "syn 2.0.89",
2485
2338
  ]
2486
2339
 
2487
2340
  [[package]]
@@ -2544,7 +2397,7 @@ dependencies = [
2544
2397
  "phf_shared 0.11.2",
2545
2398
  "proc-macro2",
2546
2399
  "quote",
2547
- "syn 2.0.79",
2400
+ "syn 2.0.89",
2548
2401
  ]
2549
2402
 
2550
2403
  [[package]]
@@ -2616,27 +2469,6 @@ version = "0.2.0"
2616
2469
  source = "registry+https://github.com/rust-lang/crates.io-index"
2617
2470
  checksum = "439ee305def115ba05938db6eb1644ff94165c5ab5e9420d1c1bcedbba909391"
2618
2471
 
2619
- [[package]]
2620
- name = "pprof"
2621
- version = "0.13.0"
2622
- source = "registry+https://github.com/rust-lang/crates.io-index"
2623
- checksum = "ef5c97c51bd34c7e742402e216abdeb44d415fbe6ae41d56b114723e953711cb"
2624
- dependencies = [
2625
- "backtrace",
2626
- "cfg-if",
2627
- "findshlibs",
2628
- "inferno",
2629
- "libc",
2630
- "log",
2631
- "nix 0.26.4",
2632
- "once_cell",
2633
- "parking_lot",
2634
- "smallvec",
2635
- "symbolic-demangle",
2636
- "tempfile",
2637
- "thiserror",
2638
- ]
2639
-
2640
2472
  [[package]]
2641
2473
  name = "ppv-lite86"
2642
2474
  version = "0.2.20"
@@ -2667,29 +2499,29 @@ dependencies = [
2667
2499
 
2668
2500
  [[package]]
2669
2501
  name = "proc-macro2"
2670
- version = "1.0.87"
2502
+ version = "1.0.92"
2671
2503
  source = "registry+https://github.com/rust-lang/crates.io-index"
2672
- checksum = "b3e4daa0dcf6feba26f985457cdf104d4b4256fc5a09547140f3631bb076b19a"
2504
+ checksum = "37d3544b3f2748c54e147655edb5025752e2303145b5aefb3c3ea2c78b973bb0"
2673
2505
  dependencies = [
2674
2506
  "unicode-ident",
2675
2507
  ]
2676
2508
 
2677
2509
  [[package]]
2678
2510
  name = "protobuf"
2679
- version = "3.5.1"
2511
+ version = "3.7.1"
2680
2512
  source = "registry+https://github.com/rust-lang/crates.io-index"
2681
- checksum = "0bcc343da15609eaecd65f8aa76df8dc4209d325131d8219358c0aaaebab0bf6"
2513
+ checksum = "a3a7c64d9bf75b1b8d981124c14c179074e8caa7dfe7b6a12e6222ddcd0c8f72"
2682
2514
  dependencies = [
2683
2515
  "once_cell",
2684
2516
  "protobuf-support",
2685
- "thiserror",
2517
+ "thiserror 1.0.69",
2686
2518
  ]
2687
2519
 
2688
2520
  [[package]]
2689
2521
  name = "protobuf-codegen"
2690
- version = "3.5.1"
2522
+ version = "3.7.1"
2691
2523
  source = "registry+https://github.com/rust-lang/crates.io-index"
2692
- checksum = "c4d0cde5642ea4df842b13eb9f59ea6fafa26dcb43e3e1ee49120e9757556189"
2524
+ checksum = "e26b833f144769a30e04b1db0146b2aaa53fd2fd83acf10a6b5f996606c18144"
2693
2525
  dependencies = [
2694
2526
  "anyhow",
2695
2527
  "once_cell",
@@ -2697,25 +2529,25 @@ dependencies = [
2697
2529
  "protobuf-parse",
2698
2530
  "regex",
2699
2531
  "tempfile",
2700
- "thiserror",
2532
+ "thiserror 1.0.69",
2701
2533
  ]
2702
2534
 
2703
2535
  [[package]]
2704
2536
  name = "protobuf-json-mapping"
2705
- version = "3.5.1"
2537
+ version = "3.7.1"
2706
2538
  source = "registry+https://github.com/rust-lang/crates.io-index"
2707
- checksum = "b07993d14c66dfb74c639dc1b90381773b85cff66ef47bff35bad0778150a3aa"
2539
+ checksum = "9b445cf83c9303695e6c423d269759e139b6182d2f1171e18afda7078a764336"
2708
2540
  dependencies = [
2709
2541
  "protobuf",
2710
2542
  "protobuf-support",
2711
- "thiserror",
2543
+ "thiserror 1.0.69",
2712
2544
  ]
2713
2545
 
2714
2546
  [[package]]
2715
2547
  name = "protobuf-parse"
2716
- version = "3.5.1"
2548
+ version = "3.7.1"
2717
2549
  source = "registry+https://github.com/rust-lang/crates.io-index"
2718
- checksum = "1b0e9b447d099ae2c4993c0cbb03c7a9d6c937b17f2d56cfc0b1550e6fcfdb76"
2550
+ checksum = "322330e133eab455718444b4e033ebfac7c6528972c784fcde28d2cc783c6257"
2719
2551
  dependencies = [
2720
2552
  "anyhow",
2721
2553
  "indexmap 2.6.0",
@@ -2723,33 +2555,44 @@ dependencies = [
2723
2555
  "protobuf",
2724
2556
  "protobuf-support",
2725
2557
  "tempfile",
2726
- "thiserror",
2558
+ "thiserror 1.0.69",
2727
2559
  "which",
2728
2560
  ]
2729
2561
 
2730
2562
  [[package]]
2731
2563
  name = "protobuf-support"
2732
- version = "3.5.1"
2564
+ version = "3.7.1"
2733
2565
  source = "registry+https://github.com/rust-lang/crates.io-index"
2734
- checksum = "f0766e3675a627c327e4b3964582594b0e8741305d628a98a5de75a1d15f99b9"
2566
+ checksum = "b088fd20b938a875ea00843b6faf48579462630015c3788d397ad6a786663252"
2735
2567
  dependencies = [
2736
- "thiserror",
2568
+ "thiserror 1.0.69",
2737
2569
  ]
2738
2570
 
2739
2571
  [[package]]
2740
2572
  name = "psm"
2741
- version = "0.1.23"
2573
+ version = "0.1.24"
2742
2574
  source = "registry+https://github.com/rust-lang/crates.io-index"
2743
- checksum = "aa37f80ca58604976033fae9515a8a2989fc13797d953f7c04fb8fa36a11f205"
2575
+ checksum = "200b9ff220857e53e184257720a14553b2f4aa02577d2ed9842d45d4b9654810"
2744
2576
  dependencies = [
2745
2577
  "cc",
2746
2578
  ]
2747
2579
 
2580
+ [[package]]
2581
+ name = "pulley-interpreter"
2582
+ version = "26.0.1"
2583
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2584
+ checksum = "df33e7f8a43ccc7f93b330fef4baf271764674926f3f4d40f4a196d54de8af26"
2585
+ dependencies = [
2586
+ "cranelift-bitset",
2587
+ "log",
2588
+ "sptr",
2589
+ ]
2590
+
2748
2591
  [[package]]
2749
2592
  name = "pyo3"
2750
- version = "0.22.5"
2593
+ version = "0.22.6"
2751
2594
  source = "registry+https://github.com/rust-lang/crates.io-index"
2752
- checksum = "3d922163ba1f79c04bc49073ba7b32fd5a8d3b76a87c955921234b8e77333c51"
2595
+ checksum = "f402062616ab18202ae8319da13fa4279883a2b8a9d9f83f20dbade813ce1884"
2753
2596
  dependencies = [
2754
2597
  "cfg-if",
2755
2598
  "indoc",
@@ -2765,9 +2608,9 @@ dependencies = [
2765
2608
 
2766
2609
  [[package]]
2767
2610
  name = "pyo3-build-config"
2768
- version = "0.22.5"
2611
+ version = "0.22.6"
2769
2612
  source = "registry+https://github.com/rust-lang/crates.io-index"
2770
- checksum = "bc38c5feeb496c8321091edf3d63e9a6829eab4b863b4a6a65f26f3e9cc6b179"
2613
+ checksum = "b14b5775b5ff446dd1056212d778012cbe8a0fbffd368029fd9e25b514479c38"
2771
2614
  dependencies = [
2772
2615
  "once_cell",
2773
2616
  "target-lexicon",
@@ -2775,9 +2618,9 @@ dependencies = [
2775
2618
 
2776
2619
  [[package]]
2777
2620
  name = "pyo3-ffi"
2778
- version = "0.22.5"
2621
+ version = "0.22.6"
2779
2622
  source = "registry+https://github.com/rust-lang/crates.io-index"
2780
- checksum = "94845622d88ae274d2729fcefc850e63d7a3ddff5e3ce11bd88486db9f1d357d"
2623
+ checksum = "9ab5bcf04a2cdcbb50c7d6105de943f543f9ed92af55818fd17b660390fc8636"
2781
2624
  dependencies = [
2782
2625
  "libc",
2783
2626
  "pyo3-build-config",
@@ -2794,27 +2637,27 @@ dependencies = [
2794
2637
 
2795
2638
  [[package]]
2796
2639
  name = "pyo3-macros"
2797
- version = "0.22.5"
2640
+ version = "0.22.6"
2798
2641
  source = "registry+https://github.com/rust-lang/crates.io-index"
2799
- checksum = "e655aad15e09b94ffdb3ce3d217acf652e26bbc37697ef012f5e5e348c716e5e"
2642
+ checksum = "0fd24d897903a9e6d80b968368a34e1525aeb719d568dba8b3d4bfa5dc67d453"
2800
2643
  dependencies = [
2801
2644
  "proc-macro2",
2802
2645
  "pyo3-macros-backend",
2803
2646
  "quote",
2804
- "syn 2.0.79",
2647
+ "syn 2.0.89",
2805
2648
  ]
2806
2649
 
2807
2650
  [[package]]
2808
2651
  name = "pyo3-macros-backend"
2809
- version = "0.22.5"
2652
+ version = "0.22.6"
2810
2653
  source = "registry+https://github.com/rust-lang/crates.io-index"
2811
- checksum = "ae1e3f09eecd94618f60a455a23def79f79eba4dc561a97324bf9ac8c6df30ce"
2654
+ checksum = "36c011a03ba1e50152b4b394b479826cad97e7a21eb52df179cd91ac411cbfbe"
2812
2655
  dependencies = [
2813
2656
  "heck 0.5.0",
2814
2657
  "proc-macro2",
2815
2658
  "pyo3-build-config",
2816
2659
  "quote",
2817
- "syn 2.0.79",
2660
+ "syn 2.0.89",
2818
2661
  ]
2819
2662
 
2820
2663
  [[package]]
@@ -2832,15 +2675,6 @@ dependencies = [
2832
2675
  "winapi",
2833
2676
  ]
2834
2677
 
2835
- [[package]]
2836
- name = "quick-xml"
2837
- version = "0.26.0"
2838
- source = "registry+https://github.com/rust-lang/crates.io-index"
2839
- checksum = "7f50b1c63b38611e7d4d7f68b82d3ad0cc71a2ad2e7f61fc10f1328d917c93cd"
2840
- dependencies = [
2841
- "memchr",
2842
- ]
2843
-
2844
2678
  [[package]]
2845
2679
  name = "quote"
2846
2680
  version = "1.0.37"
@@ -2932,7 +2766,7 @@ checksum = "ba009ff324d1fc1b900bd1fdb31564febe58a8ccc8a6fdbb93b543d33b13ca43"
2932
2766
  dependencies = [
2933
2767
  "getrandom",
2934
2768
  "libredox",
2935
- "thiserror",
2769
+ "thiserror 1.0.69",
2936
2770
  ]
2937
2771
 
2938
2772
  [[package]]
@@ -2950,9 +2784,9 @@ dependencies = [
2950
2784
 
2951
2785
  [[package]]
2952
2786
  name = "regex"
2953
- version = "1.11.0"
2787
+ version = "1.11.1"
2954
2788
  source = "registry+https://github.com/rust-lang/crates.io-index"
2955
- checksum = "38200e5ee88914975b69f657f0801b6f6dccafd44fd9326302a4aaeecfacb1d8"
2789
+ checksum = "b544ef1b4eac5dc2db33ea63606ae9ffcfac26c1416a2806ae0bf5f56b201191"
2956
2790
  dependencies = [
2957
2791
  "aho-corasick",
2958
2792
  "memchr",
@@ -2962,9 +2796,9 @@ dependencies = [
2962
2796
 
2963
2797
  [[package]]
2964
2798
  name = "regex-automata"
2965
- version = "0.4.8"
2799
+ version = "0.4.9"
2966
2800
  source = "registry+https://github.com/rust-lang/crates.io-index"
2967
- checksum = "368758f23274712b504848e9d5a6f010445cc8b87a7cdb4d7cbee666c1288da3"
2801
+ checksum = "809e8dc61f6de73b46c85f4c96486310fe304c434cfa43669d7b40f711150908"
2968
2802
  dependencies = [
2969
2803
  "aho-corasick",
2970
2804
  "memchr",
@@ -2993,15 +2827,6 @@ dependencies = [
2993
2827
  "subtle",
2994
2828
  ]
2995
2829
 
2996
- [[package]]
2997
- name = "rgb"
2998
- version = "0.8.50"
2999
- source = "registry+https://github.com/rust-lang/crates.io-index"
3000
- checksum = "57397d16646700483b67d2dd6511d79318f9d057fdbd21a4066aeac8b41d310a"
3001
- dependencies = [
3002
- "bytemuck",
3003
- ]
3004
-
3005
2830
  [[package]]
3006
2831
  name = "ring"
3007
2832
  version = "0.17.8"
@@ -3019,9 +2844,9 @@ dependencies = [
3019
2844
 
3020
2845
  [[package]]
3021
2846
  name = "rowan"
3022
- version = "0.15.16"
2847
+ version = "0.16.0"
3023
2848
  source = "registry+https://github.com/rust-lang/crates.io-index"
3024
- checksum = "0a542b0253fa46e632d27a1dc5cf7b930de4df8659dc6e720b647fc72147ae3d"
2849
+ checksum = "028acc0aeb6c46a4e4390928ef6ec0f4b7e9432f37bd4129a976e77f86f93322"
3025
2850
  dependencies = [
3026
2851
  "countme",
3027
2852
  "hashbrown 0.14.5",
@@ -3055,12 +2880,6 @@ dependencies = [
3055
2880
  "zeroize",
3056
2881
  ]
3057
2882
 
3058
- [[package]]
3059
- name = "rustc-demangle"
3060
- version = "0.1.24"
3061
- source = "registry+https://github.com/rust-lang/crates.io-index"
3062
- checksum = "719b953e2095829ee67db738b3bfa9fa368c94900df327b3f07fe6e794d2fe1f"
3063
-
3064
2883
  [[package]]
3065
2884
  name = "rustc-hash"
3066
2885
  version = "1.1.0"
@@ -3084,9 +2903,9 @@ dependencies = [
3084
2903
 
3085
2904
  [[package]]
3086
2905
  name = "rustix"
3087
- version = "0.38.37"
2906
+ version = "0.38.41"
3088
2907
  source = "registry+https://github.com/rust-lang/crates.io-index"
3089
- checksum = "8acb788b847c24f28525660c4d7758620a7210875711f79e7f663cc152726811"
2908
+ checksum = "d7f649912bc1495e167a6edee79151c84b1bad49748cb4f1f1167f459f6224f6"
3090
2909
  dependencies = [
3091
2910
  "bitflags 2.6.0",
3092
2911
  "errno",
@@ -3153,9 +2972,9 @@ checksum = "61697e0a1c7e512e84a621326239844a24d8207b4669b41bc18b32ea5cbf988b"
3153
2972
 
3154
2973
  [[package]]
3155
2974
  name = "semver-parser"
3156
- version = "0.10.2"
2975
+ version = "0.10.3"
3157
2976
  source = "registry+https://github.com/rust-lang/crates.io-index"
3158
- checksum = "00b0bef5b7f9e0df16536d3961cfb6e84331c065b4066afb39768d0e319411f7"
2977
+ checksum = "9900206b54a3527fdc7b8a938bffd94a568bac4f4aa8113b209df75a09c0dec2"
3159
2978
  dependencies = [
3160
2979
  "pest",
3161
2980
  ]
@@ -3188,14 +3007,14 @@ checksum = "243902eda00fad750862fc144cea25caca5e20d615af0a81bee94ca738f1df1f"
3188
3007
  dependencies = [
3189
3008
  "proc-macro2",
3190
3009
  "quote",
3191
- "syn 2.0.79",
3010
+ "syn 2.0.89",
3192
3011
  ]
3193
3012
 
3194
3013
  [[package]]
3195
3014
  name = "serde_json"
3196
- version = "1.0.128"
3015
+ version = "1.0.133"
3197
3016
  source = "registry+https://github.com/rust-lang/crates.io-index"
3198
- checksum = "6ff5456707a1de34e7e37f2a6fd3d3f808c318259cbd01ab6377795054b483d8"
3017
+ checksum = "c7fceb2473b9166b2294ef05efcb65a3db80803f0b03ef86a5fc88a2b85ee377"
3199
3018
  dependencies = [
3200
3019
  "indexmap 2.6.0",
3201
3020
  "itoa",
@@ -3386,12 +3205,6 @@ version = "1.1.0"
3386
3205
  source = "registry+https://github.com/rust-lang/crates.io-index"
3387
3206
  checksum = "a2eb9349b6444b326872e140eb1cf5e7c522154d69e7a0ffb0fb81c06b37543f"
3388
3207
 
3389
- [[package]]
3390
- name = "str_stack"
3391
- version = "0.1.0"
3392
- source = "registry+https://github.com/rust-lang/crates.io-index"
3393
- checksum = "9091b6114800a5f2141aee1d1b9d6ca3592ac062dc5decb3764ec5895a47b4eb"
3394
-
3395
3208
  [[package]]
3396
3209
  name = "strsim"
3397
3210
  version = "0.10.0"
@@ -3413,7 +3226,7 @@ dependencies = [
3413
3226
  "proc-macro2",
3414
3227
  "quote",
3415
3228
  "structmeta-derive",
3416
- "syn 2.0.79",
3229
+ "syn 2.0.89",
3417
3230
  ]
3418
3231
 
3419
3232
  [[package]]
@@ -3424,7 +3237,7 @@ checksum = "a60bcaff7397072dca0017d1db428e30d5002e00b6847703e2e42005c95fbe00"
3424
3237
  dependencies = [
3425
3238
  "proc-macro2",
3426
3239
  "quote",
3427
- "syn 2.0.79",
3240
+ "syn 2.0.89",
3428
3241
  ]
3429
3242
 
3430
3243
  [[package]]
@@ -3443,7 +3256,7 @@ dependencies = [
3443
3256
  "proc-macro2",
3444
3257
  "quote",
3445
3258
  "rustversion",
3446
- "syn 2.0.79",
3259
+ "syn 2.0.89",
3447
3260
  ]
3448
3261
 
3449
3262
  [[package]]
@@ -3456,7 +3269,7 @@ dependencies = [
3456
3269
  "proc-macro2",
3457
3270
  "quote",
3458
3271
  "rustversion",
3459
- "syn 2.0.79",
3272
+ "syn 2.0.89",
3460
3273
  ]
3461
3274
 
3462
3275
  [[package]]
@@ -3477,33 +3290,10 @@ dependencies = [
3477
3290
  "crossterm 0.23.2",
3478
3291
  "itertools 0.10.5",
3479
3292
  "termwiz",
3480
- "thiserror",
3293
+ "thiserror 1.0.69",
3481
3294
  "unicode-segmentation",
3482
3295
  ]
3483
3296
 
3484
- [[package]]
3485
- name = "symbolic-common"
3486
- version = "12.12.0"
3487
- source = "registry+https://github.com/rust-lang/crates.io-index"
3488
- checksum = "366f1b4c6baf6cfefc234bbd4899535fca0b06c74443039a73f6dfb2fad88d77"
3489
- dependencies = [
3490
- "debugid",
3491
- "memmap2",
3492
- "stable_deref_trait",
3493
- "uuid",
3494
- ]
3495
-
3496
- [[package]]
3497
- name = "symbolic-demangle"
3498
- version = "12.12.0"
3499
- source = "registry+https://github.com/rust-lang/crates.io-index"
3500
- checksum = "aba05ba5b9962ea5617baf556293720a8b2d0a282aa14ee4bf10e22efc7da8c8"
3501
- dependencies = [
3502
- "cpp_demangle",
3503
- "rustc-demangle",
3504
- "symbolic-common",
3505
- ]
3506
-
3507
3297
  [[package]]
3508
3298
  name = "syn"
3509
3299
  version = "1.0.109"
@@ -3517,9 +3307,9 @@ dependencies = [
3517
3307
 
3518
3308
  [[package]]
3519
3309
  name = "syn"
3520
- version = "2.0.79"
3310
+ version = "2.0.89"
3521
3311
  source = "registry+https://github.com/rust-lang/crates.io-index"
3522
- checksum = "89132cd0bf050864e1d38dc3bbc07a0eb8e7530af26344d3d2bbbef83499f590"
3312
+ checksum = "44d46482f1c1c87acd84dea20c1bf5ebff4c757009ed6bf19cfd36fb10e92c4e"
3523
3313
  dependencies = [
3524
3314
  "proc-macro2",
3525
3315
  "quote",
@@ -3534,7 +3324,7 @@ checksum = "c8af7666ab7b6390ab78131fb5b0fce11d6b7a6951602017c35fa82800708971"
3534
3324
  dependencies = [
3535
3325
  "proc-macro2",
3536
3326
  "quote",
3537
- "syn 2.0.79",
3327
+ "syn 2.0.89",
3538
3328
  ]
3539
3329
 
3540
3330
  [[package]]
@@ -3551,9 +3341,9 @@ checksum = "61c41af27dd6d1e27b1b16b489db798443478cef1f06a660c96db617ba5de3b1"
3551
3341
 
3552
3342
  [[package]]
3553
3343
  name = "tempfile"
3554
- version = "3.13.0"
3344
+ version = "3.14.0"
3555
3345
  source = "registry+https://github.com/rust-lang/crates.io-index"
3556
- checksum = "f0f2c9fc62d0beef6951ccffd757e241266a2c833136efbe35af6cd2567dca5b"
3346
+ checksum = "28cce251fcbc87fac86a866eeb0d6c2d536fc16d06f184bb61aeae11aa4cee0c"
3557
3347
  dependencies = [
3558
3348
  "cfg-if",
3559
3349
  "fastrand",
@@ -3611,7 +3401,7 @@ dependencies = [
3611
3401
  "libc",
3612
3402
  "log",
3613
3403
  "memmem",
3614
- "nix 0.24.3",
3404
+ "nix",
3615
3405
  "num-derive 0.3.3",
3616
3406
  "num-traits",
3617
3407
  "ordered-float 3.9.2",
@@ -3625,7 +3415,7 @@ dependencies = [
3625
3415
  "siphasher",
3626
3416
  "terminfo",
3627
3417
  "termios",
3628
- "thiserror",
3418
+ "thiserror 1.0.69",
3629
3419
  "ucd-trie",
3630
3420
  "unicode-segmentation",
3631
3421
  "vtparse",
@@ -3643,22 +3433,42 @@ checksum = "f18aa187839b2bdb1ad2fa35ead8c4c2976b64e4363c386d45ac0f7ee85c9233"
3643
3433
 
3644
3434
  [[package]]
3645
3435
  name = "thiserror"
3646
- version = "1.0.64"
3436
+ version = "1.0.69"
3437
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3438
+ checksum = "b6aaf5339b578ea85b50e080feb250a3e8ae8cfcdff9a461c9ec2904bc923f52"
3439
+ dependencies = [
3440
+ "thiserror-impl 1.0.69",
3441
+ ]
3442
+
3443
+ [[package]]
3444
+ name = "thiserror"
3445
+ version = "2.0.3"
3647
3446
  source = "registry+https://github.com/rust-lang/crates.io-index"
3648
- checksum = "d50af8abc119fb8bb6dbabcfa89656f46f84aa0ac7688088608076ad2b459a84"
3447
+ checksum = "c006c85c7651b3cf2ada4584faa36773bd07bac24acfb39f3c431b36d7e667aa"
3649
3448
  dependencies = [
3650
- "thiserror-impl",
3449
+ "thiserror-impl 2.0.3",
3651
3450
  ]
3652
3451
 
3653
3452
  [[package]]
3654
3453
  name = "thiserror-impl"
3655
- version = "1.0.64"
3454
+ version = "1.0.69"
3656
3455
  source = "registry+https://github.com/rust-lang/crates.io-index"
3657
- checksum = "08904e7672f5eb876eaaf87e0ce17857500934f4981c4a0ab2b4aa98baac7fc3"
3456
+ checksum = "4fee6c4efc90059e10f81e6d42c60a18f76588c3d74cb83a0b242a2b6c7504c1"
3658
3457
  dependencies = [
3659
3458
  "proc-macro2",
3660
3459
  "quote",
3661
- "syn 2.0.79",
3460
+ "syn 2.0.89",
3461
+ ]
3462
+
3463
+ [[package]]
3464
+ name = "thiserror-impl"
3465
+ version = "2.0.3"
3466
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3467
+ checksum = "f077553d607adc1caf65430528a576c757a71ed73944b66ebb58ef2bbd243568"
3468
+ dependencies = [
3469
+ "proc-macro2",
3470
+ "quote",
3471
+ "syn 2.0.89",
3662
3472
  ]
3663
3473
 
3664
3474
  [[package]]
@@ -3764,9 +3574,9 @@ dependencies = [
3764
3574
 
3765
3575
  [[package]]
3766
3576
  name = "unicode-ident"
3767
- version = "1.0.13"
3577
+ version = "1.0.14"
3768
3578
  source = "registry+https://github.com/rust-lang/crates.io-index"
3769
- checksum = "e91b56cd4cadaeb79bbf1a5645f6b4f8dc5bde8834ad5894a8db35fda9efa1fe"
3579
+ checksum = "adb9e6ca4f869e1180728b7950e35922a7fc6397f7b641499e8f3ef06e50dc83"
3770
3580
 
3771
3581
  [[package]]
3772
3582
  name = "unicode-segmentation"
@@ -3846,9 +3656,9 @@ dependencies = [
3846
3656
 
3847
3657
  [[package]]
3848
3658
  name = "walrus"
3849
- version = "0.22.0"
3659
+ version = "0.23.0"
3850
3660
  source = "registry+https://github.com/rust-lang/crates.io-index"
3851
- checksum = "d68aa3c7b80be75c8458fc087453e5a31a226cfffede2e9b932393b2ea1c624a"
3661
+ checksum = "b0654ee28b7febcbe12fb3db23c69fde0a6a41c538147bfbd8412aee586728cb"
3852
3662
  dependencies = [
3853
3663
  "anyhow",
3854
3664
  "gimli 0.26.2",
@@ -3856,8 +3666,8 @@ dependencies = [
3856
3666
  "leb128",
3857
3667
  "log",
3858
3668
  "walrus-macro",
3859
- "wasm-encoder 0.212.0",
3860
- "wasmparser 0.212.0",
3669
+ "wasm-encoder 0.214.0",
3670
+ "wasmparser 0.214.0",
3861
3671
  ]
3862
3672
 
3863
3673
  [[package]]
@@ -3869,7 +3679,7 @@ dependencies = [
3869
3679
  "heck 0.5.0",
3870
3680
  "proc-macro2",
3871
3681
  "quote",
3872
- "syn 2.0.79",
3682
+ "syn 2.0.89",
3873
3683
  ]
3874
3684
 
3875
3685
  [[package]]
@@ -3900,7 +3710,7 @@ dependencies = [
3900
3710
  "once_cell",
3901
3711
  "proc-macro2",
3902
3712
  "quote",
3903
- "syn 2.0.79",
3713
+ "syn 2.0.89",
3904
3714
  "wasm-bindgen-shared",
3905
3715
  ]
3906
3716
 
@@ -3922,7 +3732,7 @@ checksum = "26c6ab57572f7a24a4985830b120de1594465e5d500f24afe89e16b4e833ef68"
3922
3732
  dependencies = [
3923
3733
  "proc-macro2",
3924
3734
  "quote",
3925
- "syn 2.0.79",
3735
+ "syn 2.0.89",
3926
3736
  "wasm-bindgen-backend",
3927
3737
  "wasm-bindgen-shared",
3928
3738
  ]
@@ -3935,27 +3745,27 @@ checksum = "65fc09f10666a9f147042251e0dda9c18f166ff7de300607007e96bdebc1068d"
3935
3745
 
3936
3746
  [[package]]
3937
3747
  name = "wasm-encoder"
3938
- version = "0.212.0"
3748
+ version = "0.214.0"
3939
3749
  source = "registry+https://github.com/rust-lang/crates.io-index"
3940
- checksum = "501940df4418b8929eb6d52f1aade1fdd15a5b86c92453cb696e3c906bd3fc33"
3750
+ checksum = "ff694f02a8d7a50b6922b197ae03883fbf18cdb2ae9fbee7b6148456f5f44041"
3941
3751
  dependencies = [
3942
3752
  "leb128",
3943
3753
  ]
3944
3754
 
3945
3755
  [[package]]
3946
3756
  name = "wasm-encoder"
3947
- version = "0.217.0"
3757
+ version = "0.218.0"
3948
3758
  source = "registry+https://github.com/rust-lang/crates.io-index"
3949
- checksum = "7b88b0814c9a2b323a9b46c687e726996c255ac8b64aa237dd11c81ed4854760"
3759
+ checksum = "22b896fa8ceb71091ace9bcb81e853f54043183a1c9667cf93422c40252ffa0a"
3950
3760
  dependencies = [
3951
3761
  "leb128",
3952
3762
  ]
3953
3763
 
3954
3764
  [[package]]
3955
3765
  name = "wasmparser"
3956
- version = "0.212.0"
3766
+ version = "0.214.0"
3957
3767
  source = "registry+https://github.com/rust-lang/crates.io-index"
3958
- checksum = "8d28bc49ba1e5c5b61ffa7a2eace10820443c4b7d1c0b144109261d14570fdf8"
3768
+ checksum = "5309c1090e3e84dad0d382f42064e9933fdaedb87e468cc239f0eabea73ddcb6"
3959
3769
  dependencies = [
3960
3770
  "ahash",
3961
3771
  "bitflags 2.6.0",
@@ -3967,9 +3777,9 @@ dependencies = [
3967
3777
 
3968
3778
  [[package]]
3969
3779
  name = "wasmparser"
3970
- version = "0.217.0"
3780
+ version = "0.218.0"
3971
3781
  source = "registry+https://github.com/rust-lang/crates.io-index"
3972
- checksum = "ca917a21307d3adf2b9857b94dd05ebf8496bdcff4437a9b9fb3899d3e6c74e7"
3782
+ checksum = "b09e46c7fceceaa72b2dd1a8a137ea7fd8f93dfaa69806010a709918e496c5dc"
3973
3783
  dependencies = [
3974
3784
  "ahash",
3975
3785
  "bitflags 2.6.0",
@@ -3981,20 +3791,20 @@ dependencies = [
3981
3791
 
3982
3792
  [[package]]
3983
3793
  name = "wasmprinter"
3984
- version = "0.217.0"
3794
+ version = "0.218.0"
3985
3795
  source = "registry+https://github.com/rust-lang/crates.io-index"
3986
- checksum = "50dc568b3e0d47e8f96ea547c90790cfa783f0205160c40de894a427114185ce"
3796
+ checksum = "0ace089155491837b75f474bf47c99073246d1b737393fe722d6dee311595ddc"
3987
3797
  dependencies = [
3988
3798
  "anyhow",
3989
3799
  "termcolor",
3990
- "wasmparser 0.217.0",
3800
+ "wasmparser 0.218.0",
3991
3801
  ]
3992
3802
 
3993
3803
  [[package]]
3994
3804
  name = "wasmtime"
3995
- version = "25.0.2"
3805
+ version = "26.0.1"
3996
3806
  source = "registry+https://github.com/rust-lang/crates.io-index"
3997
- checksum = "ef01f9cb9636ed42a7ec5a09d785c0643590199dc7372dc22c7e2ba7a31a97d4"
3807
+ checksum = "51e762e163fd305770c6c341df3290f0cabb3c264e7952943018e9a1ced8d917"
3998
3808
  dependencies = [
3999
3809
  "anyhow",
4000
3810
  "bitflags 2.6.0",
@@ -4013,6 +3823,7 @@ dependencies = [
4013
3823
  "paste",
4014
3824
  "postcard",
4015
3825
  "psm",
3826
+ "pulley-interpreter",
4016
3827
  "rayon",
4017
3828
  "rustix",
4018
3829
  "serde",
@@ -4020,7 +3831,7 @@ dependencies = [
4020
3831
  "smallvec",
4021
3832
  "sptr",
4022
3833
  "target-lexicon",
4023
- "wasmparser 0.217.0",
3834
+ "wasmparser 0.218.0",
4024
3835
  "wasmtime-asm-macros",
4025
3836
  "wasmtime-component-macro",
4026
3837
  "wasmtime-cranelift",
@@ -4028,28 +3839,28 @@ dependencies = [
4028
3839
  "wasmtime-jit-icache-coherence",
4029
3840
  "wasmtime-slab",
4030
3841
  "wasmtime-versioned-export-macros",
4031
- "windows-sys 0.52.0",
3842
+ "windows-sys 0.59.0",
4032
3843
  ]
4033
3844
 
4034
3845
  [[package]]
4035
3846
  name = "wasmtime-asm-macros"
4036
- version = "25.0.2"
3847
+ version = "26.0.1"
4037
3848
  source = "registry+https://github.com/rust-lang/crates.io-index"
4038
- checksum = "ba5b20797419d6baf2296db2354f864e8bb3447cacca9d151ce7700ae08b4460"
3849
+ checksum = "63caa7aebb546374e26257a1900fb93579171e7c02514cde26805b9ece3ef812"
4039
3850
  dependencies = [
4040
3851
  "cfg-if",
4041
3852
  ]
4042
3853
 
4043
3854
  [[package]]
4044
3855
  name = "wasmtime-component-macro"
4045
- version = "25.0.2"
3856
+ version = "26.0.1"
4046
3857
  source = "registry+https://github.com/rust-lang/crates.io-index"
4047
- checksum = "26593c4b18c76ca3c3fbdd813d6692256537b639b851d8a6fe827e3d6966fc01"
3858
+ checksum = "d61a4b5ce2ad9c15655e830f0eac0c38b8def30c74ecac71f452d3901e491b68"
4048
3859
  dependencies = [
4049
3860
  "anyhow",
4050
3861
  "proc-macro2",
4051
3862
  "quote",
4052
- "syn 2.0.79",
3863
+ "syn 2.0.89",
4053
3864
  "wasmtime-component-util",
4054
3865
  "wasmtime-wit-bindgen",
4055
3866
  "wit-parser",
@@ -4057,15 +3868,15 @@ dependencies = [
4057
3868
 
4058
3869
  [[package]]
4059
3870
  name = "wasmtime-component-util"
4060
- version = "25.0.2"
3871
+ version = "26.0.1"
4061
3872
  source = "registry+https://github.com/rust-lang/crates.io-index"
4062
- checksum = "a2ed562fbb0cbed20a56c369c8de146c1de06a48c19e26ed9aa45f073514ee60"
3873
+ checksum = "35e87a1212270dbb84a49af13d82594e00a92769d6952b0ea7fc4366c949f6ad"
4063
3874
 
4064
3875
  [[package]]
4065
3876
  name = "wasmtime-cranelift"
4066
- version = "25.0.2"
3877
+ version = "26.0.1"
4067
3878
  source = "registry+https://github.com/rust-lang/crates.io-index"
4068
- checksum = "f389b789cbcb53a8499131182135dea21d7d97ad77e7fb66830f69479ef0e68c"
3879
+ checksum = "7cb40dddf38c6a5eefd5ce7c1baf43b00fe44eada11a319fab22e993a960262f"
4069
3880
  dependencies = [
4070
3881
  "anyhow",
4071
3882
  "cfg-if",
@@ -4074,92 +3885,78 @@ dependencies = [
4074
3885
  "cranelift-entity",
4075
3886
  "cranelift-frontend",
4076
3887
  "cranelift-native",
4077
- "cranelift-wasm",
4078
- "gimli 0.29.0",
3888
+ "gimli 0.31.1",
3889
+ "itertools 0.12.1",
4079
3890
  "log",
4080
3891
  "object",
4081
3892
  "smallvec",
4082
3893
  "target-lexicon",
4083
- "thiserror",
4084
- "wasmparser 0.217.0",
3894
+ "thiserror 1.0.69",
3895
+ "wasmparser 0.218.0",
4085
3896
  "wasmtime-environ",
4086
3897
  "wasmtime-versioned-export-macros",
4087
3898
  ]
4088
3899
 
4089
3900
  [[package]]
4090
3901
  name = "wasmtime-environ"
4091
- version = "25.0.2"
3902
+ version = "26.0.1"
4092
3903
  source = "registry+https://github.com/rust-lang/crates.io-index"
4093
- checksum = "84b72debe8899f19bedf66f7071310f06ef62de943a1369ba9b373613e77dd3d"
3904
+ checksum = "8613075e89e94a48c05862243c2b718eef1b9c337f51493ebf951e149a10fa19"
4094
3905
  dependencies = [
4095
3906
  "anyhow",
4096
3907
  "cranelift-bitset",
4097
3908
  "cranelift-entity",
4098
- "gimli 0.29.0",
3909
+ "gimli 0.31.1",
4099
3910
  "indexmap 2.6.0",
4100
3911
  "log",
4101
3912
  "object",
4102
3913
  "postcard",
4103
3914
  "serde",
4104
3915
  "serde_derive",
3916
+ "smallvec",
4105
3917
  "target-lexicon",
4106
- "wasm-encoder 0.217.0",
4107
- "wasmparser 0.217.0",
3918
+ "wasm-encoder 0.218.0",
3919
+ "wasmparser 0.218.0",
4108
3920
  "wasmprinter",
4109
- "wasmtime-types",
4110
3921
  ]
4111
3922
 
4112
3923
  [[package]]
4113
3924
  name = "wasmtime-jit-icache-coherence"
4114
- version = "25.0.2"
3925
+ version = "26.0.1"
4115
3926
  source = "registry+https://github.com/rust-lang/crates.io-index"
4116
- checksum = "1d930bc1325bc0448be6a11754156d770f56f6c3a61f440e9567f36cd2ea3065"
3927
+ checksum = "da47fba49af72581bc0dc67c8faaf5ee550e6f106e285122a184a675193701a5"
4117
3928
  dependencies = [
4118
3929
  "anyhow",
4119
3930
  "cfg-if",
4120
3931
  "libc",
4121
- "windows-sys 0.52.0",
3932
+ "windows-sys 0.59.0",
4122
3933
  ]
4123
3934
 
4124
3935
  [[package]]
4125
3936
  name = "wasmtime-slab"
4126
- version = "25.0.2"
3937
+ version = "26.0.1"
4127
3938
  source = "registry+https://github.com/rust-lang/crates.io-index"
4128
- checksum = "055a181b8d03998511294faea14798df436503f14d7fd20edcf7370ec583e80a"
4129
-
4130
- [[package]]
4131
- name = "wasmtime-types"
4132
- version = "25.0.2"
4133
- source = "registry+https://github.com/rust-lang/crates.io-index"
4134
- checksum = "c8340d976673ac3fdacac781f2afdc4933920c1adc738c3409e825dab3955399"
4135
- dependencies = [
4136
- "anyhow",
4137
- "cranelift-entity",
4138
- "serde",
4139
- "serde_derive",
4140
- "smallvec",
4141
- "wasmparser 0.217.0",
4142
- ]
3939
+ checksum = "770e10cdefb15f2b6304152978e115bd062753c1ebe7221c0b6b104fa0419ff6"
4143
3940
 
4144
3941
  [[package]]
4145
3942
  name = "wasmtime-versioned-export-macros"
4146
- version = "25.0.2"
3943
+ version = "26.0.1"
4147
3944
  source = "registry+https://github.com/rust-lang/crates.io-index"
4148
- checksum = "a4b0c1f76891f778db9602ee3fbb4eb7e9a3f511847d1fb1b69eddbcea28303c"
3945
+ checksum = "db8efb877c9e5e67239d4553bb44dd2a34ae5cfb728f3cf2c5e64439c6ca6ee7"
4149
3946
  dependencies = [
4150
3947
  "proc-macro2",
4151
3948
  "quote",
4152
- "syn 2.0.79",
3949
+ "syn 2.0.89",
4153
3950
  ]
4154
3951
 
4155
3952
  [[package]]
4156
3953
  name = "wasmtime-wit-bindgen"
4157
- version = "25.0.2"
3954
+ version = "26.0.1"
4158
3955
  source = "registry+https://github.com/rust-lang/crates.io-index"
4159
- checksum = "b2fca2cbb5bb390f65d4434c19bf8d9873dfc60f10802918ebcd6f819a38d703"
3956
+ checksum = "4bef2a726fd8d1ee9b0144655e16c492dc32eb4c7c9f7e3309fcffe637870933"
4160
3957
  dependencies = [
4161
3958
  "anyhow",
4162
- "heck 0.4.1",
3959
+ "heck 0.5.0",
4163
3960
  "indexmap 2.6.0",
4164
3961
  "wit-parser",
4165
3962
  ]
@@ -4205,7 +4002,7 @@ dependencies = [
4205
4002
  "log",
4206
4003
  "ordered-float 3.9.2",
4207
4004
  "strsim 0.10.0",
4208
- "thiserror",
4005
+ "thiserror 1.0.69",
4209
4006
  "wezterm-dynamic-derive",
4210
4007
  ]
4211
4008
 
@@ -4216,9 +4013,9 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
4216
4013
  checksum = "dfb128bacfa86734e07681fb6068e34c144698e84ee022d6e009145d1abb77b5"
4217
4014
  dependencies = [
4218
4015
  "log",
4219
- "ordered-float 4.3.0",
4016
+ "ordered-float 4.5.0",
4220
4017
  "strsim 0.10.0",
4221
- "thiserror",
4018
+ "thiserror 1.0.69",
4222
4019
  "wezterm-dynamic-derive",
4223
4020
  ]
4224
4021
 
@@ -4510,9 +4307,9 @@ dependencies = [
4510
4307
 
4511
4308
  [[package]]
4512
4309
  name = "wit-parser"
4513
- version = "0.217.0"
4310
+ version = "0.218.0"
4514
4311
  source = "registry+https://github.com/rust-lang/crates.io-index"
4515
- checksum = "fb893dcd6d370cfdf19a0d9adfcd403efb8e544e1a0ea3a8b81a21fe392eaa78"
4312
+ checksum = "0d3d1066ab761b115f97fef2b191090faabcb0f37b555b758d3caf42d4ed9e55"
4516
4313
  dependencies = [
4517
4314
  "anyhow",
4518
4315
  "id-arena",
@@ -4523,7 +4320,7 @@ dependencies = [
4523
4320
  "serde_derive",
4524
4321
  "serde_json",
4525
4322
  "unicode-xid",
4526
- "wasmparser 0.217.0",
4323
+ "wasmparser 0.218.0",
4527
4324
  ]
4528
4325
 
4529
4326
  [[package]]
@@ -4549,7 +4346,7 @@ dependencies = [
4549
4346
  "oid-registry",
4550
4347
  "ring",
4551
4348
  "rusticata-macros",
4552
- "thiserror",
4349
+ "thiserror 1.0.69",
4553
4350
  "time",
4554
4351
  ]
4555
4352
 
@@ -4561,7 +4358,7 @@ checksum = "cfe53a6657fd280eaa890a3bc59152892ffa3e30101319d168b781ed6529b049"
4561
4358
 
4562
4359
  [[package]]
4563
4360
  name = "yara-x"
4564
- version = "0.10.0"
4361
+ version = "0.11.0"
4565
4362
  dependencies = [
4566
4363
  "aho-corasick",
4567
4364
  "annotate-snippets",
@@ -4616,7 +4413,7 @@ dependencies = [
4616
4413
  "sha1",
4617
4414
  "sha2 0.10.8",
4618
4415
  "smallvec",
4619
- "thiserror",
4416
+ "thiserror 2.0.3",
4620
4417
  "tlsh-fixed",
4621
4418
  "uuid",
4622
4419
  "walrus",
@@ -4632,7 +4429,7 @@ dependencies = [
4632
4429
 
4633
4430
  [[package]]
4634
4431
  name = "yara-x-capi"
4635
- version = "0.10.0"
4432
+ version = "0.11.0"
4636
4433
  dependencies = [
4637
4434
  "cbindgen",
4638
4435
  "serde_json",
@@ -4641,7 +4438,7 @@ dependencies = [
4641
4438
 
4642
4439
  [[package]]
4643
4440
  name = "yara-x-cli"
4644
- version = "0.10.0"
4441
+ version = "0.11.0"
4645
4442
  dependencies = [
4646
4443
  "anyhow",
4647
4444
  "ascii_tree",
@@ -4659,7 +4456,6 @@ dependencies = [
4659
4456
  "home",
4660
4457
  "itertools 0.13.0",
4661
4458
  "log",
4662
- "pprof",
4663
4459
  "protobuf",
4664
4460
  "protobuf-json-mapping",
4665
4461
  "serde",
@@ -4676,7 +4472,7 @@ dependencies = [
4676
4472
 
4677
4473
  [[package]]
4678
4474
  name = "yara-x-fmt"
4679
- version = "0.10.0"
4475
+ version = "0.11.0"
4680
4476
  dependencies = [
4681
4477
  "bitmask",
4682
4478
  "bstr",
@@ -4685,23 +4481,23 @@ dependencies = [
4685
4481
  "lazy_static",
4686
4482
  "pretty_assertions",
4687
4483
  "rayon",
4688
- "thiserror",
4484
+ "thiserror 2.0.3",
4689
4485
  "yara-x-parser",
4690
4486
  ]
4691
4487
 
4692
4488
  [[package]]
4693
4489
  name = "yara-x-macros"
4694
- version = "0.10.0"
4490
+ version = "0.11.0"
4695
4491
  dependencies = [
4696
4492
  "darling",
4697
4493
  "proc-macro2",
4698
4494
  "quote",
4699
- "syn 2.0.79",
4495
+ "syn 2.0.89",
4700
4496
  ]
4701
4497
 
4702
4498
  [[package]]
4703
4499
  name = "yara-x-parser"
4704
- version = "0.10.0"
4500
+ version = "0.11.0"
4705
4501
  dependencies = [
4706
4502
  "anyhow",
4707
4503
  "ascii_tree",
@@ -4725,7 +4521,7 @@ dependencies = [
4725
4521
 
4726
4522
  [[package]]
4727
4523
  name = "yara-x-proto"
4728
- version = "0.10.0"
4524
+ version = "0.11.0"
4729
4525
  dependencies = [
4730
4526
  "protobuf",
4731
4527
  "protobuf-codegen",
@@ -4734,7 +4530,7 @@ dependencies = [
4734
4530
 
4735
4531
  [[package]]
4736
4532
  name = "yara-x-proto-yaml"
4737
- version = "0.10.0"
4533
+ version = "0.11.0"
4738
4534
  dependencies = [
4739
4535
  "chrono",
4740
4536
  "globwalk",
@@ -4749,7 +4545,7 @@ dependencies = [
4749
4545
 
4750
4546
  [[package]]
4751
4547
  name = "yara-x-py"
4752
- version = "0.10.0"
4548
+ version = "0.11.0"
4753
4549
  dependencies = [
4754
4550
  "protobuf-json-mapping",
4755
4551
  "pyo3",
@@ -4777,7 +4573,7 @@ checksum = "fa4f8080344d4671fb4e831a13ad1e68092748387dfc4f55e356242fae12ce3e"
4777
4573
  dependencies = [
4778
4574
  "proc-macro2",
4779
4575
  "quote",
4780
- "syn 2.0.79",
4576
+ "syn 2.0.89",
4781
4577
  ]
4782
4578
 
4783
4579
  [[package]]
@@ -4797,14 +4593,14 @@ checksum = "ce36e65b0d2999d2aafac989fb249189a141aee1f53c612c1f37d72631959f69"
4797
4593
  dependencies = [
4798
4594
  "proc-macro2",
4799
4595
  "quote",
4800
- "syn 2.0.79",
4596
+ "syn 2.0.89",
4801
4597
  ]
4802
4598
 
4803
4599
  [[package]]
4804
4600
  name = "zip"
4805
- version = "2.2.0"
4601
+ version = "2.2.1"
4806
4602
  source = "registry+https://github.com/rust-lang/crates.io-index"
4807
- checksum = "dc5e4288ea4057ae23afc69a4472434a87a2495cafce6632fd1c4ec9f5cf3494"
4603
+ checksum = "99d52293fc86ea7cf13971b3bb81eb21683636e7ae24c729cdaf1b7c4157a352"
4808
4604
  dependencies = [
4809
4605
  "aes",
4810
4606
  "arbitrary",
@@ -4822,7 +4618,7 @@ dependencies = [
4822
4618
  "pbkdf2",
4823
4619
  "rand",
4824
4620
  "sha1",
4825
- "thiserror",
4621
+ "thiserror 2.0.3",
4826
4622
  "time",
4827
4623
  "zeroize",
4828
4624
  "zopfli",