yara-x 1.15.0

A pure Rust implementation of YARA.
Documentation
1
2
3
4
5
6
7
8
9
10
11
warning[bool_int_comparison]: comparison between boolean and integer
 --> line:4:13
  |
4 |  condition: 0 == test_proto2.array_bool[0]
  |             ------------------------------ this is comparing an integer and a boolean
  |
help: consider the following change
  |
4 -  condition: 0 == test_proto2.array_bool[0]
4 +  condition: not test_proto2.array_bool[0]
  |