yara-x 1.15.0

A pure Rust implementation of YARA.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
warning[unsatisfiable_expr]: unsatisfiable expression
 --> line:5:9
  |
5 |         test_proto2.string_foo == "FOO"
  |         ----------------------    ----- this contains uppercase characters
  |         |
  |         this is a lowercase string
  |
  = note: a lowercase string can't be equal to a string containing uppercase characters
help: consider the following change
  |
5 -         test_proto2.string_foo == "FOO"
5 +         test_proto2.string_foo == "foo"
  |