yara-x 0.11.1__tar.gz → 0.12.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.
Potentially problematic release.
This version of yara-x might be problematic. Click here for more details.
- {yara_x-0.11.1 → yara_x-0.12.0}/Cargo.lock +265 -180
- {yara_x-0.11.1 → yara_x-0.12.0}/Cargo.toml +7 -7
- {yara_x-0.11.1 → yara_x-0.12.0}/PKG-INFO +2 -2
- {yara_x-0.11.1/py → yara_x-0.12.0}/README.md +1 -1
- {yara_x-0.11.1 → yara_x-0.12.0}/lib/Cargo.toml +4 -0
- {yara_x-0.11.1 → yara_x-0.12.0}/lib/src/compiler/ir/mod.rs +1 -39
- {yara_x-0.11.1 → yara_x-0.12.0}/lib/src/compiler/ir/tests/testdata/1.cse.ir +30 -5
- {yara_x-0.11.1 → yara_x-0.12.0}/lib/src/compiler/ir/tests/testdata/1.hoisting.ir +30 -5
- {yara_x-0.11.1 → yara_x-0.12.0}/lib/src/compiler/ir/tests/testdata/1.in +15 -5
- {yara_x-0.11.1 → yara_x-0.12.0}/lib/src/compiler/ir/tests/testdata/1.ir +30 -5
- {yara_x-0.11.1 → yara_x-0.12.0}/lib/src/compiler/ir/tests/testdata/1.no-folding.ir +30 -5
- yara_x-0.12.0/lib/src/compiler/ir/tests/testdata/9.cse.ir +23 -0
- yara_x-0.12.0/lib/src/compiler/ir/tests/testdata/9.hoisting.ir +23 -0
- yara_x-0.12.0/lib/src/compiler/ir/tests/testdata/9.in +23 -0
- yara_x-0.12.0/lib/src/compiler/ir/tests/testdata/9.ir +23 -0
- yara_x-0.12.0/lib/src/compiler/ir/tests/testdata/9.no-folding.ir +23 -0
- {yara_x-0.11.1 → yara_x-0.12.0}/lib/src/compiler/mod.rs +21 -10
- {yara_x-0.11.1 → yara_x-0.12.0}/lib/src/compiler/tests/testdata/errors/1.out +1 -1
- yara_x-0.12.0/lib/src/compiler/tests/testdata/errors/113.out +9 -0
- yara_x-0.12.0/lib/src/compiler/tests/testdata/errors/114.out +9 -0
- {yara_x-0.11.1 → yara_x-0.12.0}/lib/src/compiler/tests/testdata/errors/128.out +1 -1
- yara_x-0.12.0/lib/src/compiler/tests/testdata/errors/2.out +8 -0
- yara_x-0.12.0/lib/src/compiler/tests/testdata/errors/31.out +8 -0
- yara_x-0.12.0/lib/src/compiler/tests/testdata/errors/32.out +8 -0
- yara_x-0.12.0/lib/src/compiler/tests/testdata/errors/33.out +8 -0
- yara_x-0.12.0/lib/src/compiler/tests/testdata/errors/34.out +8 -0
- {yara_x-0.11.1 → yara_x-0.12.0}/lib/src/compiler/tests/testdata/errors/42.out +3 -2
- yara_x-0.12.0/lib/src/compiler/tests/testdata/errors/46.out +9 -0
- yara_x-0.12.0/lib/src/compiler/tests/testdata/errors/47.out +8 -0
- yara_x-0.12.0/lib/src/compiler/tests/testdata/errors/48.out +8 -0
- yara_x-0.12.0/lib/src/compiler/tests/testdata/errors/50.out +8 -0
- yara_x-0.12.0/lib/src/compiler/tests/testdata/errors/51.out +8 -0
- yara_x-0.12.0/lib/src/compiler/tests/testdata/errors/52.out +8 -0
- yara_x-0.12.0/lib/src/compiler/tests/testdata/warnings/11.out +8 -0
- {yara_x-0.11.1 → yara_x-0.12.0}/lib/src/compiler/tests/testdata/warnings/13.out +1 -1
- yara_x-0.12.0/lib/src/compiler/tests/testdata/warnings/23.in +13 -0
- {yara_x-0.11.1 → yara_x-0.12.0}/lib/src/compiler/tests/testdata/warnings/23.out +6 -0
- yara_x-0.12.0/lib/src/compiler/tests/testdata/warnings/3.out +8 -0
- yara_x-0.12.0/lib/src/compiler/tests/testdata/warnings/34.out +18 -0
- yara_x-0.12.0/lib/src/compiler/tests/testdata/warnings/35.in +6 -0
- yara_x-0.12.0/lib/src/compiler/tests/testdata/warnings/35.out +6 -0
- yara_x-0.12.0/lib/src/compiler/tests/testdata/warnings/4.out +8 -0
- yara_x-0.12.0/lib/src/compiler/tests/testdata/warnings/5.out +8 -0
- yara_x-0.12.0/lib/src/compiler/tests/testdata/warnings/7.out +8 -0
- yara_x-0.12.0/lib/src/compiler/tests/testdata/warnings/8.out +8 -0
- yara_x-0.12.0/lib/src/compiler/tests/testdata/warnings/9.out +8 -0
- {yara_x-0.11.1 → yara_x-0.12.0}/lib/src/compiler/tests/testdata/warnings/no_warnings.in +7 -0
- {yara_x-0.11.1 → yara_x-0.12.0}/lib/src/lib.rs +1 -0
- {yara_x-0.11.1 → yara_x-0.12.0}/lib/src/modules/macho/mod.rs +12 -13
- {yara_x-0.11.1 → yara_x-0.12.0}/lib/src/modules/macho/parser.rs +36 -1
- {yara_x-0.11.1 → yara_x-0.12.0}/lib/src/modules/macho/tests/mod.rs +26 -0
- {yara_x-0.11.1 → yara_x-0.12.0}/lib/src/modules/math.rs +10 -0
- {yara_x-0.11.1 → yara_x-0.12.0}/lib/src/modules/pe/asn1.rs +35 -13
- {yara_x-0.11.1 → yara_x-0.12.0}/lib/src/modules/pe/authenticode.rs +14 -1
- {yara_x-0.11.1 → yara_x-0.12.0}/lib/src/modules/protos/macho.proto +7 -4
- {yara_x-0.11.1 → yara_x-0.12.0}/lib/src/modules/protos/math.proto +5 -0
- {yara_x-0.11.1 → yara_x-0.12.0}/lib/src/modules/protos/pe.proto +4 -3
- {yara_x-0.11.1/proto/src → yara_x-0.12.0/lib/src/modules/protos}/yara.proto +4 -1
- {yara_x-0.11.1 → yara_x-0.12.0}/lib/src/scanner/context.rs +11 -2
- {yara_x-0.11.1 → yara_x-0.12.0}/lib/src/scanner/mod.rs +19 -4
- {yara_x-0.11.1 → yara_x-0.12.0}/lib/src/scanner/tests.rs +64 -1
- {yara_x-0.11.1 → yara_x-0.12.0}/lib/src/types/mod.rs +10 -0
- {yara_x-0.11.1 → yara_x-0.12.0}/lib/src/types/structure.rs +15 -7
- {yara_x-0.11.1 → yara_x-0.12.0}/parser/Cargo.toml +1 -1
- {yara_x-0.11.1/lib/src/modules/protos → yara_x-0.12.0/proto/src}/yara.proto +4 -1
- {yara_x-0.11.1 → yara_x-0.12.0}/py/Cargo.toml +3 -3
- {yara_x-0.11.1 → yara_x-0.12.0/py}/README.md +1 -1
- {yara_x-0.11.1 → yara_x-0.12.0}/py/src/lib.rs +28 -34
- {yara_x-0.11.1 → yara_x-0.12.0}/pyproject.toml +1 -1
- yara_x-0.11.1/lib/src/compiler/tests/testdata/errors/113.out +0 -8
- yara_x-0.11.1/lib/src/compiler/tests/testdata/errors/114.out +0 -8
- yara_x-0.11.1/lib/src/compiler/tests/testdata/errors/2.out +0 -7
- yara_x-0.11.1/lib/src/compiler/tests/testdata/errors/31.out +0 -7
- yara_x-0.11.1/lib/src/compiler/tests/testdata/errors/32.out +0 -7
- yara_x-0.11.1/lib/src/compiler/tests/testdata/errors/33.out +0 -7
- yara_x-0.11.1/lib/src/compiler/tests/testdata/errors/34.out +0 -7
- yara_x-0.11.1/lib/src/compiler/tests/testdata/errors/46.out +0 -7
- yara_x-0.11.1/lib/src/compiler/tests/testdata/errors/47.out +0 -7
- yara_x-0.11.1/lib/src/compiler/tests/testdata/errors/48.out +0 -7
- yara_x-0.11.1/lib/src/compiler/tests/testdata/errors/50.out +0 -7
- yara_x-0.11.1/lib/src/compiler/tests/testdata/errors/51.out +0 -7
- yara_x-0.11.1/lib/src/compiler/tests/testdata/errors/52.out +0 -7
- yara_x-0.11.1/lib/src/compiler/tests/testdata/warnings/11.out +0 -7
- yara_x-0.11.1/lib/src/compiler/tests/testdata/warnings/23.in +0 -6
- yara_x-0.11.1/lib/src/compiler/tests/testdata/warnings/3.out +0 -7
- yara_x-0.11.1/lib/src/compiler/tests/testdata/warnings/34.out +0 -14
- yara_x-0.11.1/lib/src/compiler/tests/testdata/warnings/4.out +0 -7
- yara_x-0.11.1/lib/src/compiler/tests/testdata/warnings/5.out +0 -7
- yara_x-0.11.1/lib/src/compiler/tests/testdata/warnings/7.out +0 -7
- yara_x-0.11.1/lib/src/compiler/tests/testdata/warnings/8.out +0 -7
- yara_x-0.11.1/lib/src/compiler/tests/testdata/warnings/9.out +0 -7
- {yara_x-0.11.1 → yara_x-0.12.0}/lib/README.md +0 -0
- {yara_x-0.11.1 → yara_x-0.12.0}/lib/build.rs +0 -0
- {yara_x-0.11.1 → yara_x-0.12.0}/lib/src/compiler/atoms/mask.rs +0 -0
- {yara_x-0.11.1 → yara_x-0.12.0}/lib/src/compiler/atoms/mod.rs +0 -0
- {yara_x-0.11.1 → yara_x-0.12.0}/lib/src/compiler/atoms/quality.rs +0 -0
- {yara_x-0.11.1 → yara_x-0.12.0}/lib/src/compiler/base64.rs +0 -0
- {yara_x-0.11.1 → yara_x-0.12.0}/lib/src/compiler/context.rs +0 -0
- {yara_x-0.11.1 → yara_x-0.12.0}/lib/src/compiler/emit.rs +0 -0
- {yara_x-0.11.1 → yara_x-0.12.0}/lib/src/compiler/errors.rs +0 -0
- {yara_x-0.11.1 → yara_x-0.12.0}/lib/src/compiler/ir/ast2ir.rs +0 -0
- {yara_x-0.11.1 → yara_x-0.12.0}/lib/src/compiler/ir/dfs.rs +0 -0
- {yara_x-0.11.1 → yara_x-0.12.0}/lib/src/compiler/ir/hex2hir.rs +0 -0
- {yara_x-0.11.1 → yara_x-0.12.0}/lib/src/compiler/ir/tests/mod.rs +0 -0
- {yara_x-0.11.1 → yara_x-0.12.0}/lib/src/compiler/ir/tests/testdata/2.cse.ir +0 -0
- {yara_x-0.11.1 → yara_x-0.12.0}/lib/src/compiler/ir/tests/testdata/2.hoisting.ir +0 -0
- {yara_x-0.11.1 → yara_x-0.12.0}/lib/src/compiler/ir/tests/testdata/2.in +0 -0
- {yara_x-0.11.1 → yara_x-0.12.0}/lib/src/compiler/ir/tests/testdata/2.ir +0 -0
- {yara_x-0.11.1 → yara_x-0.12.0}/lib/src/compiler/ir/tests/testdata/2.no-folding.ir +0 -0
- {yara_x-0.11.1 → yara_x-0.12.0}/lib/src/compiler/ir/tests/testdata/3.cse.ir +0 -0
- {yara_x-0.11.1 → yara_x-0.12.0}/lib/src/compiler/ir/tests/testdata/3.hoisting.ir +0 -0
- {yara_x-0.11.1 → yara_x-0.12.0}/lib/src/compiler/ir/tests/testdata/3.in +0 -0
- {yara_x-0.11.1 → yara_x-0.12.0}/lib/src/compiler/ir/tests/testdata/3.ir +0 -0
- {yara_x-0.11.1 → yara_x-0.12.0}/lib/src/compiler/ir/tests/testdata/3.no-folding.ir +0 -0
- {yara_x-0.11.1 → yara_x-0.12.0}/lib/src/compiler/ir/tests/testdata/4.cse.ir +0 -0
- {yara_x-0.11.1 → yara_x-0.12.0}/lib/src/compiler/ir/tests/testdata/4.hoisting.ir +0 -0
- {yara_x-0.11.1 → yara_x-0.12.0}/lib/src/compiler/ir/tests/testdata/4.in +0 -0
- {yara_x-0.11.1 → yara_x-0.12.0}/lib/src/compiler/ir/tests/testdata/4.ir +0 -0
- {yara_x-0.11.1 → yara_x-0.12.0}/lib/src/compiler/ir/tests/testdata/4.no-folding.ir +0 -0
- {yara_x-0.11.1 → yara_x-0.12.0}/lib/src/compiler/ir/tests/testdata/5.cse.ir +0 -0
- {yara_x-0.11.1 → yara_x-0.12.0}/lib/src/compiler/ir/tests/testdata/5.hoisting.ir +0 -0
- {yara_x-0.11.1 → yara_x-0.12.0}/lib/src/compiler/ir/tests/testdata/5.in +0 -0
- {yara_x-0.11.1 → yara_x-0.12.0}/lib/src/compiler/ir/tests/testdata/5.ir +0 -0
- {yara_x-0.11.1 → yara_x-0.12.0}/lib/src/compiler/ir/tests/testdata/5.no-folding.ir +0 -0
- {yara_x-0.11.1 → yara_x-0.12.0}/lib/src/compiler/ir/tests/testdata/6.cse.ir +0 -0
- {yara_x-0.11.1 → yara_x-0.12.0}/lib/src/compiler/ir/tests/testdata/6.hoisting.ir +0 -0
- {yara_x-0.11.1 → yara_x-0.12.0}/lib/src/compiler/ir/tests/testdata/6.in +0 -0
- {yara_x-0.11.1 → yara_x-0.12.0}/lib/src/compiler/ir/tests/testdata/6.ir +0 -0
- {yara_x-0.11.1 → yara_x-0.12.0}/lib/src/compiler/ir/tests/testdata/6.no-folding.ir +0 -0
- {yara_x-0.11.1 → yara_x-0.12.0}/lib/src/compiler/ir/tests/testdata/7.cse.ir +0 -0
- {yara_x-0.11.1 → yara_x-0.12.0}/lib/src/compiler/ir/tests/testdata/7.hoisting.ir +0 -0
- {yara_x-0.11.1 → yara_x-0.12.0}/lib/src/compiler/ir/tests/testdata/7.in +0 -0
- {yara_x-0.11.1 → yara_x-0.12.0}/lib/src/compiler/ir/tests/testdata/7.ir +0 -0
- {yara_x-0.11.1 → yara_x-0.12.0}/lib/src/compiler/ir/tests/testdata/7.no-folding.ir +0 -0
- {yara_x-0.11.1 → yara_x-0.12.0}/lib/src/compiler/ir/tests/testdata/8.cse.ir +0 -0
- {yara_x-0.11.1 → yara_x-0.12.0}/lib/src/compiler/ir/tests/testdata/8.hoisting.ir +0 -0
- {yara_x-0.11.1 → yara_x-0.12.0}/lib/src/compiler/ir/tests/testdata/8.in +0 -0
- {yara_x-0.11.1 → yara_x-0.12.0}/lib/src/compiler/ir/tests/testdata/8.ir +0 -0
- {yara_x-0.11.1 → yara_x-0.12.0}/lib/src/compiler/ir/tests/testdata/8.no-folding.ir +0 -0
- {yara_x-0.11.1 → yara_x-0.12.0}/lib/src/compiler/report.rs +0 -0
- {yara_x-0.11.1 → yara_x-0.12.0}/lib/src/compiler/rules.rs +0 -0
- {yara_x-0.11.1 → yara_x-0.12.0}/lib/src/compiler/tests/mod.rs +0 -0
- {yara_x-0.11.1 → yara_x-0.12.0}/lib/src/compiler/tests/testdata/errors/1.in +0 -0
- {yara_x-0.11.1 → yara_x-0.12.0}/lib/src/compiler/tests/testdata/errors/10.in +0 -0
- {yara_x-0.11.1 → yara_x-0.12.0}/lib/src/compiler/tests/testdata/errors/10.out +0 -0
- {yara_x-0.11.1 → yara_x-0.12.0}/lib/src/compiler/tests/testdata/errors/100.in +0 -0
- {yara_x-0.11.1 → yara_x-0.12.0}/lib/src/compiler/tests/testdata/errors/100.out +0 -0
- {yara_x-0.11.1 → yara_x-0.12.0}/lib/src/compiler/tests/testdata/errors/101.in +0 -0
- {yara_x-0.11.1 → yara_x-0.12.0}/lib/src/compiler/tests/testdata/errors/101.out +0 -0
- {yara_x-0.11.1 → yara_x-0.12.0}/lib/src/compiler/tests/testdata/errors/102.in +0 -0
- {yara_x-0.11.1 → yara_x-0.12.0}/lib/src/compiler/tests/testdata/errors/102.out +0 -0
- {yara_x-0.11.1 → yara_x-0.12.0}/lib/src/compiler/tests/testdata/errors/103.in +0 -0
- {yara_x-0.11.1 → yara_x-0.12.0}/lib/src/compiler/tests/testdata/errors/103.out +0 -0
- {yara_x-0.11.1 → yara_x-0.12.0}/lib/src/compiler/tests/testdata/errors/104.in +0 -0
- {yara_x-0.11.1 → yara_x-0.12.0}/lib/src/compiler/tests/testdata/errors/104.out +0 -0
- {yara_x-0.11.1 → yara_x-0.12.0}/lib/src/compiler/tests/testdata/errors/105.in +0 -0
- {yara_x-0.11.1 → yara_x-0.12.0}/lib/src/compiler/tests/testdata/errors/105.out +0 -0
- {yara_x-0.11.1 → yara_x-0.12.0}/lib/src/compiler/tests/testdata/errors/106.in +0 -0
- {yara_x-0.11.1 → yara_x-0.12.0}/lib/src/compiler/tests/testdata/errors/106.out +0 -0
- {yara_x-0.11.1 → yara_x-0.12.0}/lib/src/compiler/tests/testdata/errors/107.in +0 -0
- {yara_x-0.11.1 → yara_x-0.12.0}/lib/src/compiler/tests/testdata/errors/107.out +0 -0
- {yara_x-0.11.1 → yara_x-0.12.0}/lib/src/compiler/tests/testdata/errors/108.in +0 -0
- {yara_x-0.11.1 → yara_x-0.12.0}/lib/src/compiler/tests/testdata/errors/108.out +0 -0
- {yara_x-0.11.1 → yara_x-0.12.0}/lib/src/compiler/tests/testdata/errors/109.in +0 -0
- {yara_x-0.11.1 → yara_x-0.12.0}/lib/src/compiler/tests/testdata/errors/109.out +0 -0
- {yara_x-0.11.1 → yara_x-0.12.0}/lib/src/compiler/tests/testdata/errors/11.in +0 -0
- {yara_x-0.11.1 → yara_x-0.12.0}/lib/src/compiler/tests/testdata/errors/11.out +0 -0
- {yara_x-0.11.1 → yara_x-0.12.0}/lib/src/compiler/tests/testdata/errors/110.in +0 -0
- {yara_x-0.11.1 → yara_x-0.12.0}/lib/src/compiler/tests/testdata/errors/110.out +0 -0
- {yara_x-0.11.1 → yara_x-0.12.0}/lib/src/compiler/tests/testdata/errors/111.in +0 -0
- {yara_x-0.11.1 → yara_x-0.12.0}/lib/src/compiler/tests/testdata/errors/111.out +0 -0
- {yara_x-0.11.1 → yara_x-0.12.0}/lib/src/compiler/tests/testdata/errors/112.in +0 -0
- {yara_x-0.11.1 → yara_x-0.12.0}/lib/src/compiler/tests/testdata/errors/112.out +0 -0
- {yara_x-0.11.1 → yara_x-0.12.0}/lib/src/compiler/tests/testdata/errors/113.in +0 -0
- {yara_x-0.11.1 → yara_x-0.12.0}/lib/src/compiler/tests/testdata/errors/114.in +0 -0
- {yara_x-0.11.1 → yara_x-0.12.0}/lib/src/compiler/tests/testdata/errors/115.in +0 -0
- {yara_x-0.11.1 → yara_x-0.12.0}/lib/src/compiler/tests/testdata/errors/115.out +0 -0
- {yara_x-0.11.1 → yara_x-0.12.0}/lib/src/compiler/tests/testdata/errors/116.in +0 -0
- {yara_x-0.11.1 → yara_x-0.12.0}/lib/src/compiler/tests/testdata/errors/116.out +0 -0
- {yara_x-0.11.1 → yara_x-0.12.0}/lib/src/compiler/tests/testdata/errors/117.in +0 -0
- {yara_x-0.11.1 → yara_x-0.12.0}/lib/src/compiler/tests/testdata/errors/117.out +0 -0
- {yara_x-0.11.1 → yara_x-0.12.0}/lib/src/compiler/tests/testdata/errors/118.in +0 -0
- {yara_x-0.11.1 → yara_x-0.12.0}/lib/src/compiler/tests/testdata/errors/118.out +0 -0
- {yara_x-0.11.1 → yara_x-0.12.0}/lib/src/compiler/tests/testdata/errors/119.in +0 -0
- {yara_x-0.11.1 → yara_x-0.12.0}/lib/src/compiler/tests/testdata/errors/119.out +0 -0
- {yara_x-0.11.1 → yara_x-0.12.0}/lib/src/compiler/tests/testdata/errors/12.in +0 -0
- {yara_x-0.11.1 → yara_x-0.12.0}/lib/src/compiler/tests/testdata/errors/12.out +0 -0
- {yara_x-0.11.1 → yara_x-0.12.0}/lib/src/compiler/tests/testdata/errors/120.in +0 -0
- {yara_x-0.11.1 → yara_x-0.12.0}/lib/src/compiler/tests/testdata/errors/120.out +0 -0
- {yara_x-0.11.1 → yara_x-0.12.0}/lib/src/compiler/tests/testdata/errors/121.in +0 -0
- {yara_x-0.11.1 → yara_x-0.12.0}/lib/src/compiler/tests/testdata/errors/121.out +0 -0
- {yara_x-0.11.1 → yara_x-0.12.0}/lib/src/compiler/tests/testdata/errors/122.in +0 -0
- {yara_x-0.11.1 → yara_x-0.12.0}/lib/src/compiler/tests/testdata/errors/122.out +0 -0
- {yara_x-0.11.1 → yara_x-0.12.0}/lib/src/compiler/tests/testdata/errors/123.in +0 -0
- {yara_x-0.11.1 → yara_x-0.12.0}/lib/src/compiler/tests/testdata/errors/123.out +0 -0
- {yara_x-0.11.1 → yara_x-0.12.0}/lib/src/compiler/tests/testdata/errors/124.in +0 -0
- {yara_x-0.11.1 → yara_x-0.12.0}/lib/src/compiler/tests/testdata/errors/124.out +0 -0
- {yara_x-0.11.1 → yara_x-0.12.0}/lib/src/compiler/tests/testdata/errors/125.in +0 -0
- {yara_x-0.11.1 → yara_x-0.12.0}/lib/src/compiler/tests/testdata/errors/125.out +0 -0
- {yara_x-0.11.1 → yara_x-0.12.0}/lib/src/compiler/tests/testdata/errors/126.in +0 -0
- {yara_x-0.11.1 → yara_x-0.12.0}/lib/src/compiler/tests/testdata/errors/126.out +0 -0
- {yara_x-0.11.1 → yara_x-0.12.0}/lib/src/compiler/tests/testdata/errors/127.in +0 -0
- {yara_x-0.11.1 → yara_x-0.12.0}/lib/src/compiler/tests/testdata/errors/127.out +0 -0
- {yara_x-0.11.1 → yara_x-0.12.0}/lib/src/compiler/tests/testdata/errors/128.in +0 -0
- {yara_x-0.11.1 → yara_x-0.12.0}/lib/src/compiler/tests/testdata/errors/129.in +0 -0
- {yara_x-0.11.1 → yara_x-0.12.0}/lib/src/compiler/tests/testdata/errors/129.out +0 -0
- {yara_x-0.11.1 → yara_x-0.12.0}/lib/src/compiler/tests/testdata/errors/13.in +0 -0
- {yara_x-0.11.1 → yara_x-0.12.0}/lib/src/compiler/tests/testdata/errors/13.out +0 -0
- {yara_x-0.11.1 → yara_x-0.12.0}/lib/src/compiler/tests/testdata/errors/131.in +0 -0
- {yara_x-0.11.1 → yara_x-0.12.0}/lib/src/compiler/tests/testdata/errors/131.out +0 -0
- {yara_x-0.11.1 → yara_x-0.12.0}/lib/src/compiler/tests/testdata/errors/132.in +0 -0
- {yara_x-0.11.1 → yara_x-0.12.0}/lib/src/compiler/tests/testdata/errors/132.out +0 -0
- {yara_x-0.11.1 → yara_x-0.12.0}/lib/src/compiler/tests/testdata/errors/133.in +0 -0
- {yara_x-0.11.1 → yara_x-0.12.0}/lib/src/compiler/tests/testdata/errors/133.out +0 -0
- {yara_x-0.11.1 → yara_x-0.12.0}/lib/src/compiler/tests/testdata/errors/134.in +0 -0
- {yara_x-0.11.1 → yara_x-0.12.0}/lib/src/compiler/tests/testdata/errors/134.out +0 -0
- {yara_x-0.11.1 → yara_x-0.12.0}/lib/src/compiler/tests/testdata/errors/135.in +0 -0
- {yara_x-0.11.1 → yara_x-0.12.0}/lib/src/compiler/tests/testdata/errors/135.out +0 -0
- {yara_x-0.11.1 → yara_x-0.12.0}/lib/src/compiler/tests/testdata/errors/136.in +0 -0
- {yara_x-0.11.1 → yara_x-0.12.0}/lib/src/compiler/tests/testdata/errors/136.out +0 -0
- {yara_x-0.11.1 → yara_x-0.12.0}/lib/src/compiler/tests/testdata/errors/137.in +0 -0
- {yara_x-0.11.1 → yara_x-0.12.0}/lib/src/compiler/tests/testdata/errors/137.out +0 -0
- {yara_x-0.11.1 → yara_x-0.12.0}/lib/src/compiler/tests/testdata/errors/138.in +0 -0
- {yara_x-0.11.1 → yara_x-0.12.0}/lib/src/compiler/tests/testdata/errors/138.out +0 -0
- {yara_x-0.11.1 → yara_x-0.12.0}/lib/src/compiler/tests/testdata/errors/139.in +0 -0
- {yara_x-0.11.1 → yara_x-0.12.0}/lib/src/compiler/tests/testdata/errors/139.out +0 -0
- {yara_x-0.11.1 → yara_x-0.12.0}/lib/src/compiler/tests/testdata/errors/14.in +0 -0
- {yara_x-0.11.1 → yara_x-0.12.0}/lib/src/compiler/tests/testdata/errors/14.out +0 -0
- {yara_x-0.11.1 → yara_x-0.12.0}/lib/src/compiler/tests/testdata/errors/15.in +0 -0
- {yara_x-0.11.1 → yara_x-0.12.0}/lib/src/compiler/tests/testdata/errors/15.out +0 -0
- {yara_x-0.11.1 → yara_x-0.12.0}/lib/src/compiler/tests/testdata/errors/16.in +0 -0
- {yara_x-0.11.1 → yara_x-0.12.0}/lib/src/compiler/tests/testdata/errors/16.out +0 -0
- {yara_x-0.11.1 → yara_x-0.12.0}/lib/src/compiler/tests/testdata/errors/17.in +0 -0
- {yara_x-0.11.1 → yara_x-0.12.0}/lib/src/compiler/tests/testdata/errors/17.out +0 -0
- {yara_x-0.11.1 → yara_x-0.12.0}/lib/src/compiler/tests/testdata/errors/18.in +0 -0
- {yara_x-0.11.1 → yara_x-0.12.0}/lib/src/compiler/tests/testdata/errors/18.out +0 -0
- {yara_x-0.11.1 → yara_x-0.12.0}/lib/src/compiler/tests/testdata/errors/19.in +0 -0
- {yara_x-0.11.1 → yara_x-0.12.0}/lib/src/compiler/tests/testdata/errors/19.out +0 -0
- {yara_x-0.11.1 → yara_x-0.12.0}/lib/src/compiler/tests/testdata/errors/2.in +0 -0
- {yara_x-0.11.1 → yara_x-0.12.0}/lib/src/compiler/tests/testdata/errors/20.in +0 -0
- {yara_x-0.11.1 → yara_x-0.12.0}/lib/src/compiler/tests/testdata/errors/20.out +0 -0
- {yara_x-0.11.1 → yara_x-0.12.0}/lib/src/compiler/tests/testdata/errors/21.in +0 -0
- {yara_x-0.11.1 → yara_x-0.12.0}/lib/src/compiler/tests/testdata/errors/21.out +0 -0
- {yara_x-0.11.1 → yara_x-0.12.0}/lib/src/compiler/tests/testdata/errors/22.in +0 -0
- {yara_x-0.11.1 → yara_x-0.12.0}/lib/src/compiler/tests/testdata/errors/22.out +0 -0
- {yara_x-0.11.1 → yara_x-0.12.0}/lib/src/compiler/tests/testdata/errors/23.in +0 -0
- {yara_x-0.11.1 → yara_x-0.12.0}/lib/src/compiler/tests/testdata/errors/23.out +0 -0
- {yara_x-0.11.1 → yara_x-0.12.0}/lib/src/compiler/tests/testdata/errors/24.in +0 -0
- {yara_x-0.11.1 → yara_x-0.12.0}/lib/src/compiler/tests/testdata/errors/24.out +0 -0
- {yara_x-0.11.1 → yara_x-0.12.0}/lib/src/compiler/tests/testdata/errors/25.in +0 -0
- {yara_x-0.11.1 → yara_x-0.12.0}/lib/src/compiler/tests/testdata/errors/25.out +0 -0
- {yara_x-0.11.1 → yara_x-0.12.0}/lib/src/compiler/tests/testdata/errors/26.in +0 -0
- {yara_x-0.11.1 → yara_x-0.12.0}/lib/src/compiler/tests/testdata/errors/26.out +0 -0
- {yara_x-0.11.1 → yara_x-0.12.0}/lib/src/compiler/tests/testdata/errors/28.in +0 -0
- {yara_x-0.11.1 → yara_x-0.12.0}/lib/src/compiler/tests/testdata/errors/28.out +0 -0
- {yara_x-0.11.1 → yara_x-0.12.0}/lib/src/compiler/tests/testdata/errors/29.in +0 -0
- {yara_x-0.11.1 → yara_x-0.12.0}/lib/src/compiler/tests/testdata/errors/29.out +0 -0
- {yara_x-0.11.1 → yara_x-0.12.0}/lib/src/compiler/tests/testdata/errors/3.in +0 -0
- {yara_x-0.11.1 → yara_x-0.12.0}/lib/src/compiler/tests/testdata/errors/3.out +0 -0
- {yara_x-0.11.1 → yara_x-0.12.0}/lib/src/compiler/tests/testdata/errors/30.in +0 -0
- {yara_x-0.11.1 → yara_x-0.12.0}/lib/src/compiler/tests/testdata/errors/30.out +0 -0
- {yara_x-0.11.1 → yara_x-0.12.0}/lib/src/compiler/tests/testdata/errors/31.in +0 -0
- {yara_x-0.11.1 → yara_x-0.12.0}/lib/src/compiler/tests/testdata/errors/32.in +0 -0
- {yara_x-0.11.1 → yara_x-0.12.0}/lib/src/compiler/tests/testdata/errors/33.in +0 -0
- {yara_x-0.11.1 → yara_x-0.12.0}/lib/src/compiler/tests/testdata/errors/34.in +0 -0
- {yara_x-0.11.1 → yara_x-0.12.0}/lib/src/compiler/tests/testdata/errors/35.in +0 -0
- {yara_x-0.11.1 → yara_x-0.12.0}/lib/src/compiler/tests/testdata/errors/35.out +0 -0
- {yara_x-0.11.1 → yara_x-0.12.0}/lib/src/compiler/tests/testdata/errors/37.in +0 -0
- {yara_x-0.11.1 → yara_x-0.12.0}/lib/src/compiler/tests/testdata/errors/37.out +0 -0
- {yara_x-0.11.1 → yara_x-0.12.0}/lib/src/compiler/tests/testdata/errors/38.in +0 -0
- {yara_x-0.11.1 → yara_x-0.12.0}/lib/src/compiler/tests/testdata/errors/38.out +0 -0
- {yara_x-0.11.1 → yara_x-0.12.0}/lib/src/compiler/tests/testdata/errors/39.in +0 -0
- {yara_x-0.11.1 → yara_x-0.12.0}/lib/src/compiler/tests/testdata/errors/39.out +0 -0
- {yara_x-0.11.1 → yara_x-0.12.0}/lib/src/compiler/tests/testdata/errors/4.in +0 -0
- {yara_x-0.11.1 → yara_x-0.12.0}/lib/src/compiler/tests/testdata/errors/4.out +0 -0
- {yara_x-0.11.1 → yara_x-0.12.0}/lib/src/compiler/tests/testdata/errors/40.in +0 -0
- {yara_x-0.11.1 → yara_x-0.12.0}/lib/src/compiler/tests/testdata/errors/40.out +0 -0
- {yara_x-0.11.1 → yara_x-0.12.0}/lib/src/compiler/tests/testdata/errors/41.in +0 -0
- {yara_x-0.11.1 → yara_x-0.12.0}/lib/src/compiler/tests/testdata/errors/41.out +0 -0
- {yara_x-0.11.1 → yara_x-0.12.0}/lib/src/compiler/tests/testdata/errors/42.in +0 -0
- {yara_x-0.11.1 → yara_x-0.12.0}/lib/src/compiler/tests/testdata/errors/43.in +0 -0
- {yara_x-0.11.1 → yara_x-0.12.0}/lib/src/compiler/tests/testdata/errors/43.out +0 -0
- {yara_x-0.11.1 → yara_x-0.12.0}/lib/src/compiler/tests/testdata/errors/44.in +0 -0
- {yara_x-0.11.1 → yara_x-0.12.0}/lib/src/compiler/tests/testdata/errors/44.out +0 -0
- {yara_x-0.11.1 → yara_x-0.12.0}/lib/src/compiler/tests/testdata/errors/45.in +0 -0
- {yara_x-0.11.1 → yara_x-0.12.0}/lib/src/compiler/tests/testdata/errors/45.out +0 -0
- {yara_x-0.11.1 → yara_x-0.12.0}/lib/src/compiler/tests/testdata/errors/46.in +0 -0
- {yara_x-0.11.1 → yara_x-0.12.0}/lib/src/compiler/tests/testdata/errors/47.in +0 -0
- {yara_x-0.11.1 → yara_x-0.12.0}/lib/src/compiler/tests/testdata/errors/48.in +0 -0
- {yara_x-0.11.1 → yara_x-0.12.0}/lib/src/compiler/tests/testdata/errors/49.in +0 -0
- {yara_x-0.11.1 → yara_x-0.12.0}/lib/src/compiler/tests/testdata/errors/49.out +0 -0
- {yara_x-0.11.1 → yara_x-0.12.0}/lib/src/compiler/tests/testdata/errors/5.in +0 -0
- {yara_x-0.11.1 → yara_x-0.12.0}/lib/src/compiler/tests/testdata/errors/5.out +0 -0
- {yara_x-0.11.1 → yara_x-0.12.0}/lib/src/compiler/tests/testdata/errors/50.in +0 -0
- {yara_x-0.11.1 → yara_x-0.12.0}/lib/src/compiler/tests/testdata/errors/51.in +0 -0
- {yara_x-0.11.1 → yara_x-0.12.0}/lib/src/compiler/tests/testdata/errors/52.in +0 -0
- {yara_x-0.11.1 → yara_x-0.12.0}/lib/src/compiler/tests/testdata/errors/53.in +0 -0
- {yara_x-0.11.1 → yara_x-0.12.0}/lib/src/compiler/tests/testdata/errors/53.out +0 -0
- {yara_x-0.11.1 → yara_x-0.12.0}/lib/src/compiler/tests/testdata/errors/54.in +0 -0
- {yara_x-0.11.1 → yara_x-0.12.0}/lib/src/compiler/tests/testdata/errors/54.out +0 -0
- {yara_x-0.11.1 → yara_x-0.12.0}/lib/src/compiler/tests/testdata/errors/55.in +0 -0
- {yara_x-0.11.1 → yara_x-0.12.0}/lib/src/compiler/tests/testdata/errors/55.out +0 -0
- {yara_x-0.11.1 → yara_x-0.12.0}/lib/src/compiler/tests/testdata/errors/56.in +0 -0
- {yara_x-0.11.1 → yara_x-0.12.0}/lib/src/compiler/tests/testdata/errors/56.out +0 -0
- {yara_x-0.11.1 → yara_x-0.12.0}/lib/src/compiler/tests/testdata/errors/57.in +0 -0
- {yara_x-0.11.1 → yara_x-0.12.0}/lib/src/compiler/tests/testdata/errors/57.out +0 -0
- {yara_x-0.11.1 → yara_x-0.12.0}/lib/src/compiler/tests/testdata/errors/58.in +0 -0
- {yara_x-0.11.1 → yara_x-0.12.0}/lib/src/compiler/tests/testdata/errors/58.out +0 -0
- {yara_x-0.11.1 → yara_x-0.12.0}/lib/src/compiler/tests/testdata/errors/59.in +0 -0
- {yara_x-0.11.1 → yara_x-0.12.0}/lib/src/compiler/tests/testdata/errors/59.out +0 -0
- {yara_x-0.11.1 → yara_x-0.12.0}/lib/src/compiler/tests/testdata/errors/6.in +0 -0
- {yara_x-0.11.1 → yara_x-0.12.0}/lib/src/compiler/tests/testdata/errors/6.out +0 -0
- {yara_x-0.11.1 → yara_x-0.12.0}/lib/src/compiler/tests/testdata/errors/60.in +0 -0
- {yara_x-0.11.1 → yara_x-0.12.0}/lib/src/compiler/tests/testdata/errors/60.out +0 -0
- {yara_x-0.11.1 → yara_x-0.12.0}/lib/src/compiler/tests/testdata/errors/61.in +0 -0
- {yara_x-0.11.1 → yara_x-0.12.0}/lib/src/compiler/tests/testdata/errors/61.out +0 -0
- {yara_x-0.11.1 → yara_x-0.12.0}/lib/src/compiler/tests/testdata/errors/62.in +0 -0
- {yara_x-0.11.1 → yara_x-0.12.0}/lib/src/compiler/tests/testdata/errors/62.out +0 -0
- {yara_x-0.11.1 → yara_x-0.12.0}/lib/src/compiler/tests/testdata/errors/63.in +0 -0
- {yara_x-0.11.1 → yara_x-0.12.0}/lib/src/compiler/tests/testdata/errors/63.out +0 -0
- {yara_x-0.11.1 → yara_x-0.12.0}/lib/src/compiler/tests/testdata/errors/64.in +0 -0
- {yara_x-0.11.1 → yara_x-0.12.0}/lib/src/compiler/tests/testdata/errors/64.out +0 -0
- {yara_x-0.11.1 → yara_x-0.12.0}/lib/src/compiler/tests/testdata/errors/65.in +0 -0
- {yara_x-0.11.1 → yara_x-0.12.0}/lib/src/compiler/tests/testdata/errors/65.out +0 -0
- {yara_x-0.11.1 → yara_x-0.12.0}/lib/src/compiler/tests/testdata/errors/66.in +0 -0
- {yara_x-0.11.1 → yara_x-0.12.0}/lib/src/compiler/tests/testdata/errors/66.out +0 -0
- {yara_x-0.11.1 → yara_x-0.12.0}/lib/src/compiler/tests/testdata/errors/67.in +0 -0
- {yara_x-0.11.1 → yara_x-0.12.0}/lib/src/compiler/tests/testdata/errors/67.out +0 -0
- {yara_x-0.11.1 → yara_x-0.12.0}/lib/src/compiler/tests/testdata/errors/68.in +0 -0
- {yara_x-0.11.1 → yara_x-0.12.0}/lib/src/compiler/tests/testdata/errors/68.out +0 -0
- {yara_x-0.11.1 → yara_x-0.12.0}/lib/src/compiler/tests/testdata/errors/69.in +0 -0
- {yara_x-0.11.1 → yara_x-0.12.0}/lib/src/compiler/tests/testdata/errors/69.out +0 -0
- {yara_x-0.11.1 → yara_x-0.12.0}/lib/src/compiler/tests/testdata/errors/7.in +0 -0
- {yara_x-0.11.1 → yara_x-0.12.0}/lib/src/compiler/tests/testdata/errors/7.out +0 -0
- {yara_x-0.11.1 → yara_x-0.12.0}/lib/src/compiler/tests/testdata/errors/70.in +0 -0
- {yara_x-0.11.1 → yara_x-0.12.0}/lib/src/compiler/tests/testdata/errors/70.out +0 -0
- {yara_x-0.11.1 → yara_x-0.12.0}/lib/src/compiler/tests/testdata/errors/71.in +0 -0
- {yara_x-0.11.1 → yara_x-0.12.0}/lib/src/compiler/tests/testdata/errors/71.out +0 -0
- {yara_x-0.11.1 → yara_x-0.12.0}/lib/src/compiler/tests/testdata/errors/72.in +0 -0
- {yara_x-0.11.1 → yara_x-0.12.0}/lib/src/compiler/tests/testdata/errors/72.out +0 -0
- {yara_x-0.11.1 → yara_x-0.12.0}/lib/src/compiler/tests/testdata/errors/73.in +0 -0
- {yara_x-0.11.1 → yara_x-0.12.0}/lib/src/compiler/tests/testdata/errors/73.out +0 -0
- {yara_x-0.11.1 → yara_x-0.12.0}/lib/src/compiler/tests/testdata/errors/74.in +0 -0
- {yara_x-0.11.1 → yara_x-0.12.0}/lib/src/compiler/tests/testdata/errors/74.out +0 -0
- {yara_x-0.11.1 → yara_x-0.12.0}/lib/src/compiler/tests/testdata/errors/75.in +0 -0
- {yara_x-0.11.1 → yara_x-0.12.0}/lib/src/compiler/tests/testdata/errors/75.out +0 -0
- {yara_x-0.11.1 → yara_x-0.12.0}/lib/src/compiler/tests/testdata/errors/76.in +0 -0
- {yara_x-0.11.1 → yara_x-0.12.0}/lib/src/compiler/tests/testdata/errors/76.out +0 -0
- {yara_x-0.11.1 → yara_x-0.12.0}/lib/src/compiler/tests/testdata/errors/77.in +0 -0
- {yara_x-0.11.1 → yara_x-0.12.0}/lib/src/compiler/tests/testdata/errors/77.out +0 -0
- {yara_x-0.11.1 → yara_x-0.12.0}/lib/src/compiler/tests/testdata/errors/78.in +0 -0
- {yara_x-0.11.1 → yara_x-0.12.0}/lib/src/compiler/tests/testdata/errors/78.out +0 -0
- {yara_x-0.11.1 → yara_x-0.12.0}/lib/src/compiler/tests/testdata/errors/79.in +0 -0
- {yara_x-0.11.1 → yara_x-0.12.0}/lib/src/compiler/tests/testdata/errors/79.out +0 -0
- {yara_x-0.11.1 → yara_x-0.12.0}/lib/src/compiler/tests/testdata/errors/8.in +0 -0
- {yara_x-0.11.1 → yara_x-0.12.0}/lib/src/compiler/tests/testdata/errors/8.out +0 -0
- {yara_x-0.11.1 → yara_x-0.12.0}/lib/src/compiler/tests/testdata/errors/80.in +0 -0
- {yara_x-0.11.1 → yara_x-0.12.0}/lib/src/compiler/tests/testdata/errors/80.out +0 -0
- {yara_x-0.11.1 → yara_x-0.12.0}/lib/src/compiler/tests/testdata/errors/81.in +0 -0
- {yara_x-0.11.1 → yara_x-0.12.0}/lib/src/compiler/tests/testdata/errors/81.out +0 -0
- {yara_x-0.11.1 → yara_x-0.12.0}/lib/src/compiler/tests/testdata/errors/82.in +0 -0
- {yara_x-0.11.1 → yara_x-0.12.0}/lib/src/compiler/tests/testdata/errors/82.out +0 -0
- {yara_x-0.11.1 → yara_x-0.12.0}/lib/src/compiler/tests/testdata/errors/83.in +0 -0
- {yara_x-0.11.1 → yara_x-0.12.0}/lib/src/compiler/tests/testdata/errors/83.out +0 -0
- {yara_x-0.11.1 → yara_x-0.12.0}/lib/src/compiler/tests/testdata/errors/84.in +0 -0
- {yara_x-0.11.1 → yara_x-0.12.0}/lib/src/compiler/tests/testdata/errors/84.out +0 -0
- {yara_x-0.11.1 → yara_x-0.12.0}/lib/src/compiler/tests/testdata/errors/85.in +0 -0
- {yara_x-0.11.1 → yara_x-0.12.0}/lib/src/compiler/tests/testdata/errors/85.out +0 -0
- {yara_x-0.11.1 → yara_x-0.12.0}/lib/src/compiler/tests/testdata/errors/86.in +0 -0
- {yara_x-0.11.1 → yara_x-0.12.0}/lib/src/compiler/tests/testdata/errors/86.out +0 -0
- {yara_x-0.11.1 → yara_x-0.12.0}/lib/src/compiler/tests/testdata/errors/87.in +0 -0
- {yara_x-0.11.1 → yara_x-0.12.0}/lib/src/compiler/tests/testdata/errors/87.out +0 -0
- {yara_x-0.11.1 → yara_x-0.12.0}/lib/src/compiler/tests/testdata/errors/88.in +0 -0
- {yara_x-0.11.1 → yara_x-0.12.0}/lib/src/compiler/tests/testdata/errors/88.out +0 -0
- {yara_x-0.11.1 → yara_x-0.12.0}/lib/src/compiler/tests/testdata/errors/89.in +0 -0
- {yara_x-0.11.1 → yara_x-0.12.0}/lib/src/compiler/tests/testdata/errors/89.out +0 -0
- {yara_x-0.11.1 → yara_x-0.12.0}/lib/src/compiler/tests/testdata/errors/9.in +0 -0
- {yara_x-0.11.1 → yara_x-0.12.0}/lib/src/compiler/tests/testdata/errors/9.out +0 -0
- {yara_x-0.11.1 → yara_x-0.12.0}/lib/src/compiler/tests/testdata/errors/90.in +0 -0
- {yara_x-0.11.1 → yara_x-0.12.0}/lib/src/compiler/tests/testdata/errors/90.out +0 -0
- {yara_x-0.11.1 → yara_x-0.12.0}/lib/src/compiler/tests/testdata/errors/91.in +0 -0
- {yara_x-0.11.1 → yara_x-0.12.0}/lib/src/compiler/tests/testdata/errors/91.out +0 -0
- {yara_x-0.11.1 → yara_x-0.12.0}/lib/src/compiler/tests/testdata/errors/92.in +0 -0
- {yara_x-0.11.1 → yara_x-0.12.0}/lib/src/compiler/tests/testdata/errors/92.out +0 -0
- {yara_x-0.11.1 → yara_x-0.12.0}/lib/src/compiler/tests/testdata/errors/93.in +0 -0
- {yara_x-0.11.1 → yara_x-0.12.0}/lib/src/compiler/tests/testdata/errors/93.out +0 -0
- {yara_x-0.11.1 → yara_x-0.12.0}/lib/src/compiler/tests/testdata/errors/94.in +0 -0
- {yara_x-0.11.1 → yara_x-0.12.0}/lib/src/compiler/tests/testdata/errors/94.out +0 -0
- {yara_x-0.11.1 → yara_x-0.12.0}/lib/src/compiler/tests/testdata/errors/95.in +0 -0
- {yara_x-0.11.1 → yara_x-0.12.0}/lib/src/compiler/tests/testdata/errors/95.out +0 -0
- {yara_x-0.11.1 → yara_x-0.12.0}/lib/src/compiler/tests/testdata/errors/96.in +0 -0
- {yara_x-0.11.1 → yara_x-0.12.0}/lib/src/compiler/tests/testdata/errors/96.out +0 -0
- {yara_x-0.11.1 → yara_x-0.12.0}/lib/src/compiler/tests/testdata/errors/97.in +0 -0
- {yara_x-0.11.1 → yara_x-0.12.0}/lib/src/compiler/tests/testdata/errors/97.out +0 -0
- {yara_x-0.11.1 → yara_x-0.12.0}/lib/src/compiler/tests/testdata/errors/98.in +0 -0
- {yara_x-0.11.1 → yara_x-0.12.0}/lib/src/compiler/tests/testdata/errors/98.out +0 -0
- {yara_x-0.11.1 → yara_x-0.12.0}/lib/src/compiler/tests/testdata/errors/99.in +0 -0
- {yara_x-0.11.1 → yara_x-0.12.0}/lib/src/compiler/tests/testdata/errors/99.out +0 -0
- {yara_x-0.11.1 → yara_x-0.12.0}/lib/src/compiler/tests/testdata/warnings/1.in +0 -0
- {yara_x-0.11.1 → yara_x-0.12.0}/lib/src/compiler/tests/testdata/warnings/1.out +0 -0
- {yara_x-0.11.1 → yara_x-0.12.0}/lib/src/compiler/tests/testdata/warnings/10.in +0 -0
- {yara_x-0.11.1 → yara_x-0.12.0}/lib/src/compiler/tests/testdata/warnings/10.out +0 -0
- {yara_x-0.11.1 → yara_x-0.12.0}/lib/src/compiler/tests/testdata/warnings/11.in +0 -0
- {yara_x-0.11.1 → yara_x-0.12.0}/lib/src/compiler/tests/testdata/warnings/12.in +0 -0
- {yara_x-0.11.1 → yara_x-0.12.0}/lib/src/compiler/tests/testdata/warnings/12.out +0 -0
- {yara_x-0.11.1 → yara_x-0.12.0}/lib/src/compiler/tests/testdata/warnings/13.in +0 -0
- {yara_x-0.11.1 → yara_x-0.12.0}/lib/src/compiler/tests/testdata/warnings/14.in +0 -0
- {yara_x-0.11.1 → yara_x-0.12.0}/lib/src/compiler/tests/testdata/warnings/14.out +0 -0
- {yara_x-0.11.1 → yara_x-0.12.0}/lib/src/compiler/tests/testdata/warnings/15.in +0 -0
- {yara_x-0.11.1 → yara_x-0.12.0}/lib/src/compiler/tests/testdata/warnings/15.out +0 -0
- {yara_x-0.11.1 → yara_x-0.12.0}/lib/src/compiler/tests/testdata/warnings/16.in +0 -0
- {yara_x-0.11.1 → yara_x-0.12.0}/lib/src/compiler/tests/testdata/warnings/16.out +0 -0
- {yara_x-0.11.1 → yara_x-0.12.0}/lib/src/compiler/tests/testdata/warnings/17.in +0 -0
- {yara_x-0.11.1 → yara_x-0.12.0}/lib/src/compiler/tests/testdata/warnings/17.out +0 -0
- {yara_x-0.11.1 → yara_x-0.12.0}/lib/src/compiler/tests/testdata/warnings/18.in +0 -0
- {yara_x-0.11.1 → yara_x-0.12.0}/lib/src/compiler/tests/testdata/warnings/18.out +0 -0
- {yara_x-0.11.1 → yara_x-0.12.0}/lib/src/compiler/tests/testdata/warnings/19.in +0 -0
- {yara_x-0.11.1 → yara_x-0.12.0}/lib/src/compiler/tests/testdata/warnings/19.out +0 -0
- {yara_x-0.11.1 → yara_x-0.12.0}/lib/src/compiler/tests/testdata/warnings/2.in +0 -0
- {yara_x-0.11.1 → yara_x-0.12.0}/lib/src/compiler/tests/testdata/warnings/2.out +0 -0
- {yara_x-0.11.1 → yara_x-0.12.0}/lib/src/compiler/tests/testdata/warnings/20.in +0 -0
- {yara_x-0.11.1 → yara_x-0.12.0}/lib/src/compiler/tests/testdata/warnings/20.out +0 -0
- {yara_x-0.11.1 → yara_x-0.12.0}/lib/src/compiler/tests/testdata/warnings/21.in +0 -0
- {yara_x-0.11.1 → yara_x-0.12.0}/lib/src/compiler/tests/testdata/warnings/21.out +0 -0
- {yara_x-0.11.1 → yara_x-0.12.0}/lib/src/compiler/tests/testdata/warnings/22.in +0 -0
- {yara_x-0.11.1 → yara_x-0.12.0}/lib/src/compiler/tests/testdata/warnings/22.out +0 -0
- {yara_x-0.11.1 → yara_x-0.12.0}/lib/src/compiler/tests/testdata/warnings/24.in +0 -0
- {yara_x-0.11.1 → yara_x-0.12.0}/lib/src/compiler/tests/testdata/warnings/24.out +0 -0
- {yara_x-0.11.1 → yara_x-0.12.0}/lib/src/compiler/tests/testdata/warnings/25.in +0 -0
- {yara_x-0.11.1 → yara_x-0.12.0}/lib/src/compiler/tests/testdata/warnings/25.out +0 -0
- {yara_x-0.11.1 → yara_x-0.12.0}/lib/src/compiler/tests/testdata/warnings/26.in +0 -0
- {yara_x-0.11.1 → yara_x-0.12.0}/lib/src/compiler/tests/testdata/warnings/26.out +0 -0
- {yara_x-0.11.1 → yara_x-0.12.0}/lib/src/compiler/tests/testdata/warnings/27.in +0 -0
- {yara_x-0.11.1 → yara_x-0.12.0}/lib/src/compiler/tests/testdata/warnings/27.out +0 -0
- {yara_x-0.11.1 → yara_x-0.12.0}/lib/src/compiler/tests/testdata/warnings/28.in +0 -0
- {yara_x-0.11.1 → yara_x-0.12.0}/lib/src/compiler/tests/testdata/warnings/28.out +0 -0
- {yara_x-0.11.1 → yara_x-0.12.0}/lib/src/compiler/tests/testdata/warnings/29.in +0 -0
- {yara_x-0.11.1 → yara_x-0.12.0}/lib/src/compiler/tests/testdata/warnings/29.out +0 -0
- {yara_x-0.11.1 → yara_x-0.12.0}/lib/src/compiler/tests/testdata/warnings/3.in +0 -0
- {yara_x-0.11.1 → yara_x-0.12.0}/lib/src/compiler/tests/testdata/warnings/30.in +0 -0
- {yara_x-0.11.1 → yara_x-0.12.0}/lib/src/compiler/tests/testdata/warnings/30.out +0 -0
- {yara_x-0.11.1 → yara_x-0.12.0}/lib/src/compiler/tests/testdata/warnings/31.in +0 -0
- {yara_x-0.11.1 → yara_x-0.12.0}/lib/src/compiler/tests/testdata/warnings/31.out +0 -0
- {yara_x-0.11.1 → yara_x-0.12.0}/lib/src/compiler/tests/testdata/warnings/32.in +0 -0
- {yara_x-0.11.1 → yara_x-0.12.0}/lib/src/compiler/tests/testdata/warnings/32.out +0 -0
- {yara_x-0.11.1 → yara_x-0.12.0}/lib/src/compiler/tests/testdata/warnings/33.in +0 -0
- {yara_x-0.11.1 → yara_x-0.12.0}/lib/src/compiler/tests/testdata/warnings/33.out +0 -0
- {yara_x-0.11.1 → yara_x-0.12.0}/lib/src/compiler/tests/testdata/warnings/34.in +0 -0
- {yara_x-0.11.1 → yara_x-0.12.0}/lib/src/compiler/tests/testdata/warnings/4.in +0 -0
- {yara_x-0.11.1 → yara_x-0.12.0}/lib/src/compiler/tests/testdata/warnings/5.in +0 -0
- {yara_x-0.11.1 → yara_x-0.12.0}/lib/src/compiler/tests/testdata/warnings/6.in +0 -0
- {yara_x-0.11.1 → yara_x-0.12.0}/lib/src/compiler/tests/testdata/warnings/6.out +0 -0
- {yara_x-0.11.1 → yara_x-0.12.0}/lib/src/compiler/tests/testdata/warnings/7.in +0 -0
- {yara_x-0.11.1 → yara_x-0.12.0}/lib/src/compiler/tests/testdata/warnings/8.in +0 -0
- {yara_x-0.11.1 → yara_x-0.12.0}/lib/src/compiler/tests/testdata/warnings/9.in +0 -0
- {yara_x-0.11.1 → yara_x-0.12.0}/lib/src/compiler/tests/testdata/warnings/no_warnings.out +0 -0
- {yara_x-0.11.1 → yara_x-0.12.0}/lib/src/compiler/warnings.rs +0 -0
- {yara_x-0.11.1 → yara_x-0.12.0}/lib/src/models.rs +0 -0
- {yara_x-0.11.1 → yara_x-0.12.0}/lib/src/modules/add_modules.rs +0 -0
- {yara_x-0.11.1 → yara_x-0.12.0}/lib/src/modules/console.rs +0 -0
- {yara_x-0.11.1 → yara_x-0.12.0}/lib/src/modules/cuckoo/mod.rs +0 -0
- {yara_x-0.11.1 → yara_x-0.12.0}/lib/src/modules/cuckoo/schema.rs +0 -0
- {yara_x-0.11.1 → yara_x-0.12.0}/lib/src/modules/cuckoo/tests/mod.rs +0 -0
- {yara_x-0.11.1 → yara_x-0.12.0}/lib/src/modules/cuckoo/tests/testdata/1.json +0 -0
- {yara_x-0.11.1 → yara_x-0.12.0}/lib/src/modules/cuckoo/tests/testdata/1.yar +0 -0
- {yara_x-0.11.1 → yara_x-0.12.0}/lib/src/modules/cuckoo/tests/testdata/2.json +0 -0
- {yara_x-0.11.1 → yara_x-0.12.0}/lib/src/modules/cuckoo/tests/testdata/2.yar +0 -0
- {yara_x-0.11.1 → yara_x-0.12.0}/lib/src/modules/dotnet/mod.rs +0 -0
- {yara_x-0.11.1 → yara_x-0.12.0}/lib/src/modules/dotnet/parser.rs +0 -0
- {yara_x-0.11.1 → yara_x-0.12.0}/lib/src/modules/dotnet/tests/testdata/605ebe5b5f4b94e1a73e0ad1162bd542e5cb948d1a4ea5a575a14d6b9d6ee849.in +0 -0
- {yara_x-0.11.1 → yara_x-0.12.0}/lib/src/modules/dotnet/tests/testdata/86a1e48cfc843eabfe1b468ef9358c1068950f849c612ab808225b359db0bb8c.in +0 -0
- {yara_x-0.11.1 → yara_x-0.12.0}/lib/src/modules/elf/mod.rs +0 -0
- {yara_x-0.11.1 → yara_x-0.12.0}/lib/src/modules/elf/parser.rs +0 -0
- {yara_x-0.11.1 → yara_x-0.12.0}/lib/src/modules/elf/tests/mod.rs +0 -0
- {yara_x-0.11.1 → yara_x-0.12.0}/lib/src/modules/hash/mod.rs +0 -0
- {yara_x-0.11.1 → yara_x-0.12.0}/lib/src/modules/hash/tests/mod.rs +0 -0
- {yara_x-0.11.1 → yara_x-0.12.0}/lib/src/modules/lnk/mod.rs +0 -0
- {yara_x-0.11.1 → yara_x-0.12.0}/lib/src/modules/lnk/parser.rs +0 -0
- {yara_x-0.11.1 → yara_x-0.12.0}/lib/src/modules/magic/mod.rs +0 -0
- {yara_x-0.11.1 → yara_x-0.12.0}/lib/src/modules/magic/tests/mod.rs +0 -0
- {yara_x-0.11.1 → yara_x-0.12.0}/lib/src/modules/mod.rs +0 -0
- {yara_x-0.11.1 → yara_x-0.12.0}/lib/src/modules/modules.rs +0 -0
- {yara_x-0.11.1 → yara_x-0.12.0}/lib/src/modules/pe/mod.rs +0 -0
- {yara_x-0.11.1 → yara_x-0.12.0}/lib/src/modules/pe/parser.rs +0 -0
- {yara_x-0.11.1 → yara_x-0.12.0}/lib/src/modules/pe/rva2off.rs +0 -0
- {yara_x-0.11.1 → yara_x-0.12.0}/lib/src/modules/pe/tests/mod.rs +0 -0
- {yara_x-0.11.1 → yara_x-0.12.0}/lib/src/modules/protos/console.proto +0 -0
- {yara_x-0.11.1 → yara_x-0.12.0}/lib/src/modules/protos/cuckoo.proto +0 -0
- {yara_x-0.11.1 → yara_x-0.12.0}/lib/src/modules/protos/dotnet.proto +0 -0
- {yara_x-0.11.1 → yara_x-0.12.0}/lib/src/modules/protos/elf.proto +0 -0
- {yara_x-0.11.1 → yara_x-0.12.0}/lib/src/modules/protos/hash.proto +0 -0
- {yara_x-0.11.1 → yara_x-0.12.0}/lib/src/modules/protos/lnk.proto +0 -0
- {yara_x-0.11.1 → yara_x-0.12.0}/lib/src/modules/protos/magic.proto +0 -0
- {yara_x-0.11.1 → yara_x-0.12.0}/lib/src/modules/protos/mods.proto +0 -0
- {yara_x-0.11.1 → yara_x-0.12.0}/lib/src/modules/protos/string.proto +0 -0
- {yara_x-0.11.1 → yara_x-0.12.0}/lib/src/modules/protos/test_proto2.proto +0 -0
- {yara_x-0.11.1 → yara_x-0.12.0}/lib/src/modules/protos/test_proto3.proto +0 -0
- {yara_x-0.11.1 → yara_x-0.12.0}/lib/src/modules/protos/text.proto +0 -0
- {yara_x-0.11.1 → yara_x-0.12.0}/lib/src/modules/protos/time.proto +0 -0
- {yara_x-0.11.1 → yara_x-0.12.0}/lib/src/modules/protos/yaml.proto +0 -0
- {yara_x-0.11.1 → yara_x-0.12.0}/lib/src/modules/string.rs +0 -0
- {yara_x-0.11.1 → yara_x-0.12.0}/lib/src/modules/test_proto2/mod.rs +0 -0
- {yara_x-0.11.1 → yara_x-0.12.0}/lib/src/modules/test_proto2/tests/mod.rs +0 -0
- {yara_x-0.11.1 → yara_x-0.12.0}/lib/src/modules/test_proto3/mod.rs +0 -0
- {yara_x-0.11.1 → yara_x-0.12.0}/lib/src/modules/tests.rs +0 -0
- {yara_x-0.11.1 → yara_x-0.12.0}/lib/src/modules/text.rs +0 -0
- {yara_x-0.11.1 → yara_x-0.12.0}/lib/src/modules/time.rs +0 -0
- {yara_x-0.11.1 → yara_x-0.12.0}/lib/src/re/bitmapset.rs +0 -0
- {yara_x-0.11.1 → yara_x-0.12.0}/lib/src/re/fast/compiler.rs +0 -0
- {yara_x-0.11.1 → yara_x-0.12.0}/lib/src/re/fast/fastvm.rs +0 -0
- {yara_x-0.11.1 → yara_x-0.12.0}/lib/src/re/fast/instr.rs +0 -0
- {yara_x-0.11.1 → yara_x-0.12.0}/lib/src/re/fast/mod.rs +0 -0
- {yara_x-0.11.1 → yara_x-0.12.0}/lib/src/re/hir.rs +0 -0
- {yara_x-0.11.1 → yara_x-0.12.0}/lib/src/re/mod.rs +0 -0
- {yara_x-0.11.1 → yara_x-0.12.0}/lib/src/re/parser.rs +0 -0
- {yara_x-0.11.1 → yara_x-0.12.0}/lib/src/re/thompson/compiler.rs +0 -0
- {yara_x-0.11.1 → yara_x-0.12.0}/lib/src/re/thompson/instr.rs +0 -0
- {yara_x-0.11.1 → yara_x-0.12.0}/lib/src/re/thompson/mod.rs +0 -0
- {yara_x-0.11.1 → yara_x-0.12.0}/lib/src/re/thompson/pikevm.rs +0 -0
- {yara_x-0.11.1 → yara_x-0.12.0}/lib/src/re/thompson/tests.rs +0 -0
- {yara_x-0.11.1 → yara_x-0.12.0}/lib/src/scanner/matches.rs +0 -0
- {yara_x-0.11.1 → yara_x-0.12.0}/lib/src/string_pool.rs +0 -0
- {yara_x-0.11.1 → yara_x-0.12.0}/lib/src/symbols/mod.rs +0 -0
- {yara_x-0.11.1 → yara_x-0.12.0}/lib/src/tests/mod.rs +0 -0
- {yara_x-0.11.1 → yara_x-0.12.0}/lib/src/tests/testdata/jumps.bin +0 -0
- {yara_x-0.11.1 → yara_x-0.12.0}/lib/src/types/array.rs +0 -0
- {yara_x-0.11.1 → yara_x-0.12.0}/lib/src/types/func.rs +0 -0
- {yara_x-0.11.1 → yara_x-0.12.0}/lib/src/types/map.rs +0 -0
- {yara_x-0.11.1 → yara_x-0.12.0}/lib/src/variables.rs +0 -0
- {yara_x-0.11.1 → yara_x-0.12.0}/lib/src/wasm/builder.rs +0 -0
- {yara_x-0.11.1 → yara_x-0.12.0}/lib/src/wasm/mod.rs +0 -0
- {yara_x-0.11.1 → yara_x-0.12.0}/lib/src/wasm/string.rs +0 -0
- {yara_x-0.11.1 → yara_x-0.12.0}/macros/Cargo.toml +0 -0
- {yara_x-0.11.1 → yara_x-0.12.0}/macros/src/error.rs +0 -0
- {yara_x-0.11.1 → yara_x-0.12.0}/macros/src/lib.rs +0 -0
- {yara_x-0.11.1 → yara_x-0.12.0}/macros/src/module_export.rs +0 -0
- {yara_x-0.11.1 → yara_x-0.12.0}/macros/src/module_main.rs +0 -0
- {yara_x-0.11.1 → yara_x-0.12.0}/macros/src/wasm_export.rs +0 -0
- {yara_x-0.11.1 → yara_x-0.12.0}/parser/README.md +0 -0
- {yara_x-0.11.1 → yara_x-0.12.0}/parser/src/ast/ascii_tree.rs +0 -0
- {yara_x-0.11.1 → yara_x-0.12.0}/parser/src/ast/cst2ast.rs +0 -0
- {yara_x-0.11.1 → yara_x-0.12.0}/parser/src/ast/errors.rs +0 -0
- {yara_x-0.11.1 → yara_x-0.12.0}/parser/src/ast/mod.rs +0 -0
- {yara_x-0.11.1 → yara_x-0.12.0}/parser/src/cst/mod.rs +0 -0
- {yara_x-0.11.1 → yara_x-0.12.0}/parser/src/cst/syntax_kind.rs +0 -0
- {yara_x-0.11.1 → yara_x-0.12.0}/parser/src/cst/syntax_stream.rs +0 -0
- {yara_x-0.11.1 → yara_x-0.12.0}/parser/src/cst/tests.rs +0 -0
- {yara_x-0.11.1 → yara_x-0.12.0}/parser/src/lib.rs +0 -0
- {yara_x-0.11.1 → yara_x-0.12.0}/parser/src/parser/mod.rs +0 -0
- {yara_x-0.11.1 → yara_x-0.12.0}/parser/src/parser/tests/mod.rs +0 -0
- {yara_x-0.11.1 → yara_x-0.12.0}/parser/src/parser/tests/testdata/arithmetic-ops.ast +0 -0
- {yara_x-0.11.1 → yara_x-0.12.0}/parser/src/parser/tests/testdata/arithmetic-ops.cst +0 -0
- {yara_x-0.11.1 → yara_x-0.12.0}/parser/src/parser/tests/testdata/arithmetic-ops.in +0 -0
- {yara_x-0.11.1 → yara_x-0.12.0}/parser/src/parser/tests/testdata/basic-1.ast +0 -0
- {yara_x-0.11.1 → yara_x-0.12.0}/parser/src/parser/tests/testdata/basic-1.cst +0 -0
- {yara_x-0.11.1 → yara_x-0.12.0}/parser/src/parser/tests/testdata/basic-1.in +0 -0
- {yara_x-0.11.1 → yara_x-0.12.0}/parser/src/parser/tests/testdata/basic-2.ast +0 -0
- {yara_x-0.11.1 → yara_x-0.12.0}/parser/src/parser/tests/testdata/basic-2.cst +0 -0
- {yara_x-0.11.1 → yara_x-0.12.0}/parser/src/parser/tests/testdata/basic-2.in +0 -0
- {yara_x-0.11.1 → yara_x-0.12.0}/parser/src/parser/tests/testdata/basic-3.ast +0 -0
- {yara_x-0.11.1 → yara_x-0.12.0}/parser/src/parser/tests/testdata/basic-3.cst +0 -0
- {yara_x-0.11.1 → yara_x-0.12.0}/parser/src/parser/tests/testdata/basic-3.in +0 -0
- {yara_x-0.11.1 → yara_x-0.12.0}/parser/src/parser/tests/testdata/basic-4.ast +0 -0
- {yara_x-0.11.1 → yara_x-0.12.0}/parser/src/parser/tests/testdata/basic-4.cst +0 -0
- {yara_x-0.11.1 → yara_x-0.12.0}/parser/src/parser/tests/testdata/basic-4.in +0 -0
- {yara_x-0.11.1 → yara_x-0.12.0}/parser/src/parser/tests/testdata/basic-error-1.ast +0 -0
- {yara_x-0.11.1 → yara_x-0.12.0}/parser/src/parser/tests/testdata/basic-error-1.cst +0 -0
- {yara_x-0.11.1 → yara_x-0.12.0}/parser/src/parser/tests/testdata/basic-error-1.in +0 -0
- {yara_x-0.11.1 → yara_x-0.12.0}/parser/src/parser/tests/testdata/basic-error-2.ast +0 -0
- {yara_x-0.11.1 → yara_x-0.12.0}/parser/src/parser/tests/testdata/basic-error-2.cst +0 -0
- {yara_x-0.11.1 → yara_x-0.12.0}/parser/src/parser/tests/testdata/basic-error-2.in +0 -0
- {yara_x-0.11.1 → yara_x-0.12.0}/parser/src/parser/tests/testdata/basic-error-3.ast +0 -0
- {yara_x-0.11.1 → yara_x-0.12.0}/parser/src/parser/tests/testdata/basic-error-3.cst +0 -0
- {yara_x-0.11.1 → yara_x-0.12.0}/parser/src/parser/tests/testdata/basic-error-3.in +0 -0
- {yara_x-0.11.1 → yara_x-0.12.0}/parser/src/parser/tests/testdata/basic-error-4.ast +0 -0
- {yara_x-0.11.1 → yara_x-0.12.0}/parser/src/parser/tests/testdata/basic-error-4.cst +0 -0
- {yara_x-0.11.1 → yara_x-0.12.0}/parser/src/parser/tests/testdata/basic-error-4.in +0 -0
- {yara_x-0.11.1 → yara_x-0.12.0}/parser/src/parser/tests/testdata/basic-error-5.ast +0 -0
- {yara_x-0.11.1 → yara_x-0.12.0}/parser/src/parser/tests/testdata/basic-error-5.cst +0 -0
- {yara_x-0.11.1 → yara_x-0.12.0}/parser/src/parser/tests/testdata/basic-error-5.in +0 -0
- {yara_x-0.11.1 → yara_x-0.12.0}/parser/src/parser/tests/testdata/bitwise-ops-error-1.ast +0 -0
- {yara_x-0.11.1 → yara_x-0.12.0}/parser/src/parser/tests/testdata/bitwise-ops-error-1.cst +0 -0
- {yara_x-0.11.1 → yara_x-0.12.0}/parser/src/parser/tests/testdata/bitwise-ops-error-1.in +0 -0
- {yara_x-0.11.1 → yara_x-0.12.0}/parser/src/parser/tests/testdata/bitwise-ops.ast +0 -0
- {yara_x-0.11.1 → yara_x-0.12.0}/parser/src/parser/tests/testdata/bitwise-ops.cst +0 -0
- {yara_x-0.11.1 → yara_x-0.12.0}/parser/src/parser/tests/testdata/bitwise-ops.in +0 -0
- {yara_x-0.11.1 → yara_x-0.12.0}/parser/src/parser/tests/testdata/comments.ast +0 -0
- {yara_x-0.11.1 → yara_x-0.12.0}/parser/src/parser/tests/testdata/comments.cst +0 -0
- {yara_x-0.11.1 → yara_x-0.12.0}/parser/src/parser/tests/testdata/comments.in +0 -0
- {yara_x-0.11.1 → yara_x-0.12.0}/parser/src/parser/tests/testdata/expr-1.ast +0 -0
- {yara_x-0.11.1 → yara_x-0.12.0}/parser/src/parser/tests/testdata/expr-1.cst +0 -0
- {yara_x-0.11.1 → yara_x-0.12.0}/parser/src/parser/tests/testdata/expr-1.in +0 -0
- {yara_x-0.11.1 → yara_x-0.12.0}/parser/src/parser/tests/testdata/expr-2.ast +0 -0
- {yara_x-0.11.1 → yara_x-0.12.0}/parser/src/parser/tests/testdata/expr-2.cst +0 -0
- {yara_x-0.11.1 → yara_x-0.12.0}/parser/src/parser/tests/testdata/expr-2.in +0 -0
- {yara_x-0.11.1 → yara_x-0.12.0}/parser/src/parser/tests/testdata/expr-3.ast +0 -0
- {yara_x-0.11.1 → yara_x-0.12.0}/parser/src/parser/tests/testdata/expr-3.cst +0 -0
- {yara_x-0.11.1 → yara_x-0.12.0}/parser/src/parser/tests/testdata/expr-3.in +0 -0
- {yara_x-0.11.1 → yara_x-0.12.0}/parser/src/parser/tests/testdata/expr-4.ast +0 -0
- {yara_x-0.11.1 → yara_x-0.12.0}/parser/src/parser/tests/testdata/expr-4.cst +0 -0
- {yara_x-0.11.1 → yara_x-0.12.0}/parser/src/parser/tests/testdata/expr-4.in +0 -0
- {yara_x-0.11.1 → yara_x-0.12.0}/parser/src/parser/tests/testdata/expr-5.ast +0 -0
- {yara_x-0.11.1 → yara_x-0.12.0}/parser/src/parser/tests/testdata/expr-5.cst +0 -0
- {yara_x-0.11.1 → yara_x-0.12.0}/parser/src/parser/tests/testdata/expr-5.in +0 -0
- {yara_x-0.11.1 → yara_x-0.12.0}/parser/src/parser/tests/testdata/expr-6.ast +0 -0
- {yara_x-0.11.1 → yara_x-0.12.0}/parser/src/parser/tests/testdata/expr-6.cst +0 -0
- {yara_x-0.11.1 → yara_x-0.12.0}/parser/src/parser/tests/testdata/expr-6.in +0 -0
- {yara_x-0.11.1 → yara_x-0.12.0}/parser/src/parser/tests/testdata/expr-error-1.ast +0 -0
- {yara_x-0.11.1 → yara_x-0.12.0}/parser/src/parser/tests/testdata/expr-error-1.cst +0 -0
- {yara_x-0.11.1 → yara_x-0.12.0}/parser/src/parser/tests/testdata/expr-error-1.in +0 -0
- {yara_x-0.11.1 → yara_x-0.12.0}/parser/src/parser/tests/testdata/for-1.ast +0 -0
- {yara_x-0.11.1 → yara_x-0.12.0}/parser/src/parser/tests/testdata/for-1.cst +0 -0
- {yara_x-0.11.1 → yara_x-0.12.0}/parser/src/parser/tests/testdata/for-1.in +0 -0
- {yara_x-0.11.1 → yara_x-0.12.0}/parser/src/parser/tests/testdata/for-2.ast +0 -0
- {yara_x-0.11.1 → yara_x-0.12.0}/parser/src/parser/tests/testdata/for-2.cst +0 -0
- {yara_x-0.11.1 → yara_x-0.12.0}/parser/src/parser/tests/testdata/for-2.in +0 -0
- {yara_x-0.11.1 → yara_x-0.12.0}/parser/src/parser/tests/testdata/for-3.ast +0 -0
- {yara_x-0.11.1 → yara_x-0.12.0}/parser/src/parser/tests/testdata/for-3.cst +0 -0
- {yara_x-0.11.1 → yara_x-0.12.0}/parser/src/parser/tests/testdata/for-3.in +0 -0
- {yara_x-0.11.1 → yara_x-0.12.0}/parser/src/parser/tests/testdata/for-4.ast +0 -0
- {yara_x-0.11.1 → yara_x-0.12.0}/parser/src/parser/tests/testdata/for-4.cst +0 -0
- {yara_x-0.11.1 → yara_x-0.12.0}/parser/src/parser/tests/testdata/for-4.in +0 -0
- {yara_x-0.11.1 → yara_x-0.12.0}/parser/src/parser/tests/testdata/for-5.ast +0 -0
- {yara_x-0.11.1 → yara_x-0.12.0}/parser/src/parser/tests/testdata/for-5.cst +0 -0
- {yara_x-0.11.1 → yara_x-0.12.0}/parser/src/parser/tests/testdata/for-5.in +0 -0
- {yara_x-0.11.1 → yara_x-0.12.0}/parser/src/parser/tests/testdata/for-error-1.ast +0 -0
- {yara_x-0.11.1 → yara_x-0.12.0}/parser/src/parser/tests/testdata/for-error-1.cst +0 -0
- {yara_x-0.11.1 → yara_x-0.12.0}/parser/src/parser/tests/testdata/for-error-1.in +0 -0
- {yara_x-0.11.1 → yara_x-0.12.0}/parser/src/parser/tests/testdata/func-call.ast +0 -0
- {yara_x-0.11.1 → yara_x-0.12.0}/parser/src/parser/tests/testdata/func-call.cst +0 -0
- {yara_x-0.11.1 → yara_x-0.12.0}/parser/src/parser/tests/testdata/func-call.in +0 -0
- {yara_x-0.11.1 → yara_x-0.12.0}/parser/src/parser/tests/testdata/hex-patterns-1.ast +0 -0
- {yara_x-0.11.1 → yara_x-0.12.0}/parser/src/parser/tests/testdata/hex-patterns-1.cst +0 -0
- {yara_x-0.11.1 → yara_x-0.12.0}/parser/src/parser/tests/testdata/hex-patterns-1.in +0 -0
- {yara_x-0.11.1 → yara_x-0.12.0}/parser/src/parser/tests/testdata/hex-patterns-2.ast +0 -0
- {yara_x-0.11.1 → yara_x-0.12.0}/parser/src/parser/tests/testdata/hex-patterns-2.cst +0 -0
- {yara_x-0.11.1 → yara_x-0.12.0}/parser/src/parser/tests/testdata/hex-patterns-2.in +0 -0
- {yara_x-0.11.1 → yara_x-0.12.0}/parser/src/parser/tests/testdata/hex-patterns-3.ast +0 -0
- {yara_x-0.11.1 → yara_x-0.12.0}/parser/src/parser/tests/testdata/hex-patterns-3.cst +0 -0
- {yara_x-0.11.1 → yara_x-0.12.0}/parser/src/parser/tests/testdata/hex-patterns-3.in +0 -0
- {yara_x-0.11.1 → yara_x-0.12.0}/parser/src/parser/tests/testdata/hex-patterns-error-1.ast +0 -0
- {yara_x-0.11.1 → yara_x-0.12.0}/parser/src/parser/tests/testdata/hex-patterns-error-1.cst +0 -0
- {yara_x-0.11.1 → yara_x-0.12.0}/parser/src/parser/tests/testdata/hex-patterns-error-1.in +0 -0
- {yara_x-0.11.1 → yara_x-0.12.0}/parser/src/parser/tests/testdata/hex-patterns-error-2.ast +0 -0
- {yara_x-0.11.1 → yara_x-0.12.0}/parser/src/parser/tests/testdata/hex-patterns-error-2.cst +0 -0
- {yara_x-0.11.1 → yara_x-0.12.0}/parser/src/parser/tests/testdata/hex-patterns-error-2.in +0 -0
- {yara_x-0.11.1 → yara_x-0.12.0}/parser/src/parser/tests/testdata/meta-error-1.ast +0 -0
- {yara_x-0.11.1 → yara_x-0.12.0}/parser/src/parser/tests/testdata/meta-error-1.cst +0 -0
- {yara_x-0.11.1 → yara_x-0.12.0}/parser/src/parser/tests/testdata/meta-error-1.in +0 -0
- {yara_x-0.11.1 → yara_x-0.12.0}/parser/src/parser/tests/testdata/meta-error-2.ast +0 -0
- {yara_x-0.11.1 → yara_x-0.12.0}/parser/src/parser/tests/testdata/meta-error-2.cst +0 -0
- {yara_x-0.11.1 → yara_x-0.12.0}/parser/src/parser/tests/testdata/meta-error-2.in +0 -0
- {yara_x-0.11.1 → yara_x-0.12.0}/parser/src/parser/tests/testdata/meta-error-3.ast +0 -0
- {yara_x-0.11.1 → yara_x-0.12.0}/parser/src/parser/tests/testdata/meta-error-3.cst +0 -0
- {yara_x-0.11.1 → yara_x-0.12.0}/parser/src/parser/tests/testdata/meta-error-3.in +0 -0
- {yara_x-0.11.1 → yara_x-0.12.0}/parser/src/parser/tests/testdata/meta-error-4.ast +0 -0
- {yara_x-0.11.1 → yara_x-0.12.0}/parser/src/parser/tests/testdata/meta-error-4.cst +0 -0
- {yara_x-0.11.1 → yara_x-0.12.0}/parser/src/parser/tests/testdata/meta-error-4.in +0 -0
- {yara_x-0.11.1 → yara_x-0.12.0}/parser/src/parser/tests/testdata/meta-error-5.ast +0 -0
- {yara_x-0.11.1 → yara_x-0.12.0}/parser/src/parser/tests/testdata/meta-error-5.cst +0 -0
- {yara_x-0.11.1 → yara_x-0.12.0}/parser/src/parser/tests/testdata/meta-error-5.in +0 -0
- {yara_x-0.11.1 → yara_x-0.12.0}/parser/src/parser/tests/testdata/meta-error-6.ast +0 -0
- {yara_x-0.11.1 → yara_x-0.12.0}/parser/src/parser/tests/testdata/meta-error-6.cst +0 -0
- {yara_x-0.11.1 → yara_x-0.12.0}/parser/src/parser/tests/testdata/meta-error-6.in +0 -0
- {yara_x-0.11.1 → yara_x-0.12.0}/parser/src/parser/tests/testdata/meta.ast +0 -0
- {yara_x-0.11.1 → yara_x-0.12.0}/parser/src/parser/tests/testdata/meta.cst +0 -0
- {yara_x-0.11.1 → yara_x-0.12.0}/parser/src/parser/tests/testdata/meta.in +0 -0
- {yara_x-0.11.1 → yara_x-0.12.0}/parser/src/parser/tests/testdata/of-1.ast +0 -0
- {yara_x-0.11.1 → yara_x-0.12.0}/parser/src/parser/tests/testdata/of-1.cst +0 -0
- {yara_x-0.11.1 → yara_x-0.12.0}/parser/src/parser/tests/testdata/of-1.in +0 -0
- {yara_x-0.11.1 → yara_x-0.12.0}/parser/src/parser/tests/testdata/of-error-1.ast +0 -0
- {yara_x-0.11.1 → yara_x-0.12.0}/parser/src/parser/tests/testdata/of-error-1.cst +0 -0
- {yara_x-0.11.1 → yara_x-0.12.0}/parser/src/parser/tests/testdata/of-error-1.in +0 -0
- {yara_x-0.11.1 → yara_x-0.12.0}/parser/src/parser/tests/testdata/pattern-mods-1.ast +0 -0
- {yara_x-0.11.1 → yara_x-0.12.0}/parser/src/parser/tests/testdata/pattern-mods-1.cst +0 -0
- {yara_x-0.11.1 → yara_x-0.12.0}/parser/src/parser/tests/testdata/pattern-mods-1.in +0 -0
- {yara_x-0.11.1 → yara_x-0.12.0}/parser/src/parser/tests/testdata/pattern-mods-error-1.ast +0 -0
- {yara_x-0.11.1 → yara_x-0.12.0}/parser/src/parser/tests/testdata/pattern-mods-error-1.cst +0 -0
- {yara_x-0.11.1 → yara_x-0.12.0}/parser/src/parser/tests/testdata/pattern-mods-error-1.in +0 -0
- {yara_x-0.11.1 → yara_x-0.12.0}/parser/src/parser/tests/testdata/patterns-1.ast +0 -0
- {yara_x-0.11.1 → yara_x-0.12.0}/parser/src/parser/tests/testdata/patterns-1.cst +0 -0
- {yara_x-0.11.1 → yara_x-0.12.0}/parser/src/parser/tests/testdata/patterns-1.in +0 -0
- {yara_x-0.11.1 → yara_x-0.12.0}/parser/src/parser/tests/testdata/patterns-2.ast +0 -0
- {yara_x-0.11.1 → yara_x-0.12.0}/parser/src/parser/tests/testdata/patterns-2.cst +0 -0
- {yara_x-0.11.1 → yara_x-0.12.0}/parser/src/parser/tests/testdata/patterns-2.in +0 -0
- {yara_x-0.11.1 → yara_x-0.12.0}/parser/src/parser/tests/testdata/patterns-3.ast +0 -0
- {yara_x-0.11.1 → yara_x-0.12.0}/parser/src/parser/tests/testdata/patterns-3.cst +0 -0
- {yara_x-0.11.1 → yara_x-0.12.0}/parser/src/parser/tests/testdata/patterns-3.in +0 -0
- {yara_x-0.11.1 → yara_x-0.12.0}/parser/src/parser/tests/testdata/patterns-error-1.ast +0 -0
- {yara_x-0.11.1 → yara_x-0.12.0}/parser/src/parser/tests/testdata/patterns-error-1.cst +0 -0
- {yara_x-0.11.1 → yara_x-0.12.0}/parser/src/parser/tests/testdata/patterns-error-1.in +0 -0
- {yara_x-0.11.1 → yara_x-0.12.0}/parser/src/parser/tests/testdata/patterns-error-2.ast +0 -0
- {yara_x-0.11.1 → yara_x-0.12.0}/parser/src/parser/tests/testdata/patterns-error-2.cst +0 -0
- {yara_x-0.11.1 → yara_x-0.12.0}/parser/src/parser/tests/testdata/patterns-error-2.in +0 -0
- {yara_x-0.11.1 → yara_x-0.12.0}/parser/src/parser/tests/testdata/patterns-error-3.ast +0 -0
- {yara_x-0.11.1 → yara_x-0.12.0}/parser/src/parser/tests/testdata/patterns-error-3.cst +0 -0
- {yara_x-0.11.1 → yara_x-0.12.0}/parser/src/parser/tests/testdata/patterns-error-3.in +0 -0
- {yara_x-0.11.1 → yara_x-0.12.0}/parser/src/parser/tests/testdata/patterns-error-4.ast +0 -0
- {yara_x-0.11.1 → yara_x-0.12.0}/parser/src/parser/tests/testdata/patterns-error-4.cst +0 -0
- {yara_x-0.11.1 → yara_x-0.12.0}/parser/src/parser/tests/testdata/patterns-error-4.in +0 -0
- {yara_x-0.11.1 → yara_x-0.12.0}/parser/src/parser/tests/testdata/patterns-error-5.ast +0 -0
- {yara_x-0.11.1 → yara_x-0.12.0}/parser/src/parser/tests/testdata/patterns-error-5.cst +0 -0
- {yara_x-0.11.1 → yara_x-0.12.0}/parser/src/parser/tests/testdata/patterns-error-5.in +0 -0
- {yara_x-0.11.1 → yara_x-0.12.0}/parser/src/parser/tests/testdata/patterns-error-6.ast +0 -0
- {yara_x-0.11.1 → yara_x-0.12.0}/parser/src/parser/tests/testdata/patterns-error-6.cst +0 -0
- {yara_x-0.11.1 → yara_x-0.12.0}/parser/src/parser/tests/testdata/patterns-error-6.in +0 -0
- {yara_x-0.11.1 → yara_x-0.12.0}/parser/src/parser/tests/testdata/patterns-error-7.ast +0 -0
- {yara_x-0.11.1 → yara_x-0.12.0}/parser/src/parser/tests/testdata/patterns-error-7.cst +0 -0
- {yara_x-0.11.1 → yara_x-0.12.0}/parser/src/parser/tests/testdata/patterns-error-7.in +0 -0
- {yara_x-0.11.1 → yara_x-0.12.0}/parser/src/parser/tests/testdata/rule-mods-1.ast +0 -0
- {yara_x-0.11.1 → yara_x-0.12.0}/parser/src/parser/tests/testdata/rule-mods-1.cst +0 -0
- {yara_x-0.11.1 → yara_x-0.12.0}/parser/src/parser/tests/testdata/rule-mods-1.in +0 -0
- {yara_x-0.11.1 → yara_x-0.12.0}/parser/src/parser/tests/testdata/rule-tags-error-1.ast +0 -0
- {yara_x-0.11.1 → yara_x-0.12.0}/parser/src/parser/tests/testdata/rule-tags-error-1.cst +0 -0
- {yara_x-0.11.1 → yara_x-0.12.0}/parser/src/parser/tests/testdata/rule-tags-error-1.in +0 -0
- {yara_x-0.11.1 → yara_x-0.12.0}/parser/src/parser/tests/testdata/rule-tags-error-2.ast +0 -0
- {yara_x-0.11.1 → yara_x-0.12.0}/parser/src/parser/tests/testdata/rule-tags-error-2.cst +0 -0
- {yara_x-0.11.1 → yara_x-0.12.0}/parser/src/parser/tests/testdata/rule-tags-error-2.in +0 -0
- {yara_x-0.11.1 → yara_x-0.12.0}/parser/src/parser/tests/testdata/rule-tags-error-3.ast +0 -0
- {yara_x-0.11.1 → yara_x-0.12.0}/parser/src/parser/tests/testdata/rule-tags-error-3.cst +0 -0
- {yara_x-0.11.1 → yara_x-0.12.0}/parser/src/parser/tests/testdata/rule-tags-error-3.in +0 -0
- {yara_x-0.11.1 → yara_x-0.12.0}/parser/src/parser/tests/testdata/rule-tags.ast +0 -0
- {yara_x-0.11.1 → yara_x-0.12.0}/parser/src/parser/tests/testdata/rule-tags.cst +0 -0
- {yara_x-0.11.1 → yara_x-0.12.0}/parser/src/parser/tests/testdata/rule-tags.in +0 -0
- {yara_x-0.11.1 → yara_x-0.12.0}/parser/src/parser/tests/testdata/with-1.ast +0 -0
- {yara_x-0.11.1 → yara_x-0.12.0}/parser/src/parser/tests/testdata/with-1.cst +0 -0
- {yara_x-0.11.1 → yara_x-0.12.0}/parser/src/parser/tests/testdata/with-1.in +0 -0
- {yara_x-0.11.1 → yara_x-0.12.0}/parser/src/parser/tests/testdata/with-2.ast +0 -0
- {yara_x-0.11.1 → yara_x-0.12.0}/parser/src/parser/tests/testdata/with-2.cst +0 -0
- {yara_x-0.11.1 → yara_x-0.12.0}/parser/src/parser/tests/testdata/with-2.in +0 -0
- {yara_x-0.11.1 → yara_x-0.12.0}/parser/src/parser/tests/testdata/with-error-1.ast +0 -0
- {yara_x-0.11.1 → yara_x-0.12.0}/parser/src/parser/tests/testdata/with-error-1.cst +0 -0
- {yara_x-0.11.1 → yara_x-0.12.0}/parser/src/parser/tests/testdata/with-error-1.in +0 -0
- {yara_x-0.11.1 → yara_x-0.12.0}/parser/src/parser/tests/testdata/with-error-2.ast +0 -0
- {yara_x-0.11.1 → yara_x-0.12.0}/parser/src/parser/tests/testdata/with-error-2.cst +0 -0
- {yara_x-0.11.1 → yara_x-0.12.0}/parser/src/parser/tests/testdata/with-error-2.in +0 -0
- {yara_x-0.11.1 → yara_x-0.12.0}/parser/src/parser/tests/testdata/with-error-3.ast +0 -0
- {yara_x-0.11.1 → yara_x-0.12.0}/parser/src/parser/tests/testdata/with-error-3.cst +0 -0
- {yara_x-0.11.1 → yara_x-0.12.0}/parser/src/parser/tests/testdata/with-error-3.in +0 -0
- {yara_x-0.11.1 → yara_x-0.12.0}/parser/src/parser/token_stream.rs +0 -0
- {yara_x-0.11.1 → yara_x-0.12.0}/parser/src/tokenizer/mod.rs +0 -0
- {yara_x-0.11.1 → yara_x-0.12.0}/parser/src/tokenizer/tests.rs +0 -0
- {yara_x-0.11.1 → yara_x-0.12.0}/parser/src/tokenizer/tokens.rs +0 -0
- {yara_x-0.11.1 → yara_x-0.12.0}/proto/Cargo.toml +0 -0
- {yara_x-0.11.1 → yara_x-0.12.0}/proto/README.md +0 -0
- {yara_x-0.11.1 → yara_x-0.12.0}/proto/build.rs +0 -0
- {yara_x-0.11.1 → yara_x-0.12.0}/proto/src/lib.rs +0 -0
- {yara_x-0.11.1 → yara_x-0.12.0}/proto-yaml/Cargo.toml +0 -0
- {yara_x-0.11.1 → yara_x-0.12.0}/proto-yaml/README.md +0 -0
- {yara_x-0.11.1 → yara_x-0.12.0}/proto-yaml/build.rs +0 -0
- {yara_x-0.11.1 → yara_x-0.12.0}/proto-yaml/src/lib.rs +0 -0
- {yara_x-0.11.1 → yara_x-0.12.0}/proto-yaml/src/tests/mod.rs +0 -0
- {yara_x-0.11.1 → yara_x-0.12.0}/proto-yaml/src/tests/test.proto +0 -0
- {yara_x-0.11.1 → yara_x-0.12.0}/proto-yaml/src/tests/testdata/1.in +0 -0
- {yara_x-0.11.1 → yara_x-0.12.0}/proto-yaml/src/tests/testdata/1.out +0 -0
- {yara_x-0.11.1 → yara_x-0.12.0}/proto-yaml/src/yaml.proto +0 -0
- {yara_x-0.11.1 → yara_x-0.12.0}/py/build.rs +0 -0
- {yara_x-0.11.1 → yara_x-0.12.0}/py/tests/test_api.py +0 -0
- {yara_x-0.11.1 → yara_x-0.12.0}/py/yara_x.pyi +0 -0
|
@@ -75,9 +75,9 @@ dependencies = [
|
|
|
75
75
|
|
|
76
76
|
[[package]]
|
|
77
77
|
name = "annotate-snippets"
|
|
78
|
-
version = "0.11.
|
|
78
|
+
version = "0.11.5"
|
|
79
79
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
80
|
-
checksum = "
|
|
80
|
+
checksum = "710e8eae58854cdc1790fcb56cca04d712a17be849eeb81da2a724bf4bae2bc4"
|
|
81
81
|
dependencies = [
|
|
82
82
|
"anstyle",
|
|
83
83
|
"unicode-width",
|
|
@@ -134,9 +134,9 @@ dependencies = [
|
|
|
134
134
|
|
|
135
135
|
[[package]]
|
|
136
136
|
name = "anyhow"
|
|
137
|
-
version = "1.0.
|
|
137
|
+
version = "1.0.94"
|
|
138
138
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
139
|
-
checksum = "
|
|
139
|
+
checksum = "c1fd03a028ef38ba2276dce7e33fcd6369c158a1bca17946c4b1b701891c1ff7"
|
|
140
140
|
|
|
141
141
|
[[package]]
|
|
142
142
|
name = "arbitrary"
|
|
@@ -149,9 +149,9 @@ dependencies = [
|
|
|
149
149
|
|
|
150
150
|
[[package]]
|
|
151
151
|
name = "array-bytes"
|
|
152
|
-
version = "
|
|
152
|
+
version = "7.1.0"
|
|
153
153
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
154
|
-
checksum = "
|
|
154
|
+
checksum = "ede2733fdd21c8fde19f3d16cebc409666f2fc2b623a22c5078a6775708db5de"
|
|
155
155
|
|
|
156
156
|
[[package]]
|
|
157
157
|
name = "ascii_tree"
|
|
@@ -183,7 +183,7 @@ checksum = "965c2d33e53cb6b267e148a4cb0760bc01f4904c1cd4bb4002a085bb016d1490"
|
|
|
183
183
|
dependencies = [
|
|
184
184
|
"proc-macro2",
|
|
185
185
|
"quote",
|
|
186
|
-
"syn 2.0.
|
|
186
|
+
"syn 2.0.90",
|
|
187
187
|
"synstructure",
|
|
188
188
|
]
|
|
189
189
|
|
|
@@ -195,7 +195,7 @@ checksum = "7b18050c2cd6fe86c3a76584ef5e0baf286d038cda203eb6223df2cc413565f7"
|
|
|
195
195
|
dependencies = [
|
|
196
196
|
"proc-macro2",
|
|
197
197
|
"quote",
|
|
198
|
-
"syn 2.0.
|
|
198
|
+
"syn 2.0.90",
|
|
199
199
|
]
|
|
200
200
|
|
|
201
201
|
[[package]]
|
|
@@ -338,6 +338,12 @@ version = "3.16.0"
|
|
|
338
338
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
339
339
|
checksum = "79296716171880943b8470b5f8d03aa55eb2e645a4874bdbb28adb49162e012c"
|
|
340
340
|
|
|
341
|
+
[[package]]
|
|
342
|
+
name = "bytecount"
|
|
343
|
+
version = "0.6.8"
|
|
344
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
345
|
+
checksum = "5ce89b21cab1437276d2650d57e971f9d548a2d9037cc231abdc0562b97498ce"
|
|
346
|
+
|
|
341
347
|
[[package]]
|
|
342
348
|
name = "bytemuck"
|
|
343
349
|
version = "1.20.0"
|
|
@@ -352,9 +358,9 @@ checksum = "1fd0f2584146f6f2ef48085050886acf353beff7305ebd1ae69500e27c67f64b"
|
|
|
352
358
|
|
|
353
359
|
[[package]]
|
|
354
360
|
name = "bytes"
|
|
355
|
-
version = "1.
|
|
361
|
+
version = "1.9.0"
|
|
356
362
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
357
|
-
checksum = "
|
|
363
|
+
checksum = "325918d6fe32f23b19878fe4b34794ae41fc19ddbe53b10571a4874d44ffd39b"
|
|
358
364
|
|
|
359
365
|
[[package]]
|
|
360
366
|
name = "bzip2"
|
|
@@ -377,6 +383,37 @@ dependencies = [
|
|
|
377
383
|
"pkg-config",
|
|
378
384
|
]
|
|
379
385
|
|
|
386
|
+
[[package]]
|
|
387
|
+
name = "camino"
|
|
388
|
+
version = "1.1.9"
|
|
389
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
390
|
+
checksum = "8b96ec4966b5813e2c0507c1f86115c8c5abaadc3980879c3424042a02fd1ad3"
|
|
391
|
+
dependencies = [
|
|
392
|
+
"serde",
|
|
393
|
+
]
|
|
394
|
+
|
|
395
|
+
[[package]]
|
|
396
|
+
name = "cargo-platform"
|
|
397
|
+
version = "0.1.9"
|
|
398
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
399
|
+
checksum = "e35af189006b9c0f00a064685c727031e3ed2d8020f7ba284d78cc2671bd36ea"
|
|
400
|
+
dependencies = [
|
|
401
|
+
"serde",
|
|
402
|
+
]
|
|
403
|
+
|
|
404
|
+
[[package]]
|
|
405
|
+
name = "cargo_metadata"
|
|
406
|
+
version = "0.14.2"
|
|
407
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
408
|
+
checksum = "4acbb09d9ee8e23699b9634375c72795d095bf268439da88562cf9b501f181fa"
|
|
409
|
+
dependencies = [
|
|
410
|
+
"camino",
|
|
411
|
+
"cargo-platform",
|
|
412
|
+
"semver 1.0.23",
|
|
413
|
+
"serde",
|
|
414
|
+
"serde_json",
|
|
415
|
+
]
|
|
416
|
+
|
|
380
417
|
[[package]]
|
|
381
418
|
name = "castaway"
|
|
382
419
|
version = "0.2.3"
|
|
@@ -394,22 +431,22 @@ checksum = "3fce8dd7fcfcbf3a0a87d8f515194b49d6135acab73e18bd380d1d93bb1a15eb"
|
|
|
394
431
|
dependencies = [
|
|
395
432
|
"clap",
|
|
396
433
|
"heck 0.4.1",
|
|
397
|
-
"indexmap 2.
|
|
434
|
+
"indexmap 2.7.0",
|
|
398
435
|
"log",
|
|
399
436
|
"proc-macro2",
|
|
400
437
|
"quote",
|
|
401
438
|
"serde",
|
|
402
439
|
"serde_json",
|
|
403
|
-
"syn 2.0.
|
|
440
|
+
"syn 2.0.90",
|
|
404
441
|
"tempfile",
|
|
405
442
|
"toml",
|
|
406
443
|
]
|
|
407
444
|
|
|
408
445
|
[[package]]
|
|
409
446
|
name = "cc"
|
|
410
|
-
version = "1.2.
|
|
447
|
+
version = "1.2.3"
|
|
411
448
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
412
|
-
checksum = "
|
|
449
|
+
checksum = "27f657647bcff5394bf56c7317665bbf790a137a50eaaa5c6bfbb9e27a518f2d"
|
|
413
450
|
dependencies = [
|
|
414
451
|
"jobserver",
|
|
415
452
|
"libc",
|
|
@@ -435,9 +472,9 @@ dependencies = [
|
|
|
435
472
|
|
|
436
473
|
[[package]]
|
|
437
474
|
name = "chrono"
|
|
438
|
-
version = "0.4.
|
|
475
|
+
version = "0.4.39"
|
|
439
476
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
440
|
-
checksum = "
|
|
477
|
+
checksum = "7e36cc9d416881d2e24f9a963be5fb1cd90966419ac844274161d10488b3e825"
|
|
441
478
|
dependencies = [
|
|
442
479
|
"android-tzdata",
|
|
443
480
|
"iana-time-zone",
|
|
@@ -459,9 +496,9 @@ dependencies = [
|
|
|
459
496
|
|
|
460
497
|
[[package]]
|
|
461
498
|
name = "clap"
|
|
462
|
-
version = "4.5.
|
|
499
|
+
version = "4.5.23"
|
|
463
500
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
464
|
-
checksum = "
|
|
501
|
+
checksum = "3135e7ec2ef7b10c6ed8950f0f792ed96ee093fa088608f1c76e569722700c84"
|
|
465
502
|
dependencies = [
|
|
466
503
|
"clap_builder",
|
|
467
504
|
"clap_derive",
|
|
@@ -469,9 +506,9 @@ dependencies = [
|
|
|
469
506
|
|
|
470
507
|
[[package]]
|
|
471
508
|
name = "clap_builder"
|
|
472
|
-
version = "4.5.
|
|
509
|
+
version = "4.5.23"
|
|
473
510
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
474
|
-
checksum = "
|
|
511
|
+
checksum = "30582fc632330df2bd26877bde0c1f4470d57c582bbc070376afcd04d8cb4838"
|
|
475
512
|
dependencies = [
|
|
476
513
|
"anstream",
|
|
477
514
|
"anstyle",
|
|
@@ -497,14 +534,14 @@ dependencies = [
|
|
|
497
534
|
"heck 0.5.0",
|
|
498
535
|
"proc-macro2",
|
|
499
536
|
"quote",
|
|
500
|
-
"syn 2.0.
|
|
537
|
+
"syn 2.0.90",
|
|
501
538
|
]
|
|
502
539
|
|
|
503
540
|
[[package]]
|
|
504
541
|
name = "clap_lex"
|
|
505
|
-
version = "0.7.
|
|
542
|
+
version = "0.7.4"
|
|
506
543
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
507
|
-
checksum = "
|
|
544
|
+
checksum = "f46ad14479a25103f283c0f10005961cf086d8dc42205bb44c46ac563475dca6"
|
|
508
545
|
|
|
509
546
|
[[package]]
|
|
510
547
|
name = "cobs"
|
|
@@ -644,7 +681,7 @@ dependencies = [
|
|
|
644
681
|
"hashbrown 0.14.5",
|
|
645
682
|
"log",
|
|
646
683
|
"regalloc2",
|
|
647
|
-
"rustc-hash 2.
|
|
684
|
+
"rustc-hash 2.1.0",
|
|
648
685
|
"smallvec",
|
|
649
686
|
"target-lexicon",
|
|
650
687
|
]
|
|
@@ -817,7 +854,7 @@ checksum = "829d955a0bb380ef178a640b91779e3987da38c9aea133b20614cfed8cdea9c6"
|
|
|
817
854
|
dependencies = [
|
|
818
855
|
"bitflags 2.6.0",
|
|
819
856
|
"crossterm_winapi",
|
|
820
|
-
"mio 1.0.
|
|
857
|
+
"mio 1.0.3",
|
|
821
858
|
"parking_lot",
|
|
822
859
|
"rustix",
|
|
823
860
|
"signal-hook 0.3.17",
|
|
@@ -893,7 +930,7 @@ dependencies = [
|
|
|
893
930
|
"proc-macro2",
|
|
894
931
|
"quote",
|
|
895
932
|
"strsim 0.11.1",
|
|
896
|
-
"syn 2.0.
|
|
933
|
+
"syn 2.0.90",
|
|
897
934
|
]
|
|
898
935
|
|
|
899
936
|
[[package]]
|
|
@@ -904,7 +941,7 @@ checksum = "d336a2a514f6ccccaa3e09b02d41d35330c07ddf03a62165fcec10bb561c7806"
|
|
|
904
941
|
dependencies = [
|
|
905
942
|
"darling_core",
|
|
906
943
|
"quote",
|
|
907
|
-
"syn 2.0.
|
|
944
|
+
"syn 2.0.90",
|
|
908
945
|
]
|
|
909
946
|
|
|
910
947
|
[[package]]
|
|
@@ -967,7 +1004,7 @@ checksum = "30542c1ad912e0e3d22a1935c290e12e8a29d704a420177a31faad4a601a0800"
|
|
|
967
1004
|
dependencies = [
|
|
968
1005
|
"proc-macro2",
|
|
969
1006
|
"quote",
|
|
970
|
-
"syn 2.0.
|
|
1007
|
+
"syn 2.0.90",
|
|
971
1008
|
]
|
|
972
1009
|
|
|
973
1010
|
[[package]]
|
|
@@ -1025,7 +1062,7 @@ checksum = "97369cbbc041bc366949bc74d34658d6cda5621039731c6310521892a3a20ae0"
|
|
|
1025
1062
|
dependencies = [
|
|
1026
1063
|
"proc-macro2",
|
|
1027
1064
|
"quote",
|
|
1028
|
-
"syn 2.0.
|
|
1065
|
+
"syn 2.0.90",
|
|
1029
1066
|
]
|
|
1030
1067
|
|
|
1031
1068
|
[[package]]
|
|
@@ -1130,7 +1167,7 @@ dependencies = [
|
|
|
1130
1167
|
"once_cell",
|
|
1131
1168
|
"proc-macro2",
|
|
1132
1169
|
"quote",
|
|
1133
|
-
"syn 2.0.
|
|
1170
|
+
"syn 2.0.90",
|
|
1134
1171
|
]
|
|
1135
1172
|
|
|
1136
1173
|
[[package]]
|
|
@@ -1164,12 +1201,21 @@ checksum = "5443807d6dff69373d433ab9ef5378ad8df50ca6298caf15de6e52e24aaf54d5"
|
|
|
1164
1201
|
|
|
1165
1202
|
[[package]]
|
|
1166
1203
|
name = "errno"
|
|
1167
|
-
version = "0.3.
|
|
1204
|
+
version = "0.3.10"
|
|
1168
1205
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1169
|
-
checksum = "
|
|
1206
|
+
checksum = "33d852cb9b869c2a9b3df2f71a3074817f01e1844f839a144f5fcef059a4eb5d"
|
|
1170
1207
|
dependencies = [
|
|
1171
1208
|
"libc",
|
|
1172
|
-
"windows-sys 0.
|
|
1209
|
+
"windows-sys 0.59.0",
|
|
1210
|
+
]
|
|
1211
|
+
|
|
1212
|
+
[[package]]
|
|
1213
|
+
name = "error-chain"
|
|
1214
|
+
version = "0.12.4"
|
|
1215
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1216
|
+
checksum = "2d2f06b9cac1506ece98fe3231e3cc9c4410ec3d5b1f24ae1c8946f0742cdefc"
|
|
1217
|
+
dependencies = [
|
|
1218
|
+
"version_check",
|
|
1173
1219
|
]
|
|
1174
1220
|
|
|
1175
1221
|
[[package]]
|
|
@@ -1186,9 +1232,9 @@ checksum = "2acce4a10f12dc2fb14a218589d4f1f62ef011b2d0cc4b3cb1bba8e94da14649"
|
|
|
1186
1232
|
|
|
1187
1233
|
[[package]]
|
|
1188
1234
|
name = "fastrand"
|
|
1189
|
-
version = "2.
|
|
1235
|
+
version = "2.3.0"
|
|
1190
1236
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1191
|
-
checksum = "
|
|
1237
|
+
checksum = "37909eebbb50d72f9059c3b6d82c0463f2ff062c9e95845c43a6c9c0355411be"
|
|
1192
1238
|
|
|
1193
1239
|
[[package]]
|
|
1194
1240
|
name = "ff"
|
|
@@ -1338,7 +1384,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
1338
1384
|
checksum = "07e28edb80900c19c28f1072f2e8aeca7fa06b23cd4169cefe1af5aa3260783f"
|
|
1339
1385
|
dependencies = [
|
|
1340
1386
|
"fallible-iterator 0.3.0",
|
|
1341
|
-
"indexmap 2.
|
|
1387
|
+
"indexmap 2.7.0",
|
|
1342
1388
|
"stable_deref_trait",
|
|
1343
1389
|
]
|
|
1344
1390
|
|
|
@@ -1413,9 +1459,9 @@ dependencies = [
|
|
|
1413
1459
|
|
|
1414
1460
|
[[package]]
|
|
1415
1461
|
name = "hashbrown"
|
|
1416
|
-
version = "0.15.
|
|
1462
|
+
version = "0.15.2"
|
|
1417
1463
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1418
|
-
checksum = "
|
|
1464
|
+
checksum = "bf151400ff0baff5465007dd2f3e717f3fe502074ca563069ce3a6629d07b289"
|
|
1419
1465
|
dependencies = [
|
|
1420
1466
|
"foldhash",
|
|
1421
1467
|
]
|
|
@@ -1432,12 +1478,6 @@ version = "0.5.0"
|
|
|
1432
1478
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1433
1479
|
checksum = "2304e00983f87ffb38b55b444b5e3b60a884b5d30c0fca7d82fe33449bbe55ea"
|
|
1434
1480
|
|
|
1435
|
-
[[package]]
|
|
1436
|
-
name = "hermit-abi"
|
|
1437
|
-
version = "0.3.9"
|
|
1438
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1439
|
-
checksum = "d231dfb89cfffdbc30e7fc41579ed6066ad03abda9e567ccafae602b97ec5024"
|
|
1440
|
-
|
|
1441
1481
|
[[package]]
|
|
1442
1482
|
name = "hex"
|
|
1443
1483
|
version = "0.4.3"
|
|
@@ -1565,12 +1605,12 @@ dependencies = [
|
|
|
1565
1605
|
|
|
1566
1606
|
[[package]]
|
|
1567
1607
|
name = "indexmap"
|
|
1568
|
-
version = "2.
|
|
1608
|
+
version = "2.7.0"
|
|
1569
1609
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1570
|
-
checksum = "
|
|
1610
|
+
checksum = "62f822373a4fe84d4bb149bf54e584a7f4abec90e072ed49cda0edea5b95471f"
|
|
1571
1611
|
dependencies = [
|
|
1572
1612
|
"equivalent",
|
|
1573
|
-
"hashbrown 0.15.
|
|
1613
|
+
"hashbrown 0.15.2",
|
|
1574
1614
|
"serde",
|
|
1575
1615
|
]
|
|
1576
1616
|
|
|
@@ -1591,9 +1631,9 @@ dependencies = [
|
|
|
1591
1631
|
|
|
1592
1632
|
[[package]]
|
|
1593
1633
|
name = "intaglio"
|
|
1594
|
-
version = "1.
|
|
1634
|
+
version = "1.10.0"
|
|
1595
1635
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1596
|
-
checksum = "
|
|
1636
|
+
checksum = "7785e397d45f5a00bd35df6c293518c240c321b734b15a02718aa21103de1ce9"
|
|
1597
1637
|
|
|
1598
1638
|
[[package]]
|
|
1599
1639
|
name = "is_terminal_polyfill"
|
|
@@ -1630,9 +1670,9 @@ dependencies = [
|
|
|
1630
1670
|
|
|
1631
1671
|
[[package]]
|
|
1632
1672
|
name = "itoa"
|
|
1633
|
-
version = "1.0.
|
|
1673
|
+
version = "1.0.14"
|
|
1634
1674
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1635
|
-
checksum = "
|
|
1675
|
+
checksum = "d75a2a4b1b190afb6f5425f10f6a8f959d2ea0b9c2b1d79553551850539e4674"
|
|
1636
1676
|
|
|
1637
1677
|
[[package]]
|
|
1638
1678
|
name = "jobserver"
|
|
@@ -1645,10 +1685,11 @@ dependencies = [
|
|
|
1645
1685
|
|
|
1646
1686
|
[[package]]
|
|
1647
1687
|
name = "js-sys"
|
|
1648
|
-
version = "0.3.
|
|
1688
|
+
version = "0.3.76"
|
|
1649
1689
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1650
|
-
checksum = "
|
|
1690
|
+
checksum = "6717b6b5b077764fb5966237269cb3c64edddde4b14ce42647430a78ced9e7b7"
|
|
1651
1691
|
dependencies = [
|
|
1692
|
+
"once_cell",
|
|
1652
1693
|
"wasm-bindgen",
|
|
1653
1694
|
]
|
|
1654
1695
|
|
|
@@ -1675,9 +1716,9 @@ checksum = "884e2677b40cc8c339eaefcb701c32ef1fd2493d71118dc0ca4b6a736c93bd67"
|
|
|
1675
1716
|
|
|
1676
1717
|
[[package]]
|
|
1677
1718
|
name = "libc"
|
|
1678
|
-
version = "0.2.
|
|
1719
|
+
version = "0.2.168"
|
|
1679
1720
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1680
|
-
checksum = "
|
|
1721
|
+
checksum = "5aaeb2981e0606ca11d79718f8bb01164f1d6ed75080182d3abf017e6d244b6d"
|
|
1681
1722
|
|
|
1682
1723
|
[[package]]
|
|
1683
1724
|
name = "libm"
|
|
@@ -1776,7 +1817,7 @@ checksum = "edbe595006d355eaf9ae11db92707d4338cd2384d16866131cc1afdbdd35d8d9"
|
|
|
1776
1817
|
dependencies = [
|
|
1777
1818
|
"proc-macro2",
|
|
1778
1819
|
"quote",
|
|
1779
|
-
"syn 2.0.
|
|
1820
|
+
"syn 2.0.90",
|
|
1780
1821
|
]
|
|
1781
1822
|
|
|
1782
1823
|
[[package]]
|
|
@@ -1809,18 +1850,18 @@ checksum = "a7a70ba024b9dc04c27ea2f0c0548feb474ec5c54bba33a7f72f873a39d07b24"
|
|
|
1809
1850
|
|
|
1810
1851
|
[[package]]
|
|
1811
1852
|
name = "logos"
|
|
1812
|
-
version = "0.
|
|
1853
|
+
version = "0.15.0"
|
|
1813
1854
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1814
|
-
checksum = "
|
|
1855
|
+
checksum = "ab6f536c1af4c7cc81edf73da1f8029896e7e1e16a219ef09b184e76a296f3db"
|
|
1815
1856
|
dependencies = [
|
|
1816
1857
|
"logos-derive",
|
|
1817
1858
|
]
|
|
1818
1859
|
|
|
1819
1860
|
[[package]]
|
|
1820
1861
|
name = "logos-codegen"
|
|
1821
|
-
version = "0.
|
|
1862
|
+
version = "0.15.0"
|
|
1822
1863
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1823
|
-
checksum = "
|
|
1864
|
+
checksum = "189bbfd0b61330abea797e5e9276408f2edbe4f822d7ad08685d67419aafb34e"
|
|
1824
1865
|
dependencies = [
|
|
1825
1866
|
"beef",
|
|
1826
1867
|
"fnv",
|
|
@@ -1828,14 +1869,15 @@ dependencies = [
|
|
|
1828
1869
|
"proc-macro2",
|
|
1829
1870
|
"quote",
|
|
1830
1871
|
"regex-syntax 0.8.5",
|
|
1831
|
-
"
|
|
1872
|
+
"rustc_version",
|
|
1873
|
+
"syn 2.0.90",
|
|
1832
1874
|
]
|
|
1833
1875
|
|
|
1834
1876
|
[[package]]
|
|
1835
1877
|
name = "logos-derive"
|
|
1836
|
-
version = "0.
|
|
1878
|
+
version = "0.15.0"
|
|
1837
1879
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1838
|
-
checksum = "
|
|
1880
|
+
checksum = "ebfe8e1a19049ddbfccbd14ac834b215e11b85b90bab0c2dba7c7b92fb5d5cba"
|
|
1839
1881
|
dependencies = [
|
|
1840
1882
|
"logos-codegen",
|
|
1841
1883
|
]
|
|
@@ -1992,11 +2034,10 @@ dependencies = [
|
|
|
1992
2034
|
|
|
1993
2035
|
[[package]]
|
|
1994
2036
|
name = "mio"
|
|
1995
|
-
version = "1.0.
|
|
2037
|
+
version = "1.0.3"
|
|
1996
2038
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1997
|
-
checksum = "
|
|
2039
|
+
checksum = "2886843bf800fba2e3377cff24abf6379b4c4d5c6681eaf9ea5b0d15090450bd"
|
|
1998
2040
|
dependencies = [
|
|
1999
|
-
"hermit-abi",
|
|
2000
2041
|
"libc",
|
|
2001
2042
|
"log",
|
|
2002
2043
|
"wasi",
|
|
@@ -2110,7 +2151,7 @@ checksum = "ed3955f1a9c7c0c15e092f9c887db08b1fc683305fdf6eb6684f22555355e202"
|
|
|
2110
2151
|
dependencies = [
|
|
2111
2152
|
"proc-macro2",
|
|
2112
2153
|
"quote",
|
|
2113
|
-
"syn 2.0.
|
|
2154
|
+
"syn 2.0.90",
|
|
2114
2155
|
]
|
|
2115
2156
|
|
|
2116
2157
|
[[package]]
|
|
@@ -2161,8 +2202,8 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
2161
2202
|
checksum = "aedf0a2d09c573ed1d8d85b30c119153926a2b36dce0ab28322c09a117a4683e"
|
|
2162
2203
|
dependencies = [
|
|
2163
2204
|
"crc32fast",
|
|
2164
|
-
"hashbrown 0.15.
|
|
2165
|
-
"indexmap 2.
|
|
2205
|
+
"hashbrown 0.15.2",
|
|
2206
|
+
"indexmap 2.7.0",
|
|
2166
2207
|
"memchr",
|
|
2167
2208
|
]
|
|
2168
2209
|
|
|
@@ -2275,7 +2316,7 @@ dependencies = [
|
|
|
2275
2316
|
"regex",
|
|
2276
2317
|
"regex-syntax 0.7.5",
|
|
2277
2318
|
"structmeta",
|
|
2278
|
-
"syn 2.0.
|
|
2319
|
+
"syn 2.0.90",
|
|
2279
2320
|
]
|
|
2280
2321
|
|
|
2281
2322
|
[[package]]
|
|
@@ -2305,20 +2346,20 @@ dependencies = [
|
|
|
2305
2346
|
|
|
2306
2347
|
[[package]]
|
|
2307
2348
|
name = "pest"
|
|
2308
|
-
version = "2.7.
|
|
2349
|
+
version = "2.7.15"
|
|
2309
2350
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2310
|
-
checksum = "
|
|
2351
|
+
checksum = "8b7cafe60d6cf8e62e1b9b2ea516a089c008945bb5a275416789e7db0bc199dc"
|
|
2311
2352
|
dependencies = [
|
|
2312
2353
|
"memchr",
|
|
2313
|
-
"thiserror
|
|
2354
|
+
"thiserror 2.0.6",
|
|
2314
2355
|
"ucd-trie",
|
|
2315
2356
|
]
|
|
2316
2357
|
|
|
2317
2358
|
[[package]]
|
|
2318
2359
|
name = "pest_derive"
|
|
2319
|
-
version = "2.7.
|
|
2360
|
+
version = "2.7.15"
|
|
2320
2361
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2321
|
-
checksum = "
|
|
2362
|
+
checksum = "816518421cfc6887a0d62bf441b6ffb4536fcc926395a69e1a85852d4363f57e"
|
|
2322
2363
|
dependencies = [
|
|
2323
2364
|
"pest",
|
|
2324
2365
|
"pest_generator",
|
|
@@ -2326,22 +2367,22 @@ dependencies = [
|
|
|
2326
2367
|
|
|
2327
2368
|
[[package]]
|
|
2328
2369
|
name = "pest_generator"
|
|
2329
|
-
version = "2.7.
|
|
2370
|
+
version = "2.7.15"
|
|
2330
2371
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2331
|
-
checksum = "
|
|
2372
|
+
checksum = "7d1396fd3a870fc7838768d171b4616d5c91f6cc25e377b673d714567d99377b"
|
|
2332
2373
|
dependencies = [
|
|
2333
2374
|
"pest",
|
|
2334
2375
|
"pest_meta",
|
|
2335
2376
|
"proc-macro2",
|
|
2336
2377
|
"quote",
|
|
2337
|
-
"syn 2.0.
|
|
2378
|
+
"syn 2.0.90",
|
|
2338
2379
|
]
|
|
2339
2380
|
|
|
2340
2381
|
[[package]]
|
|
2341
2382
|
name = "pest_meta"
|
|
2342
|
-
version = "2.7.
|
|
2383
|
+
version = "2.7.15"
|
|
2343
2384
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2344
|
-
checksum = "
|
|
2385
|
+
checksum = "e1e58089ea25d717bfd31fb534e4f3afcc2cc569c70de3e239778991ea3b7dea"
|
|
2345
2386
|
dependencies = [
|
|
2346
2387
|
"once_cell",
|
|
2347
2388
|
"pest",
|
|
@@ -2397,7 +2438,7 @@ dependencies = [
|
|
|
2397
2438
|
"phf_shared 0.11.2",
|
|
2398
2439
|
"proc-macro2",
|
|
2399
2440
|
"quote",
|
|
2400
|
-
"syn 2.0.
|
|
2441
|
+
"syn 2.0.90",
|
|
2401
2442
|
]
|
|
2402
2443
|
|
|
2403
2444
|
[[package]]
|
|
@@ -2447,15 +2488,15 @@ checksum = "953ec861398dccce10c670dfeaf3ec4911ca479e9c02154b3a215178c5f566f2"
|
|
|
2447
2488
|
|
|
2448
2489
|
[[package]]
|
|
2449
2490
|
name = "portable-atomic"
|
|
2450
|
-
version = "1.
|
|
2491
|
+
version = "1.10.0"
|
|
2451
2492
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2452
|
-
checksum = "
|
|
2493
|
+
checksum = "280dc24453071f1b63954171985a0b0d30058d287960968b9b2aca264c8d4ee6"
|
|
2453
2494
|
|
|
2454
2495
|
[[package]]
|
|
2455
2496
|
name = "postcard"
|
|
2456
|
-
version = "1.
|
|
2497
|
+
version = "1.1.1"
|
|
2457
2498
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2458
|
-
checksum = "
|
|
2499
|
+
checksum = "170a2601f67cc9dba8edd8c4870b15f71a6a2dc196daec8c83f72b59dff628a8"
|
|
2459
2500
|
dependencies = [
|
|
2460
2501
|
"cobs",
|
|
2461
2502
|
"embedded-io 0.4.0",
|
|
@@ -2550,7 +2591,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
2550
2591
|
checksum = "322330e133eab455718444b4e033ebfac7c6528972c784fcde28d2cc783c6257"
|
|
2551
2592
|
dependencies = [
|
|
2552
2593
|
"anyhow",
|
|
2553
|
-
"indexmap 2.
|
|
2594
|
+
"indexmap 2.7.0",
|
|
2554
2595
|
"log",
|
|
2555
2596
|
"protobuf",
|
|
2556
2597
|
"protobuf-support",
|
|
@@ -2577,6 +2618,17 @@ dependencies = [
|
|
|
2577
2618
|
"cc",
|
|
2578
2619
|
]
|
|
2579
2620
|
|
|
2621
|
+
[[package]]
|
|
2622
|
+
name = "pulldown-cmark"
|
|
2623
|
+
version = "0.9.6"
|
|
2624
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2625
|
+
checksum = "57206b407293d2bcd3af849ce869d52068623f19e1b5ff8e8778e3309439682b"
|
|
2626
|
+
dependencies = [
|
|
2627
|
+
"bitflags 2.6.0",
|
|
2628
|
+
"memchr",
|
|
2629
|
+
"unicase",
|
|
2630
|
+
]
|
|
2631
|
+
|
|
2580
2632
|
[[package]]
|
|
2581
2633
|
name = "pulley-interpreter"
|
|
2582
2634
|
version = "26.0.1"
|
|
@@ -2590,9 +2642,9 @@ dependencies = [
|
|
|
2590
2642
|
|
|
2591
2643
|
[[package]]
|
|
2592
2644
|
name = "pyo3"
|
|
2593
|
-
version = "0.
|
|
2645
|
+
version = "0.23.3"
|
|
2594
2646
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2595
|
-
checksum = "
|
|
2647
|
+
checksum = "e484fd2c8b4cb67ab05a318f1fd6fa8f199fcc30819f08f07d200809dba26c15"
|
|
2596
2648
|
dependencies = [
|
|
2597
2649
|
"cfg-if",
|
|
2598
2650
|
"indoc",
|
|
@@ -2608,9 +2660,9 @@ dependencies = [
|
|
|
2608
2660
|
|
|
2609
2661
|
[[package]]
|
|
2610
2662
|
name = "pyo3-build-config"
|
|
2611
|
-
version = "0.
|
|
2663
|
+
version = "0.23.3"
|
|
2612
2664
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2613
|
-
checksum = "
|
|
2665
|
+
checksum = "dc0e0469a84f208e20044b98965e1561028180219e35352a2afaf2b942beff3b"
|
|
2614
2666
|
dependencies = [
|
|
2615
2667
|
"once_cell",
|
|
2616
2668
|
"target-lexicon",
|
|
@@ -2618,9 +2670,9 @@ dependencies = [
|
|
|
2618
2670
|
|
|
2619
2671
|
[[package]]
|
|
2620
2672
|
name = "pyo3-ffi"
|
|
2621
|
-
version = "0.
|
|
2673
|
+
version = "0.23.3"
|
|
2622
2674
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2623
|
-
checksum = "
|
|
2675
|
+
checksum = "eb1547a7f9966f6f1a0f0227564a9945fe36b90da5a93b3933fc3dc03fae372d"
|
|
2624
2676
|
dependencies = [
|
|
2625
2677
|
"libc",
|
|
2626
2678
|
"pyo3-build-config",
|
|
@@ -2628,36 +2680,37 @@ dependencies = [
|
|
|
2628
2680
|
|
|
2629
2681
|
[[package]]
|
|
2630
2682
|
name = "pyo3-file"
|
|
2631
|
-
version = "0.
|
|
2683
|
+
version = "0.10.0"
|
|
2632
2684
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2633
|
-
checksum = "
|
|
2685
|
+
checksum = "3134dfe0d6458ea56d6c1cd4047c8894f331297aaf53eb9bf046ac7485dd469b"
|
|
2634
2686
|
dependencies = [
|
|
2635
2687
|
"pyo3",
|
|
2688
|
+
"skeptic",
|
|
2636
2689
|
]
|
|
2637
2690
|
|
|
2638
2691
|
[[package]]
|
|
2639
2692
|
name = "pyo3-macros"
|
|
2640
|
-
version = "0.
|
|
2693
|
+
version = "0.23.3"
|
|
2641
2694
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2642
|
-
checksum = "
|
|
2695
|
+
checksum = "fdb6da8ec6fa5cedd1626c886fc8749bdcbb09424a86461eb8cdf096b7c33257"
|
|
2643
2696
|
dependencies = [
|
|
2644
2697
|
"proc-macro2",
|
|
2645
2698
|
"pyo3-macros-backend",
|
|
2646
2699
|
"quote",
|
|
2647
|
-
"syn 2.0.
|
|
2700
|
+
"syn 2.0.90",
|
|
2648
2701
|
]
|
|
2649
2702
|
|
|
2650
2703
|
[[package]]
|
|
2651
2704
|
name = "pyo3-macros-backend"
|
|
2652
|
-
version = "0.
|
|
2705
|
+
version = "0.23.3"
|
|
2653
2706
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2654
|
-
checksum = "
|
|
2707
|
+
checksum = "38a385202ff5a92791168b1136afae5059d3ac118457bb7bc304c197c2d33e7d"
|
|
2655
2708
|
dependencies = [
|
|
2656
2709
|
"heck 0.5.0",
|
|
2657
2710
|
"proc-macro2",
|
|
2658
2711
|
"pyo3-build-config",
|
|
2659
2712
|
"quote",
|
|
2660
|
-
"syn 2.0.
|
|
2713
|
+
"syn 2.0.90",
|
|
2661
2714
|
]
|
|
2662
2715
|
|
|
2663
2716
|
[[package]]
|
|
@@ -2777,7 +2830,7 @@ checksum = "12908dbeb234370af84d0579b9f68258a0f67e201412dd9a2814e6f45b2fc0f0"
|
|
|
2777
2830
|
dependencies = [
|
|
2778
2831
|
"hashbrown 0.14.5",
|
|
2779
2832
|
"log",
|
|
2780
|
-
"rustc-hash 2.
|
|
2833
|
+
"rustc-hash 2.1.0",
|
|
2781
2834
|
"slice-group-by",
|
|
2782
2835
|
"smallvec",
|
|
2783
2836
|
]
|
|
@@ -2844,9 +2897,9 @@ dependencies = [
|
|
|
2844
2897
|
|
|
2845
2898
|
[[package]]
|
|
2846
2899
|
name = "rowan"
|
|
2847
|
-
version = "0.16.
|
|
2900
|
+
version = "0.16.1"
|
|
2848
2901
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2849
|
-
checksum = "
|
|
2902
|
+
checksum = "417a3a9f582e349834051b8a10c8d71ca88da4211e4093528e36b9845f6b5f21"
|
|
2850
2903
|
dependencies = [
|
|
2851
2904
|
"countme",
|
|
2852
2905
|
"hashbrown 0.14.5",
|
|
@@ -2862,9 +2915,9 @@ checksum = "6c20b6793b5c2fa6553b250154b78d6d0db37e72700ae35fad9387a46f487c97"
|
|
|
2862
2915
|
|
|
2863
2916
|
[[package]]
|
|
2864
2917
|
name = "rsa"
|
|
2865
|
-
version = "0.9.
|
|
2918
|
+
version = "0.9.7"
|
|
2866
2919
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2867
|
-
checksum = "
|
|
2920
|
+
checksum = "47c75d7c5c6b673e58bf54d8544a9f432e3a925b0e80f7cd3602ab5c50c55519"
|
|
2868
2921
|
dependencies = [
|
|
2869
2922
|
"const-oid",
|
|
2870
2923
|
"digest 0.10.7",
|
|
@@ -2888,9 +2941,18 @@ checksum = "08d43f7aa6b08d49f382cde6a7982047c3426db949b1424bc4b7ec9ae12c6ce2"
|
|
|
2888
2941
|
|
|
2889
2942
|
[[package]]
|
|
2890
2943
|
name = "rustc-hash"
|
|
2891
|
-
version = "2.
|
|
2944
|
+
version = "2.1.0"
|
|
2892
2945
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2893
|
-
checksum = "
|
|
2946
|
+
checksum = "c7fb8039b3032c191086b10f11f319a6e99e1e82889c5cc6046f515c9db1d497"
|
|
2947
|
+
|
|
2948
|
+
[[package]]
|
|
2949
|
+
name = "rustc_version"
|
|
2950
|
+
version = "0.4.1"
|
|
2951
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2952
|
+
checksum = "cfcb3a22ef46e85b45de6ee7e79d063319ebb6594faafcf1c225ea92ab6e9b92"
|
|
2953
|
+
dependencies = [
|
|
2954
|
+
"semver 1.0.23",
|
|
2955
|
+
]
|
|
2894
2956
|
|
|
2895
2957
|
[[package]]
|
|
2896
2958
|
name = "rusticata-macros"
|
|
@@ -2903,15 +2965,15 @@ dependencies = [
|
|
|
2903
2965
|
|
|
2904
2966
|
[[package]]
|
|
2905
2967
|
name = "rustix"
|
|
2906
|
-
version = "0.38.
|
|
2968
|
+
version = "0.38.42"
|
|
2907
2969
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2908
|
-
checksum = "
|
|
2970
|
+
checksum = "f93dc38ecbab2eb790ff964bb77fa94faf256fd3e73285fd7ba0903b76bedb85"
|
|
2909
2971
|
dependencies = [
|
|
2910
2972
|
"bitflags 2.6.0",
|
|
2911
2973
|
"errno",
|
|
2912
2974
|
"libc",
|
|
2913
2975
|
"linux-raw-sys",
|
|
2914
|
-
"windows-sys 0.
|
|
2976
|
+
"windows-sys 0.59.0",
|
|
2915
2977
|
]
|
|
2916
2978
|
|
|
2917
2979
|
[[package]]
|
|
@@ -2969,6 +3031,9 @@ name = "semver"
|
|
|
2969
3031
|
version = "1.0.23"
|
|
2970
3032
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2971
3033
|
checksum = "61697e0a1c7e512e84a621326239844a24d8207b4669b41bc18b32ea5cbf988b"
|
|
3034
|
+
dependencies = [
|
|
3035
|
+
"serde",
|
|
3036
|
+
]
|
|
2972
3037
|
|
|
2973
3038
|
[[package]]
|
|
2974
3039
|
name = "semver-parser"
|
|
@@ -3007,7 +3072,7 @@ checksum = "ad1e866f866923f252f05c889987993144fb74e722403468a4ebd70c3cd756c0"
|
|
|
3007
3072
|
dependencies = [
|
|
3008
3073
|
"proc-macro2",
|
|
3009
3074
|
"quote",
|
|
3010
|
-
"syn 2.0.
|
|
3075
|
+
"syn 2.0.90",
|
|
3011
3076
|
]
|
|
3012
3077
|
|
|
3013
3078
|
[[package]]
|
|
@@ -3016,7 +3081,7 @@ version = "1.0.133"
|
|
|
3016
3081
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3017
3082
|
checksum = "c7fceb2473b9166b2294ef05efcb65a3db80803f0b03ef86a5fc88a2b85ee377"
|
|
3018
3083
|
dependencies = [
|
|
3019
|
-
"indexmap 2.
|
|
3084
|
+
"indexmap 2.7.0",
|
|
3020
3085
|
"itoa",
|
|
3021
3086
|
"memchr",
|
|
3022
3087
|
"ryu",
|
|
@@ -3101,7 +3166,7 @@ checksum = "34db1a06d485c9142248b7a054f034b349b212551f3dfd19c94d45a754a217cd"
|
|
|
3101
3166
|
dependencies = [
|
|
3102
3167
|
"libc",
|
|
3103
3168
|
"mio 0.8.11",
|
|
3104
|
-
"mio 1.0.
|
|
3169
|
+
"mio 1.0.3",
|
|
3105
3170
|
"signal-hook 0.3.17",
|
|
3106
3171
|
]
|
|
3107
3172
|
|
|
@@ -3156,6 +3221,21 @@ version = "0.3.11"
|
|
|
3156
3221
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3157
3222
|
checksum = "38b58827f4464d87d377d175e90bf58eb00fd8716ff0a62f80356b5e61555d0d"
|
|
3158
3223
|
|
|
3224
|
+
[[package]]
|
|
3225
|
+
name = "skeptic"
|
|
3226
|
+
version = "0.13.7"
|
|
3227
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3228
|
+
checksum = "16d23b015676c90a0f01c197bfdc786c20342c73a0afdda9025adb0bc42940a8"
|
|
3229
|
+
dependencies = [
|
|
3230
|
+
"bytecount",
|
|
3231
|
+
"cargo_metadata",
|
|
3232
|
+
"error-chain",
|
|
3233
|
+
"glob",
|
|
3234
|
+
"pulldown-cmark",
|
|
3235
|
+
"tempfile",
|
|
3236
|
+
"walkdir",
|
|
3237
|
+
]
|
|
3238
|
+
|
|
3159
3239
|
[[package]]
|
|
3160
3240
|
name = "slice-group-by"
|
|
3161
3241
|
version = "0.3.1"
|
|
@@ -3226,7 +3306,7 @@ dependencies = [
|
|
|
3226
3306
|
"proc-macro2",
|
|
3227
3307
|
"quote",
|
|
3228
3308
|
"structmeta-derive",
|
|
3229
|
-
"syn 2.0.
|
|
3309
|
+
"syn 2.0.90",
|
|
3230
3310
|
]
|
|
3231
3311
|
|
|
3232
3312
|
[[package]]
|
|
@@ -3237,7 +3317,7 @@ checksum = "a60bcaff7397072dca0017d1db428e30d5002e00b6847703e2e42005c95fbe00"
|
|
|
3237
3317
|
dependencies = [
|
|
3238
3318
|
"proc-macro2",
|
|
3239
3319
|
"quote",
|
|
3240
|
-
"syn 2.0.
|
|
3320
|
+
"syn 2.0.90",
|
|
3241
3321
|
]
|
|
3242
3322
|
|
|
3243
3323
|
[[package]]
|
|
@@ -3256,7 +3336,7 @@ dependencies = [
|
|
|
3256
3336
|
"proc-macro2",
|
|
3257
3337
|
"quote",
|
|
3258
3338
|
"rustversion",
|
|
3259
|
-
"syn 2.0.
|
|
3339
|
+
"syn 2.0.90",
|
|
3260
3340
|
]
|
|
3261
3341
|
|
|
3262
3342
|
[[package]]
|
|
@@ -3269,7 +3349,7 @@ dependencies = [
|
|
|
3269
3349
|
"proc-macro2",
|
|
3270
3350
|
"quote",
|
|
3271
3351
|
"rustversion",
|
|
3272
|
-
"syn 2.0.
|
|
3352
|
+
"syn 2.0.90",
|
|
3273
3353
|
]
|
|
3274
3354
|
|
|
3275
3355
|
[[package]]
|
|
@@ -3307,9 +3387,9 @@ dependencies = [
|
|
|
3307
3387
|
|
|
3308
3388
|
[[package]]
|
|
3309
3389
|
name = "syn"
|
|
3310
|
-
version = "2.0.
|
|
3390
|
+
version = "2.0.90"
|
|
3311
3391
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3312
|
-
checksum = "
|
|
3392
|
+
checksum = "919d3b74a5dd0ccd15aeb8f93e7006bd9e14c295087c9896a110f490752bcf31"
|
|
3313
3393
|
dependencies = [
|
|
3314
3394
|
"proc-macro2",
|
|
3315
3395
|
"quote",
|
|
@@ -3324,7 +3404,7 @@ checksum = "c8af7666ab7b6390ab78131fb5b0fce11d6b7a6951602017c35fa82800708971"
|
|
|
3324
3404
|
dependencies = [
|
|
3325
3405
|
"proc-macro2",
|
|
3326
3406
|
"quote",
|
|
3327
|
-
"syn 2.0.
|
|
3407
|
+
"syn 2.0.90",
|
|
3328
3408
|
]
|
|
3329
3409
|
|
|
3330
3410
|
[[package]]
|
|
@@ -3442,11 +3522,11 @@ dependencies = [
|
|
|
3442
3522
|
|
|
3443
3523
|
[[package]]
|
|
3444
3524
|
name = "thiserror"
|
|
3445
|
-
version = "2.0.
|
|
3525
|
+
version = "2.0.6"
|
|
3446
3526
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3447
|
-
checksum = "
|
|
3527
|
+
checksum = "8fec2a1820ebd077e2b90c4df007bebf344cd394098a13c563957d0afc83ea47"
|
|
3448
3528
|
dependencies = [
|
|
3449
|
-
"thiserror-impl 2.0.
|
|
3529
|
+
"thiserror-impl 2.0.6",
|
|
3450
3530
|
]
|
|
3451
3531
|
|
|
3452
3532
|
[[package]]
|
|
@@ -3457,25 +3537,25 @@ checksum = "4fee6c4efc90059e10f81e6d42c60a18f76588c3d74cb83a0b242a2b6c7504c1"
|
|
|
3457
3537
|
dependencies = [
|
|
3458
3538
|
"proc-macro2",
|
|
3459
3539
|
"quote",
|
|
3460
|
-
"syn 2.0.
|
|
3540
|
+
"syn 2.0.90",
|
|
3461
3541
|
]
|
|
3462
3542
|
|
|
3463
3543
|
[[package]]
|
|
3464
3544
|
name = "thiserror-impl"
|
|
3465
|
-
version = "2.0.
|
|
3545
|
+
version = "2.0.6"
|
|
3466
3546
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3467
|
-
checksum = "
|
|
3547
|
+
checksum = "d65750cab40f4ff1929fb1ba509e9914eb756131cef4210da8d5d700d26f6312"
|
|
3468
3548
|
dependencies = [
|
|
3469
3549
|
"proc-macro2",
|
|
3470
3550
|
"quote",
|
|
3471
|
-
"syn 2.0.
|
|
3551
|
+
"syn 2.0.90",
|
|
3472
3552
|
]
|
|
3473
3553
|
|
|
3474
3554
|
[[package]]
|
|
3475
3555
|
name = "time"
|
|
3476
|
-
version = "0.3.
|
|
3556
|
+
version = "0.3.37"
|
|
3477
3557
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3478
|
-
checksum = "
|
|
3558
|
+
checksum = "35e7868883861bd0e56d9ac6efcaaca0d6d5d82a2a7ec8209ff492c07cf37b21"
|
|
3479
3559
|
dependencies = [
|
|
3480
3560
|
"deranged",
|
|
3481
3561
|
"itoa",
|
|
@@ -3494,9 +3574,9 @@ checksum = "ef927ca75afb808a4d64dd374f00a2adf8d0fcff8e7b184af886c3c87ec4a3f3"
|
|
|
3494
3574
|
|
|
3495
3575
|
[[package]]
|
|
3496
3576
|
name = "time-macros"
|
|
3497
|
-
version = "0.2.
|
|
3577
|
+
version = "0.2.19"
|
|
3498
3578
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3499
|
-
checksum = "
|
|
3579
|
+
checksum = "2834e6017e3e5e4b9834939793b282bc03b37a3336245fa820e35e233e2a85de"
|
|
3500
3580
|
dependencies = [
|
|
3501
3581
|
"num-conv",
|
|
3502
3582
|
"time-core",
|
|
@@ -3544,7 +3624,7 @@ version = "0.22.22"
|
|
|
3544
3624
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3545
3625
|
checksum = "4ae48d6208a266e853d946088ed816055e556cc6028c5e8e2b84d9fa5dd7c7f5"
|
|
3546
3626
|
dependencies = [
|
|
3547
|
-
"indexmap 2.
|
|
3627
|
+
"indexmap 2.7.0",
|
|
3548
3628
|
"serde",
|
|
3549
3629
|
"serde_spanned",
|
|
3550
3630
|
"toml_datetime",
|
|
@@ -3572,6 +3652,12 @@ dependencies = [
|
|
|
3572
3652
|
"version_check",
|
|
3573
3653
|
]
|
|
3574
3654
|
|
|
3655
|
+
[[package]]
|
|
3656
|
+
name = "unicase"
|
|
3657
|
+
version = "2.8.0"
|
|
3658
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3659
|
+
checksum = "7e51b68083f157f853b6379db119d1c1be0e6e4dec98101079dec41f6f5cf6df"
|
|
3660
|
+
|
|
3575
3661
|
[[package]]
|
|
3576
3662
|
name = "unicode-ident"
|
|
3577
3663
|
version = "1.0.14"
|
|
@@ -3586,9 +3672,9 @@ checksum = "f6ccf251212114b54433ec949fd6a7841275f9ada20dddd2f29e9ceea4501493"
|
|
|
3586
3672
|
|
|
3587
3673
|
[[package]]
|
|
3588
3674
|
name = "unicode-width"
|
|
3589
|
-
version = "0.
|
|
3675
|
+
version = "0.2.0"
|
|
3590
3676
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3591
|
-
checksum = "
|
|
3677
|
+
checksum = "1fc81956842c57dac11422a97c3b8195a1ff727f06e85c84ed2e8aa277c9a0fd"
|
|
3592
3678
|
|
|
3593
3679
|
[[package]]
|
|
3594
3680
|
name = "unicode-xid"
|
|
@@ -3656,9 +3742,9 @@ dependencies = [
|
|
|
3656
3742
|
|
|
3657
3743
|
[[package]]
|
|
3658
3744
|
name = "walrus"
|
|
3659
|
-
version = "0.23.
|
|
3745
|
+
version = "0.23.2"
|
|
3660
3746
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3661
|
-
checksum = "
|
|
3747
|
+
checksum = "031bc51853697a6a01731f1c2d6d56989c3a742d63316f59918c90b709a6edd9"
|
|
3662
3748
|
dependencies = [
|
|
3663
3749
|
"anyhow",
|
|
3664
3750
|
"gimli 0.26.2",
|
|
@@ -3679,7 +3765,7 @@ dependencies = [
|
|
|
3679
3765
|
"heck 0.5.0",
|
|
3680
3766
|
"proc-macro2",
|
|
3681
3767
|
"quote",
|
|
3682
|
-
"syn 2.0.
|
|
3768
|
+
"syn 2.0.90",
|
|
3683
3769
|
]
|
|
3684
3770
|
|
|
3685
3771
|
[[package]]
|
|
@@ -3690,9 +3776,9 @@ checksum = "9c8d87e72b64a3b4db28d11ce29237c246188f4f51057d65a7eab63b7987e423"
|
|
|
3690
3776
|
|
|
3691
3777
|
[[package]]
|
|
3692
3778
|
name = "wasm-bindgen"
|
|
3693
|
-
version = "0.2.
|
|
3779
|
+
version = "0.2.99"
|
|
3694
3780
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3695
|
-
checksum = "
|
|
3781
|
+
checksum = "a474f6281d1d70c17ae7aa6a613c87fce69a127e2624002df63dcb39d6cf6396"
|
|
3696
3782
|
dependencies = [
|
|
3697
3783
|
"cfg-if",
|
|
3698
3784
|
"once_cell",
|
|
@@ -3701,24 +3787,23 @@ dependencies = [
|
|
|
3701
3787
|
|
|
3702
3788
|
[[package]]
|
|
3703
3789
|
name = "wasm-bindgen-backend"
|
|
3704
|
-
version = "0.2.
|
|
3790
|
+
version = "0.2.99"
|
|
3705
3791
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3706
|
-
checksum = "
|
|
3792
|
+
checksum = "5f89bb38646b4f81674e8f5c3fb81b562be1fd936d84320f3264486418519c79"
|
|
3707
3793
|
dependencies = [
|
|
3708
3794
|
"bumpalo",
|
|
3709
3795
|
"log",
|
|
3710
|
-
"once_cell",
|
|
3711
3796
|
"proc-macro2",
|
|
3712
3797
|
"quote",
|
|
3713
|
-
"syn 2.0.
|
|
3798
|
+
"syn 2.0.90",
|
|
3714
3799
|
"wasm-bindgen-shared",
|
|
3715
3800
|
]
|
|
3716
3801
|
|
|
3717
3802
|
[[package]]
|
|
3718
3803
|
name = "wasm-bindgen-macro"
|
|
3719
|
-
version = "0.2.
|
|
3804
|
+
version = "0.2.99"
|
|
3720
3805
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3721
|
-
checksum = "
|
|
3806
|
+
checksum = "2cc6181fd9a7492eef6fef1f33961e3695e4579b9872a6f7c83aee556666d4fe"
|
|
3722
3807
|
dependencies = [
|
|
3723
3808
|
"quote",
|
|
3724
3809
|
"wasm-bindgen-macro-support",
|
|
@@ -3726,22 +3811,22 @@ dependencies = [
|
|
|
3726
3811
|
|
|
3727
3812
|
[[package]]
|
|
3728
3813
|
name = "wasm-bindgen-macro-support"
|
|
3729
|
-
version = "0.2.
|
|
3814
|
+
version = "0.2.99"
|
|
3730
3815
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3731
|
-
checksum = "
|
|
3816
|
+
checksum = "30d7a95b763d3c45903ed6c81f156801839e5ee968bb07e534c44df0fcd330c2"
|
|
3732
3817
|
dependencies = [
|
|
3733
3818
|
"proc-macro2",
|
|
3734
3819
|
"quote",
|
|
3735
|
-
"syn 2.0.
|
|
3820
|
+
"syn 2.0.90",
|
|
3736
3821
|
"wasm-bindgen-backend",
|
|
3737
3822
|
"wasm-bindgen-shared",
|
|
3738
3823
|
]
|
|
3739
3824
|
|
|
3740
3825
|
[[package]]
|
|
3741
3826
|
name = "wasm-bindgen-shared"
|
|
3742
|
-
version = "0.2.
|
|
3827
|
+
version = "0.2.99"
|
|
3743
3828
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3744
|
-
checksum = "
|
|
3829
|
+
checksum = "943aab3fdaaa029a6e0271b35ea10b72b943135afe9bffca82384098ad0e06a6"
|
|
3745
3830
|
|
|
3746
3831
|
[[package]]
|
|
3747
3832
|
name = "wasm-encoder"
|
|
@@ -3770,7 +3855,7 @@ dependencies = [
|
|
|
3770
3855
|
"ahash",
|
|
3771
3856
|
"bitflags 2.6.0",
|
|
3772
3857
|
"hashbrown 0.14.5",
|
|
3773
|
-
"indexmap 2.
|
|
3858
|
+
"indexmap 2.7.0",
|
|
3774
3859
|
"semver 1.0.23",
|
|
3775
3860
|
"serde",
|
|
3776
3861
|
]
|
|
@@ -3784,7 +3869,7 @@ dependencies = [
|
|
|
3784
3869
|
"ahash",
|
|
3785
3870
|
"bitflags 2.6.0",
|
|
3786
3871
|
"hashbrown 0.14.5",
|
|
3787
|
-
"indexmap 2.
|
|
3872
|
+
"indexmap 2.7.0",
|
|
3788
3873
|
"semver 1.0.23",
|
|
3789
3874
|
"serde",
|
|
3790
3875
|
]
|
|
@@ -3812,7 +3897,7 @@ dependencies = [
|
|
|
3812
3897
|
"cc",
|
|
3813
3898
|
"cfg-if",
|
|
3814
3899
|
"hashbrown 0.14.5",
|
|
3815
|
-
"indexmap 2.
|
|
3900
|
+
"indexmap 2.7.0",
|
|
3816
3901
|
"libc",
|
|
3817
3902
|
"libm",
|
|
3818
3903
|
"log",
|
|
@@ -3860,7 +3945,7 @@ dependencies = [
|
|
|
3860
3945
|
"anyhow",
|
|
3861
3946
|
"proc-macro2",
|
|
3862
3947
|
"quote",
|
|
3863
|
-
"syn 2.0.
|
|
3948
|
+
"syn 2.0.90",
|
|
3864
3949
|
"wasmtime-component-util",
|
|
3865
3950
|
"wasmtime-wit-bindgen",
|
|
3866
3951
|
"wit-parser",
|
|
@@ -3907,7 +3992,7 @@ dependencies = [
|
|
|
3907
3992
|
"cranelift-bitset",
|
|
3908
3993
|
"cranelift-entity",
|
|
3909
3994
|
"gimli 0.31.1",
|
|
3910
|
-
"indexmap 2.
|
|
3995
|
+
"indexmap 2.7.0",
|
|
3911
3996
|
"log",
|
|
3912
3997
|
"object",
|
|
3913
3998
|
"postcard",
|
|
@@ -3946,7 +4031,7 @@ checksum = "db8efb877c9e5e67239d4553bb44dd2a34ae5cfb728f3cf2c5e64439c6ca6ee7"
|
|
|
3946
4031
|
dependencies = [
|
|
3947
4032
|
"proc-macro2",
|
|
3948
4033
|
"quote",
|
|
3949
|
-
"syn 2.0.
|
|
4034
|
+
"syn 2.0.90",
|
|
3950
4035
|
]
|
|
3951
4036
|
|
|
3952
4037
|
[[package]]
|
|
@@ -3957,15 +4042,15 @@ checksum = "4bef2a726fd8d1ee9b0144655e16c492dc32eb4c7c9f7e3309fcffe637870933"
|
|
|
3957
4042
|
dependencies = [
|
|
3958
4043
|
"anyhow",
|
|
3959
4044
|
"heck 0.5.0",
|
|
3960
|
-
"indexmap 2.
|
|
4045
|
+
"indexmap 2.7.0",
|
|
3961
4046
|
"wit-parser",
|
|
3962
4047
|
]
|
|
3963
4048
|
|
|
3964
4049
|
[[package]]
|
|
3965
4050
|
name = "web-sys"
|
|
3966
|
-
version = "0.3.
|
|
4051
|
+
version = "0.3.76"
|
|
3967
4052
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3968
|
-
checksum = "
|
|
4053
|
+
checksum = "04dd7223427d52553d3702c004d3b2fe07c148165faa56313cb00211e31c12bc"
|
|
3969
4054
|
dependencies = [
|
|
3970
4055
|
"js-sys",
|
|
3971
4056
|
"wasm-bindgen",
|
|
@@ -4313,7 +4398,7 @@ checksum = "0d3d1066ab761b115f97fef2b191090faabcb0f37b555b758d3caf42d4ed9e55"
|
|
|
4313
4398
|
dependencies = [
|
|
4314
4399
|
"anyhow",
|
|
4315
4400
|
"id-arena",
|
|
4316
|
-
"indexmap 2.
|
|
4401
|
+
"indexmap 2.7.0",
|
|
4317
4402
|
"log",
|
|
4318
4403
|
"semver 1.0.23",
|
|
4319
4404
|
"serde",
|
|
@@ -4358,7 +4443,7 @@ checksum = "cfe53a6657fd280eaa890a3bc59152892ffa3e30101319d168b781ed6529b049"
|
|
|
4358
4443
|
|
|
4359
4444
|
[[package]]
|
|
4360
4445
|
name = "yara-x"
|
|
4361
|
-
version = "0.
|
|
4446
|
+
version = "0.12.0"
|
|
4362
4447
|
dependencies = [
|
|
4363
4448
|
"aho-corasick",
|
|
4364
4449
|
"annotate-snippets",
|
|
@@ -4380,7 +4465,7 @@ dependencies = [
|
|
|
4380
4465
|
"globwalk",
|
|
4381
4466
|
"goldenfile",
|
|
4382
4467
|
"ihex",
|
|
4383
|
-
"indexmap 2.
|
|
4468
|
+
"indexmap 2.7.0",
|
|
4384
4469
|
"intaglio",
|
|
4385
4470
|
"itertools 0.13.0",
|
|
4386
4471
|
"lazy_static",
|
|
@@ -4407,13 +4492,13 @@ dependencies = [
|
|
|
4407
4492
|
"regex-syntax 0.8.5",
|
|
4408
4493
|
"roxmltree",
|
|
4409
4494
|
"rsa",
|
|
4410
|
-
"rustc-hash 2.
|
|
4495
|
+
"rustc-hash 2.1.0",
|
|
4411
4496
|
"serde",
|
|
4412
4497
|
"serde_json",
|
|
4413
4498
|
"sha1",
|
|
4414
4499
|
"sha2 0.10.8",
|
|
4415
4500
|
"smallvec",
|
|
4416
|
-
"thiserror 2.0.
|
|
4501
|
+
"thiserror 2.0.6",
|
|
4417
4502
|
"tlsh-fixed",
|
|
4418
4503
|
"uuid",
|
|
4419
4504
|
"walrus",
|
|
@@ -4429,7 +4514,7 @@ dependencies = [
|
|
|
4429
4514
|
|
|
4430
4515
|
[[package]]
|
|
4431
4516
|
name = "yara-x-capi"
|
|
4432
|
-
version = "0.
|
|
4517
|
+
version = "0.12.0"
|
|
4433
4518
|
dependencies = [
|
|
4434
4519
|
"cbindgen",
|
|
4435
4520
|
"serde_json",
|
|
@@ -4438,7 +4523,7 @@ dependencies = [
|
|
|
4438
4523
|
|
|
4439
4524
|
[[package]]
|
|
4440
4525
|
name = "yara-x-cli"
|
|
4441
|
-
version = "0.
|
|
4526
|
+
version = "0.12.0"
|
|
4442
4527
|
dependencies = [
|
|
4443
4528
|
"anyhow",
|
|
4444
4529
|
"ascii_tree",
|
|
@@ -4472,7 +4557,7 @@ dependencies = [
|
|
|
4472
4557
|
|
|
4473
4558
|
[[package]]
|
|
4474
4559
|
name = "yara-x-fmt"
|
|
4475
|
-
version = "0.
|
|
4560
|
+
version = "0.12.0"
|
|
4476
4561
|
dependencies = [
|
|
4477
4562
|
"bitmask",
|
|
4478
4563
|
"bstr",
|
|
@@ -4481,23 +4566,23 @@ dependencies = [
|
|
|
4481
4566
|
"lazy_static",
|
|
4482
4567
|
"pretty_assertions",
|
|
4483
4568
|
"rayon",
|
|
4484
|
-
"thiserror 2.0.
|
|
4569
|
+
"thiserror 2.0.6",
|
|
4485
4570
|
"yara-x-parser",
|
|
4486
4571
|
]
|
|
4487
4572
|
|
|
4488
4573
|
[[package]]
|
|
4489
4574
|
name = "yara-x-macros"
|
|
4490
|
-
version = "0.
|
|
4575
|
+
version = "0.12.0"
|
|
4491
4576
|
dependencies = [
|
|
4492
4577
|
"darling",
|
|
4493
4578
|
"proc-macro2",
|
|
4494
4579
|
"quote",
|
|
4495
|
-
"syn 2.0.
|
|
4580
|
+
"syn 2.0.90",
|
|
4496
4581
|
]
|
|
4497
4582
|
|
|
4498
4583
|
[[package]]
|
|
4499
4584
|
name = "yara-x-parser"
|
|
4500
|
-
version = "0.
|
|
4585
|
+
version = "0.12.0"
|
|
4501
4586
|
dependencies = [
|
|
4502
4587
|
"anyhow",
|
|
4503
4588
|
"ascii_tree",
|
|
@@ -4506,7 +4591,7 @@ dependencies = [
|
|
|
4506
4591
|
"env_logger",
|
|
4507
4592
|
"globwalk",
|
|
4508
4593
|
"goldenfile",
|
|
4509
|
-
"indexmap 2.
|
|
4594
|
+
"indexmap 2.7.0",
|
|
4510
4595
|
"itertools 0.13.0",
|
|
4511
4596
|
"log",
|
|
4512
4597
|
"logos",
|
|
@@ -4514,14 +4599,14 @@ dependencies = [
|
|
|
4514
4599
|
"pretty_assertions",
|
|
4515
4600
|
"rayon",
|
|
4516
4601
|
"rowan",
|
|
4517
|
-
"rustc-hash 2.
|
|
4602
|
+
"rustc-hash 2.1.0",
|
|
4518
4603
|
"serde",
|
|
4519
4604
|
"yansi",
|
|
4520
4605
|
]
|
|
4521
4606
|
|
|
4522
4607
|
[[package]]
|
|
4523
4608
|
name = "yara-x-proto"
|
|
4524
|
-
version = "0.
|
|
4609
|
+
version = "0.12.0"
|
|
4525
4610
|
dependencies = [
|
|
4526
4611
|
"protobuf",
|
|
4527
4612
|
"protobuf-codegen",
|
|
@@ -4530,7 +4615,7 @@ dependencies = [
|
|
|
4530
4615
|
|
|
4531
4616
|
[[package]]
|
|
4532
4617
|
name = "yara-x-proto-yaml"
|
|
4533
|
-
version = "0.
|
|
4618
|
+
version = "0.12.0"
|
|
4534
4619
|
dependencies = [
|
|
4535
4620
|
"chrono",
|
|
4536
4621
|
"globwalk",
|
|
@@ -4545,7 +4630,7 @@ dependencies = [
|
|
|
4545
4630
|
|
|
4546
4631
|
[[package]]
|
|
4547
4632
|
name = "yara-x-py"
|
|
4548
|
-
version = "0.
|
|
4633
|
+
version = "0.12.0"
|
|
4549
4634
|
dependencies = [
|
|
4550
4635
|
"protobuf-json-mapping",
|
|
4551
4636
|
"pyo3",
|
|
@@ -4573,7 +4658,7 @@ checksum = "fa4f8080344d4671fb4e831a13ad1e68092748387dfc4f55e356242fae12ce3e"
|
|
|
4573
4658
|
dependencies = [
|
|
4574
4659
|
"proc-macro2",
|
|
4575
4660
|
"quote",
|
|
4576
|
-
"syn 2.0.
|
|
4661
|
+
"syn 2.0.90",
|
|
4577
4662
|
]
|
|
4578
4663
|
|
|
4579
4664
|
[[package]]
|
|
@@ -4593,7 +4678,7 @@ checksum = "ce36e65b0d2999d2aafac989fb249189a141aee1f53c612c1f37d72631959f69"
|
|
|
4593
4678
|
dependencies = [
|
|
4594
4679
|
"proc-macro2",
|
|
4595
4680
|
"quote",
|
|
4596
|
-
"syn 2.0.
|
|
4681
|
+
"syn 2.0.90",
|
|
4597
4682
|
]
|
|
4598
4683
|
|
|
4599
4684
|
[[package]]
|
|
@@ -4612,13 +4697,13 @@ dependencies = [
|
|
|
4612
4697
|
"displaydoc",
|
|
4613
4698
|
"flate2",
|
|
4614
4699
|
"hmac",
|
|
4615
|
-
"indexmap 2.
|
|
4700
|
+
"indexmap 2.7.0",
|
|
4616
4701
|
"lzma-rs",
|
|
4617
4702
|
"memchr",
|
|
4618
4703
|
"pbkdf2",
|
|
4619
4704
|
"rand",
|
|
4620
4705
|
"sha1",
|
|
4621
|
-
"thiserror 2.0.
|
|
4706
|
+
"thiserror 2.0.6",
|
|
4622
4707
|
"time",
|
|
4623
4708
|
"zeroize",
|
|
4624
4709
|
"zopfli",
|