yara-x 1.15.0

A pure Rust implementation of YARA.
Documentation
import "test_proto2"

rule test_1 {
  condition:
    for any i in (0..1) : (
      for any j in (0..1) : (
         (i + i) * 2 == --j
      )
    )
}

rule test_2 {
  condition:
    for any i in (0..1) : (
      for any j in (0..1) : (
         i + i == 0
      )
    )
}