yara-x 0.11.1__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.11.1 → yara_x-0.13.0}/Cargo.lock +644 -393
- {yara_x-0.11.1 → yara_x-0.13.0}/Cargo.toml +19 -15
- {yara_x-0.11.1 → yara_x-0.13.0}/PKG-INFO +2 -2
- {yara_x-0.11.1/py → yara_x-0.13.0}/README.md +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.11.1 → yara_x-0.13.0}/lib/Cargo.toml +7 -1
- {yara_x-0.11.1 → yara_x-0.13.0}/lib/src/compiler/atoms/mod.rs +3 -3
- {yara_x-0.11.1 → yara_x-0.13.0}/lib/src/compiler/context.rs +1 -1
- {yara_x-0.11.1 → yara_x-0.13.0}/lib/src/compiler/emit.rs +7 -6
- {yara_x-0.11.1 → yara_x-0.13.0}/lib/src/compiler/errors.rs +91 -0
- {yara_x-0.11.1 → yara_x-0.13.0}/lib/src/compiler/ir/ast2ir.rs +21 -22
- {yara_x-0.11.1 → yara_x-0.13.0}/lib/src/compiler/ir/dfs.rs +1 -1
- {yara_x-0.11.1 → yara_x-0.13.0}/lib/src/compiler/ir/mod.rs +22 -60
- {yara_x-0.11.1 → yara_x-0.13.0}/lib/src/compiler/ir/tests/testdata/1.cse.ir +30 -5
- {yara_x-0.11.1 → yara_x-0.13.0}/lib/src/compiler/ir/tests/testdata/1.hoisting.ir +30 -5
- {yara_x-0.11.1 → yara_x-0.13.0}/lib/src/compiler/ir/tests/testdata/1.in +15 -5
- {yara_x-0.11.1 → yara_x-0.13.0}/lib/src/compiler/ir/tests/testdata/1.ir +30 -5
- {yara_x-0.11.1 → yara_x-0.13.0}/lib/src/compiler/ir/tests/testdata/1.no-folding.ir +30 -5
- yara_x-0.13.0/lib/src/compiler/ir/tests/testdata/9.cse.ir +23 -0
- yara_x-0.13.0/lib/src/compiler/ir/tests/testdata/9.hoisting.ir +23 -0
- yara_x-0.13.0/lib/src/compiler/ir/tests/testdata/9.in +23 -0
- yara_x-0.13.0/lib/src/compiler/ir/tests/testdata/9.ir +23 -0
- yara_x-0.13.0/lib/src/compiler/ir/tests/testdata/9.no-folding.ir +23 -0
- yara_x-0.13.0/lib/src/compiler/linters.rs +302 -0
- {yara_x-0.11.1 → yara_x-0.13.0}/lib/src/compiler/mod.rs +117 -72
- {yara_x-0.11.1 → yara_x-0.13.0}/lib/src/compiler/tests/mod.rs +98 -5
- {yara_x-0.11.1 → yara_x-0.13.0}/lib/src/compiler/tests/testdata/errors/1.out +1 -1
- yara_x-0.13.0/lib/src/compiler/tests/testdata/errors/113.out +9 -0
- yara_x-0.13.0/lib/src/compiler/tests/testdata/errors/114.out +9 -0
- {yara_x-0.11.1 → yara_x-0.13.0}/lib/src/compiler/tests/testdata/errors/128.out +1 -1
- 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.13.0/lib/src/compiler/tests/testdata/errors/2.out +8 -0
- yara_x-0.13.0/lib/src/compiler/tests/testdata/errors/31.out +8 -0
- yara_x-0.13.0/lib/src/compiler/tests/testdata/errors/32.out +8 -0
- yara_x-0.13.0/lib/src/compiler/tests/testdata/errors/33.out +8 -0
- yara_x-0.13.0/lib/src/compiler/tests/testdata/errors/34.out +8 -0
- {yara_x-0.11.1 → yara_x-0.13.0}/lib/src/compiler/tests/testdata/errors/42.out +3 -2
- yara_x-0.13.0/lib/src/compiler/tests/testdata/errors/46.out +9 -0
- yara_x-0.13.0/lib/src/compiler/tests/testdata/errors/47.out +8 -0
- yara_x-0.13.0/lib/src/compiler/tests/testdata/errors/48.out +8 -0
- yara_x-0.13.0/lib/src/compiler/tests/testdata/errors/50.out +8 -0
- yara_x-0.13.0/lib/src/compiler/tests/testdata/errors/51.out +8 -0
- yara_x-0.13.0/lib/src/compiler/tests/testdata/errors/52.out +8 -0
- yara_x-0.13.0/lib/src/compiler/tests/testdata/warnings/11.out +8 -0
- {yara_x-0.11.1 → yara_x-0.13.0}/lib/src/compiler/tests/testdata/warnings/13.out +1 -1
- yara_x-0.13.0/lib/src/compiler/tests/testdata/warnings/23.in +13 -0
- {yara_x-0.11.1 → yara_x-0.13.0}/lib/src/compiler/tests/testdata/warnings/23.out +6 -0
- yara_x-0.13.0/lib/src/compiler/tests/testdata/warnings/3.out +8 -0
- yara_x-0.13.0/lib/src/compiler/tests/testdata/warnings/34.out +18 -0
- yara_x-0.13.0/lib/src/compiler/tests/testdata/warnings/35.in +6 -0
- yara_x-0.13.0/lib/src/compiler/tests/testdata/warnings/35.out +6 -0
- yara_x-0.13.0/lib/src/compiler/tests/testdata/warnings/4.out +8 -0
- yara_x-0.13.0/lib/src/compiler/tests/testdata/warnings/5.out +8 -0
- yara_x-0.13.0/lib/src/compiler/tests/testdata/warnings/7.out +8 -0
- yara_x-0.13.0/lib/src/compiler/tests/testdata/warnings/8.out +8 -0
- yara_x-0.13.0/lib/src/compiler/tests/testdata/warnings/9.out +8 -0
- {yara_x-0.11.1 → yara_x-0.13.0}/lib/src/compiler/tests/testdata/warnings/no_warnings.in +7 -0
- {yara_x-0.11.1 → yara_x-0.13.0}/lib/src/compiler/warnings.rs +94 -0
- {yara_x-0.11.1 → yara_x-0.13.0}/lib/src/lib.rs +10 -0
- {yara_x-0.11.1 → yara_x-0.13.0}/lib/src/models.rs +8 -8
- {yara_x-0.11.1 → yara_x-0.13.0}/lib/src/modules/dotnet/parser.rs +1 -1
- {yara_x-0.11.1 → yara_x-0.13.0}/lib/src/modules/elf/parser.rs +1 -4
- {yara_x-0.11.1 → yara_x-0.13.0}/lib/src/modules/macho/mod.rs +12 -13
- {yara_x-0.11.1 → yara_x-0.13.0}/lib/src/modules/macho/parser.rs +182 -59
- {yara_x-0.11.1 → yara_x-0.13.0}/lib/src/modules/macho/tests/mod.rs +26 -0
- {yara_x-0.11.1 → yara_x-0.13.0}/lib/src/modules/math.rs +10 -0
- {yara_x-0.11.1 → yara_x-0.13.0}/lib/src/modules/mod.rs +2 -0
- {yara_x-0.11.1 → yara_x-0.13.0}/lib/src/modules/pe/authenticode.rs +22 -9
- {yara_x-0.11.1 → yara_x-0.13.0}/lib/src/modules/pe/mod.rs +0 -1
- {yara_x-0.11.1 → yara_x-0.13.0}/lib/src/modules/pe/parser.rs +1 -0
- {yara_x-0.11.1 → yara_x-0.13.0}/lib/src/modules/protos/macho.proto +14 -10
- {yara_x-0.11.1 → yara_x-0.13.0}/lib/src/modules/protos/math.proto +5 -0
- {yara_x-0.11.1 → yara_x-0.13.0}/lib/src/modules/protos/pe.proto +4 -3
- {yara_x-0.11.1/proto/src → yara_x-0.13.0/lib/src/modules/protos}/yara.proto +4 -1
- {yara_x-0.11.1 → yara_x-0.13.0}/lib/src/modules/test_proto2/mod.rs +24 -3
- {yara_x-0.11.1 → yara_x-0.13.0}/lib/src/modules/test_proto2/tests/mod.rs +6 -0
- {yara_x-0.11.1/lib/src/modules/pe → yara_x-0.13.0/lib/src/modules/utils}/asn1.rs +38 -16
- yara_x-0.13.0/lib/src/modules/utils/mod.rs +1 -0
- {yara_x-0.11.1 → yara_x-0.13.0}/lib/src/re/fast/fastvm.rs +14 -14
- {yara_x-0.11.1 → yara_x-0.13.0}/lib/src/re/fast/instr.rs +1 -1
- {yara_x-0.11.1 → yara_x-0.13.0}/lib/src/re/hir.rs +1 -1
- {yara_x-0.11.1 → yara_x-0.13.0}/lib/src/re/thompson/compiler.rs +1 -4
- {yara_x-0.11.1 → yara_x-0.13.0}/lib/src/re/thompson/instr.rs +4 -4
- {yara_x-0.11.1 → yara_x-0.13.0}/lib/src/scanner/context.rs +16 -7
- {yara_x-0.11.1 → yara_x-0.13.0}/lib/src/scanner/mod.rs +28 -13
- {yara_x-0.11.1 → yara_x-0.13.0}/lib/src/scanner/tests.rs +64 -1
- {yara_x-0.11.1 → yara_x-0.13.0}/lib/src/symbols/mod.rs +1 -1
- {yara_x-0.11.1 → yara_x-0.13.0}/lib/src/tests/mod.rs +12 -0
- {yara_x-0.11.1 → yara_x-0.13.0}/lib/src/types/mod.rs +10 -0
- {yara_x-0.11.1 → yara_x-0.13.0}/lib/src/types/structure.rs +15 -7
- {yara_x-0.11.1 → 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.11.1 → yara_x-0.13.0}/parser/Cargo.toml +2 -2
- {yara_x-0.11.1 → yara_x-0.13.0}/parser/src/ast/ascii_tree.rs +2 -2
- {yara_x-0.11.1 → yara_x-0.13.0}/parser/src/ast/cst2ast.rs +15 -16
- {yara_x-0.11.1 → yara_x-0.13.0}/parser/src/ast/mod.rs +31 -18
- {yara_x-0.11.1 → yara_x-0.13.0}/parser/src/cst/mod.rs +23 -14
- {yara_x-0.11.1 → yara_x-0.13.0}/parser/src/cst/tests.rs +8 -4
- {yara_x-0.11.1 → yara_x-0.13.0}/parser/src/parser/mod.rs +7 -9
- {yara_x-0.11.1 → yara_x-0.13.0}/parser/src/parser/tests/mod.rs +1 -1
- {yara_x-0.11.1 → yara_x-0.13.0}/parser/src/parser/token_stream.rs +1 -1
- {yara_x-0.11.1 → 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.11.1/lib/src/modules/protos → yara_x-0.13.0/proto/src}/yara.proto +4 -1
- {yara_x-0.11.1 → yara_x-0.13.0}/py/Cargo.toml +8 -3
- {yara_x-0.11.1 → yara_x-0.13.0/py}/README.md +1 -1
- {yara_x-0.11.1 → yara_x-0.13.0}/py/src/lib.rs +117 -34
- {yara_x-0.11.1 → 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.11.1 → yara_x-0.13.0}/pyproject.toml +2 -1
- yara_x-0.11.1/lib/src/compiler/tests/testdata/errors/113.out +0 -8
- yara_x-0.11.1/lib/src/compiler/tests/testdata/errors/114.out +0 -8
- yara_x-0.11.1/lib/src/compiler/tests/testdata/errors/2.out +0 -7
- yara_x-0.11.1/lib/src/compiler/tests/testdata/errors/31.out +0 -7
- yara_x-0.11.1/lib/src/compiler/tests/testdata/errors/32.out +0 -7
- yara_x-0.11.1/lib/src/compiler/tests/testdata/errors/33.out +0 -7
- yara_x-0.11.1/lib/src/compiler/tests/testdata/errors/34.out +0 -7
- yara_x-0.11.1/lib/src/compiler/tests/testdata/errors/46.out +0 -7
- yara_x-0.11.1/lib/src/compiler/tests/testdata/errors/47.out +0 -7
- yara_x-0.11.1/lib/src/compiler/tests/testdata/errors/48.out +0 -7
- yara_x-0.11.1/lib/src/compiler/tests/testdata/errors/50.out +0 -7
- yara_x-0.11.1/lib/src/compiler/tests/testdata/errors/51.out +0 -7
- yara_x-0.11.1/lib/src/compiler/tests/testdata/errors/52.out +0 -7
- yara_x-0.11.1/lib/src/compiler/tests/testdata/warnings/11.out +0 -7
- yara_x-0.11.1/lib/src/compiler/tests/testdata/warnings/23.in +0 -6
- yara_x-0.11.1/lib/src/compiler/tests/testdata/warnings/3.out +0 -7
- yara_x-0.11.1/lib/src/compiler/tests/testdata/warnings/34.out +0 -14
- yara_x-0.11.1/lib/src/compiler/tests/testdata/warnings/4.out +0 -7
- yara_x-0.11.1/lib/src/compiler/tests/testdata/warnings/5.out +0 -7
- yara_x-0.11.1/lib/src/compiler/tests/testdata/warnings/7.out +0 -7
- yara_x-0.11.1/lib/src/compiler/tests/testdata/warnings/8.out +0 -7
- yara_x-0.11.1/lib/src/compiler/tests/testdata/warnings/9.out +0 -7
- yara_x-0.11.1/py/yara_x.pyi +0 -188
- {yara_x-0.11.1/lib → yara_x-0.13.0/fmt}/README.md +0 -0
- {yara_x-0.11.1/parser → yara_x-0.13.0/lib}/README.md +0 -0
- {yara_x-0.11.1 → yara_x-0.13.0}/lib/build.rs +0 -0
- {yara_x-0.11.1 → yara_x-0.13.0}/lib/src/compiler/atoms/mask.rs +0 -0
- {yara_x-0.11.1 → yara_x-0.13.0}/lib/src/compiler/atoms/quality.rs +0 -0
- {yara_x-0.11.1 → yara_x-0.13.0}/lib/src/compiler/base64.rs +0 -0
- {yara_x-0.11.1 → yara_x-0.13.0}/lib/src/compiler/ir/hex2hir.rs +0 -0
- {yara_x-0.11.1 → yara_x-0.13.0}/lib/src/compiler/ir/tests/mod.rs +0 -0
- {yara_x-0.11.1 → yara_x-0.13.0}/lib/src/compiler/ir/tests/testdata/2.cse.ir +0 -0
- {yara_x-0.11.1 → yara_x-0.13.0}/lib/src/compiler/ir/tests/testdata/2.hoisting.ir +0 -0
- {yara_x-0.11.1 → yara_x-0.13.0}/lib/src/compiler/ir/tests/testdata/2.in +0 -0
- {yara_x-0.11.1 → yara_x-0.13.0}/lib/src/compiler/ir/tests/testdata/2.ir +0 -0
- {yara_x-0.11.1 → yara_x-0.13.0}/lib/src/compiler/ir/tests/testdata/2.no-folding.ir +0 -0
- {yara_x-0.11.1 → yara_x-0.13.0}/lib/src/compiler/ir/tests/testdata/3.cse.ir +0 -0
- {yara_x-0.11.1 → yara_x-0.13.0}/lib/src/compiler/ir/tests/testdata/3.hoisting.ir +0 -0
- {yara_x-0.11.1 → yara_x-0.13.0}/lib/src/compiler/ir/tests/testdata/3.in +0 -0
- {yara_x-0.11.1 → yara_x-0.13.0}/lib/src/compiler/ir/tests/testdata/3.ir +0 -0
- {yara_x-0.11.1 → yara_x-0.13.0}/lib/src/compiler/ir/tests/testdata/3.no-folding.ir +0 -0
- {yara_x-0.11.1 → yara_x-0.13.0}/lib/src/compiler/ir/tests/testdata/4.cse.ir +0 -0
- {yara_x-0.11.1 → yara_x-0.13.0}/lib/src/compiler/ir/tests/testdata/4.hoisting.ir +0 -0
- {yara_x-0.11.1 → yara_x-0.13.0}/lib/src/compiler/ir/tests/testdata/4.in +0 -0
- {yara_x-0.11.1 → yara_x-0.13.0}/lib/src/compiler/ir/tests/testdata/4.ir +0 -0
- {yara_x-0.11.1 → yara_x-0.13.0}/lib/src/compiler/ir/tests/testdata/4.no-folding.ir +0 -0
- {yara_x-0.11.1 → yara_x-0.13.0}/lib/src/compiler/ir/tests/testdata/5.cse.ir +0 -0
- {yara_x-0.11.1 → yara_x-0.13.0}/lib/src/compiler/ir/tests/testdata/5.hoisting.ir +0 -0
- {yara_x-0.11.1 → yara_x-0.13.0}/lib/src/compiler/ir/tests/testdata/5.in +0 -0
- {yara_x-0.11.1 → yara_x-0.13.0}/lib/src/compiler/ir/tests/testdata/5.ir +0 -0
- {yara_x-0.11.1 → yara_x-0.13.0}/lib/src/compiler/ir/tests/testdata/5.no-folding.ir +0 -0
- {yara_x-0.11.1 → yara_x-0.13.0}/lib/src/compiler/ir/tests/testdata/6.cse.ir +0 -0
- {yara_x-0.11.1 → yara_x-0.13.0}/lib/src/compiler/ir/tests/testdata/6.hoisting.ir +0 -0
- {yara_x-0.11.1 → yara_x-0.13.0}/lib/src/compiler/ir/tests/testdata/6.in +0 -0
- {yara_x-0.11.1 → yara_x-0.13.0}/lib/src/compiler/ir/tests/testdata/6.ir +0 -0
- {yara_x-0.11.1 → yara_x-0.13.0}/lib/src/compiler/ir/tests/testdata/6.no-folding.ir +0 -0
- {yara_x-0.11.1 → yara_x-0.13.0}/lib/src/compiler/ir/tests/testdata/7.cse.ir +0 -0
- {yara_x-0.11.1 → yara_x-0.13.0}/lib/src/compiler/ir/tests/testdata/7.hoisting.ir +0 -0
- {yara_x-0.11.1 → yara_x-0.13.0}/lib/src/compiler/ir/tests/testdata/7.in +0 -0
- {yara_x-0.11.1 → yara_x-0.13.0}/lib/src/compiler/ir/tests/testdata/7.ir +0 -0
- {yara_x-0.11.1 → yara_x-0.13.0}/lib/src/compiler/ir/tests/testdata/7.no-folding.ir +0 -0
- {yara_x-0.11.1 → yara_x-0.13.0}/lib/src/compiler/ir/tests/testdata/8.cse.ir +0 -0
- {yara_x-0.11.1 → yara_x-0.13.0}/lib/src/compiler/ir/tests/testdata/8.hoisting.ir +0 -0
- {yara_x-0.11.1 → yara_x-0.13.0}/lib/src/compiler/ir/tests/testdata/8.in +0 -0
- {yara_x-0.11.1 → yara_x-0.13.0}/lib/src/compiler/ir/tests/testdata/8.ir +0 -0
- {yara_x-0.11.1 → yara_x-0.13.0}/lib/src/compiler/ir/tests/testdata/8.no-folding.ir +0 -0
- {yara_x-0.11.1 → yara_x-0.13.0}/lib/src/compiler/report.rs +0 -0
- {yara_x-0.11.1 → yara_x-0.13.0}/lib/src/compiler/rules.rs +0 -0
- {yara_x-0.11.1 → yara_x-0.13.0}/lib/src/compiler/tests/testdata/errors/1.in +0 -0
- {yara_x-0.11.1 → yara_x-0.13.0}/lib/src/compiler/tests/testdata/errors/10.in +0 -0
- {yara_x-0.11.1 → yara_x-0.13.0}/lib/src/compiler/tests/testdata/errors/10.out +0 -0
- {yara_x-0.11.1 → yara_x-0.13.0}/lib/src/compiler/tests/testdata/errors/100.in +0 -0
- {yara_x-0.11.1 → yara_x-0.13.0}/lib/src/compiler/tests/testdata/errors/100.out +0 -0
- {yara_x-0.11.1 → yara_x-0.13.0}/lib/src/compiler/tests/testdata/errors/101.in +0 -0
- {yara_x-0.11.1 → yara_x-0.13.0}/lib/src/compiler/tests/testdata/errors/101.out +0 -0
- {yara_x-0.11.1 → yara_x-0.13.0}/lib/src/compiler/tests/testdata/errors/102.in +0 -0
- {yara_x-0.11.1 → yara_x-0.13.0}/lib/src/compiler/tests/testdata/errors/102.out +0 -0
- {yara_x-0.11.1 → yara_x-0.13.0}/lib/src/compiler/tests/testdata/errors/103.in +0 -0
- {yara_x-0.11.1 → yara_x-0.13.0}/lib/src/compiler/tests/testdata/errors/103.out +0 -0
- {yara_x-0.11.1 → yara_x-0.13.0}/lib/src/compiler/tests/testdata/errors/104.in +0 -0
- {yara_x-0.11.1 → yara_x-0.13.0}/lib/src/compiler/tests/testdata/errors/104.out +0 -0
- {yara_x-0.11.1 → yara_x-0.13.0}/lib/src/compiler/tests/testdata/errors/105.in +0 -0
- {yara_x-0.11.1 → yara_x-0.13.0}/lib/src/compiler/tests/testdata/errors/105.out +0 -0
- {yara_x-0.11.1 → yara_x-0.13.0}/lib/src/compiler/tests/testdata/errors/106.in +0 -0
- {yara_x-0.11.1 → yara_x-0.13.0}/lib/src/compiler/tests/testdata/errors/106.out +0 -0
- {yara_x-0.11.1 → yara_x-0.13.0}/lib/src/compiler/tests/testdata/errors/107.in +0 -0
- {yara_x-0.11.1 → yara_x-0.13.0}/lib/src/compiler/tests/testdata/errors/107.out +0 -0
- {yara_x-0.11.1 → yara_x-0.13.0}/lib/src/compiler/tests/testdata/errors/108.in +0 -0
- {yara_x-0.11.1 → yara_x-0.13.0}/lib/src/compiler/tests/testdata/errors/108.out +0 -0
- {yara_x-0.11.1 → yara_x-0.13.0}/lib/src/compiler/tests/testdata/errors/109.in +0 -0
- {yara_x-0.11.1 → yara_x-0.13.0}/lib/src/compiler/tests/testdata/errors/109.out +0 -0
- {yara_x-0.11.1 → yara_x-0.13.0}/lib/src/compiler/tests/testdata/errors/11.in +0 -0
- {yara_x-0.11.1 → yara_x-0.13.0}/lib/src/compiler/tests/testdata/errors/11.out +0 -0
- {yara_x-0.11.1 → yara_x-0.13.0}/lib/src/compiler/tests/testdata/errors/110.in +0 -0
- {yara_x-0.11.1 → yara_x-0.13.0}/lib/src/compiler/tests/testdata/errors/110.out +0 -0
- {yara_x-0.11.1 → yara_x-0.13.0}/lib/src/compiler/tests/testdata/errors/111.in +0 -0
- {yara_x-0.11.1 → yara_x-0.13.0}/lib/src/compiler/tests/testdata/errors/111.out +0 -0
- {yara_x-0.11.1 → yara_x-0.13.0}/lib/src/compiler/tests/testdata/errors/112.in +0 -0
- {yara_x-0.11.1 → yara_x-0.13.0}/lib/src/compiler/tests/testdata/errors/112.out +0 -0
- {yara_x-0.11.1 → yara_x-0.13.0}/lib/src/compiler/tests/testdata/errors/113.in +0 -0
- {yara_x-0.11.1 → yara_x-0.13.0}/lib/src/compiler/tests/testdata/errors/114.in +0 -0
- {yara_x-0.11.1 → yara_x-0.13.0}/lib/src/compiler/tests/testdata/errors/115.in +0 -0
- {yara_x-0.11.1 → yara_x-0.13.0}/lib/src/compiler/tests/testdata/errors/115.out +0 -0
- {yara_x-0.11.1 → yara_x-0.13.0}/lib/src/compiler/tests/testdata/errors/116.in +0 -0
- {yara_x-0.11.1 → yara_x-0.13.0}/lib/src/compiler/tests/testdata/errors/116.out +0 -0
- {yara_x-0.11.1 → yara_x-0.13.0}/lib/src/compiler/tests/testdata/errors/117.in +0 -0
- {yara_x-0.11.1 → yara_x-0.13.0}/lib/src/compiler/tests/testdata/errors/117.out +0 -0
- {yara_x-0.11.1 → yara_x-0.13.0}/lib/src/compiler/tests/testdata/errors/118.in +0 -0
- {yara_x-0.11.1 → yara_x-0.13.0}/lib/src/compiler/tests/testdata/errors/118.out +0 -0
- {yara_x-0.11.1 → yara_x-0.13.0}/lib/src/compiler/tests/testdata/errors/119.in +0 -0
- {yara_x-0.11.1 → yara_x-0.13.0}/lib/src/compiler/tests/testdata/errors/119.out +0 -0
- {yara_x-0.11.1 → yara_x-0.13.0}/lib/src/compiler/tests/testdata/errors/12.in +0 -0
- {yara_x-0.11.1 → yara_x-0.13.0}/lib/src/compiler/tests/testdata/errors/12.out +0 -0
- {yara_x-0.11.1 → yara_x-0.13.0}/lib/src/compiler/tests/testdata/errors/120.in +0 -0
- {yara_x-0.11.1 → yara_x-0.13.0}/lib/src/compiler/tests/testdata/errors/120.out +0 -0
- {yara_x-0.11.1 → yara_x-0.13.0}/lib/src/compiler/tests/testdata/errors/121.in +0 -0
- {yara_x-0.11.1 → yara_x-0.13.0}/lib/src/compiler/tests/testdata/errors/121.out +0 -0
- {yara_x-0.11.1 → yara_x-0.13.0}/lib/src/compiler/tests/testdata/errors/122.in +0 -0
- {yara_x-0.11.1 → yara_x-0.13.0}/lib/src/compiler/tests/testdata/errors/122.out +0 -0
- {yara_x-0.11.1 → yara_x-0.13.0}/lib/src/compiler/tests/testdata/errors/123.in +0 -0
- {yara_x-0.11.1 → yara_x-0.13.0}/lib/src/compiler/tests/testdata/errors/123.out +0 -0
- {yara_x-0.11.1 → yara_x-0.13.0}/lib/src/compiler/tests/testdata/errors/124.in +0 -0
- {yara_x-0.11.1 → yara_x-0.13.0}/lib/src/compiler/tests/testdata/errors/124.out +0 -0
- {yara_x-0.11.1 → yara_x-0.13.0}/lib/src/compiler/tests/testdata/errors/125.in +0 -0
- {yara_x-0.11.1 → yara_x-0.13.0}/lib/src/compiler/tests/testdata/errors/125.out +0 -0
- {yara_x-0.11.1 → yara_x-0.13.0}/lib/src/compiler/tests/testdata/errors/126.in +0 -0
- {yara_x-0.11.1 → yara_x-0.13.0}/lib/src/compiler/tests/testdata/errors/126.out +0 -0
- {yara_x-0.11.1 → yara_x-0.13.0}/lib/src/compiler/tests/testdata/errors/127.in +0 -0
- {yara_x-0.11.1 → yara_x-0.13.0}/lib/src/compiler/tests/testdata/errors/127.out +0 -0
- {yara_x-0.11.1 → yara_x-0.13.0}/lib/src/compiler/tests/testdata/errors/128.in +0 -0
- {yara_x-0.11.1 → yara_x-0.13.0}/lib/src/compiler/tests/testdata/errors/129.in +0 -0
- {yara_x-0.11.1 → yara_x-0.13.0}/lib/src/compiler/tests/testdata/errors/129.out +0 -0
- {yara_x-0.11.1 → yara_x-0.13.0}/lib/src/compiler/tests/testdata/errors/13.in +0 -0
- {yara_x-0.11.1 → yara_x-0.13.0}/lib/src/compiler/tests/testdata/errors/13.out +0 -0
- {yara_x-0.11.1 → yara_x-0.13.0}/lib/src/compiler/tests/testdata/errors/131.in +0 -0
- {yara_x-0.11.1 → yara_x-0.13.0}/lib/src/compiler/tests/testdata/errors/131.out +0 -0
- {yara_x-0.11.1 → yara_x-0.13.0}/lib/src/compiler/tests/testdata/errors/132.in +0 -0
- {yara_x-0.11.1 → yara_x-0.13.0}/lib/src/compiler/tests/testdata/errors/132.out +0 -0
- {yara_x-0.11.1 → yara_x-0.13.0}/lib/src/compiler/tests/testdata/errors/133.in +0 -0
- {yara_x-0.11.1 → yara_x-0.13.0}/lib/src/compiler/tests/testdata/errors/133.out +0 -0
- {yara_x-0.11.1 → yara_x-0.13.0}/lib/src/compiler/tests/testdata/errors/134.in +0 -0
- {yara_x-0.11.1 → yara_x-0.13.0}/lib/src/compiler/tests/testdata/errors/134.out +0 -0
- {yara_x-0.11.1 → yara_x-0.13.0}/lib/src/compiler/tests/testdata/errors/135.in +0 -0
- {yara_x-0.11.1 → yara_x-0.13.0}/lib/src/compiler/tests/testdata/errors/135.out +0 -0
- {yara_x-0.11.1 → yara_x-0.13.0}/lib/src/compiler/tests/testdata/errors/136.in +0 -0
- {yara_x-0.11.1 → yara_x-0.13.0}/lib/src/compiler/tests/testdata/errors/136.out +0 -0
- {yara_x-0.11.1 → yara_x-0.13.0}/lib/src/compiler/tests/testdata/errors/137.in +0 -0
- {yara_x-0.11.1 → yara_x-0.13.0}/lib/src/compiler/tests/testdata/errors/137.out +0 -0
- {yara_x-0.11.1 → yara_x-0.13.0}/lib/src/compiler/tests/testdata/errors/138.in +0 -0
- {yara_x-0.11.1 → yara_x-0.13.0}/lib/src/compiler/tests/testdata/errors/138.out +0 -0
- {yara_x-0.11.1 → yara_x-0.13.0}/lib/src/compiler/tests/testdata/errors/139.in +0 -0
- {yara_x-0.11.1 → yara_x-0.13.0}/lib/src/compiler/tests/testdata/errors/139.out +0 -0
- {yara_x-0.11.1 → yara_x-0.13.0}/lib/src/compiler/tests/testdata/errors/14.in +0 -0
- {yara_x-0.11.1 → yara_x-0.13.0}/lib/src/compiler/tests/testdata/errors/14.out +0 -0
- {yara_x-0.11.1 → yara_x-0.13.0}/lib/src/compiler/tests/testdata/errors/15.in +0 -0
- {yara_x-0.11.1 → yara_x-0.13.0}/lib/src/compiler/tests/testdata/errors/15.out +0 -0
- {yara_x-0.11.1 → yara_x-0.13.0}/lib/src/compiler/tests/testdata/errors/16.in +0 -0
- {yara_x-0.11.1 → yara_x-0.13.0}/lib/src/compiler/tests/testdata/errors/16.out +0 -0
- {yara_x-0.11.1 → yara_x-0.13.0}/lib/src/compiler/tests/testdata/errors/17.in +0 -0
- {yara_x-0.11.1 → yara_x-0.13.0}/lib/src/compiler/tests/testdata/errors/17.out +0 -0
- {yara_x-0.11.1 → yara_x-0.13.0}/lib/src/compiler/tests/testdata/errors/18.in +0 -0
- {yara_x-0.11.1 → yara_x-0.13.0}/lib/src/compiler/tests/testdata/errors/18.out +0 -0
- {yara_x-0.11.1 → yara_x-0.13.0}/lib/src/compiler/tests/testdata/errors/19.in +0 -0
- {yara_x-0.11.1 → yara_x-0.13.0}/lib/src/compiler/tests/testdata/errors/19.out +0 -0
- {yara_x-0.11.1 → yara_x-0.13.0}/lib/src/compiler/tests/testdata/errors/2.in +0 -0
- {yara_x-0.11.1 → yara_x-0.13.0}/lib/src/compiler/tests/testdata/errors/20.in +0 -0
- {yara_x-0.11.1 → yara_x-0.13.0}/lib/src/compiler/tests/testdata/errors/20.out +0 -0
- {yara_x-0.11.1 → yara_x-0.13.0}/lib/src/compiler/tests/testdata/errors/21.in +0 -0
- {yara_x-0.11.1 → yara_x-0.13.0}/lib/src/compiler/tests/testdata/errors/21.out +0 -0
- {yara_x-0.11.1 → yara_x-0.13.0}/lib/src/compiler/tests/testdata/errors/22.in +0 -0
- {yara_x-0.11.1 → yara_x-0.13.0}/lib/src/compiler/tests/testdata/errors/22.out +0 -0
- {yara_x-0.11.1 → yara_x-0.13.0}/lib/src/compiler/tests/testdata/errors/23.in +0 -0
- {yara_x-0.11.1 → yara_x-0.13.0}/lib/src/compiler/tests/testdata/errors/23.out +0 -0
- {yara_x-0.11.1 → yara_x-0.13.0}/lib/src/compiler/tests/testdata/errors/24.in +0 -0
- {yara_x-0.11.1 → yara_x-0.13.0}/lib/src/compiler/tests/testdata/errors/24.out +0 -0
- {yara_x-0.11.1 → yara_x-0.13.0}/lib/src/compiler/tests/testdata/errors/25.in +0 -0
- {yara_x-0.11.1 → yara_x-0.13.0}/lib/src/compiler/tests/testdata/errors/25.out +0 -0
- {yara_x-0.11.1 → yara_x-0.13.0}/lib/src/compiler/tests/testdata/errors/26.in +0 -0
- {yara_x-0.11.1 → yara_x-0.13.0}/lib/src/compiler/tests/testdata/errors/26.out +0 -0
- {yara_x-0.11.1 → yara_x-0.13.0}/lib/src/compiler/tests/testdata/errors/28.in +0 -0
- {yara_x-0.11.1 → yara_x-0.13.0}/lib/src/compiler/tests/testdata/errors/28.out +0 -0
- {yara_x-0.11.1 → yara_x-0.13.0}/lib/src/compiler/tests/testdata/errors/29.in +0 -0
- {yara_x-0.11.1 → yara_x-0.13.0}/lib/src/compiler/tests/testdata/errors/29.out +0 -0
- {yara_x-0.11.1 → yara_x-0.13.0}/lib/src/compiler/tests/testdata/errors/3.in +0 -0
- {yara_x-0.11.1 → yara_x-0.13.0}/lib/src/compiler/tests/testdata/errors/3.out +0 -0
- {yara_x-0.11.1 → yara_x-0.13.0}/lib/src/compiler/tests/testdata/errors/30.in +0 -0
- {yara_x-0.11.1 → yara_x-0.13.0}/lib/src/compiler/tests/testdata/errors/30.out +0 -0
- {yara_x-0.11.1 → yara_x-0.13.0}/lib/src/compiler/tests/testdata/errors/31.in +0 -0
- {yara_x-0.11.1 → yara_x-0.13.0}/lib/src/compiler/tests/testdata/errors/32.in +0 -0
- {yara_x-0.11.1 → yara_x-0.13.0}/lib/src/compiler/tests/testdata/errors/33.in +0 -0
- {yara_x-0.11.1 → yara_x-0.13.0}/lib/src/compiler/tests/testdata/errors/34.in +0 -0
- {yara_x-0.11.1 → yara_x-0.13.0}/lib/src/compiler/tests/testdata/errors/35.in +0 -0
- {yara_x-0.11.1 → yara_x-0.13.0}/lib/src/compiler/tests/testdata/errors/35.out +0 -0
- {yara_x-0.11.1 → yara_x-0.13.0}/lib/src/compiler/tests/testdata/errors/37.in +0 -0
- {yara_x-0.11.1 → yara_x-0.13.0}/lib/src/compiler/tests/testdata/errors/37.out +0 -0
- {yara_x-0.11.1 → yara_x-0.13.0}/lib/src/compiler/tests/testdata/errors/38.in +0 -0
- {yara_x-0.11.1 → yara_x-0.13.0}/lib/src/compiler/tests/testdata/errors/38.out +0 -0
- {yara_x-0.11.1 → yara_x-0.13.0}/lib/src/compiler/tests/testdata/errors/39.in +0 -0
- {yara_x-0.11.1 → yara_x-0.13.0}/lib/src/compiler/tests/testdata/errors/39.out +0 -0
- {yara_x-0.11.1 → yara_x-0.13.0}/lib/src/compiler/tests/testdata/errors/4.in +0 -0
- {yara_x-0.11.1 → yara_x-0.13.0}/lib/src/compiler/tests/testdata/errors/4.out +0 -0
- {yara_x-0.11.1 → yara_x-0.13.0}/lib/src/compiler/tests/testdata/errors/40.in +0 -0
- {yara_x-0.11.1 → yara_x-0.13.0}/lib/src/compiler/tests/testdata/errors/40.out +0 -0
- {yara_x-0.11.1 → yara_x-0.13.0}/lib/src/compiler/tests/testdata/errors/41.in +0 -0
- {yara_x-0.11.1 → yara_x-0.13.0}/lib/src/compiler/tests/testdata/errors/41.out +0 -0
- {yara_x-0.11.1 → yara_x-0.13.0}/lib/src/compiler/tests/testdata/errors/42.in +0 -0
- {yara_x-0.11.1 → yara_x-0.13.0}/lib/src/compiler/tests/testdata/errors/43.in +0 -0
- {yara_x-0.11.1 → yara_x-0.13.0}/lib/src/compiler/tests/testdata/errors/43.out +0 -0
- {yara_x-0.11.1 → yara_x-0.13.0}/lib/src/compiler/tests/testdata/errors/44.in +0 -0
- {yara_x-0.11.1 → yara_x-0.13.0}/lib/src/compiler/tests/testdata/errors/44.out +0 -0
- {yara_x-0.11.1 → yara_x-0.13.0}/lib/src/compiler/tests/testdata/errors/45.in +0 -0
- {yara_x-0.11.1 → yara_x-0.13.0}/lib/src/compiler/tests/testdata/errors/45.out +0 -0
- {yara_x-0.11.1 → yara_x-0.13.0}/lib/src/compiler/tests/testdata/errors/46.in +0 -0
- {yara_x-0.11.1 → yara_x-0.13.0}/lib/src/compiler/tests/testdata/errors/47.in +0 -0
- {yara_x-0.11.1 → yara_x-0.13.0}/lib/src/compiler/tests/testdata/errors/48.in +0 -0
- {yara_x-0.11.1 → yara_x-0.13.0}/lib/src/compiler/tests/testdata/errors/49.in +0 -0
- {yara_x-0.11.1 → yara_x-0.13.0}/lib/src/compiler/tests/testdata/errors/49.out +0 -0
- {yara_x-0.11.1 → yara_x-0.13.0}/lib/src/compiler/tests/testdata/errors/5.in +0 -0
- {yara_x-0.11.1 → yara_x-0.13.0}/lib/src/compiler/tests/testdata/errors/5.out +0 -0
- {yara_x-0.11.1 → yara_x-0.13.0}/lib/src/compiler/tests/testdata/errors/50.in +0 -0
- {yara_x-0.11.1 → yara_x-0.13.0}/lib/src/compiler/tests/testdata/errors/51.in +0 -0
- {yara_x-0.11.1 → yara_x-0.13.0}/lib/src/compiler/tests/testdata/errors/52.in +0 -0
- {yara_x-0.11.1 → yara_x-0.13.0}/lib/src/compiler/tests/testdata/errors/53.in +0 -0
- {yara_x-0.11.1 → yara_x-0.13.0}/lib/src/compiler/tests/testdata/errors/53.out +0 -0
- {yara_x-0.11.1 → yara_x-0.13.0}/lib/src/compiler/tests/testdata/errors/54.in +0 -0
- {yara_x-0.11.1 → yara_x-0.13.0}/lib/src/compiler/tests/testdata/errors/54.out +0 -0
- {yara_x-0.11.1 → yara_x-0.13.0}/lib/src/compiler/tests/testdata/errors/55.in +0 -0
- {yara_x-0.11.1 → yara_x-0.13.0}/lib/src/compiler/tests/testdata/errors/55.out +0 -0
- {yara_x-0.11.1 → yara_x-0.13.0}/lib/src/compiler/tests/testdata/errors/56.in +0 -0
- {yara_x-0.11.1 → yara_x-0.13.0}/lib/src/compiler/tests/testdata/errors/56.out +0 -0
- {yara_x-0.11.1 → yara_x-0.13.0}/lib/src/compiler/tests/testdata/errors/57.in +0 -0
- {yara_x-0.11.1 → yara_x-0.13.0}/lib/src/compiler/tests/testdata/errors/57.out +0 -0
- {yara_x-0.11.1 → yara_x-0.13.0}/lib/src/compiler/tests/testdata/errors/58.in +0 -0
- {yara_x-0.11.1 → yara_x-0.13.0}/lib/src/compiler/tests/testdata/errors/58.out +0 -0
- {yara_x-0.11.1 → yara_x-0.13.0}/lib/src/compiler/tests/testdata/errors/59.in +0 -0
- {yara_x-0.11.1 → yara_x-0.13.0}/lib/src/compiler/tests/testdata/errors/59.out +0 -0
- {yara_x-0.11.1 → yara_x-0.13.0}/lib/src/compiler/tests/testdata/errors/6.in +0 -0
- {yara_x-0.11.1 → yara_x-0.13.0}/lib/src/compiler/tests/testdata/errors/6.out +0 -0
- {yara_x-0.11.1 → yara_x-0.13.0}/lib/src/compiler/tests/testdata/errors/60.in +0 -0
- {yara_x-0.11.1 → yara_x-0.13.0}/lib/src/compiler/tests/testdata/errors/60.out +0 -0
- {yara_x-0.11.1 → yara_x-0.13.0}/lib/src/compiler/tests/testdata/errors/61.in +0 -0
- {yara_x-0.11.1 → yara_x-0.13.0}/lib/src/compiler/tests/testdata/errors/61.out +0 -0
- {yara_x-0.11.1 → yara_x-0.13.0}/lib/src/compiler/tests/testdata/errors/62.in +0 -0
- {yara_x-0.11.1 → yara_x-0.13.0}/lib/src/compiler/tests/testdata/errors/62.out +0 -0
- {yara_x-0.11.1 → yara_x-0.13.0}/lib/src/compiler/tests/testdata/errors/63.in +0 -0
- {yara_x-0.11.1 → yara_x-0.13.0}/lib/src/compiler/tests/testdata/errors/63.out +0 -0
- {yara_x-0.11.1 → yara_x-0.13.0}/lib/src/compiler/tests/testdata/errors/64.in +0 -0
- {yara_x-0.11.1 → yara_x-0.13.0}/lib/src/compiler/tests/testdata/errors/64.out +0 -0
- {yara_x-0.11.1 → yara_x-0.13.0}/lib/src/compiler/tests/testdata/errors/65.in +0 -0
- {yara_x-0.11.1 → yara_x-0.13.0}/lib/src/compiler/tests/testdata/errors/65.out +0 -0
- {yara_x-0.11.1 → yara_x-0.13.0}/lib/src/compiler/tests/testdata/errors/66.in +0 -0
- {yara_x-0.11.1 → yara_x-0.13.0}/lib/src/compiler/tests/testdata/errors/66.out +0 -0
- {yara_x-0.11.1 → yara_x-0.13.0}/lib/src/compiler/tests/testdata/errors/67.in +0 -0
- {yara_x-0.11.1 → yara_x-0.13.0}/lib/src/compiler/tests/testdata/errors/67.out +0 -0
- {yara_x-0.11.1 → yara_x-0.13.0}/lib/src/compiler/tests/testdata/errors/68.in +0 -0
- {yara_x-0.11.1 → yara_x-0.13.0}/lib/src/compiler/tests/testdata/errors/68.out +0 -0
- {yara_x-0.11.1 → yara_x-0.13.0}/lib/src/compiler/tests/testdata/errors/69.in +0 -0
- {yara_x-0.11.1 → yara_x-0.13.0}/lib/src/compiler/tests/testdata/errors/69.out +0 -0
- {yara_x-0.11.1 → yara_x-0.13.0}/lib/src/compiler/tests/testdata/errors/7.in +0 -0
- {yara_x-0.11.1 → yara_x-0.13.0}/lib/src/compiler/tests/testdata/errors/7.out +0 -0
- {yara_x-0.11.1 → yara_x-0.13.0}/lib/src/compiler/tests/testdata/errors/70.in +0 -0
- {yara_x-0.11.1 → yara_x-0.13.0}/lib/src/compiler/tests/testdata/errors/70.out +0 -0
- {yara_x-0.11.1 → yara_x-0.13.0}/lib/src/compiler/tests/testdata/errors/71.in +0 -0
- {yara_x-0.11.1 → yara_x-0.13.0}/lib/src/compiler/tests/testdata/errors/71.out +0 -0
- {yara_x-0.11.1 → yara_x-0.13.0}/lib/src/compiler/tests/testdata/errors/72.in +0 -0
- {yara_x-0.11.1 → yara_x-0.13.0}/lib/src/compiler/tests/testdata/errors/72.out +0 -0
- {yara_x-0.11.1 → yara_x-0.13.0}/lib/src/compiler/tests/testdata/errors/73.in +0 -0
- {yara_x-0.11.1 → yara_x-0.13.0}/lib/src/compiler/tests/testdata/errors/73.out +0 -0
- {yara_x-0.11.1 → yara_x-0.13.0}/lib/src/compiler/tests/testdata/errors/74.in +0 -0
- {yara_x-0.11.1 → yara_x-0.13.0}/lib/src/compiler/tests/testdata/errors/74.out +0 -0
- {yara_x-0.11.1 → yara_x-0.13.0}/lib/src/compiler/tests/testdata/errors/75.in +0 -0
- {yara_x-0.11.1 → yara_x-0.13.0}/lib/src/compiler/tests/testdata/errors/75.out +0 -0
- {yara_x-0.11.1 → yara_x-0.13.0}/lib/src/compiler/tests/testdata/errors/76.in +0 -0
- {yara_x-0.11.1 → yara_x-0.13.0}/lib/src/compiler/tests/testdata/errors/76.out +0 -0
- {yara_x-0.11.1 → yara_x-0.13.0}/lib/src/compiler/tests/testdata/errors/77.in +0 -0
- {yara_x-0.11.1 → yara_x-0.13.0}/lib/src/compiler/tests/testdata/errors/77.out +0 -0
- {yara_x-0.11.1 → yara_x-0.13.0}/lib/src/compiler/tests/testdata/errors/78.in +0 -0
- {yara_x-0.11.1 → yara_x-0.13.0}/lib/src/compiler/tests/testdata/errors/78.out +0 -0
- {yara_x-0.11.1 → yara_x-0.13.0}/lib/src/compiler/tests/testdata/errors/79.in +0 -0
- {yara_x-0.11.1 → yara_x-0.13.0}/lib/src/compiler/tests/testdata/errors/79.out +0 -0
- {yara_x-0.11.1 → yara_x-0.13.0}/lib/src/compiler/tests/testdata/errors/8.in +0 -0
- {yara_x-0.11.1 → yara_x-0.13.0}/lib/src/compiler/tests/testdata/errors/8.out +0 -0
- {yara_x-0.11.1 → yara_x-0.13.0}/lib/src/compiler/tests/testdata/errors/80.in +0 -0
- {yara_x-0.11.1 → yara_x-0.13.0}/lib/src/compiler/tests/testdata/errors/80.out +0 -0
- {yara_x-0.11.1 → yara_x-0.13.0}/lib/src/compiler/tests/testdata/errors/81.in +0 -0
- {yara_x-0.11.1 → yara_x-0.13.0}/lib/src/compiler/tests/testdata/errors/81.out +0 -0
- {yara_x-0.11.1 → yara_x-0.13.0}/lib/src/compiler/tests/testdata/errors/82.in +0 -0
- {yara_x-0.11.1 → yara_x-0.13.0}/lib/src/compiler/tests/testdata/errors/82.out +0 -0
- {yara_x-0.11.1 → yara_x-0.13.0}/lib/src/compiler/tests/testdata/errors/83.in +0 -0
- {yara_x-0.11.1 → yara_x-0.13.0}/lib/src/compiler/tests/testdata/errors/83.out +0 -0
- {yara_x-0.11.1 → yara_x-0.13.0}/lib/src/compiler/tests/testdata/errors/84.in +0 -0
- {yara_x-0.11.1 → yara_x-0.13.0}/lib/src/compiler/tests/testdata/errors/84.out +0 -0
- {yara_x-0.11.1 → yara_x-0.13.0}/lib/src/compiler/tests/testdata/errors/85.in +0 -0
- {yara_x-0.11.1 → yara_x-0.13.0}/lib/src/compiler/tests/testdata/errors/85.out +0 -0
- {yara_x-0.11.1 → yara_x-0.13.0}/lib/src/compiler/tests/testdata/errors/86.in +0 -0
- {yara_x-0.11.1 → yara_x-0.13.0}/lib/src/compiler/tests/testdata/errors/86.out +0 -0
- {yara_x-0.11.1 → yara_x-0.13.0}/lib/src/compiler/tests/testdata/errors/87.in +0 -0
- {yara_x-0.11.1 → yara_x-0.13.0}/lib/src/compiler/tests/testdata/errors/87.out +0 -0
- {yara_x-0.11.1 → yara_x-0.13.0}/lib/src/compiler/tests/testdata/errors/88.in +0 -0
- {yara_x-0.11.1 → yara_x-0.13.0}/lib/src/compiler/tests/testdata/errors/88.out +0 -0
- {yara_x-0.11.1 → yara_x-0.13.0}/lib/src/compiler/tests/testdata/errors/89.in +0 -0
- {yara_x-0.11.1 → yara_x-0.13.0}/lib/src/compiler/tests/testdata/errors/89.out +0 -0
- {yara_x-0.11.1 → yara_x-0.13.0}/lib/src/compiler/tests/testdata/errors/9.in +0 -0
- {yara_x-0.11.1 → yara_x-0.13.0}/lib/src/compiler/tests/testdata/errors/9.out +0 -0
- {yara_x-0.11.1 → yara_x-0.13.0}/lib/src/compiler/tests/testdata/errors/90.in +0 -0
- {yara_x-0.11.1 → yara_x-0.13.0}/lib/src/compiler/tests/testdata/errors/90.out +0 -0
- {yara_x-0.11.1 → yara_x-0.13.0}/lib/src/compiler/tests/testdata/errors/91.in +0 -0
- {yara_x-0.11.1 → yara_x-0.13.0}/lib/src/compiler/tests/testdata/errors/91.out +0 -0
- {yara_x-0.11.1 → yara_x-0.13.0}/lib/src/compiler/tests/testdata/errors/92.in +0 -0
- {yara_x-0.11.1 → yara_x-0.13.0}/lib/src/compiler/tests/testdata/errors/92.out +0 -0
- {yara_x-0.11.1 → yara_x-0.13.0}/lib/src/compiler/tests/testdata/errors/93.in +0 -0
- {yara_x-0.11.1 → yara_x-0.13.0}/lib/src/compiler/tests/testdata/errors/93.out +0 -0
- {yara_x-0.11.1 → yara_x-0.13.0}/lib/src/compiler/tests/testdata/errors/94.in +0 -0
- {yara_x-0.11.1 → yara_x-0.13.0}/lib/src/compiler/tests/testdata/errors/94.out +0 -0
- {yara_x-0.11.1 → yara_x-0.13.0}/lib/src/compiler/tests/testdata/errors/95.in +0 -0
- {yara_x-0.11.1 → yara_x-0.13.0}/lib/src/compiler/tests/testdata/errors/95.out +0 -0
- {yara_x-0.11.1 → yara_x-0.13.0}/lib/src/compiler/tests/testdata/errors/96.in +0 -0
- {yara_x-0.11.1 → yara_x-0.13.0}/lib/src/compiler/tests/testdata/errors/96.out +0 -0
- {yara_x-0.11.1 → yara_x-0.13.0}/lib/src/compiler/tests/testdata/errors/97.in +0 -0
- {yara_x-0.11.1 → yara_x-0.13.0}/lib/src/compiler/tests/testdata/errors/97.out +0 -0
- {yara_x-0.11.1 → yara_x-0.13.0}/lib/src/compiler/tests/testdata/errors/98.in +0 -0
- {yara_x-0.11.1 → yara_x-0.13.0}/lib/src/compiler/tests/testdata/errors/98.out +0 -0
- {yara_x-0.11.1 → yara_x-0.13.0}/lib/src/compiler/tests/testdata/errors/99.in +0 -0
- {yara_x-0.11.1 → yara_x-0.13.0}/lib/src/compiler/tests/testdata/errors/99.out +0 -0
- {yara_x-0.11.1 → yara_x-0.13.0}/lib/src/compiler/tests/testdata/warnings/1.in +0 -0
- {yara_x-0.11.1 → yara_x-0.13.0}/lib/src/compiler/tests/testdata/warnings/1.out +0 -0
- {yara_x-0.11.1 → yara_x-0.13.0}/lib/src/compiler/tests/testdata/warnings/10.in +0 -0
- {yara_x-0.11.1 → yara_x-0.13.0}/lib/src/compiler/tests/testdata/warnings/10.out +0 -0
- {yara_x-0.11.1 → yara_x-0.13.0}/lib/src/compiler/tests/testdata/warnings/11.in +0 -0
- {yara_x-0.11.1 → yara_x-0.13.0}/lib/src/compiler/tests/testdata/warnings/12.in +0 -0
- {yara_x-0.11.1 → yara_x-0.13.0}/lib/src/compiler/tests/testdata/warnings/12.out +0 -0
- {yara_x-0.11.1 → yara_x-0.13.0}/lib/src/compiler/tests/testdata/warnings/13.in +0 -0
- {yara_x-0.11.1 → yara_x-0.13.0}/lib/src/compiler/tests/testdata/warnings/14.in +0 -0
- {yara_x-0.11.1 → yara_x-0.13.0}/lib/src/compiler/tests/testdata/warnings/14.out +0 -0
- {yara_x-0.11.1 → yara_x-0.13.0}/lib/src/compiler/tests/testdata/warnings/15.in +0 -0
- {yara_x-0.11.1 → yara_x-0.13.0}/lib/src/compiler/tests/testdata/warnings/15.out +0 -0
- {yara_x-0.11.1 → yara_x-0.13.0}/lib/src/compiler/tests/testdata/warnings/16.in +0 -0
- {yara_x-0.11.1 → yara_x-0.13.0}/lib/src/compiler/tests/testdata/warnings/16.out +0 -0
- {yara_x-0.11.1 → yara_x-0.13.0}/lib/src/compiler/tests/testdata/warnings/17.in +0 -0
- {yara_x-0.11.1 → yara_x-0.13.0}/lib/src/compiler/tests/testdata/warnings/17.out +0 -0
- {yara_x-0.11.1 → yara_x-0.13.0}/lib/src/compiler/tests/testdata/warnings/18.in +0 -0
- {yara_x-0.11.1 → yara_x-0.13.0}/lib/src/compiler/tests/testdata/warnings/18.out +0 -0
- {yara_x-0.11.1 → yara_x-0.13.0}/lib/src/compiler/tests/testdata/warnings/19.in +0 -0
- {yara_x-0.11.1 → yara_x-0.13.0}/lib/src/compiler/tests/testdata/warnings/19.out +0 -0
- {yara_x-0.11.1 → yara_x-0.13.0}/lib/src/compiler/tests/testdata/warnings/2.in +0 -0
- {yara_x-0.11.1 → yara_x-0.13.0}/lib/src/compiler/tests/testdata/warnings/2.out +0 -0
- {yara_x-0.11.1 → yara_x-0.13.0}/lib/src/compiler/tests/testdata/warnings/20.in +0 -0
- {yara_x-0.11.1 → yara_x-0.13.0}/lib/src/compiler/tests/testdata/warnings/20.out +0 -0
- {yara_x-0.11.1 → yara_x-0.13.0}/lib/src/compiler/tests/testdata/warnings/21.in +0 -0
- {yara_x-0.11.1 → yara_x-0.13.0}/lib/src/compiler/tests/testdata/warnings/21.out +0 -0
- {yara_x-0.11.1 → yara_x-0.13.0}/lib/src/compiler/tests/testdata/warnings/22.in +0 -0
- {yara_x-0.11.1 → yara_x-0.13.0}/lib/src/compiler/tests/testdata/warnings/22.out +0 -0
- {yara_x-0.11.1 → yara_x-0.13.0}/lib/src/compiler/tests/testdata/warnings/24.in +0 -0
- {yara_x-0.11.1 → yara_x-0.13.0}/lib/src/compiler/tests/testdata/warnings/24.out +0 -0
- {yara_x-0.11.1 → yara_x-0.13.0}/lib/src/compiler/tests/testdata/warnings/25.in +0 -0
- {yara_x-0.11.1 → yara_x-0.13.0}/lib/src/compiler/tests/testdata/warnings/25.out +0 -0
- {yara_x-0.11.1 → yara_x-0.13.0}/lib/src/compiler/tests/testdata/warnings/26.in +0 -0
- {yara_x-0.11.1 → yara_x-0.13.0}/lib/src/compiler/tests/testdata/warnings/26.out +0 -0
- {yara_x-0.11.1 → yara_x-0.13.0}/lib/src/compiler/tests/testdata/warnings/27.in +0 -0
- {yara_x-0.11.1 → yara_x-0.13.0}/lib/src/compiler/tests/testdata/warnings/27.out +0 -0
- {yara_x-0.11.1 → yara_x-0.13.0}/lib/src/compiler/tests/testdata/warnings/28.in +0 -0
- {yara_x-0.11.1 → yara_x-0.13.0}/lib/src/compiler/tests/testdata/warnings/28.out +0 -0
- {yara_x-0.11.1 → yara_x-0.13.0}/lib/src/compiler/tests/testdata/warnings/29.in +0 -0
- {yara_x-0.11.1 → yara_x-0.13.0}/lib/src/compiler/tests/testdata/warnings/29.out +0 -0
- {yara_x-0.11.1 → yara_x-0.13.0}/lib/src/compiler/tests/testdata/warnings/3.in +0 -0
- {yara_x-0.11.1 → yara_x-0.13.0}/lib/src/compiler/tests/testdata/warnings/30.in +0 -0
- {yara_x-0.11.1 → yara_x-0.13.0}/lib/src/compiler/tests/testdata/warnings/30.out +0 -0
- {yara_x-0.11.1 → yara_x-0.13.0}/lib/src/compiler/tests/testdata/warnings/31.in +0 -0
- {yara_x-0.11.1 → yara_x-0.13.0}/lib/src/compiler/tests/testdata/warnings/31.out +0 -0
- {yara_x-0.11.1 → yara_x-0.13.0}/lib/src/compiler/tests/testdata/warnings/32.in +0 -0
- {yara_x-0.11.1 → yara_x-0.13.0}/lib/src/compiler/tests/testdata/warnings/32.out +0 -0
- {yara_x-0.11.1 → yara_x-0.13.0}/lib/src/compiler/tests/testdata/warnings/33.in +0 -0
- {yara_x-0.11.1 → yara_x-0.13.0}/lib/src/compiler/tests/testdata/warnings/33.out +0 -0
- {yara_x-0.11.1 → yara_x-0.13.0}/lib/src/compiler/tests/testdata/warnings/34.in +0 -0
- {yara_x-0.11.1 → yara_x-0.13.0}/lib/src/compiler/tests/testdata/warnings/4.in +0 -0
- {yara_x-0.11.1 → yara_x-0.13.0}/lib/src/compiler/tests/testdata/warnings/5.in +0 -0
- {yara_x-0.11.1 → yara_x-0.13.0}/lib/src/compiler/tests/testdata/warnings/6.in +0 -0
- {yara_x-0.11.1 → yara_x-0.13.0}/lib/src/compiler/tests/testdata/warnings/6.out +0 -0
- {yara_x-0.11.1 → yara_x-0.13.0}/lib/src/compiler/tests/testdata/warnings/7.in +0 -0
- {yara_x-0.11.1 → yara_x-0.13.0}/lib/src/compiler/tests/testdata/warnings/8.in +0 -0
- {yara_x-0.11.1 → yara_x-0.13.0}/lib/src/compiler/tests/testdata/warnings/9.in +0 -0
- {yara_x-0.11.1 → yara_x-0.13.0}/lib/src/compiler/tests/testdata/warnings/no_warnings.out +0 -0
- {yara_x-0.11.1 → yara_x-0.13.0}/lib/src/modules/add_modules.rs +0 -0
- {yara_x-0.11.1 → yara_x-0.13.0}/lib/src/modules/console.rs +0 -0
- {yara_x-0.11.1 → yara_x-0.13.0}/lib/src/modules/cuckoo/mod.rs +0 -0
- {yara_x-0.11.1 → yara_x-0.13.0}/lib/src/modules/cuckoo/schema.rs +0 -0
- {yara_x-0.11.1 → yara_x-0.13.0}/lib/src/modules/cuckoo/tests/mod.rs +0 -0
- {yara_x-0.11.1 → yara_x-0.13.0}/lib/src/modules/cuckoo/tests/testdata/1.json +0 -0
- {yara_x-0.11.1 → yara_x-0.13.0}/lib/src/modules/cuckoo/tests/testdata/1.yar +0 -0
- {yara_x-0.11.1 → yara_x-0.13.0}/lib/src/modules/cuckoo/tests/testdata/2.json +0 -0
- {yara_x-0.11.1 → yara_x-0.13.0}/lib/src/modules/cuckoo/tests/testdata/2.yar +0 -0
- {yara_x-0.11.1 → yara_x-0.13.0}/lib/src/modules/dotnet/mod.rs +0 -0
- {yara_x-0.11.1 → yara_x-0.13.0}/lib/src/modules/dotnet/tests/testdata/605ebe5b5f4b94e1a73e0ad1162bd542e5cb948d1a4ea5a575a14d6b9d6ee849.in +0 -0
- {yara_x-0.11.1 → yara_x-0.13.0}/lib/src/modules/dotnet/tests/testdata/86a1e48cfc843eabfe1b468ef9358c1068950f849c612ab808225b359db0bb8c.in +0 -0
- {yara_x-0.11.1 → yara_x-0.13.0}/lib/src/modules/elf/mod.rs +0 -0
- {yara_x-0.11.1 → yara_x-0.13.0}/lib/src/modules/elf/tests/mod.rs +0 -0
- {yara_x-0.11.1 → yara_x-0.13.0}/lib/src/modules/hash/mod.rs +0 -0
- {yara_x-0.11.1 → yara_x-0.13.0}/lib/src/modules/hash/tests/mod.rs +0 -0
- {yara_x-0.11.1 → yara_x-0.13.0}/lib/src/modules/lnk/mod.rs +0 -0
- {yara_x-0.11.1 → yara_x-0.13.0}/lib/src/modules/lnk/parser.rs +0 -0
- {yara_x-0.11.1 → yara_x-0.13.0}/lib/src/modules/magic/mod.rs +0 -0
- {yara_x-0.11.1 → yara_x-0.13.0}/lib/src/modules/magic/tests/mod.rs +0 -0
- {yara_x-0.11.1 → yara_x-0.13.0}/lib/src/modules/modules.rs +0 -0
- {yara_x-0.11.1 → yara_x-0.13.0}/lib/src/modules/pe/rva2off.rs +0 -0
- {yara_x-0.11.1 → yara_x-0.13.0}/lib/src/modules/pe/tests/mod.rs +0 -0
- {yara_x-0.11.1 → yara_x-0.13.0}/lib/src/modules/protos/console.proto +0 -0
- {yara_x-0.11.1 → yara_x-0.13.0}/lib/src/modules/protos/cuckoo.proto +0 -0
- {yara_x-0.11.1 → yara_x-0.13.0}/lib/src/modules/protos/dotnet.proto +0 -0
- {yara_x-0.11.1 → yara_x-0.13.0}/lib/src/modules/protos/elf.proto +0 -0
- {yara_x-0.11.1 → yara_x-0.13.0}/lib/src/modules/protos/hash.proto +0 -0
- {yara_x-0.11.1 → yara_x-0.13.0}/lib/src/modules/protos/lnk.proto +0 -0
- {yara_x-0.11.1 → yara_x-0.13.0}/lib/src/modules/protos/magic.proto +0 -0
- {yara_x-0.11.1 → yara_x-0.13.0}/lib/src/modules/protos/mods.proto +0 -0
- {yara_x-0.11.1 → yara_x-0.13.0}/lib/src/modules/protos/string.proto +0 -0
- {yara_x-0.11.1 → yara_x-0.13.0}/lib/src/modules/protos/test_proto2.proto +0 -0
- {yara_x-0.11.1 → yara_x-0.13.0}/lib/src/modules/protos/test_proto3.proto +0 -0
- {yara_x-0.11.1 → yara_x-0.13.0}/lib/src/modules/protos/text.proto +0 -0
- {yara_x-0.11.1 → yara_x-0.13.0}/lib/src/modules/protos/time.proto +0 -0
- {yara_x-0.11.1 → yara_x-0.13.0}/lib/src/modules/protos/yaml.proto +0 -0
- {yara_x-0.11.1 → yara_x-0.13.0}/lib/src/modules/string.rs +0 -0
- {yara_x-0.11.1 → yara_x-0.13.0}/lib/src/modules/test_proto3/mod.rs +0 -0
- {yara_x-0.11.1 → yara_x-0.13.0}/lib/src/modules/tests.rs +0 -0
- {yara_x-0.11.1 → yara_x-0.13.0}/lib/src/modules/text.rs +0 -0
- {yara_x-0.11.1 → yara_x-0.13.0}/lib/src/modules/time.rs +0 -0
- {yara_x-0.11.1 → yara_x-0.13.0}/lib/src/re/bitmapset.rs +0 -0
- {yara_x-0.11.1 → yara_x-0.13.0}/lib/src/re/fast/compiler.rs +0 -0
- {yara_x-0.11.1 → yara_x-0.13.0}/lib/src/re/fast/mod.rs +0 -0
- {yara_x-0.11.1 → yara_x-0.13.0}/lib/src/re/mod.rs +0 -0
- {yara_x-0.11.1 → yara_x-0.13.0}/lib/src/re/parser.rs +0 -0
- {yara_x-0.11.1 → yara_x-0.13.0}/lib/src/re/thompson/mod.rs +0 -0
- {yara_x-0.11.1 → yara_x-0.13.0}/lib/src/re/thompson/pikevm.rs +0 -0
- {yara_x-0.11.1 → yara_x-0.13.0}/lib/src/re/thompson/tests.rs +0 -0
- {yara_x-0.11.1 → yara_x-0.13.0}/lib/src/scanner/matches.rs +0 -0
- {yara_x-0.11.1 → yara_x-0.13.0}/lib/src/string_pool.rs +0 -0
- {yara_x-0.11.1 → yara_x-0.13.0}/lib/src/tests/testdata/jumps.bin +0 -0
- {yara_x-0.11.1 → yara_x-0.13.0}/lib/src/types/array.rs +0 -0
- {yara_x-0.11.1 → yara_x-0.13.0}/lib/src/types/func.rs +0 -0
- {yara_x-0.11.1 → yara_x-0.13.0}/lib/src/types/map.rs +0 -0
- {yara_x-0.11.1 → yara_x-0.13.0}/lib/src/variables.rs +0 -0
- {yara_x-0.11.1 → yara_x-0.13.0}/lib/src/wasm/builder.rs +0 -0
- {yara_x-0.11.1 → yara_x-0.13.0}/lib/src/wasm/string.rs +0 -0
- {yara_x-0.11.1 → yara_x-0.13.0}/macros/Cargo.toml +0 -0
- {yara_x-0.11.1 → yara_x-0.13.0}/macros/src/error.rs +0 -0
- {yara_x-0.11.1 → yara_x-0.13.0}/macros/src/lib.rs +0 -0
- {yara_x-0.11.1 → yara_x-0.13.0}/macros/src/module_export.rs +0 -0
- {yara_x-0.11.1 → yara_x-0.13.0}/macros/src/module_main.rs +0 -0
- {yara_x-0.11.1 → yara_x-0.13.0}/macros/src/wasm_export.rs +0 -0
- {yara_x-0.11.1/proto-yaml → yara_x-0.13.0/parser}/README.md +0 -0
- {yara_x-0.11.1 → yara_x-0.13.0}/parser/src/ast/errors.rs +0 -0
- {yara_x-0.11.1 → yara_x-0.13.0}/parser/src/cst/syntax_kind.rs +0 -0
- {yara_x-0.11.1 → yara_x-0.13.0}/parser/src/cst/syntax_stream.rs +0 -0
- {yara_x-0.11.1 → yara_x-0.13.0}/parser/src/lib.rs +0 -0
- {yara_x-0.11.1 → yara_x-0.13.0}/parser/src/parser/tests/testdata/arithmetic-ops.ast +0 -0
- {yara_x-0.11.1 → yara_x-0.13.0}/parser/src/parser/tests/testdata/arithmetic-ops.cst +0 -0
- {yara_x-0.11.1 → yara_x-0.13.0}/parser/src/parser/tests/testdata/arithmetic-ops.in +0 -0
- {yara_x-0.11.1 → yara_x-0.13.0}/parser/src/parser/tests/testdata/basic-1.ast +0 -0
- {yara_x-0.11.1 → yara_x-0.13.0}/parser/src/parser/tests/testdata/basic-1.cst +0 -0
- {yara_x-0.11.1 → yara_x-0.13.0}/parser/src/parser/tests/testdata/basic-1.in +0 -0
- {yara_x-0.11.1 → yara_x-0.13.0}/parser/src/parser/tests/testdata/basic-2.ast +0 -0
- {yara_x-0.11.1 → yara_x-0.13.0}/parser/src/parser/tests/testdata/basic-2.cst +0 -0
- {yara_x-0.11.1 → yara_x-0.13.0}/parser/src/parser/tests/testdata/basic-2.in +0 -0
- {yara_x-0.11.1 → yara_x-0.13.0}/parser/src/parser/tests/testdata/basic-3.ast +0 -0
- {yara_x-0.11.1 → yara_x-0.13.0}/parser/src/parser/tests/testdata/basic-3.cst +0 -0
- {yara_x-0.11.1 → yara_x-0.13.0}/parser/src/parser/tests/testdata/basic-3.in +0 -0
- {yara_x-0.11.1 → yara_x-0.13.0}/parser/src/parser/tests/testdata/basic-4.ast +0 -0
- {yara_x-0.11.1 → yara_x-0.13.0}/parser/src/parser/tests/testdata/basic-4.cst +0 -0
- {yara_x-0.11.1 → yara_x-0.13.0}/parser/src/parser/tests/testdata/basic-4.in +0 -0
- {yara_x-0.11.1 → yara_x-0.13.0}/parser/src/parser/tests/testdata/basic-error-1.ast +0 -0
- {yara_x-0.11.1 → yara_x-0.13.0}/parser/src/parser/tests/testdata/basic-error-1.cst +0 -0
- {yara_x-0.11.1 → yara_x-0.13.0}/parser/src/parser/tests/testdata/basic-error-1.in +0 -0
- {yara_x-0.11.1 → yara_x-0.13.0}/parser/src/parser/tests/testdata/basic-error-2.ast +0 -0
- {yara_x-0.11.1 → yara_x-0.13.0}/parser/src/parser/tests/testdata/basic-error-2.cst +0 -0
- {yara_x-0.11.1 → yara_x-0.13.0}/parser/src/parser/tests/testdata/basic-error-2.in +0 -0
- {yara_x-0.11.1 → yara_x-0.13.0}/parser/src/parser/tests/testdata/basic-error-3.ast +0 -0
- {yara_x-0.11.1 → yara_x-0.13.0}/parser/src/parser/tests/testdata/basic-error-3.cst +0 -0
- {yara_x-0.11.1 → yara_x-0.13.0}/parser/src/parser/tests/testdata/basic-error-3.in +0 -0
- {yara_x-0.11.1 → yara_x-0.13.0}/parser/src/parser/tests/testdata/basic-error-4.ast +0 -0
- {yara_x-0.11.1 → yara_x-0.13.0}/parser/src/parser/tests/testdata/basic-error-4.cst +0 -0
- {yara_x-0.11.1 → yara_x-0.13.0}/parser/src/parser/tests/testdata/basic-error-4.in +0 -0
- {yara_x-0.11.1 → yara_x-0.13.0}/parser/src/parser/tests/testdata/basic-error-5.ast +0 -0
- {yara_x-0.11.1 → yara_x-0.13.0}/parser/src/parser/tests/testdata/basic-error-5.cst +0 -0
- {yara_x-0.11.1 → yara_x-0.13.0}/parser/src/parser/tests/testdata/basic-error-5.in +0 -0
- {yara_x-0.11.1 → yara_x-0.13.0}/parser/src/parser/tests/testdata/bitwise-ops-error-1.ast +0 -0
- {yara_x-0.11.1 → yara_x-0.13.0}/parser/src/parser/tests/testdata/bitwise-ops-error-1.cst +0 -0
- {yara_x-0.11.1 → yara_x-0.13.0}/parser/src/parser/tests/testdata/bitwise-ops-error-1.in +0 -0
- {yara_x-0.11.1 → yara_x-0.13.0}/parser/src/parser/tests/testdata/bitwise-ops.ast +0 -0
- {yara_x-0.11.1 → yara_x-0.13.0}/parser/src/parser/tests/testdata/bitwise-ops.cst +0 -0
- {yara_x-0.11.1 → yara_x-0.13.0}/parser/src/parser/tests/testdata/bitwise-ops.in +0 -0
- {yara_x-0.11.1 → yara_x-0.13.0}/parser/src/parser/tests/testdata/comments.ast +0 -0
- {yara_x-0.11.1 → yara_x-0.13.0}/parser/src/parser/tests/testdata/comments.cst +0 -0
- {yara_x-0.11.1 → yara_x-0.13.0}/parser/src/parser/tests/testdata/comments.in +0 -0
- {yara_x-0.11.1 → yara_x-0.13.0}/parser/src/parser/tests/testdata/expr-1.ast +0 -0
- {yara_x-0.11.1 → yara_x-0.13.0}/parser/src/parser/tests/testdata/expr-1.cst +0 -0
- {yara_x-0.11.1 → yara_x-0.13.0}/parser/src/parser/tests/testdata/expr-1.in +0 -0
- {yara_x-0.11.1 → yara_x-0.13.0}/parser/src/parser/tests/testdata/expr-2.ast +0 -0
- {yara_x-0.11.1 → yara_x-0.13.0}/parser/src/parser/tests/testdata/expr-2.cst +0 -0
- {yara_x-0.11.1 → yara_x-0.13.0}/parser/src/parser/tests/testdata/expr-2.in +0 -0
- {yara_x-0.11.1 → yara_x-0.13.0}/parser/src/parser/tests/testdata/expr-3.ast +0 -0
- {yara_x-0.11.1 → yara_x-0.13.0}/parser/src/parser/tests/testdata/expr-3.cst +0 -0
- {yara_x-0.11.1 → yara_x-0.13.0}/parser/src/parser/tests/testdata/expr-3.in +0 -0
- {yara_x-0.11.1 → yara_x-0.13.0}/parser/src/parser/tests/testdata/expr-4.ast +0 -0
- {yara_x-0.11.1 → yara_x-0.13.0}/parser/src/parser/tests/testdata/expr-4.cst +0 -0
- {yara_x-0.11.1 → yara_x-0.13.0}/parser/src/parser/tests/testdata/expr-4.in +0 -0
- {yara_x-0.11.1 → yara_x-0.13.0}/parser/src/parser/tests/testdata/expr-5.ast +0 -0
- {yara_x-0.11.1 → yara_x-0.13.0}/parser/src/parser/tests/testdata/expr-5.cst +0 -0
- {yara_x-0.11.1 → yara_x-0.13.0}/parser/src/parser/tests/testdata/expr-5.in +0 -0
- {yara_x-0.11.1 → yara_x-0.13.0}/parser/src/parser/tests/testdata/expr-6.ast +0 -0
- {yara_x-0.11.1 → yara_x-0.13.0}/parser/src/parser/tests/testdata/expr-6.cst +0 -0
- {yara_x-0.11.1 → yara_x-0.13.0}/parser/src/parser/tests/testdata/expr-6.in +0 -0
- {yara_x-0.11.1 → yara_x-0.13.0}/parser/src/parser/tests/testdata/expr-error-1.ast +0 -0
- {yara_x-0.11.1 → yara_x-0.13.0}/parser/src/parser/tests/testdata/expr-error-1.cst +0 -0
- {yara_x-0.11.1 → yara_x-0.13.0}/parser/src/parser/tests/testdata/expr-error-1.in +0 -0
- {yara_x-0.11.1 → yara_x-0.13.0}/parser/src/parser/tests/testdata/for-1.ast +0 -0
- {yara_x-0.11.1 → yara_x-0.13.0}/parser/src/parser/tests/testdata/for-1.cst +0 -0
- {yara_x-0.11.1 → yara_x-0.13.0}/parser/src/parser/tests/testdata/for-1.in +0 -0
- {yara_x-0.11.1 → yara_x-0.13.0}/parser/src/parser/tests/testdata/for-2.ast +0 -0
- {yara_x-0.11.1 → yara_x-0.13.0}/parser/src/parser/tests/testdata/for-2.cst +0 -0
- {yara_x-0.11.1 → yara_x-0.13.0}/parser/src/parser/tests/testdata/for-2.in +0 -0
- {yara_x-0.11.1 → yara_x-0.13.0}/parser/src/parser/tests/testdata/for-3.ast +0 -0
- {yara_x-0.11.1 → yara_x-0.13.0}/parser/src/parser/tests/testdata/for-3.cst +0 -0
- {yara_x-0.11.1 → yara_x-0.13.0}/parser/src/parser/tests/testdata/for-3.in +0 -0
- {yara_x-0.11.1 → yara_x-0.13.0}/parser/src/parser/tests/testdata/for-4.ast +0 -0
- {yara_x-0.11.1 → yara_x-0.13.0}/parser/src/parser/tests/testdata/for-4.cst +0 -0
- {yara_x-0.11.1 → yara_x-0.13.0}/parser/src/parser/tests/testdata/for-4.in +0 -0
- {yara_x-0.11.1 → yara_x-0.13.0}/parser/src/parser/tests/testdata/for-5.ast +0 -0
- {yara_x-0.11.1 → yara_x-0.13.0}/parser/src/parser/tests/testdata/for-5.cst +0 -0
- {yara_x-0.11.1 → yara_x-0.13.0}/parser/src/parser/tests/testdata/for-5.in +0 -0
- {yara_x-0.11.1 → yara_x-0.13.0}/parser/src/parser/tests/testdata/for-error-1.ast +0 -0
- {yara_x-0.11.1 → yara_x-0.13.0}/parser/src/parser/tests/testdata/for-error-1.cst +0 -0
- {yara_x-0.11.1 → yara_x-0.13.0}/parser/src/parser/tests/testdata/for-error-1.in +0 -0
- {yara_x-0.11.1 → yara_x-0.13.0}/parser/src/parser/tests/testdata/func-call.ast +0 -0
- {yara_x-0.11.1 → yara_x-0.13.0}/parser/src/parser/tests/testdata/func-call.cst +0 -0
- {yara_x-0.11.1 → yara_x-0.13.0}/parser/src/parser/tests/testdata/func-call.in +0 -0
- {yara_x-0.11.1 → yara_x-0.13.0}/parser/src/parser/tests/testdata/hex-patterns-1.ast +0 -0
- {yara_x-0.11.1 → yara_x-0.13.0}/parser/src/parser/tests/testdata/hex-patterns-1.cst +0 -0
- {yara_x-0.11.1 → yara_x-0.13.0}/parser/src/parser/tests/testdata/hex-patterns-1.in +0 -0
- {yara_x-0.11.1 → yara_x-0.13.0}/parser/src/parser/tests/testdata/hex-patterns-2.ast +0 -0
- {yara_x-0.11.1 → yara_x-0.13.0}/parser/src/parser/tests/testdata/hex-patterns-2.cst +0 -0
- {yara_x-0.11.1 → yara_x-0.13.0}/parser/src/parser/tests/testdata/hex-patterns-2.in +0 -0
- {yara_x-0.11.1 → yara_x-0.13.0}/parser/src/parser/tests/testdata/hex-patterns-3.ast +0 -0
- {yara_x-0.11.1 → yara_x-0.13.0}/parser/src/parser/tests/testdata/hex-patterns-3.cst +0 -0
- {yara_x-0.11.1 → yara_x-0.13.0}/parser/src/parser/tests/testdata/hex-patterns-3.in +0 -0
- {yara_x-0.11.1 → yara_x-0.13.0}/parser/src/parser/tests/testdata/hex-patterns-error-1.ast +0 -0
- {yara_x-0.11.1 → yara_x-0.13.0}/parser/src/parser/tests/testdata/hex-patterns-error-1.cst +0 -0
- {yara_x-0.11.1 → yara_x-0.13.0}/parser/src/parser/tests/testdata/hex-patterns-error-1.in +0 -0
- {yara_x-0.11.1 → yara_x-0.13.0}/parser/src/parser/tests/testdata/hex-patterns-error-2.ast +0 -0
- {yara_x-0.11.1 → yara_x-0.13.0}/parser/src/parser/tests/testdata/hex-patterns-error-2.cst +0 -0
- {yara_x-0.11.1 → yara_x-0.13.0}/parser/src/parser/tests/testdata/hex-patterns-error-2.in +0 -0
- {yara_x-0.11.1 → yara_x-0.13.0}/parser/src/parser/tests/testdata/meta-error-1.ast +0 -0
- {yara_x-0.11.1 → yara_x-0.13.0}/parser/src/parser/tests/testdata/meta-error-1.cst +0 -0
- {yara_x-0.11.1 → yara_x-0.13.0}/parser/src/parser/tests/testdata/meta-error-1.in +0 -0
- {yara_x-0.11.1 → yara_x-0.13.0}/parser/src/parser/tests/testdata/meta-error-2.ast +0 -0
- {yara_x-0.11.1 → yara_x-0.13.0}/parser/src/parser/tests/testdata/meta-error-2.cst +0 -0
- {yara_x-0.11.1 → yara_x-0.13.0}/parser/src/parser/tests/testdata/meta-error-2.in +0 -0
- {yara_x-0.11.1 → yara_x-0.13.0}/parser/src/parser/tests/testdata/meta-error-3.ast +0 -0
- {yara_x-0.11.1 → yara_x-0.13.0}/parser/src/parser/tests/testdata/meta-error-3.cst +0 -0
- {yara_x-0.11.1 → yara_x-0.13.0}/parser/src/parser/tests/testdata/meta-error-3.in +0 -0
- {yara_x-0.11.1 → yara_x-0.13.0}/parser/src/parser/tests/testdata/meta-error-4.ast +0 -0
- {yara_x-0.11.1 → yara_x-0.13.0}/parser/src/parser/tests/testdata/meta-error-4.cst +0 -0
- {yara_x-0.11.1 → yara_x-0.13.0}/parser/src/parser/tests/testdata/meta-error-4.in +0 -0
- {yara_x-0.11.1 → yara_x-0.13.0}/parser/src/parser/tests/testdata/meta-error-5.ast +0 -0
- {yara_x-0.11.1 → yara_x-0.13.0}/parser/src/parser/tests/testdata/meta-error-5.cst +0 -0
- {yara_x-0.11.1 → yara_x-0.13.0}/parser/src/parser/tests/testdata/meta-error-5.in +0 -0
- {yara_x-0.11.1 → yara_x-0.13.0}/parser/src/parser/tests/testdata/meta-error-6.ast +0 -0
- {yara_x-0.11.1 → yara_x-0.13.0}/parser/src/parser/tests/testdata/meta-error-6.cst +0 -0
- {yara_x-0.11.1 → yara_x-0.13.0}/parser/src/parser/tests/testdata/meta-error-6.in +0 -0
- {yara_x-0.11.1 → yara_x-0.13.0}/parser/src/parser/tests/testdata/meta.ast +0 -0
- {yara_x-0.11.1 → yara_x-0.13.0}/parser/src/parser/tests/testdata/meta.cst +0 -0
- {yara_x-0.11.1 → yara_x-0.13.0}/parser/src/parser/tests/testdata/meta.in +0 -0
- {yara_x-0.11.1 → yara_x-0.13.0}/parser/src/parser/tests/testdata/of-1.ast +0 -0
- {yara_x-0.11.1 → yara_x-0.13.0}/parser/src/parser/tests/testdata/of-1.cst +0 -0
- {yara_x-0.11.1 → yara_x-0.13.0}/parser/src/parser/tests/testdata/of-1.in +0 -0
- {yara_x-0.11.1 → yara_x-0.13.0}/parser/src/parser/tests/testdata/of-error-1.ast +0 -0
- {yara_x-0.11.1 → yara_x-0.13.0}/parser/src/parser/tests/testdata/of-error-1.cst +0 -0
- {yara_x-0.11.1 → yara_x-0.13.0}/parser/src/parser/tests/testdata/of-error-1.in +0 -0
- {yara_x-0.11.1 → yara_x-0.13.0}/parser/src/parser/tests/testdata/pattern-mods-1.ast +0 -0
- {yara_x-0.11.1 → yara_x-0.13.0}/parser/src/parser/tests/testdata/pattern-mods-1.cst +0 -0
- {yara_x-0.11.1 → yara_x-0.13.0}/parser/src/parser/tests/testdata/pattern-mods-1.in +0 -0
- {yara_x-0.11.1 → yara_x-0.13.0}/parser/src/parser/tests/testdata/pattern-mods-error-1.ast +0 -0
- {yara_x-0.11.1 → yara_x-0.13.0}/parser/src/parser/tests/testdata/pattern-mods-error-1.cst +0 -0
- {yara_x-0.11.1 → yara_x-0.13.0}/parser/src/parser/tests/testdata/pattern-mods-error-1.in +0 -0
- {yara_x-0.11.1 → yara_x-0.13.0}/parser/src/parser/tests/testdata/patterns-1.ast +0 -0
- {yara_x-0.11.1 → yara_x-0.13.0}/parser/src/parser/tests/testdata/patterns-1.cst +0 -0
- {yara_x-0.11.1 → yara_x-0.13.0}/parser/src/parser/tests/testdata/patterns-1.in +0 -0
- {yara_x-0.11.1 → yara_x-0.13.0}/parser/src/parser/tests/testdata/patterns-2.ast +0 -0
- {yara_x-0.11.1 → yara_x-0.13.0}/parser/src/parser/tests/testdata/patterns-2.cst +0 -0
- {yara_x-0.11.1 → yara_x-0.13.0}/parser/src/parser/tests/testdata/patterns-2.in +0 -0
- {yara_x-0.11.1 → yara_x-0.13.0}/parser/src/parser/tests/testdata/patterns-3.ast +0 -0
- {yara_x-0.11.1 → yara_x-0.13.0}/parser/src/parser/tests/testdata/patterns-3.cst +0 -0
- {yara_x-0.11.1 → yara_x-0.13.0}/parser/src/parser/tests/testdata/patterns-3.in +0 -0
- {yara_x-0.11.1 → yara_x-0.13.0}/parser/src/parser/tests/testdata/patterns-error-1.ast +0 -0
- {yara_x-0.11.1 → yara_x-0.13.0}/parser/src/parser/tests/testdata/patterns-error-1.cst +0 -0
- {yara_x-0.11.1 → yara_x-0.13.0}/parser/src/parser/tests/testdata/patterns-error-1.in +0 -0
- {yara_x-0.11.1 → yara_x-0.13.0}/parser/src/parser/tests/testdata/patterns-error-2.ast +0 -0
- {yara_x-0.11.1 → yara_x-0.13.0}/parser/src/parser/tests/testdata/patterns-error-2.cst +0 -0
- {yara_x-0.11.1 → yara_x-0.13.0}/parser/src/parser/tests/testdata/patterns-error-2.in +0 -0
- {yara_x-0.11.1 → yara_x-0.13.0}/parser/src/parser/tests/testdata/patterns-error-3.ast +0 -0
- {yara_x-0.11.1 → yara_x-0.13.0}/parser/src/parser/tests/testdata/patterns-error-3.cst +0 -0
- {yara_x-0.11.1 → yara_x-0.13.0}/parser/src/parser/tests/testdata/patterns-error-3.in +0 -0
- {yara_x-0.11.1 → yara_x-0.13.0}/parser/src/parser/tests/testdata/patterns-error-4.ast +0 -0
- {yara_x-0.11.1 → yara_x-0.13.0}/parser/src/parser/tests/testdata/patterns-error-4.cst +0 -0
- {yara_x-0.11.1 → yara_x-0.13.0}/parser/src/parser/tests/testdata/patterns-error-4.in +0 -0
- {yara_x-0.11.1 → yara_x-0.13.0}/parser/src/parser/tests/testdata/patterns-error-5.ast +0 -0
- {yara_x-0.11.1 → yara_x-0.13.0}/parser/src/parser/tests/testdata/patterns-error-5.cst +0 -0
- {yara_x-0.11.1 → yara_x-0.13.0}/parser/src/parser/tests/testdata/patterns-error-5.in +0 -0
- {yara_x-0.11.1 → yara_x-0.13.0}/parser/src/parser/tests/testdata/patterns-error-6.ast +0 -0
- {yara_x-0.11.1 → yara_x-0.13.0}/parser/src/parser/tests/testdata/patterns-error-6.cst +0 -0
- {yara_x-0.11.1 → yara_x-0.13.0}/parser/src/parser/tests/testdata/patterns-error-6.in +0 -0
- {yara_x-0.11.1 → yara_x-0.13.0}/parser/src/parser/tests/testdata/patterns-error-7.ast +0 -0
- {yara_x-0.11.1 → yara_x-0.13.0}/parser/src/parser/tests/testdata/patterns-error-7.cst +0 -0
- {yara_x-0.11.1 → yara_x-0.13.0}/parser/src/parser/tests/testdata/patterns-error-7.in +0 -0
- {yara_x-0.11.1 → yara_x-0.13.0}/parser/src/parser/tests/testdata/rule-mods-1.ast +0 -0
- {yara_x-0.11.1 → yara_x-0.13.0}/parser/src/parser/tests/testdata/rule-mods-1.cst +0 -0
- {yara_x-0.11.1 → yara_x-0.13.0}/parser/src/parser/tests/testdata/rule-mods-1.in +0 -0
- {yara_x-0.11.1 → yara_x-0.13.0}/parser/src/parser/tests/testdata/rule-tags-error-1.ast +0 -0
- {yara_x-0.11.1 → yara_x-0.13.0}/parser/src/parser/tests/testdata/rule-tags-error-1.cst +0 -0
- {yara_x-0.11.1 → yara_x-0.13.0}/parser/src/parser/tests/testdata/rule-tags-error-1.in +0 -0
- {yara_x-0.11.1 → yara_x-0.13.0}/parser/src/parser/tests/testdata/rule-tags-error-2.ast +0 -0
- {yara_x-0.11.1 → yara_x-0.13.0}/parser/src/parser/tests/testdata/rule-tags-error-2.cst +0 -0
- {yara_x-0.11.1 → yara_x-0.13.0}/parser/src/parser/tests/testdata/rule-tags-error-2.in +0 -0
- {yara_x-0.11.1 → yara_x-0.13.0}/parser/src/parser/tests/testdata/rule-tags-error-3.ast +0 -0
- {yara_x-0.11.1 → yara_x-0.13.0}/parser/src/parser/tests/testdata/rule-tags-error-3.cst +0 -0
- {yara_x-0.11.1 → yara_x-0.13.0}/parser/src/parser/tests/testdata/rule-tags-error-3.in +0 -0
- {yara_x-0.11.1 → yara_x-0.13.0}/parser/src/parser/tests/testdata/rule-tags.ast +0 -0
- {yara_x-0.11.1 → yara_x-0.13.0}/parser/src/parser/tests/testdata/rule-tags.cst +0 -0
- {yara_x-0.11.1 → yara_x-0.13.0}/parser/src/parser/tests/testdata/rule-tags.in +0 -0
- {yara_x-0.11.1 → yara_x-0.13.0}/parser/src/parser/tests/testdata/with-1.ast +0 -0
- {yara_x-0.11.1 → yara_x-0.13.0}/parser/src/parser/tests/testdata/with-1.cst +0 -0
- {yara_x-0.11.1 → yara_x-0.13.0}/parser/src/parser/tests/testdata/with-1.in +0 -0
- {yara_x-0.11.1 → yara_x-0.13.0}/parser/src/parser/tests/testdata/with-2.ast +0 -0
- {yara_x-0.11.1 → yara_x-0.13.0}/parser/src/parser/tests/testdata/with-2.cst +0 -0
- {yara_x-0.11.1 → yara_x-0.13.0}/parser/src/parser/tests/testdata/with-2.in +0 -0
- {yara_x-0.11.1 → yara_x-0.13.0}/parser/src/parser/tests/testdata/with-error-1.ast +0 -0
- {yara_x-0.11.1 → yara_x-0.13.0}/parser/src/parser/tests/testdata/with-error-1.cst +0 -0
- {yara_x-0.11.1 → yara_x-0.13.0}/parser/src/parser/tests/testdata/with-error-1.in +0 -0
- {yara_x-0.11.1 → yara_x-0.13.0}/parser/src/parser/tests/testdata/with-error-2.ast +0 -0
- {yara_x-0.11.1 → yara_x-0.13.0}/parser/src/parser/tests/testdata/with-error-2.cst +0 -0
- {yara_x-0.11.1 → yara_x-0.13.0}/parser/src/parser/tests/testdata/with-error-2.in +0 -0
- {yara_x-0.11.1 → yara_x-0.13.0}/parser/src/parser/tests/testdata/with-error-3.ast +0 -0
- {yara_x-0.11.1 → yara_x-0.13.0}/parser/src/parser/tests/testdata/with-error-3.cst +0 -0
- {yara_x-0.11.1 → yara_x-0.13.0}/parser/src/parser/tests/testdata/with-error-3.in +0 -0
- {yara_x-0.11.1 → yara_x-0.13.0}/parser/src/tokenizer/tests.rs +0 -0
- {yara_x-0.11.1 → yara_x-0.13.0}/parser/src/tokenizer/tokens.rs +0 -0
- {yara_x-0.11.1 → yara_x-0.13.0}/proto/Cargo.toml +0 -0
- {yara_x-0.11.1 → yara_x-0.13.0}/proto/build.rs +0 -0
- {yara_x-0.11.1 → yara_x-0.13.0}/proto/src/lib.rs +0 -0
- {yara_x-0.11.1 → yara_x-0.13.0}/proto-yaml/Cargo.toml +0 -0
- {yara_x-0.11.1/proto → yara_x-0.13.0/proto-yaml}/README.md +0 -0
- {yara_x-0.11.1 → yara_x-0.13.0}/proto-yaml/build.rs +0 -0
- {yara_x-0.11.1 → yara_x-0.13.0}/proto-yaml/src/lib.rs +0 -0
- {yara_x-0.11.1 → yara_x-0.13.0}/proto-yaml/src/tests/mod.rs +0 -0
- {yara_x-0.11.1 → yara_x-0.13.0}/proto-yaml/src/tests/test.proto +0 -0
- {yara_x-0.11.1 → yara_x-0.13.0}/proto-yaml/src/tests/testdata/1.in +0 -0
- {yara_x-0.11.1 → yara_x-0.13.0}/proto-yaml/src/tests/testdata/1.out +0 -0
- {yara_x-0.11.1 → yara_x-0.13.0}/proto-yaml/src/yaml.proto +0 -0
- {yara_x-0.11.1 → 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"
|
|
@@ -75,9 +81,9 @@ dependencies = [
|
|
|
75
81
|
|
|
76
82
|
[[package]]
|
|
77
83
|
name = "annotate-snippets"
|
|
78
|
-
version = "0.11.
|
|
84
|
+
version = "0.11.5"
|
|
79
85
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
80
|
-
checksum = "
|
|
86
|
+
checksum = "710e8eae58854cdc1790fcb56cca04d712a17be849eeb81da2a724bf4bae2bc4"
|
|
81
87
|
dependencies = [
|
|
82
88
|
"anstyle",
|
|
83
89
|
"unicode-width",
|
|
@@ -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.
|
|
304
|
+
version = "2.8.0"
|
|
264
305
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
265
|
-
checksum = "
|
|
266
|
-
|
|
267
|
-
|
|
268
|
-
|
|
269
|
-
version = "0.5.0"
|
|
270
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
271
|
-
checksum = "5da9b3d9f6f585199287a473f4f8dfab6566cf827d15c00c219f53c645687ead"
|
|
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,12 +375,21 @@ 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
|
+
]
|
|
381
|
+
|
|
382
|
+
[[package]]
|
|
383
|
+
name = "bytecount"
|
|
384
|
+
version = "0.6.8"
|
|
385
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
386
|
+
checksum = "5ce89b21cab1437276d2650d57e971f9d548a2d9037cc231abdc0562b97498ce"
|
|
340
387
|
|
|
341
388
|
[[package]]
|
|
342
389
|
name = "bytemuck"
|
|
343
|
-
version = "1.
|
|
390
|
+
version = "1.21.0"
|
|
344
391
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
345
|
-
checksum = "
|
|
392
|
+
checksum = "ef657dfab802224e671f5818e9a4935f9b1957ed18e58292690cc39e7a4092a3"
|
|
346
393
|
|
|
347
394
|
[[package]]
|
|
348
395
|
name = "byteorder"
|
|
@@ -352,9 +399,9 @@ checksum = "1fd0f2584146f6f2ef48085050886acf353beff7305ebd1ae69500e27c67f64b"
|
|
|
352
399
|
|
|
353
400
|
[[package]]
|
|
354
401
|
name = "bytes"
|
|
355
|
-
version = "1.
|
|
402
|
+
version = "1.9.0"
|
|
356
403
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
357
|
-
checksum = "
|
|
404
|
+
checksum = "325918d6fe32f23b19878fe4b34794ae41fc19ddbe53b10571a4874d44ffd39b"
|
|
358
405
|
|
|
359
406
|
[[package]]
|
|
360
407
|
name = "bzip2"
|
|
@@ -377,6 +424,37 @@ dependencies = [
|
|
|
377
424
|
"pkg-config",
|
|
378
425
|
]
|
|
379
426
|
|
|
427
|
+
[[package]]
|
|
428
|
+
name = "camino"
|
|
429
|
+
version = "1.1.9"
|
|
430
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
431
|
+
checksum = "8b96ec4966b5813e2c0507c1f86115c8c5abaadc3980879c3424042a02fd1ad3"
|
|
432
|
+
dependencies = [
|
|
433
|
+
"serde",
|
|
434
|
+
]
|
|
435
|
+
|
|
436
|
+
[[package]]
|
|
437
|
+
name = "cargo-platform"
|
|
438
|
+
version = "0.1.9"
|
|
439
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
440
|
+
checksum = "e35af189006b9c0f00a064685c727031e3ed2d8020f7ba284d78cc2671bd36ea"
|
|
441
|
+
dependencies = [
|
|
442
|
+
"serde",
|
|
443
|
+
]
|
|
444
|
+
|
|
445
|
+
[[package]]
|
|
446
|
+
name = "cargo_metadata"
|
|
447
|
+
version = "0.14.2"
|
|
448
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
449
|
+
checksum = "4acbb09d9ee8e23699b9634375c72795d095bf268439da88562cf9b501f181fa"
|
|
450
|
+
dependencies = [
|
|
451
|
+
"camino",
|
|
452
|
+
"cargo-platform",
|
|
453
|
+
"semver 1.0.24",
|
|
454
|
+
"serde",
|
|
455
|
+
"serde_json",
|
|
456
|
+
]
|
|
457
|
+
|
|
380
458
|
[[package]]
|
|
381
459
|
name = "castaway"
|
|
382
460
|
version = "0.2.3"
|
|
@@ -388,28 +466,28 @@ dependencies = [
|
|
|
388
466
|
|
|
389
467
|
[[package]]
|
|
390
468
|
name = "cbindgen"
|
|
391
|
-
version = "0.
|
|
469
|
+
version = "0.28.0"
|
|
392
470
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
393
|
-
checksum = "
|
|
471
|
+
checksum = "eadd868a2ce9ca38de7eeafdcec9c7065ef89b42b32f0839278d55f35c54d1ff"
|
|
394
472
|
dependencies = [
|
|
395
473
|
"clap",
|
|
396
474
|
"heck 0.4.1",
|
|
397
|
-
"indexmap 2.
|
|
475
|
+
"indexmap 2.7.0",
|
|
398
476
|
"log",
|
|
399
477
|
"proc-macro2",
|
|
400
478
|
"quote",
|
|
401
479
|
"serde",
|
|
402
480
|
"serde_json",
|
|
403
|
-
"syn 2.0.
|
|
481
|
+
"syn 2.0.96",
|
|
404
482
|
"tempfile",
|
|
405
483
|
"toml",
|
|
406
484
|
]
|
|
407
485
|
|
|
408
486
|
[[package]]
|
|
409
487
|
name = "cc"
|
|
410
|
-
version = "1.2.
|
|
488
|
+
version = "1.2.9"
|
|
411
489
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
412
|
-
checksum = "
|
|
490
|
+
checksum = "c8293772165d9345bdaaa39b45b2109591e63fe5e6fbc23c6ff930a048aa310b"
|
|
413
491
|
dependencies = [
|
|
414
492
|
"jobserver",
|
|
415
493
|
"libc",
|
|
@@ -435,9 +513,9 @@ dependencies = [
|
|
|
435
513
|
|
|
436
514
|
[[package]]
|
|
437
515
|
name = "chrono"
|
|
438
|
-
version = "0.4.
|
|
516
|
+
version = "0.4.39"
|
|
439
517
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
440
|
-
checksum = "
|
|
518
|
+
checksum = "7e36cc9d416881d2e24f9a963be5fb1cd90966419ac844274161d10488b3e825"
|
|
441
519
|
dependencies = [
|
|
442
520
|
"android-tzdata",
|
|
443
521
|
"iana-time-zone",
|
|
@@ -459,9 +537,9 @@ dependencies = [
|
|
|
459
537
|
|
|
460
538
|
[[package]]
|
|
461
539
|
name = "clap"
|
|
462
|
-
version = "4.5.
|
|
540
|
+
version = "4.5.26"
|
|
463
541
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
464
|
-
checksum = "
|
|
542
|
+
checksum = "a8eb5e908ef3a6efbe1ed62520fb7287959888c88485abe072543190ecc66783"
|
|
465
543
|
dependencies = [
|
|
466
544
|
"clap_builder",
|
|
467
545
|
"clap_derive",
|
|
@@ -469,9 +547,9 @@ dependencies = [
|
|
|
469
547
|
|
|
470
548
|
[[package]]
|
|
471
549
|
name = "clap_builder"
|
|
472
|
-
version = "4.5.
|
|
550
|
+
version = "4.5.26"
|
|
473
551
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
474
|
-
checksum = "
|
|
552
|
+
checksum = "96b01801b5fc6a0a232407abc821660c9c6d25a1cafc0d4f85f29fb8d9afc121"
|
|
475
553
|
dependencies = [
|
|
476
554
|
"anstream",
|
|
477
555
|
"anstyle",
|
|
@@ -481,30 +559,30 @@ dependencies = [
|
|
|
481
559
|
|
|
482
560
|
[[package]]
|
|
483
561
|
name = "clap_complete"
|
|
484
|
-
version = "4.5.
|
|
562
|
+
version = "4.5.42"
|
|
485
563
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
486
|
-
checksum = "
|
|
564
|
+
checksum = "33a7e468e750fa4b6be660e8b5651ad47372e8fb114030b594c2d75d48c5ffd0"
|
|
487
565
|
dependencies = [
|
|
488
566
|
"clap",
|
|
489
567
|
]
|
|
490
568
|
|
|
491
569
|
[[package]]
|
|
492
570
|
name = "clap_derive"
|
|
493
|
-
version = "4.5.
|
|
571
|
+
version = "4.5.24"
|
|
494
572
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
495
|
-
checksum = "
|
|
573
|
+
checksum = "54b755194d6389280185988721fffba69495eed5ee9feeee9a599b53db80318c"
|
|
496
574
|
dependencies = [
|
|
497
575
|
"heck 0.5.0",
|
|
498
576
|
"proc-macro2",
|
|
499
577
|
"quote",
|
|
500
|
-
"syn 2.0.
|
|
578
|
+
"syn 2.0.96",
|
|
501
579
|
]
|
|
502
580
|
|
|
503
581
|
[[package]]
|
|
504
582
|
name = "clap_lex"
|
|
505
|
-
version = "0.7.
|
|
583
|
+
version = "0.7.4"
|
|
506
584
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
507
|
-
checksum = "
|
|
585
|
+
checksum = "f46ad14479a25103f283c0f10005961cf086d8dc42205bb44c46ac563475dca6"
|
|
508
586
|
|
|
509
587
|
[[package]]
|
|
510
588
|
name = "cobs"
|
|
@@ -544,14 +622,14 @@ dependencies = [
|
|
|
544
622
|
|
|
545
623
|
[[package]]
|
|
546
624
|
name = "console"
|
|
547
|
-
version = "0.15.
|
|
625
|
+
version = "0.15.10"
|
|
548
626
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
549
|
-
checksum = "
|
|
627
|
+
checksum = "ea3c6ecd8059b57859df5c69830340ed3c41d30e3da0c1cbed90a96ac853041b"
|
|
550
628
|
dependencies = [
|
|
551
629
|
"encode_unicode",
|
|
552
|
-
"lazy_static",
|
|
553
630
|
"libc",
|
|
554
|
-
"
|
|
631
|
+
"once_cell",
|
|
632
|
+
"windows-sys 0.59.0",
|
|
555
633
|
]
|
|
556
634
|
|
|
557
635
|
[[package]]
|
|
@@ -609,18 +687,18 @@ dependencies = [
|
|
|
609
687
|
|
|
610
688
|
[[package]]
|
|
611
689
|
name = "cranelift-bforest"
|
|
612
|
-
version = "0.
|
|
690
|
+
version = "0.116.1"
|
|
613
691
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
614
|
-
checksum = "
|
|
692
|
+
checksum = "e15d04a0ce86cb36ead88ad68cf693ffd6cda47052b9e0ac114bc47fd9cd23c4"
|
|
615
693
|
dependencies = [
|
|
616
694
|
"cranelift-entity",
|
|
617
695
|
]
|
|
618
696
|
|
|
619
697
|
[[package]]
|
|
620
698
|
name = "cranelift-bitset"
|
|
621
|
-
version = "0.
|
|
699
|
+
version = "0.116.1"
|
|
622
700
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
623
|
-
checksum = "
|
|
701
|
+
checksum = "7c6e3969a7ce267259ce244b7867c5d3bc9e65b0a87e81039588dfdeaede9f34"
|
|
624
702
|
dependencies = [
|
|
625
703
|
"serde",
|
|
626
704
|
"serde_derive",
|
|
@@ -628,9 +706,9 @@ dependencies = [
|
|
|
628
706
|
|
|
629
707
|
[[package]]
|
|
630
708
|
name = "cranelift-codegen"
|
|
631
|
-
version = "0.
|
|
709
|
+
version = "0.116.1"
|
|
632
710
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
633
|
-
checksum = "
|
|
711
|
+
checksum = "2c22032c4cb42558371cf516bb47f26cdad1819d3475c133e93c49f50ebf304e"
|
|
634
712
|
dependencies = [
|
|
635
713
|
"bumpalo",
|
|
636
714
|
"cranelift-bforest",
|
|
@@ -644,40 +722,41 @@ dependencies = [
|
|
|
644
722
|
"hashbrown 0.14.5",
|
|
645
723
|
"log",
|
|
646
724
|
"regalloc2",
|
|
647
|
-
"rustc-hash 2.
|
|
725
|
+
"rustc-hash 2.1.0",
|
|
726
|
+
"serde",
|
|
648
727
|
"smallvec",
|
|
649
|
-
"target-lexicon",
|
|
728
|
+
"target-lexicon 0.13.1",
|
|
650
729
|
]
|
|
651
730
|
|
|
652
731
|
[[package]]
|
|
653
732
|
name = "cranelift-codegen-meta"
|
|
654
|
-
version = "0.
|
|
733
|
+
version = "0.116.1"
|
|
655
734
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
656
|
-
checksum = "
|
|
735
|
+
checksum = "c904bc71c61b27fc57827f4a1379f29de64fe95653b620a3db77d59655eee0b8"
|
|
657
736
|
dependencies = [
|
|
658
737
|
"cranelift-codegen-shared",
|
|
659
738
|
]
|
|
660
739
|
|
|
661
740
|
[[package]]
|
|
662
741
|
name = "cranelift-codegen-shared"
|
|
663
|
-
version = "0.
|
|
742
|
+
version = "0.116.1"
|
|
664
743
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
665
|
-
checksum = "
|
|
744
|
+
checksum = "40180f5497572f644ce88c255480981ae2ec1d7bb4d8e0c0136a13b87a2f2ceb"
|
|
666
745
|
|
|
667
746
|
[[package]]
|
|
668
747
|
name = "cranelift-control"
|
|
669
|
-
version = "0.
|
|
748
|
+
version = "0.116.1"
|
|
670
749
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
671
|
-
checksum = "
|
|
750
|
+
checksum = "26d132c6d0bd8a489563472afc171759da0707804a65ece7ceb15a8c6d7dd5ef"
|
|
672
751
|
dependencies = [
|
|
673
752
|
"arbitrary",
|
|
674
753
|
]
|
|
675
754
|
|
|
676
755
|
[[package]]
|
|
677
756
|
name = "cranelift-entity"
|
|
678
|
-
version = "0.
|
|
757
|
+
version = "0.116.1"
|
|
679
758
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
680
|
-
checksum = "
|
|
759
|
+
checksum = "4b2d0d9618275474fbf679dd018ac6e009acbd6ae6850f6a67be33fb3b00b323"
|
|
681
760
|
dependencies = [
|
|
682
761
|
"cranelift-bitset",
|
|
683
762
|
"serde",
|
|
@@ -686,31 +765,31 @@ dependencies = [
|
|
|
686
765
|
|
|
687
766
|
[[package]]
|
|
688
767
|
name = "cranelift-frontend"
|
|
689
|
-
version = "0.
|
|
768
|
+
version = "0.116.1"
|
|
690
769
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
691
|
-
checksum = "
|
|
770
|
+
checksum = "4fac41e16729107393174b0c9e3730fb072866100e1e64e80a1a963b2e484d57"
|
|
692
771
|
dependencies = [
|
|
693
772
|
"cranelift-codegen",
|
|
694
773
|
"log",
|
|
695
774
|
"smallvec",
|
|
696
|
-
"target-lexicon",
|
|
775
|
+
"target-lexicon 0.13.1",
|
|
697
776
|
]
|
|
698
777
|
|
|
699
778
|
[[package]]
|
|
700
779
|
name = "cranelift-isle"
|
|
701
|
-
version = "0.
|
|
780
|
+
version = "0.116.1"
|
|
702
781
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
703
|
-
checksum = "
|
|
782
|
+
checksum = "1ca20d576e5070044d0a72a9effc2deacf4d6aa650403189d8ea50126483944d"
|
|
704
783
|
|
|
705
784
|
[[package]]
|
|
706
785
|
name = "cranelift-native"
|
|
707
|
-
version = "0.
|
|
786
|
+
version = "0.116.1"
|
|
708
787
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
709
|
-
checksum = "
|
|
788
|
+
checksum = "b8dee82f3f1f2c4cba9177f1cc5e350fe98764379bcd29340caa7b01f85076c7"
|
|
710
789
|
dependencies = [
|
|
711
790
|
"cranelift-codegen",
|
|
712
791
|
"libc",
|
|
713
|
-
"target-lexicon",
|
|
792
|
+
"target-lexicon 0.13.1",
|
|
714
793
|
]
|
|
715
794
|
|
|
716
795
|
[[package]]
|
|
@@ -752,18 +831,18 @@ dependencies = [
|
|
|
752
831
|
|
|
753
832
|
[[package]]
|
|
754
833
|
name = "crossbeam-channel"
|
|
755
|
-
version = "0.5.
|
|
834
|
+
version = "0.5.14"
|
|
756
835
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
757
|
-
checksum = "
|
|
836
|
+
checksum = "06ba6d68e24814cb8de6bb986db8222d3a027d15872cabc0d18817bc3c0e4471"
|
|
758
837
|
dependencies = [
|
|
759
838
|
"crossbeam-utils",
|
|
760
839
|
]
|
|
761
840
|
|
|
762
841
|
[[package]]
|
|
763
842
|
name = "crossbeam-deque"
|
|
764
|
-
version = "0.8.
|
|
843
|
+
version = "0.8.6"
|
|
765
844
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
766
|
-
checksum = "
|
|
845
|
+
checksum = "9dd111b7b7f7d55b72c0a6ae361660ee5853c9af73f70c3c2ef6858b950e2e51"
|
|
767
846
|
dependencies = [
|
|
768
847
|
"crossbeam-epoch",
|
|
769
848
|
"crossbeam-utils",
|
|
@@ -780,18 +859,18 @@ dependencies = [
|
|
|
780
859
|
|
|
781
860
|
[[package]]
|
|
782
861
|
name = "crossbeam-queue"
|
|
783
|
-
version = "0.3.
|
|
862
|
+
version = "0.3.12"
|
|
784
863
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
785
|
-
checksum = "
|
|
864
|
+
checksum = "0f58bbc28f91df819d0aa2a2c00cd19754769c2fad90579b3592b1c9ba7a3115"
|
|
786
865
|
dependencies = [
|
|
787
866
|
"crossbeam-utils",
|
|
788
867
|
]
|
|
789
868
|
|
|
790
869
|
[[package]]
|
|
791
870
|
name = "crossbeam-utils"
|
|
792
|
-
version = "0.8.
|
|
871
|
+
version = "0.8.21"
|
|
793
872
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
794
|
-
checksum = "
|
|
873
|
+
checksum = "d0a5c400df2834b80a4c3327b3aad3a4c4cd4de0629063962b03235697506a28"
|
|
795
874
|
|
|
796
875
|
[[package]]
|
|
797
876
|
name = "crossterm"
|
|
@@ -815,9 +894,9 @@ version = "0.28.1"
|
|
|
815
894
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
816
895
|
checksum = "829d955a0bb380ef178a640b91779e3987da38c9aea133b20614cfed8cdea9c6"
|
|
817
896
|
dependencies = [
|
|
818
|
-
"bitflags 2.
|
|
897
|
+
"bitflags 2.8.0",
|
|
819
898
|
"crossterm_winapi",
|
|
820
|
-
"mio 1.0.
|
|
899
|
+
"mio 1.0.3",
|
|
821
900
|
"parking_lot",
|
|
822
901
|
"rustix",
|
|
823
902
|
"signal-hook 0.3.17",
|
|
@@ -869,7 +948,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
869
948
|
checksum = "eb2a7d3066da2de787b7f032c736763eb7ae5d355f81a68bab2675a96008b0bf"
|
|
870
949
|
dependencies = [
|
|
871
950
|
"lab",
|
|
872
|
-
"phf 0.11.
|
|
951
|
+
"phf 0.11.3",
|
|
873
952
|
]
|
|
874
953
|
|
|
875
954
|
[[package]]
|
|
@@ -893,7 +972,7 @@ dependencies = [
|
|
|
893
972
|
"proc-macro2",
|
|
894
973
|
"quote",
|
|
895
974
|
"strsim 0.11.1",
|
|
896
|
-
"syn 2.0.
|
|
975
|
+
"syn 2.0.96",
|
|
897
976
|
]
|
|
898
977
|
|
|
899
978
|
[[package]]
|
|
@@ -904,14 +983,14 @@ checksum = "d336a2a514f6ccccaa3e09b02d41d35330c07ddf03a62165fcec10bb561c7806"
|
|
|
904
983
|
dependencies = [
|
|
905
984
|
"darling_core",
|
|
906
985
|
"quote",
|
|
907
|
-
"syn 2.0.
|
|
986
|
+
"syn 2.0.96",
|
|
908
987
|
]
|
|
909
988
|
|
|
910
989
|
[[package]]
|
|
911
990
|
name = "data-encoding"
|
|
912
|
-
version = "2.
|
|
991
|
+
version = "2.7.0"
|
|
913
992
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
914
|
-
checksum = "
|
|
993
|
+
checksum = "0e60eed09d8c01d3cee5b7d30acb059b76614c918fa0f992e0dd6eeb10daad6f"
|
|
915
994
|
|
|
916
995
|
[[package]]
|
|
917
996
|
name = "deflate64"
|
|
@@ -938,9 +1017,9 @@ dependencies = [
|
|
|
938
1017
|
|
|
939
1018
|
[[package]]
|
|
940
1019
|
name = "der-parser"
|
|
941
|
-
version = "
|
|
1020
|
+
version = "10.0.0"
|
|
942
1021
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
943
|
-
checksum = "
|
|
1022
|
+
checksum = "07da5016415d5a3c4dd39b11ed26f915f52fc4e0dc197d87908bc916e51bc1a6"
|
|
944
1023
|
dependencies = [
|
|
945
1024
|
"asn1-rs",
|
|
946
1025
|
"displaydoc",
|
|
@@ -967,7 +1046,7 @@ checksum = "30542c1ad912e0e3d22a1935c290e12e8a29d704a420177a31faad4a601a0800"
|
|
|
967
1046
|
dependencies = [
|
|
968
1047
|
"proc-macro2",
|
|
969
1048
|
"quote",
|
|
970
|
-
"syn 2.0.
|
|
1049
|
+
"syn 2.0.96",
|
|
971
1050
|
]
|
|
972
1051
|
|
|
973
1052
|
[[package]]
|
|
@@ -976,6 +1055,12 @@ version = "0.1.13"
|
|
|
976
1055
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
977
1056
|
checksum = "56254986775e3233ffa9c4d7d3faaf6d36a2c09d30b20687e9f88bc8bafc16c8"
|
|
978
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
|
+
|
|
979
1064
|
[[package]]
|
|
980
1065
|
name = "digest"
|
|
981
1066
|
version = "0.9.0"
|
|
@@ -1025,9 +1110,15 @@ checksum = "97369cbbc041bc366949bc74d34658d6cda5621039731c6310521892a3a20ae0"
|
|
|
1025
1110
|
dependencies = [
|
|
1026
1111
|
"proc-macro2",
|
|
1027
1112
|
"quote",
|
|
1028
|
-
"syn 2.0.
|
|
1113
|
+
"syn 2.0.96",
|
|
1029
1114
|
]
|
|
1030
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
|
+
|
|
1031
1122
|
[[package]]
|
|
1032
1123
|
name = "dsa"
|
|
1033
1124
|
version = "0.6.3"
|
|
@@ -1108,9 +1199,9 @@ dependencies = [
|
|
|
1108
1199
|
|
|
1109
1200
|
[[package]]
|
|
1110
1201
|
name = "encode_unicode"
|
|
1111
|
-
version = "0.
|
|
1202
|
+
version = "1.0.0"
|
|
1112
1203
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1113
|
-
checksum = "
|
|
1204
|
+
checksum = "34aa73646ffb006b8f5147f3dc182bd4bcb190227ce861fc4a4844bf8e3cb2c0"
|
|
1114
1205
|
|
|
1115
1206
|
[[package]]
|
|
1116
1207
|
name = "encoding_rs"
|
|
@@ -1130,14 +1221,14 @@ dependencies = [
|
|
|
1130
1221
|
"once_cell",
|
|
1131
1222
|
"proc-macro2",
|
|
1132
1223
|
"quote",
|
|
1133
|
-
"syn 2.0.
|
|
1224
|
+
"syn 2.0.96",
|
|
1134
1225
|
]
|
|
1135
1226
|
|
|
1136
1227
|
[[package]]
|
|
1137
1228
|
name = "env_filter"
|
|
1138
|
-
version = "0.1.
|
|
1229
|
+
version = "0.1.3"
|
|
1139
1230
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1140
|
-
checksum = "
|
|
1231
|
+
checksum = "186e05a59d4c50738528153b83b0b0194d3a29507dfec16eccd4b342903397d0"
|
|
1141
1232
|
dependencies = [
|
|
1142
1233
|
"log",
|
|
1143
1234
|
"regex",
|
|
@@ -1145,9 +1236,9 @@ dependencies = [
|
|
|
1145
1236
|
|
|
1146
1237
|
[[package]]
|
|
1147
1238
|
name = "env_logger"
|
|
1148
|
-
version = "0.11.
|
|
1239
|
+
version = "0.11.6"
|
|
1149
1240
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1150
|
-
checksum = "
|
|
1241
|
+
checksum = "dcaee3d8e3cfc3fd92428d477bc97fc29ec8716d180c0d74c643bb26166660e0"
|
|
1151
1242
|
dependencies = [
|
|
1152
1243
|
"anstream",
|
|
1153
1244
|
"anstyle",
|
|
@@ -1164,12 +1255,21 @@ checksum = "5443807d6dff69373d433ab9ef5378ad8df50ca6298caf15de6e52e24aaf54d5"
|
|
|
1164
1255
|
|
|
1165
1256
|
[[package]]
|
|
1166
1257
|
name = "errno"
|
|
1167
|
-
version = "0.3.
|
|
1258
|
+
version = "0.3.10"
|
|
1168
1259
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1169
|
-
checksum = "
|
|
1260
|
+
checksum = "33d852cb9b869c2a9b3df2f71a3074817f01e1844f839a144f5fcef059a4eb5d"
|
|
1170
1261
|
dependencies = [
|
|
1171
1262
|
"libc",
|
|
1172
|
-
"windows-sys 0.
|
|
1263
|
+
"windows-sys 0.59.0",
|
|
1264
|
+
]
|
|
1265
|
+
|
|
1266
|
+
[[package]]
|
|
1267
|
+
name = "error-chain"
|
|
1268
|
+
version = "0.12.4"
|
|
1269
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1270
|
+
checksum = "2d2f06b9cac1506ece98fe3231e3cc9c4410ec3d5b1f24ae1c8946f0742cdefc"
|
|
1271
|
+
dependencies = [
|
|
1272
|
+
"version_check",
|
|
1173
1273
|
]
|
|
1174
1274
|
|
|
1175
1275
|
[[package]]
|
|
@@ -1186,9 +1286,9 @@ checksum = "2acce4a10f12dc2fb14a218589d4f1f62ef011b2d0cc4b3cb1bba8e94da14649"
|
|
|
1186
1286
|
|
|
1187
1287
|
[[package]]
|
|
1188
1288
|
name = "fastrand"
|
|
1189
|
-
version = "2.
|
|
1289
|
+
version = "2.3.0"
|
|
1190
1290
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1191
|
-
checksum = "
|
|
1291
|
+
checksum = "37909eebbb50d72f9059c3b6d82c0463f2ff062c9e95845c43a6c9c0355411be"
|
|
1192
1292
|
|
|
1193
1293
|
[[package]]
|
|
1194
1294
|
name = "ff"
|
|
@@ -1246,6 +1346,15 @@ dependencies = [
|
|
|
1246
1346
|
"miniz_oxide",
|
|
1247
1347
|
]
|
|
1248
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
|
+
|
|
1249
1358
|
[[package]]
|
|
1250
1359
|
name = "fmmap"
|
|
1251
1360
|
version = "0.3.3"
|
|
@@ -1268,9 +1377,9 @@ checksum = "3f9eec918d3f24069decb9af1554cad7c880e2da24a9afd88aca000531ab82c1"
|
|
|
1268
1377
|
|
|
1269
1378
|
[[package]]
|
|
1270
1379
|
name = "foldhash"
|
|
1271
|
-
version = "0.1.
|
|
1380
|
+
version = "0.1.4"
|
|
1272
1381
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1273
|
-
checksum = "
|
|
1382
|
+
checksum = "a0d2fde1f7b3d48b8395d5f2de76c18a528bd6a9cdde438df747bfcba3e05d6f"
|
|
1274
1383
|
|
|
1275
1384
|
[[package]]
|
|
1276
1385
|
name = "fraction"
|
|
@@ -1338,15 +1447,15 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
1338
1447
|
checksum = "07e28edb80900c19c28f1072f2e8aeca7fa06b23cd4169cefe1af5aa3260783f"
|
|
1339
1448
|
dependencies = [
|
|
1340
1449
|
"fallible-iterator 0.3.0",
|
|
1341
|
-
"indexmap 2.
|
|
1450
|
+
"indexmap 2.7.0",
|
|
1342
1451
|
"stable_deref_trait",
|
|
1343
1452
|
]
|
|
1344
1453
|
|
|
1345
1454
|
[[package]]
|
|
1346
1455
|
name = "glob"
|
|
1347
|
-
version = "0.3.
|
|
1456
|
+
version = "0.3.2"
|
|
1348
1457
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1349
|
-
checksum = "
|
|
1458
|
+
checksum = "a8d1add55171497b4705a648c6b583acafb01d58050a51727785f0b2c8e0a2b2"
|
|
1350
1459
|
|
|
1351
1460
|
[[package]]
|
|
1352
1461
|
name = "globset"
|
|
@@ -1367,7 +1476,7 @@ version = "0.9.1"
|
|
|
1367
1476
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1368
1477
|
checksum = "0bf760ebf69878d9fd8f110c89703d90ce35095324d1f1edcb595c63945ee757"
|
|
1369
1478
|
dependencies = [
|
|
1370
|
-
"bitflags 2.
|
|
1479
|
+
"bitflags 2.8.0",
|
|
1371
1480
|
"ignore",
|
|
1372
1481
|
"walkdir",
|
|
1373
1482
|
]
|
|
@@ -1413,11 +1522,12 @@ dependencies = [
|
|
|
1413
1522
|
|
|
1414
1523
|
[[package]]
|
|
1415
1524
|
name = "hashbrown"
|
|
1416
|
-
version = "0.15.
|
|
1525
|
+
version = "0.15.2"
|
|
1417
1526
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1418
|
-
checksum = "
|
|
1527
|
+
checksum = "bf151400ff0baff5465007dd2f3e717f3fe502074ca563069ce3a6629d07b289"
|
|
1419
1528
|
dependencies = [
|
|
1420
1529
|
"foldhash",
|
|
1530
|
+
"serde",
|
|
1421
1531
|
]
|
|
1422
1532
|
|
|
1423
1533
|
[[package]]
|
|
@@ -1432,12 +1542,6 @@ version = "0.5.0"
|
|
|
1432
1542
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1433
1543
|
checksum = "2304e00983f87ffb38b55b444b5e3b60a884b5d30c0fca7d82fe33449bbe55ea"
|
|
1434
1544
|
|
|
1435
|
-
[[package]]
|
|
1436
|
-
name = "hermit-abi"
|
|
1437
|
-
version = "0.3.9"
|
|
1438
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1439
|
-
checksum = "d231dfb89cfffdbc30e7fc41579ed6066ad03abda9e567ccafae602b97ec5024"
|
|
1440
|
-
|
|
1441
1545
|
[[package]]
|
|
1442
1546
|
name = "hex"
|
|
1443
1547
|
version = "0.4.3"
|
|
@@ -1464,11 +1568,11 @@ dependencies = [
|
|
|
1464
1568
|
|
|
1465
1569
|
[[package]]
|
|
1466
1570
|
name = "home"
|
|
1467
|
-
version = "0.5.
|
|
1571
|
+
version = "0.5.11"
|
|
1468
1572
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1469
|
-
checksum = "
|
|
1573
|
+
checksum = "589533453244b0995c858700322199b2becb13b627df2851f64a2775d024abcf"
|
|
1470
1574
|
dependencies = [
|
|
1471
|
-
"windows-sys 0.
|
|
1575
|
+
"windows-sys 0.59.0",
|
|
1472
1576
|
]
|
|
1473
1577
|
|
|
1474
1578
|
[[package]]
|
|
@@ -1565,12 +1669,12 @@ dependencies = [
|
|
|
1565
1669
|
|
|
1566
1670
|
[[package]]
|
|
1567
1671
|
name = "indexmap"
|
|
1568
|
-
version = "2.
|
|
1672
|
+
version = "2.7.0"
|
|
1569
1673
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1570
|
-
checksum = "
|
|
1674
|
+
checksum = "62f822373a4fe84d4bb149bf54e584a7f4abec90e072ed49cda0edea5b95471f"
|
|
1571
1675
|
dependencies = [
|
|
1572
1676
|
"equivalent",
|
|
1573
|
-
"hashbrown 0.15.
|
|
1677
|
+
"hashbrown 0.15.2",
|
|
1574
1678
|
"serde",
|
|
1575
1679
|
]
|
|
1576
1680
|
|
|
@@ -1591,9 +1695,9 @@ dependencies = [
|
|
|
1591
1695
|
|
|
1592
1696
|
[[package]]
|
|
1593
1697
|
name = "intaglio"
|
|
1594
|
-
version = "1.
|
|
1698
|
+
version = "1.10.0"
|
|
1595
1699
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1596
|
-
checksum = "
|
|
1700
|
+
checksum = "7785e397d45f5a00bd35df6c293518c240c321b734b15a02718aa21103de1ce9"
|
|
1597
1701
|
|
|
1598
1702
|
[[package]]
|
|
1599
1703
|
name = "is_terminal_polyfill"
|
|
@@ -1621,18 +1725,18 @@ dependencies = [
|
|
|
1621
1725
|
|
|
1622
1726
|
[[package]]
|
|
1623
1727
|
name = "itertools"
|
|
1624
|
-
version = "0.
|
|
1728
|
+
version = "0.14.0"
|
|
1625
1729
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1626
|
-
checksum = "
|
|
1730
|
+
checksum = "2b192c782037fadd9cfa75548310488aabdbf3d2da73885b31bd0abd03351285"
|
|
1627
1731
|
dependencies = [
|
|
1628
1732
|
"either",
|
|
1629
1733
|
]
|
|
1630
1734
|
|
|
1631
1735
|
[[package]]
|
|
1632
1736
|
name = "itoa"
|
|
1633
|
-
version = "1.0.
|
|
1737
|
+
version = "1.0.14"
|
|
1634
1738
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1635
|
-
checksum = "
|
|
1739
|
+
checksum = "d75a2a4b1b190afb6f5425f10f6a8f959d2ea0b9c2b1d79553551850539e4674"
|
|
1636
1740
|
|
|
1637
1741
|
[[package]]
|
|
1638
1742
|
name = "jobserver"
|
|
@@ -1645,10 +1749,11 @@ dependencies = [
|
|
|
1645
1749
|
|
|
1646
1750
|
[[package]]
|
|
1647
1751
|
name = "js-sys"
|
|
1648
|
-
version = "0.3.
|
|
1752
|
+
version = "0.3.77"
|
|
1649
1753
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1650
|
-
checksum = "
|
|
1754
|
+
checksum = "1cfaf33c695fc6e08064efbc1f72ec937429614f25eef83af942d0e227c3a28f"
|
|
1651
1755
|
dependencies = [
|
|
1756
|
+
"once_cell",
|
|
1652
1757
|
"wasm-bindgen",
|
|
1653
1758
|
]
|
|
1654
1759
|
|
|
@@ -1675,9 +1780,9 @@ checksum = "884e2677b40cc8c339eaefcb701c32ef1fd2493d71118dc0ca4b6a736c93bd67"
|
|
|
1675
1780
|
|
|
1676
1781
|
[[package]]
|
|
1677
1782
|
name = "libc"
|
|
1678
|
-
version = "0.2.
|
|
1783
|
+
version = "0.2.169"
|
|
1679
1784
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1680
|
-
checksum = "
|
|
1785
|
+
checksum = "b5aba8db14291edd000dfcc4d620c7ebfb122c613afb886ca8803fa4e128a20a"
|
|
1681
1786
|
|
|
1682
1787
|
[[package]]
|
|
1683
1788
|
name = "libm"
|
|
@@ -1691,7 +1796,7 @@ version = "0.1.3"
|
|
|
1691
1796
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1692
1797
|
checksum = "c0ff37bd590ca25063e35af745c343cb7a0271906fb7b37e4813e8f79f00268d"
|
|
1693
1798
|
dependencies = [
|
|
1694
|
-
"bitflags 2.
|
|
1799
|
+
"bitflags 2.8.0",
|
|
1695
1800
|
"libc",
|
|
1696
1801
|
]
|
|
1697
1802
|
|
|
@@ -1718,7 +1823,7 @@ dependencies = [
|
|
|
1718
1823
|
"serde",
|
|
1719
1824
|
"serde-wasm-bindgen",
|
|
1720
1825
|
"serde_json",
|
|
1721
|
-
"strum",
|
|
1826
|
+
"strum 0.25.0",
|
|
1722
1827
|
"strum_macros 0.25.3",
|
|
1723
1828
|
"wasm-bindgen",
|
|
1724
1829
|
]
|
|
@@ -1776,14 +1881,14 @@ checksum = "edbe595006d355eaf9ae11db92707d4338cd2384d16866131cc1afdbdd35d8d9"
|
|
|
1776
1881
|
dependencies = [
|
|
1777
1882
|
"proc-macro2",
|
|
1778
1883
|
"quote",
|
|
1779
|
-
"syn 2.0.
|
|
1884
|
+
"syn 2.0.96",
|
|
1780
1885
|
]
|
|
1781
1886
|
|
|
1782
1887
|
[[package]]
|
|
1783
1888
|
name = "linux-raw-sys"
|
|
1784
|
-
version = "0.4.
|
|
1889
|
+
version = "0.4.15"
|
|
1785
1890
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1786
|
-
checksum = "
|
|
1891
|
+
checksum = "d26c52dbd32dccf2d10cac7725f8eae5296885fb5703b261f7d0a0739ec807ab"
|
|
1787
1892
|
|
|
1788
1893
|
[[package]]
|
|
1789
1894
|
name = "lock_api"
|
|
@@ -1803,24 +1908,24 @@ checksum = "9374ef4228402d4b7e403e5838cb880d9ee663314b0a900d5a6aabf0c213552e"
|
|
|
1803
1908
|
|
|
1804
1909
|
[[package]]
|
|
1805
1910
|
name = "log"
|
|
1806
|
-
version = "0.4.
|
|
1911
|
+
version = "0.4.25"
|
|
1807
1912
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1808
|
-
checksum = "
|
|
1913
|
+
checksum = "04cbf5b083de1c7e0222a7a51dbfdba1cbe1c6ab0b15e29fff3f6c077fd9cd9f"
|
|
1809
1914
|
|
|
1810
1915
|
[[package]]
|
|
1811
1916
|
name = "logos"
|
|
1812
|
-
version = "0.
|
|
1917
|
+
version = "0.15.0"
|
|
1813
1918
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1814
|
-
checksum = "
|
|
1919
|
+
checksum = "ab6f536c1af4c7cc81edf73da1f8029896e7e1e16a219ef09b184e76a296f3db"
|
|
1815
1920
|
dependencies = [
|
|
1816
1921
|
"logos-derive",
|
|
1817
1922
|
]
|
|
1818
1923
|
|
|
1819
1924
|
[[package]]
|
|
1820
1925
|
name = "logos-codegen"
|
|
1821
|
-
version = "0.
|
|
1926
|
+
version = "0.15.0"
|
|
1822
1927
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1823
|
-
checksum = "
|
|
1928
|
+
checksum = "189bbfd0b61330abea797e5e9276408f2edbe4f822d7ad08685d67419aafb34e"
|
|
1824
1929
|
dependencies = [
|
|
1825
1930
|
"beef",
|
|
1826
1931
|
"fnv",
|
|
@@ -1828,14 +1933,15 @@ dependencies = [
|
|
|
1828
1933
|
"proc-macro2",
|
|
1829
1934
|
"quote",
|
|
1830
1935
|
"regex-syntax 0.8.5",
|
|
1831
|
-
"
|
|
1936
|
+
"rustc_version",
|
|
1937
|
+
"syn 2.0.96",
|
|
1832
1938
|
]
|
|
1833
1939
|
|
|
1834
1940
|
[[package]]
|
|
1835
1941
|
name = "logos-derive"
|
|
1836
|
-
version = "0.
|
|
1942
|
+
version = "0.15.0"
|
|
1837
1943
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1838
|
-
checksum = "
|
|
1944
|
+
checksum = "ebfe8e1a19049ddbfccbd14ac834b215e11b85b90bab0c2dba7c7b92fb5d5cba"
|
|
1839
1945
|
dependencies = [
|
|
1840
1946
|
"logos-codegen",
|
|
1841
1947
|
]
|
|
@@ -1865,7 +1971,7 @@ version = "0.16.2"
|
|
|
1865
1971
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1866
1972
|
checksum = "a200ae03df8c3dce7a963f6eeaac8feb41bf9001cb7e5ab22e3205aec2f0373d"
|
|
1867
1973
|
dependencies = [
|
|
1868
|
-
"bitflags 2.
|
|
1974
|
+
"bitflags 2.8.0",
|
|
1869
1975
|
"libc",
|
|
1870
1976
|
"magic-sys",
|
|
1871
1977
|
"thiserror 1.0.69",
|
|
@@ -1971,9 +2077,9 @@ checksum = "68354c5c6bd36d73ff3feceb05efa59b6acb7626617f4962be322a825e61f79a"
|
|
|
1971
2077
|
|
|
1972
2078
|
[[package]]
|
|
1973
2079
|
name = "miniz_oxide"
|
|
1974
|
-
version = "0.8.
|
|
2080
|
+
version = "0.8.3"
|
|
1975
2081
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1976
|
-
checksum = "
|
|
2082
|
+
checksum = "b8402cab7aefae129c6977bb0ff1b8fd9a04eb5b51efc50a70bea51cda0c7924"
|
|
1977
2083
|
dependencies = [
|
|
1978
2084
|
"adler2",
|
|
1979
2085
|
]
|
|
@@ -1992,11 +2098,10 @@ dependencies = [
|
|
|
1992
2098
|
|
|
1993
2099
|
[[package]]
|
|
1994
2100
|
name = "mio"
|
|
1995
|
-
version = "1.0.
|
|
2101
|
+
version = "1.0.3"
|
|
1996
2102
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1997
|
-
checksum = "
|
|
2103
|
+
checksum = "2886843bf800fba2e3377cff24abf6379b4c4d5c6681eaf9ea5b0d15090450bd"
|
|
1998
2104
|
dependencies = [
|
|
1999
|
-
"hermit-abi",
|
|
2000
2105
|
"libc",
|
|
2001
2106
|
"log",
|
|
2002
2107
|
"wasi",
|
|
@@ -2035,6 +2140,12 @@ dependencies = [
|
|
|
2035
2140
|
"minimal-lexical",
|
|
2036
2141
|
]
|
|
2037
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
|
+
|
|
2038
2149
|
[[package]]
|
|
2039
2150
|
name = "num"
|
|
2040
2151
|
version = "0.4.3"
|
|
@@ -2110,7 +2221,7 @@ checksum = "ed3955f1a9c7c0c15e092f9c887db08b1fc683305fdf6eb6684f22555355e202"
|
|
|
2110
2221
|
dependencies = [
|
|
2111
2222
|
"proc-macro2",
|
|
2112
2223
|
"quote",
|
|
2113
|
-
"syn 2.0.
|
|
2224
|
+
"syn 2.0.96",
|
|
2114
2225
|
]
|
|
2115
2226
|
|
|
2116
2227
|
[[package]]
|
|
@@ -2156,21 +2267,21 @@ dependencies = [
|
|
|
2156
2267
|
|
|
2157
2268
|
[[package]]
|
|
2158
2269
|
name = "object"
|
|
2159
|
-
version = "0.36.
|
|
2270
|
+
version = "0.36.7"
|
|
2160
2271
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2161
|
-
checksum = "
|
|
2272
|
+
checksum = "62948e14d923ea95ea2c7c86c71013138b66525b86bdc08d2dcc262bdb497b87"
|
|
2162
2273
|
dependencies = [
|
|
2163
2274
|
"crc32fast",
|
|
2164
|
-
"hashbrown 0.15.
|
|
2165
|
-
"indexmap 2.
|
|
2275
|
+
"hashbrown 0.15.2",
|
|
2276
|
+
"indexmap 2.7.0",
|
|
2166
2277
|
"memchr",
|
|
2167
2278
|
]
|
|
2168
2279
|
|
|
2169
2280
|
[[package]]
|
|
2170
2281
|
name = "oid-registry"
|
|
2171
|
-
version = "0.
|
|
2282
|
+
version = "0.8.0"
|
|
2172
2283
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2173
|
-
checksum = "
|
|
2284
|
+
checksum = "264c56d1492c13e769662197fb6b94e0a52abe52d27efac374615799a4bf453d"
|
|
2174
2285
|
dependencies = [
|
|
2175
2286
|
"asn1-rs",
|
|
2176
2287
|
]
|
|
@@ -2198,9 +2309,9 @@ dependencies = [
|
|
|
2198
2309
|
|
|
2199
2310
|
[[package]]
|
|
2200
2311
|
name = "ordered-float"
|
|
2201
|
-
version = "4.
|
|
2312
|
+
version = "4.6.0"
|
|
2202
2313
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2203
|
-
checksum = "
|
|
2314
|
+
checksum = "7bb71e1b3fa6ca1c61f383464aaf2bb0e2f8e772a1f01d486832464de363b951"
|
|
2204
2315
|
dependencies = [
|
|
2205
2316
|
"num-traits",
|
|
2206
2317
|
]
|
|
@@ -2275,7 +2386,7 @@ dependencies = [
|
|
|
2275
2386
|
"regex",
|
|
2276
2387
|
"regex-syntax 0.7.5",
|
|
2277
2388
|
"structmeta",
|
|
2278
|
-
"syn 2.0.
|
|
2389
|
+
"syn 2.0.96",
|
|
2279
2390
|
]
|
|
2280
2391
|
|
|
2281
2392
|
[[package]]
|
|
@@ -2305,20 +2416,20 @@ dependencies = [
|
|
|
2305
2416
|
|
|
2306
2417
|
[[package]]
|
|
2307
2418
|
name = "pest"
|
|
2308
|
-
version = "2.7.
|
|
2419
|
+
version = "2.7.15"
|
|
2309
2420
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2310
|
-
checksum = "
|
|
2421
|
+
checksum = "8b7cafe60d6cf8e62e1b9b2ea516a089c008945bb5a275416789e7db0bc199dc"
|
|
2311
2422
|
dependencies = [
|
|
2312
2423
|
"memchr",
|
|
2313
|
-
"thiserror
|
|
2424
|
+
"thiserror 2.0.11",
|
|
2314
2425
|
"ucd-trie",
|
|
2315
2426
|
]
|
|
2316
2427
|
|
|
2317
2428
|
[[package]]
|
|
2318
2429
|
name = "pest_derive"
|
|
2319
|
-
version = "2.7.
|
|
2430
|
+
version = "2.7.15"
|
|
2320
2431
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2321
|
-
checksum = "
|
|
2432
|
+
checksum = "816518421cfc6887a0d62bf441b6ffb4536fcc926395a69e1a85852d4363f57e"
|
|
2322
2433
|
dependencies = [
|
|
2323
2434
|
"pest",
|
|
2324
2435
|
"pest_generator",
|
|
@@ -2326,22 +2437,22 @@ dependencies = [
|
|
|
2326
2437
|
|
|
2327
2438
|
[[package]]
|
|
2328
2439
|
name = "pest_generator"
|
|
2329
|
-
version = "2.7.
|
|
2440
|
+
version = "2.7.15"
|
|
2330
2441
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2331
|
-
checksum = "
|
|
2442
|
+
checksum = "7d1396fd3a870fc7838768d171b4616d5c91f6cc25e377b673d714567d99377b"
|
|
2332
2443
|
dependencies = [
|
|
2333
2444
|
"pest",
|
|
2334
2445
|
"pest_meta",
|
|
2335
2446
|
"proc-macro2",
|
|
2336
2447
|
"quote",
|
|
2337
|
-
"syn 2.0.
|
|
2448
|
+
"syn 2.0.96",
|
|
2338
2449
|
]
|
|
2339
2450
|
|
|
2340
2451
|
[[package]]
|
|
2341
2452
|
name = "pest_meta"
|
|
2342
|
-
version = "2.7.
|
|
2453
|
+
version = "2.7.15"
|
|
2343
2454
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2344
|
-
checksum = "
|
|
2455
|
+
checksum = "e1e58089ea25d717bfd31fb534e4f3afcc2cc569c70de3e239778991ea3b7dea"
|
|
2345
2456
|
dependencies = [
|
|
2346
2457
|
"once_cell",
|
|
2347
2458
|
"pest",
|
|
@@ -2359,45 +2470,45 @@ dependencies = [
|
|
|
2359
2470
|
|
|
2360
2471
|
[[package]]
|
|
2361
2472
|
name = "phf"
|
|
2362
|
-
version = "0.11.
|
|
2473
|
+
version = "0.11.3"
|
|
2363
2474
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2364
|
-
checksum = "
|
|
2475
|
+
checksum = "1fd6780a80ae0c52cc120a26a1a42c1ae51b247a253e4e06113d23d2c2edd078"
|
|
2365
2476
|
dependencies = [
|
|
2366
2477
|
"phf_macros",
|
|
2367
|
-
"phf_shared 0.11.
|
|
2478
|
+
"phf_shared 0.11.3",
|
|
2368
2479
|
]
|
|
2369
2480
|
|
|
2370
2481
|
[[package]]
|
|
2371
2482
|
name = "phf_codegen"
|
|
2372
|
-
version = "0.11.
|
|
2483
|
+
version = "0.11.3"
|
|
2373
2484
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2374
|
-
checksum = "
|
|
2485
|
+
checksum = "aef8048c789fa5e851558d709946d6d79a8ff88c0440c587967f8e94bfb1216a"
|
|
2375
2486
|
dependencies = [
|
|
2376
2487
|
"phf_generator",
|
|
2377
|
-
"phf_shared 0.11.
|
|
2488
|
+
"phf_shared 0.11.3",
|
|
2378
2489
|
]
|
|
2379
2490
|
|
|
2380
2491
|
[[package]]
|
|
2381
2492
|
name = "phf_generator"
|
|
2382
|
-
version = "0.11.
|
|
2493
|
+
version = "0.11.3"
|
|
2383
2494
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2384
|
-
checksum = "
|
|
2495
|
+
checksum = "3c80231409c20246a13fddb31776fb942c38553c51e871f8cbd687a4cfb5843d"
|
|
2385
2496
|
dependencies = [
|
|
2386
|
-
"phf_shared 0.11.
|
|
2497
|
+
"phf_shared 0.11.3",
|
|
2387
2498
|
"rand",
|
|
2388
2499
|
]
|
|
2389
2500
|
|
|
2390
2501
|
[[package]]
|
|
2391
2502
|
name = "phf_macros"
|
|
2392
|
-
version = "0.11.
|
|
2503
|
+
version = "0.11.3"
|
|
2393
2504
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2394
|
-
checksum = "
|
|
2505
|
+
checksum = "f84ac04429c13a7ff43785d75ad27569f2951ce0ffd30a3321230db2fc727216"
|
|
2395
2506
|
dependencies = [
|
|
2396
2507
|
"phf_generator",
|
|
2397
|
-
"phf_shared 0.11.
|
|
2508
|
+
"phf_shared 0.11.3",
|
|
2398
2509
|
"proc-macro2",
|
|
2399
2510
|
"quote",
|
|
2400
|
-
"syn 2.0.
|
|
2511
|
+
"syn 2.0.96",
|
|
2401
2512
|
]
|
|
2402
2513
|
|
|
2403
2514
|
[[package]]
|
|
@@ -2406,16 +2517,16 @@ version = "0.10.0"
|
|
|
2406
2517
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2407
2518
|
checksum = "b6796ad771acdc0123d2a88dc428b5e38ef24456743ddb1744ed628f9815c096"
|
|
2408
2519
|
dependencies = [
|
|
2409
|
-
"siphasher",
|
|
2520
|
+
"siphasher 0.3.11",
|
|
2410
2521
|
]
|
|
2411
2522
|
|
|
2412
2523
|
[[package]]
|
|
2413
2524
|
name = "phf_shared"
|
|
2414
|
-
version = "0.11.
|
|
2525
|
+
version = "0.11.3"
|
|
2415
2526
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2416
|
-
checksum = "
|
|
2527
|
+
checksum = "67eabc2ef2a60eb7faa00097bd1ffdb5bd28e62bf39990626a582201b7a754e5"
|
|
2417
2528
|
dependencies = [
|
|
2418
|
-
"siphasher",
|
|
2529
|
+
"siphasher 1.0.1",
|
|
2419
2530
|
]
|
|
2420
2531
|
|
|
2421
2532
|
[[package]]
|
|
@@ -2447,15 +2558,15 @@ checksum = "953ec861398dccce10c670dfeaf3ec4911ca479e9c02154b3a215178c5f566f2"
|
|
|
2447
2558
|
|
|
2448
2559
|
[[package]]
|
|
2449
2560
|
name = "portable-atomic"
|
|
2450
|
-
version = "1.
|
|
2561
|
+
version = "1.10.0"
|
|
2451
2562
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2452
|
-
checksum = "
|
|
2563
|
+
checksum = "280dc24453071f1b63954171985a0b0d30058d287960968b9b2aca264c8d4ee6"
|
|
2453
2564
|
|
|
2454
2565
|
[[package]]
|
|
2455
2566
|
name = "postcard"
|
|
2456
|
-
version = "1.
|
|
2567
|
+
version = "1.1.1"
|
|
2457
2568
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2458
|
-
checksum = "
|
|
2569
|
+
checksum = "170a2601f67cc9dba8edd8c4870b15f71a6a2dc196daec8c83f72b59dff628a8"
|
|
2459
2570
|
dependencies = [
|
|
2460
2571
|
"cobs",
|
|
2461
2572
|
"embedded-io 0.4.0",
|
|
@@ -2478,6 +2589,36 @@ dependencies = [
|
|
|
2478
2589
|
"zerocopy",
|
|
2479
2590
|
]
|
|
2480
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
|
+
|
|
2481
2622
|
[[package]]
|
|
2482
2623
|
name = "pretty_assertions"
|
|
2483
2624
|
version = "1.4.1"
|
|
@@ -2499,9 +2640,9 @@ dependencies = [
|
|
|
2499
2640
|
|
|
2500
2641
|
[[package]]
|
|
2501
2642
|
name = "proc-macro2"
|
|
2502
|
-
version = "1.0.
|
|
2643
|
+
version = "1.0.93"
|
|
2503
2644
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2504
|
-
checksum = "
|
|
2645
|
+
checksum = "60946a68e5f9d28b0dc1c21bb8a97ee7d018a8b322fa57838ba31cc878e22d99"
|
|
2505
2646
|
dependencies = [
|
|
2506
2647
|
"unicode-ident",
|
|
2507
2648
|
]
|
|
@@ -2550,7 +2691,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
2550
2691
|
checksum = "322330e133eab455718444b4e033ebfac7c6528972c784fcde28d2cc783c6257"
|
|
2551
2692
|
dependencies = [
|
|
2552
2693
|
"anyhow",
|
|
2553
|
-
"indexmap 2.
|
|
2694
|
+
"indexmap 2.7.0",
|
|
2554
2695
|
"log",
|
|
2555
2696
|
"protobuf",
|
|
2556
2697
|
"protobuf-support",
|
|
@@ -2577,22 +2718,34 @@ dependencies = [
|
|
|
2577
2718
|
"cc",
|
|
2578
2719
|
]
|
|
2579
2720
|
|
|
2721
|
+
[[package]]
|
|
2722
|
+
name = "pulldown-cmark"
|
|
2723
|
+
version = "0.9.6"
|
|
2724
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2725
|
+
checksum = "57206b407293d2bcd3af849ce869d52068623f19e1b5ff8e8778e3309439682b"
|
|
2726
|
+
dependencies = [
|
|
2727
|
+
"bitflags 2.8.0",
|
|
2728
|
+
"memchr",
|
|
2729
|
+
"unicase",
|
|
2730
|
+
]
|
|
2731
|
+
|
|
2580
2732
|
[[package]]
|
|
2581
2733
|
name = "pulley-interpreter"
|
|
2582
|
-
version = "
|
|
2734
|
+
version = "29.0.1"
|
|
2583
2735
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2584
|
-
checksum = "
|
|
2736
|
+
checksum = "62d95f8575df49a2708398182f49a888cf9dc30210fb1fd2df87c889edcee75d"
|
|
2585
2737
|
dependencies = [
|
|
2586
2738
|
"cranelift-bitset",
|
|
2587
2739
|
"log",
|
|
2588
2740
|
"sptr",
|
|
2741
|
+
"wasmtime-math",
|
|
2589
2742
|
]
|
|
2590
2743
|
|
|
2591
2744
|
[[package]]
|
|
2592
2745
|
name = "pyo3"
|
|
2593
|
-
version = "0.
|
|
2746
|
+
version = "0.23.4"
|
|
2594
2747
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2595
|
-
checksum = "
|
|
2748
|
+
checksum = "57fe09249128b3173d092de9523eaa75136bf7ba85e0d69eca241c7939c933cc"
|
|
2596
2749
|
dependencies = [
|
|
2597
2750
|
"cfg-if",
|
|
2598
2751
|
"indoc",
|
|
@@ -2608,19 +2761,19 @@ dependencies = [
|
|
|
2608
2761
|
|
|
2609
2762
|
[[package]]
|
|
2610
2763
|
name = "pyo3-build-config"
|
|
2611
|
-
version = "0.
|
|
2764
|
+
version = "0.23.4"
|
|
2612
2765
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2613
|
-
checksum = "
|
|
2766
|
+
checksum = "1cd3927b5a78757a0d71aa9dff669f903b1eb64b54142a9bd9f757f8fde65fd7"
|
|
2614
2767
|
dependencies = [
|
|
2615
2768
|
"once_cell",
|
|
2616
|
-
"target-lexicon",
|
|
2769
|
+
"target-lexicon 0.12.16",
|
|
2617
2770
|
]
|
|
2618
2771
|
|
|
2619
2772
|
[[package]]
|
|
2620
2773
|
name = "pyo3-ffi"
|
|
2621
|
-
version = "0.
|
|
2774
|
+
version = "0.23.4"
|
|
2622
2775
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2623
|
-
checksum = "
|
|
2776
|
+
checksum = "dab6bb2102bd8f991e7749f130a70d05dd557613e39ed2deeee8e9ca0c4d548d"
|
|
2624
2777
|
dependencies = [
|
|
2625
2778
|
"libc",
|
|
2626
2779
|
"pyo3-build-config",
|
|
@@ -2628,43 +2781,44 @@ dependencies = [
|
|
|
2628
2781
|
|
|
2629
2782
|
[[package]]
|
|
2630
2783
|
name = "pyo3-file"
|
|
2631
|
-
version = "0.
|
|
2784
|
+
version = "0.10.0"
|
|
2632
2785
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2633
|
-
checksum = "
|
|
2786
|
+
checksum = "3134dfe0d6458ea56d6c1cd4047c8894f331297aaf53eb9bf046ac7485dd469b"
|
|
2634
2787
|
dependencies = [
|
|
2635
2788
|
"pyo3",
|
|
2789
|
+
"skeptic",
|
|
2636
2790
|
]
|
|
2637
2791
|
|
|
2638
2792
|
[[package]]
|
|
2639
2793
|
name = "pyo3-macros"
|
|
2640
|
-
version = "0.
|
|
2794
|
+
version = "0.23.4"
|
|
2641
2795
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2642
|
-
checksum = "
|
|
2796
|
+
checksum = "91871864b353fd5ffcb3f91f2f703a22a9797c91b9ab497b1acac7b07ae509c7"
|
|
2643
2797
|
dependencies = [
|
|
2644
2798
|
"proc-macro2",
|
|
2645
2799
|
"pyo3-macros-backend",
|
|
2646
2800
|
"quote",
|
|
2647
|
-
"syn 2.0.
|
|
2801
|
+
"syn 2.0.96",
|
|
2648
2802
|
]
|
|
2649
2803
|
|
|
2650
2804
|
[[package]]
|
|
2651
2805
|
name = "pyo3-macros-backend"
|
|
2652
|
-
version = "0.
|
|
2806
|
+
version = "0.23.4"
|
|
2653
2807
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2654
|
-
checksum = "
|
|
2808
|
+
checksum = "43abc3b80bc20f3facd86cd3c60beed58c3e2aa26213f3cda368de39c60a27e4"
|
|
2655
2809
|
dependencies = [
|
|
2656
2810
|
"heck 0.5.0",
|
|
2657
2811
|
"proc-macro2",
|
|
2658
2812
|
"pyo3-build-config",
|
|
2659
2813
|
"quote",
|
|
2660
|
-
"syn 2.0.
|
|
2814
|
+
"syn 2.0.96",
|
|
2661
2815
|
]
|
|
2662
2816
|
|
|
2663
2817
|
[[package]]
|
|
2664
2818
|
name = "quanta"
|
|
2665
|
-
version = "0.12.
|
|
2819
|
+
version = "0.12.5"
|
|
2666
2820
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2667
|
-
checksum = "
|
|
2821
|
+
checksum = "3bd1fe6824cea6538803de3ff1bc0cf3949024db3d43c9643024bfb33a807c0e"
|
|
2668
2822
|
dependencies = [
|
|
2669
2823
|
"crossbeam-utils",
|
|
2670
2824
|
"libc",
|
|
@@ -2677,9 +2831,9 @@ dependencies = [
|
|
|
2677
2831
|
|
|
2678
2832
|
[[package]]
|
|
2679
2833
|
name = "quote"
|
|
2680
|
-
version = "1.0.
|
|
2834
|
+
version = "1.0.38"
|
|
2681
2835
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2682
|
-
checksum = "
|
|
2836
|
+
checksum = "0e4dccaaaf89514f546c693ddc140f729f958c247918a13380cccc6078391acc"
|
|
2683
2837
|
dependencies = [
|
|
2684
2838
|
"proc-macro2",
|
|
2685
2839
|
]
|
|
@@ -2722,11 +2876,11 @@ dependencies = [
|
|
|
2722
2876
|
|
|
2723
2877
|
[[package]]
|
|
2724
2878
|
name = "raw-cpuid"
|
|
2725
|
-
version = "11.
|
|
2879
|
+
version = "11.3.0"
|
|
2726
2880
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2727
|
-
checksum = "
|
|
2881
|
+
checksum = "c6928fa44c097620b706542d428957635951bade7143269085389d42c8a4927e"
|
|
2728
2882
|
dependencies = [
|
|
2729
|
-
"bitflags 2.
|
|
2883
|
+
"bitflags 2.8.0",
|
|
2730
2884
|
]
|
|
2731
2885
|
|
|
2732
2886
|
[[package]]
|
|
@@ -2751,11 +2905,11 @@ dependencies = [
|
|
|
2751
2905
|
|
|
2752
2906
|
[[package]]
|
|
2753
2907
|
name = "redox_syscall"
|
|
2754
|
-
version = "0.5.
|
|
2908
|
+
version = "0.5.8"
|
|
2755
2909
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2756
|
-
checksum = "
|
|
2910
|
+
checksum = "03a862b389f93e68874fbf580b9de08dd02facb9a788ebadaf4a3fd33cf58834"
|
|
2757
2911
|
dependencies = [
|
|
2758
|
-
"bitflags 2.
|
|
2912
|
+
"bitflags 2.8.0",
|
|
2759
2913
|
]
|
|
2760
2914
|
|
|
2761
2915
|
[[package]]
|
|
@@ -2771,14 +2925,15 @@ dependencies = [
|
|
|
2771
2925
|
|
|
2772
2926
|
[[package]]
|
|
2773
2927
|
name = "regalloc2"
|
|
2774
|
-
version = "0.
|
|
2928
|
+
version = "0.11.1"
|
|
2775
2929
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2776
|
-
checksum = "
|
|
2930
|
+
checksum = "145c1c267e14f20fb0f88aa76a1c5ffec42d592c1d28b3cd9148ae35916158d3"
|
|
2777
2931
|
dependencies = [
|
|
2778
|
-
"
|
|
2932
|
+
"allocator-api2",
|
|
2933
|
+
"bumpalo",
|
|
2934
|
+
"hashbrown 0.15.2",
|
|
2779
2935
|
"log",
|
|
2780
|
-
"rustc-hash 2.
|
|
2781
|
-
"slice-group-by",
|
|
2936
|
+
"rustc-hash 2.1.0",
|
|
2782
2937
|
"smallvec",
|
|
2783
2938
|
]
|
|
2784
2939
|
|
|
@@ -2844,9 +2999,9 @@ dependencies = [
|
|
|
2844
2999
|
|
|
2845
3000
|
[[package]]
|
|
2846
3001
|
name = "rowan"
|
|
2847
|
-
version = "0.16.
|
|
3002
|
+
version = "0.16.1"
|
|
2848
3003
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2849
|
-
checksum = "
|
|
3004
|
+
checksum = "417a3a9f582e349834051b8a10c8d71ca88da4211e4093528e36b9845f6b5f21"
|
|
2850
3005
|
dependencies = [
|
|
2851
3006
|
"countme",
|
|
2852
3007
|
"hashbrown 0.14.5",
|
|
@@ -2862,9 +3017,9 @@ checksum = "6c20b6793b5c2fa6553b250154b78d6d0db37e72700ae35fad9387a46f487c97"
|
|
|
2862
3017
|
|
|
2863
3018
|
[[package]]
|
|
2864
3019
|
name = "rsa"
|
|
2865
|
-
version = "0.9.
|
|
3020
|
+
version = "0.9.7"
|
|
2866
3021
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2867
|
-
checksum = "
|
|
3022
|
+
checksum = "47c75d7c5c6b673e58bf54d8544a9f432e3a925b0e80f7cd3602ab5c50c55519"
|
|
2868
3023
|
dependencies = [
|
|
2869
3024
|
"const-oid",
|
|
2870
3025
|
"digest 0.10.7",
|
|
@@ -2888,9 +3043,18 @@ checksum = "08d43f7aa6b08d49f382cde6a7982047c3426db949b1424bc4b7ec9ae12c6ce2"
|
|
|
2888
3043
|
|
|
2889
3044
|
[[package]]
|
|
2890
3045
|
name = "rustc-hash"
|
|
2891
|
-
version = "2.
|
|
3046
|
+
version = "2.1.0"
|
|
2892
3047
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2893
|
-
checksum = "
|
|
3048
|
+
checksum = "c7fb8039b3032c191086b10f11f319a6e99e1e82889c5cc6046f515c9db1d497"
|
|
3049
|
+
|
|
3050
|
+
[[package]]
|
|
3051
|
+
name = "rustc_version"
|
|
3052
|
+
version = "0.4.1"
|
|
3053
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3054
|
+
checksum = "cfcb3a22ef46e85b45de6ee7e79d063319ebb6594faafcf1c225ea92ab6e9b92"
|
|
3055
|
+
dependencies = [
|
|
3056
|
+
"semver 1.0.24",
|
|
3057
|
+
]
|
|
2894
3058
|
|
|
2895
3059
|
[[package]]
|
|
2896
3060
|
name = "rusticata-macros"
|
|
@@ -2903,22 +3067,22 @@ dependencies = [
|
|
|
2903
3067
|
|
|
2904
3068
|
[[package]]
|
|
2905
3069
|
name = "rustix"
|
|
2906
|
-
version = "0.38.
|
|
3070
|
+
version = "0.38.43"
|
|
2907
3071
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2908
|
-
checksum = "
|
|
3072
|
+
checksum = "a78891ee6bf2340288408954ac787aa063d8e8817e9f53abb37c695c6d834ef6"
|
|
2909
3073
|
dependencies = [
|
|
2910
|
-
"bitflags 2.
|
|
3074
|
+
"bitflags 2.8.0",
|
|
2911
3075
|
"errno",
|
|
2912
3076
|
"libc",
|
|
2913
3077
|
"linux-raw-sys",
|
|
2914
|
-
"windows-sys 0.
|
|
3078
|
+
"windows-sys 0.59.0",
|
|
2915
3079
|
]
|
|
2916
3080
|
|
|
2917
3081
|
[[package]]
|
|
2918
3082
|
name = "rustversion"
|
|
2919
|
-
version = "1.0.
|
|
3083
|
+
version = "1.0.19"
|
|
2920
3084
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2921
|
-
checksum = "
|
|
3085
|
+
checksum = "f7c45b9784283f1b2e7fb61b42047c2fd678ef0960d4f6f1eba131594cc369d4"
|
|
2922
3086
|
|
|
2923
3087
|
[[package]]
|
|
2924
3088
|
name = "ryu"
|
|
@@ -2966,9 +3130,12 @@ dependencies = [
|
|
|
2966
3130
|
|
|
2967
3131
|
[[package]]
|
|
2968
3132
|
name = "semver"
|
|
2969
|
-
version = "1.0.
|
|
3133
|
+
version = "1.0.24"
|
|
2970
3134
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2971
|
-
checksum = "
|
|
3135
|
+
checksum = "3cb6eb87a131f756572d7fb904f6e7b68633f09cca868c5df1c4b8d1a694bbba"
|
|
3136
|
+
dependencies = [
|
|
3137
|
+
"serde",
|
|
3138
|
+
]
|
|
2972
3139
|
|
|
2973
3140
|
[[package]]
|
|
2974
3141
|
name = "semver-parser"
|
|
@@ -2981,9 +3148,9 @@ dependencies = [
|
|
|
2981
3148
|
|
|
2982
3149
|
[[package]]
|
|
2983
3150
|
name = "serde"
|
|
2984
|
-
version = "1.0.
|
|
3151
|
+
version = "1.0.217"
|
|
2985
3152
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2986
|
-
checksum = "
|
|
3153
|
+
checksum = "02fc4265df13d6fa1d00ecff087228cc0a2b5f3c0e87e258d8b94a156e984c70"
|
|
2987
3154
|
dependencies = [
|
|
2988
3155
|
"serde_derive",
|
|
2989
3156
|
]
|
|
@@ -3001,22 +3168,22 @@ dependencies = [
|
|
|
3001
3168
|
|
|
3002
3169
|
[[package]]
|
|
3003
3170
|
name = "serde_derive"
|
|
3004
|
-
version = "1.0.
|
|
3171
|
+
version = "1.0.217"
|
|
3005
3172
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3006
|
-
checksum = "
|
|
3173
|
+
checksum = "5a9bf7cf98d04a2b28aead066b7496853d4779c9cc183c440dbac457641e19a0"
|
|
3007
3174
|
dependencies = [
|
|
3008
3175
|
"proc-macro2",
|
|
3009
3176
|
"quote",
|
|
3010
|
-
"syn 2.0.
|
|
3177
|
+
"syn 2.0.96",
|
|
3011
3178
|
]
|
|
3012
3179
|
|
|
3013
3180
|
[[package]]
|
|
3014
3181
|
name = "serde_json"
|
|
3015
|
-
version = "1.0.
|
|
3182
|
+
version = "1.0.135"
|
|
3016
3183
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3017
|
-
checksum = "
|
|
3184
|
+
checksum = "2b0d7ba2887406110130a978386c4e1befb98c674b4fba677954e4db976630d9"
|
|
3018
3185
|
dependencies = [
|
|
3019
|
-
"indexmap 2.
|
|
3186
|
+
"indexmap 2.7.0",
|
|
3020
3187
|
"itoa",
|
|
3021
3188
|
"memchr",
|
|
3022
3189
|
"ryu",
|
|
@@ -3101,7 +3268,7 @@ checksum = "34db1a06d485c9142248b7a054f034b349b212551f3dfd19c94d45a754a217cd"
|
|
|
3101
3268
|
dependencies = [
|
|
3102
3269
|
"libc",
|
|
3103
3270
|
"mio 0.8.11",
|
|
3104
|
-
"mio 1.0.
|
|
3271
|
+
"mio 1.0.3",
|
|
3105
3272
|
"signal-hook 0.3.17",
|
|
3106
3273
|
]
|
|
3107
3274
|
|
|
@@ -3157,10 +3324,25 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
3157
3324
|
checksum = "38b58827f4464d87d377d175e90bf58eb00fd8716ff0a62f80356b5e61555d0d"
|
|
3158
3325
|
|
|
3159
3326
|
[[package]]
|
|
3160
|
-
name = "
|
|
3161
|
-
version = "0.
|
|
3327
|
+
name = "siphasher"
|
|
3328
|
+
version = "1.0.1"
|
|
3162
3329
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3163
|
-
checksum = "
|
|
3330
|
+
checksum = "56199f7ddabf13fe5074ce809e7d3f42b42ae711800501b5b16ea82ad029c39d"
|
|
3331
|
+
|
|
3332
|
+
[[package]]
|
|
3333
|
+
name = "skeptic"
|
|
3334
|
+
version = "0.13.7"
|
|
3335
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3336
|
+
checksum = "16d23b015676c90a0f01c197bfdc786c20342c73a0afdda9025adb0bc42940a8"
|
|
3337
|
+
dependencies = [
|
|
3338
|
+
"bytecount",
|
|
3339
|
+
"cargo_metadata",
|
|
3340
|
+
"error-chain",
|
|
3341
|
+
"glob",
|
|
3342
|
+
"pulldown-cmark",
|
|
3343
|
+
"tempfile",
|
|
3344
|
+
"walkdir",
|
|
3345
|
+
]
|
|
3164
3346
|
|
|
3165
3347
|
[[package]]
|
|
3166
3348
|
name = "smallvec"
|
|
@@ -3226,7 +3408,7 @@ dependencies = [
|
|
|
3226
3408
|
"proc-macro2",
|
|
3227
3409
|
"quote",
|
|
3228
3410
|
"structmeta-derive",
|
|
3229
|
-
"syn 2.0.
|
|
3411
|
+
"syn 2.0.96",
|
|
3230
3412
|
]
|
|
3231
3413
|
|
|
3232
3414
|
[[package]]
|
|
@@ -3237,7 +3419,7 @@ checksum = "a60bcaff7397072dca0017d1db428e30d5002e00b6847703e2e42005c95fbe00"
|
|
|
3237
3419
|
dependencies = [
|
|
3238
3420
|
"proc-macro2",
|
|
3239
3421
|
"quote",
|
|
3240
|
-
"syn 2.0.
|
|
3422
|
+
"syn 2.0.96",
|
|
3241
3423
|
]
|
|
3242
3424
|
|
|
3243
3425
|
[[package]]
|
|
@@ -3246,6 +3428,12 @@ version = "0.25.0"
|
|
|
3246
3428
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3247
3429
|
checksum = "290d54ea6f91c969195bdbcd7442c8c2a2ba87da8bf60a7ee86a235d4bc1e125"
|
|
3248
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
|
+
|
|
3249
3437
|
[[package]]
|
|
3250
3438
|
name = "strum_macros"
|
|
3251
3439
|
version = "0.25.3"
|
|
@@ -3256,7 +3444,7 @@ dependencies = [
|
|
|
3256
3444
|
"proc-macro2",
|
|
3257
3445
|
"quote",
|
|
3258
3446
|
"rustversion",
|
|
3259
|
-
"syn 2.0.
|
|
3447
|
+
"syn 2.0.96",
|
|
3260
3448
|
]
|
|
3261
3449
|
|
|
3262
3450
|
[[package]]
|
|
@@ -3269,7 +3457,7 @@ dependencies = [
|
|
|
3269
3457
|
"proc-macro2",
|
|
3270
3458
|
"quote",
|
|
3271
3459
|
"rustversion",
|
|
3272
|
-
"syn 2.0.
|
|
3460
|
+
"syn 2.0.96",
|
|
3273
3461
|
]
|
|
3274
3462
|
|
|
3275
3463
|
[[package]]
|
|
@@ -3307,9 +3495,9 @@ dependencies = [
|
|
|
3307
3495
|
|
|
3308
3496
|
[[package]]
|
|
3309
3497
|
name = "syn"
|
|
3310
|
-
version = "2.0.
|
|
3498
|
+
version = "2.0.96"
|
|
3311
3499
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3312
|
-
checksum = "
|
|
3500
|
+
checksum = "d5d0adab1ae378d7f53bdebc67a39f1f151407ef230f0ce2883572f5d8985c80"
|
|
3313
3501
|
dependencies = [
|
|
3314
3502
|
"proc-macro2",
|
|
3315
3503
|
"quote",
|
|
@@ -3324,7 +3512,7 @@ checksum = "c8af7666ab7b6390ab78131fb5b0fce11d6b7a6951602017c35fa82800708971"
|
|
|
3324
3512
|
dependencies = [
|
|
3325
3513
|
"proc-macro2",
|
|
3326
3514
|
"quote",
|
|
3327
|
-
"syn 2.0.
|
|
3515
|
+
"syn 2.0.96",
|
|
3328
3516
|
]
|
|
3329
3517
|
|
|
3330
3518
|
[[package]]
|
|
@@ -3339,14 +3527,21 @@ version = "0.12.16"
|
|
|
3339
3527
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3340
3528
|
checksum = "61c41af27dd6d1e27b1b16b489db798443478cef1f06a660c96db617ba5de3b1"
|
|
3341
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
|
+
|
|
3342
3536
|
[[package]]
|
|
3343
3537
|
name = "tempfile"
|
|
3344
|
-
version = "3.
|
|
3538
|
+
version = "3.15.0"
|
|
3345
3539
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3346
|
-
checksum = "
|
|
3540
|
+
checksum = "9a8a559c81686f576e8cd0290cd2a24a2a9ad80c98b3478856500fcbd7acd704"
|
|
3347
3541
|
dependencies = [
|
|
3348
3542
|
"cfg-if",
|
|
3349
3543
|
"fastrand",
|
|
3544
|
+
"getrandom",
|
|
3350
3545
|
"once_cell",
|
|
3351
3546
|
"rustix",
|
|
3352
3547
|
"windows-sys 0.59.0",
|
|
@@ -3370,7 +3565,7 @@ dependencies = [
|
|
|
3370
3565
|
"dirs",
|
|
3371
3566
|
"fnv",
|
|
3372
3567
|
"nom 5.1.3",
|
|
3373
|
-
"phf 0.11.
|
|
3568
|
+
"phf 0.11.3",
|
|
3374
3569
|
"phf_codegen",
|
|
3375
3570
|
]
|
|
3376
3571
|
|
|
@@ -3383,6 +3578,12 @@ dependencies = [
|
|
|
3383
3578
|
"libc",
|
|
3384
3579
|
]
|
|
3385
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
|
+
|
|
3386
3587
|
[[package]]
|
|
3387
3588
|
name = "termwiz"
|
|
3388
3589
|
version = "0.18.0"
|
|
@@ -3412,7 +3613,7 @@ dependencies = [
|
|
|
3412
3613
|
"semver 0.11.0",
|
|
3413
3614
|
"sha2 0.9.9",
|
|
3414
3615
|
"signal-hook 0.1.17",
|
|
3415
|
-
"siphasher",
|
|
3616
|
+
"siphasher 0.3.11",
|
|
3416
3617
|
"terminfo",
|
|
3417
3618
|
"termios",
|
|
3418
3619
|
"thiserror 1.0.69",
|
|
@@ -3442,11 +3643,11 @@ dependencies = [
|
|
|
3442
3643
|
|
|
3443
3644
|
[[package]]
|
|
3444
3645
|
name = "thiserror"
|
|
3445
|
-
version = "2.0.
|
|
3646
|
+
version = "2.0.11"
|
|
3446
3647
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3447
|
-
checksum = "
|
|
3648
|
+
checksum = "d452f284b73e6d76dd36758a0c8684b1d5be31f92b89d07fd5822175732206fc"
|
|
3448
3649
|
dependencies = [
|
|
3449
|
-
"thiserror-impl 2.0.
|
|
3650
|
+
"thiserror-impl 2.0.11",
|
|
3450
3651
|
]
|
|
3451
3652
|
|
|
3452
3653
|
[[package]]
|
|
@@ -3457,25 +3658,25 @@ checksum = "4fee6c4efc90059e10f81e6d42c60a18f76588c3d74cb83a0b242a2b6c7504c1"
|
|
|
3457
3658
|
dependencies = [
|
|
3458
3659
|
"proc-macro2",
|
|
3459
3660
|
"quote",
|
|
3460
|
-
"syn 2.0.
|
|
3661
|
+
"syn 2.0.96",
|
|
3461
3662
|
]
|
|
3462
3663
|
|
|
3463
3664
|
[[package]]
|
|
3464
3665
|
name = "thiserror-impl"
|
|
3465
|
-
version = "2.0.
|
|
3666
|
+
version = "2.0.11"
|
|
3466
3667
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3467
|
-
checksum = "
|
|
3668
|
+
checksum = "26afc1baea8a989337eeb52b6e72a039780ce45c3edfcc9c5b9d112feeb173c2"
|
|
3468
3669
|
dependencies = [
|
|
3469
3670
|
"proc-macro2",
|
|
3470
3671
|
"quote",
|
|
3471
|
-
"syn 2.0.
|
|
3672
|
+
"syn 2.0.96",
|
|
3472
3673
|
]
|
|
3473
3674
|
|
|
3474
3675
|
[[package]]
|
|
3475
3676
|
name = "time"
|
|
3476
|
-
version = "0.3.
|
|
3677
|
+
version = "0.3.37"
|
|
3477
3678
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3478
|
-
checksum = "
|
|
3679
|
+
checksum = "35e7868883861bd0e56d9ac6efcaaca0d6d5d82a2a7ec8209ff492c07cf37b21"
|
|
3479
3680
|
dependencies = [
|
|
3480
3681
|
"deranged",
|
|
3481
3682
|
"itoa",
|
|
@@ -3494,9 +3695,9 @@ checksum = "ef927ca75afb808a4d64dd374f00a2adf8d0fcff8e7b184af886c3c87ec4a3f3"
|
|
|
3494
3695
|
|
|
3495
3696
|
[[package]]
|
|
3496
3697
|
name = "time-macros"
|
|
3497
|
-
version = "0.2.
|
|
3698
|
+
version = "0.2.19"
|
|
3498
3699
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3499
|
-
checksum = "
|
|
3700
|
+
checksum = "2834e6017e3e5e4b9834939793b282bc03b37a3336245fa820e35e233e2a85de"
|
|
3500
3701
|
dependencies = [
|
|
3501
3702
|
"num-conv",
|
|
3502
3703
|
"time-core",
|
|
@@ -3544,7 +3745,7 @@ version = "0.22.22"
|
|
|
3544
3745
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3545
3746
|
checksum = "4ae48d6208a266e853d946088ed816055e556cc6028c5e8e2b84d9fa5dd7c7f5"
|
|
3546
3747
|
dependencies = [
|
|
3547
|
-
"indexmap 2.
|
|
3748
|
+
"indexmap 2.7.0",
|
|
3548
3749
|
"serde",
|
|
3549
3750
|
"serde_spanned",
|
|
3550
3751
|
"toml_datetime",
|
|
@@ -3572,6 +3773,12 @@ dependencies = [
|
|
|
3572
3773
|
"version_check",
|
|
3573
3774
|
]
|
|
3574
3775
|
|
|
3776
|
+
[[package]]
|
|
3777
|
+
name = "unicase"
|
|
3778
|
+
version = "2.8.1"
|
|
3779
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3780
|
+
checksum = "75b844d17643ee918803943289730bec8aac480150456169e647ed0b576ba539"
|
|
3781
|
+
|
|
3575
3782
|
[[package]]
|
|
3576
3783
|
name = "unicode-ident"
|
|
3577
3784
|
version = "1.0.14"
|
|
@@ -3586,9 +3793,9 @@ checksum = "f6ccf251212114b54433ec949fd6a7841275f9ada20dddd2f29e9ceea4501493"
|
|
|
3586
3793
|
|
|
3587
3794
|
[[package]]
|
|
3588
3795
|
name = "unicode-width"
|
|
3589
|
-
version = "0.
|
|
3796
|
+
version = "0.2.0"
|
|
3590
3797
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3591
|
-
checksum = "
|
|
3798
|
+
checksum = "1fc81956842c57dac11422a97c3b8195a1ff727f06e85c84ed2e8aa277c9a0fd"
|
|
3592
3799
|
|
|
3593
3800
|
[[package]]
|
|
3594
3801
|
name = "unicode-xid"
|
|
@@ -3616,9 +3823,9 @@ checksum = "06abde3611657adf66d383f00b093d7faecc7fa57071cce2578660c9f1010821"
|
|
|
3616
3823
|
|
|
3617
3824
|
[[package]]
|
|
3618
3825
|
name = "uuid"
|
|
3619
|
-
version = "1.
|
|
3826
|
+
version = "1.12.0"
|
|
3620
3827
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3621
|
-
checksum = "
|
|
3828
|
+
checksum = "744018581f9a3454a9e15beb8a33b017183f1e7c0cd170232a2d1453b23a51c4"
|
|
3622
3829
|
dependencies = [
|
|
3623
3830
|
"getrandom",
|
|
3624
3831
|
]
|
|
@@ -3644,6 +3851,15 @@ dependencies = [
|
|
|
3644
3851
|
"utf8parse",
|
|
3645
3852
|
]
|
|
3646
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
|
+
|
|
3647
3863
|
[[package]]
|
|
3648
3864
|
name = "walkdir"
|
|
3649
3865
|
version = "2.5.0"
|
|
@@ -3656,9 +3872,9 @@ dependencies = [
|
|
|
3656
3872
|
|
|
3657
3873
|
[[package]]
|
|
3658
3874
|
name = "walrus"
|
|
3659
|
-
version = "0.23.
|
|
3875
|
+
version = "0.23.3"
|
|
3660
3876
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3661
|
-
checksum = "
|
|
3877
|
+
checksum = "6481311b98508f4bc2d0abbfa5d42172e7a54b4b24d8f15e28b0dc650be0c59f"
|
|
3662
3878
|
dependencies = [
|
|
3663
3879
|
"anyhow",
|
|
3664
3880
|
"gimli 0.26.2",
|
|
@@ -3679,7 +3895,7 @@ dependencies = [
|
|
|
3679
3895
|
"heck 0.5.0",
|
|
3680
3896
|
"proc-macro2",
|
|
3681
3897
|
"quote",
|
|
3682
|
-
"syn 2.0.
|
|
3898
|
+
"syn 2.0.96",
|
|
3683
3899
|
]
|
|
3684
3900
|
|
|
3685
3901
|
[[package]]
|
|
@@ -3690,35 +3906,35 @@ checksum = "9c8d87e72b64a3b4db28d11ce29237c246188f4f51057d65a7eab63b7987e423"
|
|
|
3690
3906
|
|
|
3691
3907
|
[[package]]
|
|
3692
3908
|
name = "wasm-bindgen"
|
|
3693
|
-
version = "0.2.
|
|
3909
|
+
version = "0.2.100"
|
|
3694
3910
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3695
|
-
checksum = "
|
|
3911
|
+
checksum = "1edc8929d7499fc4e8f0be2262a241556cfc54a0bea223790e71446f2aab1ef5"
|
|
3696
3912
|
dependencies = [
|
|
3697
3913
|
"cfg-if",
|
|
3698
3914
|
"once_cell",
|
|
3915
|
+
"rustversion",
|
|
3699
3916
|
"wasm-bindgen-macro",
|
|
3700
3917
|
]
|
|
3701
3918
|
|
|
3702
3919
|
[[package]]
|
|
3703
3920
|
name = "wasm-bindgen-backend"
|
|
3704
|
-
version = "0.2.
|
|
3921
|
+
version = "0.2.100"
|
|
3705
3922
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3706
|
-
checksum = "
|
|
3923
|
+
checksum = "2f0a0651a5c2bc21487bde11ee802ccaf4c51935d0d3d42a6101f98161700bc6"
|
|
3707
3924
|
dependencies = [
|
|
3708
3925
|
"bumpalo",
|
|
3709
3926
|
"log",
|
|
3710
|
-
"once_cell",
|
|
3711
3927
|
"proc-macro2",
|
|
3712
3928
|
"quote",
|
|
3713
|
-
"syn 2.0.
|
|
3929
|
+
"syn 2.0.96",
|
|
3714
3930
|
"wasm-bindgen-shared",
|
|
3715
3931
|
]
|
|
3716
3932
|
|
|
3717
3933
|
[[package]]
|
|
3718
3934
|
name = "wasm-bindgen-macro"
|
|
3719
|
-
version = "0.2.
|
|
3935
|
+
version = "0.2.100"
|
|
3720
3936
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3721
|
-
checksum = "
|
|
3937
|
+
checksum = "7fe63fc6d09ed3792bd0897b314f53de8e16568c2b3f7982f468c0bf9bd0b407"
|
|
3722
3938
|
dependencies = [
|
|
3723
3939
|
"quote",
|
|
3724
3940
|
"wasm-bindgen-macro-support",
|
|
@@ -3726,22 +3942,25 @@ dependencies = [
|
|
|
3726
3942
|
|
|
3727
3943
|
[[package]]
|
|
3728
3944
|
name = "wasm-bindgen-macro-support"
|
|
3729
|
-
version = "0.2.
|
|
3945
|
+
version = "0.2.100"
|
|
3730
3946
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3731
|
-
checksum = "
|
|
3947
|
+
checksum = "8ae87ea40c9f689fc23f209965b6fb8a99ad69aeeb0231408be24920604395de"
|
|
3732
3948
|
dependencies = [
|
|
3733
3949
|
"proc-macro2",
|
|
3734
3950
|
"quote",
|
|
3735
|
-
"syn 2.0.
|
|
3951
|
+
"syn 2.0.96",
|
|
3736
3952
|
"wasm-bindgen-backend",
|
|
3737
3953
|
"wasm-bindgen-shared",
|
|
3738
3954
|
]
|
|
3739
3955
|
|
|
3740
3956
|
[[package]]
|
|
3741
3957
|
name = "wasm-bindgen-shared"
|
|
3742
|
-
version = "0.2.
|
|
3958
|
+
version = "0.2.100"
|
|
3743
3959
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3744
|
-
checksum = "
|
|
3960
|
+
checksum = "1a05d73b933a847d6cccdda8f838a22ff101ad9bf93e33684f39c1f5f0eece3d"
|
|
3961
|
+
dependencies = [
|
|
3962
|
+
"unicode-ident",
|
|
3963
|
+
]
|
|
3745
3964
|
|
|
3746
3965
|
[[package]]
|
|
3747
3966
|
name = "wasm-encoder"
|
|
@@ -3754,11 +3973,12 @@ dependencies = [
|
|
|
3754
3973
|
|
|
3755
3974
|
[[package]]
|
|
3756
3975
|
name = "wasm-encoder"
|
|
3757
|
-
version = "0.
|
|
3976
|
+
version = "0.221.2"
|
|
3758
3977
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3759
|
-
checksum = "
|
|
3978
|
+
checksum = "c17a3bd88f2155da63a1f2fcb8a56377a24f0b6dfed12733bb5f544e86f690c5"
|
|
3760
3979
|
dependencies = [
|
|
3761
3980
|
"leb128",
|
|
3981
|
+
"wasmparser 0.221.2",
|
|
3762
3982
|
]
|
|
3763
3983
|
|
|
3764
3984
|
[[package]]
|
|
@@ -3768,53 +3988,51 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
3768
3988
|
checksum = "5309c1090e3e84dad0d382f42064e9933fdaedb87e468cc239f0eabea73ddcb6"
|
|
3769
3989
|
dependencies = [
|
|
3770
3990
|
"ahash",
|
|
3771
|
-
"bitflags 2.
|
|
3991
|
+
"bitflags 2.8.0",
|
|
3772
3992
|
"hashbrown 0.14.5",
|
|
3773
|
-
"indexmap 2.
|
|
3774
|
-
"semver 1.0.
|
|
3993
|
+
"indexmap 2.7.0",
|
|
3994
|
+
"semver 1.0.24",
|
|
3775
3995
|
"serde",
|
|
3776
3996
|
]
|
|
3777
3997
|
|
|
3778
3998
|
[[package]]
|
|
3779
3999
|
name = "wasmparser"
|
|
3780
|
-
version = "0.
|
|
4000
|
+
version = "0.221.2"
|
|
3781
4001
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3782
|
-
checksum = "
|
|
4002
|
+
checksum = "9845c470a2e10b61dd42c385839cdd6496363ed63b5c9e420b5488b77bd22083"
|
|
3783
4003
|
dependencies = [
|
|
3784
|
-
"
|
|
3785
|
-
"
|
|
3786
|
-
"
|
|
3787
|
-
"
|
|
3788
|
-
"semver 1.0.23",
|
|
4004
|
+
"bitflags 2.8.0",
|
|
4005
|
+
"hashbrown 0.15.2",
|
|
4006
|
+
"indexmap 2.7.0",
|
|
4007
|
+
"semver 1.0.24",
|
|
3789
4008
|
"serde",
|
|
3790
4009
|
]
|
|
3791
4010
|
|
|
3792
4011
|
[[package]]
|
|
3793
4012
|
name = "wasmprinter"
|
|
3794
|
-
version = "0.
|
|
4013
|
+
version = "0.221.2"
|
|
3795
4014
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3796
|
-
checksum = "
|
|
4015
|
+
checksum = "a80742ff1b9e6d8c231ac7c7247782c6fc5bce503af760bca071811e5fc9ee56"
|
|
3797
4016
|
dependencies = [
|
|
3798
4017
|
"anyhow",
|
|
3799
4018
|
"termcolor",
|
|
3800
|
-
"wasmparser 0.
|
|
4019
|
+
"wasmparser 0.221.2",
|
|
3801
4020
|
]
|
|
3802
4021
|
|
|
3803
4022
|
[[package]]
|
|
3804
4023
|
name = "wasmtime"
|
|
3805
|
-
version = "
|
|
4024
|
+
version = "29.0.1"
|
|
3806
4025
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3807
|
-
checksum = "
|
|
4026
|
+
checksum = "11976a250672556d1c4c04c6d5d7656ac9192ac9edc42a4587d6c21460010e69"
|
|
3808
4027
|
dependencies = [
|
|
3809
4028
|
"anyhow",
|
|
3810
|
-
"bitflags 2.
|
|
4029
|
+
"bitflags 2.8.0",
|
|
3811
4030
|
"bumpalo",
|
|
3812
4031
|
"cc",
|
|
3813
4032
|
"cfg-if",
|
|
3814
4033
|
"hashbrown 0.14.5",
|
|
3815
|
-
"indexmap 2.
|
|
4034
|
+
"indexmap 2.7.0",
|
|
3816
4035
|
"libc",
|
|
3817
|
-
"libm",
|
|
3818
4036
|
"log",
|
|
3819
4037
|
"mach2",
|
|
3820
4038
|
"memfd",
|
|
@@ -3830,13 +4048,15 @@ dependencies = [
|
|
|
3830
4048
|
"serde_derive",
|
|
3831
4049
|
"smallvec",
|
|
3832
4050
|
"sptr",
|
|
3833
|
-
"target-lexicon",
|
|
3834
|
-
"wasmparser 0.
|
|
4051
|
+
"target-lexicon 0.13.1",
|
|
4052
|
+
"wasmparser 0.221.2",
|
|
3835
4053
|
"wasmtime-asm-macros",
|
|
3836
4054
|
"wasmtime-component-macro",
|
|
3837
4055
|
"wasmtime-cranelift",
|
|
3838
4056
|
"wasmtime-environ",
|
|
4057
|
+
"wasmtime-fiber",
|
|
3839
4058
|
"wasmtime-jit-icache-coherence",
|
|
4059
|
+
"wasmtime-math",
|
|
3840
4060
|
"wasmtime-slab",
|
|
3841
4061
|
"wasmtime-versioned-export-macros",
|
|
3842
4062
|
"windows-sys 0.59.0",
|
|
@@ -3844,23 +4064,23 @@ dependencies = [
|
|
|
3844
4064
|
|
|
3845
4065
|
[[package]]
|
|
3846
4066
|
name = "wasmtime-asm-macros"
|
|
3847
|
-
version = "
|
|
4067
|
+
version = "29.0.1"
|
|
3848
4068
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3849
|
-
checksum = "
|
|
4069
|
+
checksum = "1f178b0d125201fbe9f75beaf849bd3e511891f9e45ba216a5b620802ccf64f2"
|
|
3850
4070
|
dependencies = [
|
|
3851
4071
|
"cfg-if",
|
|
3852
4072
|
]
|
|
3853
4073
|
|
|
3854
4074
|
[[package]]
|
|
3855
4075
|
name = "wasmtime-component-macro"
|
|
3856
|
-
version = "
|
|
4076
|
+
version = "29.0.1"
|
|
3857
4077
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3858
|
-
checksum = "
|
|
4078
|
+
checksum = "d74de6592ed945d0a602f71243982a304d5d02f1e501b638addf57f42d57dfaf"
|
|
3859
4079
|
dependencies = [
|
|
3860
4080
|
"anyhow",
|
|
3861
4081
|
"proc-macro2",
|
|
3862
4082
|
"quote",
|
|
3863
|
-
"syn 2.0.
|
|
4083
|
+
"syn 2.0.96",
|
|
3864
4084
|
"wasmtime-component-util",
|
|
3865
4085
|
"wasmtime-wit-bindgen",
|
|
3866
4086
|
"wit-parser",
|
|
@@ -3868,15 +4088,15 @@ dependencies = [
|
|
|
3868
4088
|
|
|
3869
4089
|
[[package]]
|
|
3870
4090
|
name = "wasmtime-component-util"
|
|
3871
|
-
version = "
|
|
4091
|
+
version = "29.0.1"
|
|
3872
4092
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3873
|
-
checksum = "
|
|
4093
|
+
checksum = "707dc7b3c112ab5a366b30cfe2fb5b2f8e6a0f682f16df96a5ec582bfe6f056e"
|
|
3874
4094
|
|
|
3875
4095
|
[[package]]
|
|
3876
4096
|
name = "wasmtime-cranelift"
|
|
3877
|
-
version = "
|
|
4097
|
+
version = "29.0.1"
|
|
3878
4098
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3879
|
-
checksum = "
|
|
4099
|
+
checksum = "366be722674d4bf153290fbcbc4d7d16895cc82fb3e869f8d550ff768f9e9e87"
|
|
3880
4100
|
dependencies = [
|
|
3881
4101
|
"anyhow",
|
|
3882
4102
|
"cfg-if",
|
|
@@ -3890,41 +4110,56 @@ dependencies = [
|
|
|
3890
4110
|
"log",
|
|
3891
4111
|
"object",
|
|
3892
4112
|
"smallvec",
|
|
3893
|
-
"target-lexicon",
|
|
4113
|
+
"target-lexicon 0.13.1",
|
|
3894
4114
|
"thiserror 1.0.69",
|
|
3895
|
-
"wasmparser 0.
|
|
4115
|
+
"wasmparser 0.221.2",
|
|
3896
4116
|
"wasmtime-environ",
|
|
3897
4117
|
"wasmtime-versioned-export-macros",
|
|
3898
4118
|
]
|
|
3899
4119
|
|
|
3900
4120
|
[[package]]
|
|
3901
4121
|
name = "wasmtime-environ"
|
|
3902
|
-
version = "
|
|
4122
|
+
version = "29.0.1"
|
|
3903
4123
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3904
|
-
checksum = "
|
|
4124
|
+
checksum = "cdadc1af7097347aa276a4f008929810f726b5b46946971c660b6d421e9994ad"
|
|
3905
4125
|
dependencies = [
|
|
3906
4126
|
"anyhow",
|
|
3907
4127
|
"cranelift-bitset",
|
|
3908
4128
|
"cranelift-entity",
|
|
3909
4129
|
"gimli 0.31.1",
|
|
3910
|
-
"indexmap 2.
|
|
4130
|
+
"indexmap 2.7.0",
|
|
3911
4131
|
"log",
|
|
3912
4132
|
"object",
|
|
3913
4133
|
"postcard",
|
|
3914
4134
|
"serde",
|
|
3915
4135
|
"serde_derive",
|
|
3916
4136
|
"smallvec",
|
|
3917
|
-
"target-lexicon",
|
|
3918
|
-
"wasm-encoder 0.
|
|
3919
|
-
"wasmparser 0.
|
|
4137
|
+
"target-lexicon 0.13.1",
|
|
4138
|
+
"wasm-encoder 0.221.2",
|
|
4139
|
+
"wasmparser 0.221.2",
|
|
3920
4140
|
"wasmprinter",
|
|
3921
4141
|
]
|
|
3922
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
|
+
|
|
3923
4158
|
[[package]]
|
|
3924
4159
|
name = "wasmtime-jit-icache-coherence"
|
|
3925
|
-
version = "
|
|
4160
|
+
version = "29.0.1"
|
|
3926
4161
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3927
|
-
checksum = "
|
|
4162
|
+
checksum = "ec5e8552e01692e6c2e5293171704fed8abdec79d1a6995a0870ab190e5747d1"
|
|
3928
4163
|
dependencies = [
|
|
3929
4164
|
"anyhow",
|
|
3930
4165
|
"cfg-if",
|
|
@@ -3932,40 +4167,49 @@ dependencies = [
|
|
|
3932
4167
|
"windows-sys 0.59.0",
|
|
3933
4168
|
]
|
|
3934
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
|
+
|
|
3935
4179
|
[[package]]
|
|
3936
4180
|
name = "wasmtime-slab"
|
|
3937
|
-
version = "
|
|
4181
|
+
version = "29.0.1"
|
|
3938
4182
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3939
|
-
checksum = "
|
|
4183
|
+
checksum = "fcb5821a96fa04ac14bc7b158bb3d5cd7729a053db5a74dad396cd513a5e5ccf"
|
|
3940
4184
|
|
|
3941
4185
|
[[package]]
|
|
3942
4186
|
name = "wasmtime-versioned-export-macros"
|
|
3943
|
-
version = "
|
|
4187
|
+
version = "29.0.1"
|
|
3944
4188
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3945
|
-
checksum = "
|
|
4189
|
+
checksum = "86ff86db216dc0240462de40c8290887a613dddf9685508eb39479037ba97b5b"
|
|
3946
4190
|
dependencies = [
|
|
3947
4191
|
"proc-macro2",
|
|
3948
4192
|
"quote",
|
|
3949
|
-
"syn 2.0.
|
|
4193
|
+
"syn 2.0.96",
|
|
3950
4194
|
]
|
|
3951
4195
|
|
|
3952
4196
|
[[package]]
|
|
3953
4197
|
name = "wasmtime-wit-bindgen"
|
|
3954
|
-
version = "
|
|
4198
|
+
version = "29.0.1"
|
|
3955
4199
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3956
|
-
checksum = "
|
|
4200
|
+
checksum = "8358319c2dd1e4db79e3c1c5d3a5af84956615343f9f89f4e4996a36816e06e6"
|
|
3957
4201
|
dependencies = [
|
|
3958
4202
|
"anyhow",
|
|
3959
4203
|
"heck 0.5.0",
|
|
3960
|
-
"indexmap 2.
|
|
4204
|
+
"indexmap 2.7.0",
|
|
3961
4205
|
"wit-parser",
|
|
3962
4206
|
]
|
|
3963
4207
|
|
|
3964
4208
|
[[package]]
|
|
3965
4209
|
name = "web-sys"
|
|
3966
|
-
version = "0.3.
|
|
4210
|
+
version = "0.3.77"
|
|
3967
4211
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3968
|
-
checksum = "
|
|
4212
|
+
checksum = "33b6dd2ef9186f1f2072e409e99cd22a975331a6b3591b12c764e0e55c60d5d2"
|
|
3969
4213
|
dependencies = [
|
|
3970
4214
|
"js-sys",
|
|
3971
4215
|
"wasm-bindgen",
|
|
@@ -4013,7 +4257,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
4013
4257
|
checksum = "dfb128bacfa86734e07681fb6068e34c144698e84ee022d6e009145d1abb77b5"
|
|
4014
4258
|
dependencies = [
|
|
4015
4259
|
"log",
|
|
4016
|
-
"ordered-float 4.
|
|
4260
|
+
"ordered-float 4.6.0",
|
|
4017
4261
|
"strsim 0.10.0",
|
|
4018
4262
|
"thiserror 1.0.69",
|
|
4019
4263
|
"wezterm-dynamic-derive",
|
|
@@ -4298,29 +4542,29 @@ checksum = "589f6da84c646204747d1270a2a5661ea66ed1cced2631d546fdfb155959f9ec"
|
|
|
4298
4542
|
|
|
4299
4543
|
[[package]]
|
|
4300
4544
|
name = "winnow"
|
|
4301
|
-
version = "0.6.
|
|
4545
|
+
version = "0.6.24"
|
|
4302
4546
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4303
|
-
checksum = "
|
|
4547
|
+
checksum = "c8d71a593cc5c42ad7876e2c1fda56f314f3754c084128833e64f1345ff8a03a"
|
|
4304
4548
|
dependencies = [
|
|
4305
4549
|
"memchr",
|
|
4306
4550
|
]
|
|
4307
4551
|
|
|
4308
4552
|
[[package]]
|
|
4309
4553
|
name = "wit-parser"
|
|
4310
|
-
version = "0.
|
|
4554
|
+
version = "0.221.2"
|
|
4311
4555
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4312
|
-
checksum = "
|
|
4556
|
+
checksum = "fbe1538eea6ea5ddbe5defd0dc82539ad7ba751e1631e9185d24a931f0a5adc8"
|
|
4313
4557
|
dependencies = [
|
|
4314
4558
|
"anyhow",
|
|
4315
4559
|
"id-arena",
|
|
4316
|
-
"indexmap 2.
|
|
4560
|
+
"indexmap 2.7.0",
|
|
4317
4561
|
"log",
|
|
4318
|
-
"semver 1.0.
|
|
4562
|
+
"semver 1.0.24",
|
|
4319
4563
|
"serde",
|
|
4320
4564
|
"serde_derive",
|
|
4321
4565
|
"serde_json",
|
|
4322
4566
|
"unicode-xid",
|
|
4323
|
-
"wasmparser 0.
|
|
4567
|
+
"wasmparser 0.221.2",
|
|
4324
4568
|
]
|
|
4325
4569
|
|
|
4326
4570
|
[[package]]
|
|
@@ -4334,9 +4578,9 @@ dependencies = [
|
|
|
4334
4578
|
|
|
4335
4579
|
[[package]]
|
|
4336
4580
|
name = "x509-parser"
|
|
4337
|
-
version = "0.
|
|
4581
|
+
version = "0.17.0"
|
|
4338
4582
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4339
|
-
checksum = "
|
|
4583
|
+
checksum = "4569f339c0c402346d4a75a9e39cf8dad310e287eef1ff56d4c68e5067f53460"
|
|
4340
4584
|
dependencies = [
|
|
4341
4585
|
"asn1-rs",
|
|
4342
4586
|
"data-encoding",
|
|
@@ -4346,7 +4590,7 @@ dependencies = [
|
|
|
4346
4590
|
"oid-registry",
|
|
4347
4591
|
"ring",
|
|
4348
4592
|
"rusticata-macros",
|
|
4349
|
-
"thiserror
|
|
4593
|
+
"thiserror 2.0.11",
|
|
4350
4594
|
"time",
|
|
4351
4595
|
]
|
|
4352
4596
|
|
|
@@ -4358,7 +4602,7 @@ checksum = "cfe53a6657fd280eaa890a3bc59152892ffa3e30101319d168b781ed6529b049"
|
|
|
4358
4602
|
|
|
4359
4603
|
[[package]]
|
|
4360
4604
|
name = "yara-x"
|
|
4361
|
-
version = "0.
|
|
4605
|
+
version = "0.13.0"
|
|
4362
4606
|
dependencies = [
|
|
4363
4607
|
"aho-corasick",
|
|
4364
4608
|
"annotate-snippets",
|
|
@@ -4367,7 +4611,7 @@ dependencies = [
|
|
|
4367
4611
|
"ascii_tree",
|
|
4368
4612
|
"base64 0.22.1",
|
|
4369
4613
|
"bincode",
|
|
4370
|
-
"
|
|
4614
|
+
"bitflags 2.8.0",
|
|
4371
4615
|
"bitvec",
|
|
4372
4616
|
"bstr",
|
|
4373
4617
|
"const-oid",
|
|
@@ -4380,9 +4624,9 @@ dependencies = [
|
|
|
4380
4624
|
"globwalk",
|
|
4381
4625
|
"goldenfile",
|
|
4382
4626
|
"ihex",
|
|
4383
|
-
"indexmap 2.
|
|
4627
|
+
"indexmap 2.7.0",
|
|
4384
4628
|
"intaglio",
|
|
4385
|
-
"itertools 0.
|
|
4629
|
+
"itertools 0.14.0",
|
|
4386
4630
|
"lazy_static",
|
|
4387
4631
|
"lingua",
|
|
4388
4632
|
"linkme",
|
|
@@ -4403,17 +4647,19 @@ dependencies = [
|
|
|
4403
4647
|
"protobuf-parse",
|
|
4404
4648
|
"quanta",
|
|
4405
4649
|
"rayon",
|
|
4650
|
+
"regex",
|
|
4406
4651
|
"regex-automata",
|
|
4407
4652
|
"regex-syntax 0.8.5",
|
|
4408
4653
|
"roxmltree",
|
|
4409
4654
|
"rsa",
|
|
4410
|
-
"rustc-hash 2.
|
|
4655
|
+
"rustc-hash 2.1.0",
|
|
4411
4656
|
"serde",
|
|
4412
4657
|
"serde_json",
|
|
4413
4658
|
"sha1",
|
|
4414
4659
|
"sha2 0.10.8",
|
|
4415
4660
|
"smallvec",
|
|
4416
|
-
"
|
|
4661
|
+
"strum_macros 0.26.4",
|
|
4662
|
+
"thiserror 2.0.11",
|
|
4417
4663
|
"tlsh-fixed",
|
|
4418
4664
|
"uuid",
|
|
4419
4665
|
"walrus",
|
|
@@ -4429,7 +4675,7 @@ dependencies = [
|
|
|
4429
4675
|
|
|
4430
4676
|
[[package]]
|
|
4431
4677
|
name = "yara-x-capi"
|
|
4432
|
-
version = "0.
|
|
4678
|
+
version = "0.13.0"
|
|
4433
4679
|
dependencies = [
|
|
4434
4680
|
"cbindgen",
|
|
4435
4681
|
"serde_json",
|
|
@@ -4438,10 +4684,12 @@ dependencies = [
|
|
|
4438
4684
|
|
|
4439
4685
|
[[package]]
|
|
4440
4686
|
name = "yara-x-cli"
|
|
4441
|
-
version = "0.
|
|
4687
|
+
version = "0.13.0"
|
|
4442
4688
|
dependencies = [
|
|
4443
4689
|
"anyhow",
|
|
4444
4690
|
"ascii_tree",
|
|
4691
|
+
"assert_cmd",
|
|
4692
|
+
"assert_fs",
|
|
4445
4693
|
"chardetng",
|
|
4446
4694
|
"clap",
|
|
4447
4695
|
"clap_complete",
|
|
@@ -4454,12 +4702,14 @@ dependencies = [
|
|
|
4454
4702
|
"figment",
|
|
4455
4703
|
"globwalk",
|
|
4456
4704
|
"home",
|
|
4457
|
-
"itertools 0.
|
|
4705
|
+
"itertools 0.14.0",
|
|
4458
4706
|
"log",
|
|
4707
|
+
"predicates",
|
|
4459
4708
|
"protobuf",
|
|
4460
4709
|
"protobuf-json-mapping",
|
|
4461
4710
|
"serde",
|
|
4462
4711
|
"serde_json",
|
|
4712
|
+
"strum 0.26.3",
|
|
4463
4713
|
"strum_macros 0.26.4",
|
|
4464
4714
|
"superconsole",
|
|
4465
4715
|
"wild",
|
|
@@ -4472,56 +4722,56 @@ dependencies = [
|
|
|
4472
4722
|
|
|
4473
4723
|
[[package]]
|
|
4474
4724
|
name = "yara-x-fmt"
|
|
4475
|
-
version = "0.
|
|
4725
|
+
version = "0.13.0"
|
|
4476
4726
|
dependencies = [
|
|
4477
|
-
"
|
|
4727
|
+
"bitflags 2.8.0",
|
|
4478
4728
|
"bstr",
|
|
4479
4729
|
"globwalk",
|
|
4480
4730
|
"goldenfile",
|
|
4481
4731
|
"lazy_static",
|
|
4482
4732
|
"pretty_assertions",
|
|
4483
4733
|
"rayon",
|
|
4484
|
-
"thiserror 2.0.
|
|
4734
|
+
"thiserror 2.0.11",
|
|
4485
4735
|
"yara-x-parser",
|
|
4486
4736
|
]
|
|
4487
4737
|
|
|
4488
4738
|
[[package]]
|
|
4489
4739
|
name = "yara-x-macros"
|
|
4490
|
-
version = "0.
|
|
4740
|
+
version = "0.13.0"
|
|
4491
4741
|
dependencies = [
|
|
4492
4742
|
"darling",
|
|
4493
4743
|
"proc-macro2",
|
|
4494
4744
|
"quote",
|
|
4495
|
-
"syn 2.0.
|
|
4745
|
+
"syn 2.0.96",
|
|
4496
4746
|
]
|
|
4497
4747
|
|
|
4498
4748
|
[[package]]
|
|
4499
4749
|
name = "yara-x-parser"
|
|
4500
|
-
version = "0.
|
|
4750
|
+
version = "0.13.0"
|
|
4501
4751
|
dependencies = [
|
|
4502
4752
|
"anyhow",
|
|
4503
4753
|
"ascii_tree",
|
|
4504
|
-
"
|
|
4754
|
+
"bitflags 2.8.0",
|
|
4505
4755
|
"bstr",
|
|
4506
4756
|
"env_logger",
|
|
4507
4757
|
"globwalk",
|
|
4508
4758
|
"goldenfile",
|
|
4509
|
-
"indexmap 2.
|
|
4510
|
-
"itertools 0.
|
|
4759
|
+
"indexmap 2.7.0",
|
|
4760
|
+
"itertools 0.14.0",
|
|
4511
4761
|
"log",
|
|
4512
4762
|
"logos",
|
|
4513
4763
|
"num-traits",
|
|
4514
4764
|
"pretty_assertions",
|
|
4515
4765
|
"rayon",
|
|
4516
4766
|
"rowan",
|
|
4517
|
-
"rustc-hash 2.
|
|
4767
|
+
"rustc-hash 2.1.0",
|
|
4518
4768
|
"serde",
|
|
4519
4769
|
"yansi",
|
|
4520
4770
|
]
|
|
4521
4771
|
|
|
4522
4772
|
[[package]]
|
|
4523
4773
|
name = "yara-x-proto"
|
|
4524
|
-
version = "0.
|
|
4774
|
+
version = "0.13.0"
|
|
4525
4775
|
dependencies = [
|
|
4526
4776
|
"protobuf",
|
|
4527
4777
|
"protobuf-codegen",
|
|
@@ -4530,12 +4780,12 @@ dependencies = [
|
|
|
4530
4780
|
|
|
4531
4781
|
[[package]]
|
|
4532
4782
|
name = "yara-x-proto-yaml"
|
|
4533
|
-
version = "0.
|
|
4783
|
+
version = "0.13.0"
|
|
4534
4784
|
dependencies = [
|
|
4535
4785
|
"chrono",
|
|
4536
4786
|
"globwalk",
|
|
4537
4787
|
"goldenfile",
|
|
4538
|
-
"itertools 0.
|
|
4788
|
+
"itertools 0.14.0",
|
|
4539
4789
|
"protobuf",
|
|
4540
4790
|
"protobuf-codegen",
|
|
4541
4791
|
"protobuf-parse",
|
|
@@ -4545,7 +4795,7 @@ dependencies = [
|
|
|
4545
4795
|
|
|
4546
4796
|
[[package]]
|
|
4547
4797
|
name = "yara-x-py"
|
|
4548
|
-
version = "0.
|
|
4798
|
+
version = "0.13.0"
|
|
4549
4799
|
dependencies = [
|
|
4550
4800
|
"protobuf-json-mapping",
|
|
4551
4801
|
"pyo3",
|
|
@@ -4553,6 +4803,7 @@ dependencies = [
|
|
|
4553
4803
|
"pyo3-file",
|
|
4554
4804
|
"serde_json",
|
|
4555
4805
|
"yara-x",
|
|
4806
|
+
"yara-x-fmt",
|
|
4556
4807
|
]
|
|
4557
4808
|
|
|
4558
4809
|
[[package]]
|
|
@@ -4573,7 +4824,7 @@ checksum = "fa4f8080344d4671fb4e831a13ad1e68092748387dfc4f55e356242fae12ce3e"
|
|
|
4573
4824
|
dependencies = [
|
|
4574
4825
|
"proc-macro2",
|
|
4575
4826
|
"quote",
|
|
4576
|
-
"syn 2.0.
|
|
4827
|
+
"syn 2.0.96",
|
|
4577
4828
|
]
|
|
4578
4829
|
|
|
4579
4830
|
[[package]]
|
|
@@ -4593,14 +4844,14 @@ checksum = "ce36e65b0d2999d2aafac989fb249189a141aee1f53c612c1f37d72631959f69"
|
|
|
4593
4844
|
dependencies = [
|
|
4594
4845
|
"proc-macro2",
|
|
4595
4846
|
"quote",
|
|
4596
|
-
"syn 2.0.
|
|
4847
|
+
"syn 2.0.96",
|
|
4597
4848
|
]
|
|
4598
4849
|
|
|
4599
4850
|
[[package]]
|
|
4600
4851
|
name = "zip"
|
|
4601
|
-
version = "2.2.
|
|
4852
|
+
version = "2.2.2"
|
|
4602
4853
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4603
|
-
checksum = "
|
|
4854
|
+
checksum = "ae9c1ea7b3a5e1f4b922ff856a129881167511563dc219869afe3787fc0c1a45"
|
|
4604
4855
|
dependencies = [
|
|
4605
4856
|
"aes",
|
|
4606
4857
|
"arbitrary",
|
|
@@ -4612,13 +4863,13 @@ dependencies = [
|
|
|
4612
4863
|
"displaydoc",
|
|
4613
4864
|
"flate2",
|
|
4614
4865
|
"hmac",
|
|
4615
|
-
"indexmap 2.
|
|
4866
|
+
"indexmap 2.7.0",
|
|
4616
4867
|
"lzma-rs",
|
|
4617
4868
|
"memchr",
|
|
4618
4869
|
"pbkdf2",
|
|
4619
4870
|
"rand",
|
|
4620
4871
|
"sha1",
|
|
4621
|
-
"thiserror 2.0.
|
|
4872
|
+
"thiserror 2.0.11",
|
|
4622
4873
|
"time",
|
|
4623
4874
|
"zeroize",
|
|
4624
4875
|
"zopfli",
|