yara-x 0.12.0__tar.gz → 0.13.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.12.0 → yara_x-0.13.0}/Cargo.lock +480 -314
- {yara_x-0.12.0 → yara_x-0.13.0}/Cargo.toml +19 -15
- {yara_x-0.12.0 → yara_x-0.13.0}/PKG-INFO +1 -1
- yara_x-0.13.0/fmt/Cargo.lock +7 -0
- yara_x-0.13.0/fmt/Cargo.toml +25 -0
- yara_x-0.13.0/fmt/src/align.rs +123 -0
- yara_x-0.13.0/fmt/src/bubble.rs +254 -0
- yara_x-0.13.0/fmt/src/comments.rs +510 -0
- yara_x-0.13.0/fmt/src/format_hex_patterns.rs +117 -0
- yara_x-0.13.0/fmt/src/indentation.rs +83 -0
- yara_x-0.13.0/fmt/src/lib.rs +1379 -0
- yara_x-0.13.0/fmt/src/processor/mod.rs +508 -0
- yara_x-0.13.0/fmt/src/processor/tests.rs +262 -0
- yara_x-0.13.0/fmt/src/testdata/config_tests/align_metadata_false.formatted +12 -0
- yara_x-0.13.0/fmt/src/testdata/config_tests/align_patterns_false.formatted +12 -0
- yara_x-0.13.0/fmt/src/testdata/config_tests/align_rule.unformatted +1 -0
- yara_x-0.13.0/fmt/src/testdata/config_tests/empty_line_after_section_header_true.formatted +13 -0
- yara_x-0.13.0/fmt/src/testdata/config_tests/empty_line_before_section_header_false.formatted +8 -0
- yara_x-0.13.0/fmt/src/testdata/config_tests/generic_rule.unformatted +2 -0
- yara_x-0.13.0/fmt/src/testdata/config_tests/indent_section_contents_false.formatted +10 -0
- yara_x-0.13.0/fmt/src/testdata/config_tests/indent_section_headers_false.formatted +10 -0
- yara_x-0.13.0/fmt/src/testdata/config_tests/indent_spaces_one.formatted +10 -0
- yara_x-0.13.0/fmt/src/testdata/config_tests/indent_spaces_zero.formatted +10 -0
- yara_x-0.13.0/fmt/src/testdata/config_tests/newline_before_curly_brace_true.formatted +11 -0
- yara_x-0.13.0/fmt/src/testdata/default_tests/test1.formatted +4 -0
- yara_x-0.13.0/fmt/src/testdata/default_tests/test1.unformatted +1 -0
- yara_x-0.13.0/fmt/src/testdata/default_tests/test10.formatted +10 -0
- yara_x-0.13.0/fmt/src/testdata/default_tests/test10.unformatted +11 -0
- yara_x-0.13.0/fmt/src/testdata/default_tests/test11.formatted +4 -0
- yara_x-0.13.0/fmt/src/testdata/default_tests/test11.unformatted +6 -0
- yara_x-0.13.0/fmt/src/testdata/default_tests/test12.formatted +5 -0
- yara_x-0.13.0/fmt/src/testdata/default_tests/test12.unformatted +6 -0
- yara_x-0.13.0/fmt/src/testdata/default_tests/test13.formatted +4 -0
- yara_x-0.13.0/fmt/src/testdata/default_tests/test13.unformatted +7 -0
- yara_x-0.13.0/fmt/src/testdata/default_tests/test14.formatted +5 -0
- yara_x-0.13.0/fmt/src/testdata/default_tests/test14.unformatted +7 -0
- yara_x-0.13.0/fmt/src/testdata/default_tests/test15.formatted +6 -0
- yara_x-0.13.0/fmt/src/testdata/default_tests/test15.unformatted +7 -0
- yara_x-0.13.0/fmt/src/testdata/default_tests/test16.formatted +13 -0
- yara_x-0.13.0/fmt/src/testdata/default_tests/test16.unformatted +9 -0
- yara_x-0.13.0/fmt/src/testdata/default_tests/test17.formatted +14 -0
- yara_x-0.13.0/fmt/src/testdata/default_tests/test17.unformatted +12 -0
- yara_x-0.13.0/fmt/src/testdata/default_tests/test18.formatted +7 -0
- yara_x-0.13.0/fmt/src/testdata/default_tests/test18.unformatted +6 -0
- yara_x-0.13.0/fmt/src/testdata/default_tests/test19.formatted +12 -0
- yara_x-0.13.0/fmt/src/testdata/default_tests/test19.unformatted +9 -0
- yara_x-0.13.0/fmt/src/testdata/default_tests/test2.formatted +4 -0
- yara_x-0.13.0/fmt/src/testdata/default_tests/test2.unformatted +2 -0
- yara_x-0.13.0/fmt/src/testdata/default_tests/test20.formatted +24 -0
- yara_x-0.13.0/fmt/src/testdata/default_tests/test20.unformatted +22 -0
- yara_x-0.13.0/fmt/src/testdata/default_tests/test21.formatted +4 -0
- yara_x-0.13.0/fmt/src/testdata/default_tests/test21.unformatted +4 -0
- yara_x-0.13.0/fmt/src/testdata/default_tests/test22.formatted +4 -0
- yara_x-0.13.0/fmt/src/testdata/default_tests/test22.unformatted +4 -0
- yara_x-0.13.0/fmt/src/testdata/default_tests/test23.formatted +7 -0
- yara_x-0.13.0/fmt/src/testdata/default_tests/test23.unformatted +6 -0
- yara_x-0.13.0/fmt/src/testdata/default_tests/test24.formatted +7 -0
- yara_x-0.13.0/fmt/src/testdata/default_tests/test24.unformatted +6 -0
- yara_x-0.13.0/fmt/src/testdata/default_tests/test25.formatted +11 -0
- yara_x-0.13.0/fmt/src/testdata/default_tests/test25.unformatted +10 -0
- yara_x-0.13.0/fmt/src/testdata/default_tests/test26.formatted +3 -0
- yara_x-0.13.0/fmt/src/testdata/default_tests/test26.unformatted +3 -0
- yara_x-0.13.0/fmt/src/testdata/default_tests/test27.formatted +7 -0
- yara_x-0.13.0/fmt/src/testdata/default_tests/test27.unformatted +6 -0
- yara_x-0.13.0/fmt/src/testdata/default_tests/test28.formatted +11 -0
- yara_x-0.13.0/fmt/src/testdata/default_tests/test28.unformatted +10 -0
- yara_x-0.13.0/fmt/src/testdata/default_tests/test29.formatted +16 -0
- yara_x-0.13.0/fmt/src/testdata/default_tests/test29.unformatted +15 -0
- yara_x-0.13.0/fmt/src/testdata/default_tests/test3.formatted +5 -0
- yara_x-0.13.0/fmt/src/testdata/default_tests/test3.unformatted +6 -0
- yara_x-0.13.0/fmt/src/testdata/default_tests/test30.formatted +7 -0
- yara_x-0.13.0/fmt/src/testdata/default_tests/test30.unformatted +6 -0
- yara_x-0.13.0/fmt/src/testdata/default_tests/test31.formatted +8 -0
- yara_x-0.13.0/fmt/src/testdata/default_tests/test31.unformatted +6 -0
- yara_x-0.13.0/fmt/src/testdata/default_tests/test32.formatted +11 -0
- yara_x-0.13.0/fmt/src/testdata/default_tests/test32.unformatted +16 -0
- yara_x-0.13.0/fmt/src/testdata/default_tests/test33.formatted +6 -0
- yara_x-0.13.0/fmt/src/testdata/default_tests/test33.unformatted +6 -0
- yara_x-0.13.0/fmt/src/testdata/default_tests/test34.formatted +16 -0
- yara_x-0.13.0/fmt/src/testdata/default_tests/test34.unformatted +13 -0
- yara_x-0.13.0/fmt/src/testdata/default_tests/test4.formatted +9 -0
- yara_x-0.13.0/fmt/src/testdata/default_tests/test4.unformatted +1 -0
- yara_x-0.13.0/fmt/src/testdata/default_tests/test5.formatted +12 -0
- yara_x-0.13.0/fmt/src/testdata/default_tests/test5.unformatted +1 -0
- yara_x-0.13.0/fmt/src/testdata/default_tests/test6.formatted +12 -0
- yara_x-0.13.0/fmt/src/testdata/default_tests/test6.unformatted +4 -0
- yara_x-0.13.0/fmt/src/testdata/default_tests/test7.formatted +11 -0
- yara_x-0.13.0/fmt/src/testdata/default_tests/test7.unformatted +1 -0
- yara_x-0.13.0/fmt/src/testdata/default_tests/test8.formatted +8 -0
- yara_x-0.13.0/fmt/src/testdata/default_tests/test8.unformatted +6 -0
- yara_x-0.13.0/fmt/src/testdata/default_tests/test9.formatted +9 -0
- yara_x-0.13.0/fmt/src/testdata/default_tests/test9.unformatted +4 -0
- yara_x-0.13.0/fmt/src/tests.rs +155 -0
- yara_x-0.13.0/fmt/src/tokens/mod.rs +542 -0
- yara_x-0.13.0/fmt/src/tokens/tests.rs +168 -0
- yara_x-0.13.0/fmt/src/trailing_spaces.rs +101 -0
- {yara_x-0.12.0 → yara_x-0.13.0}/lib/Cargo.toml +3 -1
- {yara_x-0.12.0 → yara_x-0.13.0}/lib/src/compiler/atoms/mod.rs +3 -3
- {yara_x-0.12.0 → yara_x-0.13.0}/lib/src/compiler/context.rs +1 -1
- {yara_x-0.12.0 → yara_x-0.13.0}/lib/src/compiler/emit.rs +7 -6
- {yara_x-0.12.0 → yara_x-0.13.0}/lib/src/compiler/errors.rs +91 -0
- {yara_x-0.12.0 → yara_x-0.13.0}/lib/src/compiler/ir/ast2ir.rs +21 -22
- {yara_x-0.12.0 → yara_x-0.13.0}/lib/src/compiler/ir/dfs.rs +1 -1
- {yara_x-0.12.0 → yara_x-0.13.0}/lib/src/compiler/ir/mod.rs +21 -21
- yara_x-0.13.0/lib/src/compiler/linters.rs +302 -0
- {yara_x-0.12.0 → yara_x-0.13.0}/lib/src/compiler/mod.rs +96 -62
- {yara_x-0.12.0 → yara_x-0.13.0}/lib/src/compiler/tests/mod.rs +98 -5
- yara_x-0.13.0/lib/src/compiler/tests/testdata/errors/140.in +5 -0
- yara_x-0.13.0/lib/src/compiler/tests/testdata/errors/140.out +6 -0
- {yara_x-0.12.0 → yara_x-0.13.0}/lib/src/compiler/warnings.rs +94 -0
- {yara_x-0.12.0 → yara_x-0.13.0}/lib/src/lib.rs +9 -0
- {yara_x-0.12.0 → yara_x-0.13.0}/lib/src/models.rs +8 -8
- {yara_x-0.12.0 → yara_x-0.13.0}/lib/src/modules/dotnet/parser.rs +1 -1
- {yara_x-0.12.0 → yara_x-0.13.0}/lib/src/modules/elf/parser.rs +1 -4
- {yara_x-0.12.0 → yara_x-0.13.0}/lib/src/modules/macho/parser.rs +146 -58
- {yara_x-0.12.0 → yara_x-0.13.0}/lib/src/modules/mod.rs +2 -0
- {yara_x-0.12.0 → yara_x-0.13.0}/lib/src/modules/pe/authenticode.rs +8 -8
- {yara_x-0.12.0 → yara_x-0.13.0}/lib/src/modules/pe/mod.rs +0 -1
- {yara_x-0.12.0 → yara_x-0.13.0}/lib/src/modules/pe/parser.rs +1 -0
- {yara_x-0.12.0 → yara_x-0.13.0}/lib/src/modules/protos/macho.proto +7 -6
- {yara_x-0.12.0 → yara_x-0.13.0}/lib/src/modules/test_proto2/mod.rs +24 -3
- {yara_x-0.12.0 → yara_x-0.13.0}/lib/src/modules/test_proto2/tests/mod.rs +6 -0
- {yara_x-0.12.0/lib/src/modules/pe → yara_x-0.13.0/lib/src/modules/utils}/asn1.rs +3 -3
- yara_x-0.13.0/lib/src/modules/utils/mod.rs +1 -0
- {yara_x-0.12.0 → yara_x-0.13.0}/lib/src/re/fast/fastvm.rs +14 -14
- {yara_x-0.12.0 → yara_x-0.13.0}/lib/src/re/fast/instr.rs +1 -1
- {yara_x-0.12.0 → yara_x-0.13.0}/lib/src/re/hir.rs +1 -1
- {yara_x-0.12.0 → yara_x-0.13.0}/lib/src/re/thompson/compiler.rs +1 -4
- {yara_x-0.12.0 → yara_x-0.13.0}/lib/src/re/thompson/instr.rs +4 -4
- {yara_x-0.12.0 → yara_x-0.13.0}/lib/src/scanner/context.rs +5 -5
- {yara_x-0.12.0 → yara_x-0.13.0}/lib/src/scanner/mod.rs +9 -9
- {yara_x-0.12.0 → yara_x-0.13.0}/lib/src/symbols/mod.rs +1 -1
- {yara_x-0.12.0 → yara_x-0.13.0}/lib/src/tests/mod.rs +12 -0
- {yara_x-0.12.0 → yara_x-0.13.0}/lib/src/wasm/mod.rs +23 -1
- yara_x-0.13.0/macros/Cargo.lock +63 -0
- {yara_x-0.12.0 → yara_x-0.13.0}/parser/Cargo.toml +1 -1
- {yara_x-0.12.0 → yara_x-0.13.0}/parser/src/ast/ascii_tree.rs +2 -2
- {yara_x-0.12.0 → yara_x-0.13.0}/parser/src/ast/cst2ast.rs +15 -16
- {yara_x-0.12.0 → yara_x-0.13.0}/parser/src/ast/mod.rs +31 -18
- {yara_x-0.12.0 → yara_x-0.13.0}/parser/src/cst/mod.rs +23 -14
- {yara_x-0.12.0 → yara_x-0.13.0}/parser/src/cst/tests.rs +8 -4
- {yara_x-0.12.0 → yara_x-0.13.0}/parser/src/parser/mod.rs +7 -9
- {yara_x-0.12.0 → yara_x-0.13.0}/parser/src/parser/tests/mod.rs +1 -1
- {yara_x-0.12.0 → yara_x-0.13.0}/parser/src/parser/token_stream.rs +1 -1
- {yara_x-0.12.0 → yara_x-0.13.0}/parser/src/tokenizer/mod.rs +49 -77
- yara_x-0.13.0/proto/Cargo.lock +300 -0
- yara_x-0.13.0/proto/README.md +75 -0
- {yara_x-0.12.0 → yara_x-0.13.0}/py/Cargo.toml +6 -1
- {yara_x-0.12.0 → yara_x-0.13.0}/py/src/lib.rs +89 -0
- {yara_x-0.12.0 → yara_x-0.13.0}/py/tests/test_api.py +26 -0
- yara_x-0.13.0/py/yara_x.pyi +300 -0
- {yara_x-0.12.0 → yara_x-0.13.0}/pyproject.toml +1 -0
- yara_x-0.12.0/py/yara_x.pyi +0 -188
- {yara_x-0.12.0 → yara_x-0.13.0}/README.md +0 -0
- {yara_x-0.12.0/lib → yara_x-0.13.0/fmt}/README.md +0 -0
- {yara_x-0.12.0/parser → yara_x-0.13.0/lib}/README.md +0 -0
- {yara_x-0.12.0 → yara_x-0.13.0}/lib/build.rs +0 -0
- {yara_x-0.12.0 → yara_x-0.13.0}/lib/src/compiler/atoms/mask.rs +0 -0
- {yara_x-0.12.0 → yara_x-0.13.0}/lib/src/compiler/atoms/quality.rs +0 -0
- {yara_x-0.12.0 → yara_x-0.13.0}/lib/src/compiler/base64.rs +0 -0
- {yara_x-0.12.0 → yara_x-0.13.0}/lib/src/compiler/ir/hex2hir.rs +0 -0
- {yara_x-0.12.0 → yara_x-0.13.0}/lib/src/compiler/ir/tests/mod.rs +0 -0
- {yara_x-0.12.0 → yara_x-0.13.0}/lib/src/compiler/ir/tests/testdata/1.cse.ir +0 -0
- {yara_x-0.12.0 → yara_x-0.13.0}/lib/src/compiler/ir/tests/testdata/1.hoisting.ir +0 -0
- {yara_x-0.12.0 → yara_x-0.13.0}/lib/src/compiler/ir/tests/testdata/1.in +0 -0
- {yara_x-0.12.0 → yara_x-0.13.0}/lib/src/compiler/ir/tests/testdata/1.ir +0 -0
- {yara_x-0.12.0 → yara_x-0.13.0}/lib/src/compiler/ir/tests/testdata/1.no-folding.ir +0 -0
- {yara_x-0.12.0 → yara_x-0.13.0}/lib/src/compiler/ir/tests/testdata/2.cse.ir +0 -0
- {yara_x-0.12.0 → yara_x-0.13.0}/lib/src/compiler/ir/tests/testdata/2.hoisting.ir +0 -0
- {yara_x-0.12.0 → yara_x-0.13.0}/lib/src/compiler/ir/tests/testdata/2.in +0 -0
- {yara_x-0.12.0 → yara_x-0.13.0}/lib/src/compiler/ir/tests/testdata/2.ir +0 -0
- {yara_x-0.12.0 → yara_x-0.13.0}/lib/src/compiler/ir/tests/testdata/2.no-folding.ir +0 -0
- {yara_x-0.12.0 → yara_x-0.13.0}/lib/src/compiler/ir/tests/testdata/3.cse.ir +0 -0
- {yara_x-0.12.0 → yara_x-0.13.0}/lib/src/compiler/ir/tests/testdata/3.hoisting.ir +0 -0
- {yara_x-0.12.0 → yara_x-0.13.0}/lib/src/compiler/ir/tests/testdata/3.in +0 -0
- {yara_x-0.12.0 → yara_x-0.13.0}/lib/src/compiler/ir/tests/testdata/3.ir +0 -0
- {yara_x-0.12.0 → yara_x-0.13.0}/lib/src/compiler/ir/tests/testdata/3.no-folding.ir +0 -0
- {yara_x-0.12.0 → yara_x-0.13.0}/lib/src/compiler/ir/tests/testdata/4.cse.ir +0 -0
- {yara_x-0.12.0 → yara_x-0.13.0}/lib/src/compiler/ir/tests/testdata/4.hoisting.ir +0 -0
- {yara_x-0.12.0 → yara_x-0.13.0}/lib/src/compiler/ir/tests/testdata/4.in +0 -0
- {yara_x-0.12.0 → yara_x-0.13.0}/lib/src/compiler/ir/tests/testdata/4.ir +0 -0
- {yara_x-0.12.0 → yara_x-0.13.0}/lib/src/compiler/ir/tests/testdata/4.no-folding.ir +0 -0
- {yara_x-0.12.0 → yara_x-0.13.0}/lib/src/compiler/ir/tests/testdata/5.cse.ir +0 -0
- {yara_x-0.12.0 → yara_x-0.13.0}/lib/src/compiler/ir/tests/testdata/5.hoisting.ir +0 -0
- {yara_x-0.12.0 → yara_x-0.13.0}/lib/src/compiler/ir/tests/testdata/5.in +0 -0
- {yara_x-0.12.0 → yara_x-0.13.0}/lib/src/compiler/ir/tests/testdata/5.ir +0 -0
- {yara_x-0.12.0 → yara_x-0.13.0}/lib/src/compiler/ir/tests/testdata/5.no-folding.ir +0 -0
- {yara_x-0.12.0 → yara_x-0.13.0}/lib/src/compiler/ir/tests/testdata/6.cse.ir +0 -0
- {yara_x-0.12.0 → yara_x-0.13.0}/lib/src/compiler/ir/tests/testdata/6.hoisting.ir +0 -0
- {yara_x-0.12.0 → yara_x-0.13.0}/lib/src/compiler/ir/tests/testdata/6.in +0 -0
- {yara_x-0.12.0 → yara_x-0.13.0}/lib/src/compiler/ir/tests/testdata/6.ir +0 -0
- {yara_x-0.12.0 → yara_x-0.13.0}/lib/src/compiler/ir/tests/testdata/6.no-folding.ir +0 -0
- {yara_x-0.12.0 → yara_x-0.13.0}/lib/src/compiler/ir/tests/testdata/7.cse.ir +0 -0
- {yara_x-0.12.0 → yara_x-0.13.0}/lib/src/compiler/ir/tests/testdata/7.hoisting.ir +0 -0
- {yara_x-0.12.0 → yara_x-0.13.0}/lib/src/compiler/ir/tests/testdata/7.in +0 -0
- {yara_x-0.12.0 → yara_x-0.13.0}/lib/src/compiler/ir/tests/testdata/7.ir +0 -0
- {yara_x-0.12.0 → yara_x-0.13.0}/lib/src/compiler/ir/tests/testdata/7.no-folding.ir +0 -0
- {yara_x-0.12.0 → yara_x-0.13.0}/lib/src/compiler/ir/tests/testdata/8.cse.ir +0 -0
- {yara_x-0.12.0 → yara_x-0.13.0}/lib/src/compiler/ir/tests/testdata/8.hoisting.ir +0 -0
- {yara_x-0.12.0 → yara_x-0.13.0}/lib/src/compiler/ir/tests/testdata/8.in +0 -0
- {yara_x-0.12.0 → yara_x-0.13.0}/lib/src/compiler/ir/tests/testdata/8.ir +0 -0
- {yara_x-0.12.0 → yara_x-0.13.0}/lib/src/compiler/ir/tests/testdata/8.no-folding.ir +0 -0
- {yara_x-0.12.0 → yara_x-0.13.0}/lib/src/compiler/ir/tests/testdata/9.cse.ir +0 -0
- {yara_x-0.12.0 → yara_x-0.13.0}/lib/src/compiler/ir/tests/testdata/9.hoisting.ir +0 -0
- {yara_x-0.12.0 → yara_x-0.13.0}/lib/src/compiler/ir/tests/testdata/9.in +0 -0
- {yara_x-0.12.0 → yara_x-0.13.0}/lib/src/compiler/ir/tests/testdata/9.ir +0 -0
- {yara_x-0.12.0 → yara_x-0.13.0}/lib/src/compiler/ir/tests/testdata/9.no-folding.ir +0 -0
- {yara_x-0.12.0 → yara_x-0.13.0}/lib/src/compiler/report.rs +0 -0
- {yara_x-0.12.0 → yara_x-0.13.0}/lib/src/compiler/rules.rs +0 -0
- {yara_x-0.12.0 → yara_x-0.13.0}/lib/src/compiler/tests/testdata/errors/1.in +0 -0
- {yara_x-0.12.0 → yara_x-0.13.0}/lib/src/compiler/tests/testdata/errors/1.out +0 -0
- {yara_x-0.12.0 → yara_x-0.13.0}/lib/src/compiler/tests/testdata/errors/10.in +0 -0
- {yara_x-0.12.0 → yara_x-0.13.0}/lib/src/compiler/tests/testdata/errors/10.out +0 -0
- {yara_x-0.12.0 → yara_x-0.13.0}/lib/src/compiler/tests/testdata/errors/100.in +0 -0
- {yara_x-0.12.0 → yara_x-0.13.0}/lib/src/compiler/tests/testdata/errors/100.out +0 -0
- {yara_x-0.12.0 → yara_x-0.13.0}/lib/src/compiler/tests/testdata/errors/101.in +0 -0
- {yara_x-0.12.0 → yara_x-0.13.0}/lib/src/compiler/tests/testdata/errors/101.out +0 -0
- {yara_x-0.12.0 → yara_x-0.13.0}/lib/src/compiler/tests/testdata/errors/102.in +0 -0
- {yara_x-0.12.0 → yara_x-0.13.0}/lib/src/compiler/tests/testdata/errors/102.out +0 -0
- {yara_x-0.12.0 → yara_x-0.13.0}/lib/src/compiler/tests/testdata/errors/103.in +0 -0
- {yara_x-0.12.0 → yara_x-0.13.0}/lib/src/compiler/tests/testdata/errors/103.out +0 -0
- {yara_x-0.12.0 → yara_x-0.13.0}/lib/src/compiler/tests/testdata/errors/104.in +0 -0
- {yara_x-0.12.0 → yara_x-0.13.0}/lib/src/compiler/tests/testdata/errors/104.out +0 -0
- {yara_x-0.12.0 → yara_x-0.13.0}/lib/src/compiler/tests/testdata/errors/105.in +0 -0
- {yara_x-0.12.0 → yara_x-0.13.0}/lib/src/compiler/tests/testdata/errors/105.out +0 -0
- {yara_x-0.12.0 → yara_x-0.13.0}/lib/src/compiler/tests/testdata/errors/106.in +0 -0
- {yara_x-0.12.0 → yara_x-0.13.0}/lib/src/compiler/tests/testdata/errors/106.out +0 -0
- {yara_x-0.12.0 → yara_x-0.13.0}/lib/src/compiler/tests/testdata/errors/107.in +0 -0
- {yara_x-0.12.0 → yara_x-0.13.0}/lib/src/compiler/tests/testdata/errors/107.out +0 -0
- {yara_x-0.12.0 → yara_x-0.13.0}/lib/src/compiler/tests/testdata/errors/108.in +0 -0
- {yara_x-0.12.0 → yara_x-0.13.0}/lib/src/compiler/tests/testdata/errors/108.out +0 -0
- {yara_x-0.12.0 → yara_x-0.13.0}/lib/src/compiler/tests/testdata/errors/109.in +0 -0
- {yara_x-0.12.0 → yara_x-0.13.0}/lib/src/compiler/tests/testdata/errors/109.out +0 -0
- {yara_x-0.12.0 → yara_x-0.13.0}/lib/src/compiler/tests/testdata/errors/11.in +0 -0
- {yara_x-0.12.0 → yara_x-0.13.0}/lib/src/compiler/tests/testdata/errors/11.out +0 -0
- {yara_x-0.12.0 → yara_x-0.13.0}/lib/src/compiler/tests/testdata/errors/110.in +0 -0
- {yara_x-0.12.0 → yara_x-0.13.0}/lib/src/compiler/tests/testdata/errors/110.out +0 -0
- {yara_x-0.12.0 → yara_x-0.13.0}/lib/src/compiler/tests/testdata/errors/111.in +0 -0
- {yara_x-0.12.0 → yara_x-0.13.0}/lib/src/compiler/tests/testdata/errors/111.out +0 -0
- {yara_x-0.12.0 → yara_x-0.13.0}/lib/src/compiler/tests/testdata/errors/112.in +0 -0
- {yara_x-0.12.0 → yara_x-0.13.0}/lib/src/compiler/tests/testdata/errors/112.out +0 -0
- {yara_x-0.12.0 → yara_x-0.13.0}/lib/src/compiler/tests/testdata/errors/113.in +0 -0
- {yara_x-0.12.0 → yara_x-0.13.0}/lib/src/compiler/tests/testdata/errors/113.out +0 -0
- {yara_x-0.12.0 → yara_x-0.13.0}/lib/src/compiler/tests/testdata/errors/114.in +0 -0
- {yara_x-0.12.0 → yara_x-0.13.0}/lib/src/compiler/tests/testdata/errors/114.out +0 -0
- {yara_x-0.12.0 → yara_x-0.13.0}/lib/src/compiler/tests/testdata/errors/115.in +0 -0
- {yara_x-0.12.0 → yara_x-0.13.0}/lib/src/compiler/tests/testdata/errors/115.out +0 -0
- {yara_x-0.12.0 → yara_x-0.13.0}/lib/src/compiler/tests/testdata/errors/116.in +0 -0
- {yara_x-0.12.0 → yara_x-0.13.0}/lib/src/compiler/tests/testdata/errors/116.out +0 -0
- {yara_x-0.12.0 → yara_x-0.13.0}/lib/src/compiler/tests/testdata/errors/117.in +0 -0
- {yara_x-0.12.0 → yara_x-0.13.0}/lib/src/compiler/tests/testdata/errors/117.out +0 -0
- {yara_x-0.12.0 → yara_x-0.13.0}/lib/src/compiler/tests/testdata/errors/118.in +0 -0
- {yara_x-0.12.0 → yara_x-0.13.0}/lib/src/compiler/tests/testdata/errors/118.out +0 -0
- {yara_x-0.12.0 → yara_x-0.13.0}/lib/src/compiler/tests/testdata/errors/119.in +0 -0
- {yara_x-0.12.0 → yara_x-0.13.0}/lib/src/compiler/tests/testdata/errors/119.out +0 -0
- {yara_x-0.12.0 → yara_x-0.13.0}/lib/src/compiler/tests/testdata/errors/12.in +0 -0
- {yara_x-0.12.0 → yara_x-0.13.0}/lib/src/compiler/tests/testdata/errors/12.out +0 -0
- {yara_x-0.12.0 → yara_x-0.13.0}/lib/src/compiler/tests/testdata/errors/120.in +0 -0
- {yara_x-0.12.0 → yara_x-0.13.0}/lib/src/compiler/tests/testdata/errors/120.out +0 -0
- {yara_x-0.12.0 → yara_x-0.13.0}/lib/src/compiler/tests/testdata/errors/121.in +0 -0
- {yara_x-0.12.0 → yara_x-0.13.0}/lib/src/compiler/tests/testdata/errors/121.out +0 -0
- {yara_x-0.12.0 → yara_x-0.13.0}/lib/src/compiler/tests/testdata/errors/122.in +0 -0
- {yara_x-0.12.0 → yara_x-0.13.0}/lib/src/compiler/tests/testdata/errors/122.out +0 -0
- {yara_x-0.12.0 → yara_x-0.13.0}/lib/src/compiler/tests/testdata/errors/123.in +0 -0
- {yara_x-0.12.0 → yara_x-0.13.0}/lib/src/compiler/tests/testdata/errors/123.out +0 -0
- {yara_x-0.12.0 → yara_x-0.13.0}/lib/src/compiler/tests/testdata/errors/124.in +0 -0
- {yara_x-0.12.0 → yara_x-0.13.0}/lib/src/compiler/tests/testdata/errors/124.out +0 -0
- {yara_x-0.12.0 → yara_x-0.13.0}/lib/src/compiler/tests/testdata/errors/125.in +0 -0
- {yara_x-0.12.0 → yara_x-0.13.0}/lib/src/compiler/tests/testdata/errors/125.out +0 -0
- {yara_x-0.12.0 → yara_x-0.13.0}/lib/src/compiler/tests/testdata/errors/126.in +0 -0
- {yara_x-0.12.0 → yara_x-0.13.0}/lib/src/compiler/tests/testdata/errors/126.out +0 -0
- {yara_x-0.12.0 → yara_x-0.13.0}/lib/src/compiler/tests/testdata/errors/127.in +0 -0
- {yara_x-0.12.0 → yara_x-0.13.0}/lib/src/compiler/tests/testdata/errors/127.out +0 -0
- {yara_x-0.12.0 → yara_x-0.13.0}/lib/src/compiler/tests/testdata/errors/128.in +0 -0
- {yara_x-0.12.0 → yara_x-0.13.0}/lib/src/compiler/tests/testdata/errors/128.out +0 -0
- {yara_x-0.12.0 → yara_x-0.13.0}/lib/src/compiler/tests/testdata/errors/129.in +0 -0
- {yara_x-0.12.0 → yara_x-0.13.0}/lib/src/compiler/tests/testdata/errors/129.out +0 -0
- {yara_x-0.12.0 → yara_x-0.13.0}/lib/src/compiler/tests/testdata/errors/13.in +0 -0
- {yara_x-0.12.0 → yara_x-0.13.0}/lib/src/compiler/tests/testdata/errors/13.out +0 -0
- {yara_x-0.12.0 → yara_x-0.13.0}/lib/src/compiler/tests/testdata/errors/131.in +0 -0
- {yara_x-0.12.0 → yara_x-0.13.0}/lib/src/compiler/tests/testdata/errors/131.out +0 -0
- {yara_x-0.12.0 → yara_x-0.13.0}/lib/src/compiler/tests/testdata/errors/132.in +0 -0
- {yara_x-0.12.0 → yara_x-0.13.0}/lib/src/compiler/tests/testdata/errors/132.out +0 -0
- {yara_x-0.12.0 → yara_x-0.13.0}/lib/src/compiler/tests/testdata/errors/133.in +0 -0
- {yara_x-0.12.0 → yara_x-0.13.0}/lib/src/compiler/tests/testdata/errors/133.out +0 -0
- {yara_x-0.12.0 → yara_x-0.13.0}/lib/src/compiler/tests/testdata/errors/134.in +0 -0
- {yara_x-0.12.0 → yara_x-0.13.0}/lib/src/compiler/tests/testdata/errors/134.out +0 -0
- {yara_x-0.12.0 → yara_x-0.13.0}/lib/src/compiler/tests/testdata/errors/135.in +0 -0
- {yara_x-0.12.0 → yara_x-0.13.0}/lib/src/compiler/tests/testdata/errors/135.out +0 -0
- {yara_x-0.12.0 → yara_x-0.13.0}/lib/src/compiler/tests/testdata/errors/136.in +0 -0
- {yara_x-0.12.0 → yara_x-0.13.0}/lib/src/compiler/tests/testdata/errors/136.out +0 -0
- {yara_x-0.12.0 → yara_x-0.13.0}/lib/src/compiler/tests/testdata/errors/137.in +0 -0
- {yara_x-0.12.0 → yara_x-0.13.0}/lib/src/compiler/tests/testdata/errors/137.out +0 -0
- {yara_x-0.12.0 → yara_x-0.13.0}/lib/src/compiler/tests/testdata/errors/138.in +0 -0
- {yara_x-0.12.0 → yara_x-0.13.0}/lib/src/compiler/tests/testdata/errors/138.out +0 -0
- {yara_x-0.12.0 → yara_x-0.13.0}/lib/src/compiler/tests/testdata/errors/139.in +0 -0
- {yara_x-0.12.0 → yara_x-0.13.0}/lib/src/compiler/tests/testdata/errors/139.out +0 -0
- {yara_x-0.12.0 → yara_x-0.13.0}/lib/src/compiler/tests/testdata/errors/14.in +0 -0
- {yara_x-0.12.0 → yara_x-0.13.0}/lib/src/compiler/tests/testdata/errors/14.out +0 -0
- {yara_x-0.12.0 → yara_x-0.13.0}/lib/src/compiler/tests/testdata/errors/15.in +0 -0
- {yara_x-0.12.0 → yara_x-0.13.0}/lib/src/compiler/tests/testdata/errors/15.out +0 -0
- {yara_x-0.12.0 → yara_x-0.13.0}/lib/src/compiler/tests/testdata/errors/16.in +0 -0
- {yara_x-0.12.0 → yara_x-0.13.0}/lib/src/compiler/tests/testdata/errors/16.out +0 -0
- {yara_x-0.12.0 → yara_x-0.13.0}/lib/src/compiler/tests/testdata/errors/17.in +0 -0
- {yara_x-0.12.0 → yara_x-0.13.0}/lib/src/compiler/tests/testdata/errors/17.out +0 -0
- {yara_x-0.12.0 → yara_x-0.13.0}/lib/src/compiler/tests/testdata/errors/18.in +0 -0
- {yara_x-0.12.0 → yara_x-0.13.0}/lib/src/compiler/tests/testdata/errors/18.out +0 -0
- {yara_x-0.12.0 → yara_x-0.13.0}/lib/src/compiler/tests/testdata/errors/19.in +0 -0
- {yara_x-0.12.0 → yara_x-0.13.0}/lib/src/compiler/tests/testdata/errors/19.out +0 -0
- {yara_x-0.12.0 → yara_x-0.13.0}/lib/src/compiler/tests/testdata/errors/2.in +0 -0
- {yara_x-0.12.0 → yara_x-0.13.0}/lib/src/compiler/tests/testdata/errors/2.out +0 -0
- {yara_x-0.12.0 → yara_x-0.13.0}/lib/src/compiler/tests/testdata/errors/20.in +0 -0
- {yara_x-0.12.0 → yara_x-0.13.0}/lib/src/compiler/tests/testdata/errors/20.out +0 -0
- {yara_x-0.12.0 → yara_x-0.13.0}/lib/src/compiler/tests/testdata/errors/21.in +0 -0
- {yara_x-0.12.0 → yara_x-0.13.0}/lib/src/compiler/tests/testdata/errors/21.out +0 -0
- {yara_x-0.12.0 → yara_x-0.13.0}/lib/src/compiler/tests/testdata/errors/22.in +0 -0
- {yara_x-0.12.0 → yara_x-0.13.0}/lib/src/compiler/tests/testdata/errors/22.out +0 -0
- {yara_x-0.12.0 → yara_x-0.13.0}/lib/src/compiler/tests/testdata/errors/23.in +0 -0
- {yara_x-0.12.0 → yara_x-0.13.0}/lib/src/compiler/tests/testdata/errors/23.out +0 -0
- {yara_x-0.12.0 → yara_x-0.13.0}/lib/src/compiler/tests/testdata/errors/24.in +0 -0
- {yara_x-0.12.0 → yara_x-0.13.0}/lib/src/compiler/tests/testdata/errors/24.out +0 -0
- {yara_x-0.12.0 → yara_x-0.13.0}/lib/src/compiler/tests/testdata/errors/25.in +0 -0
- {yara_x-0.12.0 → yara_x-0.13.0}/lib/src/compiler/tests/testdata/errors/25.out +0 -0
- {yara_x-0.12.0 → yara_x-0.13.0}/lib/src/compiler/tests/testdata/errors/26.in +0 -0
- {yara_x-0.12.0 → yara_x-0.13.0}/lib/src/compiler/tests/testdata/errors/26.out +0 -0
- {yara_x-0.12.0 → yara_x-0.13.0}/lib/src/compiler/tests/testdata/errors/28.in +0 -0
- {yara_x-0.12.0 → yara_x-0.13.0}/lib/src/compiler/tests/testdata/errors/28.out +0 -0
- {yara_x-0.12.0 → yara_x-0.13.0}/lib/src/compiler/tests/testdata/errors/29.in +0 -0
- {yara_x-0.12.0 → yara_x-0.13.0}/lib/src/compiler/tests/testdata/errors/29.out +0 -0
- {yara_x-0.12.0 → yara_x-0.13.0}/lib/src/compiler/tests/testdata/errors/3.in +0 -0
- {yara_x-0.12.0 → yara_x-0.13.0}/lib/src/compiler/tests/testdata/errors/3.out +0 -0
- {yara_x-0.12.0 → yara_x-0.13.0}/lib/src/compiler/tests/testdata/errors/30.in +0 -0
- {yara_x-0.12.0 → yara_x-0.13.0}/lib/src/compiler/tests/testdata/errors/30.out +0 -0
- {yara_x-0.12.0 → yara_x-0.13.0}/lib/src/compiler/tests/testdata/errors/31.in +0 -0
- {yara_x-0.12.0 → yara_x-0.13.0}/lib/src/compiler/tests/testdata/errors/31.out +0 -0
- {yara_x-0.12.0 → yara_x-0.13.0}/lib/src/compiler/tests/testdata/errors/32.in +0 -0
- {yara_x-0.12.0 → yara_x-0.13.0}/lib/src/compiler/tests/testdata/errors/32.out +0 -0
- {yara_x-0.12.0 → yara_x-0.13.0}/lib/src/compiler/tests/testdata/errors/33.in +0 -0
- {yara_x-0.12.0 → yara_x-0.13.0}/lib/src/compiler/tests/testdata/errors/33.out +0 -0
- {yara_x-0.12.0 → yara_x-0.13.0}/lib/src/compiler/tests/testdata/errors/34.in +0 -0
- {yara_x-0.12.0 → yara_x-0.13.0}/lib/src/compiler/tests/testdata/errors/34.out +0 -0
- {yara_x-0.12.0 → yara_x-0.13.0}/lib/src/compiler/tests/testdata/errors/35.in +0 -0
- {yara_x-0.12.0 → yara_x-0.13.0}/lib/src/compiler/tests/testdata/errors/35.out +0 -0
- {yara_x-0.12.0 → yara_x-0.13.0}/lib/src/compiler/tests/testdata/errors/37.in +0 -0
- {yara_x-0.12.0 → yara_x-0.13.0}/lib/src/compiler/tests/testdata/errors/37.out +0 -0
- {yara_x-0.12.0 → yara_x-0.13.0}/lib/src/compiler/tests/testdata/errors/38.in +0 -0
- {yara_x-0.12.0 → yara_x-0.13.0}/lib/src/compiler/tests/testdata/errors/38.out +0 -0
- {yara_x-0.12.0 → yara_x-0.13.0}/lib/src/compiler/tests/testdata/errors/39.in +0 -0
- {yara_x-0.12.0 → yara_x-0.13.0}/lib/src/compiler/tests/testdata/errors/39.out +0 -0
- {yara_x-0.12.0 → yara_x-0.13.0}/lib/src/compiler/tests/testdata/errors/4.in +0 -0
- {yara_x-0.12.0 → yara_x-0.13.0}/lib/src/compiler/tests/testdata/errors/4.out +0 -0
- {yara_x-0.12.0 → yara_x-0.13.0}/lib/src/compiler/tests/testdata/errors/40.in +0 -0
- {yara_x-0.12.0 → yara_x-0.13.0}/lib/src/compiler/tests/testdata/errors/40.out +0 -0
- {yara_x-0.12.0 → yara_x-0.13.0}/lib/src/compiler/tests/testdata/errors/41.in +0 -0
- {yara_x-0.12.0 → yara_x-0.13.0}/lib/src/compiler/tests/testdata/errors/41.out +0 -0
- {yara_x-0.12.0 → yara_x-0.13.0}/lib/src/compiler/tests/testdata/errors/42.in +0 -0
- {yara_x-0.12.0 → yara_x-0.13.0}/lib/src/compiler/tests/testdata/errors/42.out +0 -0
- {yara_x-0.12.0 → yara_x-0.13.0}/lib/src/compiler/tests/testdata/errors/43.in +0 -0
- {yara_x-0.12.0 → yara_x-0.13.0}/lib/src/compiler/tests/testdata/errors/43.out +0 -0
- {yara_x-0.12.0 → yara_x-0.13.0}/lib/src/compiler/tests/testdata/errors/44.in +0 -0
- {yara_x-0.12.0 → yara_x-0.13.0}/lib/src/compiler/tests/testdata/errors/44.out +0 -0
- {yara_x-0.12.0 → yara_x-0.13.0}/lib/src/compiler/tests/testdata/errors/45.in +0 -0
- {yara_x-0.12.0 → yara_x-0.13.0}/lib/src/compiler/tests/testdata/errors/45.out +0 -0
- {yara_x-0.12.0 → yara_x-0.13.0}/lib/src/compiler/tests/testdata/errors/46.in +0 -0
- {yara_x-0.12.0 → yara_x-0.13.0}/lib/src/compiler/tests/testdata/errors/46.out +0 -0
- {yara_x-0.12.0 → yara_x-0.13.0}/lib/src/compiler/tests/testdata/errors/47.in +0 -0
- {yara_x-0.12.0 → yara_x-0.13.0}/lib/src/compiler/tests/testdata/errors/47.out +0 -0
- {yara_x-0.12.0 → yara_x-0.13.0}/lib/src/compiler/tests/testdata/errors/48.in +0 -0
- {yara_x-0.12.0 → yara_x-0.13.0}/lib/src/compiler/tests/testdata/errors/48.out +0 -0
- {yara_x-0.12.0 → yara_x-0.13.0}/lib/src/compiler/tests/testdata/errors/49.in +0 -0
- {yara_x-0.12.0 → yara_x-0.13.0}/lib/src/compiler/tests/testdata/errors/49.out +0 -0
- {yara_x-0.12.0 → yara_x-0.13.0}/lib/src/compiler/tests/testdata/errors/5.in +0 -0
- {yara_x-0.12.0 → yara_x-0.13.0}/lib/src/compiler/tests/testdata/errors/5.out +0 -0
- {yara_x-0.12.0 → yara_x-0.13.0}/lib/src/compiler/tests/testdata/errors/50.in +0 -0
- {yara_x-0.12.0 → yara_x-0.13.0}/lib/src/compiler/tests/testdata/errors/50.out +0 -0
- {yara_x-0.12.0 → yara_x-0.13.0}/lib/src/compiler/tests/testdata/errors/51.in +0 -0
- {yara_x-0.12.0 → yara_x-0.13.0}/lib/src/compiler/tests/testdata/errors/51.out +0 -0
- {yara_x-0.12.0 → yara_x-0.13.0}/lib/src/compiler/tests/testdata/errors/52.in +0 -0
- {yara_x-0.12.0 → yara_x-0.13.0}/lib/src/compiler/tests/testdata/errors/52.out +0 -0
- {yara_x-0.12.0 → yara_x-0.13.0}/lib/src/compiler/tests/testdata/errors/53.in +0 -0
- {yara_x-0.12.0 → yara_x-0.13.0}/lib/src/compiler/tests/testdata/errors/53.out +0 -0
- {yara_x-0.12.0 → yara_x-0.13.0}/lib/src/compiler/tests/testdata/errors/54.in +0 -0
- {yara_x-0.12.0 → yara_x-0.13.0}/lib/src/compiler/tests/testdata/errors/54.out +0 -0
- {yara_x-0.12.0 → yara_x-0.13.0}/lib/src/compiler/tests/testdata/errors/55.in +0 -0
- {yara_x-0.12.0 → yara_x-0.13.0}/lib/src/compiler/tests/testdata/errors/55.out +0 -0
- {yara_x-0.12.0 → yara_x-0.13.0}/lib/src/compiler/tests/testdata/errors/56.in +0 -0
- {yara_x-0.12.0 → yara_x-0.13.0}/lib/src/compiler/tests/testdata/errors/56.out +0 -0
- {yara_x-0.12.0 → yara_x-0.13.0}/lib/src/compiler/tests/testdata/errors/57.in +0 -0
- {yara_x-0.12.0 → yara_x-0.13.0}/lib/src/compiler/tests/testdata/errors/57.out +0 -0
- {yara_x-0.12.0 → yara_x-0.13.0}/lib/src/compiler/tests/testdata/errors/58.in +0 -0
- {yara_x-0.12.0 → yara_x-0.13.0}/lib/src/compiler/tests/testdata/errors/58.out +0 -0
- {yara_x-0.12.0 → yara_x-0.13.0}/lib/src/compiler/tests/testdata/errors/59.in +0 -0
- {yara_x-0.12.0 → yara_x-0.13.0}/lib/src/compiler/tests/testdata/errors/59.out +0 -0
- {yara_x-0.12.0 → yara_x-0.13.0}/lib/src/compiler/tests/testdata/errors/6.in +0 -0
- {yara_x-0.12.0 → yara_x-0.13.0}/lib/src/compiler/tests/testdata/errors/6.out +0 -0
- {yara_x-0.12.0 → yara_x-0.13.0}/lib/src/compiler/tests/testdata/errors/60.in +0 -0
- {yara_x-0.12.0 → yara_x-0.13.0}/lib/src/compiler/tests/testdata/errors/60.out +0 -0
- {yara_x-0.12.0 → yara_x-0.13.0}/lib/src/compiler/tests/testdata/errors/61.in +0 -0
- {yara_x-0.12.0 → yara_x-0.13.0}/lib/src/compiler/tests/testdata/errors/61.out +0 -0
- {yara_x-0.12.0 → yara_x-0.13.0}/lib/src/compiler/tests/testdata/errors/62.in +0 -0
- {yara_x-0.12.0 → yara_x-0.13.0}/lib/src/compiler/tests/testdata/errors/62.out +0 -0
- {yara_x-0.12.0 → yara_x-0.13.0}/lib/src/compiler/tests/testdata/errors/63.in +0 -0
- {yara_x-0.12.0 → yara_x-0.13.0}/lib/src/compiler/tests/testdata/errors/63.out +0 -0
- {yara_x-0.12.0 → yara_x-0.13.0}/lib/src/compiler/tests/testdata/errors/64.in +0 -0
- {yara_x-0.12.0 → yara_x-0.13.0}/lib/src/compiler/tests/testdata/errors/64.out +0 -0
- {yara_x-0.12.0 → yara_x-0.13.0}/lib/src/compiler/tests/testdata/errors/65.in +0 -0
- {yara_x-0.12.0 → yara_x-0.13.0}/lib/src/compiler/tests/testdata/errors/65.out +0 -0
- {yara_x-0.12.0 → yara_x-0.13.0}/lib/src/compiler/tests/testdata/errors/66.in +0 -0
- {yara_x-0.12.0 → yara_x-0.13.0}/lib/src/compiler/tests/testdata/errors/66.out +0 -0
- {yara_x-0.12.0 → yara_x-0.13.0}/lib/src/compiler/tests/testdata/errors/67.in +0 -0
- {yara_x-0.12.0 → yara_x-0.13.0}/lib/src/compiler/tests/testdata/errors/67.out +0 -0
- {yara_x-0.12.0 → yara_x-0.13.0}/lib/src/compiler/tests/testdata/errors/68.in +0 -0
- {yara_x-0.12.0 → yara_x-0.13.0}/lib/src/compiler/tests/testdata/errors/68.out +0 -0
- {yara_x-0.12.0 → yara_x-0.13.0}/lib/src/compiler/tests/testdata/errors/69.in +0 -0
- {yara_x-0.12.0 → yara_x-0.13.0}/lib/src/compiler/tests/testdata/errors/69.out +0 -0
- {yara_x-0.12.0 → yara_x-0.13.0}/lib/src/compiler/tests/testdata/errors/7.in +0 -0
- {yara_x-0.12.0 → yara_x-0.13.0}/lib/src/compiler/tests/testdata/errors/7.out +0 -0
- {yara_x-0.12.0 → yara_x-0.13.0}/lib/src/compiler/tests/testdata/errors/70.in +0 -0
- {yara_x-0.12.0 → yara_x-0.13.0}/lib/src/compiler/tests/testdata/errors/70.out +0 -0
- {yara_x-0.12.0 → yara_x-0.13.0}/lib/src/compiler/tests/testdata/errors/71.in +0 -0
- {yara_x-0.12.0 → yara_x-0.13.0}/lib/src/compiler/tests/testdata/errors/71.out +0 -0
- {yara_x-0.12.0 → yara_x-0.13.0}/lib/src/compiler/tests/testdata/errors/72.in +0 -0
- {yara_x-0.12.0 → yara_x-0.13.0}/lib/src/compiler/tests/testdata/errors/72.out +0 -0
- {yara_x-0.12.0 → yara_x-0.13.0}/lib/src/compiler/tests/testdata/errors/73.in +0 -0
- {yara_x-0.12.0 → yara_x-0.13.0}/lib/src/compiler/tests/testdata/errors/73.out +0 -0
- {yara_x-0.12.0 → yara_x-0.13.0}/lib/src/compiler/tests/testdata/errors/74.in +0 -0
- {yara_x-0.12.0 → yara_x-0.13.0}/lib/src/compiler/tests/testdata/errors/74.out +0 -0
- {yara_x-0.12.0 → yara_x-0.13.0}/lib/src/compiler/tests/testdata/errors/75.in +0 -0
- {yara_x-0.12.0 → yara_x-0.13.0}/lib/src/compiler/tests/testdata/errors/75.out +0 -0
- {yara_x-0.12.0 → yara_x-0.13.0}/lib/src/compiler/tests/testdata/errors/76.in +0 -0
- {yara_x-0.12.0 → yara_x-0.13.0}/lib/src/compiler/tests/testdata/errors/76.out +0 -0
- {yara_x-0.12.0 → yara_x-0.13.0}/lib/src/compiler/tests/testdata/errors/77.in +0 -0
- {yara_x-0.12.0 → yara_x-0.13.0}/lib/src/compiler/tests/testdata/errors/77.out +0 -0
- {yara_x-0.12.0 → yara_x-0.13.0}/lib/src/compiler/tests/testdata/errors/78.in +0 -0
- {yara_x-0.12.0 → yara_x-0.13.0}/lib/src/compiler/tests/testdata/errors/78.out +0 -0
- {yara_x-0.12.0 → yara_x-0.13.0}/lib/src/compiler/tests/testdata/errors/79.in +0 -0
- {yara_x-0.12.0 → yara_x-0.13.0}/lib/src/compiler/tests/testdata/errors/79.out +0 -0
- {yara_x-0.12.0 → yara_x-0.13.0}/lib/src/compiler/tests/testdata/errors/8.in +0 -0
- {yara_x-0.12.0 → yara_x-0.13.0}/lib/src/compiler/tests/testdata/errors/8.out +0 -0
- {yara_x-0.12.0 → yara_x-0.13.0}/lib/src/compiler/tests/testdata/errors/80.in +0 -0
- {yara_x-0.12.0 → yara_x-0.13.0}/lib/src/compiler/tests/testdata/errors/80.out +0 -0
- {yara_x-0.12.0 → yara_x-0.13.0}/lib/src/compiler/tests/testdata/errors/81.in +0 -0
- {yara_x-0.12.0 → yara_x-0.13.0}/lib/src/compiler/tests/testdata/errors/81.out +0 -0
- {yara_x-0.12.0 → yara_x-0.13.0}/lib/src/compiler/tests/testdata/errors/82.in +0 -0
- {yara_x-0.12.0 → yara_x-0.13.0}/lib/src/compiler/tests/testdata/errors/82.out +0 -0
- {yara_x-0.12.0 → yara_x-0.13.0}/lib/src/compiler/tests/testdata/errors/83.in +0 -0
- {yara_x-0.12.0 → yara_x-0.13.0}/lib/src/compiler/tests/testdata/errors/83.out +0 -0
- {yara_x-0.12.0 → yara_x-0.13.0}/lib/src/compiler/tests/testdata/errors/84.in +0 -0
- {yara_x-0.12.0 → yara_x-0.13.0}/lib/src/compiler/tests/testdata/errors/84.out +0 -0
- {yara_x-0.12.0 → yara_x-0.13.0}/lib/src/compiler/tests/testdata/errors/85.in +0 -0
- {yara_x-0.12.0 → yara_x-0.13.0}/lib/src/compiler/tests/testdata/errors/85.out +0 -0
- {yara_x-0.12.0 → yara_x-0.13.0}/lib/src/compiler/tests/testdata/errors/86.in +0 -0
- {yara_x-0.12.0 → yara_x-0.13.0}/lib/src/compiler/tests/testdata/errors/86.out +0 -0
- {yara_x-0.12.0 → yara_x-0.13.0}/lib/src/compiler/tests/testdata/errors/87.in +0 -0
- {yara_x-0.12.0 → yara_x-0.13.0}/lib/src/compiler/tests/testdata/errors/87.out +0 -0
- {yara_x-0.12.0 → yara_x-0.13.0}/lib/src/compiler/tests/testdata/errors/88.in +0 -0
- {yara_x-0.12.0 → yara_x-0.13.0}/lib/src/compiler/tests/testdata/errors/88.out +0 -0
- {yara_x-0.12.0 → yara_x-0.13.0}/lib/src/compiler/tests/testdata/errors/89.in +0 -0
- {yara_x-0.12.0 → yara_x-0.13.0}/lib/src/compiler/tests/testdata/errors/89.out +0 -0
- {yara_x-0.12.0 → yara_x-0.13.0}/lib/src/compiler/tests/testdata/errors/9.in +0 -0
- {yara_x-0.12.0 → yara_x-0.13.0}/lib/src/compiler/tests/testdata/errors/9.out +0 -0
- {yara_x-0.12.0 → yara_x-0.13.0}/lib/src/compiler/tests/testdata/errors/90.in +0 -0
- {yara_x-0.12.0 → yara_x-0.13.0}/lib/src/compiler/tests/testdata/errors/90.out +0 -0
- {yara_x-0.12.0 → yara_x-0.13.0}/lib/src/compiler/tests/testdata/errors/91.in +0 -0
- {yara_x-0.12.0 → yara_x-0.13.0}/lib/src/compiler/tests/testdata/errors/91.out +0 -0
- {yara_x-0.12.0 → yara_x-0.13.0}/lib/src/compiler/tests/testdata/errors/92.in +0 -0
- {yara_x-0.12.0 → yara_x-0.13.0}/lib/src/compiler/tests/testdata/errors/92.out +0 -0
- {yara_x-0.12.0 → yara_x-0.13.0}/lib/src/compiler/tests/testdata/errors/93.in +0 -0
- {yara_x-0.12.0 → yara_x-0.13.0}/lib/src/compiler/tests/testdata/errors/93.out +0 -0
- {yara_x-0.12.0 → yara_x-0.13.0}/lib/src/compiler/tests/testdata/errors/94.in +0 -0
- {yara_x-0.12.0 → yara_x-0.13.0}/lib/src/compiler/tests/testdata/errors/94.out +0 -0
- {yara_x-0.12.0 → yara_x-0.13.0}/lib/src/compiler/tests/testdata/errors/95.in +0 -0
- {yara_x-0.12.0 → yara_x-0.13.0}/lib/src/compiler/tests/testdata/errors/95.out +0 -0
- {yara_x-0.12.0 → yara_x-0.13.0}/lib/src/compiler/tests/testdata/errors/96.in +0 -0
- {yara_x-0.12.0 → yara_x-0.13.0}/lib/src/compiler/tests/testdata/errors/96.out +0 -0
- {yara_x-0.12.0 → yara_x-0.13.0}/lib/src/compiler/tests/testdata/errors/97.in +0 -0
- {yara_x-0.12.0 → yara_x-0.13.0}/lib/src/compiler/tests/testdata/errors/97.out +0 -0
- {yara_x-0.12.0 → yara_x-0.13.0}/lib/src/compiler/tests/testdata/errors/98.in +0 -0
- {yara_x-0.12.0 → yara_x-0.13.0}/lib/src/compiler/tests/testdata/errors/98.out +0 -0
- {yara_x-0.12.0 → yara_x-0.13.0}/lib/src/compiler/tests/testdata/errors/99.in +0 -0
- {yara_x-0.12.0 → yara_x-0.13.0}/lib/src/compiler/tests/testdata/errors/99.out +0 -0
- {yara_x-0.12.0 → yara_x-0.13.0}/lib/src/compiler/tests/testdata/warnings/1.in +0 -0
- {yara_x-0.12.0 → yara_x-0.13.0}/lib/src/compiler/tests/testdata/warnings/1.out +0 -0
- {yara_x-0.12.0 → yara_x-0.13.0}/lib/src/compiler/tests/testdata/warnings/10.in +0 -0
- {yara_x-0.12.0 → yara_x-0.13.0}/lib/src/compiler/tests/testdata/warnings/10.out +0 -0
- {yara_x-0.12.0 → yara_x-0.13.0}/lib/src/compiler/tests/testdata/warnings/11.in +0 -0
- {yara_x-0.12.0 → yara_x-0.13.0}/lib/src/compiler/tests/testdata/warnings/11.out +0 -0
- {yara_x-0.12.0 → yara_x-0.13.0}/lib/src/compiler/tests/testdata/warnings/12.in +0 -0
- {yara_x-0.12.0 → yara_x-0.13.0}/lib/src/compiler/tests/testdata/warnings/12.out +0 -0
- {yara_x-0.12.0 → yara_x-0.13.0}/lib/src/compiler/tests/testdata/warnings/13.in +0 -0
- {yara_x-0.12.0 → yara_x-0.13.0}/lib/src/compiler/tests/testdata/warnings/13.out +0 -0
- {yara_x-0.12.0 → yara_x-0.13.0}/lib/src/compiler/tests/testdata/warnings/14.in +0 -0
- {yara_x-0.12.0 → yara_x-0.13.0}/lib/src/compiler/tests/testdata/warnings/14.out +0 -0
- {yara_x-0.12.0 → yara_x-0.13.0}/lib/src/compiler/tests/testdata/warnings/15.in +0 -0
- {yara_x-0.12.0 → yara_x-0.13.0}/lib/src/compiler/tests/testdata/warnings/15.out +0 -0
- {yara_x-0.12.0 → yara_x-0.13.0}/lib/src/compiler/tests/testdata/warnings/16.in +0 -0
- {yara_x-0.12.0 → yara_x-0.13.0}/lib/src/compiler/tests/testdata/warnings/16.out +0 -0
- {yara_x-0.12.0 → yara_x-0.13.0}/lib/src/compiler/tests/testdata/warnings/17.in +0 -0
- {yara_x-0.12.0 → yara_x-0.13.0}/lib/src/compiler/tests/testdata/warnings/17.out +0 -0
- {yara_x-0.12.0 → yara_x-0.13.0}/lib/src/compiler/tests/testdata/warnings/18.in +0 -0
- {yara_x-0.12.0 → yara_x-0.13.0}/lib/src/compiler/tests/testdata/warnings/18.out +0 -0
- {yara_x-0.12.0 → yara_x-0.13.0}/lib/src/compiler/tests/testdata/warnings/19.in +0 -0
- {yara_x-0.12.0 → yara_x-0.13.0}/lib/src/compiler/tests/testdata/warnings/19.out +0 -0
- {yara_x-0.12.0 → yara_x-0.13.0}/lib/src/compiler/tests/testdata/warnings/2.in +0 -0
- {yara_x-0.12.0 → yara_x-0.13.0}/lib/src/compiler/tests/testdata/warnings/2.out +0 -0
- {yara_x-0.12.0 → yara_x-0.13.0}/lib/src/compiler/tests/testdata/warnings/20.in +0 -0
- {yara_x-0.12.0 → yara_x-0.13.0}/lib/src/compiler/tests/testdata/warnings/20.out +0 -0
- {yara_x-0.12.0 → yara_x-0.13.0}/lib/src/compiler/tests/testdata/warnings/21.in +0 -0
- {yara_x-0.12.0 → yara_x-0.13.0}/lib/src/compiler/tests/testdata/warnings/21.out +0 -0
- {yara_x-0.12.0 → yara_x-0.13.0}/lib/src/compiler/tests/testdata/warnings/22.in +0 -0
- {yara_x-0.12.0 → yara_x-0.13.0}/lib/src/compiler/tests/testdata/warnings/22.out +0 -0
- {yara_x-0.12.0 → yara_x-0.13.0}/lib/src/compiler/tests/testdata/warnings/23.in +0 -0
- {yara_x-0.12.0 → yara_x-0.13.0}/lib/src/compiler/tests/testdata/warnings/23.out +0 -0
- {yara_x-0.12.0 → yara_x-0.13.0}/lib/src/compiler/tests/testdata/warnings/24.in +0 -0
- {yara_x-0.12.0 → yara_x-0.13.0}/lib/src/compiler/tests/testdata/warnings/24.out +0 -0
- {yara_x-0.12.0 → yara_x-0.13.0}/lib/src/compiler/tests/testdata/warnings/25.in +0 -0
- {yara_x-0.12.0 → yara_x-0.13.0}/lib/src/compiler/tests/testdata/warnings/25.out +0 -0
- {yara_x-0.12.0 → yara_x-0.13.0}/lib/src/compiler/tests/testdata/warnings/26.in +0 -0
- {yara_x-0.12.0 → yara_x-0.13.0}/lib/src/compiler/tests/testdata/warnings/26.out +0 -0
- {yara_x-0.12.0 → yara_x-0.13.0}/lib/src/compiler/tests/testdata/warnings/27.in +0 -0
- {yara_x-0.12.0 → yara_x-0.13.0}/lib/src/compiler/tests/testdata/warnings/27.out +0 -0
- {yara_x-0.12.0 → yara_x-0.13.0}/lib/src/compiler/tests/testdata/warnings/28.in +0 -0
- {yara_x-0.12.0 → yara_x-0.13.0}/lib/src/compiler/tests/testdata/warnings/28.out +0 -0
- {yara_x-0.12.0 → yara_x-0.13.0}/lib/src/compiler/tests/testdata/warnings/29.in +0 -0
- {yara_x-0.12.0 → yara_x-0.13.0}/lib/src/compiler/tests/testdata/warnings/29.out +0 -0
- {yara_x-0.12.0 → yara_x-0.13.0}/lib/src/compiler/tests/testdata/warnings/3.in +0 -0
- {yara_x-0.12.0 → yara_x-0.13.0}/lib/src/compiler/tests/testdata/warnings/3.out +0 -0
- {yara_x-0.12.0 → yara_x-0.13.0}/lib/src/compiler/tests/testdata/warnings/30.in +0 -0
- {yara_x-0.12.0 → yara_x-0.13.0}/lib/src/compiler/tests/testdata/warnings/30.out +0 -0
- {yara_x-0.12.0 → yara_x-0.13.0}/lib/src/compiler/tests/testdata/warnings/31.in +0 -0
- {yara_x-0.12.0 → yara_x-0.13.0}/lib/src/compiler/tests/testdata/warnings/31.out +0 -0
- {yara_x-0.12.0 → yara_x-0.13.0}/lib/src/compiler/tests/testdata/warnings/32.in +0 -0
- {yara_x-0.12.0 → yara_x-0.13.0}/lib/src/compiler/tests/testdata/warnings/32.out +0 -0
- {yara_x-0.12.0 → yara_x-0.13.0}/lib/src/compiler/tests/testdata/warnings/33.in +0 -0
- {yara_x-0.12.0 → yara_x-0.13.0}/lib/src/compiler/tests/testdata/warnings/33.out +0 -0
- {yara_x-0.12.0 → yara_x-0.13.0}/lib/src/compiler/tests/testdata/warnings/34.in +0 -0
- {yara_x-0.12.0 → yara_x-0.13.0}/lib/src/compiler/tests/testdata/warnings/34.out +0 -0
- {yara_x-0.12.0 → yara_x-0.13.0}/lib/src/compiler/tests/testdata/warnings/35.in +0 -0
- {yara_x-0.12.0 → yara_x-0.13.0}/lib/src/compiler/tests/testdata/warnings/35.out +0 -0
- {yara_x-0.12.0 → yara_x-0.13.0}/lib/src/compiler/tests/testdata/warnings/4.in +0 -0
- {yara_x-0.12.0 → yara_x-0.13.0}/lib/src/compiler/tests/testdata/warnings/4.out +0 -0
- {yara_x-0.12.0 → yara_x-0.13.0}/lib/src/compiler/tests/testdata/warnings/5.in +0 -0
- {yara_x-0.12.0 → yara_x-0.13.0}/lib/src/compiler/tests/testdata/warnings/5.out +0 -0
- {yara_x-0.12.0 → yara_x-0.13.0}/lib/src/compiler/tests/testdata/warnings/6.in +0 -0
- {yara_x-0.12.0 → yara_x-0.13.0}/lib/src/compiler/tests/testdata/warnings/6.out +0 -0
- {yara_x-0.12.0 → yara_x-0.13.0}/lib/src/compiler/tests/testdata/warnings/7.in +0 -0
- {yara_x-0.12.0 → yara_x-0.13.0}/lib/src/compiler/tests/testdata/warnings/7.out +0 -0
- {yara_x-0.12.0 → yara_x-0.13.0}/lib/src/compiler/tests/testdata/warnings/8.in +0 -0
- {yara_x-0.12.0 → yara_x-0.13.0}/lib/src/compiler/tests/testdata/warnings/8.out +0 -0
- {yara_x-0.12.0 → yara_x-0.13.0}/lib/src/compiler/tests/testdata/warnings/9.in +0 -0
- {yara_x-0.12.0 → yara_x-0.13.0}/lib/src/compiler/tests/testdata/warnings/9.out +0 -0
- {yara_x-0.12.0 → yara_x-0.13.0}/lib/src/compiler/tests/testdata/warnings/no_warnings.in +0 -0
- {yara_x-0.12.0 → yara_x-0.13.0}/lib/src/compiler/tests/testdata/warnings/no_warnings.out +0 -0
- {yara_x-0.12.0 → yara_x-0.13.0}/lib/src/modules/add_modules.rs +0 -0
- {yara_x-0.12.0 → yara_x-0.13.0}/lib/src/modules/console.rs +0 -0
- {yara_x-0.12.0 → yara_x-0.13.0}/lib/src/modules/cuckoo/mod.rs +0 -0
- {yara_x-0.12.0 → yara_x-0.13.0}/lib/src/modules/cuckoo/schema.rs +0 -0
- {yara_x-0.12.0 → yara_x-0.13.0}/lib/src/modules/cuckoo/tests/mod.rs +0 -0
- {yara_x-0.12.0 → yara_x-0.13.0}/lib/src/modules/cuckoo/tests/testdata/1.json +0 -0
- {yara_x-0.12.0 → yara_x-0.13.0}/lib/src/modules/cuckoo/tests/testdata/1.yar +0 -0
- {yara_x-0.12.0 → yara_x-0.13.0}/lib/src/modules/cuckoo/tests/testdata/2.json +0 -0
- {yara_x-0.12.0 → yara_x-0.13.0}/lib/src/modules/cuckoo/tests/testdata/2.yar +0 -0
- {yara_x-0.12.0 → yara_x-0.13.0}/lib/src/modules/dotnet/mod.rs +0 -0
- {yara_x-0.12.0 → yara_x-0.13.0}/lib/src/modules/dotnet/tests/testdata/605ebe5b5f4b94e1a73e0ad1162bd542e5cb948d1a4ea5a575a14d6b9d6ee849.in +0 -0
- {yara_x-0.12.0 → yara_x-0.13.0}/lib/src/modules/dotnet/tests/testdata/86a1e48cfc843eabfe1b468ef9358c1068950f849c612ab808225b359db0bb8c.in +0 -0
- {yara_x-0.12.0 → yara_x-0.13.0}/lib/src/modules/elf/mod.rs +0 -0
- {yara_x-0.12.0 → yara_x-0.13.0}/lib/src/modules/elf/tests/mod.rs +0 -0
- {yara_x-0.12.0 → yara_x-0.13.0}/lib/src/modules/hash/mod.rs +0 -0
- {yara_x-0.12.0 → yara_x-0.13.0}/lib/src/modules/hash/tests/mod.rs +0 -0
- {yara_x-0.12.0 → yara_x-0.13.0}/lib/src/modules/lnk/mod.rs +0 -0
- {yara_x-0.12.0 → yara_x-0.13.0}/lib/src/modules/lnk/parser.rs +0 -0
- {yara_x-0.12.0 → yara_x-0.13.0}/lib/src/modules/macho/mod.rs +0 -0
- {yara_x-0.12.0 → yara_x-0.13.0}/lib/src/modules/macho/tests/mod.rs +0 -0
- {yara_x-0.12.0 → yara_x-0.13.0}/lib/src/modules/magic/mod.rs +0 -0
- {yara_x-0.12.0 → yara_x-0.13.0}/lib/src/modules/magic/tests/mod.rs +0 -0
- {yara_x-0.12.0 → yara_x-0.13.0}/lib/src/modules/math.rs +0 -0
- {yara_x-0.12.0 → yara_x-0.13.0}/lib/src/modules/modules.rs +0 -0
- {yara_x-0.12.0 → yara_x-0.13.0}/lib/src/modules/pe/rva2off.rs +0 -0
- {yara_x-0.12.0 → yara_x-0.13.0}/lib/src/modules/pe/tests/mod.rs +0 -0
- {yara_x-0.12.0 → yara_x-0.13.0}/lib/src/modules/protos/console.proto +0 -0
- {yara_x-0.12.0 → yara_x-0.13.0}/lib/src/modules/protos/cuckoo.proto +0 -0
- {yara_x-0.12.0 → yara_x-0.13.0}/lib/src/modules/protos/dotnet.proto +0 -0
- {yara_x-0.12.0 → yara_x-0.13.0}/lib/src/modules/protos/elf.proto +0 -0
- {yara_x-0.12.0 → yara_x-0.13.0}/lib/src/modules/protos/hash.proto +0 -0
- {yara_x-0.12.0 → yara_x-0.13.0}/lib/src/modules/protos/lnk.proto +0 -0
- {yara_x-0.12.0 → yara_x-0.13.0}/lib/src/modules/protos/magic.proto +0 -0
- {yara_x-0.12.0 → yara_x-0.13.0}/lib/src/modules/protos/math.proto +0 -0
- {yara_x-0.12.0 → yara_x-0.13.0}/lib/src/modules/protos/mods.proto +0 -0
- {yara_x-0.12.0 → yara_x-0.13.0}/lib/src/modules/protos/pe.proto +0 -0
- {yara_x-0.12.0 → yara_x-0.13.0}/lib/src/modules/protos/string.proto +0 -0
- {yara_x-0.12.0 → yara_x-0.13.0}/lib/src/modules/protos/test_proto2.proto +0 -0
- {yara_x-0.12.0 → yara_x-0.13.0}/lib/src/modules/protos/test_proto3.proto +0 -0
- {yara_x-0.12.0 → yara_x-0.13.0}/lib/src/modules/protos/text.proto +0 -0
- {yara_x-0.12.0 → yara_x-0.13.0}/lib/src/modules/protos/time.proto +0 -0
- {yara_x-0.12.0 → yara_x-0.13.0}/lib/src/modules/protos/yaml.proto +0 -0
- {yara_x-0.12.0 → yara_x-0.13.0}/lib/src/modules/protos/yara.proto +0 -0
- {yara_x-0.12.0 → yara_x-0.13.0}/lib/src/modules/string.rs +0 -0
- {yara_x-0.12.0 → yara_x-0.13.0}/lib/src/modules/test_proto3/mod.rs +0 -0
- {yara_x-0.12.0 → yara_x-0.13.0}/lib/src/modules/tests.rs +0 -0
- {yara_x-0.12.0 → yara_x-0.13.0}/lib/src/modules/text.rs +0 -0
- {yara_x-0.12.0 → yara_x-0.13.0}/lib/src/modules/time.rs +0 -0
- {yara_x-0.12.0 → yara_x-0.13.0}/lib/src/re/bitmapset.rs +0 -0
- {yara_x-0.12.0 → yara_x-0.13.0}/lib/src/re/fast/compiler.rs +0 -0
- {yara_x-0.12.0 → yara_x-0.13.0}/lib/src/re/fast/mod.rs +0 -0
- {yara_x-0.12.0 → yara_x-0.13.0}/lib/src/re/mod.rs +0 -0
- {yara_x-0.12.0 → yara_x-0.13.0}/lib/src/re/parser.rs +0 -0
- {yara_x-0.12.0 → yara_x-0.13.0}/lib/src/re/thompson/mod.rs +0 -0
- {yara_x-0.12.0 → yara_x-0.13.0}/lib/src/re/thompson/pikevm.rs +0 -0
- {yara_x-0.12.0 → yara_x-0.13.0}/lib/src/re/thompson/tests.rs +0 -0
- {yara_x-0.12.0 → yara_x-0.13.0}/lib/src/scanner/matches.rs +0 -0
- {yara_x-0.12.0 → yara_x-0.13.0}/lib/src/scanner/tests.rs +0 -0
- {yara_x-0.12.0 → yara_x-0.13.0}/lib/src/string_pool.rs +0 -0
- {yara_x-0.12.0 → yara_x-0.13.0}/lib/src/tests/testdata/jumps.bin +0 -0
- {yara_x-0.12.0 → yara_x-0.13.0}/lib/src/types/array.rs +0 -0
- {yara_x-0.12.0 → yara_x-0.13.0}/lib/src/types/func.rs +0 -0
- {yara_x-0.12.0 → yara_x-0.13.0}/lib/src/types/map.rs +0 -0
- {yara_x-0.12.0 → yara_x-0.13.0}/lib/src/types/mod.rs +0 -0
- {yara_x-0.12.0 → yara_x-0.13.0}/lib/src/types/structure.rs +0 -0
- {yara_x-0.12.0 → yara_x-0.13.0}/lib/src/variables.rs +0 -0
- {yara_x-0.12.0 → yara_x-0.13.0}/lib/src/wasm/builder.rs +0 -0
- {yara_x-0.12.0 → yara_x-0.13.0}/lib/src/wasm/string.rs +0 -0
- {yara_x-0.12.0 → yara_x-0.13.0}/macros/Cargo.toml +0 -0
- {yara_x-0.12.0 → yara_x-0.13.0}/macros/src/error.rs +0 -0
- {yara_x-0.12.0 → yara_x-0.13.0}/macros/src/lib.rs +0 -0
- {yara_x-0.12.0 → yara_x-0.13.0}/macros/src/module_export.rs +0 -0
- {yara_x-0.12.0 → yara_x-0.13.0}/macros/src/module_main.rs +0 -0
- {yara_x-0.12.0 → yara_x-0.13.0}/macros/src/wasm_export.rs +0 -0
- {yara_x-0.12.0/proto-yaml → yara_x-0.13.0/parser}/README.md +0 -0
- {yara_x-0.12.0 → yara_x-0.13.0}/parser/src/ast/errors.rs +0 -0
- {yara_x-0.12.0 → yara_x-0.13.0}/parser/src/cst/syntax_kind.rs +0 -0
- {yara_x-0.12.0 → yara_x-0.13.0}/parser/src/cst/syntax_stream.rs +0 -0
- {yara_x-0.12.0 → yara_x-0.13.0}/parser/src/lib.rs +0 -0
- {yara_x-0.12.0 → yara_x-0.13.0}/parser/src/parser/tests/testdata/arithmetic-ops.ast +0 -0
- {yara_x-0.12.0 → yara_x-0.13.0}/parser/src/parser/tests/testdata/arithmetic-ops.cst +0 -0
- {yara_x-0.12.0 → yara_x-0.13.0}/parser/src/parser/tests/testdata/arithmetic-ops.in +0 -0
- {yara_x-0.12.0 → yara_x-0.13.0}/parser/src/parser/tests/testdata/basic-1.ast +0 -0
- {yara_x-0.12.0 → yara_x-0.13.0}/parser/src/parser/tests/testdata/basic-1.cst +0 -0
- {yara_x-0.12.0 → yara_x-0.13.0}/parser/src/parser/tests/testdata/basic-1.in +0 -0
- {yara_x-0.12.0 → yara_x-0.13.0}/parser/src/parser/tests/testdata/basic-2.ast +0 -0
- {yara_x-0.12.0 → yara_x-0.13.0}/parser/src/parser/tests/testdata/basic-2.cst +0 -0
- {yara_x-0.12.0 → yara_x-0.13.0}/parser/src/parser/tests/testdata/basic-2.in +0 -0
- {yara_x-0.12.0 → yara_x-0.13.0}/parser/src/parser/tests/testdata/basic-3.ast +0 -0
- {yara_x-0.12.0 → yara_x-0.13.0}/parser/src/parser/tests/testdata/basic-3.cst +0 -0
- {yara_x-0.12.0 → yara_x-0.13.0}/parser/src/parser/tests/testdata/basic-3.in +0 -0
- {yara_x-0.12.0 → yara_x-0.13.0}/parser/src/parser/tests/testdata/basic-4.ast +0 -0
- {yara_x-0.12.0 → yara_x-0.13.0}/parser/src/parser/tests/testdata/basic-4.cst +0 -0
- {yara_x-0.12.0 → yara_x-0.13.0}/parser/src/parser/tests/testdata/basic-4.in +0 -0
- {yara_x-0.12.0 → yara_x-0.13.0}/parser/src/parser/tests/testdata/basic-error-1.ast +0 -0
- {yara_x-0.12.0 → yara_x-0.13.0}/parser/src/parser/tests/testdata/basic-error-1.cst +0 -0
- {yara_x-0.12.0 → yara_x-0.13.0}/parser/src/parser/tests/testdata/basic-error-1.in +0 -0
- {yara_x-0.12.0 → yara_x-0.13.0}/parser/src/parser/tests/testdata/basic-error-2.ast +0 -0
- {yara_x-0.12.0 → yara_x-0.13.0}/parser/src/parser/tests/testdata/basic-error-2.cst +0 -0
- {yara_x-0.12.0 → yara_x-0.13.0}/parser/src/parser/tests/testdata/basic-error-2.in +0 -0
- {yara_x-0.12.0 → yara_x-0.13.0}/parser/src/parser/tests/testdata/basic-error-3.ast +0 -0
- {yara_x-0.12.0 → yara_x-0.13.0}/parser/src/parser/tests/testdata/basic-error-3.cst +0 -0
- {yara_x-0.12.0 → yara_x-0.13.0}/parser/src/parser/tests/testdata/basic-error-3.in +0 -0
- {yara_x-0.12.0 → yara_x-0.13.0}/parser/src/parser/tests/testdata/basic-error-4.ast +0 -0
- {yara_x-0.12.0 → yara_x-0.13.0}/parser/src/parser/tests/testdata/basic-error-4.cst +0 -0
- {yara_x-0.12.0 → yara_x-0.13.0}/parser/src/parser/tests/testdata/basic-error-4.in +0 -0
- {yara_x-0.12.0 → yara_x-0.13.0}/parser/src/parser/tests/testdata/basic-error-5.ast +0 -0
- {yara_x-0.12.0 → yara_x-0.13.0}/parser/src/parser/tests/testdata/basic-error-5.cst +0 -0
- {yara_x-0.12.0 → yara_x-0.13.0}/parser/src/parser/tests/testdata/basic-error-5.in +0 -0
- {yara_x-0.12.0 → yara_x-0.13.0}/parser/src/parser/tests/testdata/bitwise-ops-error-1.ast +0 -0
- {yara_x-0.12.0 → yara_x-0.13.0}/parser/src/parser/tests/testdata/bitwise-ops-error-1.cst +0 -0
- {yara_x-0.12.0 → yara_x-0.13.0}/parser/src/parser/tests/testdata/bitwise-ops-error-1.in +0 -0
- {yara_x-0.12.0 → yara_x-0.13.0}/parser/src/parser/tests/testdata/bitwise-ops.ast +0 -0
- {yara_x-0.12.0 → yara_x-0.13.0}/parser/src/parser/tests/testdata/bitwise-ops.cst +0 -0
- {yara_x-0.12.0 → yara_x-0.13.0}/parser/src/parser/tests/testdata/bitwise-ops.in +0 -0
- {yara_x-0.12.0 → yara_x-0.13.0}/parser/src/parser/tests/testdata/comments.ast +0 -0
- {yara_x-0.12.0 → yara_x-0.13.0}/parser/src/parser/tests/testdata/comments.cst +0 -0
- {yara_x-0.12.0 → yara_x-0.13.0}/parser/src/parser/tests/testdata/comments.in +0 -0
- {yara_x-0.12.0 → yara_x-0.13.0}/parser/src/parser/tests/testdata/expr-1.ast +0 -0
- {yara_x-0.12.0 → yara_x-0.13.0}/parser/src/parser/tests/testdata/expr-1.cst +0 -0
- {yara_x-0.12.0 → yara_x-0.13.0}/parser/src/parser/tests/testdata/expr-1.in +0 -0
- {yara_x-0.12.0 → yara_x-0.13.0}/parser/src/parser/tests/testdata/expr-2.ast +0 -0
- {yara_x-0.12.0 → yara_x-0.13.0}/parser/src/parser/tests/testdata/expr-2.cst +0 -0
- {yara_x-0.12.0 → yara_x-0.13.0}/parser/src/parser/tests/testdata/expr-2.in +0 -0
- {yara_x-0.12.0 → yara_x-0.13.0}/parser/src/parser/tests/testdata/expr-3.ast +0 -0
- {yara_x-0.12.0 → yara_x-0.13.0}/parser/src/parser/tests/testdata/expr-3.cst +0 -0
- {yara_x-0.12.0 → yara_x-0.13.0}/parser/src/parser/tests/testdata/expr-3.in +0 -0
- {yara_x-0.12.0 → yara_x-0.13.0}/parser/src/parser/tests/testdata/expr-4.ast +0 -0
- {yara_x-0.12.0 → yara_x-0.13.0}/parser/src/parser/tests/testdata/expr-4.cst +0 -0
- {yara_x-0.12.0 → yara_x-0.13.0}/parser/src/parser/tests/testdata/expr-4.in +0 -0
- {yara_x-0.12.0 → yara_x-0.13.0}/parser/src/parser/tests/testdata/expr-5.ast +0 -0
- {yara_x-0.12.0 → yara_x-0.13.0}/parser/src/parser/tests/testdata/expr-5.cst +0 -0
- {yara_x-0.12.0 → yara_x-0.13.0}/parser/src/parser/tests/testdata/expr-5.in +0 -0
- {yara_x-0.12.0 → yara_x-0.13.0}/parser/src/parser/tests/testdata/expr-6.ast +0 -0
- {yara_x-0.12.0 → yara_x-0.13.0}/parser/src/parser/tests/testdata/expr-6.cst +0 -0
- {yara_x-0.12.0 → yara_x-0.13.0}/parser/src/parser/tests/testdata/expr-6.in +0 -0
- {yara_x-0.12.0 → yara_x-0.13.0}/parser/src/parser/tests/testdata/expr-error-1.ast +0 -0
- {yara_x-0.12.0 → yara_x-0.13.0}/parser/src/parser/tests/testdata/expr-error-1.cst +0 -0
- {yara_x-0.12.0 → yara_x-0.13.0}/parser/src/parser/tests/testdata/expr-error-1.in +0 -0
- {yara_x-0.12.0 → yara_x-0.13.0}/parser/src/parser/tests/testdata/for-1.ast +0 -0
- {yara_x-0.12.0 → yara_x-0.13.0}/parser/src/parser/tests/testdata/for-1.cst +0 -0
- {yara_x-0.12.0 → yara_x-0.13.0}/parser/src/parser/tests/testdata/for-1.in +0 -0
- {yara_x-0.12.0 → yara_x-0.13.0}/parser/src/parser/tests/testdata/for-2.ast +0 -0
- {yara_x-0.12.0 → yara_x-0.13.0}/parser/src/parser/tests/testdata/for-2.cst +0 -0
- {yara_x-0.12.0 → yara_x-0.13.0}/parser/src/parser/tests/testdata/for-2.in +0 -0
- {yara_x-0.12.0 → yara_x-0.13.0}/parser/src/parser/tests/testdata/for-3.ast +0 -0
- {yara_x-0.12.0 → yara_x-0.13.0}/parser/src/parser/tests/testdata/for-3.cst +0 -0
- {yara_x-0.12.0 → yara_x-0.13.0}/parser/src/parser/tests/testdata/for-3.in +0 -0
- {yara_x-0.12.0 → yara_x-0.13.0}/parser/src/parser/tests/testdata/for-4.ast +0 -0
- {yara_x-0.12.0 → yara_x-0.13.0}/parser/src/parser/tests/testdata/for-4.cst +0 -0
- {yara_x-0.12.0 → yara_x-0.13.0}/parser/src/parser/tests/testdata/for-4.in +0 -0
- {yara_x-0.12.0 → yara_x-0.13.0}/parser/src/parser/tests/testdata/for-5.ast +0 -0
- {yara_x-0.12.0 → yara_x-0.13.0}/parser/src/parser/tests/testdata/for-5.cst +0 -0
- {yara_x-0.12.0 → yara_x-0.13.0}/parser/src/parser/tests/testdata/for-5.in +0 -0
- {yara_x-0.12.0 → yara_x-0.13.0}/parser/src/parser/tests/testdata/for-error-1.ast +0 -0
- {yara_x-0.12.0 → yara_x-0.13.0}/parser/src/parser/tests/testdata/for-error-1.cst +0 -0
- {yara_x-0.12.0 → yara_x-0.13.0}/parser/src/parser/tests/testdata/for-error-1.in +0 -0
- {yara_x-0.12.0 → yara_x-0.13.0}/parser/src/parser/tests/testdata/func-call.ast +0 -0
- {yara_x-0.12.0 → yara_x-0.13.0}/parser/src/parser/tests/testdata/func-call.cst +0 -0
- {yara_x-0.12.0 → yara_x-0.13.0}/parser/src/parser/tests/testdata/func-call.in +0 -0
- {yara_x-0.12.0 → yara_x-0.13.0}/parser/src/parser/tests/testdata/hex-patterns-1.ast +0 -0
- {yara_x-0.12.0 → yara_x-0.13.0}/parser/src/parser/tests/testdata/hex-patterns-1.cst +0 -0
- {yara_x-0.12.0 → yara_x-0.13.0}/parser/src/parser/tests/testdata/hex-patterns-1.in +0 -0
- {yara_x-0.12.0 → yara_x-0.13.0}/parser/src/parser/tests/testdata/hex-patterns-2.ast +0 -0
- {yara_x-0.12.0 → yara_x-0.13.0}/parser/src/parser/tests/testdata/hex-patterns-2.cst +0 -0
- {yara_x-0.12.0 → yara_x-0.13.0}/parser/src/parser/tests/testdata/hex-patterns-2.in +0 -0
- {yara_x-0.12.0 → yara_x-0.13.0}/parser/src/parser/tests/testdata/hex-patterns-3.ast +0 -0
- {yara_x-0.12.0 → yara_x-0.13.0}/parser/src/parser/tests/testdata/hex-patterns-3.cst +0 -0
- {yara_x-0.12.0 → yara_x-0.13.0}/parser/src/parser/tests/testdata/hex-patterns-3.in +0 -0
- {yara_x-0.12.0 → yara_x-0.13.0}/parser/src/parser/tests/testdata/hex-patterns-error-1.ast +0 -0
- {yara_x-0.12.0 → yara_x-0.13.0}/parser/src/parser/tests/testdata/hex-patterns-error-1.cst +0 -0
- {yara_x-0.12.0 → yara_x-0.13.0}/parser/src/parser/tests/testdata/hex-patterns-error-1.in +0 -0
- {yara_x-0.12.0 → yara_x-0.13.0}/parser/src/parser/tests/testdata/hex-patterns-error-2.ast +0 -0
- {yara_x-0.12.0 → yara_x-0.13.0}/parser/src/parser/tests/testdata/hex-patterns-error-2.cst +0 -0
- {yara_x-0.12.0 → yara_x-0.13.0}/parser/src/parser/tests/testdata/hex-patterns-error-2.in +0 -0
- {yara_x-0.12.0 → yara_x-0.13.0}/parser/src/parser/tests/testdata/meta-error-1.ast +0 -0
- {yara_x-0.12.0 → yara_x-0.13.0}/parser/src/parser/tests/testdata/meta-error-1.cst +0 -0
- {yara_x-0.12.0 → yara_x-0.13.0}/parser/src/parser/tests/testdata/meta-error-1.in +0 -0
- {yara_x-0.12.0 → yara_x-0.13.0}/parser/src/parser/tests/testdata/meta-error-2.ast +0 -0
- {yara_x-0.12.0 → yara_x-0.13.0}/parser/src/parser/tests/testdata/meta-error-2.cst +0 -0
- {yara_x-0.12.0 → yara_x-0.13.0}/parser/src/parser/tests/testdata/meta-error-2.in +0 -0
- {yara_x-0.12.0 → yara_x-0.13.0}/parser/src/parser/tests/testdata/meta-error-3.ast +0 -0
- {yara_x-0.12.0 → yara_x-0.13.0}/parser/src/parser/tests/testdata/meta-error-3.cst +0 -0
- {yara_x-0.12.0 → yara_x-0.13.0}/parser/src/parser/tests/testdata/meta-error-3.in +0 -0
- {yara_x-0.12.0 → yara_x-0.13.0}/parser/src/parser/tests/testdata/meta-error-4.ast +0 -0
- {yara_x-0.12.0 → yara_x-0.13.0}/parser/src/parser/tests/testdata/meta-error-4.cst +0 -0
- {yara_x-0.12.0 → yara_x-0.13.0}/parser/src/parser/tests/testdata/meta-error-4.in +0 -0
- {yara_x-0.12.0 → yara_x-0.13.0}/parser/src/parser/tests/testdata/meta-error-5.ast +0 -0
- {yara_x-0.12.0 → yara_x-0.13.0}/parser/src/parser/tests/testdata/meta-error-5.cst +0 -0
- {yara_x-0.12.0 → yara_x-0.13.0}/parser/src/parser/tests/testdata/meta-error-5.in +0 -0
- {yara_x-0.12.0 → yara_x-0.13.0}/parser/src/parser/tests/testdata/meta-error-6.ast +0 -0
- {yara_x-0.12.0 → yara_x-0.13.0}/parser/src/parser/tests/testdata/meta-error-6.cst +0 -0
- {yara_x-0.12.0 → yara_x-0.13.0}/parser/src/parser/tests/testdata/meta-error-6.in +0 -0
- {yara_x-0.12.0 → yara_x-0.13.0}/parser/src/parser/tests/testdata/meta.ast +0 -0
- {yara_x-0.12.0 → yara_x-0.13.0}/parser/src/parser/tests/testdata/meta.cst +0 -0
- {yara_x-0.12.0 → yara_x-0.13.0}/parser/src/parser/tests/testdata/meta.in +0 -0
- {yara_x-0.12.0 → yara_x-0.13.0}/parser/src/parser/tests/testdata/of-1.ast +0 -0
- {yara_x-0.12.0 → yara_x-0.13.0}/parser/src/parser/tests/testdata/of-1.cst +0 -0
- {yara_x-0.12.0 → yara_x-0.13.0}/parser/src/parser/tests/testdata/of-1.in +0 -0
- {yara_x-0.12.0 → yara_x-0.13.0}/parser/src/parser/tests/testdata/of-error-1.ast +0 -0
- {yara_x-0.12.0 → yara_x-0.13.0}/parser/src/parser/tests/testdata/of-error-1.cst +0 -0
- {yara_x-0.12.0 → yara_x-0.13.0}/parser/src/parser/tests/testdata/of-error-1.in +0 -0
- {yara_x-0.12.0 → yara_x-0.13.0}/parser/src/parser/tests/testdata/pattern-mods-1.ast +0 -0
- {yara_x-0.12.0 → yara_x-0.13.0}/parser/src/parser/tests/testdata/pattern-mods-1.cst +0 -0
- {yara_x-0.12.0 → yara_x-0.13.0}/parser/src/parser/tests/testdata/pattern-mods-1.in +0 -0
- {yara_x-0.12.0 → yara_x-0.13.0}/parser/src/parser/tests/testdata/pattern-mods-error-1.ast +0 -0
- {yara_x-0.12.0 → yara_x-0.13.0}/parser/src/parser/tests/testdata/pattern-mods-error-1.cst +0 -0
- {yara_x-0.12.0 → yara_x-0.13.0}/parser/src/parser/tests/testdata/pattern-mods-error-1.in +0 -0
- {yara_x-0.12.0 → yara_x-0.13.0}/parser/src/parser/tests/testdata/patterns-1.ast +0 -0
- {yara_x-0.12.0 → yara_x-0.13.0}/parser/src/parser/tests/testdata/patterns-1.cst +0 -0
- {yara_x-0.12.0 → yara_x-0.13.0}/parser/src/parser/tests/testdata/patterns-1.in +0 -0
- {yara_x-0.12.0 → yara_x-0.13.0}/parser/src/parser/tests/testdata/patterns-2.ast +0 -0
- {yara_x-0.12.0 → yara_x-0.13.0}/parser/src/parser/tests/testdata/patterns-2.cst +0 -0
- {yara_x-0.12.0 → yara_x-0.13.0}/parser/src/parser/tests/testdata/patterns-2.in +0 -0
- {yara_x-0.12.0 → yara_x-0.13.0}/parser/src/parser/tests/testdata/patterns-3.ast +0 -0
- {yara_x-0.12.0 → yara_x-0.13.0}/parser/src/parser/tests/testdata/patterns-3.cst +0 -0
- {yara_x-0.12.0 → yara_x-0.13.0}/parser/src/parser/tests/testdata/patterns-3.in +0 -0
- {yara_x-0.12.0 → yara_x-0.13.0}/parser/src/parser/tests/testdata/patterns-error-1.ast +0 -0
- {yara_x-0.12.0 → yara_x-0.13.0}/parser/src/parser/tests/testdata/patterns-error-1.cst +0 -0
- {yara_x-0.12.0 → yara_x-0.13.0}/parser/src/parser/tests/testdata/patterns-error-1.in +0 -0
- {yara_x-0.12.0 → yara_x-0.13.0}/parser/src/parser/tests/testdata/patterns-error-2.ast +0 -0
- {yara_x-0.12.0 → yara_x-0.13.0}/parser/src/parser/tests/testdata/patterns-error-2.cst +0 -0
- {yara_x-0.12.0 → yara_x-0.13.0}/parser/src/parser/tests/testdata/patterns-error-2.in +0 -0
- {yara_x-0.12.0 → yara_x-0.13.0}/parser/src/parser/tests/testdata/patterns-error-3.ast +0 -0
- {yara_x-0.12.0 → yara_x-0.13.0}/parser/src/parser/tests/testdata/patterns-error-3.cst +0 -0
- {yara_x-0.12.0 → yara_x-0.13.0}/parser/src/parser/tests/testdata/patterns-error-3.in +0 -0
- {yara_x-0.12.0 → yara_x-0.13.0}/parser/src/parser/tests/testdata/patterns-error-4.ast +0 -0
- {yara_x-0.12.0 → yara_x-0.13.0}/parser/src/parser/tests/testdata/patterns-error-4.cst +0 -0
- {yara_x-0.12.0 → yara_x-0.13.0}/parser/src/parser/tests/testdata/patterns-error-4.in +0 -0
- {yara_x-0.12.0 → yara_x-0.13.0}/parser/src/parser/tests/testdata/patterns-error-5.ast +0 -0
- {yara_x-0.12.0 → yara_x-0.13.0}/parser/src/parser/tests/testdata/patterns-error-5.cst +0 -0
- {yara_x-0.12.0 → yara_x-0.13.0}/parser/src/parser/tests/testdata/patterns-error-5.in +0 -0
- {yara_x-0.12.0 → yara_x-0.13.0}/parser/src/parser/tests/testdata/patterns-error-6.ast +0 -0
- {yara_x-0.12.0 → yara_x-0.13.0}/parser/src/parser/tests/testdata/patterns-error-6.cst +0 -0
- {yara_x-0.12.0 → yara_x-0.13.0}/parser/src/parser/tests/testdata/patterns-error-6.in +0 -0
- {yara_x-0.12.0 → yara_x-0.13.0}/parser/src/parser/tests/testdata/patterns-error-7.ast +0 -0
- {yara_x-0.12.0 → yara_x-0.13.0}/parser/src/parser/tests/testdata/patterns-error-7.cst +0 -0
- {yara_x-0.12.0 → yara_x-0.13.0}/parser/src/parser/tests/testdata/patterns-error-7.in +0 -0
- {yara_x-0.12.0 → yara_x-0.13.0}/parser/src/parser/tests/testdata/rule-mods-1.ast +0 -0
- {yara_x-0.12.0 → yara_x-0.13.0}/parser/src/parser/tests/testdata/rule-mods-1.cst +0 -0
- {yara_x-0.12.0 → yara_x-0.13.0}/parser/src/parser/tests/testdata/rule-mods-1.in +0 -0
- {yara_x-0.12.0 → yara_x-0.13.0}/parser/src/parser/tests/testdata/rule-tags-error-1.ast +0 -0
- {yara_x-0.12.0 → yara_x-0.13.0}/parser/src/parser/tests/testdata/rule-tags-error-1.cst +0 -0
- {yara_x-0.12.0 → yara_x-0.13.0}/parser/src/parser/tests/testdata/rule-tags-error-1.in +0 -0
- {yara_x-0.12.0 → yara_x-0.13.0}/parser/src/parser/tests/testdata/rule-tags-error-2.ast +0 -0
- {yara_x-0.12.0 → yara_x-0.13.0}/parser/src/parser/tests/testdata/rule-tags-error-2.cst +0 -0
- {yara_x-0.12.0 → yara_x-0.13.0}/parser/src/parser/tests/testdata/rule-tags-error-2.in +0 -0
- {yara_x-0.12.0 → yara_x-0.13.0}/parser/src/parser/tests/testdata/rule-tags-error-3.ast +0 -0
- {yara_x-0.12.0 → yara_x-0.13.0}/parser/src/parser/tests/testdata/rule-tags-error-3.cst +0 -0
- {yara_x-0.12.0 → yara_x-0.13.0}/parser/src/parser/tests/testdata/rule-tags-error-3.in +0 -0
- {yara_x-0.12.0 → yara_x-0.13.0}/parser/src/parser/tests/testdata/rule-tags.ast +0 -0
- {yara_x-0.12.0 → yara_x-0.13.0}/parser/src/parser/tests/testdata/rule-tags.cst +0 -0
- {yara_x-0.12.0 → yara_x-0.13.0}/parser/src/parser/tests/testdata/rule-tags.in +0 -0
- {yara_x-0.12.0 → yara_x-0.13.0}/parser/src/parser/tests/testdata/with-1.ast +0 -0
- {yara_x-0.12.0 → yara_x-0.13.0}/parser/src/parser/tests/testdata/with-1.cst +0 -0
- {yara_x-0.12.0 → yara_x-0.13.0}/parser/src/parser/tests/testdata/with-1.in +0 -0
- {yara_x-0.12.0 → yara_x-0.13.0}/parser/src/parser/tests/testdata/with-2.ast +0 -0
- {yara_x-0.12.0 → yara_x-0.13.0}/parser/src/parser/tests/testdata/with-2.cst +0 -0
- {yara_x-0.12.0 → yara_x-0.13.0}/parser/src/parser/tests/testdata/with-2.in +0 -0
- {yara_x-0.12.0 → yara_x-0.13.0}/parser/src/parser/tests/testdata/with-error-1.ast +0 -0
- {yara_x-0.12.0 → yara_x-0.13.0}/parser/src/parser/tests/testdata/with-error-1.cst +0 -0
- {yara_x-0.12.0 → yara_x-0.13.0}/parser/src/parser/tests/testdata/with-error-1.in +0 -0
- {yara_x-0.12.0 → yara_x-0.13.0}/parser/src/parser/tests/testdata/with-error-2.ast +0 -0
- {yara_x-0.12.0 → yara_x-0.13.0}/parser/src/parser/tests/testdata/with-error-2.cst +0 -0
- {yara_x-0.12.0 → yara_x-0.13.0}/parser/src/parser/tests/testdata/with-error-2.in +0 -0
- {yara_x-0.12.0 → yara_x-0.13.0}/parser/src/parser/tests/testdata/with-error-3.ast +0 -0
- {yara_x-0.12.0 → yara_x-0.13.0}/parser/src/parser/tests/testdata/with-error-3.cst +0 -0
- {yara_x-0.12.0 → yara_x-0.13.0}/parser/src/parser/tests/testdata/with-error-3.in +0 -0
- {yara_x-0.12.0 → yara_x-0.13.0}/parser/src/tokenizer/tests.rs +0 -0
- {yara_x-0.12.0 → yara_x-0.13.0}/parser/src/tokenizer/tokens.rs +0 -0
- {yara_x-0.12.0 → yara_x-0.13.0}/proto/Cargo.toml +0 -0
- {yara_x-0.12.0 → yara_x-0.13.0}/proto/build.rs +0 -0
- {yara_x-0.12.0 → yara_x-0.13.0}/proto/src/lib.rs +0 -0
- {yara_x-0.12.0 → yara_x-0.13.0}/proto/src/yara.proto +0 -0
- {yara_x-0.12.0 → yara_x-0.13.0}/proto-yaml/Cargo.toml +0 -0
- {yara_x-0.12.0/proto → yara_x-0.13.0/proto-yaml}/README.md +0 -0
- {yara_x-0.12.0 → yara_x-0.13.0}/proto-yaml/build.rs +0 -0
- {yara_x-0.12.0 → yara_x-0.13.0}/proto-yaml/src/lib.rs +0 -0
- {yara_x-0.12.0 → yara_x-0.13.0}/proto-yaml/src/tests/mod.rs +0 -0
- {yara_x-0.12.0 → yara_x-0.13.0}/proto-yaml/src/tests/test.proto +0 -0
- {yara_x-0.12.0 → yara_x-0.13.0}/proto-yaml/src/tests/testdata/1.in +0 -0
- {yara_x-0.12.0 → yara_x-0.13.0}/proto-yaml/src/tests/testdata/1.out +0 -0
- {yara_x-0.12.0 → yara_x-0.13.0}/proto-yaml/src/yaml.proto +0 -0
- {yara_x-0.12.0 → yara_x-0.13.0}/py/README.md +0 -0
- {yara_x-0.12.0 → yara_x-0.13.0}/py/build.rs +0 -0
|
@@ -58,6 +58,12 @@ dependencies = [
|
|
|
58
58
|
"alloc-no-stdlib",
|
|
59
59
|
]
|
|
60
60
|
|
|
61
|
+
[[package]]
|
|
62
|
+
name = "allocator-api2"
|
|
63
|
+
version = "0.2.21"
|
|
64
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
65
|
+
checksum = "683d7910e743518b0e34f1186f92494becacb047c7b6bf616c96772180fef923"
|
|
66
|
+
|
|
61
67
|
[[package]]
|
|
62
68
|
name = "android-tzdata"
|
|
63
69
|
version = "0.1.1"
|
|
@@ -124,19 +130,20 @@ dependencies = [
|
|
|
124
130
|
|
|
125
131
|
[[package]]
|
|
126
132
|
name = "anstyle-wincon"
|
|
127
|
-
version = "3.0.
|
|
133
|
+
version = "3.0.7"
|
|
128
134
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
129
|
-
checksum = "
|
|
135
|
+
checksum = "ca3534e77181a9cc07539ad51f2141fe32f6c3ffd4df76db8ad92346b003ae4e"
|
|
130
136
|
dependencies = [
|
|
131
137
|
"anstyle",
|
|
138
|
+
"once_cell",
|
|
132
139
|
"windows-sys 0.59.0",
|
|
133
140
|
]
|
|
134
141
|
|
|
135
142
|
[[package]]
|
|
136
143
|
name = "anyhow"
|
|
137
|
-
version = "1.0.
|
|
144
|
+
version = "1.0.95"
|
|
138
145
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
139
|
-
checksum = "
|
|
146
|
+
checksum = "34ac096ce696dc2fcabef30516bb13c0a68a11d30131d3df6f04711467681b04"
|
|
140
147
|
|
|
141
148
|
[[package]]
|
|
142
149
|
name = "arbitrary"
|
|
@@ -149,9 +156,12 @@ dependencies = [
|
|
|
149
156
|
|
|
150
157
|
[[package]]
|
|
151
158
|
name = "array-bytes"
|
|
152
|
-
version = "
|
|
159
|
+
version = "9.1.2"
|
|
153
160
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
154
|
-
checksum = "
|
|
161
|
+
checksum = "4449507daf4f07a8c8309e122d32a53d15c9f33e77eaf01c839fea42ccd4d673"
|
|
162
|
+
dependencies = [
|
|
163
|
+
"smallvec",
|
|
164
|
+
]
|
|
155
165
|
|
|
156
166
|
[[package]]
|
|
157
167
|
name = "ascii_tree"
|
|
@@ -161,9 +171,9 @@ checksum = "ca6c635b3aa665c649ad1415f1573c85957dfa47690ec27aebe7ec17efe3c643"
|
|
|
161
171
|
|
|
162
172
|
[[package]]
|
|
163
173
|
name = "asn1-rs"
|
|
164
|
-
version = "0.
|
|
174
|
+
version = "0.7.0"
|
|
165
175
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
166
|
-
checksum = "
|
|
176
|
+
checksum = "607495ec7113b178fbba7a6166a27f99e774359ef4823adbefd756b5b81d7970"
|
|
167
177
|
dependencies = [
|
|
168
178
|
"asn1-rs-derive",
|
|
169
179
|
"asn1-rs-impl",
|
|
@@ -171,19 +181,19 @@ dependencies = [
|
|
|
171
181
|
"nom 7.1.3",
|
|
172
182
|
"num-traits",
|
|
173
183
|
"rusticata-macros",
|
|
174
|
-
"thiserror
|
|
184
|
+
"thiserror 2.0.11",
|
|
175
185
|
"time",
|
|
176
186
|
]
|
|
177
187
|
|
|
178
188
|
[[package]]
|
|
179
189
|
name = "asn1-rs-derive"
|
|
180
|
-
version = "0.
|
|
190
|
+
version = "0.6.0"
|
|
181
191
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
182
|
-
checksum = "
|
|
192
|
+
checksum = "3109e49b1e4909e9db6515a30c633684d68cdeaa252f215214cb4fa1a5bfee2c"
|
|
183
193
|
dependencies = [
|
|
184
194
|
"proc-macro2",
|
|
185
195
|
"quote",
|
|
186
|
-
"syn 2.0.
|
|
196
|
+
"syn 2.0.96",
|
|
187
197
|
"synstructure",
|
|
188
198
|
]
|
|
189
199
|
|
|
@@ -195,7 +205,38 @@ checksum = "7b18050c2cd6fe86c3a76584ef5e0baf286d038cda203eb6223df2cc413565f7"
|
|
|
195
205
|
dependencies = [
|
|
196
206
|
"proc-macro2",
|
|
197
207
|
"quote",
|
|
198
|
-
"syn 2.0.
|
|
208
|
+
"syn 2.0.96",
|
|
209
|
+
]
|
|
210
|
+
|
|
211
|
+
[[package]]
|
|
212
|
+
name = "assert_cmd"
|
|
213
|
+
version = "2.0.16"
|
|
214
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
215
|
+
checksum = "dc1835b7f27878de8525dc71410b5a31cdcc5f230aed5ba5df968e09c201b23d"
|
|
216
|
+
dependencies = [
|
|
217
|
+
"anstyle",
|
|
218
|
+
"bstr",
|
|
219
|
+
"doc-comment",
|
|
220
|
+
"libc",
|
|
221
|
+
"predicates",
|
|
222
|
+
"predicates-core",
|
|
223
|
+
"predicates-tree",
|
|
224
|
+
"wait-timeout",
|
|
225
|
+
]
|
|
226
|
+
|
|
227
|
+
[[package]]
|
|
228
|
+
name = "assert_fs"
|
|
229
|
+
version = "1.1.2"
|
|
230
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
231
|
+
checksum = "7efdb1fdb47602827a342857666feb372712cbc64b414172bd6b167a02927674"
|
|
232
|
+
dependencies = [
|
|
233
|
+
"anstyle",
|
|
234
|
+
"doc-comment",
|
|
235
|
+
"globwalk",
|
|
236
|
+
"predicates",
|
|
237
|
+
"predicates-core",
|
|
238
|
+
"predicates-tree",
|
|
239
|
+
"tempfile",
|
|
199
240
|
]
|
|
200
241
|
|
|
201
242
|
[[package]]
|
|
@@ -260,15 +301,12 @@ checksum = "bef38d45163c2f1dde094a7dfd33ccf595c92905c8f8f4fdc18d06fb1037718a"
|
|
|
260
301
|
|
|
261
302
|
[[package]]
|
|
262
303
|
name = "bitflags"
|
|
263
|
-
version = "2.
|
|
264
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
265
|
-
checksum = "b048fb63fd8b5923fc5aa7b340d8e156aec7ec02f0c78fa8a6ddc2613f6f71de"
|
|
266
|
-
|
|
267
|
-
[[package]]
|
|
268
|
-
name = "bitmask"
|
|
269
|
-
version = "0.5.0"
|
|
304
|
+
version = "2.8.0"
|
|
270
305
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
271
|
-
checksum = "
|
|
306
|
+
checksum = "8f68f53c83ab957f72c32642f3868eec03eb974d1fb82e453128456482613d36"
|
|
307
|
+
dependencies = [
|
|
308
|
+
"serde",
|
|
309
|
+
]
|
|
272
310
|
|
|
273
311
|
[[package]]
|
|
274
312
|
name = "bitvec"
|
|
@@ -323,9 +361,9 @@ dependencies = [
|
|
|
323
361
|
|
|
324
362
|
[[package]]
|
|
325
363
|
name = "bstr"
|
|
326
|
-
version = "1.11.
|
|
364
|
+
version = "1.11.3"
|
|
327
365
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
328
|
-
checksum = "
|
|
366
|
+
checksum = "531a9155a481e2ee699d4f98f43c0ca4ff8ee1bfd55c31e9e98fb29d2b176fe0"
|
|
329
367
|
dependencies = [
|
|
330
368
|
"memchr",
|
|
331
369
|
"regex-automata",
|
|
@@ -337,6 +375,9 @@ name = "bumpalo"
|
|
|
337
375
|
version = "3.16.0"
|
|
338
376
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
339
377
|
checksum = "79296716171880943b8470b5f8d03aa55eb2e645a4874bdbb28adb49162e012c"
|
|
378
|
+
dependencies = [
|
|
379
|
+
"allocator-api2",
|
|
380
|
+
]
|
|
340
381
|
|
|
341
382
|
[[package]]
|
|
342
383
|
name = "bytecount"
|
|
@@ -346,9 +387,9 @@ checksum = "5ce89b21cab1437276d2650d57e971f9d548a2d9037cc231abdc0562b97498ce"
|
|
|
346
387
|
|
|
347
388
|
[[package]]
|
|
348
389
|
name = "bytemuck"
|
|
349
|
-
version = "1.
|
|
390
|
+
version = "1.21.0"
|
|
350
391
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
351
|
-
checksum = "
|
|
392
|
+
checksum = "ef657dfab802224e671f5818e9a4935f9b1957ed18e58292690cc39e7a4092a3"
|
|
352
393
|
|
|
353
394
|
[[package]]
|
|
354
395
|
name = "byteorder"
|
|
@@ -409,7 +450,7 @@ checksum = "4acbb09d9ee8e23699b9634375c72795d095bf268439da88562cf9b501f181fa"
|
|
|
409
450
|
dependencies = [
|
|
410
451
|
"camino",
|
|
411
452
|
"cargo-platform",
|
|
412
|
-
"semver 1.0.
|
|
453
|
+
"semver 1.0.24",
|
|
413
454
|
"serde",
|
|
414
455
|
"serde_json",
|
|
415
456
|
]
|
|
@@ -425,9 +466,9 @@ dependencies = [
|
|
|
425
466
|
|
|
426
467
|
[[package]]
|
|
427
468
|
name = "cbindgen"
|
|
428
|
-
version = "0.
|
|
469
|
+
version = "0.28.0"
|
|
429
470
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
430
|
-
checksum = "
|
|
471
|
+
checksum = "eadd868a2ce9ca38de7eeafdcec9c7065ef89b42b32f0839278d55f35c54d1ff"
|
|
431
472
|
dependencies = [
|
|
432
473
|
"clap",
|
|
433
474
|
"heck 0.4.1",
|
|
@@ -437,16 +478,16 @@ dependencies = [
|
|
|
437
478
|
"quote",
|
|
438
479
|
"serde",
|
|
439
480
|
"serde_json",
|
|
440
|
-
"syn 2.0.
|
|
481
|
+
"syn 2.0.96",
|
|
441
482
|
"tempfile",
|
|
442
483
|
"toml",
|
|
443
484
|
]
|
|
444
485
|
|
|
445
486
|
[[package]]
|
|
446
487
|
name = "cc"
|
|
447
|
-
version = "1.2.
|
|
488
|
+
version = "1.2.9"
|
|
448
489
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
449
|
-
checksum = "
|
|
490
|
+
checksum = "c8293772165d9345bdaaa39b45b2109591e63fe5e6fbc23c6ff930a048aa310b"
|
|
450
491
|
dependencies = [
|
|
451
492
|
"jobserver",
|
|
452
493
|
"libc",
|
|
@@ -496,9 +537,9 @@ dependencies = [
|
|
|
496
537
|
|
|
497
538
|
[[package]]
|
|
498
539
|
name = "clap"
|
|
499
|
-
version = "4.5.
|
|
540
|
+
version = "4.5.26"
|
|
500
541
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
501
|
-
checksum = "
|
|
542
|
+
checksum = "a8eb5e908ef3a6efbe1ed62520fb7287959888c88485abe072543190ecc66783"
|
|
502
543
|
dependencies = [
|
|
503
544
|
"clap_builder",
|
|
504
545
|
"clap_derive",
|
|
@@ -506,9 +547,9 @@ dependencies = [
|
|
|
506
547
|
|
|
507
548
|
[[package]]
|
|
508
549
|
name = "clap_builder"
|
|
509
|
-
version = "4.5.
|
|
550
|
+
version = "4.5.26"
|
|
510
551
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
511
|
-
checksum = "
|
|
552
|
+
checksum = "96b01801b5fc6a0a232407abc821660c9c6d25a1cafc0d4f85f29fb8d9afc121"
|
|
512
553
|
dependencies = [
|
|
513
554
|
"anstream",
|
|
514
555
|
"anstyle",
|
|
@@ -518,23 +559,23 @@ dependencies = [
|
|
|
518
559
|
|
|
519
560
|
[[package]]
|
|
520
561
|
name = "clap_complete"
|
|
521
|
-
version = "4.5.
|
|
562
|
+
version = "4.5.42"
|
|
522
563
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
523
|
-
checksum = "
|
|
564
|
+
checksum = "33a7e468e750fa4b6be660e8b5651ad47372e8fb114030b594c2d75d48c5ffd0"
|
|
524
565
|
dependencies = [
|
|
525
566
|
"clap",
|
|
526
567
|
]
|
|
527
568
|
|
|
528
569
|
[[package]]
|
|
529
570
|
name = "clap_derive"
|
|
530
|
-
version = "4.5.
|
|
571
|
+
version = "4.5.24"
|
|
531
572
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
532
|
-
checksum = "
|
|
573
|
+
checksum = "54b755194d6389280185988721fffba69495eed5ee9feeee9a599b53db80318c"
|
|
533
574
|
dependencies = [
|
|
534
575
|
"heck 0.5.0",
|
|
535
576
|
"proc-macro2",
|
|
536
577
|
"quote",
|
|
537
|
-
"syn 2.0.
|
|
578
|
+
"syn 2.0.96",
|
|
538
579
|
]
|
|
539
580
|
|
|
540
581
|
[[package]]
|
|
@@ -581,14 +622,14 @@ dependencies = [
|
|
|
581
622
|
|
|
582
623
|
[[package]]
|
|
583
624
|
name = "console"
|
|
584
|
-
version = "0.15.
|
|
625
|
+
version = "0.15.10"
|
|
585
626
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
586
|
-
checksum = "
|
|
627
|
+
checksum = "ea3c6ecd8059b57859df5c69830340ed3c41d30e3da0c1cbed90a96ac853041b"
|
|
587
628
|
dependencies = [
|
|
588
629
|
"encode_unicode",
|
|
589
|
-
"lazy_static",
|
|
590
630
|
"libc",
|
|
591
|
-
"
|
|
631
|
+
"once_cell",
|
|
632
|
+
"windows-sys 0.59.0",
|
|
592
633
|
]
|
|
593
634
|
|
|
594
635
|
[[package]]
|
|
@@ -646,18 +687,18 @@ dependencies = [
|
|
|
646
687
|
|
|
647
688
|
[[package]]
|
|
648
689
|
name = "cranelift-bforest"
|
|
649
|
-
version = "0.
|
|
690
|
+
version = "0.116.1"
|
|
650
691
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
651
|
-
checksum = "
|
|
692
|
+
checksum = "e15d04a0ce86cb36ead88ad68cf693ffd6cda47052b9e0ac114bc47fd9cd23c4"
|
|
652
693
|
dependencies = [
|
|
653
694
|
"cranelift-entity",
|
|
654
695
|
]
|
|
655
696
|
|
|
656
697
|
[[package]]
|
|
657
698
|
name = "cranelift-bitset"
|
|
658
|
-
version = "0.
|
|
699
|
+
version = "0.116.1"
|
|
659
700
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
660
|
-
checksum = "
|
|
701
|
+
checksum = "7c6e3969a7ce267259ce244b7867c5d3bc9e65b0a87e81039588dfdeaede9f34"
|
|
661
702
|
dependencies = [
|
|
662
703
|
"serde",
|
|
663
704
|
"serde_derive",
|
|
@@ -665,9 +706,9 @@ dependencies = [
|
|
|
665
706
|
|
|
666
707
|
[[package]]
|
|
667
708
|
name = "cranelift-codegen"
|
|
668
|
-
version = "0.
|
|
709
|
+
version = "0.116.1"
|
|
669
710
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
670
|
-
checksum = "
|
|
711
|
+
checksum = "2c22032c4cb42558371cf516bb47f26cdad1819d3475c133e93c49f50ebf304e"
|
|
671
712
|
dependencies = [
|
|
672
713
|
"bumpalo",
|
|
673
714
|
"cranelift-bforest",
|
|
@@ -682,39 +723,40 @@ dependencies = [
|
|
|
682
723
|
"log",
|
|
683
724
|
"regalloc2",
|
|
684
725
|
"rustc-hash 2.1.0",
|
|
726
|
+
"serde",
|
|
685
727
|
"smallvec",
|
|
686
|
-
"target-lexicon",
|
|
728
|
+
"target-lexicon 0.13.1",
|
|
687
729
|
]
|
|
688
730
|
|
|
689
731
|
[[package]]
|
|
690
732
|
name = "cranelift-codegen-meta"
|
|
691
|
-
version = "0.
|
|
733
|
+
version = "0.116.1"
|
|
692
734
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
693
|
-
checksum = "
|
|
735
|
+
checksum = "c904bc71c61b27fc57827f4a1379f29de64fe95653b620a3db77d59655eee0b8"
|
|
694
736
|
dependencies = [
|
|
695
737
|
"cranelift-codegen-shared",
|
|
696
738
|
]
|
|
697
739
|
|
|
698
740
|
[[package]]
|
|
699
741
|
name = "cranelift-codegen-shared"
|
|
700
|
-
version = "0.
|
|
742
|
+
version = "0.116.1"
|
|
701
743
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
702
|
-
checksum = "
|
|
744
|
+
checksum = "40180f5497572f644ce88c255480981ae2ec1d7bb4d8e0c0136a13b87a2f2ceb"
|
|
703
745
|
|
|
704
746
|
[[package]]
|
|
705
747
|
name = "cranelift-control"
|
|
706
|
-
version = "0.
|
|
748
|
+
version = "0.116.1"
|
|
707
749
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
708
|
-
checksum = "
|
|
750
|
+
checksum = "26d132c6d0bd8a489563472afc171759da0707804a65ece7ceb15a8c6d7dd5ef"
|
|
709
751
|
dependencies = [
|
|
710
752
|
"arbitrary",
|
|
711
753
|
]
|
|
712
754
|
|
|
713
755
|
[[package]]
|
|
714
756
|
name = "cranelift-entity"
|
|
715
|
-
version = "0.
|
|
757
|
+
version = "0.116.1"
|
|
716
758
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
717
|
-
checksum = "
|
|
759
|
+
checksum = "4b2d0d9618275474fbf679dd018ac6e009acbd6ae6850f6a67be33fb3b00b323"
|
|
718
760
|
dependencies = [
|
|
719
761
|
"cranelift-bitset",
|
|
720
762
|
"serde",
|
|
@@ -723,31 +765,31 @@ dependencies = [
|
|
|
723
765
|
|
|
724
766
|
[[package]]
|
|
725
767
|
name = "cranelift-frontend"
|
|
726
|
-
version = "0.
|
|
768
|
+
version = "0.116.1"
|
|
727
769
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
728
|
-
checksum = "
|
|
770
|
+
checksum = "4fac41e16729107393174b0c9e3730fb072866100e1e64e80a1a963b2e484d57"
|
|
729
771
|
dependencies = [
|
|
730
772
|
"cranelift-codegen",
|
|
731
773
|
"log",
|
|
732
774
|
"smallvec",
|
|
733
|
-
"target-lexicon",
|
|
775
|
+
"target-lexicon 0.13.1",
|
|
734
776
|
]
|
|
735
777
|
|
|
736
778
|
[[package]]
|
|
737
779
|
name = "cranelift-isle"
|
|
738
|
-
version = "0.
|
|
780
|
+
version = "0.116.1"
|
|
739
781
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
740
|
-
checksum = "
|
|
782
|
+
checksum = "1ca20d576e5070044d0a72a9effc2deacf4d6aa650403189d8ea50126483944d"
|
|
741
783
|
|
|
742
784
|
[[package]]
|
|
743
785
|
name = "cranelift-native"
|
|
744
|
-
version = "0.
|
|
786
|
+
version = "0.116.1"
|
|
745
787
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
746
|
-
checksum = "
|
|
788
|
+
checksum = "b8dee82f3f1f2c4cba9177f1cc5e350fe98764379bcd29340caa7b01f85076c7"
|
|
747
789
|
dependencies = [
|
|
748
790
|
"cranelift-codegen",
|
|
749
791
|
"libc",
|
|
750
|
-
"target-lexicon",
|
|
792
|
+
"target-lexicon 0.13.1",
|
|
751
793
|
]
|
|
752
794
|
|
|
753
795
|
[[package]]
|
|
@@ -789,18 +831,18 @@ dependencies = [
|
|
|
789
831
|
|
|
790
832
|
[[package]]
|
|
791
833
|
name = "crossbeam-channel"
|
|
792
|
-
version = "0.5.
|
|
834
|
+
version = "0.5.14"
|
|
793
835
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
794
|
-
checksum = "
|
|
836
|
+
checksum = "06ba6d68e24814cb8de6bb986db8222d3a027d15872cabc0d18817bc3c0e4471"
|
|
795
837
|
dependencies = [
|
|
796
838
|
"crossbeam-utils",
|
|
797
839
|
]
|
|
798
840
|
|
|
799
841
|
[[package]]
|
|
800
842
|
name = "crossbeam-deque"
|
|
801
|
-
version = "0.8.
|
|
843
|
+
version = "0.8.6"
|
|
802
844
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
803
|
-
checksum = "
|
|
845
|
+
checksum = "9dd111b7b7f7d55b72c0a6ae361660ee5853c9af73f70c3c2ef6858b950e2e51"
|
|
804
846
|
dependencies = [
|
|
805
847
|
"crossbeam-epoch",
|
|
806
848
|
"crossbeam-utils",
|
|
@@ -817,18 +859,18 @@ dependencies = [
|
|
|
817
859
|
|
|
818
860
|
[[package]]
|
|
819
861
|
name = "crossbeam-queue"
|
|
820
|
-
version = "0.3.
|
|
862
|
+
version = "0.3.12"
|
|
821
863
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
822
|
-
checksum = "
|
|
864
|
+
checksum = "0f58bbc28f91df819d0aa2a2c00cd19754769c2fad90579b3592b1c9ba7a3115"
|
|
823
865
|
dependencies = [
|
|
824
866
|
"crossbeam-utils",
|
|
825
867
|
]
|
|
826
868
|
|
|
827
869
|
[[package]]
|
|
828
870
|
name = "crossbeam-utils"
|
|
829
|
-
version = "0.8.
|
|
871
|
+
version = "0.8.21"
|
|
830
872
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
831
|
-
checksum = "
|
|
873
|
+
checksum = "d0a5c400df2834b80a4c3327b3aad3a4c4cd4de0629063962b03235697506a28"
|
|
832
874
|
|
|
833
875
|
[[package]]
|
|
834
876
|
name = "crossterm"
|
|
@@ -852,7 +894,7 @@ version = "0.28.1"
|
|
|
852
894
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
853
895
|
checksum = "829d955a0bb380ef178a640b91779e3987da38c9aea133b20614cfed8cdea9c6"
|
|
854
896
|
dependencies = [
|
|
855
|
-
"bitflags 2.
|
|
897
|
+
"bitflags 2.8.0",
|
|
856
898
|
"crossterm_winapi",
|
|
857
899
|
"mio 1.0.3",
|
|
858
900
|
"parking_lot",
|
|
@@ -906,7 +948,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
906
948
|
checksum = "eb2a7d3066da2de787b7f032c736763eb7ae5d355f81a68bab2675a96008b0bf"
|
|
907
949
|
dependencies = [
|
|
908
950
|
"lab",
|
|
909
|
-
"phf 0.11.
|
|
951
|
+
"phf 0.11.3",
|
|
910
952
|
]
|
|
911
953
|
|
|
912
954
|
[[package]]
|
|
@@ -930,7 +972,7 @@ dependencies = [
|
|
|
930
972
|
"proc-macro2",
|
|
931
973
|
"quote",
|
|
932
974
|
"strsim 0.11.1",
|
|
933
|
-
"syn 2.0.
|
|
975
|
+
"syn 2.0.96",
|
|
934
976
|
]
|
|
935
977
|
|
|
936
978
|
[[package]]
|
|
@@ -941,14 +983,14 @@ checksum = "d336a2a514f6ccccaa3e09b02d41d35330c07ddf03a62165fcec10bb561c7806"
|
|
|
941
983
|
dependencies = [
|
|
942
984
|
"darling_core",
|
|
943
985
|
"quote",
|
|
944
|
-
"syn 2.0.
|
|
986
|
+
"syn 2.0.96",
|
|
945
987
|
]
|
|
946
988
|
|
|
947
989
|
[[package]]
|
|
948
990
|
name = "data-encoding"
|
|
949
|
-
version = "2.
|
|
991
|
+
version = "2.7.0"
|
|
950
992
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
951
|
-
checksum = "
|
|
993
|
+
checksum = "0e60eed09d8c01d3cee5b7d30acb059b76614c918fa0f992e0dd6eeb10daad6f"
|
|
952
994
|
|
|
953
995
|
[[package]]
|
|
954
996
|
name = "deflate64"
|
|
@@ -975,9 +1017,9 @@ dependencies = [
|
|
|
975
1017
|
|
|
976
1018
|
[[package]]
|
|
977
1019
|
name = "der-parser"
|
|
978
|
-
version = "
|
|
1020
|
+
version = "10.0.0"
|
|
979
1021
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
980
|
-
checksum = "
|
|
1022
|
+
checksum = "07da5016415d5a3c4dd39b11ed26f915f52fc4e0dc197d87908bc916e51bc1a6"
|
|
981
1023
|
dependencies = [
|
|
982
1024
|
"asn1-rs",
|
|
983
1025
|
"displaydoc",
|
|
@@ -1004,7 +1046,7 @@ checksum = "30542c1ad912e0e3d22a1935c290e12e8a29d704a420177a31faad4a601a0800"
|
|
|
1004
1046
|
dependencies = [
|
|
1005
1047
|
"proc-macro2",
|
|
1006
1048
|
"quote",
|
|
1007
|
-
"syn 2.0.
|
|
1049
|
+
"syn 2.0.96",
|
|
1008
1050
|
]
|
|
1009
1051
|
|
|
1010
1052
|
[[package]]
|
|
@@ -1013,6 +1055,12 @@ version = "0.1.13"
|
|
|
1013
1055
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1014
1056
|
checksum = "56254986775e3233ffa9c4d7d3faaf6d36a2c09d30b20687e9f88bc8bafc16c8"
|
|
1015
1057
|
|
|
1058
|
+
[[package]]
|
|
1059
|
+
name = "difflib"
|
|
1060
|
+
version = "0.4.0"
|
|
1061
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1062
|
+
checksum = "6184e33543162437515c2e2b48714794e37845ec9851711914eec9d308f6ebe8"
|
|
1063
|
+
|
|
1016
1064
|
[[package]]
|
|
1017
1065
|
name = "digest"
|
|
1018
1066
|
version = "0.9.0"
|
|
@@ -1062,9 +1110,15 @@ checksum = "97369cbbc041bc366949bc74d34658d6cda5621039731c6310521892a3a20ae0"
|
|
|
1062
1110
|
dependencies = [
|
|
1063
1111
|
"proc-macro2",
|
|
1064
1112
|
"quote",
|
|
1065
|
-
"syn 2.0.
|
|
1113
|
+
"syn 2.0.96",
|
|
1066
1114
|
]
|
|
1067
1115
|
|
|
1116
|
+
[[package]]
|
|
1117
|
+
name = "doc-comment"
|
|
1118
|
+
version = "0.3.3"
|
|
1119
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1120
|
+
checksum = "fea41bba32d969b513997752735605054bc0dfa92b4c56bf1189f2e174be7a10"
|
|
1121
|
+
|
|
1068
1122
|
[[package]]
|
|
1069
1123
|
name = "dsa"
|
|
1070
1124
|
version = "0.6.3"
|
|
@@ -1145,9 +1199,9 @@ dependencies = [
|
|
|
1145
1199
|
|
|
1146
1200
|
[[package]]
|
|
1147
1201
|
name = "encode_unicode"
|
|
1148
|
-
version = "0.
|
|
1202
|
+
version = "1.0.0"
|
|
1149
1203
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1150
|
-
checksum = "
|
|
1204
|
+
checksum = "34aa73646ffb006b8f5147f3dc182bd4bcb190227ce861fc4a4844bf8e3cb2c0"
|
|
1151
1205
|
|
|
1152
1206
|
[[package]]
|
|
1153
1207
|
name = "encoding_rs"
|
|
@@ -1167,14 +1221,14 @@ dependencies = [
|
|
|
1167
1221
|
"once_cell",
|
|
1168
1222
|
"proc-macro2",
|
|
1169
1223
|
"quote",
|
|
1170
|
-
"syn 2.0.
|
|
1224
|
+
"syn 2.0.96",
|
|
1171
1225
|
]
|
|
1172
1226
|
|
|
1173
1227
|
[[package]]
|
|
1174
1228
|
name = "env_filter"
|
|
1175
|
-
version = "0.1.
|
|
1229
|
+
version = "0.1.3"
|
|
1176
1230
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1177
|
-
checksum = "
|
|
1231
|
+
checksum = "186e05a59d4c50738528153b83b0b0194d3a29507dfec16eccd4b342903397d0"
|
|
1178
1232
|
dependencies = [
|
|
1179
1233
|
"log",
|
|
1180
1234
|
"regex",
|
|
@@ -1182,9 +1236,9 @@ dependencies = [
|
|
|
1182
1236
|
|
|
1183
1237
|
[[package]]
|
|
1184
1238
|
name = "env_logger"
|
|
1185
|
-
version = "0.11.
|
|
1239
|
+
version = "0.11.6"
|
|
1186
1240
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1187
|
-
checksum = "
|
|
1241
|
+
checksum = "dcaee3d8e3cfc3fd92428d477bc97fc29ec8716d180c0d74c643bb26166660e0"
|
|
1188
1242
|
dependencies = [
|
|
1189
1243
|
"anstream",
|
|
1190
1244
|
"anstyle",
|
|
@@ -1292,6 +1346,15 @@ dependencies = [
|
|
|
1292
1346
|
"miniz_oxide",
|
|
1293
1347
|
]
|
|
1294
1348
|
|
|
1349
|
+
[[package]]
|
|
1350
|
+
name = "float-cmp"
|
|
1351
|
+
version = "0.10.0"
|
|
1352
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1353
|
+
checksum = "b09cf3155332e944990140d967ff5eceb70df778b34f77d8075db46e4704e6d8"
|
|
1354
|
+
dependencies = [
|
|
1355
|
+
"num-traits",
|
|
1356
|
+
]
|
|
1357
|
+
|
|
1295
1358
|
[[package]]
|
|
1296
1359
|
name = "fmmap"
|
|
1297
1360
|
version = "0.3.3"
|
|
@@ -1314,9 +1377,9 @@ checksum = "3f9eec918d3f24069decb9af1554cad7c880e2da24a9afd88aca000531ab82c1"
|
|
|
1314
1377
|
|
|
1315
1378
|
[[package]]
|
|
1316
1379
|
name = "foldhash"
|
|
1317
|
-
version = "0.1.
|
|
1380
|
+
version = "0.1.4"
|
|
1318
1381
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1319
|
-
checksum = "
|
|
1382
|
+
checksum = "a0d2fde1f7b3d48b8395d5f2de76c18a528bd6a9cdde438df747bfcba3e05d6f"
|
|
1320
1383
|
|
|
1321
1384
|
[[package]]
|
|
1322
1385
|
name = "fraction"
|
|
@@ -1390,9 +1453,9 @@ dependencies = [
|
|
|
1390
1453
|
|
|
1391
1454
|
[[package]]
|
|
1392
1455
|
name = "glob"
|
|
1393
|
-
version = "0.3.
|
|
1456
|
+
version = "0.3.2"
|
|
1394
1457
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1395
|
-
checksum = "
|
|
1458
|
+
checksum = "a8d1add55171497b4705a648c6b583acafb01d58050a51727785f0b2c8e0a2b2"
|
|
1396
1459
|
|
|
1397
1460
|
[[package]]
|
|
1398
1461
|
name = "globset"
|
|
@@ -1413,7 +1476,7 @@ version = "0.9.1"
|
|
|
1413
1476
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1414
1477
|
checksum = "0bf760ebf69878d9fd8f110c89703d90ce35095324d1f1edcb595c63945ee757"
|
|
1415
1478
|
dependencies = [
|
|
1416
|
-
"bitflags 2.
|
|
1479
|
+
"bitflags 2.8.0",
|
|
1417
1480
|
"ignore",
|
|
1418
1481
|
"walkdir",
|
|
1419
1482
|
]
|
|
@@ -1464,6 +1527,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
1464
1527
|
checksum = "bf151400ff0baff5465007dd2f3e717f3fe502074ca563069ce3a6629d07b289"
|
|
1465
1528
|
dependencies = [
|
|
1466
1529
|
"foldhash",
|
|
1530
|
+
"serde",
|
|
1467
1531
|
]
|
|
1468
1532
|
|
|
1469
1533
|
[[package]]
|
|
@@ -1504,11 +1568,11 @@ dependencies = [
|
|
|
1504
1568
|
|
|
1505
1569
|
[[package]]
|
|
1506
1570
|
name = "home"
|
|
1507
|
-
version = "0.5.
|
|
1571
|
+
version = "0.5.11"
|
|
1508
1572
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1509
|
-
checksum = "
|
|
1573
|
+
checksum = "589533453244b0995c858700322199b2becb13b627df2851f64a2775d024abcf"
|
|
1510
1574
|
dependencies = [
|
|
1511
|
-
"windows-sys 0.
|
|
1575
|
+
"windows-sys 0.59.0",
|
|
1512
1576
|
]
|
|
1513
1577
|
|
|
1514
1578
|
[[package]]
|
|
@@ -1661,9 +1725,9 @@ dependencies = [
|
|
|
1661
1725
|
|
|
1662
1726
|
[[package]]
|
|
1663
1727
|
name = "itertools"
|
|
1664
|
-
version = "0.
|
|
1728
|
+
version = "0.14.0"
|
|
1665
1729
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1666
|
-
checksum = "
|
|
1730
|
+
checksum = "2b192c782037fadd9cfa75548310488aabdbf3d2da73885b31bd0abd03351285"
|
|
1667
1731
|
dependencies = [
|
|
1668
1732
|
"either",
|
|
1669
1733
|
]
|
|
@@ -1685,9 +1749,9 @@ dependencies = [
|
|
|
1685
1749
|
|
|
1686
1750
|
[[package]]
|
|
1687
1751
|
name = "js-sys"
|
|
1688
|
-
version = "0.3.
|
|
1752
|
+
version = "0.3.77"
|
|
1689
1753
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1690
|
-
checksum = "
|
|
1754
|
+
checksum = "1cfaf33c695fc6e08064efbc1f72ec937429614f25eef83af942d0e227c3a28f"
|
|
1691
1755
|
dependencies = [
|
|
1692
1756
|
"once_cell",
|
|
1693
1757
|
"wasm-bindgen",
|
|
@@ -1716,9 +1780,9 @@ checksum = "884e2677b40cc8c339eaefcb701c32ef1fd2493d71118dc0ca4b6a736c93bd67"
|
|
|
1716
1780
|
|
|
1717
1781
|
[[package]]
|
|
1718
1782
|
name = "libc"
|
|
1719
|
-
version = "0.2.
|
|
1783
|
+
version = "0.2.169"
|
|
1720
1784
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1721
|
-
checksum = "
|
|
1785
|
+
checksum = "b5aba8db14291edd000dfcc4d620c7ebfb122c613afb886ca8803fa4e128a20a"
|
|
1722
1786
|
|
|
1723
1787
|
[[package]]
|
|
1724
1788
|
name = "libm"
|
|
@@ -1732,7 +1796,7 @@ version = "0.1.3"
|
|
|
1732
1796
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1733
1797
|
checksum = "c0ff37bd590ca25063e35af745c343cb7a0271906fb7b37e4813e8f79f00268d"
|
|
1734
1798
|
dependencies = [
|
|
1735
|
-
"bitflags 2.
|
|
1799
|
+
"bitflags 2.8.0",
|
|
1736
1800
|
"libc",
|
|
1737
1801
|
]
|
|
1738
1802
|
|
|
@@ -1759,7 +1823,7 @@ dependencies = [
|
|
|
1759
1823
|
"serde",
|
|
1760
1824
|
"serde-wasm-bindgen",
|
|
1761
1825
|
"serde_json",
|
|
1762
|
-
"strum",
|
|
1826
|
+
"strum 0.25.0",
|
|
1763
1827
|
"strum_macros 0.25.3",
|
|
1764
1828
|
"wasm-bindgen",
|
|
1765
1829
|
]
|
|
@@ -1817,14 +1881,14 @@ checksum = "edbe595006d355eaf9ae11db92707d4338cd2384d16866131cc1afdbdd35d8d9"
|
|
|
1817
1881
|
dependencies = [
|
|
1818
1882
|
"proc-macro2",
|
|
1819
1883
|
"quote",
|
|
1820
|
-
"syn 2.0.
|
|
1884
|
+
"syn 2.0.96",
|
|
1821
1885
|
]
|
|
1822
1886
|
|
|
1823
1887
|
[[package]]
|
|
1824
1888
|
name = "linux-raw-sys"
|
|
1825
|
-
version = "0.4.
|
|
1889
|
+
version = "0.4.15"
|
|
1826
1890
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1827
|
-
checksum = "
|
|
1891
|
+
checksum = "d26c52dbd32dccf2d10cac7725f8eae5296885fb5703b261f7d0a0739ec807ab"
|
|
1828
1892
|
|
|
1829
1893
|
[[package]]
|
|
1830
1894
|
name = "lock_api"
|
|
@@ -1844,9 +1908,9 @@ checksum = "9374ef4228402d4b7e403e5838cb880d9ee663314b0a900d5a6aabf0c213552e"
|
|
|
1844
1908
|
|
|
1845
1909
|
[[package]]
|
|
1846
1910
|
name = "log"
|
|
1847
|
-
version = "0.4.
|
|
1911
|
+
version = "0.4.25"
|
|
1848
1912
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1849
|
-
checksum = "
|
|
1913
|
+
checksum = "04cbf5b083de1c7e0222a7a51dbfdba1cbe1c6ab0b15e29fff3f6c077fd9cd9f"
|
|
1850
1914
|
|
|
1851
1915
|
[[package]]
|
|
1852
1916
|
name = "logos"
|
|
@@ -1870,7 +1934,7 @@ dependencies = [
|
|
|
1870
1934
|
"quote",
|
|
1871
1935
|
"regex-syntax 0.8.5",
|
|
1872
1936
|
"rustc_version",
|
|
1873
|
-
"syn 2.0.
|
|
1937
|
+
"syn 2.0.96",
|
|
1874
1938
|
]
|
|
1875
1939
|
|
|
1876
1940
|
[[package]]
|
|
@@ -1907,7 +1971,7 @@ version = "0.16.2"
|
|
|
1907
1971
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1908
1972
|
checksum = "a200ae03df8c3dce7a963f6eeaac8feb41bf9001cb7e5ab22e3205aec2f0373d"
|
|
1909
1973
|
dependencies = [
|
|
1910
|
-
"bitflags 2.
|
|
1974
|
+
"bitflags 2.8.0",
|
|
1911
1975
|
"libc",
|
|
1912
1976
|
"magic-sys",
|
|
1913
1977
|
"thiserror 1.0.69",
|
|
@@ -2013,9 +2077,9 @@ checksum = "68354c5c6bd36d73ff3feceb05efa59b6acb7626617f4962be322a825e61f79a"
|
|
|
2013
2077
|
|
|
2014
2078
|
[[package]]
|
|
2015
2079
|
name = "miniz_oxide"
|
|
2016
|
-
version = "0.8.
|
|
2080
|
+
version = "0.8.3"
|
|
2017
2081
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2018
|
-
checksum = "
|
|
2082
|
+
checksum = "b8402cab7aefae129c6977bb0ff1b8fd9a04eb5b51efc50a70bea51cda0c7924"
|
|
2019
2083
|
dependencies = [
|
|
2020
2084
|
"adler2",
|
|
2021
2085
|
]
|
|
@@ -2076,6 +2140,12 @@ dependencies = [
|
|
|
2076
2140
|
"minimal-lexical",
|
|
2077
2141
|
]
|
|
2078
2142
|
|
|
2143
|
+
[[package]]
|
|
2144
|
+
name = "normalize-line-endings"
|
|
2145
|
+
version = "0.3.0"
|
|
2146
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2147
|
+
checksum = "61807f77802ff30975e01f4f071c8ba10c022052f98b3294119f3e615d13e5be"
|
|
2148
|
+
|
|
2079
2149
|
[[package]]
|
|
2080
2150
|
name = "num"
|
|
2081
2151
|
version = "0.4.3"
|
|
@@ -2151,7 +2221,7 @@ checksum = "ed3955f1a9c7c0c15e092f9c887db08b1fc683305fdf6eb6684f22555355e202"
|
|
|
2151
2221
|
dependencies = [
|
|
2152
2222
|
"proc-macro2",
|
|
2153
2223
|
"quote",
|
|
2154
|
-
"syn 2.0.
|
|
2224
|
+
"syn 2.0.96",
|
|
2155
2225
|
]
|
|
2156
2226
|
|
|
2157
2227
|
[[package]]
|
|
@@ -2197,9 +2267,9 @@ dependencies = [
|
|
|
2197
2267
|
|
|
2198
2268
|
[[package]]
|
|
2199
2269
|
name = "object"
|
|
2200
|
-
version = "0.36.
|
|
2270
|
+
version = "0.36.7"
|
|
2201
2271
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2202
|
-
checksum = "
|
|
2272
|
+
checksum = "62948e14d923ea95ea2c7c86c71013138b66525b86bdc08d2dcc262bdb497b87"
|
|
2203
2273
|
dependencies = [
|
|
2204
2274
|
"crc32fast",
|
|
2205
2275
|
"hashbrown 0.15.2",
|
|
@@ -2209,9 +2279,9 @@ dependencies = [
|
|
|
2209
2279
|
|
|
2210
2280
|
[[package]]
|
|
2211
2281
|
name = "oid-registry"
|
|
2212
|
-
version = "0.
|
|
2282
|
+
version = "0.8.0"
|
|
2213
2283
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2214
|
-
checksum = "
|
|
2284
|
+
checksum = "264c56d1492c13e769662197fb6b94e0a52abe52d27efac374615799a4bf453d"
|
|
2215
2285
|
dependencies = [
|
|
2216
2286
|
"asn1-rs",
|
|
2217
2287
|
]
|
|
@@ -2239,9 +2309,9 @@ dependencies = [
|
|
|
2239
2309
|
|
|
2240
2310
|
[[package]]
|
|
2241
2311
|
name = "ordered-float"
|
|
2242
|
-
version = "4.
|
|
2312
|
+
version = "4.6.0"
|
|
2243
2313
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2244
|
-
checksum = "
|
|
2314
|
+
checksum = "7bb71e1b3fa6ca1c61f383464aaf2bb0e2f8e772a1f01d486832464de363b951"
|
|
2245
2315
|
dependencies = [
|
|
2246
2316
|
"num-traits",
|
|
2247
2317
|
]
|
|
@@ -2316,7 +2386,7 @@ dependencies = [
|
|
|
2316
2386
|
"regex",
|
|
2317
2387
|
"regex-syntax 0.7.5",
|
|
2318
2388
|
"structmeta",
|
|
2319
|
-
"syn 2.0.
|
|
2389
|
+
"syn 2.0.96",
|
|
2320
2390
|
]
|
|
2321
2391
|
|
|
2322
2392
|
[[package]]
|
|
@@ -2351,7 +2421,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
2351
2421
|
checksum = "8b7cafe60d6cf8e62e1b9b2ea516a089c008945bb5a275416789e7db0bc199dc"
|
|
2352
2422
|
dependencies = [
|
|
2353
2423
|
"memchr",
|
|
2354
|
-
"thiserror 2.0.
|
|
2424
|
+
"thiserror 2.0.11",
|
|
2355
2425
|
"ucd-trie",
|
|
2356
2426
|
]
|
|
2357
2427
|
|
|
@@ -2375,7 +2445,7 @@ dependencies = [
|
|
|
2375
2445
|
"pest_meta",
|
|
2376
2446
|
"proc-macro2",
|
|
2377
2447
|
"quote",
|
|
2378
|
-
"syn 2.0.
|
|
2448
|
+
"syn 2.0.96",
|
|
2379
2449
|
]
|
|
2380
2450
|
|
|
2381
2451
|
[[package]]
|
|
@@ -2400,45 +2470,45 @@ dependencies = [
|
|
|
2400
2470
|
|
|
2401
2471
|
[[package]]
|
|
2402
2472
|
name = "phf"
|
|
2403
|
-
version = "0.11.
|
|
2473
|
+
version = "0.11.3"
|
|
2404
2474
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2405
|
-
checksum = "
|
|
2475
|
+
checksum = "1fd6780a80ae0c52cc120a26a1a42c1ae51b247a253e4e06113d23d2c2edd078"
|
|
2406
2476
|
dependencies = [
|
|
2407
2477
|
"phf_macros",
|
|
2408
|
-
"phf_shared 0.11.
|
|
2478
|
+
"phf_shared 0.11.3",
|
|
2409
2479
|
]
|
|
2410
2480
|
|
|
2411
2481
|
[[package]]
|
|
2412
2482
|
name = "phf_codegen"
|
|
2413
|
-
version = "0.11.
|
|
2483
|
+
version = "0.11.3"
|
|
2414
2484
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2415
|
-
checksum = "
|
|
2485
|
+
checksum = "aef8048c789fa5e851558d709946d6d79a8ff88c0440c587967f8e94bfb1216a"
|
|
2416
2486
|
dependencies = [
|
|
2417
2487
|
"phf_generator",
|
|
2418
|
-
"phf_shared 0.11.
|
|
2488
|
+
"phf_shared 0.11.3",
|
|
2419
2489
|
]
|
|
2420
2490
|
|
|
2421
2491
|
[[package]]
|
|
2422
2492
|
name = "phf_generator"
|
|
2423
|
-
version = "0.11.
|
|
2493
|
+
version = "0.11.3"
|
|
2424
2494
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2425
|
-
checksum = "
|
|
2495
|
+
checksum = "3c80231409c20246a13fddb31776fb942c38553c51e871f8cbd687a4cfb5843d"
|
|
2426
2496
|
dependencies = [
|
|
2427
|
-
"phf_shared 0.11.
|
|
2497
|
+
"phf_shared 0.11.3",
|
|
2428
2498
|
"rand",
|
|
2429
2499
|
]
|
|
2430
2500
|
|
|
2431
2501
|
[[package]]
|
|
2432
2502
|
name = "phf_macros"
|
|
2433
|
-
version = "0.11.
|
|
2503
|
+
version = "0.11.3"
|
|
2434
2504
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2435
|
-
checksum = "
|
|
2505
|
+
checksum = "f84ac04429c13a7ff43785d75ad27569f2951ce0ffd30a3321230db2fc727216"
|
|
2436
2506
|
dependencies = [
|
|
2437
2507
|
"phf_generator",
|
|
2438
|
-
"phf_shared 0.11.
|
|
2508
|
+
"phf_shared 0.11.3",
|
|
2439
2509
|
"proc-macro2",
|
|
2440
2510
|
"quote",
|
|
2441
|
-
"syn 2.0.
|
|
2511
|
+
"syn 2.0.96",
|
|
2442
2512
|
]
|
|
2443
2513
|
|
|
2444
2514
|
[[package]]
|
|
@@ -2447,16 +2517,16 @@ version = "0.10.0"
|
|
|
2447
2517
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2448
2518
|
checksum = "b6796ad771acdc0123d2a88dc428b5e38ef24456743ddb1744ed628f9815c096"
|
|
2449
2519
|
dependencies = [
|
|
2450
|
-
"siphasher",
|
|
2520
|
+
"siphasher 0.3.11",
|
|
2451
2521
|
]
|
|
2452
2522
|
|
|
2453
2523
|
[[package]]
|
|
2454
2524
|
name = "phf_shared"
|
|
2455
|
-
version = "0.11.
|
|
2525
|
+
version = "0.11.3"
|
|
2456
2526
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2457
|
-
checksum = "
|
|
2527
|
+
checksum = "67eabc2ef2a60eb7faa00097bd1ffdb5bd28e62bf39990626a582201b7a754e5"
|
|
2458
2528
|
dependencies = [
|
|
2459
|
-
"siphasher",
|
|
2529
|
+
"siphasher 1.0.1",
|
|
2460
2530
|
]
|
|
2461
2531
|
|
|
2462
2532
|
[[package]]
|
|
@@ -2519,6 +2589,36 @@ dependencies = [
|
|
|
2519
2589
|
"zerocopy",
|
|
2520
2590
|
]
|
|
2521
2591
|
|
|
2592
|
+
[[package]]
|
|
2593
|
+
name = "predicates"
|
|
2594
|
+
version = "3.1.3"
|
|
2595
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2596
|
+
checksum = "a5d19ee57562043d37e82899fade9a22ebab7be9cef5026b07fda9cdd4293573"
|
|
2597
|
+
dependencies = [
|
|
2598
|
+
"anstyle",
|
|
2599
|
+
"difflib",
|
|
2600
|
+
"float-cmp",
|
|
2601
|
+
"normalize-line-endings",
|
|
2602
|
+
"predicates-core",
|
|
2603
|
+
"regex",
|
|
2604
|
+
]
|
|
2605
|
+
|
|
2606
|
+
[[package]]
|
|
2607
|
+
name = "predicates-core"
|
|
2608
|
+
version = "1.0.9"
|
|
2609
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2610
|
+
checksum = "727e462b119fe9c93fd0eb1429a5f7647394014cf3c04ab2c0350eeb09095ffa"
|
|
2611
|
+
|
|
2612
|
+
[[package]]
|
|
2613
|
+
name = "predicates-tree"
|
|
2614
|
+
version = "1.0.12"
|
|
2615
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2616
|
+
checksum = "72dd2d6d381dfb73a193c7fca536518d7caee39fc8503f74e7dc0be0531b425c"
|
|
2617
|
+
dependencies = [
|
|
2618
|
+
"predicates-core",
|
|
2619
|
+
"termtree",
|
|
2620
|
+
]
|
|
2621
|
+
|
|
2522
2622
|
[[package]]
|
|
2523
2623
|
name = "pretty_assertions"
|
|
2524
2624
|
version = "1.4.1"
|
|
@@ -2540,9 +2640,9 @@ dependencies = [
|
|
|
2540
2640
|
|
|
2541
2641
|
[[package]]
|
|
2542
2642
|
name = "proc-macro2"
|
|
2543
|
-
version = "1.0.
|
|
2643
|
+
version = "1.0.93"
|
|
2544
2644
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2545
|
-
checksum = "
|
|
2645
|
+
checksum = "60946a68e5f9d28b0dc1c21bb8a97ee7d018a8b322fa57838ba31cc878e22d99"
|
|
2546
2646
|
dependencies = [
|
|
2547
2647
|
"unicode-ident",
|
|
2548
2648
|
]
|
|
@@ -2624,27 +2724,28 @@ version = "0.9.6"
|
|
|
2624
2724
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2625
2725
|
checksum = "57206b407293d2bcd3af849ce869d52068623f19e1b5ff8e8778e3309439682b"
|
|
2626
2726
|
dependencies = [
|
|
2627
|
-
"bitflags 2.
|
|
2727
|
+
"bitflags 2.8.0",
|
|
2628
2728
|
"memchr",
|
|
2629
2729
|
"unicase",
|
|
2630
2730
|
]
|
|
2631
2731
|
|
|
2632
2732
|
[[package]]
|
|
2633
2733
|
name = "pulley-interpreter"
|
|
2634
|
-
version = "
|
|
2734
|
+
version = "29.0.1"
|
|
2635
2735
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2636
|
-
checksum = "
|
|
2736
|
+
checksum = "62d95f8575df49a2708398182f49a888cf9dc30210fb1fd2df87c889edcee75d"
|
|
2637
2737
|
dependencies = [
|
|
2638
2738
|
"cranelift-bitset",
|
|
2639
2739
|
"log",
|
|
2640
2740
|
"sptr",
|
|
2741
|
+
"wasmtime-math",
|
|
2641
2742
|
]
|
|
2642
2743
|
|
|
2643
2744
|
[[package]]
|
|
2644
2745
|
name = "pyo3"
|
|
2645
|
-
version = "0.23.
|
|
2746
|
+
version = "0.23.4"
|
|
2646
2747
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2647
|
-
checksum = "
|
|
2748
|
+
checksum = "57fe09249128b3173d092de9523eaa75136bf7ba85e0d69eca241c7939c933cc"
|
|
2648
2749
|
dependencies = [
|
|
2649
2750
|
"cfg-if",
|
|
2650
2751
|
"indoc",
|
|
@@ -2660,19 +2761,19 @@ dependencies = [
|
|
|
2660
2761
|
|
|
2661
2762
|
[[package]]
|
|
2662
2763
|
name = "pyo3-build-config"
|
|
2663
|
-
version = "0.23.
|
|
2764
|
+
version = "0.23.4"
|
|
2664
2765
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2665
|
-
checksum = "
|
|
2766
|
+
checksum = "1cd3927b5a78757a0d71aa9dff669f903b1eb64b54142a9bd9f757f8fde65fd7"
|
|
2666
2767
|
dependencies = [
|
|
2667
2768
|
"once_cell",
|
|
2668
|
-
"target-lexicon",
|
|
2769
|
+
"target-lexicon 0.12.16",
|
|
2669
2770
|
]
|
|
2670
2771
|
|
|
2671
2772
|
[[package]]
|
|
2672
2773
|
name = "pyo3-ffi"
|
|
2673
|
-
version = "0.23.
|
|
2774
|
+
version = "0.23.4"
|
|
2674
2775
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2675
|
-
checksum = "
|
|
2776
|
+
checksum = "dab6bb2102bd8f991e7749f130a70d05dd557613e39ed2deeee8e9ca0c4d548d"
|
|
2676
2777
|
dependencies = [
|
|
2677
2778
|
"libc",
|
|
2678
2779
|
"pyo3-build-config",
|
|
@@ -2690,34 +2791,34 @@ dependencies = [
|
|
|
2690
2791
|
|
|
2691
2792
|
[[package]]
|
|
2692
2793
|
name = "pyo3-macros"
|
|
2693
|
-
version = "0.23.
|
|
2794
|
+
version = "0.23.4"
|
|
2694
2795
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2695
|
-
checksum = "
|
|
2796
|
+
checksum = "91871864b353fd5ffcb3f91f2f703a22a9797c91b9ab497b1acac7b07ae509c7"
|
|
2696
2797
|
dependencies = [
|
|
2697
2798
|
"proc-macro2",
|
|
2698
2799
|
"pyo3-macros-backend",
|
|
2699
2800
|
"quote",
|
|
2700
|
-
"syn 2.0.
|
|
2801
|
+
"syn 2.0.96",
|
|
2701
2802
|
]
|
|
2702
2803
|
|
|
2703
2804
|
[[package]]
|
|
2704
2805
|
name = "pyo3-macros-backend"
|
|
2705
|
-
version = "0.23.
|
|
2806
|
+
version = "0.23.4"
|
|
2706
2807
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2707
|
-
checksum = "
|
|
2808
|
+
checksum = "43abc3b80bc20f3facd86cd3c60beed58c3e2aa26213f3cda368de39c60a27e4"
|
|
2708
2809
|
dependencies = [
|
|
2709
2810
|
"heck 0.5.0",
|
|
2710
2811
|
"proc-macro2",
|
|
2711
2812
|
"pyo3-build-config",
|
|
2712
2813
|
"quote",
|
|
2713
|
-
"syn 2.0.
|
|
2814
|
+
"syn 2.0.96",
|
|
2714
2815
|
]
|
|
2715
2816
|
|
|
2716
2817
|
[[package]]
|
|
2717
2818
|
name = "quanta"
|
|
2718
|
-
version = "0.12.
|
|
2819
|
+
version = "0.12.5"
|
|
2719
2820
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2720
|
-
checksum = "
|
|
2821
|
+
checksum = "3bd1fe6824cea6538803de3ff1bc0cf3949024db3d43c9643024bfb33a807c0e"
|
|
2721
2822
|
dependencies = [
|
|
2722
2823
|
"crossbeam-utils",
|
|
2723
2824
|
"libc",
|
|
@@ -2730,9 +2831,9 @@ dependencies = [
|
|
|
2730
2831
|
|
|
2731
2832
|
[[package]]
|
|
2732
2833
|
name = "quote"
|
|
2733
|
-
version = "1.0.
|
|
2834
|
+
version = "1.0.38"
|
|
2734
2835
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2735
|
-
checksum = "
|
|
2836
|
+
checksum = "0e4dccaaaf89514f546c693ddc140f729f958c247918a13380cccc6078391acc"
|
|
2736
2837
|
dependencies = [
|
|
2737
2838
|
"proc-macro2",
|
|
2738
2839
|
]
|
|
@@ -2775,11 +2876,11 @@ dependencies = [
|
|
|
2775
2876
|
|
|
2776
2877
|
[[package]]
|
|
2777
2878
|
name = "raw-cpuid"
|
|
2778
|
-
version = "11.
|
|
2879
|
+
version = "11.3.0"
|
|
2779
2880
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2780
|
-
checksum = "
|
|
2881
|
+
checksum = "c6928fa44c097620b706542d428957635951bade7143269085389d42c8a4927e"
|
|
2781
2882
|
dependencies = [
|
|
2782
|
-
"bitflags 2.
|
|
2883
|
+
"bitflags 2.8.0",
|
|
2783
2884
|
]
|
|
2784
2885
|
|
|
2785
2886
|
[[package]]
|
|
@@ -2804,11 +2905,11 @@ dependencies = [
|
|
|
2804
2905
|
|
|
2805
2906
|
[[package]]
|
|
2806
2907
|
name = "redox_syscall"
|
|
2807
|
-
version = "0.5.
|
|
2908
|
+
version = "0.5.8"
|
|
2808
2909
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2809
|
-
checksum = "
|
|
2910
|
+
checksum = "03a862b389f93e68874fbf580b9de08dd02facb9a788ebadaf4a3fd33cf58834"
|
|
2810
2911
|
dependencies = [
|
|
2811
|
-
"bitflags 2.
|
|
2912
|
+
"bitflags 2.8.0",
|
|
2812
2913
|
]
|
|
2813
2914
|
|
|
2814
2915
|
[[package]]
|
|
@@ -2824,14 +2925,15 @@ dependencies = [
|
|
|
2824
2925
|
|
|
2825
2926
|
[[package]]
|
|
2826
2927
|
name = "regalloc2"
|
|
2827
|
-
version = "0.
|
|
2928
|
+
version = "0.11.1"
|
|
2828
2929
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2829
|
-
checksum = "
|
|
2930
|
+
checksum = "145c1c267e14f20fb0f88aa76a1c5ffec42d592c1d28b3cd9148ae35916158d3"
|
|
2830
2931
|
dependencies = [
|
|
2831
|
-
"
|
|
2932
|
+
"allocator-api2",
|
|
2933
|
+
"bumpalo",
|
|
2934
|
+
"hashbrown 0.15.2",
|
|
2832
2935
|
"log",
|
|
2833
2936
|
"rustc-hash 2.1.0",
|
|
2834
|
-
"slice-group-by",
|
|
2835
2937
|
"smallvec",
|
|
2836
2938
|
]
|
|
2837
2939
|
|
|
@@ -2951,7 +3053,7 @@ version = "0.4.1"
|
|
|
2951
3053
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2952
3054
|
checksum = "cfcb3a22ef46e85b45de6ee7e79d063319ebb6594faafcf1c225ea92ab6e9b92"
|
|
2953
3055
|
dependencies = [
|
|
2954
|
-
"semver 1.0.
|
|
3056
|
+
"semver 1.0.24",
|
|
2955
3057
|
]
|
|
2956
3058
|
|
|
2957
3059
|
[[package]]
|
|
@@ -2965,11 +3067,11 @@ dependencies = [
|
|
|
2965
3067
|
|
|
2966
3068
|
[[package]]
|
|
2967
3069
|
name = "rustix"
|
|
2968
|
-
version = "0.38.
|
|
3070
|
+
version = "0.38.43"
|
|
2969
3071
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2970
|
-
checksum = "
|
|
3072
|
+
checksum = "a78891ee6bf2340288408954ac787aa063d8e8817e9f53abb37c695c6d834ef6"
|
|
2971
3073
|
dependencies = [
|
|
2972
|
-
"bitflags 2.
|
|
3074
|
+
"bitflags 2.8.0",
|
|
2973
3075
|
"errno",
|
|
2974
3076
|
"libc",
|
|
2975
3077
|
"linux-raw-sys",
|
|
@@ -2978,9 +3080,9 @@ dependencies = [
|
|
|
2978
3080
|
|
|
2979
3081
|
[[package]]
|
|
2980
3082
|
name = "rustversion"
|
|
2981
|
-
version = "1.0.
|
|
3083
|
+
version = "1.0.19"
|
|
2982
3084
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2983
|
-
checksum = "
|
|
3085
|
+
checksum = "f7c45b9784283f1b2e7fb61b42047c2fd678ef0960d4f6f1eba131594cc369d4"
|
|
2984
3086
|
|
|
2985
3087
|
[[package]]
|
|
2986
3088
|
name = "ryu"
|
|
@@ -3028,9 +3130,9 @@ dependencies = [
|
|
|
3028
3130
|
|
|
3029
3131
|
[[package]]
|
|
3030
3132
|
name = "semver"
|
|
3031
|
-
version = "1.0.
|
|
3133
|
+
version = "1.0.24"
|
|
3032
3134
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3033
|
-
checksum = "
|
|
3135
|
+
checksum = "3cb6eb87a131f756572d7fb904f6e7b68633f09cca868c5df1c4b8d1a694bbba"
|
|
3034
3136
|
dependencies = [
|
|
3035
3137
|
"serde",
|
|
3036
3138
|
]
|
|
@@ -3046,9 +3148,9 @@ dependencies = [
|
|
|
3046
3148
|
|
|
3047
3149
|
[[package]]
|
|
3048
3150
|
name = "serde"
|
|
3049
|
-
version = "1.0.
|
|
3151
|
+
version = "1.0.217"
|
|
3050
3152
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3051
|
-
checksum = "
|
|
3153
|
+
checksum = "02fc4265df13d6fa1d00ecff087228cc0a2b5f3c0e87e258d8b94a156e984c70"
|
|
3052
3154
|
dependencies = [
|
|
3053
3155
|
"serde_derive",
|
|
3054
3156
|
]
|
|
@@ -3066,20 +3168,20 @@ dependencies = [
|
|
|
3066
3168
|
|
|
3067
3169
|
[[package]]
|
|
3068
3170
|
name = "serde_derive"
|
|
3069
|
-
version = "1.0.
|
|
3171
|
+
version = "1.0.217"
|
|
3070
3172
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3071
|
-
checksum = "
|
|
3173
|
+
checksum = "5a9bf7cf98d04a2b28aead066b7496853d4779c9cc183c440dbac457641e19a0"
|
|
3072
3174
|
dependencies = [
|
|
3073
3175
|
"proc-macro2",
|
|
3074
3176
|
"quote",
|
|
3075
|
-
"syn 2.0.
|
|
3177
|
+
"syn 2.0.96",
|
|
3076
3178
|
]
|
|
3077
3179
|
|
|
3078
3180
|
[[package]]
|
|
3079
3181
|
name = "serde_json"
|
|
3080
|
-
version = "1.0.
|
|
3182
|
+
version = "1.0.135"
|
|
3081
3183
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3082
|
-
checksum = "
|
|
3184
|
+
checksum = "2b0d7ba2887406110130a978386c4e1befb98c674b4fba677954e4db976630d9"
|
|
3083
3185
|
dependencies = [
|
|
3084
3186
|
"indexmap 2.7.0",
|
|
3085
3187
|
"itoa",
|
|
@@ -3221,6 +3323,12 @@ version = "0.3.11"
|
|
|
3221
3323
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3222
3324
|
checksum = "38b58827f4464d87d377d175e90bf58eb00fd8716ff0a62f80356b5e61555d0d"
|
|
3223
3325
|
|
|
3326
|
+
[[package]]
|
|
3327
|
+
name = "siphasher"
|
|
3328
|
+
version = "1.0.1"
|
|
3329
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3330
|
+
checksum = "56199f7ddabf13fe5074ce809e7d3f42b42ae711800501b5b16ea82ad029c39d"
|
|
3331
|
+
|
|
3224
3332
|
[[package]]
|
|
3225
3333
|
name = "skeptic"
|
|
3226
3334
|
version = "0.13.7"
|
|
@@ -3236,12 +3344,6 @@ dependencies = [
|
|
|
3236
3344
|
"walkdir",
|
|
3237
3345
|
]
|
|
3238
3346
|
|
|
3239
|
-
[[package]]
|
|
3240
|
-
name = "slice-group-by"
|
|
3241
|
-
version = "0.3.1"
|
|
3242
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3243
|
-
checksum = "826167069c09b99d56f31e9ae5c99049e932a98c9dc2dac47645b08dbbf76ba7"
|
|
3244
|
-
|
|
3245
3347
|
[[package]]
|
|
3246
3348
|
name = "smallvec"
|
|
3247
3349
|
version = "1.13.2"
|
|
@@ -3306,7 +3408,7 @@ dependencies = [
|
|
|
3306
3408
|
"proc-macro2",
|
|
3307
3409
|
"quote",
|
|
3308
3410
|
"structmeta-derive",
|
|
3309
|
-
"syn 2.0.
|
|
3411
|
+
"syn 2.0.96",
|
|
3310
3412
|
]
|
|
3311
3413
|
|
|
3312
3414
|
[[package]]
|
|
@@ -3317,7 +3419,7 @@ checksum = "a60bcaff7397072dca0017d1db428e30d5002e00b6847703e2e42005c95fbe00"
|
|
|
3317
3419
|
dependencies = [
|
|
3318
3420
|
"proc-macro2",
|
|
3319
3421
|
"quote",
|
|
3320
|
-
"syn 2.0.
|
|
3422
|
+
"syn 2.0.96",
|
|
3321
3423
|
]
|
|
3322
3424
|
|
|
3323
3425
|
[[package]]
|
|
@@ -3326,6 +3428,12 @@ version = "0.25.0"
|
|
|
3326
3428
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3327
3429
|
checksum = "290d54ea6f91c969195bdbcd7442c8c2a2ba87da8bf60a7ee86a235d4bc1e125"
|
|
3328
3430
|
|
|
3431
|
+
[[package]]
|
|
3432
|
+
name = "strum"
|
|
3433
|
+
version = "0.26.3"
|
|
3434
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3435
|
+
checksum = "8fec0f0aef304996cf250b31b5a10dee7980c85da9d759361292b8bca5a18f06"
|
|
3436
|
+
|
|
3329
3437
|
[[package]]
|
|
3330
3438
|
name = "strum_macros"
|
|
3331
3439
|
version = "0.25.3"
|
|
@@ -3336,7 +3444,7 @@ dependencies = [
|
|
|
3336
3444
|
"proc-macro2",
|
|
3337
3445
|
"quote",
|
|
3338
3446
|
"rustversion",
|
|
3339
|
-
"syn 2.0.
|
|
3447
|
+
"syn 2.0.96",
|
|
3340
3448
|
]
|
|
3341
3449
|
|
|
3342
3450
|
[[package]]
|
|
@@ -3349,7 +3457,7 @@ dependencies = [
|
|
|
3349
3457
|
"proc-macro2",
|
|
3350
3458
|
"quote",
|
|
3351
3459
|
"rustversion",
|
|
3352
|
-
"syn 2.0.
|
|
3460
|
+
"syn 2.0.96",
|
|
3353
3461
|
]
|
|
3354
3462
|
|
|
3355
3463
|
[[package]]
|
|
@@ -3387,9 +3495,9 @@ dependencies = [
|
|
|
3387
3495
|
|
|
3388
3496
|
[[package]]
|
|
3389
3497
|
name = "syn"
|
|
3390
|
-
version = "2.0.
|
|
3498
|
+
version = "2.0.96"
|
|
3391
3499
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3392
|
-
checksum = "
|
|
3500
|
+
checksum = "d5d0adab1ae378d7f53bdebc67a39f1f151407ef230f0ce2883572f5d8985c80"
|
|
3393
3501
|
dependencies = [
|
|
3394
3502
|
"proc-macro2",
|
|
3395
3503
|
"quote",
|
|
@@ -3404,7 +3512,7 @@ checksum = "c8af7666ab7b6390ab78131fb5b0fce11d6b7a6951602017c35fa82800708971"
|
|
|
3404
3512
|
dependencies = [
|
|
3405
3513
|
"proc-macro2",
|
|
3406
3514
|
"quote",
|
|
3407
|
-
"syn 2.0.
|
|
3515
|
+
"syn 2.0.96",
|
|
3408
3516
|
]
|
|
3409
3517
|
|
|
3410
3518
|
[[package]]
|
|
@@ -3419,14 +3527,21 @@ version = "0.12.16"
|
|
|
3419
3527
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3420
3528
|
checksum = "61c41af27dd6d1e27b1b16b489db798443478cef1f06a660c96db617ba5de3b1"
|
|
3421
3529
|
|
|
3530
|
+
[[package]]
|
|
3531
|
+
name = "target-lexicon"
|
|
3532
|
+
version = "0.13.1"
|
|
3533
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3534
|
+
checksum = "dc12939a1c9b9d391e0b7135f72fd30508b73450753e28341fed159317582a77"
|
|
3535
|
+
|
|
3422
3536
|
[[package]]
|
|
3423
3537
|
name = "tempfile"
|
|
3424
|
-
version = "3.
|
|
3538
|
+
version = "3.15.0"
|
|
3425
3539
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3426
|
-
checksum = "
|
|
3540
|
+
checksum = "9a8a559c81686f576e8cd0290cd2a24a2a9ad80c98b3478856500fcbd7acd704"
|
|
3427
3541
|
dependencies = [
|
|
3428
3542
|
"cfg-if",
|
|
3429
3543
|
"fastrand",
|
|
3544
|
+
"getrandom",
|
|
3430
3545
|
"once_cell",
|
|
3431
3546
|
"rustix",
|
|
3432
3547
|
"windows-sys 0.59.0",
|
|
@@ -3450,7 +3565,7 @@ dependencies = [
|
|
|
3450
3565
|
"dirs",
|
|
3451
3566
|
"fnv",
|
|
3452
3567
|
"nom 5.1.3",
|
|
3453
|
-
"phf 0.11.
|
|
3568
|
+
"phf 0.11.3",
|
|
3454
3569
|
"phf_codegen",
|
|
3455
3570
|
]
|
|
3456
3571
|
|
|
@@ -3463,6 +3578,12 @@ dependencies = [
|
|
|
3463
3578
|
"libc",
|
|
3464
3579
|
]
|
|
3465
3580
|
|
|
3581
|
+
[[package]]
|
|
3582
|
+
name = "termtree"
|
|
3583
|
+
version = "0.5.1"
|
|
3584
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3585
|
+
checksum = "8f50febec83f5ee1df3015341d8bd429f2d1cc62bcba7ea2076759d315084683"
|
|
3586
|
+
|
|
3466
3587
|
[[package]]
|
|
3467
3588
|
name = "termwiz"
|
|
3468
3589
|
version = "0.18.0"
|
|
@@ -3492,7 +3613,7 @@ dependencies = [
|
|
|
3492
3613
|
"semver 0.11.0",
|
|
3493
3614
|
"sha2 0.9.9",
|
|
3494
3615
|
"signal-hook 0.1.17",
|
|
3495
|
-
"siphasher",
|
|
3616
|
+
"siphasher 0.3.11",
|
|
3496
3617
|
"terminfo",
|
|
3497
3618
|
"termios",
|
|
3498
3619
|
"thiserror 1.0.69",
|
|
@@ -3522,11 +3643,11 @@ dependencies = [
|
|
|
3522
3643
|
|
|
3523
3644
|
[[package]]
|
|
3524
3645
|
name = "thiserror"
|
|
3525
|
-
version = "2.0.
|
|
3646
|
+
version = "2.0.11"
|
|
3526
3647
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3527
|
-
checksum = "
|
|
3648
|
+
checksum = "d452f284b73e6d76dd36758a0c8684b1d5be31f92b89d07fd5822175732206fc"
|
|
3528
3649
|
dependencies = [
|
|
3529
|
-
"thiserror-impl 2.0.
|
|
3650
|
+
"thiserror-impl 2.0.11",
|
|
3530
3651
|
]
|
|
3531
3652
|
|
|
3532
3653
|
[[package]]
|
|
@@ -3537,18 +3658,18 @@ checksum = "4fee6c4efc90059e10f81e6d42c60a18f76588c3d74cb83a0b242a2b6c7504c1"
|
|
|
3537
3658
|
dependencies = [
|
|
3538
3659
|
"proc-macro2",
|
|
3539
3660
|
"quote",
|
|
3540
|
-
"syn 2.0.
|
|
3661
|
+
"syn 2.0.96",
|
|
3541
3662
|
]
|
|
3542
3663
|
|
|
3543
3664
|
[[package]]
|
|
3544
3665
|
name = "thiserror-impl"
|
|
3545
|
-
version = "2.0.
|
|
3666
|
+
version = "2.0.11"
|
|
3546
3667
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3547
|
-
checksum = "
|
|
3668
|
+
checksum = "26afc1baea8a989337eeb52b6e72a039780ce45c3edfcc9c5b9d112feeb173c2"
|
|
3548
3669
|
dependencies = [
|
|
3549
3670
|
"proc-macro2",
|
|
3550
3671
|
"quote",
|
|
3551
|
-
"syn 2.0.
|
|
3672
|
+
"syn 2.0.96",
|
|
3552
3673
|
]
|
|
3553
3674
|
|
|
3554
3675
|
[[package]]
|
|
@@ -3654,9 +3775,9 @@ dependencies = [
|
|
|
3654
3775
|
|
|
3655
3776
|
[[package]]
|
|
3656
3777
|
name = "unicase"
|
|
3657
|
-
version = "2.8.
|
|
3778
|
+
version = "2.8.1"
|
|
3658
3779
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3659
|
-
checksum = "
|
|
3780
|
+
checksum = "75b844d17643ee918803943289730bec8aac480150456169e647ed0b576ba539"
|
|
3660
3781
|
|
|
3661
3782
|
[[package]]
|
|
3662
3783
|
name = "unicode-ident"
|
|
@@ -3702,9 +3823,9 @@ checksum = "06abde3611657adf66d383f00b093d7faecc7fa57071cce2578660c9f1010821"
|
|
|
3702
3823
|
|
|
3703
3824
|
[[package]]
|
|
3704
3825
|
name = "uuid"
|
|
3705
|
-
version = "1.
|
|
3826
|
+
version = "1.12.0"
|
|
3706
3827
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3707
|
-
checksum = "
|
|
3828
|
+
checksum = "744018581f9a3454a9e15beb8a33b017183f1e7c0cd170232a2d1453b23a51c4"
|
|
3708
3829
|
dependencies = [
|
|
3709
3830
|
"getrandom",
|
|
3710
3831
|
]
|
|
@@ -3730,6 +3851,15 @@ dependencies = [
|
|
|
3730
3851
|
"utf8parse",
|
|
3731
3852
|
]
|
|
3732
3853
|
|
|
3854
|
+
[[package]]
|
|
3855
|
+
name = "wait-timeout"
|
|
3856
|
+
version = "0.2.0"
|
|
3857
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3858
|
+
checksum = "9f200f5b12eb75f8c1ed65abd4b2db8a6e1b138a20de009dacee265a2498f3f6"
|
|
3859
|
+
dependencies = [
|
|
3860
|
+
"libc",
|
|
3861
|
+
]
|
|
3862
|
+
|
|
3733
3863
|
[[package]]
|
|
3734
3864
|
name = "walkdir"
|
|
3735
3865
|
version = "2.5.0"
|
|
@@ -3742,9 +3872,9 @@ dependencies = [
|
|
|
3742
3872
|
|
|
3743
3873
|
[[package]]
|
|
3744
3874
|
name = "walrus"
|
|
3745
|
-
version = "0.23.
|
|
3875
|
+
version = "0.23.3"
|
|
3746
3876
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3747
|
-
checksum = "
|
|
3877
|
+
checksum = "6481311b98508f4bc2d0abbfa5d42172e7a54b4b24d8f15e28b0dc650be0c59f"
|
|
3748
3878
|
dependencies = [
|
|
3749
3879
|
"anyhow",
|
|
3750
3880
|
"gimli 0.26.2",
|
|
@@ -3765,7 +3895,7 @@ dependencies = [
|
|
|
3765
3895
|
"heck 0.5.0",
|
|
3766
3896
|
"proc-macro2",
|
|
3767
3897
|
"quote",
|
|
3768
|
-
"syn 2.0.
|
|
3898
|
+
"syn 2.0.96",
|
|
3769
3899
|
]
|
|
3770
3900
|
|
|
3771
3901
|
[[package]]
|
|
@@ -3776,34 +3906,35 @@ checksum = "9c8d87e72b64a3b4db28d11ce29237c246188f4f51057d65a7eab63b7987e423"
|
|
|
3776
3906
|
|
|
3777
3907
|
[[package]]
|
|
3778
3908
|
name = "wasm-bindgen"
|
|
3779
|
-
version = "0.2.
|
|
3909
|
+
version = "0.2.100"
|
|
3780
3910
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3781
|
-
checksum = "
|
|
3911
|
+
checksum = "1edc8929d7499fc4e8f0be2262a241556cfc54a0bea223790e71446f2aab1ef5"
|
|
3782
3912
|
dependencies = [
|
|
3783
3913
|
"cfg-if",
|
|
3784
3914
|
"once_cell",
|
|
3915
|
+
"rustversion",
|
|
3785
3916
|
"wasm-bindgen-macro",
|
|
3786
3917
|
]
|
|
3787
3918
|
|
|
3788
3919
|
[[package]]
|
|
3789
3920
|
name = "wasm-bindgen-backend"
|
|
3790
|
-
version = "0.2.
|
|
3921
|
+
version = "0.2.100"
|
|
3791
3922
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3792
|
-
checksum = "
|
|
3923
|
+
checksum = "2f0a0651a5c2bc21487bde11ee802ccaf4c51935d0d3d42a6101f98161700bc6"
|
|
3793
3924
|
dependencies = [
|
|
3794
3925
|
"bumpalo",
|
|
3795
3926
|
"log",
|
|
3796
3927
|
"proc-macro2",
|
|
3797
3928
|
"quote",
|
|
3798
|
-
"syn 2.0.
|
|
3929
|
+
"syn 2.0.96",
|
|
3799
3930
|
"wasm-bindgen-shared",
|
|
3800
3931
|
]
|
|
3801
3932
|
|
|
3802
3933
|
[[package]]
|
|
3803
3934
|
name = "wasm-bindgen-macro"
|
|
3804
|
-
version = "0.2.
|
|
3935
|
+
version = "0.2.100"
|
|
3805
3936
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3806
|
-
checksum = "
|
|
3937
|
+
checksum = "7fe63fc6d09ed3792bd0897b314f53de8e16568c2b3f7982f468c0bf9bd0b407"
|
|
3807
3938
|
dependencies = [
|
|
3808
3939
|
"quote",
|
|
3809
3940
|
"wasm-bindgen-macro-support",
|
|
@@ -3811,22 +3942,25 @@ dependencies = [
|
|
|
3811
3942
|
|
|
3812
3943
|
[[package]]
|
|
3813
3944
|
name = "wasm-bindgen-macro-support"
|
|
3814
|
-
version = "0.2.
|
|
3945
|
+
version = "0.2.100"
|
|
3815
3946
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3816
|
-
checksum = "
|
|
3947
|
+
checksum = "8ae87ea40c9f689fc23f209965b6fb8a99ad69aeeb0231408be24920604395de"
|
|
3817
3948
|
dependencies = [
|
|
3818
3949
|
"proc-macro2",
|
|
3819
3950
|
"quote",
|
|
3820
|
-
"syn 2.0.
|
|
3951
|
+
"syn 2.0.96",
|
|
3821
3952
|
"wasm-bindgen-backend",
|
|
3822
3953
|
"wasm-bindgen-shared",
|
|
3823
3954
|
]
|
|
3824
3955
|
|
|
3825
3956
|
[[package]]
|
|
3826
3957
|
name = "wasm-bindgen-shared"
|
|
3827
|
-
version = "0.2.
|
|
3958
|
+
version = "0.2.100"
|
|
3828
3959
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3829
|
-
checksum = "
|
|
3960
|
+
checksum = "1a05d73b933a847d6cccdda8f838a22ff101ad9bf93e33684f39c1f5f0eece3d"
|
|
3961
|
+
dependencies = [
|
|
3962
|
+
"unicode-ident",
|
|
3963
|
+
]
|
|
3830
3964
|
|
|
3831
3965
|
[[package]]
|
|
3832
3966
|
name = "wasm-encoder"
|
|
@@ -3839,11 +3973,12 @@ dependencies = [
|
|
|
3839
3973
|
|
|
3840
3974
|
[[package]]
|
|
3841
3975
|
name = "wasm-encoder"
|
|
3842
|
-
version = "0.
|
|
3976
|
+
version = "0.221.2"
|
|
3843
3977
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3844
|
-
checksum = "
|
|
3978
|
+
checksum = "c17a3bd88f2155da63a1f2fcb8a56377a24f0b6dfed12733bb5f544e86f690c5"
|
|
3845
3979
|
dependencies = [
|
|
3846
3980
|
"leb128",
|
|
3981
|
+
"wasmparser 0.221.2",
|
|
3847
3982
|
]
|
|
3848
3983
|
|
|
3849
3984
|
[[package]]
|
|
@@ -3853,53 +3988,51 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
3853
3988
|
checksum = "5309c1090e3e84dad0d382f42064e9933fdaedb87e468cc239f0eabea73ddcb6"
|
|
3854
3989
|
dependencies = [
|
|
3855
3990
|
"ahash",
|
|
3856
|
-
"bitflags 2.
|
|
3991
|
+
"bitflags 2.8.0",
|
|
3857
3992
|
"hashbrown 0.14.5",
|
|
3858
3993
|
"indexmap 2.7.0",
|
|
3859
|
-
"semver 1.0.
|
|
3994
|
+
"semver 1.0.24",
|
|
3860
3995
|
"serde",
|
|
3861
3996
|
]
|
|
3862
3997
|
|
|
3863
3998
|
[[package]]
|
|
3864
3999
|
name = "wasmparser"
|
|
3865
|
-
version = "0.
|
|
4000
|
+
version = "0.221.2"
|
|
3866
4001
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3867
|
-
checksum = "
|
|
4002
|
+
checksum = "9845c470a2e10b61dd42c385839cdd6496363ed63b5c9e420b5488b77bd22083"
|
|
3868
4003
|
dependencies = [
|
|
3869
|
-
"
|
|
3870
|
-
"
|
|
3871
|
-
"hashbrown 0.14.5",
|
|
4004
|
+
"bitflags 2.8.0",
|
|
4005
|
+
"hashbrown 0.15.2",
|
|
3872
4006
|
"indexmap 2.7.0",
|
|
3873
|
-
"semver 1.0.
|
|
4007
|
+
"semver 1.0.24",
|
|
3874
4008
|
"serde",
|
|
3875
4009
|
]
|
|
3876
4010
|
|
|
3877
4011
|
[[package]]
|
|
3878
4012
|
name = "wasmprinter"
|
|
3879
|
-
version = "0.
|
|
4013
|
+
version = "0.221.2"
|
|
3880
4014
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3881
|
-
checksum = "
|
|
4015
|
+
checksum = "a80742ff1b9e6d8c231ac7c7247782c6fc5bce503af760bca071811e5fc9ee56"
|
|
3882
4016
|
dependencies = [
|
|
3883
4017
|
"anyhow",
|
|
3884
4018
|
"termcolor",
|
|
3885
|
-
"wasmparser 0.
|
|
4019
|
+
"wasmparser 0.221.2",
|
|
3886
4020
|
]
|
|
3887
4021
|
|
|
3888
4022
|
[[package]]
|
|
3889
4023
|
name = "wasmtime"
|
|
3890
|
-
version = "
|
|
4024
|
+
version = "29.0.1"
|
|
3891
4025
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3892
|
-
checksum = "
|
|
4026
|
+
checksum = "11976a250672556d1c4c04c6d5d7656ac9192ac9edc42a4587d6c21460010e69"
|
|
3893
4027
|
dependencies = [
|
|
3894
4028
|
"anyhow",
|
|
3895
|
-
"bitflags 2.
|
|
4029
|
+
"bitflags 2.8.0",
|
|
3896
4030
|
"bumpalo",
|
|
3897
4031
|
"cc",
|
|
3898
4032
|
"cfg-if",
|
|
3899
4033
|
"hashbrown 0.14.5",
|
|
3900
4034
|
"indexmap 2.7.0",
|
|
3901
4035
|
"libc",
|
|
3902
|
-
"libm",
|
|
3903
4036
|
"log",
|
|
3904
4037
|
"mach2",
|
|
3905
4038
|
"memfd",
|
|
@@ -3915,13 +4048,15 @@ dependencies = [
|
|
|
3915
4048
|
"serde_derive",
|
|
3916
4049
|
"smallvec",
|
|
3917
4050
|
"sptr",
|
|
3918
|
-
"target-lexicon",
|
|
3919
|
-
"wasmparser 0.
|
|
4051
|
+
"target-lexicon 0.13.1",
|
|
4052
|
+
"wasmparser 0.221.2",
|
|
3920
4053
|
"wasmtime-asm-macros",
|
|
3921
4054
|
"wasmtime-component-macro",
|
|
3922
4055
|
"wasmtime-cranelift",
|
|
3923
4056
|
"wasmtime-environ",
|
|
4057
|
+
"wasmtime-fiber",
|
|
3924
4058
|
"wasmtime-jit-icache-coherence",
|
|
4059
|
+
"wasmtime-math",
|
|
3925
4060
|
"wasmtime-slab",
|
|
3926
4061
|
"wasmtime-versioned-export-macros",
|
|
3927
4062
|
"windows-sys 0.59.0",
|
|
@@ -3929,23 +4064,23 @@ dependencies = [
|
|
|
3929
4064
|
|
|
3930
4065
|
[[package]]
|
|
3931
4066
|
name = "wasmtime-asm-macros"
|
|
3932
|
-
version = "
|
|
4067
|
+
version = "29.0.1"
|
|
3933
4068
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3934
|
-
checksum = "
|
|
4069
|
+
checksum = "1f178b0d125201fbe9f75beaf849bd3e511891f9e45ba216a5b620802ccf64f2"
|
|
3935
4070
|
dependencies = [
|
|
3936
4071
|
"cfg-if",
|
|
3937
4072
|
]
|
|
3938
4073
|
|
|
3939
4074
|
[[package]]
|
|
3940
4075
|
name = "wasmtime-component-macro"
|
|
3941
|
-
version = "
|
|
4076
|
+
version = "29.0.1"
|
|
3942
4077
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3943
|
-
checksum = "
|
|
4078
|
+
checksum = "d74de6592ed945d0a602f71243982a304d5d02f1e501b638addf57f42d57dfaf"
|
|
3944
4079
|
dependencies = [
|
|
3945
4080
|
"anyhow",
|
|
3946
4081
|
"proc-macro2",
|
|
3947
4082
|
"quote",
|
|
3948
|
-
"syn 2.0.
|
|
4083
|
+
"syn 2.0.96",
|
|
3949
4084
|
"wasmtime-component-util",
|
|
3950
4085
|
"wasmtime-wit-bindgen",
|
|
3951
4086
|
"wit-parser",
|
|
@@ -3953,15 +4088,15 @@ dependencies = [
|
|
|
3953
4088
|
|
|
3954
4089
|
[[package]]
|
|
3955
4090
|
name = "wasmtime-component-util"
|
|
3956
|
-
version = "
|
|
4091
|
+
version = "29.0.1"
|
|
3957
4092
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3958
|
-
checksum = "
|
|
4093
|
+
checksum = "707dc7b3c112ab5a366b30cfe2fb5b2f8e6a0f682f16df96a5ec582bfe6f056e"
|
|
3959
4094
|
|
|
3960
4095
|
[[package]]
|
|
3961
4096
|
name = "wasmtime-cranelift"
|
|
3962
|
-
version = "
|
|
4097
|
+
version = "29.0.1"
|
|
3963
4098
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3964
|
-
checksum = "
|
|
4099
|
+
checksum = "366be722674d4bf153290fbcbc4d7d16895cc82fb3e869f8d550ff768f9e9e87"
|
|
3965
4100
|
dependencies = [
|
|
3966
4101
|
"anyhow",
|
|
3967
4102
|
"cfg-if",
|
|
@@ -3975,18 +4110,18 @@ dependencies = [
|
|
|
3975
4110
|
"log",
|
|
3976
4111
|
"object",
|
|
3977
4112
|
"smallvec",
|
|
3978
|
-
"target-lexicon",
|
|
4113
|
+
"target-lexicon 0.13.1",
|
|
3979
4114
|
"thiserror 1.0.69",
|
|
3980
|
-
"wasmparser 0.
|
|
4115
|
+
"wasmparser 0.221.2",
|
|
3981
4116
|
"wasmtime-environ",
|
|
3982
4117
|
"wasmtime-versioned-export-macros",
|
|
3983
4118
|
]
|
|
3984
4119
|
|
|
3985
4120
|
[[package]]
|
|
3986
4121
|
name = "wasmtime-environ"
|
|
3987
|
-
version = "
|
|
4122
|
+
version = "29.0.1"
|
|
3988
4123
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3989
|
-
checksum = "
|
|
4124
|
+
checksum = "cdadc1af7097347aa276a4f008929810f726b5b46946971c660b6d421e9994ad"
|
|
3990
4125
|
dependencies = [
|
|
3991
4126
|
"anyhow",
|
|
3992
4127
|
"cranelift-bitset",
|
|
@@ -3999,17 +4134,32 @@ dependencies = [
|
|
|
3999
4134
|
"serde",
|
|
4000
4135
|
"serde_derive",
|
|
4001
4136
|
"smallvec",
|
|
4002
|
-
"target-lexicon",
|
|
4003
|
-
"wasm-encoder 0.
|
|
4004
|
-
"wasmparser 0.
|
|
4137
|
+
"target-lexicon 0.13.1",
|
|
4138
|
+
"wasm-encoder 0.221.2",
|
|
4139
|
+
"wasmparser 0.221.2",
|
|
4005
4140
|
"wasmprinter",
|
|
4006
4141
|
]
|
|
4007
4142
|
|
|
4143
|
+
[[package]]
|
|
4144
|
+
name = "wasmtime-fiber"
|
|
4145
|
+
version = "29.0.1"
|
|
4146
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4147
|
+
checksum = "ccba90d4119f081bca91190485650730a617be1fff5228f8c4757ce133d21117"
|
|
4148
|
+
dependencies = [
|
|
4149
|
+
"anyhow",
|
|
4150
|
+
"cc",
|
|
4151
|
+
"cfg-if",
|
|
4152
|
+
"rustix",
|
|
4153
|
+
"wasmtime-asm-macros",
|
|
4154
|
+
"wasmtime-versioned-export-macros",
|
|
4155
|
+
"windows-sys 0.59.0",
|
|
4156
|
+
]
|
|
4157
|
+
|
|
4008
4158
|
[[package]]
|
|
4009
4159
|
name = "wasmtime-jit-icache-coherence"
|
|
4010
|
-
version = "
|
|
4160
|
+
version = "29.0.1"
|
|
4011
4161
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4012
|
-
checksum = "
|
|
4162
|
+
checksum = "ec5e8552e01692e6c2e5293171704fed8abdec79d1a6995a0870ab190e5747d1"
|
|
4013
4163
|
dependencies = [
|
|
4014
4164
|
"anyhow",
|
|
4015
4165
|
"cfg-if",
|
|
@@ -4017,28 +4167,37 @@ dependencies = [
|
|
|
4017
4167
|
"windows-sys 0.59.0",
|
|
4018
4168
|
]
|
|
4019
4169
|
|
|
4170
|
+
[[package]]
|
|
4171
|
+
name = "wasmtime-math"
|
|
4172
|
+
version = "29.0.1"
|
|
4173
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4174
|
+
checksum = "29210ec2aa25e00f4d54605cedaf080f39ec01a872c5bd520ad04c67af1dde17"
|
|
4175
|
+
dependencies = [
|
|
4176
|
+
"libm",
|
|
4177
|
+
]
|
|
4178
|
+
|
|
4020
4179
|
[[package]]
|
|
4021
4180
|
name = "wasmtime-slab"
|
|
4022
|
-
version = "
|
|
4181
|
+
version = "29.0.1"
|
|
4023
4182
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4024
|
-
checksum = "
|
|
4183
|
+
checksum = "fcb5821a96fa04ac14bc7b158bb3d5cd7729a053db5a74dad396cd513a5e5ccf"
|
|
4025
4184
|
|
|
4026
4185
|
[[package]]
|
|
4027
4186
|
name = "wasmtime-versioned-export-macros"
|
|
4028
|
-
version = "
|
|
4187
|
+
version = "29.0.1"
|
|
4029
4188
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4030
|
-
checksum = "
|
|
4189
|
+
checksum = "86ff86db216dc0240462de40c8290887a613dddf9685508eb39479037ba97b5b"
|
|
4031
4190
|
dependencies = [
|
|
4032
4191
|
"proc-macro2",
|
|
4033
4192
|
"quote",
|
|
4034
|
-
"syn 2.0.
|
|
4193
|
+
"syn 2.0.96",
|
|
4035
4194
|
]
|
|
4036
4195
|
|
|
4037
4196
|
[[package]]
|
|
4038
4197
|
name = "wasmtime-wit-bindgen"
|
|
4039
|
-
version = "
|
|
4198
|
+
version = "29.0.1"
|
|
4040
4199
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4041
|
-
checksum = "
|
|
4200
|
+
checksum = "8358319c2dd1e4db79e3c1c5d3a5af84956615343f9f89f4e4996a36816e06e6"
|
|
4042
4201
|
dependencies = [
|
|
4043
4202
|
"anyhow",
|
|
4044
4203
|
"heck 0.5.0",
|
|
@@ -4048,9 +4207,9 @@ dependencies = [
|
|
|
4048
4207
|
|
|
4049
4208
|
[[package]]
|
|
4050
4209
|
name = "web-sys"
|
|
4051
|
-
version = "0.3.
|
|
4210
|
+
version = "0.3.77"
|
|
4052
4211
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4053
|
-
checksum = "
|
|
4212
|
+
checksum = "33b6dd2ef9186f1f2072e409e99cd22a975331a6b3591b12c764e0e55c60d5d2"
|
|
4054
4213
|
dependencies = [
|
|
4055
4214
|
"js-sys",
|
|
4056
4215
|
"wasm-bindgen",
|
|
@@ -4098,7 +4257,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
4098
4257
|
checksum = "dfb128bacfa86734e07681fb6068e34c144698e84ee022d6e009145d1abb77b5"
|
|
4099
4258
|
dependencies = [
|
|
4100
4259
|
"log",
|
|
4101
|
-
"ordered-float 4.
|
|
4260
|
+
"ordered-float 4.6.0",
|
|
4102
4261
|
"strsim 0.10.0",
|
|
4103
4262
|
"thiserror 1.0.69",
|
|
4104
4263
|
"wezterm-dynamic-derive",
|
|
@@ -4383,29 +4542,29 @@ checksum = "589f6da84c646204747d1270a2a5661ea66ed1cced2631d546fdfb155959f9ec"
|
|
|
4383
4542
|
|
|
4384
4543
|
[[package]]
|
|
4385
4544
|
name = "winnow"
|
|
4386
|
-
version = "0.6.
|
|
4545
|
+
version = "0.6.24"
|
|
4387
4546
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4388
|
-
checksum = "
|
|
4547
|
+
checksum = "c8d71a593cc5c42ad7876e2c1fda56f314f3754c084128833e64f1345ff8a03a"
|
|
4389
4548
|
dependencies = [
|
|
4390
4549
|
"memchr",
|
|
4391
4550
|
]
|
|
4392
4551
|
|
|
4393
4552
|
[[package]]
|
|
4394
4553
|
name = "wit-parser"
|
|
4395
|
-
version = "0.
|
|
4554
|
+
version = "0.221.2"
|
|
4396
4555
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4397
|
-
checksum = "
|
|
4556
|
+
checksum = "fbe1538eea6ea5ddbe5defd0dc82539ad7ba751e1631e9185d24a931f0a5adc8"
|
|
4398
4557
|
dependencies = [
|
|
4399
4558
|
"anyhow",
|
|
4400
4559
|
"id-arena",
|
|
4401
4560
|
"indexmap 2.7.0",
|
|
4402
4561
|
"log",
|
|
4403
|
-
"semver 1.0.
|
|
4562
|
+
"semver 1.0.24",
|
|
4404
4563
|
"serde",
|
|
4405
4564
|
"serde_derive",
|
|
4406
4565
|
"serde_json",
|
|
4407
4566
|
"unicode-xid",
|
|
4408
|
-
"wasmparser 0.
|
|
4567
|
+
"wasmparser 0.221.2",
|
|
4409
4568
|
]
|
|
4410
4569
|
|
|
4411
4570
|
[[package]]
|
|
@@ -4419,9 +4578,9 @@ dependencies = [
|
|
|
4419
4578
|
|
|
4420
4579
|
[[package]]
|
|
4421
4580
|
name = "x509-parser"
|
|
4422
|
-
version = "0.
|
|
4581
|
+
version = "0.17.0"
|
|
4423
4582
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4424
|
-
checksum = "
|
|
4583
|
+
checksum = "4569f339c0c402346d4a75a9e39cf8dad310e287eef1ff56d4c68e5067f53460"
|
|
4425
4584
|
dependencies = [
|
|
4426
4585
|
"asn1-rs",
|
|
4427
4586
|
"data-encoding",
|
|
@@ -4431,7 +4590,7 @@ dependencies = [
|
|
|
4431
4590
|
"oid-registry",
|
|
4432
4591
|
"ring",
|
|
4433
4592
|
"rusticata-macros",
|
|
4434
|
-
"thiserror
|
|
4593
|
+
"thiserror 2.0.11",
|
|
4435
4594
|
"time",
|
|
4436
4595
|
]
|
|
4437
4596
|
|
|
@@ -4443,7 +4602,7 @@ checksum = "cfe53a6657fd280eaa890a3bc59152892ffa3e30101319d168b781ed6529b049"
|
|
|
4443
4602
|
|
|
4444
4603
|
[[package]]
|
|
4445
4604
|
name = "yara-x"
|
|
4446
|
-
version = "0.
|
|
4605
|
+
version = "0.13.0"
|
|
4447
4606
|
dependencies = [
|
|
4448
4607
|
"aho-corasick",
|
|
4449
4608
|
"annotate-snippets",
|
|
@@ -4452,7 +4611,7 @@ dependencies = [
|
|
|
4452
4611
|
"ascii_tree",
|
|
4453
4612
|
"base64 0.22.1",
|
|
4454
4613
|
"bincode",
|
|
4455
|
-
"
|
|
4614
|
+
"bitflags 2.8.0",
|
|
4456
4615
|
"bitvec",
|
|
4457
4616
|
"bstr",
|
|
4458
4617
|
"const-oid",
|
|
@@ -4467,7 +4626,7 @@ dependencies = [
|
|
|
4467
4626
|
"ihex",
|
|
4468
4627
|
"indexmap 2.7.0",
|
|
4469
4628
|
"intaglio",
|
|
4470
|
-
"itertools 0.
|
|
4629
|
+
"itertools 0.14.0",
|
|
4471
4630
|
"lazy_static",
|
|
4472
4631
|
"lingua",
|
|
4473
4632
|
"linkme",
|
|
@@ -4488,6 +4647,7 @@ dependencies = [
|
|
|
4488
4647
|
"protobuf-parse",
|
|
4489
4648
|
"quanta",
|
|
4490
4649
|
"rayon",
|
|
4650
|
+
"regex",
|
|
4491
4651
|
"regex-automata",
|
|
4492
4652
|
"regex-syntax 0.8.5",
|
|
4493
4653
|
"roxmltree",
|
|
@@ -4498,7 +4658,8 @@ dependencies = [
|
|
|
4498
4658
|
"sha1",
|
|
4499
4659
|
"sha2 0.10.8",
|
|
4500
4660
|
"smallvec",
|
|
4501
|
-
"
|
|
4661
|
+
"strum_macros 0.26.4",
|
|
4662
|
+
"thiserror 2.0.11",
|
|
4502
4663
|
"tlsh-fixed",
|
|
4503
4664
|
"uuid",
|
|
4504
4665
|
"walrus",
|
|
@@ -4514,7 +4675,7 @@ dependencies = [
|
|
|
4514
4675
|
|
|
4515
4676
|
[[package]]
|
|
4516
4677
|
name = "yara-x-capi"
|
|
4517
|
-
version = "0.
|
|
4678
|
+
version = "0.13.0"
|
|
4518
4679
|
dependencies = [
|
|
4519
4680
|
"cbindgen",
|
|
4520
4681
|
"serde_json",
|
|
@@ -4523,10 +4684,12 @@ dependencies = [
|
|
|
4523
4684
|
|
|
4524
4685
|
[[package]]
|
|
4525
4686
|
name = "yara-x-cli"
|
|
4526
|
-
version = "0.
|
|
4687
|
+
version = "0.13.0"
|
|
4527
4688
|
dependencies = [
|
|
4528
4689
|
"anyhow",
|
|
4529
4690
|
"ascii_tree",
|
|
4691
|
+
"assert_cmd",
|
|
4692
|
+
"assert_fs",
|
|
4530
4693
|
"chardetng",
|
|
4531
4694
|
"clap",
|
|
4532
4695
|
"clap_complete",
|
|
@@ -4539,12 +4702,14 @@ dependencies = [
|
|
|
4539
4702
|
"figment",
|
|
4540
4703
|
"globwalk",
|
|
4541
4704
|
"home",
|
|
4542
|
-
"itertools 0.
|
|
4705
|
+
"itertools 0.14.0",
|
|
4543
4706
|
"log",
|
|
4707
|
+
"predicates",
|
|
4544
4708
|
"protobuf",
|
|
4545
4709
|
"protobuf-json-mapping",
|
|
4546
4710
|
"serde",
|
|
4547
4711
|
"serde_json",
|
|
4712
|
+
"strum 0.26.3",
|
|
4548
4713
|
"strum_macros 0.26.4",
|
|
4549
4714
|
"superconsole",
|
|
4550
4715
|
"wild",
|
|
@@ -4557,42 +4722,42 @@ dependencies = [
|
|
|
4557
4722
|
|
|
4558
4723
|
[[package]]
|
|
4559
4724
|
name = "yara-x-fmt"
|
|
4560
|
-
version = "0.
|
|
4725
|
+
version = "0.13.0"
|
|
4561
4726
|
dependencies = [
|
|
4562
|
-
"
|
|
4727
|
+
"bitflags 2.8.0",
|
|
4563
4728
|
"bstr",
|
|
4564
4729
|
"globwalk",
|
|
4565
4730
|
"goldenfile",
|
|
4566
4731
|
"lazy_static",
|
|
4567
4732
|
"pretty_assertions",
|
|
4568
4733
|
"rayon",
|
|
4569
|
-
"thiserror 2.0.
|
|
4734
|
+
"thiserror 2.0.11",
|
|
4570
4735
|
"yara-x-parser",
|
|
4571
4736
|
]
|
|
4572
4737
|
|
|
4573
4738
|
[[package]]
|
|
4574
4739
|
name = "yara-x-macros"
|
|
4575
|
-
version = "0.
|
|
4740
|
+
version = "0.13.0"
|
|
4576
4741
|
dependencies = [
|
|
4577
4742
|
"darling",
|
|
4578
4743
|
"proc-macro2",
|
|
4579
4744
|
"quote",
|
|
4580
|
-
"syn 2.0.
|
|
4745
|
+
"syn 2.0.96",
|
|
4581
4746
|
]
|
|
4582
4747
|
|
|
4583
4748
|
[[package]]
|
|
4584
4749
|
name = "yara-x-parser"
|
|
4585
|
-
version = "0.
|
|
4750
|
+
version = "0.13.0"
|
|
4586
4751
|
dependencies = [
|
|
4587
4752
|
"anyhow",
|
|
4588
4753
|
"ascii_tree",
|
|
4589
|
-
"
|
|
4754
|
+
"bitflags 2.8.0",
|
|
4590
4755
|
"bstr",
|
|
4591
4756
|
"env_logger",
|
|
4592
4757
|
"globwalk",
|
|
4593
4758
|
"goldenfile",
|
|
4594
4759
|
"indexmap 2.7.0",
|
|
4595
|
-
"itertools 0.
|
|
4760
|
+
"itertools 0.14.0",
|
|
4596
4761
|
"log",
|
|
4597
4762
|
"logos",
|
|
4598
4763
|
"num-traits",
|
|
@@ -4606,7 +4771,7 @@ dependencies = [
|
|
|
4606
4771
|
|
|
4607
4772
|
[[package]]
|
|
4608
4773
|
name = "yara-x-proto"
|
|
4609
|
-
version = "0.
|
|
4774
|
+
version = "0.13.0"
|
|
4610
4775
|
dependencies = [
|
|
4611
4776
|
"protobuf",
|
|
4612
4777
|
"protobuf-codegen",
|
|
@@ -4615,12 +4780,12 @@ dependencies = [
|
|
|
4615
4780
|
|
|
4616
4781
|
[[package]]
|
|
4617
4782
|
name = "yara-x-proto-yaml"
|
|
4618
|
-
version = "0.
|
|
4783
|
+
version = "0.13.0"
|
|
4619
4784
|
dependencies = [
|
|
4620
4785
|
"chrono",
|
|
4621
4786
|
"globwalk",
|
|
4622
4787
|
"goldenfile",
|
|
4623
|
-
"itertools 0.
|
|
4788
|
+
"itertools 0.14.0",
|
|
4624
4789
|
"protobuf",
|
|
4625
4790
|
"protobuf-codegen",
|
|
4626
4791
|
"protobuf-parse",
|
|
@@ -4630,7 +4795,7 @@ dependencies = [
|
|
|
4630
4795
|
|
|
4631
4796
|
[[package]]
|
|
4632
4797
|
name = "yara-x-py"
|
|
4633
|
-
version = "0.
|
|
4798
|
+
version = "0.13.0"
|
|
4634
4799
|
dependencies = [
|
|
4635
4800
|
"protobuf-json-mapping",
|
|
4636
4801
|
"pyo3",
|
|
@@ -4638,6 +4803,7 @@ dependencies = [
|
|
|
4638
4803
|
"pyo3-file",
|
|
4639
4804
|
"serde_json",
|
|
4640
4805
|
"yara-x",
|
|
4806
|
+
"yara-x-fmt",
|
|
4641
4807
|
]
|
|
4642
4808
|
|
|
4643
4809
|
[[package]]
|
|
@@ -4658,7 +4824,7 @@ checksum = "fa4f8080344d4671fb4e831a13ad1e68092748387dfc4f55e356242fae12ce3e"
|
|
|
4658
4824
|
dependencies = [
|
|
4659
4825
|
"proc-macro2",
|
|
4660
4826
|
"quote",
|
|
4661
|
-
"syn 2.0.
|
|
4827
|
+
"syn 2.0.96",
|
|
4662
4828
|
]
|
|
4663
4829
|
|
|
4664
4830
|
[[package]]
|
|
@@ -4678,14 +4844,14 @@ checksum = "ce36e65b0d2999d2aafac989fb249189a141aee1f53c612c1f37d72631959f69"
|
|
|
4678
4844
|
dependencies = [
|
|
4679
4845
|
"proc-macro2",
|
|
4680
4846
|
"quote",
|
|
4681
|
-
"syn 2.0.
|
|
4847
|
+
"syn 2.0.96",
|
|
4682
4848
|
]
|
|
4683
4849
|
|
|
4684
4850
|
[[package]]
|
|
4685
4851
|
name = "zip"
|
|
4686
|
-
version = "2.2.
|
|
4852
|
+
version = "2.2.2"
|
|
4687
4853
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4688
|
-
checksum = "
|
|
4854
|
+
checksum = "ae9c1ea7b3a5e1f4b922ff856a129881167511563dc219869afe3787fc0c1a45"
|
|
4689
4855
|
dependencies = [
|
|
4690
4856
|
"aes",
|
|
4691
4857
|
"arbitrary",
|
|
@@ -4703,7 +4869,7 @@ dependencies = [
|
|
|
4703
4869
|
"pbkdf2",
|
|
4704
4870
|
"rand",
|
|
4705
4871
|
"sha1",
|
|
4706
|
-
"thiserror 2.0.
|
|
4872
|
+
"thiserror 2.0.11",
|
|
4707
4873
|
"time",
|
|
4708
4874
|
"zeroize",
|
|
4709
4875
|
"zopfli",
|