yara-x 0.15.0__tar.gz → 1.0.1__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.15.0 → yara_x-1.0.1}/Cargo.lock +337 -323
- {yara_x-0.15.0 → yara_x-1.0.1}/Cargo.toml +13 -15
- {yara_x-0.15.0 → yara_x-1.0.1}/PKG-INFO +1 -1
- {yara_x-0.15.0 → yara_x-1.0.1}/fmt/Cargo.toml +0 -1
- {yara_x-0.15.0 → yara_x-1.0.1}/fmt/README.md +6 -12
- {yara_x-0.15.0 → yara_x-1.0.1}/fmt/src/tokens/mod.rs +95 -113
- {yara_x-0.15.0 → yara_x-1.0.1}/lib/Cargo.toml +1 -2
- {yara_x-0.15.0/proto-yaml → yara_x-1.0.1/lib}/README.md +6 -12
- {yara_x-0.15.0 → yara_x-1.0.1}/lib/src/compiler/context.rs +4 -0
- {yara_x-0.15.0 → yara_x-1.0.1}/lib/src/compiler/emit.rs +14 -13
- {yara_x-0.15.0 → yara_x-1.0.1}/lib/src/compiler/errors.rs +7 -4
- {yara_x-0.15.0 → yara_x-1.0.1}/lib/src/compiler/ir/ast2ir.rs +130 -28
- {yara_x-0.15.0 → yara_x-1.0.1}/lib/src/compiler/ir/hex2hir.rs +1 -0
- {yara_x-0.15.0 → yara_x-1.0.1}/lib/src/compiler/ir/mod.rs +44 -390
- {yara_x-0.15.0 → yara_x-1.0.1}/lib/src/compiler/ir/tests/mod.rs +3 -22
- yara_x-0.15.0/lib/src/compiler/ir/tests/testdata/1.cse.ir → yara_x-1.0.1/lib/src/compiler/ir/tests/testdata/1.ir +10 -10
- yara_x-1.0.1/lib/src/compiler/ir/tests/testdata/2.no-folding.ir +45 -0
- yara_x-1.0.1/lib/src/compiler/ir/tests/testdata/3.cse.ir +13 -0
- yara_x-1.0.1/lib/src/compiler/ir/tests/testdata/3.hoisting.ir +13 -0
- yara_x-1.0.1/lib/src/compiler/ir/tests/testdata/3.ir +13 -0
- yara_x-1.0.1/lib/src/compiler/ir/tests/testdata/3.no-folding.ir +13 -0
- yara_x-1.0.1/lib/src/compiler/ir/tests/testdata/4.cse.ir +53 -0
- yara_x-1.0.1/lib/src/compiler/ir/tests/testdata/4.hoisting.ir +83 -0
- {yara_x-0.15.0 → yara_x-1.0.1}/lib/src/compiler/ir/tests/testdata/4.in +4 -1
- {yara_x-0.15.0 → yara_x-1.0.1}/lib/src/compiler/ir/tests/testdata/4.ir +17 -6
- {yara_x-0.15.0 → yara_x-1.0.1}/lib/src/compiler/ir/tests/testdata/4.no-folding.ir +17 -6
- yara_x-1.0.1/lib/src/compiler/ir/tests/testdata/5.no-folding.ir +110 -0
- yara_x-1.0.1/lib/src/compiler/ir/tests/testdata/6.no-folding.ir +22 -0
- yara_x-1.0.1/lib/src/compiler/ir/tests/testdata/7.no-folding.ir +46 -0
- yara_x-1.0.1/lib/src/compiler/ir/tests/testdata/8.cse.ir +30 -0
- yara_x-1.0.1/lib/src/compiler/ir/tests/testdata/8.hoisting.ir +32 -0
- {yara_x-0.15.0 → yara_x-1.0.1}/lib/src/compiler/ir/tests/testdata/8.in +1 -1
- yara_x-1.0.1/lib/src/compiler/ir/tests/testdata/8.ir +30 -0
- yara_x-1.0.1/lib/src/compiler/ir/tests/testdata/8.no-folding.ir +30 -0
- {yara_x-0.15.0 → yara_x-1.0.1}/lib/src/compiler/linters.rs +1 -2
- {yara_x-0.15.0 → yara_x-1.0.1}/lib/src/compiler/mod.rs +31 -47
- {yara_x-0.15.0 → yara_x-1.0.1}/lib/src/compiler/report.rs +2 -2
- {yara_x-0.15.0 → yara_x-1.0.1}/lib/src/compiler/rules.rs +19 -11
- {yara_x-0.15.0 → yara_x-1.0.1}/lib/src/compiler/tests/mod.rs +1 -1
- yara_x-1.0.1/lib/src/compiler/tests/testdata/warnings/36.in +95 -0
- yara_x-1.0.1/lib/src/compiler/tests/testdata/warnings/36.out +56 -0
- yara_x-1.0.1/lib/src/compiler/tests/testdata/warnings/37.in +6 -0
- yara_x-1.0.1/lib/src/compiler/tests/testdata/warnings/37.out +34 -0
- yara_x-1.0.1/lib/src/compiler/tests/testdata/warnings/38.in +8 -0
- yara_x-1.0.1/lib/src/compiler/tests/testdata/warnings/38.out +9 -0
- {yara_x-0.15.0 → yara_x-1.0.1}/lib/src/compiler/warnings.rs +78 -5
- {yara_x-0.15.0 → yara_x-1.0.1}/lib/src/modules/dotnet/parser.rs +10 -7
- {yara_x-0.15.0 → yara_x-1.0.1}/lib/src/modules/elf/mod.rs +7 -8
- {yara_x-0.15.0 → yara_x-1.0.1}/lib/src/modules/hash/mod.rs +33 -18
- {yara_x-0.15.0 → yara_x-1.0.1}/lib/src/modules/mod.rs +31 -29
- {yara_x-0.15.0 → yara_x-1.0.1}/lib/src/modules/protos/dotnet.proto +5 -6
- {yara_x-0.15.0 → yara_x-1.0.1}/lib/src/modules/protos/elf.proto +1 -2
- {yara_x-0.15.0 → yara_x-1.0.1}/lib/src/modules/protos/macho.proto +20 -21
- {yara_x-0.15.0 → yara_x-1.0.1}/lib/src/modules/protos/pe.proto +48 -49
- {yara_x-0.15.0 → yara_x-1.0.1}/lib/src/modules/protos/test_proto2.proto +4 -2
- {yara_x-0.15.0 → yara_x-1.0.1}/lib/src/modules/protos/vt/titan.proto +6 -6
- {yara_x-0.15.0 → yara_x-1.0.1}/lib/src/modules/protos/vt/vtnet.proto +3 -3
- {yara_x-0.15.0 → yara_x-1.0.1}/lib/src/modules/protos/yara.proto +15 -0
- {yara_x-0.15.0 → yara_x-1.0.1}/lib/src/modules/test_proto2/mod.rs +2 -0
- {yara_x-0.15.0 → yara_x-1.0.1}/lib/src/scanner/mod.rs +2 -2
- {yara_x-0.15.0 → yara_x-1.0.1}/lib/src/string_pool.rs +18 -6
- {yara_x-0.15.0 → yara_x-1.0.1}/lib/src/symbols/mod.rs +4 -4
- {yara_x-0.15.0 → yara_x-1.0.1}/lib/src/types/array.rs +5 -5
- {yara_x-0.15.0 → yara_x-1.0.1}/lib/src/types/func.rs +123 -46
- {yara_x-0.15.0 → yara_x-1.0.1}/lib/src/types/mod.rs +184 -93
- {yara_x-0.15.0 → yara_x-1.0.1}/lib/src/types/structure.rs +67 -67
- {yara_x-0.15.0 → yara_x-1.0.1}/lib/src/variables.rs +6 -6
- {yara_x-0.15.0 → yara_x-1.0.1}/lib/src/wasm/mod.rs +54 -49
- {yara_x-0.15.0 → yara_x-1.0.1}/lib/src/wasm/string.rs +105 -40
- {yara_x-0.15.0 → yara_x-1.0.1}/macros/src/wasm_export.rs +75 -5
- {yara_x-0.15.0 → yara_x-1.0.1}/parser/README.md +6 -12
- {yara_x-0.15.0 → yara_x-1.0.1}/parser/src/ast/cst2ast.rs +1 -1
- {yara_x-0.15.0 → yara_x-1.0.1}/parser/src/ast/mod.rs +2 -1
- yara_x-1.0.1/proto/README.md +69 -0
- yara_x-1.0.1/proto/src/lib.rs +94 -0
- yara_x-1.0.1/proto/src/yara.proto +169 -0
- yara_x-1.0.1/proto-json/Cargo.toml +28 -0
- {yara_x-0.15.0/lib → yara_x-1.0.1/proto-json}/README.md +6 -12
- {yara_x-0.15.0/proto-yaml → yara_x-1.0.1/proto-json}/build.rs +1 -1
- yara_x-1.0.1/proto-json/src/lib.rs +321 -0
- yara_x-1.0.1/proto-json/src/tests/mod.rs +25 -0
- yara_x-1.0.1/proto-json/src/tests/test.proto +38 -0
- yara_x-1.0.1/proto-json/src/tests/testdata/1.in +32 -0
- yara_x-1.0.1/proto-json/src/tests/testdata/1.out +31 -0
- {yara_x-0.15.0/proto → yara_x-1.0.1/proto-json}/src/yara.proto +15 -0
- {yara_x-0.15.0 → yara_x-1.0.1}/proto-yaml/Cargo.toml +1 -2
- yara_x-1.0.1/proto-yaml/README.md +69 -0
- yara_x-1.0.1/proto-yaml/build.rs +13 -0
- {yara_x-0.15.0 → yara_x-1.0.1}/proto-yaml/src/lib.rs +77 -124
- {yara_x-0.15.0 → yara_x-1.0.1}/proto-yaml/src/tests/test.proto +3 -3
- yara_x-1.0.1/proto-yaml/src/yara.proto +169 -0
- {yara_x-0.15.0 → yara_x-1.0.1}/py/Cargo.toml +6 -5
- {yara_x-0.15.0 → yara_x-1.0.1}/py/src/lib.rs +130 -49
- {yara_x-0.15.0 → yara_x-1.0.1}/py/tests/test_api.py +4 -0
- yara_x-0.15.0/lib/src/compiler/ir/tests/testdata/2.cse.ir +0 -43
- yara_x-0.15.0/lib/src/compiler/ir/tests/testdata/3.cse.ir +0 -13
- yara_x-0.15.0/lib/src/compiler/ir/tests/testdata/3.hoisting.ir +0 -13
- yara_x-0.15.0/lib/src/compiler/ir/tests/testdata/3.ir +0 -13
- yara_x-0.15.0/lib/src/compiler/ir/tests/testdata/3.no-folding.ir +0 -13
- yara_x-0.15.0/lib/src/compiler/ir/tests/testdata/4.cse.ir +0 -42
- yara_x-0.15.0/lib/src/compiler/ir/tests/testdata/4.hoisting.ir +0 -64
- yara_x-0.15.0/lib/src/compiler/ir/tests/testdata/5.cse.ir +0 -102
- yara_x-0.15.0/lib/src/compiler/ir/tests/testdata/6.cse.ir +0 -23
- yara_x-0.15.0/lib/src/compiler/ir/tests/testdata/7.cse.ir +0 -42
- yara_x-0.15.0/lib/src/compiler/ir/tests/testdata/8.cse.ir +0 -28
- yara_x-0.15.0/lib/src/compiler/ir/tests/testdata/8.hoisting.ir +0 -30
- yara_x-0.15.0/lib/src/compiler/ir/tests/testdata/8.ir +0 -28
- yara_x-0.15.0/lib/src/compiler/ir/tests/testdata/8.no-folding.ir +0 -28
- yara_x-0.15.0/lib/src/modules/protos/yaml.proto +0 -13
- yara_x-0.15.0/proto/README.md +0 -75
- yara_x-0.15.0/proto/src/lib.rs +0 -3
- yara_x-0.15.0/proto-yaml/src/yaml.proto +0 -13
- {yara_x-0.15.0 → yara_x-1.0.1}/README.md +0 -0
- {yara_x-0.15.0 → yara_x-1.0.1}/fmt/Cargo.lock +0 -0
- {yara_x-0.15.0 → yara_x-1.0.1}/fmt/src/align.rs +0 -0
- {yara_x-0.15.0 → yara_x-1.0.1}/fmt/src/bubble.rs +0 -0
- {yara_x-0.15.0 → yara_x-1.0.1}/fmt/src/comments.rs +0 -0
- {yara_x-0.15.0 → yara_x-1.0.1}/fmt/src/format_hex_patterns.rs +0 -0
- {yara_x-0.15.0 → yara_x-1.0.1}/fmt/src/indentation.rs +0 -0
- {yara_x-0.15.0 → yara_x-1.0.1}/fmt/src/lib.rs +0 -0
- {yara_x-0.15.0 → yara_x-1.0.1}/fmt/src/processor/mod.rs +0 -0
- {yara_x-0.15.0 → yara_x-1.0.1}/fmt/src/processor/tests.rs +0 -0
- {yara_x-0.15.0 → yara_x-1.0.1}/fmt/src/testdata/config_tests/align_metadata_false.formatted +0 -0
- {yara_x-0.15.0 → yara_x-1.0.1}/fmt/src/testdata/config_tests/align_patterns_false.formatted +0 -0
- {yara_x-0.15.0 → yara_x-1.0.1}/fmt/src/testdata/config_tests/align_rule.unformatted +0 -0
- {yara_x-0.15.0 → yara_x-1.0.1}/fmt/src/testdata/config_tests/empty_line_after_section_header_true.formatted +0 -0
- {yara_x-0.15.0 → yara_x-1.0.1}/fmt/src/testdata/config_tests/empty_line_before_section_header_false.formatted +0 -0
- {yara_x-0.15.0 → yara_x-1.0.1}/fmt/src/testdata/config_tests/generic_rule.unformatted +0 -0
- {yara_x-0.15.0 → yara_x-1.0.1}/fmt/src/testdata/config_tests/indent_section_contents_false.formatted +0 -0
- {yara_x-0.15.0 → yara_x-1.0.1}/fmt/src/testdata/config_tests/indent_section_headers_false.formatted +0 -0
- {yara_x-0.15.0 → yara_x-1.0.1}/fmt/src/testdata/config_tests/indent_spaces_one.formatted +0 -0
- {yara_x-0.15.0 → yara_x-1.0.1}/fmt/src/testdata/config_tests/indent_spaces_zero.formatted +0 -0
- {yara_x-0.15.0 → yara_x-1.0.1}/fmt/src/testdata/config_tests/newline_before_curly_brace_true.formatted +0 -0
- {yara_x-0.15.0 → yara_x-1.0.1}/fmt/src/testdata/default_tests/test1.formatted +0 -0
- {yara_x-0.15.0 → yara_x-1.0.1}/fmt/src/testdata/default_tests/test1.unformatted +0 -0
- {yara_x-0.15.0 → yara_x-1.0.1}/fmt/src/testdata/default_tests/test10.formatted +0 -0
- {yara_x-0.15.0 → yara_x-1.0.1}/fmt/src/testdata/default_tests/test10.unformatted +0 -0
- {yara_x-0.15.0 → yara_x-1.0.1}/fmt/src/testdata/default_tests/test11.formatted +0 -0
- {yara_x-0.15.0 → yara_x-1.0.1}/fmt/src/testdata/default_tests/test11.unformatted +0 -0
- {yara_x-0.15.0 → yara_x-1.0.1}/fmt/src/testdata/default_tests/test12.formatted +0 -0
- {yara_x-0.15.0 → yara_x-1.0.1}/fmt/src/testdata/default_tests/test12.unformatted +0 -0
- {yara_x-0.15.0 → yara_x-1.0.1}/fmt/src/testdata/default_tests/test13.formatted +0 -0
- {yara_x-0.15.0 → yara_x-1.0.1}/fmt/src/testdata/default_tests/test13.unformatted +0 -0
- {yara_x-0.15.0 → yara_x-1.0.1}/fmt/src/testdata/default_tests/test14.formatted +0 -0
- {yara_x-0.15.0 → yara_x-1.0.1}/fmt/src/testdata/default_tests/test14.unformatted +0 -0
- {yara_x-0.15.0 → yara_x-1.0.1}/fmt/src/testdata/default_tests/test15.formatted +0 -0
- {yara_x-0.15.0 → yara_x-1.0.1}/fmt/src/testdata/default_tests/test15.unformatted +0 -0
- {yara_x-0.15.0 → yara_x-1.0.1}/fmt/src/testdata/default_tests/test16.formatted +0 -0
- {yara_x-0.15.0 → yara_x-1.0.1}/fmt/src/testdata/default_tests/test16.unformatted +0 -0
- {yara_x-0.15.0 → yara_x-1.0.1}/fmt/src/testdata/default_tests/test17.formatted +0 -0
- {yara_x-0.15.0 → yara_x-1.0.1}/fmt/src/testdata/default_tests/test17.unformatted +0 -0
- {yara_x-0.15.0 → yara_x-1.0.1}/fmt/src/testdata/default_tests/test18.formatted +0 -0
- {yara_x-0.15.0 → yara_x-1.0.1}/fmt/src/testdata/default_tests/test18.unformatted +0 -0
- {yara_x-0.15.0 → yara_x-1.0.1}/fmt/src/testdata/default_tests/test19.formatted +0 -0
- {yara_x-0.15.0 → yara_x-1.0.1}/fmt/src/testdata/default_tests/test19.unformatted +0 -0
- {yara_x-0.15.0 → yara_x-1.0.1}/fmt/src/testdata/default_tests/test2.formatted +0 -0
- {yara_x-0.15.0 → yara_x-1.0.1}/fmt/src/testdata/default_tests/test2.unformatted +0 -0
- {yara_x-0.15.0 → yara_x-1.0.1}/fmt/src/testdata/default_tests/test20.formatted +0 -0
- {yara_x-0.15.0 → yara_x-1.0.1}/fmt/src/testdata/default_tests/test20.unformatted +0 -0
- {yara_x-0.15.0 → yara_x-1.0.1}/fmt/src/testdata/default_tests/test21.formatted +0 -0
- {yara_x-0.15.0 → yara_x-1.0.1}/fmt/src/testdata/default_tests/test21.unformatted +0 -0
- {yara_x-0.15.0 → yara_x-1.0.1}/fmt/src/testdata/default_tests/test22.formatted +0 -0
- {yara_x-0.15.0 → yara_x-1.0.1}/fmt/src/testdata/default_tests/test22.unformatted +0 -0
- {yara_x-0.15.0 → yara_x-1.0.1}/fmt/src/testdata/default_tests/test23.formatted +0 -0
- {yara_x-0.15.0 → yara_x-1.0.1}/fmt/src/testdata/default_tests/test23.unformatted +0 -0
- {yara_x-0.15.0 → yara_x-1.0.1}/fmt/src/testdata/default_tests/test24.formatted +0 -0
- {yara_x-0.15.0 → yara_x-1.0.1}/fmt/src/testdata/default_tests/test24.unformatted +0 -0
- {yara_x-0.15.0 → yara_x-1.0.1}/fmt/src/testdata/default_tests/test25.formatted +0 -0
- {yara_x-0.15.0 → yara_x-1.0.1}/fmt/src/testdata/default_tests/test25.unformatted +0 -0
- {yara_x-0.15.0 → yara_x-1.0.1}/fmt/src/testdata/default_tests/test26.formatted +0 -0
- {yara_x-0.15.0 → yara_x-1.0.1}/fmt/src/testdata/default_tests/test26.unformatted +0 -0
- {yara_x-0.15.0 → yara_x-1.0.1}/fmt/src/testdata/default_tests/test27.formatted +0 -0
- {yara_x-0.15.0 → yara_x-1.0.1}/fmt/src/testdata/default_tests/test27.unformatted +0 -0
- {yara_x-0.15.0 → yara_x-1.0.1}/fmt/src/testdata/default_tests/test28.formatted +0 -0
- {yara_x-0.15.0 → yara_x-1.0.1}/fmt/src/testdata/default_tests/test28.unformatted +0 -0
- {yara_x-0.15.0 → yara_x-1.0.1}/fmt/src/testdata/default_tests/test29.formatted +0 -0
- {yara_x-0.15.0 → yara_x-1.0.1}/fmt/src/testdata/default_tests/test29.unformatted +0 -0
- {yara_x-0.15.0 → yara_x-1.0.1}/fmt/src/testdata/default_tests/test3.formatted +0 -0
- {yara_x-0.15.0 → yara_x-1.0.1}/fmt/src/testdata/default_tests/test3.unformatted +0 -0
- {yara_x-0.15.0 → yara_x-1.0.1}/fmt/src/testdata/default_tests/test30.formatted +0 -0
- {yara_x-0.15.0 → yara_x-1.0.1}/fmt/src/testdata/default_tests/test30.unformatted +0 -0
- {yara_x-0.15.0 → yara_x-1.0.1}/fmt/src/testdata/default_tests/test31.formatted +0 -0
- {yara_x-0.15.0 → yara_x-1.0.1}/fmt/src/testdata/default_tests/test31.unformatted +0 -0
- {yara_x-0.15.0 → yara_x-1.0.1}/fmt/src/testdata/default_tests/test32.formatted +0 -0
- {yara_x-0.15.0 → yara_x-1.0.1}/fmt/src/testdata/default_tests/test32.unformatted +0 -0
- {yara_x-0.15.0 → yara_x-1.0.1}/fmt/src/testdata/default_tests/test33.formatted +0 -0
- {yara_x-0.15.0 → yara_x-1.0.1}/fmt/src/testdata/default_tests/test33.unformatted +0 -0
- {yara_x-0.15.0 → yara_x-1.0.1}/fmt/src/testdata/default_tests/test34.formatted +0 -0
- {yara_x-0.15.0 → yara_x-1.0.1}/fmt/src/testdata/default_tests/test34.unformatted +0 -0
- {yara_x-0.15.0 → yara_x-1.0.1}/fmt/src/testdata/default_tests/test4.formatted +0 -0
- {yara_x-0.15.0 → yara_x-1.0.1}/fmt/src/testdata/default_tests/test4.unformatted +0 -0
- {yara_x-0.15.0 → yara_x-1.0.1}/fmt/src/testdata/default_tests/test5.formatted +0 -0
- {yara_x-0.15.0 → yara_x-1.0.1}/fmt/src/testdata/default_tests/test5.unformatted +0 -0
- {yara_x-0.15.0 → yara_x-1.0.1}/fmt/src/testdata/default_tests/test6.formatted +0 -0
- {yara_x-0.15.0 → yara_x-1.0.1}/fmt/src/testdata/default_tests/test6.unformatted +0 -0
- {yara_x-0.15.0 → yara_x-1.0.1}/fmt/src/testdata/default_tests/test7.formatted +0 -0
- {yara_x-0.15.0 → yara_x-1.0.1}/fmt/src/testdata/default_tests/test7.unformatted +0 -0
- {yara_x-0.15.0 → yara_x-1.0.1}/fmt/src/testdata/default_tests/test8.formatted +0 -0
- {yara_x-0.15.0 → yara_x-1.0.1}/fmt/src/testdata/default_tests/test8.unformatted +0 -0
- {yara_x-0.15.0 → yara_x-1.0.1}/fmt/src/testdata/default_tests/test9.formatted +0 -0
- {yara_x-0.15.0 → yara_x-1.0.1}/fmt/src/testdata/default_tests/test9.unformatted +0 -0
- {yara_x-0.15.0 → yara_x-1.0.1}/fmt/src/tests.rs +0 -0
- {yara_x-0.15.0 → yara_x-1.0.1}/fmt/src/tokens/tests.rs +0 -0
- {yara_x-0.15.0 → yara_x-1.0.1}/fmt/src/trailing_spaces.rs +0 -0
- {yara_x-0.15.0 → yara_x-1.0.1}/lib/build.rs +0 -0
- {yara_x-0.15.0 → yara_x-1.0.1}/lib/src/compiler/atoms/mask.rs +0 -0
- {yara_x-0.15.0 → yara_x-1.0.1}/lib/src/compiler/atoms/mod.rs +0 -0
- {yara_x-0.15.0 → yara_x-1.0.1}/lib/src/compiler/atoms/quality.rs +0 -0
- {yara_x-0.15.0 → yara_x-1.0.1}/lib/src/compiler/base64.rs +0 -0
- {yara_x-0.15.0 → yara_x-1.0.1}/lib/src/compiler/ir/dfs.rs +0 -0
- /yara_x-0.15.0/lib/src/compiler/ir/tests/testdata/1.hoisting.ir → /yara_x-1.0.1/lib/src/compiler/ir/tests/testdata/1.cse.ir +0 -0
- /yara_x-0.15.0/lib/src/compiler/ir/tests/testdata/1.ir → /yara_x-1.0.1/lib/src/compiler/ir/tests/testdata/1.hoisting.ir +0 -0
- {yara_x-0.15.0 → yara_x-1.0.1}/lib/src/compiler/ir/tests/testdata/1.in +0 -0
- {yara_x-0.15.0 → yara_x-1.0.1}/lib/src/compiler/ir/tests/testdata/1.no-folding.ir +0 -0
- /yara_x-0.15.0/lib/src/compiler/ir/tests/testdata/2.ir → /yara_x-1.0.1/lib/src/compiler/ir/tests/testdata/2.cse.ir +0 -0
- {yara_x-0.15.0 → yara_x-1.0.1}/lib/src/compiler/ir/tests/testdata/2.hoisting.ir +0 -0
- {yara_x-0.15.0 → yara_x-1.0.1}/lib/src/compiler/ir/tests/testdata/2.in +0 -0
- /yara_x-0.15.0/lib/src/compiler/ir/tests/testdata/2.no-folding.ir → /yara_x-1.0.1/lib/src/compiler/ir/tests/testdata/2.ir +0 -0
- {yara_x-0.15.0 → yara_x-1.0.1}/lib/src/compiler/ir/tests/testdata/3.in +0 -0
- /yara_x-0.15.0/lib/src/compiler/ir/tests/testdata/5.hoisting.ir → /yara_x-1.0.1/lib/src/compiler/ir/tests/testdata/5.cse.ir +0 -0
- /yara_x-0.15.0/lib/src/compiler/ir/tests/testdata/5.ir → /yara_x-1.0.1/lib/src/compiler/ir/tests/testdata/5.hoisting.ir +0 -0
- {yara_x-0.15.0 → yara_x-1.0.1}/lib/src/compiler/ir/tests/testdata/5.in +0 -0
- /yara_x-0.15.0/lib/src/compiler/ir/tests/testdata/5.no-folding.ir → /yara_x-1.0.1/lib/src/compiler/ir/tests/testdata/5.ir +0 -0
- /yara_x-0.15.0/lib/src/compiler/ir/tests/testdata/6.hoisting.ir → /yara_x-1.0.1/lib/src/compiler/ir/tests/testdata/6.cse.ir +0 -0
- /yara_x-0.15.0/lib/src/compiler/ir/tests/testdata/6.ir → /yara_x-1.0.1/lib/src/compiler/ir/tests/testdata/6.hoisting.ir +0 -0
- {yara_x-0.15.0 → yara_x-1.0.1}/lib/src/compiler/ir/tests/testdata/6.in +0 -0
- /yara_x-0.15.0/lib/src/compiler/ir/tests/testdata/6.no-folding.ir → /yara_x-1.0.1/lib/src/compiler/ir/tests/testdata/6.ir +0 -0
- /yara_x-0.15.0/lib/src/compiler/ir/tests/testdata/7.ir → /yara_x-1.0.1/lib/src/compiler/ir/tests/testdata/7.cse.ir +0 -0
- {yara_x-0.15.0 → yara_x-1.0.1}/lib/src/compiler/ir/tests/testdata/7.hoisting.ir +0 -0
- {yara_x-0.15.0 → yara_x-1.0.1}/lib/src/compiler/ir/tests/testdata/7.in +0 -0
- /yara_x-0.15.0/lib/src/compiler/ir/tests/testdata/7.no-folding.ir → /yara_x-1.0.1/lib/src/compiler/ir/tests/testdata/7.ir +0 -0
- {yara_x-0.15.0 → yara_x-1.0.1}/lib/src/compiler/ir/tests/testdata/9.cse.ir +0 -0
- {yara_x-0.15.0 → yara_x-1.0.1}/lib/src/compiler/ir/tests/testdata/9.hoisting.ir +0 -0
- {yara_x-0.15.0 → yara_x-1.0.1}/lib/src/compiler/ir/tests/testdata/9.in +0 -0
- {yara_x-0.15.0 → yara_x-1.0.1}/lib/src/compiler/ir/tests/testdata/9.ir +0 -0
- {yara_x-0.15.0 → yara_x-1.0.1}/lib/src/compiler/ir/tests/testdata/9.no-folding.ir +0 -0
- {yara_x-0.15.0 → yara_x-1.0.1}/lib/src/compiler/tests/testdata/errors/1.in +0 -0
- {yara_x-0.15.0 → yara_x-1.0.1}/lib/src/compiler/tests/testdata/errors/1.out +0 -0
- {yara_x-0.15.0 → yara_x-1.0.1}/lib/src/compiler/tests/testdata/errors/10.in +0 -0
- {yara_x-0.15.0 → yara_x-1.0.1}/lib/src/compiler/tests/testdata/errors/10.out +0 -0
- {yara_x-0.15.0 → yara_x-1.0.1}/lib/src/compiler/tests/testdata/errors/100.in +0 -0
- {yara_x-0.15.0 → yara_x-1.0.1}/lib/src/compiler/tests/testdata/errors/100.out +0 -0
- {yara_x-0.15.0 → yara_x-1.0.1}/lib/src/compiler/tests/testdata/errors/101.in +0 -0
- {yara_x-0.15.0 → yara_x-1.0.1}/lib/src/compiler/tests/testdata/errors/101.out +0 -0
- {yara_x-0.15.0 → yara_x-1.0.1}/lib/src/compiler/tests/testdata/errors/102.in +0 -0
- {yara_x-0.15.0 → yara_x-1.0.1}/lib/src/compiler/tests/testdata/errors/102.out +0 -0
- {yara_x-0.15.0 → yara_x-1.0.1}/lib/src/compiler/tests/testdata/errors/103.in +0 -0
- {yara_x-0.15.0 → yara_x-1.0.1}/lib/src/compiler/tests/testdata/errors/103.out +0 -0
- {yara_x-0.15.0 → yara_x-1.0.1}/lib/src/compiler/tests/testdata/errors/104.in +0 -0
- {yara_x-0.15.0 → yara_x-1.0.1}/lib/src/compiler/tests/testdata/errors/104.out +0 -0
- {yara_x-0.15.0 → yara_x-1.0.1}/lib/src/compiler/tests/testdata/errors/105.in +0 -0
- {yara_x-0.15.0 → yara_x-1.0.1}/lib/src/compiler/tests/testdata/errors/105.out +0 -0
- {yara_x-0.15.0 → yara_x-1.0.1}/lib/src/compiler/tests/testdata/errors/106.in +0 -0
- {yara_x-0.15.0 → yara_x-1.0.1}/lib/src/compiler/tests/testdata/errors/106.out +0 -0
- {yara_x-0.15.0 → yara_x-1.0.1}/lib/src/compiler/tests/testdata/errors/107.in +0 -0
- {yara_x-0.15.0 → yara_x-1.0.1}/lib/src/compiler/tests/testdata/errors/107.out +0 -0
- {yara_x-0.15.0 → yara_x-1.0.1}/lib/src/compiler/tests/testdata/errors/108.in +0 -0
- {yara_x-0.15.0 → yara_x-1.0.1}/lib/src/compiler/tests/testdata/errors/108.out +0 -0
- {yara_x-0.15.0 → yara_x-1.0.1}/lib/src/compiler/tests/testdata/errors/109.in +0 -0
- {yara_x-0.15.0 → yara_x-1.0.1}/lib/src/compiler/tests/testdata/errors/109.out +0 -0
- {yara_x-0.15.0 → yara_x-1.0.1}/lib/src/compiler/tests/testdata/errors/11.in +0 -0
- {yara_x-0.15.0 → yara_x-1.0.1}/lib/src/compiler/tests/testdata/errors/11.out +0 -0
- {yara_x-0.15.0 → yara_x-1.0.1}/lib/src/compiler/tests/testdata/errors/110.in +0 -0
- {yara_x-0.15.0 → yara_x-1.0.1}/lib/src/compiler/tests/testdata/errors/110.out +0 -0
- {yara_x-0.15.0 → yara_x-1.0.1}/lib/src/compiler/tests/testdata/errors/111.in +0 -0
- {yara_x-0.15.0 → yara_x-1.0.1}/lib/src/compiler/tests/testdata/errors/111.out +0 -0
- {yara_x-0.15.0 → yara_x-1.0.1}/lib/src/compiler/tests/testdata/errors/112.in +0 -0
- {yara_x-0.15.0 → yara_x-1.0.1}/lib/src/compiler/tests/testdata/errors/112.out +0 -0
- {yara_x-0.15.0 → yara_x-1.0.1}/lib/src/compiler/tests/testdata/errors/113.in +0 -0
- {yara_x-0.15.0 → yara_x-1.0.1}/lib/src/compiler/tests/testdata/errors/113.out +0 -0
- {yara_x-0.15.0 → yara_x-1.0.1}/lib/src/compiler/tests/testdata/errors/114.in +0 -0
- {yara_x-0.15.0 → yara_x-1.0.1}/lib/src/compiler/tests/testdata/errors/114.out +0 -0
- {yara_x-0.15.0 → yara_x-1.0.1}/lib/src/compiler/tests/testdata/errors/115.in +0 -0
- {yara_x-0.15.0 → yara_x-1.0.1}/lib/src/compiler/tests/testdata/errors/115.out +0 -0
- {yara_x-0.15.0 → yara_x-1.0.1}/lib/src/compiler/tests/testdata/errors/116.in +0 -0
- {yara_x-0.15.0 → yara_x-1.0.1}/lib/src/compiler/tests/testdata/errors/116.out +0 -0
- {yara_x-0.15.0 → yara_x-1.0.1}/lib/src/compiler/tests/testdata/errors/117.in +0 -0
- {yara_x-0.15.0 → yara_x-1.0.1}/lib/src/compiler/tests/testdata/errors/117.out +0 -0
- {yara_x-0.15.0 → yara_x-1.0.1}/lib/src/compiler/tests/testdata/errors/118.in +0 -0
- {yara_x-0.15.0 → yara_x-1.0.1}/lib/src/compiler/tests/testdata/errors/118.out +0 -0
- {yara_x-0.15.0 → yara_x-1.0.1}/lib/src/compiler/tests/testdata/errors/119.in +0 -0
- {yara_x-0.15.0 → yara_x-1.0.1}/lib/src/compiler/tests/testdata/errors/119.out +0 -0
- {yara_x-0.15.0 → yara_x-1.0.1}/lib/src/compiler/tests/testdata/errors/12.in +0 -0
- {yara_x-0.15.0 → yara_x-1.0.1}/lib/src/compiler/tests/testdata/errors/12.out +0 -0
- {yara_x-0.15.0 → yara_x-1.0.1}/lib/src/compiler/tests/testdata/errors/120.in +0 -0
- {yara_x-0.15.0 → yara_x-1.0.1}/lib/src/compiler/tests/testdata/errors/120.out +0 -0
- {yara_x-0.15.0 → yara_x-1.0.1}/lib/src/compiler/tests/testdata/errors/121.in +0 -0
- {yara_x-0.15.0 → yara_x-1.0.1}/lib/src/compiler/tests/testdata/errors/121.out +0 -0
- {yara_x-0.15.0 → yara_x-1.0.1}/lib/src/compiler/tests/testdata/errors/122.in +0 -0
- {yara_x-0.15.0 → yara_x-1.0.1}/lib/src/compiler/tests/testdata/errors/122.out +0 -0
- {yara_x-0.15.0 → yara_x-1.0.1}/lib/src/compiler/tests/testdata/errors/123.in +0 -0
- {yara_x-0.15.0 → yara_x-1.0.1}/lib/src/compiler/tests/testdata/errors/123.out +0 -0
- {yara_x-0.15.0 → yara_x-1.0.1}/lib/src/compiler/tests/testdata/errors/124.in +0 -0
- {yara_x-0.15.0 → yara_x-1.0.1}/lib/src/compiler/tests/testdata/errors/124.out +0 -0
- {yara_x-0.15.0 → yara_x-1.0.1}/lib/src/compiler/tests/testdata/errors/125.in +0 -0
- {yara_x-0.15.0 → yara_x-1.0.1}/lib/src/compiler/tests/testdata/errors/125.out +0 -0
- {yara_x-0.15.0 → yara_x-1.0.1}/lib/src/compiler/tests/testdata/errors/126.in +0 -0
- {yara_x-0.15.0 → yara_x-1.0.1}/lib/src/compiler/tests/testdata/errors/126.out +0 -0
- {yara_x-0.15.0 → yara_x-1.0.1}/lib/src/compiler/tests/testdata/errors/127.in +0 -0
- {yara_x-0.15.0 → yara_x-1.0.1}/lib/src/compiler/tests/testdata/errors/127.out +0 -0
- {yara_x-0.15.0 → yara_x-1.0.1}/lib/src/compiler/tests/testdata/errors/128.in +0 -0
- {yara_x-0.15.0 → yara_x-1.0.1}/lib/src/compiler/tests/testdata/errors/128.out +0 -0
- {yara_x-0.15.0 → yara_x-1.0.1}/lib/src/compiler/tests/testdata/errors/129.in +0 -0
- {yara_x-0.15.0 → yara_x-1.0.1}/lib/src/compiler/tests/testdata/errors/129.out +0 -0
- {yara_x-0.15.0 → yara_x-1.0.1}/lib/src/compiler/tests/testdata/errors/13.in +0 -0
- {yara_x-0.15.0 → yara_x-1.0.1}/lib/src/compiler/tests/testdata/errors/13.out +0 -0
- {yara_x-0.15.0 → yara_x-1.0.1}/lib/src/compiler/tests/testdata/errors/131.in +0 -0
- {yara_x-0.15.0 → yara_x-1.0.1}/lib/src/compiler/tests/testdata/errors/131.out +0 -0
- {yara_x-0.15.0 → yara_x-1.0.1}/lib/src/compiler/tests/testdata/errors/132.in +0 -0
- {yara_x-0.15.0 → yara_x-1.0.1}/lib/src/compiler/tests/testdata/errors/132.out +0 -0
- {yara_x-0.15.0 → yara_x-1.0.1}/lib/src/compiler/tests/testdata/errors/133.in +0 -0
- {yara_x-0.15.0 → yara_x-1.0.1}/lib/src/compiler/tests/testdata/errors/133.out +0 -0
- {yara_x-0.15.0 → yara_x-1.0.1}/lib/src/compiler/tests/testdata/errors/134.in +0 -0
- {yara_x-0.15.0 → yara_x-1.0.1}/lib/src/compiler/tests/testdata/errors/134.out +0 -0
- {yara_x-0.15.0 → yara_x-1.0.1}/lib/src/compiler/tests/testdata/errors/135.in +0 -0
- {yara_x-0.15.0 → yara_x-1.0.1}/lib/src/compiler/tests/testdata/errors/135.out +0 -0
- {yara_x-0.15.0 → yara_x-1.0.1}/lib/src/compiler/tests/testdata/errors/136.in +0 -0
- {yara_x-0.15.0 → yara_x-1.0.1}/lib/src/compiler/tests/testdata/errors/136.out +0 -0
- {yara_x-0.15.0 → yara_x-1.0.1}/lib/src/compiler/tests/testdata/errors/137.in +0 -0
- {yara_x-0.15.0 → yara_x-1.0.1}/lib/src/compiler/tests/testdata/errors/137.out +0 -0
- {yara_x-0.15.0 → yara_x-1.0.1}/lib/src/compiler/tests/testdata/errors/138.in +0 -0
- {yara_x-0.15.0 → yara_x-1.0.1}/lib/src/compiler/tests/testdata/errors/138.out +0 -0
- {yara_x-0.15.0 → yara_x-1.0.1}/lib/src/compiler/tests/testdata/errors/139.in +0 -0
- {yara_x-0.15.0 → yara_x-1.0.1}/lib/src/compiler/tests/testdata/errors/139.out +0 -0
- {yara_x-0.15.0 → yara_x-1.0.1}/lib/src/compiler/tests/testdata/errors/14.in +0 -0
- {yara_x-0.15.0 → yara_x-1.0.1}/lib/src/compiler/tests/testdata/errors/14.out +0 -0
- {yara_x-0.15.0 → yara_x-1.0.1}/lib/src/compiler/tests/testdata/errors/140.in +0 -0
- {yara_x-0.15.0 → yara_x-1.0.1}/lib/src/compiler/tests/testdata/errors/140.out +0 -0
- {yara_x-0.15.0 → yara_x-1.0.1}/lib/src/compiler/tests/testdata/errors/141.in +0 -0
- {yara_x-0.15.0 → yara_x-1.0.1}/lib/src/compiler/tests/testdata/errors/141.out +0 -0
- {yara_x-0.15.0 → yara_x-1.0.1}/lib/src/compiler/tests/testdata/errors/142.in +0 -0
- {yara_x-0.15.0 → yara_x-1.0.1}/lib/src/compiler/tests/testdata/errors/142.out +0 -0
- {yara_x-0.15.0 → yara_x-1.0.1}/lib/src/compiler/tests/testdata/errors/143.in +0 -0
- {yara_x-0.15.0 → yara_x-1.0.1}/lib/src/compiler/tests/testdata/errors/143.out +0 -0
- {yara_x-0.15.0 → yara_x-1.0.1}/lib/src/compiler/tests/testdata/errors/15.in +0 -0
- {yara_x-0.15.0 → yara_x-1.0.1}/lib/src/compiler/tests/testdata/errors/15.out +0 -0
- {yara_x-0.15.0 → yara_x-1.0.1}/lib/src/compiler/tests/testdata/errors/16.in +0 -0
- {yara_x-0.15.0 → yara_x-1.0.1}/lib/src/compiler/tests/testdata/errors/16.out +0 -0
- {yara_x-0.15.0 → yara_x-1.0.1}/lib/src/compiler/tests/testdata/errors/17.in +0 -0
- {yara_x-0.15.0 → yara_x-1.0.1}/lib/src/compiler/tests/testdata/errors/17.out +0 -0
- {yara_x-0.15.0 → yara_x-1.0.1}/lib/src/compiler/tests/testdata/errors/18.in +0 -0
- {yara_x-0.15.0 → yara_x-1.0.1}/lib/src/compiler/tests/testdata/errors/18.out +0 -0
- {yara_x-0.15.0 → yara_x-1.0.1}/lib/src/compiler/tests/testdata/errors/19.in +0 -0
- {yara_x-0.15.0 → yara_x-1.0.1}/lib/src/compiler/tests/testdata/errors/19.out +0 -0
- {yara_x-0.15.0 → yara_x-1.0.1}/lib/src/compiler/tests/testdata/errors/2.in +0 -0
- {yara_x-0.15.0 → yara_x-1.0.1}/lib/src/compiler/tests/testdata/errors/2.out +0 -0
- {yara_x-0.15.0 → yara_x-1.0.1}/lib/src/compiler/tests/testdata/errors/20.in +0 -0
- {yara_x-0.15.0 → yara_x-1.0.1}/lib/src/compiler/tests/testdata/errors/20.out +0 -0
- {yara_x-0.15.0 → yara_x-1.0.1}/lib/src/compiler/tests/testdata/errors/21.in +0 -0
- {yara_x-0.15.0 → yara_x-1.0.1}/lib/src/compiler/tests/testdata/errors/21.out +0 -0
- {yara_x-0.15.0 → yara_x-1.0.1}/lib/src/compiler/tests/testdata/errors/22.in +0 -0
- {yara_x-0.15.0 → yara_x-1.0.1}/lib/src/compiler/tests/testdata/errors/22.out +0 -0
- {yara_x-0.15.0 → yara_x-1.0.1}/lib/src/compiler/tests/testdata/errors/23.in +0 -0
- {yara_x-0.15.0 → yara_x-1.0.1}/lib/src/compiler/tests/testdata/errors/23.out +0 -0
- {yara_x-0.15.0 → yara_x-1.0.1}/lib/src/compiler/tests/testdata/errors/24.in +0 -0
- {yara_x-0.15.0 → yara_x-1.0.1}/lib/src/compiler/tests/testdata/errors/24.out +0 -0
- {yara_x-0.15.0 → yara_x-1.0.1}/lib/src/compiler/tests/testdata/errors/25.in +0 -0
- {yara_x-0.15.0 → yara_x-1.0.1}/lib/src/compiler/tests/testdata/errors/25.out +0 -0
- {yara_x-0.15.0 → yara_x-1.0.1}/lib/src/compiler/tests/testdata/errors/26.in +0 -0
- {yara_x-0.15.0 → yara_x-1.0.1}/lib/src/compiler/tests/testdata/errors/26.out +0 -0
- {yara_x-0.15.0 → yara_x-1.0.1}/lib/src/compiler/tests/testdata/errors/28.in +0 -0
- {yara_x-0.15.0 → yara_x-1.0.1}/lib/src/compiler/tests/testdata/errors/28.out +0 -0
- {yara_x-0.15.0 → yara_x-1.0.1}/lib/src/compiler/tests/testdata/errors/29.in +0 -0
- {yara_x-0.15.0 → yara_x-1.0.1}/lib/src/compiler/tests/testdata/errors/29.out +0 -0
- {yara_x-0.15.0 → yara_x-1.0.1}/lib/src/compiler/tests/testdata/errors/3.in +0 -0
- {yara_x-0.15.0 → yara_x-1.0.1}/lib/src/compiler/tests/testdata/errors/3.out +0 -0
- {yara_x-0.15.0 → yara_x-1.0.1}/lib/src/compiler/tests/testdata/errors/30.in +0 -0
- {yara_x-0.15.0 → yara_x-1.0.1}/lib/src/compiler/tests/testdata/errors/30.out +0 -0
- {yara_x-0.15.0 → yara_x-1.0.1}/lib/src/compiler/tests/testdata/errors/31.in +0 -0
- {yara_x-0.15.0 → yara_x-1.0.1}/lib/src/compiler/tests/testdata/errors/31.out +0 -0
- {yara_x-0.15.0 → yara_x-1.0.1}/lib/src/compiler/tests/testdata/errors/32.in +0 -0
- {yara_x-0.15.0 → yara_x-1.0.1}/lib/src/compiler/tests/testdata/errors/32.out +0 -0
- {yara_x-0.15.0 → yara_x-1.0.1}/lib/src/compiler/tests/testdata/errors/33.in +0 -0
- {yara_x-0.15.0 → yara_x-1.0.1}/lib/src/compiler/tests/testdata/errors/33.out +0 -0
- {yara_x-0.15.0 → yara_x-1.0.1}/lib/src/compiler/tests/testdata/errors/34.in +0 -0
- {yara_x-0.15.0 → yara_x-1.0.1}/lib/src/compiler/tests/testdata/errors/34.out +0 -0
- {yara_x-0.15.0 → yara_x-1.0.1}/lib/src/compiler/tests/testdata/errors/35.in +0 -0
- {yara_x-0.15.0 → yara_x-1.0.1}/lib/src/compiler/tests/testdata/errors/35.out +0 -0
- {yara_x-0.15.0 → yara_x-1.0.1}/lib/src/compiler/tests/testdata/errors/37.in +0 -0
- {yara_x-0.15.0 → yara_x-1.0.1}/lib/src/compiler/tests/testdata/errors/37.out +0 -0
- {yara_x-0.15.0 → yara_x-1.0.1}/lib/src/compiler/tests/testdata/errors/38.in +0 -0
- {yara_x-0.15.0 → yara_x-1.0.1}/lib/src/compiler/tests/testdata/errors/38.out +0 -0
- {yara_x-0.15.0 → yara_x-1.0.1}/lib/src/compiler/tests/testdata/errors/39.in +0 -0
- {yara_x-0.15.0 → yara_x-1.0.1}/lib/src/compiler/tests/testdata/errors/39.out +0 -0
- {yara_x-0.15.0 → yara_x-1.0.1}/lib/src/compiler/tests/testdata/errors/4.in +0 -0
- {yara_x-0.15.0 → yara_x-1.0.1}/lib/src/compiler/tests/testdata/errors/4.out +0 -0
- {yara_x-0.15.0 → yara_x-1.0.1}/lib/src/compiler/tests/testdata/errors/40.in +0 -0
- {yara_x-0.15.0 → yara_x-1.0.1}/lib/src/compiler/tests/testdata/errors/40.out +0 -0
- {yara_x-0.15.0 → yara_x-1.0.1}/lib/src/compiler/tests/testdata/errors/41.in +0 -0
- {yara_x-0.15.0 → yara_x-1.0.1}/lib/src/compiler/tests/testdata/errors/41.out +0 -0
- {yara_x-0.15.0 → yara_x-1.0.1}/lib/src/compiler/tests/testdata/errors/42.in +0 -0
- {yara_x-0.15.0 → yara_x-1.0.1}/lib/src/compiler/tests/testdata/errors/42.out +0 -0
- {yara_x-0.15.0 → yara_x-1.0.1}/lib/src/compiler/tests/testdata/errors/43.in +0 -0
- {yara_x-0.15.0 → yara_x-1.0.1}/lib/src/compiler/tests/testdata/errors/43.out +0 -0
- {yara_x-0.15.0 → yara_x-1.0.1}/lib/src/compiler/tests/testdata/errors/44.in +0 -0
- {yara_x-0.15.0 → yara_x-1.0.1}/lib/src/compiler/tests/testdata/errors/44.out +0 -0
- {yara_x-0.15.0 → yara_x-1.0.1}/lib/src/compiler/tests/testdata/errors/45.in +0 -0
- {yara_x-0.15.0 → yara_x-1.0.1}/lib/src/compiler/tests/testdata/errors/45.out +0 -0
- {yara_x-0.15.0 → yara_x-1.0.1}/lib/src/compiler/tests/testdata/errors/46.in +0 -0
- {yara_x-0.15.0 → yara_x-1.0.1}/lib/src/compiler/tests/testdata/errors/46.out +0 -0
- {yara_x-0.15.0 → yara_x-1.0.1}/lib/src/compiler/tests/testdata/errors/47.in +0 -0
- {yara_x-0.15.0 → yara_x-1.0.1}/lib/src/compiler/tests/testdata/errors/47.out +0 -0
- {yara_x-0.15.0 → yara_x-1.0.1}/lib/src/compiler/tests/testdata/errors/48.in +0 -0
- {yara_x-0.15.0 → yara_x-1.0.1}/lib/src/compiler/tests/testdata/errors/48.out +0 -0
- {yara_x-0.15.0 → yara_x-1.0.1}/lib/src/compiler/tests/testdata/errors/49.in +0 -0
- {yara_x-0.15.0 → yara_x-1.0.1}/lib/src/compiler/tests/testdata/errors/49.out +0 -0
- {yara_x-0.15.0 → yara_x-1.0.1}/lib/src/compiler/tests/testdata/errors/5.in +0 -0
- {yara_x-0.15.0 → yara_x-1.0.1}/lib/src/compiler/tests/testdata/errors/5.out +0 -0
- {yara_x-0.15.0 → yara_x-1.0.1}/lib/src/compiler/tests/testdata/errors/50.in +0 -0
- {yara_x-0.15.0 → yara_x-1.0.1}/lib/src/compiler/tests/testdata/errors/50.out +0 -0
- {yara_x-0.15.0 → yara_x-1.0.1}/lib/src/compiler/tests/testdata/errors/51.in +0 -0
- {yara_x-0.15.0 → yara_x-1.0.1}/lib/src/compiler/tests/testdata/errors/51.out +0 -0
- {yara_x-0.15.0 → yara_x-1.0.1}/lib/src/compiler/tests/testdata/errors/52.in +0 -0
- {yara_x-0.15.0 → yara_x-1.0.1}/lib/src/compiler/tests/testdata/errors/52.out +0 -0
- {yara_x-0.15.0 → yara_x-1.0.1}/lib/src/compiler/tests/testdata/errors/53.in +0 -0
- {yara_x-0.15.0 → yara_x-1.0.1}/lib/src/compiler/tests/testdata/errors/53.out +0 -0
- {yara_x-0.15.0 → yara_x-1.0.1}/lib/src/compiler/tests/testdata/errors/54.in +0 -0
- {yara_x-0.15.0 → yara_x-1.0.1}/lib/src/compiler/tests/testdata/errors/54.out +0 -0
- {yara_x-0.15.0 → yara_x-1.0.1}/lib/src/compiler/tests/testdata/errors/55.in +0 -0
- {yara_x-0.15.0 → yara_x-1.0.1}/lib/src/compiler/tests/testdata/errors/55.out +0 -0
- {yara_x-0.15.0 → yara_x-1.0.1}/lib/src/compiler/tests/testdata/errors/56.in +0 -0
- {yara_x-0.15.0 → yara_x-1.0.1}/lib/src/compiler/tests/testdata/errors/56.out +0 -0
- {yara_x-0.15.0 → yara_x-1.0.1}/lib/src/compiler/tests/testdata/errors/57.in +0 -0
- {yara_x-0.15.0 → yara_x-1.0.1}/lib/src/compiler/tests/testdata/errors/57.out +0 -0
- {yara_x-0.15.0 → yara_x-1.0.1}/lib/src/compiler/tests/testdata/errors/58.in +0 -0
- {yara_x-0.15.0 → yara_x-1.0.1}/lib/src/compiler/tests/testdata/errors/58.out +0 -0
- {yara_x-0.15.0 → yara_x-1.0.1}/lib/src/compiler/tests/testdata/errors/59.in +0 -0
- {yara_x-0.15.0 → yara_x-1.0.1}/lib/src/compiler/tests/testdata/errors/59.out +0 -0
- {yara_x-0.15.0 → yara_x-1.0.1}/lib/src/compiler/tests/testdata/errors/6.in +0 -0
- {yara_x-0.15.0 → yara_x-1.0.1}/lib/src/compiler/tests/testdata/errors/6.out +0 -0
- {yara_x-0.15.0 → yara_x-1.0.1}/lib/src/compiler/tests/testdata/errors/60.in +0 -0
- {yara_x-0.15.0 → yara_x-1.0.1}/lib/src/compiler/tests/testdata/errors/60.out +0 -0
- {yara_x-0.15.0 → yara_x-1.0.1}/lib/src/compiler/tests/testdata/errors/61.in +0 -0
- {yara_x-0.15.0 → yara_x-1.0.1}/lib/src/compiler/tests/testdata/errors/61.out +0 -0
- {yara_x-0.15.0 → yara_x-1.0.1}/lib/src/compiler/tests/testdata/errors/62.in +0 -0
- {yara_x-0.15.0 → yara_x-1.0.1}/lib/src/compiler/tests/testdata/errors/62.out +0 -0
- {yara_x-0.15.0 → yara_x-1.0.1}/lib/src/compiler/tests/testdata/errors/63.in +0 -0
- {yara_x-0.15.0 → yara_x-1.0.1}/lib/src/compiler/tests/testdata/errors/63.out +0 -0
- {yara_x-0.15.0 → yara_x-1.0.1}/lib/src/compiler/tests/testdata/errors/64.in +0 -0
- {yara_x-0.15.0 → yara_x-1.0.1}/lib/src/compiler/tests/testdata/errors/64.out +0 -0
- {yara_x-0.15.0 → yara_x-1.0.1}/lib/src/compiler/tests/testdata/errors/65.in +0 -0
- {yara_x-0.15.0 → yara_x-1.0.1}/lib/src/compiler/tests/testdata/errors/65.out +0 -0
- {yara_x-0.15.0 → yara_x-1.0.1}/lib/src/compiler/tests/testdata/errors/66.in +0 -0
- {yara_x-0.15.0 → yara_x-1.0.1}/lib/src/compiler/tests/testdata/errors/66.out +0 -0
- {yara_x-0.15.0 → yara_x-1.0.1}/lib/src/compiler/tests/testdata/errors/67.in +0 -0
- {yara_x-0.15.0 → yara_x-1.0.1}/lib/src/compiler/tests/testdata/errors/67.out +0 -0
- {yara_x-0.15.0 → yara_x-1.0.1}/lib/src/compiler/tests/testdata/errors/68.in +0 -0
- {yara_x-0.15.0 → yara_x-1.0.1}/lib/src/compiler/tests/testdata/errors/68.out +0 -0
- {yara_x-0.15.0 → yara_x-1.0.1}/lib/src/compiler/tests/testdata/errors/69.in +0 -0
- {yara_x-0.15.0 → yara_x-1.0.1}/lib/src/compiler/tests/testdata/errors/69.out +0 -0
- {yara_x-0.15.0 → yara_x-1.0.1}/lib/src/compiler/tests/testdata/errors/7.in +0 -0
- {yara_x-0.15.0 → yara_x-1.0.1}/lib/src/compiler/tests/testdata/errors/7.out +0 -0
- {yara_x-0.15.0 → yara_x-1.0.1}/lib/src/compiler/tests/testdata/errors/70.in +0 -0
- {yara_x-0.15.0 → yara_x-1.0.1}/lib/src/compiler/tests/testdata/errors/70.out +0 -0
- {yara_x-0.15.0 → yara_x-1.0.1}/lib/src/compiler/tests/testdata/errors/71.in +0 -0
- {yara_x-0.15.0 → yara_x-1.0.1}/lib/src/compiler/tests/testdata/errors/71.out +0 -0
- {yara_x-0.15.0 → yara_x-1.0.1}/lib/src/compiler/tests/testdata/errors/72.in +0 -0
- {yara_x-0.15.0 → yara_x-1.0.1}/lib/src/compiler/tests/testdata/errors/72.out +0 -0
- {yara_x-0.15.0 → yara_x-1.0.1}/lib/src/compiler/tests/testdata/errors/73.in +0 -0
- {yara_x-0.15.0 → yara_x-1.0.1}/lib/src/compiler/tests/testdata/errors/73.out +0 -0
- {yara_x-0.15.0 → yara_x-1.0.1}/lib/src/compiler/tests/testdata/errors/74.in +0 -0
- {yara_x-0.15.0 → yara_x-1.0.1}/lib/src/compiler/tests/testdata/errors/74.out +0 -0
- {yara_x-0.15.0 → yara_x-1.0.1}/lib/src/compiler/tests/testdata/errors/75.in +0 -0
- {yara_x-0.15.0 → yara_x-1.0.1}/lib/src/compiler/tests/testdata/errors/75.out +0 -0
- {yara_x-0.15.0 → yara_x-1.0.1}/lib/src/compiler/tests/testdata/errors/76.in +0 -0
- {yara_x-0.15.0 → yara_x-1.0.1}/lib/src/compiler/tests/testdata/errors/76.out +0 -0
- {yara_x-0.15.0 → yara_x-1.0.1}/lib/src/compiler/tests/testdata/errors/77.in +0 -0
- {yara_x-0.15.0 → yara_x-1.0.1}/lib/src/compiler/tests/testdata/errors/77.out +0 -0
- {yara_x-0.15.0 → yara_x-1.0.1}/lib/src/compiler/tests/testdata/errors/78.in +0 -0
- {yara_x-0.15.0 → yara_x-1.0.1}/lib/src/compiler/tests/testdata/errors/78.out +0 -0
- {yara_x-0.15.0 → yara_x-1.0.1}/lib/src/compiler/tests/testdata/errors/79.in +0 -0
- {yara_x-0.15.0 → yara_x-1.0.1}/lib/src/compiler/tests/testdata/errors/79.out +0 -0
- {yara_x-0.15.0 → yara_x-1.0.1}/lib/src/compiler/tests/testdata/errors/8.in +0 -0
- {yara_x-0.15.0 → yara_x-1.0.1}/lib/src/compiler/tests/testdata/errors/8.out +0 -0
- {yara_x-0.15.0 → yara_x-1.0.1}/lib/src/compiler/tests/testdata/errors/80.in +0 -0
- {yara_x-0.15.0 → yara_x-1.0.1}/lib/src/compiler/tests/testdata/errors/80.out +0 -0
- {yara_x-0.15.0 → yara_x-1.0.1}/lib/src/compiler/tests/testdata/errors/81.in +0 -0
- {yara_x-0.15.0 → yara_x-1.0.1}/lib/src/compiler/tests/testdata/errors/81.out +0 -0
- {yara_x-0.15.0 → yara_x-1.0.1}/lib/src/compiler/tests/testdata/errors/82.in +0 -0
- {yara_x-0.15.0 → yara_x-1.0.1}/lib/src/compiler/tests/testdata/errors/82.out +0 -0
- {yara_x-0.15.0 → yara_x-1.0.1}/lib/src/compiler/tests/testdata/errors/83.in +0 -0
- {yara_x-0.15.0 → yara_x-1.0.1}/lib/src/compiler/tests/testdata/errors/83.out +0 -0
- {yara_x-0.15.0 → yara_x-1.0.1}/lib/src/compiler/tests/testdata/errors/84.in +0 -0
- {yara_x-0.15.0 → yara_x-1.0.1}/lib/src/compiler/tests/testdata/errors/84.out +0 -0
- {yara_x-0.15.0 → yara_x-1.0.1}/lib/src/compiler/tests/testdata/errors/85.in +0 -0
- {yara_x-0.15.0 → yara_x-1.0.1}/lib/src/compiler/tests/testdata/errors/85.out +0 -0
- {yara_x-0.15.0 → yara_x-1.0.1}/lib/src/compiler/tests/testdata/errors/86.in +0 -0
- {yara_x-0.15.0 → yara_x-1.0.1}/lib/src/compiler/tests/testdata/errors/86.out +0 -0
- {yara_x-0.15.0 → yara_x-1.0.1}/lib/src/compiler/tests/testdata/errors/87.in +0 -0
- {yara_x-0.15.0 → yara_x-1.0.1}/lib/src/compiler/tests/testdata/errors/87.out +0 -0
- {yara_x-0.15.0 → yara_x-1.0.1}/lib/src/compiler/tests/testdata/errors/88.in +0 -0
- {yara_x-0.15.0 → yara_x-1.0.1}/lib/src/compiler/tests/testdata/errors/88.out +0 -0
- {yara_x-0.15.0 → yara_x-1.0.1}/lib/src/compiler/tests/testdata/errors/89.in +0 -0
- {yara_x-0.15.0 → yara_x-1.0.1}/lib/src/compiler/tests/testdata/errors/89.out +0 -0
- {yara_x-0.15.0 → yara_x-1.0.1}/lib/src/compiler/tests/testdata/errors/9.in +0 -0
- {yara_x-0.15.0 → yara_x-1.0.1}/lib/src/compiler/tests/testdata/errors/9.out +0 -0
- {yara_x-0.15.0 → yara_x-1.0.1}/lib/src/compiler/tests/testdata/errors/90.in +0 -0
- {yara_x-0.15.0 → yara_x-1.0.1}/lib/src/compiler/tests/testdata/errors/90.out +0 -0
- {yara_x-0.15.0 → yara_x-1.0.1}/lib/src/compiler/tests/testdata/errors/91.in +0 -0
- {yara_x-0.15.0 → yara_x-1.0.1}/lib/src/compiler/tests/testdata/errors/91.out +0 -0
- {yara_x-0.15.0 → yara_x-1.0.1}/lib/src/compiler/tests/testdata/errors/92.in +0 -0
- {yara_x-0.15.0 → yara_x-1.0.1}/lib/src/compiler/tests/testdata/errors/92.out +0 -0
- {yara_x-0.15.0 → yara_x-1.0.1}/lib/src/compiler/tests/testdata/errors/93.in +0 -0
- {yara_x-0.15.0 → yara_x-1.0.1}/lib/src/compiler/tests/testdata/errors/93.out +0 -0
- {yara_x-0.15.0 → yara_x-1.0.1}/lib/src/compiler/tests/testdata/errors/94.in +0 -0
- {yara_x-0.15.0 → yara_x-1.0.1}/lib/src/compiler/tests/testdata/errors/94.out +0 -0
- {yara_x-0.15.0 → yara_x-1.0.1}/lib/src/compiler/tests/testdata/errors/95.in +0 -0
- {yara_x-0.15.0 → yara_x-1.0.1}/lib/src/compiler/tests/testdata/errors/95.out +0 -0
- {yara_x-0.15.0 → yara_x-1.0.1}/lib/src/compiler/tests/testdata/errors/96.in +0 -0
- {yara_x-0.15.0 → yara_x-1.0.1}/lib/src/compiler/tests/testdata/errors/96.out +0 -0
- {yara_x-0.15.0 → yara_x-1.0.1}/lib/src/compiler/tests/testdata/errors/97.in +0 -0
- {yara_x-0.15.0 → yara_x-1.0.1}/lib/src/compiler/tests/testdata/errors/97.out +0 -0
- {yara_x-0.15.0 → yara_x-1.0.1}/lib/src/compiler/tests/testdata/errors/98.in +0 -0
- {yara_x-0.15.0 → yara_x-1.0.1}/lib/src/compiler/tests/testdata/errors/98.out +0 -0
- {yara_x-0.15.0 → yara_x-1.0.1}/lib/src/compiler/tests/testdata/errors/99.in +0 -0
- {yara_x-0.15.0 → yara_x-1.0.1}/lib/src/compiler/tests/testdata/errors/99.out +0 -0
- {yara_x-0.15.0 → yara_x-1.0.1}/lib/src/compiler/tests/testdata/includes/included_error.yar +0 -0
- {yara_x-0.15.0 → yara_x-1.0.1}/lib/src/compiler/tests/testdata/includes/included_ok.yar +0 -0
- {yara_x-0.15.0 → yara_x-1.0.1}/lib/src/compiler/tests/testdata/warnings/1.in +0 -0
- {yara_x-0.15.0 → yara_x-1.0.1}/lib/src/compiler/tests/testdata/warnings/1.out +0 -0
- {yara_x-0.15.0 → yara_x-1.0.1}/lib/src/compiler/tests/testdata/warnings/10.in +0 -0
- {yara_x-0.15.0 → yara_x-1.0.1}/lib/src/compiler/tests/testdata/warnings/10.out +0 -0
- {yara_x-0.15.0 → yara_x-1.0.1}/lib/src/compiler/tests/testdata/warnings/11.in +0 -0
- {yara_x-0.15.0 → yara_x-1.0.1}/lib/src/compiler/tests/testdata/warnings/11.out +0 -0
- {yara_x-0.15.0 → yara_x-1.0.1}/lib/src/compiler/tests/testdata/warnings/12.in +0 -0
- {yara_x-0.15.0 → yara_x-1.0.1}/lib/src/compiler/tests/testdata/warnings/12.out +0 -0
- {yara_x-0.15.0 → yara_x-1.0.1}/lib/src/compiler/tests/testdata/warnings/13.in +0 -0
- {yara_x-0.15.0 → yara_x-1.0.1}/lib/src/compiler/tests/testdata/warnings/13.out +0 -0
- {yara_x-0.15.0 → yara_x-1.0.1}/lib/src/compiler/tests/testdata/warnings/14.in +0 -0
- {yara_x-0.15.0 → yara_x-1.0.1}/lib/src/compiler/tests/testdata/warnings/14.out +0 -0
- {yara_x-0.15.0 → yara_x-1.0.1}/lib/src/compiler/tests/testdata/warnings/15.in +0 -0
- {yara_x-0.15.0 → yara_x-1.0.1}/lib/src/compiler/tests/testdata/warnings/15.out +0 -0
- {yara_x-0.15.0 → yara_x-1.0.1}/lib/src/compiler/tests/testdata/warnings/16.in +0 -0
- {yara_x-0.15.0 → yara_x-1.0.1}/lib/src/compiler/tests/testdata/warnings/16.out +0 -0
- {yara_x-0.15.0 → yara_x-1.0.1}/lib/src/compiler/tests/testdata/warnings/17.in +0 -0
- {yara_x-0.15.0 → yara_x-1.0.1}/lib/src/compiler/tests/testdata/warnings/17.out +0 -0
- {yara_x-0.15.0 → yara_x-1.0.1}/lib/src/compiler/tests/testdata/warnings/18.in +0 -0
- {yara_x-0.15.0 → yara_x-1.0.1}/lib/src/compiler/tests/testdata/warnings/18.out +0 -0
- {yara_x-0.15.0 → yara_x-1.0.1}/lib/src/compiler/tests/testdata/warnings/19.in +0 -0
- {yara_x-0.15.0 → yara_x-1.0.1}/lib/src/compiler/tests/testdata/warnings/19.out +0 -0
- {yara_x-0.15.0 → yara_x-1.0.1}/lib/src/compiler/tests/testdata/warnings/2.in +0 -0
- {yara_x-0.15.0 → yara_x-1.0.1}/lib/src/compiler/tests/testdata/warnings/2.out +0 -0
- {yara_x-0.15.0 → yara_x-1.0.1}/lib/src/compiler/tests/testdata/warnings/20.in +0 -0
- {yara_x-0.15.0 → yara_x-1.0.1}/lib/src/compiler/tests/testdata/warnings/20.out +0 -0
- {yara_x-0.15.0 → yara_x-1.0.1}/lib/src/compiler/tests/testdata/warnings/21.in +0 -0
- {yara_x-0.15.0 → yara_x-1.0.1}/lib/src/compiler/tests/testdata/warnings/21.out +0 -0
- {yara_x-0.15.0 → yara_x-1.0.1}/lib/src/compiler/tests/testdata/warnings/22.in +0 -0
- {yara_x-0.15.0 → yara_x-1.0.1}/lib/src/compiler/tests/testdata/warnings/22.out +0 -0
- {yara_x-0.15.0 → yara_x-1.0.1}/lib/src/compiler/tests/testdata/warnings/23.in +0 -0
- {yara_x-0.15.0 → yara_x-1.0.1}/lib/src/compiler/tests/testdata/warnings/23.out +0 -0
- {yara_x-0.15.0 → yara_x-1.0.1}/lib/src/compiler/tests/testdata/warnings/24.in +0 -0
- {yara_x-0.15.0 → yara_x-1.0.1}/lib/src/compiler/tests/testdata/warnings/24.out +0 -0
- {yara_x-0.15.0 → yara_x-1.0.1}/lib/src/compiler/tests/testdata/warnings/25.in +0 -0
- {yara_x-0.15.0 → yara_x-1.0.1}/lib/src/compiler/tests/testdata/warnings/25.out +0 -0
- {yara_x-0.15.0 → yara_x-1.0.1}/lib/src/compiler/tests/testdata/warnings/26.in +0 -0
- {yara_x-0.15.0 → yara_x-1.0.1}/lib/src/compiler/tests/testdata/warnings/26.out +0 -0
- {yara_x-0.15.0 → yara_x-1.0.1}/lib/src/compiler/tests/testdata/warnings/27.in +0 -0
- {yara_x-0.15.0 → yara_x-1.0.1}/lib/src/compiler/tests/testdata/warnings/27.out +0 -0
- {yara_x-0.15.0 → yara_x-1.0.1}/lib/src/compiler/tests/testdata/warnings/28.in +0 -0
- {yara_x-0.15.0 → yara_x-1.0.1}/lib/src/compiler/tests/testdata/warnings/28.out +0 -0
- {yara_x-0.15.0 → yara_x-1.0.1}/lib/src/compiler/tests/testdata/warnings/29.in +0 -0
- {yara_x-0.15.0 → yara_x-1.0.1}/lib/src/compiler/tests/testdata/warnings/29.out +0 -0
- {yara_x-0.15.0 → yara_x-1.0.1}/lib/src/compiler/tests/testdata/warnings/3.in +0 -0
- {yara_x-0.15.0 → yara_x-1.0.1}/lib/src/compiler/tests/testdata/warnings/3.out +0 -0
- {yara_x-0.15.0 → yara_x-1.0.1}/lib/src/compiler/tests/testdata/warnings/30.in +0 -0
- {yara_x-0.15.0 → yara_x-1.0.1}/lib/src/compiler/tests/testdata/warnings/30.out +0 -0
- {yara_x-0.15.0 → yara_x-1.0.1}/lib/src/compiler/tests/testdata/warnings/31.in +0 -0
- {yara_x-0.15.0 → yara_x-1.0.1}/lib/src/compiler/tests/testdata/warnings/31.out +0 -0
- {yara_x-0.15.0 → yara_x-1.0.1}/lib/src/compiler/tests/testdata/warnings/32.in +0 -0
- {yara_x-0.15.0 → yara_x-1.0.1}/lib/src/compiler/tests/testdata/warnings/32.out +0 -0
- {yara_x-0.15.0 → yara_x-1.0.1}/lib/src/compiler/tests/testdata/warnings/33.in +0 -0
- {yara_x-0.15.0 → yara_x-1.0.1}/lib/src/compiler/tests/testdata/warnings/33.out +0 -0
- {yara_x-0.15.0 → yara_x-1.0.1}/lib/src/compiler/tests/testdata/warnings/34.in +0 -0
- {yara_x-0.15.0 → yara_x-1.0.1}/lib/src/compiler/tests/testdata/warnings/34.out +0 -0
- {yara_x-0.15.0 → yara_x-1.0.1}/lib/src/compiler/tests/testdata/warnings/35.in +0 -0
- {yara_x-0.15.0 → yara_x-1.0.1}/lib/src/compiler/tests/testdata/warnings/35.out +0 -0
- {yara_x-0.15.0 → yara_x-1.0.1}/lib/src/compiler/tests/testdata/warnings/4.in +0 -0
- {yara_x-0.15.0 → yara_x-1.0.1}/lib/src/compiler/tests/testdata/warnings/4.out +0 -0
- {yara_x-0.15.0 → yara_x-1.0.1}/lib/src/compiler/tests/testdata/warnings/5.in +0 -0
- {yara_x-0.15.0 → yara_x-1.0.1}/lib/src/compiler/tests/testdata/warnings/5.out +0 -0
- {yara_x-0.15.0 → yara_x-1.0.1}/lib/src/compiler/tests/testdata/warnings/6.in +0 -0
- {yara_x-0.15.0 → yara_x-1.0.1}/lib/src/compiler/tests/testdata/warnings/6.out +0 -0
- {yara_x-0.15.0 → yara_x-1.0.1}/lib/src/compiler/tests/testdata/warnings/7.in +0 -0
- {yara_x-0.15.0 → yara_x-1.0.1}/lib/src/compiler/tests/testdata/warnings/7.out +0 -0
- {yara_x-0.15.0 → yara_x-1.0.1}/lib/src/compiler/tests/testdata/warnings/8.in +0 -0
- {yara_x-0.15.0 → yara_x-1.0.1}/lib/src/compiler/tests/testdata/warnings/8.out +0 -0
- {yara_x-0.15.0 → yara_x-1.0.1}/lib/src/compiler/tests/testdata/warnings/9.in +0 -0
- {yara_x-0.15.0 → yara_x-1.0.1}/lib/src/compiler/tests/testdata/warnings/9.out +0 -0
- {yara_x-0.15.0 → yara_x-1.0.1}/lib/src/compiler/tests/testdata/warnings/no_warnings.in +0 -0
- {yara_x-0.15.0 → yara_x-1.0.1}/lib/src/compiler/tests/testdata/warnings/no_warnings.out +0 -0
- {yara_x-0.15.0 → yara_x-1.0.1}/lib/src/lib.rs +0 -0
- {yara_x-0.15.0 → yara_x-1.0.1}/lib/src/models.rs +0 -0
- {yara_x-0.15.0 → yara_x-1.0.1}/lib/src/modules/add_modules.rs +0 -0
- {yara_x-0.15.0 → yara_x-1.0.1}/lib/src/modules/console.rs +0 -0
- {yara_x-0.15.0 → yara_x-1.0.1}/lib/src/modules/cuckoo/mod.rs +0 -0
- {yara_x-0.15.0 → yara_x-1.0.1}/lib/src/modules/cuckoo/schema.rs +0 -0
- {yara_x-0.15.0 → yara_x-1.0.1}/lib/src/modules/cuckoo/tests/mod.rs +0 -0
- {yara_x-0.15.0 → yara_x-1.0.1}/lib/src/modules/cuckoo/tests/testdata/1.json +0 -0
- {yara_x-0.15.0 → yara_x-1.0.1}/lib/src/modules/cuckoo/tests/testdata/1.yar +0 -0
- {yara_x-0.15.0 → yara_x-1.0.1}/lib/src/modules/cuckoo/tests/testdata/2.json +0 -0
- {yara_x-0.15.0 → yara_x-1.0.1}/lib/src/modules/cuckoo/tests/testdata/2.yar +0 -0
- {yara_x-0.15.0 → yara_x-1.0.1}/lib/src/modules/dotnet/mod.rs +0 -0
- {yara_x-0.15.0 → yara_x-1.0.1}/lib/src/modules/dotnet/tests/testdata/605ebe5b5f4b94e1a73e0ad1162bd542e5cb948d1a4ea5a575a14d6b9d6ee849.in +0 -0
- {yara_x-0.15.0 → yara_x-1.0.1}/lib/src/modules/dotnet/tests/testdata/86a1e48cfc843eabfe1b468ef9358c1068950f849c612ab808225b359db0bb8c.in +0 -0
- {yara_x-0.15.0 → yara_x-1.0.1}/lib/src/modules/elf/parser.rs +0 -0
- {yara_x-0.15.0 → yara_x-1.0.1}/lib/src/modules/elf/tests/mod.rs +0 -0
- {yara_x-0.15.0 → yara_x-1.0.1}/lib/src/modules/hash/tests/mod.rs +0 -0
- {yara_x-0.15.0 → yara_x-1.0.1}/lib/src/modules/lnk/mod.rs +0 -0
- {yara_x-0.15.0 → yara_x-1.0.1}/lib/src/modules/lnk/parser.rs +0 -0
- {yara_x-0.15.0 → yara_x-1.0.1}/lib/src/modules/macho/mod.rs +0 -0
- {yara_x-0.15.0 → yara_x-1.0.1}/lib/src/modules/macho/parser.rs +0 -0
- {yara_x-0.15.0 → yara_x-1.0.1}/lib/src/modules/macho/tests/mod.rs +0 -0
- {yara_x-0.15.0 → yara_x-1.0.1}/lib/src/modules/magic/mod.rs +0 -0
- {yara_x-0.15.0 → yara_x-1.0.1}/lib/src/modules/magic/tests/mod.rs +0 -0
- {yara_x-0.15.0 → yara_x-1.0.1}/lib/src/modules/math.rs +0 -0
- {yara_x-0.15.0 → yara_x-1.0.1}/lib/src/modules/modules.rs +0 -0
- {yara_x-0.15.0 → yara_x-1.0.1}/lib/src/modules/pe/authenticode.rs +0 -0
- {yara_x-0.15.0 → yara_x-1.0.1}/lib/src/modules/pe/mod.rs +0 -0
- {yara_x-0.15.0 → yara_x-1.0.1}/lib/src/modules/pe/parser.rs +0 -0
- {yara_x-0.15.0 → yara_x-1.0.1}/lib/src/modules/pe/rva2off.rs +0 -0
- {yara_x-0.15.0 → yara_x-1.0.1}/lib/src/modules/pe/tests/mod.rs +0 -0
- {yara_x-0.15.0 → yara_x-1.0.1}/lib/src/modules/protos/console.proto +0 -0
- {yara_x-0.15.0 → yara_x-1.0.1}/lib/src/modules/protos/cuckoo.proto +0 -0
- {yara_x-0.15.0 → yara_x-1.0.1}/lib/src/modules/protos/hash.proto +0 -0
- {yara_x-0.15.0 → yara_x-1.0.1}/lib/src/modules/protos/lnk.proto +0 -0
- {yara_x-0.15.0 → yara_x-1.0.1}/lib/src/modules/protos/magic.proto +0 -0
- {yara_x-0.15.0 → yara_x-1.0.1}/lib/src/modules/protos/math.proto +0 -0
- {yara_x-0.15.0 → yara_x-1.0.1}/lib/src/modules/protos/mods.proto +0 -0
- {yara_x-0.15.0 → yara_x-1.0.1}/lib/src/modules/protos/string.proto +0 -0
- {yara_x-0.15.0 → yara_x-1.0.1}/lib/src/modules/protos/test_proto3.proto +0 -0
- {yara_x-0.15.0 → yara_x-1.0.1}/lib/src/modules/protos/text.proto +0 -0
- {yara_x-0.15.0 → yara_x-1.0.1}/lib/src/modules/protos/time.proto +0 -0
- {yara_x-0.15.0 → yara_x-1.0.1}/lib/src/modules/protos/vt/analysis.proto +0 -0
- {yara_x-0.15.0 → yara_x-1.0.1}/lib/src/modules/protos/vt/filetypes.proto +0 -0
- {yara_x-0.15.0 → yara_x-1.0.1}/lib/src/modules/protos/vt/gti_score.proto +0 -0
- {yara_x-0.15.0 → yara_x-1.0.1}/lib/src/modules/protos/vt/hunting_gti_score.proto +0 -0
- {yara_x-0.15.0 → yara_x-1.0.1}/lib/src/modules/protos/vt/sandbox.proto +0 -0
- {yara_x-0.15.0 → yara_x-1.0.1}/lib/src/modules/protos/vt/sigma.proto +0 -0
- {yara_x-0.15.0 → yara_x-1.0.1}/lib/src/modules/protos/vt/submitter.proto +0 -0
- {yara_x-0.15.0 → yara_x-1.0.1}/lib/src/modules/protos/vt/tools/net_analysis.proto +0 -0
- {yara_x-0.15.0 → yara_x-1.0.1}/lib/src/modules/string.rs +0 -0
- {yara_x-0.15.0 → yara_x-1.0.1}/lib/src/modules/test_proto2/tests/mod.rs +0 -0
- {yara_x-0.15.0 → yara_x-1.0.1}/lib/src/modules/test_proto3/mod.rs +0 -0
- {yara_x-0.15.0 → yara_x-1.0.1}/lib/src/modules/tests.rs +0 -0
- {yara_x-0.15.0 → yara_x-1.0.1}/lib/src/modules/text.rs +0 -0
- {yara_x-0.15.0 → yara_x-1.0.1}/lib/src/modules/time.rs +0 -0
- {yara_x-0.15.0 → yara_x-1.0.1}/lib/src/modules/utils/asn1.rs +0 -0
- {yara_x-0.15.0 → yara_x-1.0.1}/lib/src/modules/utils/mod.rs +0 -0
- {yara_x-0.15.0 → yara_x-1.0.1}/lib/src/modules/vt/bitsquatting.rs +0 -0
- {yara_x-0.15.0 → yara_x-1.0.1}/lib/src/modules/vt/homoglyphs.rs +0 -0
- {yara_x-0.15.0 → yara_x-1.0.1}/lib/src/modules/vt/interleaved.rs +0 -0
- {yara_x-0.15.0 → yara_x-1.0.1}/lib/src/modules/vt/mod.rs +0 -0
- {yara_x-0.15.0 → yara_x-1.0.1}/lib/src/modules/vt/typos.rs +0 -0
- {yara_x-0.15.0 → yara_x-1.0.1}/lib/src/re/bitmapset.rs +0 -0
- {yara_x-0.15.0 → yara_x-1.0.1}/lib/src/re/fast/compiler.rs +0 -0
- {yara_x-0.15.0 → yara_x-1.0.1}/lib/src/re/fast/fastvm.rs +0 -0
- {yara_x-0.15.0 → yara_x-1.0.1}/lib/src/re/fast/instr.rs +0 -0
- {yara_x-0.15.0 → yara_x-1.0.1}/lib/src/re/fast/mod.rs +0 -0
- {yara_x-0.15.0 → yara_x-1.0.1}/lib/src/re/hir.rs +0 -0
- {yara_x-0.15.0 → yara_x-1.0.1}/lib/src/re/mod.rs +0 -0
- {yara_x-0.15.0 → yara_x-1.0.1}/lib/src/re/parser.rs +0 -0
- {yara_x-0.15.0 → yara_x-1.0.1}/lib/src/re/thompson/compiler.rs +0 -0
- {yara_x-0.15.0 → yara_x-1.0.1}/lib/src/re/thompson/instr.rs +0 -0
- {yara_x-0.15.0 → yara_x-1.0.1}/lib/src/re/thompson/mod.rs +0 -0
- {yara_x-0.15.0 → yara_x-1.0.1}/lib/src/re/thompson/pikevm.rs +0 -0
- {yara_x-0.15.0 → yara_x-1.0.1}/lib/src/re/thompson/tests.rs +0 -0
- {yara_x-0.15.0 → yara_x-1.0.1}/lib/src/scanner/context.rs +0 -0
- {yara_x-0.15.0 → yara_x-1.0.1}/lib/src/scanner/matches.rs +0 -0
- {yara_x-0.15.0 → yara_x-1.0.1}/lib/src/scanner/tests.rs +0 -0
- {yara_x-0.15.0 → yara_x-1.0.1}/lib/src/tests/mod.rs +0 -0
- {yara_x-0.15.0 → yara_x-1.0.1}/lib/src/tests/testdata/jumps.bin +0 -0
- {yara_x-0.15.0 → yara_x-1.0.1}/lib/src/types/map.rs +0 -0
- {yara_x-0.15.0 → yara_x-1.0.1}/lib/src/wasm/builder.rs +0 -0
- {yara_x-0.15.0 → yara_x-1.0.1}/macros/Cargo.lock +0 -0
- {yara_x-0.15.0 → yara_x-1.0.1}/macros/Cargo.toml +0 -0
- {yara_x-0.15.0 → yara_x-1.0.1}/macros/src/error.rs +0 -0
- {yara_x-0.15.0 → yara_x-1.0.1}/macros/src/lib.rs +0 -0
- {yara_x-0.15.0 → yara_x-1.0.1}/macros/src/module_export.rs +0 -0
- {yara_x-0.15.0 → yara_x-1.0.1}/macros/src/module_main.rs +0 -0
- {yara_x-0.15.0 → yara_x-1.0.1}/parser/Cargo.toml +0 -0
- {yara_x-0.15.0 → yara_x-1.0.1}/parser/src/ast/ascii_tree.rs +0 -0
- {yara_x-0.15.0 → yara_x-1.0.1}/parser/src/ast/errors.rs +0 -0
- {yara_x-0.15.0 → yara_x-1.0.1}/parser/src/cst/mod.rs +0 -0
- {yara_x-0.15.0 → yara_x-1.0.1}/parser/src/cst/syntax_kind.rs +0 -0
- {yara_x-0.15.0 → yara_x-1.0.1}/parser/src/cst/syntax_stream.rs +0 -0
- {yara_x-0.15.0 → yara_x-1.0.1}/parser/src/cst/tests.rs +0 -0
- {yara_x-0.15.0 → yara_x-1.0.1}/parser/src/lib.rs +0 -0
- {yara_x-0.15.0 → yara_x-1.0.1}/parser/src/parser/mod.rs +0 -0
- {yara_x-0.15.0 → yara_x-1.0.1}/parser/src/parser/tests/mod.rs +0 -0
- {yara_x-0.15.0 → yara_x-1.0.1}/parser/src/parser/tests/testdata/arithmetic-ops.ast +0 -0
- {yara_x-0.15.0 → yara_x-1.0.1}/parser/src/parser/tests/testdata/arithmetic-ops.cst +0 -0
- {yara_x-0.15.0 → yara_x-1.0.1}/parser/src/parser/tests/testdata/arithmetic-ops.in +0 -0
- {yara_x-0.15.0 → yara_x-1.0.1}/parser/src/parser/tests/testdata/basic-1.ast +0 -0
- {yara_x-0.15.0 → yara_x-1.0.1}/parser/src/parser/tests/testdata/basic-1.cst +0 -0
- {yara_x-0.15.0 → yara_x-1.0.1}/parser/src/parser/tests/testdata/basic-1.in +0 -0
- {yara_x-0.15.0 → yara_x-1.0.1}/parser/src/parser/tests/testdata/basic-2.ast +0 -0
- {yara_x-0.15.0 → yara_x-1.0.1}/parser/src/parser/tests/testdata/basic-2.cst +0 -0
- {yara_x-0.15.0 → yara_x-1.0.1}/parser/src/parser/tests/testdata/basic-2.in +0 -0
- {yara_x-0.15.0 → yara_x-1.0.1}/parser/src/parser/tests/testdata/basic-3.ast +0 -0
- {yara_x-0.15.0 → yara_x-1.0.1}/parser/src/parser/tests/testdata/basic-3.cst +0 -0
- {yara_x-0.15.0 → yara_x-1.0.1}/parser/src/parser/tests/testdata/basic-3.in +0 -0
- {yara_x-0.15.0 → yara_x-1.0.1}/parser/src/parser/tests/testdata/basic-4.ast +0 -0
- {yara_x-0.15.0 → yara_x-1.0.1}/parser/src/parser/tests/testdata/basic-4.cst +0 -0
- {yara_x-0.15.0 → yara_x-1.0.1}/parser/src/parser/tests/testdata/basic-4.in +0 -0
- {yara_x-0.15.0 → yara_x-1.0.1}/parser/src/parser/tests/testdata/basic-error-1.ast +0 -0
- {yara_x-0.15.0 → yara_x-1.0.1}/parser/src/parser/tests/testdata/basic-error-1.cst +0 -0
- {yara_x-0.15.0 → yara_x-1.0.1}/parser/src/parser/tests/testdata/basic-error-1.in +0 -0
- {yara_x-0.15.0 → yara_x-1.0.1}/parser/src/parser/tests/testdata/basic-error-2.ast +0 -0
- {yara_x-0.15.0 → yara_x-1.0.1}/parser/src/parser/tests/testdata/basic-error-2.cst +0 -0
- {yara_x-0.15.0 → yara_x-1.0.1}/parser/src/parser/tests/testdata/basic-error-2.in +0 -0
- {yara_x-0.15.0 → yara_x-1.0.1}/parser/src/parser/tests/testdata/basic-error-3.ast +0 -0
- {yara_x-0.15.0 → yara_x-1.0.1}/parser/src/parser/tests/testdata/basic-error-3.cst +0 -0
- {yara_x-0.15.0 → yara_x-1.0.1}/parser/src/parser/tests/testdata/basic-error-3.in +0 -0
- {yara_x-0.15.0 → yara_x-1.0.1}/parser/src/parser/tests/testdata/basic-error-4.ast +0 -0
- {yara_x-0.15.0 → yara_x-1.0.1}/parser/src/parser/tests/testdata/basic-error-4.cst +0 -0
- {yara_x-0.15.0 → yara_x-1.0.1}/parser/src/parser/tests/testdata/basic-error-4.in +0 -0
- {yara_x-0.15.0 → yara_x-1.0.1}/parser/src/parser/tests/testdata/basic-error-5.ast +0 -0
- {yara_x-0.15.0 → yara_x-1.0.1}/parser/src/parser/tests/testdata/basic-error-5.cst +0 -0
- {yara_x-0.15.0 → yara_x-1.0.1}/parser/src/parser/tests/testdata/basic-error-5.in +0 -0
- {yara_x-0.15.0 → yara_x-1.0.1}/parser/src/parser/tests/testdata/bitwise-ops-error-1.ast +0 -0
- {yara_x-0.15.0 → yara_x-1.0.1}/parser/src/parser/tests/testdata/bitwise-ops-error-1.cst +0 -0
- {yara_x-0.15.0 → yara_x-1.0.1}/parser/src/parser/tests/testdata/bitwise-ops-error-1.in +0 -0
- {yara_x-0.15.0 → yara_x-1.0.1}/parser/src/parser/tests/testdata/bitwise-ops.ast +0 -0
- {yara_x-0.15.0 → yara_x-1.0.1}/parser/src/parser/tests/testdata/bitwise-ops.cst +0 -0
- {yara_x-0.15.0 → yara_x-1.0.1}/parser/src/parser/tests/testdata/bitwise-ops.in +0 -0
- {yara_x-0.15.0 → yara_x-1.0.1}/parser/src/parser/tests/testdata/comments.ast +0 -0
- {yara_x-0.15.0 → yara_x-1.0.1}/parser/src/parser/tests/testdata/comments.cst +0 -0
- {yara_x-0.15.0 → yara_x-1.0.1}/parser/src/parser/tests/testdata/comments.in +0 -0
- {yara_x-0.15.0 → yara_x-1.0.1}/parser/src/parser/tests/testdata/expr-1.ast +0 -0
- {yara_x-0.15.0 → yara_x-1.0.1}/parser/src/parser/tests/testdata/expr-1.cst +0 -0
- {yara_x-0.15.0 → yara_x-1.0.1}/parser/src/parser/tests/testdata/expr-1.in +0 -0
- {yara_x-0.15.0 → yara_x-1.0.1}/parser/src/parser/tests/testdata/expr-2.ast +0 -0
- {yara_x-0.15.0 → yara_x-1.0.1}/parser/src/parser/tests/testdata/expr-2.cst +0 -0
- {yara_x-0.15.0 → yara_x-1.0.1}/parser/src/parser/tests/testdata/expr-2.in +0 -0
- {yara_x-0.15.0 → yara_x-1.0.1}/parser/src/parser/tests/testdata/expr-3.ast +0 -0
- {yara_x-0.15.0 → yara_x-1.0.1}/parser/src/parser/tests/testdata/expr-3.cst +0 -0
- {yara_x-0.15.0 → yara_x-1.0.1}/parser/src/parser/tests/testdata/expr-3.in +0 -0
- {yara_x-0.15.0 → yara_x-1.0.1}/parser/src/parser/tests/testdata/expr-4.ast +0 -0
- {yara_x-0.15.0 → yara_x-1.0.1}/parser/src/parser/tests/testdata/expr-4.cst +0 -0
- {yara_x-0.15.0 → yara_x-1.0.1}/parser/src/parser/tests/testdata/expr-4.in +0 -0
- {yara_x-0.15.0 → yara_x-1.0.1}/parser/src/parser/tests/testdata/expr-5.ast +0 -0
- {yara_x-0.15.0 → yara_x-1.0.1}/parser/src/parser/tests/testdata/expr-5.cst +0 -0
- {yara_x-0.15.0 → yara_x-1.0.1}/parser/src/parser/tests/testdata/expr-5.in +0 -0
- {yara_x-0.15.0 → yara_x-1.0.1}/parser/src/parser/tests/testdata/expr-6.ast +0 -0
- {yara_x-0.15.0 → yara_x-1.0.1}/parser/src/parser/tests/testdata/expr-6.cst +0 -0
- {yara_x-0.15.0 → yara_x-1.0.1}/parser/src/parser/tests/testdata/expr-6.in +0 -0
- {yara_x-0.15.0 → yara_x-1.0.1}/parser/src/parser/tests/testdata/expr-error-1.ast +0 -0
- {yara_x-0.15.0 → yara_x-1.0.1}/parser/src/parser/tests/testdata/expr-error-1.cst +0 -0
- {yara_x-0.15.0 → yara_x-1.0.1}/parser/src/parser/tests/testdata/expr-error-1.in +0 -0
- {yara_x-0.15.0 → yara_x-1.0.1}/parser/src/parser/tests/testdata/for-1.ast +0 -0
- {yara_x-0.15.0 → yara_x-1.0.1}/parser/src/parser/tests/testdata/for-1.cst +0 -0
- {yara_x-0.15.0 → yara_x-1.0.1}/parser/src/parser/tests/testdata/for-1.in +0 -0
- {yara_x-0.15.0 → yara_x-1.0.1}/parser/src/parser/tests/testdata/for-2.ast +0 -0
- {yara_x-0.15.0 → yara_x-1.0.1}/parser/src/parser/tests/testdata/for-2.cst +0 -0
- {yara_x-0.15.0 → yara_x-1.0.1}/parser/src/parser/tests/testdata/for-2.in +0 -0
- {yara_x-0.15.0 → yara_x-1.0.1}/parser/src/parser/tests/testdata/for-3.ast +0 -0
- {yara_x-0.15.0 → yara_x-1.0.1}/parser/src/parser/tests/testdata/for-3.cst +0 -0
- {yara_x-0.15.0 → yara_x-1.0.1}/parser/src/parser/tests/testdata/for-3.in +0 -0
- {yara_x-0.15.0 → yara_x-1.0.1}/parser/src/parser/tests/testdata/for-4.ast +0 -0
- {yara_x-0.15.0 → yara_x-1.0.1}/parser/src/parser/tests/testdata/for-4.cst +0 -0
- {yara_x-0.15.0 → yara_x-1.0.1}/parser/src/parser/tests/testdata/for-4.in +0 -0
- {yara_x-0.15.0 → yara_x-1.0.1}/parser/src/parser/tests/testdata/for-5.ast +0 -0
- {yara_x-0.15.0 → yara_x-1.0.1}/parser/src/parser/tests/testdata/for-5.cst +0 -0
- {yara_x-0.15.0 → yara_x-1.0.1}/parser/src/parser/tests/testdata/for-5.in +0 -0
- {yara_x-0.15.0 → yara_x-1.0.1}/parser/src/parser/tests/testdata/for-error-1.ast +0 -0
- {yara_x-0.15.0 → yara_x-1.0.1}/parser/src/parser/tests/testdata/for-error-1.cst +0 -0
- {yara_x-0.15.0 → yara_x-1.0.1}/parser/src/parser/tests/testdata/for-error-1.in +0 -0
- {yara_x-0.15.0 → yara_x-1.0.1}/parser/src/parser/tests/testdata/func-call.ast +0 -0
- {yara_x-0.15.0 → yara_x-1.0.1}/parser/src/parser/tests/testdata/func-call.cst +0 -0
- {yara_x-0.15.0 → yara_x-1.0.1}/parser/src/parser/tests/testdata/func-call.in +0 -0
- {yara_x-0.15.0 → yara_x-1.0.1}/parser/src/parser/tests/testdata/hex-patterns-1.ast +0 -0
- {yara_x-0.15.0 → yara_x-1.0.1}/parser/src/parser/tests/testdata/hex-patterns-1.cst +0 -0
- {yara_x-0.15.0 → yara_x-1.0.1}/parser/src/parser/tests/testdata/hex-patterns-1.in +0 -0
- {yara_x-0.15.0 → yara_x-1.0.1}/parser/src/parser/tests/testdata/hex-patterns-2.ast +0 -0
- {yara_x-0.15.0 → yara_x-1.0.1}/parser/src/parser/tests/testdata/hex-patterns-2.cst +0 -0
- {yara_x-0.15.0 → yara_x-1.0.1}/parser/src/parser/tests/testdata/hex-patterns-2.in +0 -0
- {yara_x-0.15.0 → yara_x-1.0.1}/parser/src/parser/tests/testdata/hex-patterns-3.ast +0 -0
- {yara_x-0.15.0 → yara_x-1.0.1}/parser/src/parser/tests/testdata/hex-patterns-3.cst +0 -0
- {yara_x-0.15.0 → yara_x-1.0.1}/parser/src/parser/tests/testdata/hex-patterns-3.in +0 -0
- {yara_x-0.15.0 → yara_x-1.0.1}/parser/src/parser/tests/testdata/hex-patterns-error-1.ast +0 -0
- {yara_x-0.15.0 → yara_x-1.0.1}/parser/src/parser/tests/testdata/hex-patterns-error-1.cst +0 -0
- {yara_x-0.15.0 → yara_x-1.0.1}/parser/src/parser/tests/testdata/hex-patterns-error-1.in +0 -0
- {yara_x-0.15.0 → yara_x-1.0.1}/parser/src/parser/tests/testdata/hex-patterns-error-2.ast +0 -0
- {yara_x-0.15.0 → yara_x-1.0.1}/parser/src/parser/tests/testdata/hex-patterns-error-2.cst +0 -0
- {yara_x-0.15.0 → yara_x-1.0.1}/parser/src/parser/tests/testdata/hex-patterns-error-2.in +0 -0
- {yara_x-0.15.0 → yara_x-1.0.1}/parser/src/parser/tests/testdata/import.ast +0 -0
- {yara_x-0.15.0 → yara_x-1.0.1}/parser/src/parser/tests/testdata/import.cst +0 -0
- {yara_x-0.15.0 → yara_x-1.0.1}/parser/src/parser/tests/testdata/import.in +0 -0
- {yara_x-0.15.0 → yara_x-1.0.1}/parser/src/parser/tests/testdata/include.ast +0 -0
- {yara_x-0.15.0 → yara_x-1.0.1}/parser/src/parser/tests/testdata/include.cst +0 -0
- {yara_x-0.15.0 → yara_x-1.0.1}/parser/src/parser/tests/testdata/include.in +0 -0
- {yara_x-0.15.0 → yara_x-1.0.1}/parser/src/parser/tests/testdata/meta-error-1.ast +0 -0
- {yara_x-0.15.0 → yara_x-1.0.1}/parser/src/parser/tests/testdata/meta-error-1.cst +0 -0
- {yara_x-0.15.0 → yara_x-1.0.1}/parser/src/parser/tests/testdata/meta-error-1.in +0 -0
- {yara_x-0.15.0 → yara_x-1.0.1}/parser/src/parser/tests/testdata/meta-error-2.ast +0 -0
- {yara_x-0.15.0 → yara_x-1.0.1}/parser/src/parser/tests/testdata/meta-error-2.cst +0 -0
- {yara_x-0.15.0 → yara_x-1.0.1}/parser/src/parser/tests/testdata/meta-error-2.in +0 -0
- {yara_x-0.15.0 → yara_x-1.0.1}/parser/src/parser/tests/testdata/meta-error-3.ast +0 -0
- {yara_x-0.15.0 → yara_x-1.0.1}/parser/src/parser/tests/testdata/meta-error-3.cst +0 -0
- {yara_x-0.15.0 → yara_x-1.0.1}/parser/src/parser/tests/testdata/meta-error-3.in +0 -0
- {yara_x-0.15.0 → yara_x-1.0.1}/parser/src/parser/tests/testdata/meta-error-4.ast +0 -0
- {yara_x-0.15.0 → yara_x-1.0.1}/parser/src/parser/tests/testdata/meta-error-4.cst +0 -0
- {yara_x-0.15.0 → yara_x-1.0.1}/parser/src/parser/tests/testdata/meta-error-4.in +0 -0
- {yara_x-0.15.0 → yara_x-1.0.1}/parser/src/parser/tests/testdata/meta-error-5.ast +0 -0
- {yara_x-0.15.0 → yara_x-1.0.1}/parser/src/parser/tests/testdata/meta-error-5.cst +0 -0
- {yara_x-0.15.0 → yara_x-1.0.1}/parser/src/parser/tests/testdata/meta-error-5.in +0 -0
- {yara_x-0.15.0 → yara_x-1.0.1}/parser/src/parser/tests/testdata/meta-error-6.ast +0 -0
- {yara_x-0.15.0 → yara_x-1.0.1}/parser/src/parser/tests/testdata/meta-error-6.cst +0 -0
- {yara_x-0.15.0 → yara_x-1.0.1}/parser/src/parser/tests/testdata/meta-error-6.in +0 -0
- {yara_x-0.15.0 → yara_x-1.0.1}/parser/src/parser/tests/testdata/meta.ast +0 -0
- {yara_x-0.15.0 → yara_x-1.0.1}/parser/src/parser/tests/testdata/meta.cst +0 -0
- {yara_x-0.15.0 → yara_x-1.0.1}/parser/src/parser/tests/testdata/meta.in +0 -0
- {yara_x-0.15.0 → yara_x-1.0.1}/parser/src/parser/tests/testdata/of-1.ast +0 -0
- {yara_x-0.15.0 → yara_x-1.0.1}/parser/src/parser/tests/testdata/of-1.cst +0 -0
- {yara_x-0.15.0 → yara_x-1.0.1}/parser/src/parser/tests/testdata/of-1.in +0 -0
- {yara_x-0.15.0 → yara_x-1.0.1}/parser/src/parser/tests/testdata/of-error-1.ast +0 -0
- {yara_x-0.15.0 → yara_x-1.0.1}/parser/src/parser/tests/testdata/of-error-1.cst +0 -0
- {yara_x-0.15.0 → yara_x-1.0.1}/parser/src/parser/tests/testdata/of-error-1.in +0 -0
- {yara_x-0.15.0 → yara_x-1.0.1}/parser/src/parser/tests/testdata/pattern-mods-1.ast +0 -0
- {yara_x-0.15.0 → yara_x-1.0.1}/parser/src/parser/tests/testdata/pattern-mods-1.cst +0 -0
- {yara_x-0.15.0 → yara_x-1.0.1}/parser/src/parser/tests/testdata/pattern-mods-1.in +0 -0
- {yara_x-0.15.0 → yara_x-1.0.1}/parser/src/parser/tests/testdata/pattern-mods-error-1.ast +0 -0
- {yara_x-0.15.0 → yara_x-1.0.1}/parser/src/parser/tests/testdata/pattern-mods-error-1.cst +0 -0
- {yara_x-0.15.0 → yara_x-1.0.1}/parser/src/parser/tests/testdata/pattern-mods-error-1.in +0 -0
- {yara_x-0.15.0 → yara_x-1.0.1}/parser/src/parser/tests/testdata/patterns-1.ast +0 -0
- {yara_x-0.15.0 → yara_x-1.0.1}/parser/src/parser/tests/testdata/patterns-1.cst +0 -0
- {yara_x-0.15.0 → yara_x-1.0.1}/parser/src/parser/tests/testdata/patterns-1.in +0 -0
- {yara_x-0.15.0 → yara_x-1.0.1}/parser/src/parser/tests/testdata/patterns-2.ast +0 -0
- {yara_x-0.15.0 → yara_x-1.0.1}/parser/src/parser/tests/testdata/patterns-2.cst +0 -0
- {yara_x-0.15.0 → yara_x-1.0.1}/parser/src/parser/tests/testdata/patterns-2.in +0 -0
- {yara_x-0.15.0 → yara_x-1.0.1}/parser/src/parser/tests/testdata/patterns-3.ast +0 -0
- {yara_x-0.15.0 → yara_x-1.0.1}/parser/src/parser/tests/testdata/patterns-3.cst +0 -0
- {yara_x-0.15.0 → yara_x-1.0.1}/parser/src/parser/tests/testdata/patterns-3.in +0 -0
- {yara_x-0.15.0 → yara_x-1.0.1}/parser/src/parser/tests/testdata/patterns-error-1.ast +0 -0
- {yara_x-0.15.0 → yara_x-1.0.1}/parser/src/parser/tests/testdata/patterns-error-1.cst +0 -0
- {yara_x-0.15.0 → yara_x-1.0.1}/parser/src/parser/tests/testdata/patterns-error-1.in +0 -0
- {yara_x-0.15.0 → yara_x-1.0.1}/parser/src/parser/tests/testdata/patterns-error-2.ast +0 -0
- {yara_x-0.15.0 → yara_x-1.0.1}/parser/src/parser/tests/testdata/patterns-error-2.cst +0 -0
- {yara_x-0.15.0 → yara_x-1.0.1}/parser/src/parser/tests/testdata/patterns-error-2.in +0 -0
- {yara_x-0.15.0 → yara_x-1.0.1}/parser/src/parser/tests/testdata/patterns-error-3.ast +0 -0
- {yara_x-0.15.0 → yara_x-1.0.1}/parser/src/parser/tests/testdata/patterns-error-3.cst +0 -0
- {yara_x-0.15.0 → yara_x-1.0.1}/parser/src/parser/tests/testdata/patterns-error-3.in +0 -0
- {yara_x-0.15.0 → yara_x-1.0.1}/parser/src/parser/tests/testdata/patterns-error-4.ast +0 -0
- {yara_x-0.15.0 → yara_x-1.0.1}/parser/src/parser/tests/testdata/patterns-error-4.cst +0 -0
- {yara_x-0.15.0 → yara_x-1.0.1}/parser/src/parser/tests/testdata/patterns-error-4.in +0 -0
- {yara_x-0.15.0 → yara_x-1.0.1}/parser/src/parser/tests/testdata/patterns-error-5.ast +0 -0
- {yara_x-0.15.0 → yara_x-1.0.1}/parser/src/parser/tests/testdata/patterns-error-5.cst +0 -0
- {yara_x-0.15.0 → yara_x-1.0.1}/parser/src/parser/tests/testdata/patterns-error-5.in +0 -0
- {yara_x-0.15.0 → yara_x-1.0.1}/parser/src/parser/tests/testdata/patterns-error-6.ast +0 -0
- {yara_x-0.15.0 → yara_x-1.0.1}/parser/src/parser/tests/testdata/patterns-error-6.cst +0 -0
- {yara_x-0.15.0 → yara_x-1.0.1}/parser/src/parser/tests/testdata/patterns-error-6.in +0 -0
- {yara_x-0.15.0 → yara_x-1.0.1}/parser/src/parser/tests/testdata/patterns-error-7.ast +0 -0
- {yara_x-0.15.0 → yara_x-1.0.1}/parser/src/parser/tests/testdata/patterns-error-7.cst +0 -0
- {yara_x-0.15.0 → yara_x-1.0.1}/parser/src/parser/tests/testdata/patterns-error-7.in +0 -0
- {yara_x-0.15.0 → yara_x-1.0.1}/parser/src/parser/tests/testdata/rule-mods-1.ast +0 -0
- {yara_x-0.15.0 → yara_x-1.0.1}/parser/src/parser/tests/testdata/rule-mods-1.cst +0 -0
- {yara_x-0.15.0 → yara_x-1.0.1}/parser/src/parser/tests/testdata/rule-mods-1.in +0 -0
- {yara_x-0.15.0 → yara_x-1.0.1}/parser/src/parser/tests/testdata/rule-tags-error-1.ast +0 -0
- {yara_x-0.15.0 → yara_x-1.0.1}/parser/src/parser/tests/testdata/rule-tags-error-1.cst +0 -0
- {yara_x-0.15.0 → yara_x-1.0.1}/parser/src/parser/tests/testdata/rule-tags-error-1.in +0 -0
- {yara_x-0.15.0 → yara_x-1.0.1}/parser/src/parser/tests/testdata/rule-tags-error-2.ast +0 -0
- {yara_x-0.15.0 → yara_x-1.0.1}/parser/src/parser/tests/testdata/rule-tags-error-2.cst +0 -0
- {yara_x-0.15.0 → yara_x-1.0.1}/parser/src/parser/tests/testdata/rule-tags-error-2.in +0 -0
- {yara_x-0.15.0 → yara_x-1.0.1}/parser/src/parser/tests/testdata/rule-tags-error-3.ast +0 -0
- {yara_x-0.15.0 → yara_x-1.0.1}/parser/src/parser/tests/testdata/rule-tags-error-3.cst +0 -0
- {yara_x-0.15.0 → yara_x-1.0.1}/parser/src/parser/tests/testdata/rule-tags-error-3.in +0 -0
- {yara_x-0.15.0 → yara_x-1.0.1}/parser/src/parser/tests/testdata/rule-tags.ast +0 -0
- {yara_x-0.15.0 → yara_x-1.0.1}/parser/src/parser/tests/testdata/rule-tags.cst +0 -0
- {yara_x-0.15.0 → yara_x-1.0.1}/parser/src/parser/tests/testdata/rule-tags.in +0 -0
- {yara_x-0.15.0 → yara_x-1.0.1}/parser/src/parser/tests/testdata/with-1.ast +0 -0
- {yara_x-0.15.0 → yara_x-1.0.1}/parser/src/parser/tests/testdata/with-1.cst +0 -0
- {yara_x-0.15.0 → yara_x-1.0.1}/parser/src/parser/tests/testdata/with-1.in +0 -0
- {yara_x-0.15.0 → yara_x-1.0.1}/parser/src/parser/tests/testdata/with-2.ast +0 -0
- {yara_x-0.15.0 → yara_x-1.0.1}/parser/src/parser/tests/testdata/with-2.cst +0 -0
- {yara_x-0.15.0 → yara_x-1.0.1}/parser/src/parser/tests/testdata/with-2.in +0 -0
- {yara_x-0.15.0 → yara_x-1.0.1}/parser/src/parser/tests/testdata/with-error-1.ast +0 -0
- {yara_x-0.15.0 → yara_x-1.0.1}/parser/src/parser/tests/testdata/with-error-1.cst +0 -0
- {yara_x-0.15.0 → yara_x-1.0.1}/parser/src/parser/tests/testdata/with-error-1.in +0 -0
- {yara_x-0.15.0 → yara_x-1.0.1}/parser/src/parser/tests/testdata/with-error-2.ast +0 -0
- {yara_x-0.15.0 → yara_x-1.0.1}/parser/src/parser/tests/testdata/with-error-2.cst +0 -0
- {yara_x-0.15.0 → yara_x-1.0.1}/parser/src/parser/tests/testdata/with-error-2.in +0 -0
- {yara_x-0.15.0 → yara_x-1.0.1}/parser/src/parser/tests/testdata/with-error-3.ast +0 -0
- {yara_x-0.15.0 → yara_x-1.0.1}/parser/src/parser/tests/testdata/with-error-3.cst +0 -0
- {yara_x-0.15.0 → yara_x-1.0.1}/parser/src/parser/tests/testdata/with-error-3.in +0 -0
- {yara_x-0.15.0 → yara_x-1.0.1}/parser/src/parser/token_stream.rs +0 -0
- {yara_x-0.15.0 → yara_x-1.0.1}/parser/src/tokenizer/mod.rs +0 -0
- {yara_x-0.15.0 → yara_x-1.0.1}/parser/src/tokenizer/tests.rs +0 -0
- {yara_x-0.15.0 → yara_x-1.0.1}/parser/src/tokenizer/tokens.rs +0 -0
- {yara_x-0.15.0 → yara_x-1.0.1}/proto/Cargo.lock +0 -0
- {yara_x-0.15.0 → yara_x-1.0.1}/proto/Cargo.toml +0 -0
- {yara_x-0.15.0 → yara_x-1.0.1}/proto/build.rs +0 -0
- {yara_x-0.15.0 → yara_x-1.0.1}/proto-yaml/src/tests/mod.rs +0 -0
- {yara_x-0.15.0 → yara_x-1.0.1}/proto-yaml/src/tests/testdata/1.in +0 -0
- {yara_x-0.15.0 → yara_x-1.0.1}/proto-yaml/src/tests/testdata/1.out +0 -0
- {yara_x-0.15.0 → yara_x-1.0.1}/py/README.md +0 -0
- {yara_x-0.15.0 → yara_x-1.0.1}/py/build.rs +0 -0
- {yara_x-0.15.0 → yara_x-1.0.1}/py/yara_x.pyi +0 -0
- {yara_x-0.15.0 → yara_x-1.0.1}/pyproject.toml +0 -0
|
@@ -30,16 +30,16 @@ dependencies = [
|
|
|
30
30
|
|
|
31
31
|
[[package]]
|
|
32
32
|
name = "ahash"
|
|
33
|
-
version = "0.8.
|
|
33
|
+
version = "0.8.12"
|
|
34
34
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
35
|
-
checksum = "
|
|
35
|
+
checksum = "5a15f179cd60c4584b8a8c596927aadc462e27f2ca70c04e0071964a73ba7a75"
|
|
36
36
|
dependencies = [
|
|
37
37
|
"cfg-if",
|
|
38
38
|
"const-random",
|
|
39
|
-
"getrandom 0.
|
|
39
|
+
"getrandom 0.3.3",
|
|
40
40
|
"once_cell",
|
|
41
41
|
"version_check",
|
|
42
|
-
"zerocopy
|
|
42
|
+
"zerocopy",
|
|
43
43
|
]
|
|
44
44
|
|
|
45
45
|
[[package]]
|
|
@@ -139,12 +139,12 @@ dependencies = [
|
|
|
139
139
|
|
|
140
140
|
[[package]]
|
|
141
141
|
name = "anstyle-wincon"
|
|
142
|
-
version = "3.0.
|
|
142
|
+
version = "3.0.8"
|
|
143
143
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
144
|
-
checksum = "
|
|
144
|
+
checksum = "6680de5231bd6ee4c6191b8a1325daa282b415391ec9d3a37bd34f2060dc73fa"
|
|
145
145
|
dependencies = [
|
|
146
146
|
"anstyle",
|
|
147
|
-
"
|
|
147
|
+
"once_cell_polyfill",
|
|
148
148
|
"windows-sys 0.59.0",
|
|
149
149
|
]
|
|
150
150
|
|
|
@@ -165,9 +165,9 @@ dependencies = [
|
|
|
165
165
|
|
|
166
166
|
[[package]]
|
|
167
167
|
name = "array-bytes"
|
|
168
|
-
version = "9.1
|
|
168
|
+
version = "9.2.1"
|
|
169
169
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
170
|
-
checksum = "
|
|
170
|
+
checksum = "72995684d3ec25cefacc30147756ee639b9da0895cc41b44c31e3eca111fbde2"
|
|
171
171
|
dependencies = [
|
|
172
172
|
"smallvec",
|
|
173
173
|
]
|
|
@@ -235,9 +235,9 @@ dependencies = [
|
|
|
235
235
|
|
|
236
236
|
[[package]]
|
|
237
237
|
name = "assert_fs"
|
|
238
|
-
version = "1.1.
|
|
238
|
+
version = "1.1.3"
|
|
239
239
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
240
|
-
checksum = "
|
|
240
|
+
checksum = "a652f6cb1f516886fcfee5e7a5c078b9ade62cfcb889524efe5a64d682dd27a9"
|
|
241
241
|
dependencies = [
|
|
242
242
|
"anstyle",
|
|
243
243
|
"doc-comment",
|
|
@@ -295,11 +295,22 @@ checksum = "3a8241f3ebb85c056b509d4327ad0358fbbba6ffb340bf388f26350aeda225b1"
|
|
|
295
295
|
|
|
296
296
|
[[package]]
|
|
297
297
|
name = "bincode"
|
|
298
|
-
version = "
|
|
298
|
+
version = "2.0.1"
|
|
299
299
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
300
|
-
checksum = "
|
|
300
|
+
checksum = "36eaf5d7b090263e8150820482d5d93cd964a81e4019913c972f4edcc6edb740"
|
|
301
301
|
dependencies = [
|
|
302
|
+
"bincode_derive",
|
|
302
303
|
"serde",
|
|
304
|
+
"unty",
|
|
305
|
+
]
|
|
306
|
+
|
|
307
|
+
[[package]]
|
|
308
|
+
name = "bincode_derive"
|
|
309
|
+
version = "2.0.1"
|
|
310
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
311
|
+
checksum = "bf95709a440f45e986983918d0e8a1f30a9b1df04918fc828670606804ac3c09"
|
|
312
|
+
dependencies = [
|
|
313
|
+
"virtue",
|
|
303
314
|
]
|
|
304
315
|
|
|
305
316
|
[[package]]
|
|
@@ -310,9 +321,9 @@ checksum = "bef38d45163c2f1dde094a7dfd33ccf595c92905c8f8f4fdc18d06fb1037718a"
|
|
|
310
321
|
|
|
311
322
|
[[package]]
|
|
312
323
|
name = "bitflags"
|
|
313
|
-
version = "2.9.
|
|
324
|
+
version = "2.9.1"
|
|
314
325
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
315
|
-
checksum = "
|
|
326
|
+
checksum = "1b8e56985ec62d17e9c1001dc89c88ecd7dc08e47eba5ec7c29c7b5eeecde967"
|
|
316
327
|
dependencies = [
|
|
317
328
|
"serde",
|
|
318
329
|
]
|
|
@@ -349,9 +360,9 @@ dependencies = [
|
|
|
349
360
|
|
|
350
361
|
[[package]]
|
|
351
362
|
name = "brotli"
|
|
352
|
-
version = "
|
|
363
|
+
version = "8.0.1"
|
|
353
364
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
354
|
-
checksum = "
|
|
365
|
+
checksum = "9991eea70ea4f293524138648e41ee89b0b2b12ddef3b255effa43c8056e0e0d"
|
|
355
366
|
dependencies = [
|
|
356
367
|
"alloc-no-stdlib",
|
|
357
368
|
"alloc-stdlib",
|
|
@@ -360,9 +371,9 @@ dependencies = [
|
|
|
360
371
|
|
|
361
372
|
[[package]]
|
|
362
373
|
name = "brotli-decompressor"
|
|
363
|
-
version = "
|
|
374
|
+
version = "5.0.0"
|
|
364
375
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
365
|
-
checksum = "
|
|
376
|
+
checksum = "874bb8112abecc98cbd6d81ea4fa7e94fb9449648c93cc89aa40c81c24d7de03"
|
|
366
377
|
dependencies = [
|
|
367
378
|
"alloc-no-stdlib",
|
|
368
379
|
"alloc-stdlib",
|
|
@@ -390,9 +401,9 @@ dependencies = [
|
|
|
390
401
|
|
|
391
402
|
[[package]]
|
|
392
403
|
name = "bytecount"
|
|
393
|
-
version = "0.6.
|
|
404
|
+
version = "0.6.9"
|
|
394
405
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
395
|
-
checksum = "
|
|
406
|
+
checksum = "175812e0be2bccb6abe50bb8d566126198344f707e304f45c648fd8f2cc0365e"
|
|
396
407
|
|
|
397
408
|
[[package]]
|
|
398
409
|
name = "bytemuck"
|
|
@@ -427,9 +438,9 @@ dependencies = [
|
|
|
427
438
|
|
|
428
439
|
[[package]]
|
|
429
440
|
name = "camino"
|
|
430
|
-
version = "1.1.
|
|
441
|
+
version = "1.1.10"
|
|
431
442
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
432
|
-
checksum = "
|
|
443
|
+
checksum = "0da45bc31171d8d6960122e222a67740df867c1dd53b4d51caa297084c185cab"
|
|
433
444
|
dependencies = [
|
|
434
445
|
"serde",
|
|
435
446
|
]
|
|
@@ -467,12 +478,12 @@ dependencies = [
|
|
|
467
478
|
|
|
468
479
|
[[package]]
|
|
469
480
|
name = "cbindgen"
|
|
470
|
-
version = "0.
|
|
481
|
+
version = "0.29.0"
|
|
471
482
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
472
|
-
checksum = "
|
|
483
|
+
checksum = "975982cdb7ad6a142be15bdf84aea7ec6a9e5d4d797c004d43185b24cfe4e684"
|
|
473
484
|
dependencies = [
|
|
474
485
|
"clap",
|
|
475
|
-
"heck
|
|
486
|
+
"heck",
|
|
476
487
|
"indexmap 2.9.0",
|
|
477
488
|
"log",
|
|
478
489
|
"proc-macro2",
|
|
@@ -486,9 +497,9 @@ dependencies = [
|
|
|
486
497
|
|
|
487
498
|
[[package]]
|
|
488
499
|
name = "cc"
|
|
489
|
-
version = "1.2.
|
|
500
|
+
version = "1.2.25"
|
|
490
501
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
491
|
-
checksum = "
|
|
502
|
+
checksum = "d0fc897dc1e865cc67c0e05a836d9d3f1df3cbe442aa4a9473b18e12624a4951"
|
|
492
503
|
dependencies = [
|
|
493
504
|
"jobserver",
|
|
494
505
|
"libc",
|
|
@@ -538,9 +549,9 @@ dependencies = [
|
|
|
538
549
|
|
|
539
550
|
[[package]]
|
|
540
551
|
name = "clap"
|
|
541
|
-
version = "4.5.
|
|
552
|
+
version = "4.5.39"
|
|
542
553
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
543
|
-
checksum = "
|
|
554
|
+
checksum = "fd60e63e9be68e5fb56422e397cf9baddded06dae1d2e523401542383bc72a9f"
|
|
544
555
|
dependencies = [
|
|
545
556
|
"clap_builder",
|
|
546
557
|
"clap_derive",
|
|
@@ -548,9 +559,9 @@ dependencies = [
|
|
|
548
559
|
|
|
549
560
|
[[package]]
|
|
550
561
|
name = "clap_builder"
|
|
551
|
-
version = "4.5.
|
|
562
|
+
version = "4.5.39"
|
|
552
563
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
553
|
-
checksum = "
|
|
564
|
+
checksum = "89cc6392a1f72bbeb820d71f32108f61fdaf18bc526e1d23954168a67759ef51"
|
|
554
565
|
dependencies = [
|
|
555
566
|
"anstream",
|
|
556
567
|
"anstyle",
|
|
@@ -560,9 +571,9 @@ dependencies = [
|
|
|
560
571
|
|
|
561
572
|
[[package]]
|
|
562
573
|
name = "clap_complete"
|
|
563
|
-
version = "4.5.
|
|
574
|
+
version = "4.5.52"
|
|
564
575
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
565
|
-
checksum = "
|
|
576
|
+
checksum = "1a554639e42d0c838336fc4fbedb9e2df3ad1fa4acda149f9126b4ccfcd7900f"
|
|
566
577
|
dependencies = [
|
|
567
578
|
"clap",
|
|
568
579
|
]
|
|
@@ -573,7 +584,7 @@ version = "4.5.32"
|
|
|
573
584
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
574
585
|
checksum = "09176aae279615badda0765c0c0b3f6ed53f4709118af73cf4655d85d1530cd7"
|
|
575
586
|
dependencies = [
|
|
576
|
-
"heck
|
|
587
|
+
"heck",
|
|
577
588
|
"proc-macro2",
|
|
578
589
|
"quote",
|
|
579
590
|
"syn 2.0.101",
|
|
@@ -597,17 +608,6 @@ version = "1.0.3"
|
|
|
597
608
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
598
609
|
checksum = "5b63caa9aa9397e2d9480a9b13673856c78d8ac123288526c37d7839f2a86990"
|
|
599
610
|
|
|
600
|
-
[[package]]
|
|
601
|
-
name = "colored_json"
|
|
602
|
-
version = "5.0.0"
|
|
603
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
604
|
-
checksum = "e35980a1b846f8e3e359fd18099172a0857140ba9230affc4f71348081e039b6"
|
|
605
|
-
dependencies = [
|
|
606
|
-
"serde",
|
|
607
|
-
"serde_json",
|
|
608
|
-
"yansi",
|
|
609
|
-
]
|
|
610
|
-
|
|
611
611
|
[[package]]
|
|
612
612
|
name = "compact_str"
|
|
613
613
|
version = "0.9.0"
|
|
@@ -666,6 +666,15 @@ version = "0.3.1"
|
|
|
666
666
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
667
667
|
checksum = "7c74b8349d32d297c9134b8c88677813a227df8f779daa29bfc29c183fe3dca6"
|
|
668
668
|
|
|
669
|
+
[[package]]
|
|
670
|
+
name = "convert_case"
|
|
671
|
+
version = "0.7.1"
|
|
672
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
673
|
+
checksum = "bb402b8d4c85569410425650ce3eddc7d698ed96d39a73f941b08fb63082f1e7"
|
|
674
|
+
dependencies = [
|
|
675
|
+
"unicode-segmentation",
|
|
676
|
+
]
|
|
677
|
+
|
|
669
678
|
[[package]]
|
|
670
679
|
name = "core-foundation-sys"
|
|
671
680
|
version = "0.8.7"
|
|
@@ -689,36 +698,36 @@ dependencies = [
|
|
|
689
698
|
|
|
690
699
|
[[package]]
|
|
691
700
|
name = "cranelift-assembler-x64"
|
|
692
|
-
version = "0.
|
|
701
|
+
version = "0.120.0"
|
|
693
702
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
694
|
-
checksum = "
|
|
703
|
+
checksum = "9ff8e35182c7372df00447cb90a04e584e032c42b9b9b6e8c50ddaaf0d7900d5"
|
|
695
704
|
dependencies = [
|
|
696
705
|
"cranelift-assembler-x64-meta",
|
|
697
706
|
]
|
|
698
707
|
|
|
699
708
|
[[package]]
|
|
700
709
|
name = "cranelift-assembler-x64-meta"
|
|
701
|
-
version = "0.
|
|
710
|
+
version = "0.120.0"
|
|
702
711
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
703
|
-
checksum = "
|
|
712
|
+
checksum = "14220f9c2698015c3b94dc6b84ae045c1c45509ddc406e43c6139252757fdb7a"
|
|
704
713
|
dependencies = [
|
|
705
714
|
"cranelift-srcgen",
|
|
706
715
|
]
|
|
707
716
|
|
|
708
717
|
[[package]]
|
|
709
718
|
name = "cranelift-bforest"
|
|
710
|
-
version = "0.
|
|
719
|
+
version = "0.120.0"
|
|
711
720
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
712
|
-
checksum = "
|
|
721
|
+
checksum = "d372ef2777ceefd75829e1390211ac240e9196bc60699218f7ea2419038288ee"
|
|
713
722
|
dependencies = [
|
|
714
723
|
"cranelift-entity",
|
|
715
724
|
]
|
|
716
725
|
|
|
717
726
|
[[package]]
|
|
718
727
|
name = "cranelift-bitset"
|
|
719
|
-
version = "0.
|
|
728
|
+
version = "0.120.0"
|
|
720
729
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
721
|
-
checksum = "
|
|
730
|
+
checksum = "56323783e423818fa89ce8078e90a3913d2a6e0810399bfce8ebd7ee87baa81f"
|
|
722
731
|
dependencies = [
|
|
723
732
|
"serde",
|
|
724
733
|
"serde_derive",
|
|
@@ -726,9 +735,9 @@ dependencies = [
|
|
|
726
735
|
|
|
727
736
|
[[package]]
|
|
728
737
|
name = "cranelift-codegen"
|
|
729
|
-
version = "0.
|
|
738
|
+
version = "0.120.0"
|
|
730
739
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
731
|
-
checksum = "
|
|
740
|
+
checksum = "74ffb780aab6186c6e9ba26519654b1ac55a09c0a866f6088a4efbbd84da68ed"
|
|
732
741
|
dependencies = [
|
|
733
742
|
"bumpalo",
|
|
734
743
|
"cranelift-assembler-x64",
|
|
@@ -740,7 +749,7 @@ dependencies = [
|
|
|
740
749
|
"cranelift-entity",
|
|
741
750
|
"cranelift-isle",
|
|
742
751
|
"gimli 0.31.1",
|
|
743
|
-
"hashbrown 0.15.
|
|
752
|
+
"hashbrown 0.15.3",
|
|
744
753
|
"log",
|
|
745
754
|
"pulley-interpreter",
|
|
746
755
|
"regalloc2",
|
|
@@ -752,9 +761,9 @@ dependencies = [
|
|
|
752
761
|
|
|
753
762
|
[[package]]
|
|
754
763
|
name = "cranelift-codegen-meta"
|
|
755
|
-
version = "0.
|
|
764
|
+
version = "0.120.0"
|
|
756
765
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
757
|
-
checksum = "
|
|
766
|
+
checksum = "c23ef13814d3b39c869650d5961128cbbecad83fbdff4e6836a03ecf6862d7ed"
|
|
758
767
|
dependencies = [
|
|
759
768
|
"cranelift-assembler-x64-meta",
|
|
760
769
|
"cranelift-codegen-shared",
|
|
@@ -764,24 +773,24 @@ dependencies = [
|
|
|
764
773
|
|
|
765
774
|
[[package]]
|
|
766
775
|
name = "cranelift-codegen-shared"
|
|
767
|
-
version = "0.
|
|
776
|
+
version = "0.120.0"
|
|
768
777
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
769
|
-
checksum = "
|
|
778
|
+
checksum = "b9f623300657679f847803ce80811454bfff89cea4f6bf684be5c468d4a73631"
|
|
770
779
|
|
|
771
780
|
[[package]]
|
|
772
781
|
name = "cranelift-control"
|
|
773
|
-
version = "0.
|
|
782
|
+
version = "0.120.0"
|
|
774
783
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
775
|
-
checksum = "
|
|
784
|
+
checksum = "31f4168af69989aa6b91fab46799ed4df6096f3209f4a6c8fb4358f49c60188f"
|
|
776
785
|
dependencies = [
|
|
777
786
|
"arbitrary",
|
|
778
787
|
]
|
|
779
788
|
|
|
780
789
|
[[package]]
|
|
781
790
|
name = "cranelift-entity"
|
|
782
|
-
version = "0.
|
|
791
|
+
version = "0.120.0"
|
|
783
792
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
784
|
-
checksum = "
|
|
793
|
+
checksum = "ca6fa9bae1c8de26d71ac2162f069447610fd91e7780cb480ee0d76ac81eabb8"
|
|
785
794
|
dependencies = [
|
|
786
795
|
"cranelift-bitset",
|
|
787
796
|
"serde",
|
|
@@ -790,9 +799,9 @@ dependencies = [
|
|
|
790
799
|
|
|
791
800
|
[[package]]
|
|
792
801
|
name = "cranelift-frontend"
|
|
793
|
-
version = "0.
|
|
802
|
+
version = "0.120.0"
|
|
794
803
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
795
|
-
checksum = "
|
|
804
|
+
checksum = "b8219205608aa0b0e6769b580284a7e055c7e0c323c1041cde7ca078add3e412"
|
|
796
805
|
dependencies = [
|
|
797
806
|
"cranelift-codegen",
|
|
798
807
|
"log",
|
|
@@ -802,15 +811,15 @@ dependencies = [
|
|
|
802
811
|
|
|
803
812
|
[[package]]
|
|
804
813
|
name = "cranelift-isle"
|
|
805
|
-
version = "0.
|
|
814
|
+
version = "0.120.0"
|
|
806
815
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
807
|
-
checksum = "
|
|
816
|
+
checksum = "588d0c5964f10860b04043e55aab26d7f7a206b0fd4f10c5260e8aa5773832bd"
|
|
808
817
|
|
|
809
818
|
[[package]]
|
|
810
819
|
name = "cranelift-native"
|
|
811
|
-
version = "0.
|
|
820
|
+
version = "0.120.0"
|
|
812
821
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
813
|
-
checksum = "
|
|
822
|
+
checksum = "19ed3c94cb97b14f92b6a94a1d45ef8c851f6a2ad9114e5d91d233f7da638fed"
|
|
814
823
|
dependencies = [
|
|
815
824
|
"cranelift-codegen",
|
|
816
825
|
"libc",
|
|
@@ -819,24 +828,9 @@ dependencies = [
|
|
|
819
828
|
|
|
820
829
|
[[package]]
|
|
821
830
|
name = "cranelift-srcgen"
|
|
822
|
-
version = "0.
|
|
831
|
+
version = "0.120.0"
|
|
823
832
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
824
|
-
checksum = "
|
|
825
|
-
|
|
826
|
-
[[package]]
|
|
827
|
-
name = "crc"
|
|
828
|
-
version = "3.2.1"
|
|
829
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
830
|
-
checksum = "69e6e4d7b33a94f0991c26729976b10ebde1d34c3ee82408fb536164fa10d636"
|
|
831
|
-
dependencies = [
|
|
832
|
-
"crc-catalog",
|
|
833
|
-
]
|
|
834
|
-
|
|
835
|
-
[[package]]
|
|
836
|
-
name = "crc-catalog"
|
|
837
|
-
version = "2.4.0"
|
|
838
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
839
|
-
checksum = "19d374276b40fb8bbdee95aef7c7fa6b5316ec764510eb64b8dd0e2ed0d7e7f5"
|
|
833
|
+
checksum = "85256fac1519a7d25a040c1d850fba67478f3f021ad5fdf738ba4425ee862dbf"
|
|
840
834
|
|
|
841
835
|
[[package]]
|
|
842
836
|
name = "crc32fast"
|
|
@@ -914,23 +908,25 @@ dependencies = [
|
|
|
914
908
|
"libc",
|
|
915
909
|
"mio 0.8.11",
|
|
916
910
|
"parking_lot",
|
|
917
|
-
"signal-hook 0.3.
|
|
911
|
+
"signal-hook 0.3.18",
|
|
918
912
|
"signal-hook-mio",
|
|
919
913
|
"winapi",
|
|
920
914
|
]
|
|
921
915
|
|
|
922
916
|
[[package]]
|
|
923
917
|
name = "crossterm"
|
|
924
|
-
version = "0.
|
|
918
|
+
version = "0.29.0"
|
|
925
919
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
926
|
-
checksum = "
|
|
920
|
+
checksum = "d8b9f2e4c67f833b660cdb0a3523065869fb35570177239812ed4c905aeff87b"
|
|
927
921
|
dependencies = [
|
|
928
|
-
"bitflags 2.9.
|
|
922
|
+
"bitflags 2.9.1",
|
|
929
923
|
"crossterm_winapi",
|
|
930
|
-
"
|
|
924
|
+
"derive_more",
|
|
925
|
+
"document-features",
|
|
926
|
+
"mio 1.0.4",
|
|
931
927
|
"parking_lot",
|
|
932
|
-
"rustix 0.
|
|
933
|
-
"signal-hook 0.3.
|
|
928
|
+
"rustix 1.0.7",
|
|
929
|
+
"signal-hook 0.3.18",
|
|
934
930
|
"signal-hook-mio",
|
|
935
931
|
"winapi",
|
|
936
932
|
]
|
|
@@ -1094,6 +1090,27 @@ dependencies = [
|
|
|
1094
1090
|
"syn 2.0.101",
|
|
1095
1091
|
]
|
|
1096
1092
|
|
|
1093
|
+
[[package]]
|
|
1094
|
+
name = "derive_more"
|
|
1095
|
+
version = "2.0.1"
|
|
1096
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1097
|
+
checksum = "093242cf7570c207c83073cf82f79706fe7b8317e98620a47d5be7c3d8497678"
|
|
1098
|
+
dependencies = [
|
|
1099
|
+
"derive_more-impl",
|
|
1100
|
+
]
|
|
1101
|
+
|
|
1102
|
+
[[package]]
|
|
1103
|
+
name = "derive_more-impl"
|
|
1104
|
+
version = "2.0.1"
|
|
1105
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1106
|
+
checksum = "bda628edc44c4bb645fbe0f758797143e4e07926f7ebf4e9bdfbd3d2ce621df3"
|
|
1107
|
+
dependencies = [
|
|
1108
|
+
"convert_case",
|
|
1109
|
+
"proc-macro2",
|
|
1110
|
+
"quote",
|
|
1111
|
+
"syn 2.0.101",
|
|
1112
|
+
]
|
|
1113
|
+
|
|
1097
1114
|
[[package]]
|
|
1098
1115
|
name = "diff"
|
|
1099
1116
|
version = "0.1.13"
|
|
@@ -1164,6 +1181,15 @@ version = "0.3.3"
|
|
|
1164
1181
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1165
1182
|
checksum = "fea41bba32d969b513997752735605054bc0dfa92b4c56bf1189f2e174be7a10"
|
|
1166
1183
|
|
|
1184
|
+
[[package]]
|
|
1185
|
+
name = "document-features"
|
|
1186
|
+
version = "0.2.11"
|
|
1187
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1188
|
+
checksum = "95249b50c6c185bee49034bcb378a49dc2b5dff0be90ff6616d31d64febab05d"
|
|
1189
|
+
dependencies = [
|
|
1190
|
+
"litrs",
|
|
1191
|
+
]
|
|
1192
|
+
|
|
1167
1193
|
[[package]]
|
|
1168
1194
|
name = "dsa"
|
|
1169
1195
|
version = "0.6.3"
|
|
@@ -1175,7 +1201,7 @@ dependencies = [
|
|
|
1175
1201
|
"num-traits",
|
|
1176
1202
|
"pkcs8",
|
|
1177
1203
|
"rfc6979",
|
|
1178
|
-
"sha2 0.10.
|
|
1204
|
+
"sha2 0.10.9",
|
|
1179
1205
|
"signature",
|
|
1180
1206
|
"zeroize",
|
|
1181
1207
|
]
|
|
@@ -1288,9 +1314,9 @@ checksum = "877a4ace8713b0bcf2a4e7eec82529c029f1d0619886d18145fea96c3ffe5c0f"
|
|
|
1288
1314
|
|
|
1289
1315
|
[[package]]
|
|
1290
1316
|
name = "errno"
|
|
1291
|
-
version = "0.3.
|
|
1317
|
+
version = "0.3.12"
|
|
1292
1318
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1293
|
-
checksum = "
|
|
1319
|
+
checksum = "cea14ef9355e3beab063703aa9dab15afd25f0667c341310c1e5274bb1d0da18"
|
|
1294
1320
|
dependencies = [
|
|
1295
1321
|
"libc",
|
|
1296
1322
|
"windows-sys 0.59.0",
|
|
@@ -1441,9 +1467,9 @@ dependencies = [
|
|
|
1441
1467
|
|
|
1442
1468
|
[[package]]
|
|
1443
1469
|
name = "getrandom"
|
|
1444
|
-
version = "0.3.
|
|
1470
|
+
version = "0.3.3"
|
|
1445
1471
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1446
|
-
checksum = "
|
|
1472
|
+
checksum = "26145e563e54f2cadc477553f1ec5ee650b00862f0a58bcd12cbdc5f0ea2d2f4"
|
|
1447
1473
|
dependencies = [
|
|
1448
1474
|
"cfg-if",
|
|
1449
1475
|
"js-sys",
|
|
@@ -1500,7 +1526,7 @@ version = "0.9.1"
|
|
|
1500
1526
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1501
1527
|
checksum = "0bf760ebf69878d9fd8f110c89703d90ce35095324d1f1edcb595c63945ee757"
|
|
1502
1528
|
dependencies = [
|
|
1503
|
-
"bitflags 2.9.
|
|
1529
|
+
"bitflags 2.9.1",
|
|
1504
1530
|
"ignore",
|
|
1505
1531
|
"walkdir",
|
|
1506
1532
|
]
|
|
@@ -1546,20 +1572,14 @@ dependencies = [
|
|
|
1546
1572
|
|
|
1547
1573
|
[[package]]
|
|
1548
1574
|
name = "hashbrown"
|
|
1549
|
-
version = "0.15.
|
|
1575
|
+
version = "0.15.3"
|
|
1550
1576
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1551
|
-
checksum = "
|
|
1577
|
+
checksum = "84b26c544d002229e640969970a2e74021aadf6e2f96372b9c58eff97de08eb3"
|
|
1552
1578
|
dependencies = [
|
|
1553
1579
|
"foldhash",
|
|
1554
1580
|
"serde",
|
|
1555
1581
|
]
|
|
1556
1582
|
|
|
1557
|
-
[[package]]
|
|
1558
|
-
name = "heck"
|
|
1559
|
-
version = "0.4.1"
|
|
1560
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1561
|
-
checksum = "95505c38b4572b2d910cecb0281560f54b440a19336cbbcb27bf6ce6adc6f5a8"
|
|
1562
|
-
|
|
1563
1583
|
[[package]]
|
|
1564
1584
|
name = "heck"
|
|
1565
1585
|
version = "0.5.0"
|
|
@@ -1693,7 +1713,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
1693
1713
|
checksum = "cea70ddb795996207ad57735b50c5982d8844f38ba9ee5f1aedcfb708a2aa11e"
|
|
1694
1714
|
dependencies = [
|
|
1695
1715
|
"equivalent",
|
|
1696
|
-
"hashbrown 0.15.
|
|
1716
|
+
"hashbrown 0.15.3",
|
|
1697
1717
|
"serde",
|
|
1698
1718
|
]
|
|
1699
1719
|
|
|
@@ -1756,9 +1776,9 @@ checksum = "4a5f13b858c8d314ee3e8f639011f7ccefe71f97f96e50151fb991f267928e2c"
|
|
|
1756
1776
|
|
|
1757
1777
|
[[package]]
|
|
1758
1778
|
name = "jiff"
|
|
1759
|
-
version = "0.2.
|
|
1779
|
+
version = "0.2.14"
|
|
1760
1780
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1761
|
-
checksum = "
|
|
1781
|
+
checksum = "a194df1107f33c79f4f93d02c80798520551949d59dfad22b6157048a88cca93"
|
|
1762
1782
|
dependencies = [
|
|
1763
1783
|
"jiff-static",
|
|
1764
1784
|
"log",
|
|
@@ -1769,9 +1789,9 @@ dependencies = [
|
|
|
1769
1789
|
|
|
1770
1790
|
[[package]]
|
|
1771
1791
|
name = "jiff-static"
|
|
1772
|
-
version = "0.2.
|
|
1792
|
+
version = "0.2.14"
|
|
1773
1793
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1774
|
-
checksum = "
|
|
1794
|
+
checksum = "6c6e1db7ed32c6c71b759497fae34bf7933636f75a251b9e736555da426f6442"
|
|
1775
1795
|
dependencies = [
|
|
1776
1796
|
"proc-macro2",
|
|
1777
1797
|
"quote",
|
|
@@ -1784,7 +1804,7 @@ version = "0.1.33"
|
|
|
1784
1804
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1785
1805
|
checksum = "38f262f097c174adebe41eb73d66ae9c06b2844fb0da69969647bbddd9b0538a"
|
|
1786
1806
|
dependencies = [
|
|
1787
|
-
"getrandom 0.3.
|
|
1807
|
+
"getrandom 0.3.3",
|
|
1788
1808
|
"libc",
|
|
1789
1809
|
]
|
|
1790
1810
|
|
|
@@ -1831,11 +1851,31 @@ version = "0.2.172"
|
|
|
1831
1851
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1832
1852
|
checksum = "d750af042f7ef4f724306de029d18836c26c1765a54a6a3f094cbd23a7267ffa"
|
|
1833
1853
|
|
|
1854
|
+
[[package]]
|
|
1855
|
+
name = "liblzma"
|
|
1856
|
+
version = "0.4.1"
|
|
1857
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1858
|
+
checksum = "66352d7a8ac12d4877b6e6ea5a9b7650ee094257dc40889955bea5bc5b08c1d0"
|
|
1859
|
+
dependencies = [
|
|
1860
|
+
"liblzma-sys",
|
|
1861
|
+
]
|
|
1862
|
+
|
|
1863
|
+
[[package]]
|
|
1864
|
+
name = "liblzma-sys"
|
|
1865
|
+
version = "0.4.3"
|
|
1866
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1867
|
+
checksum = "5839bad90c3cc2e0b8c4ed8296b80e86040240f81d46b9c0e9bc8dd51ddd3af1"
|
|
1868
|
+
dependencies = [
|
|
1869
|
+
"cc",
|
|
1870
|
+
"libc",
|
|
1871
|
+
"pkg-config",
|
|
1872
|
+
]
|
|
1873
|
+
|
|
1834
1874
|
[[package]]
|
|
1835
1875
|
name = "libm"
|
|
1836
|
-
version = "0.2.
|
|
1876
|
+
version = "0.2.15"
|
|
1837
1877
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1838
|
-
checksum = "
|
|
1878
|
+
checksum = "f9fbbcab51052fe104eb5e5d351cf728d30a5be1fe14d9be8a3b097481fb97de"
|
|
1839
1879
|
|
|
1840
1880
|
[[package]]
|
|
1841
1881
|
name = "libredox"
|
|
@@ -1843,7 +1883,7 @@ version = "0.1.3"
|
|
|
1843
1883
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1844
1884
|
checksum = "c0ff37bd590ca25063e35af745c343cb7a0271906fb7b37e4813e8f79f00268d"
|
|
1845
1885
|
dependencies = [
|
|
1846
|
-
"bitflags 2.9.
|
|
1886
|
+
"bitflags 2.9.1",
|
|
1847
1887
|
"libc",
|
|
1848
1888
|
]
|
|
1849
1889
|
|
|
@@ -1858,9 +1898,9 @@ dependencies = [
|
|
|
1858
1898
|
|
|
1859
1899
|
[[package]]
|
|
1860
1900
|
name = "lingua"
|
|
1861
|
-
version = "1.7.
|
|
1901
|
+
version = "1.7.2"
|
|
1862
1902
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1863
|
-
checksum = "
|
|
1903
|
+
checksum = "6e501c98d473068ce13ddfa5ca86846a6b60e24e3020ba9d2f49af654e9219ec"
|
|
1864
1904
|
dependencies = [
|
|
1865
1905
|
"ahash",
|
|
1866
1906
|
"brotli",
|
|
@@ -1922,18 +1962,18 @@ dependencies = [
|
|
|
1922
1962
|
|
|
1923
1963
|
[[package]]
|
|
1924
1964
|
name = "linkme"
|
|
1925
|
-
version = "0.3.
|
|
1965
|
+
version = "0.3.33"
|
|
1926
1966
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1927
|
-
checksum = "
|
|
1967
|
+
checksum = "a1b1703c00b2a6a70738920544aa51652532cacddfec2e162d2e29eae01e665c"
|
|
1928
1968
|
dependencies = [
|
|
1929
1969
|
"linkme-impl",
|
|
1930
1970
|
]
|
|
1931
1971
|
|
|
1932
1972
|
[[package]]
|
|
1933
1973
|
name = "linkme-impl"
|
|
1934
|
-
version = "0.3.
|
|
1974
|
+
version = "0.3.33"
|
|
1935
1975
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1936
|
-
checksum = "
|
|
1976
|
+
checksum = "04d55ca5d5a14363da83bf3c33874b8feaa34653e760d5216d7ef9829c88001a"
|
|
1937
1977
|
dependencies = [
|
|
1938
1978
|
"proc-macro2",
|
|
1939
1979
|
"quote",
|
|
@@ -1952,11 +1992,17 @@ version = "0.9.4"
|
|
|
1952
1992
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1953
1993
|
checksum = "cd945864f07fe9f5371a27ad7b52a172b4b499999f1d97574c9fa68373937e12"
|
|
1954
1994
|
|
|
1995
|
+
[[package]]
|
|
1996
|
+
name = "litrs"
|
|
1997
|
+
version = "0.4.1"
|
|
1998
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1999
|
+
checksum = "b4ce301924b7887e9d637144fdade93f9dfff9b60981d4ac161db09720d39aa5"
|
|
2000
|
+
|
|
1955
2001
|
[[package]]
|
|
1956
2002
|
name = "lock_api"
|
|
1957
|
-
version = "0.4.
|
|
2003
|
+
version = "0.4.13"
|
|
1958
2004
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1959
|
-
checksum = "
|
|
2005
|
+
checksum = "96936507f153605bddfcda068dd804796c84324ed2510809e5b2a624c81da765"
|
|
1960
2006
|
dependencies = [
|
|
1961
2007
|
"autocfg",
|
|
1962
2008
|
"scopeguard",
|
|
@@ -2002,27 +2048,6 @@ dependencies = [
|
|
|
2002
2048
|
"logos-codegen",
|
|
2003
2049
|
]
|
|
2004
2050
|
|
|
2005
|
-
[[package]]
|
|
2006
|
-
name = "lzma-rs"
|
|
2007
|
-
version = "0.3.0"
|
|
2008
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2009
|
-
checksum = "297e814c836ae64db86b36cf2a557ba54368d03f6afcd7d947c266692f71115e"
|
|
2010
|
-
dependencies = [
|
|
2011
|
-
"byteorder",
|
|
2012
|
-
"crc",
|
|
2013
|
-
]
|
|
2014
|
-
|
|
2015
|
-
[[package]]
|
|
2016
|
-
name = "lzma-sys"
|
|
2017
|
-
version = "0.1.20"
|
|
2018
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2019
|
-
checksum = "5fda04ab3764e6cde78b9974eec4f779acaba7c4e84b36eca3cf77c581b85d27"
|
|
2020
|
-
dependencies = [
|
|
2021
|
-
"cc",
|
|
2022
|
-
"libc",
|
|
2023
|
-
"pkg-config",
|
|
2024
|
-
]
|
|
2025
|
-
|
|
2026
2051
|
[[package]]
|
|
2027
2052
|
name = "mach2"
|
|
2028
2053
|
version = "0.4.2"
|
|
@@ -2038,7 +2063,7 @@ version = "0.16.2"
|
|
|
2038
2063
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2039
2064
|
checksum = "a200ae03df8c3dce7a963f6eeaac8feb41bf9001cb7e5ab22e3205aec2f0373d"
|
|
2040
2065
|
dependencies = [
|
|
2041
|
-
"bitflags 2.9.
|
|
2066
|
+
"bitflags 2.9.1",
|
|
2042
2067
|
"libc",
|
|
2043
2068
|
"magic-sys",
|
|
2044
2069
|
"thiserror 1.0.69",
|
|
@@ -2165,14 +2190,14 @@ dependencies = [
|
|
|
2165
2190
|
|
|
2166
2191
|
[[package]]
|
|
2167
2192
|
name = "mio"
|
|
2168
|
-
version = "1.0.
|
|
2193
|
+
version = "1.0.4"
|
|
2169
2194
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2170
|
-
checksum = "
|
|
2195
|
+
checksum = "78bed444cc8a2160f01cbcf811ef18cac863ad68ae8ca62092e8db51d51c761c"
|
|
2171
2196
|
dependencies = [
|
|
2172
2197
|
"libc",
|
|
2173
2198
|
"log",
|
|
2174
2199
|
"wasi 0.11.0+wasi-snapshot-preview1",
|
|
2175
|
-
"windows-sys 0.
|
|
2200
|
+
"windows-sys 0.59.0",
|
|
2176
2201
|
]
|
|
2177
2202
|
|
|
2178
2203
|
[[package]]
|
|
@@ -2348,7 +2373,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
2348
2373
|
checksum = "62948e14d923ea95ea2c7c86c71013138b66525b86bdc08d2dcc262bdb497b87"
|
|
2349
2374
|
dependencies = [
|
|
2350
2375
|
"crc32fast",
|
|
2351
|
-
"hashbrown 0.15.
|
|
2376
|
+
"hashbrown 0.15.3",
|
|
2352
2377
|
"indexmap 2.9.0",
|
|
2353
2378
|
"memchr",
|
|
2354
2379
|
]
|
|
@@ -2368,6 +2393,12 @@ version = "1.21.3"
|
|
|
2368
2393
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2369
2394
|
checksum = "42f5e15c9953c5e4ccceeb2e7382a716482c34515315f7b03532b8b4e8393d2d"
|
|
2370
2395
|
|
|
2396
|
+
[[package]]
|
|
2397
|
+
name = "once_cell_polyfill"
|
|
2398
|
+
version = "1.70.1"
|
|
2399
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2400
|
+
checksum = "a4895175b425cb1f87721b59f0f286c2092bd4af812243672510e1ac53e2e0ad"
|
|
2401
|
+
|
|
2371
2402
|
[[package]]
|
|
2372
2403
|
name = "opaque-debug"
|
|
2373
2404
|
version = "0.3.1"
|
|
@@ -2401,7 +2432,7 @@ dependencies = [
|
|
|
2401
2432
|
"ecdsa",
|
|
2402
2433
|
"elliptic-curve",
|
|
2403
2434
|
"primeorder",
|
|
2404
|
-
"sha2 0.10.
|
|
2435
|
+
"sha2 0.10.9",
|
|
2405
2436
|
]
|
|
2406
2437
|
|
|
2407
2438
|
[[package]]
|
|
@@ -2413,14 +2444,14 @@ dependencies = [
|
|
|
2413
2444
|
"ecdsa",
|
|
2414
2445
|
"elliptic-curve",
|
|
2415
2446
|
"primeorder",
|
|
2416
|
-
"sha2 0.10.
|
|
2447
|
+
"sha2 0.10.9",
|
|
2417
2448
|
]
|
|
2418
2449
|
|
|
2419
2450
|
[[package]]
|
|
2420
2451
|
name = "parking_lot"
|
|
2421
|
-
version = "0.12.
|
|
2452
|
+
version = "0.12.4"
|
|
2422
2453
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2423
|
-
checksum = "
|
|
2454
|
+
checksum = "70d58bf43669b5795d1576d0641cfb6fbb2057bf629506267a92807158584a13"
|
|
2424
2455
|
dependencies = [
|
|
2425
2456
|
"lock_api",
|
|
2426
2457
|
"parking_lot_core",
|
|
@@ -2428,9 +2459,9 @@ dependencies = [
|
|
|
2428
2459
|
|
|
2429
2460
|
[[package]]
|
|
2430
2461
|
name = "parking_lot_core"
|
|
2431
|
-
version = "0.9.
|
|
2462
|
+
version = "0.9.11"
|
|
2432
2463
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2433
|
-
checksum = "
|
|
2464
|
+
checksum = "bc838d2a56b5b1a6c25f55575dfc605fabb63bb2365f6c2353ef9159aa69e4a5"
|
|
2434
2465
|
dependencies = [
|
|
2435
2466
|
"cfg-if",
|
|
2436
2467
|
"libc",
|
|
@@ -2500,7 +2531,7 @@ checksum = "7f9f832470494906d1fca5329f8ab5791cc60beb230c74815dff541cbd2b5ca0"
|
|
|
2500
2531
|
dependencies = [
|
|
2501
2532
|
"once_cell",
|
|
2502
2533
|
"pest",
|
|
2503
|
-
"sha2 0.10.
|
|
2534
|
+
"sha2 0.10.9",
|
|
2504
2535
|
]
|
|
2505
2536
|
|
|
2506
2537
|
[[package]]
|
|
@@ -2639,7 +2670,7 @@ version = "0.2.21"
|
|
|
2639
2670
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2640
2671
|
checksum = "85eae3c4ed2f50dcfe72643da4befc30deadb458a9b590d720cde2f2b1e97da9"
|
|
2641
2672
|
dependencies = [
|
|
2642
|
-
"zerocopy
|
|
2673
|
+
"zerocopy",
|
|
2643
2674
|
]
|
|
2644
2675
|
|
|
2645
2676
|
[[package]]
|
|
@@ -2726,17 +2757,6 @@ dependencies = [
|
|
|
2726
2757
|
"thiserror 1.0.69",
|
|
2727
2758
|
]
|
|
2728
2759
|
|
|
2729
|
-
[[package]]
|
|
2730
|
-
name = "protobuf-json-mapping"
|
|
2731
|
-
version = "3.7.2"
|
|
2732
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2733
|
-
checksum = "e0d6e4be637b310d8a5c02fa195243328e2d97fa7df1127a27281ef1187fcb1d"
|
|
2734
|
-
dependencies = [
|
|
2735
|
-
"protobuf",
|
|
2736
|
-
"protobuf-support",
|
|
2737
|
-
"thiserror 1.0.69",
|
|
2738
|
-
]
|
|
2739
|
-
|
|
2740
2760
|
[[package]]
|
|
2741
2761
|
name = "protobuf-parse"
|
|
2742
2762
|
version = "3.7.2"
|
|
@@ -2764,9 +2784,9 @@ dependencies = [
|
|
|
2764
2784
|
|
|
2765
2785
|
[[package]]
|
|
2766
2786
|
name = "psl"
|
|
2767
|
-
version = "2.1.
|
|
2787
|
+
version = "2.1.115"
|
|
2768
2788
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2769
|
-
checksum = "
|
|
2789
|
+
checksum = "16f605d6286ebe6f97118b1d1116b7a143b4b860091711a389050dd87fadcfe8"
|
|
2770
2790
|
dependencies = [
|
|
2771
2791
|
"psl-types",
|
|
2772
2792
|
]
|
|
@@ -2792,16 +2812,16 @@ version = "0.9.6"
|
|
|
2792
2812
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2793
2813
|
checksum = "57206b407293d2bcd3af849ce869d52068623f19e1b5ff8e8778e3309439682b"
|
|
2794
2814
|
dependencies = [
|
|
2795
|
-
"bitflags 2.9.
|
|
2815
|
+
"bitflags 2.9.1",
|
|
2796
2816
|
"memchr",
|
|
2797
2817
|
"unicase",
|
|
2798
2818
|
]
|
|
2799
2819
|
|
|
2800
2820
|
[[package]]
|
|
2801
2821
|
name = "pulley-interpreter"
|
|
2802
|
-
version = "
|
|
2822
|
+
version = "33.0.0"
|
|
2803
2823
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2804
|
-
checksum = "
|
|
2824
|
+
checksum = "aeb99cb5a3ada8e95a246d09f5fdb609f021bf740efd3ca9bddf458e3293a6a0"
|
|
2805
2825
|
dependencies = [
|
|
2806
2826
|
"cranelift-bitset",
|
|
2807
2827
|
"log",
|
|
@@ -2810,11 +2830,10 @@ dependencies = [
|
|
|
2810
2830
|
|
|
2811
2831
|
[[package]]
|
|
2812
2832
|
name = "pyo3"
|
|
2813
|
-
version = "0.
|
|
2833
|
+
version = "0.25.0"
|
|
2814
2834
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2815
|
-
checksum = "
|
|
2835
|
+
checksum = "f239d656363bcee73afef85277f1b281e8ac6212a1d42aa90e55b90ed43c47a4"
|
|
2816
2836
|
dependencies = [
|
|
2817
|
-
"cfg-if",
|
|
2818
2837
|
"indoc",
|
|
2819
2838
|
"libc",
|
|
2820
2839
|
"memoffset 0.9.1",
|
|
@@ -2828,9 +2847,9 @@ dependencies = [
|
|
|
2828
2847
|
|
|
2829
2848
|
[[package]]
|
|
2830
2849
|
name = "pyo3-build-config"
|
|
2831
|
-
version = "0.
|
|
2850
|
+
version = "0.25.0"
|
|
2832
2851
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2833
|
-
checksum = "
|
|
2852
|
+
checksum = "755ea671a1c34044fa165247aaf6f419ca39caa6003aee791a0df2713d8f1b6d"
|
|
2834
2853
|
dependencies = [
|
|
2835
2854
|
"once_cell",
|
|
2836
2855
|
"target-lexicon",
|
|
@@ -2838,9 +2857,9 @@ dependencies = [
|
|
|
2838
2857
|
|
|
2839
2858
|
[[package]]
|
|
2840
2859
|
name = "pyo3-ffi"
|
|
2841
|
-
version = "0.
|
|
2860
|
+
version = "0.25.0"
|
|
2842
2861
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2843
|
-
checksum = "
|
|
2862
|
+
checksum = "fc95a2e67091e44791d4ea300ff744be5293f394f1bafd9f78c080814d35956e"
|
|
2844
2863
|
dependencies = [
|
|
2845
2864
|
"libc",
|
|
2846
2865
|
"pyo3-build-config",
|
|
@@ -2848,9 +2867,9 @@ dependencies = [
|
|
|
2848
2867
|
|
|
2849
2868
|
[[package]]
|
|
2850
2869
|
name = "pyo3-file"
|
|
2851
|
-
version = "0.
|
|
2870
|
+
version = "0.13.0"
|
|
2852
2871
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2853
|
-
checksum = "
|
|
2872
|
+
checksum = "75916300df50dbfa6958ec05fe53473e69474542dac7fd1275aa6869a18a241a"
|
|
2854
2873
|
dependencies = [
|
|
2855
2874
|
"pyo3",
|
|
2856
2875
|
"skeptic",
|
|
@@ -2858,9 +2877,9 @@ dependencies = [
|
|
|
2858
2877
|
|
|
2859
2878
|
[[package]]
|
|
2860
2879
|
name = "pyo3-macros"
|
|
2861
|
-
version = "0.
|
|
2880
|
+
version = "0.25.0"
|
|
2862
2881
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2863
|
-
checksum = "
|
|
2882
|
+
checksum = "a179641d1b93920829a62f15e87c0ed791b6c8db2271ba0fd7c2686090510214"
|
|
2864
2883
|
dependencies = [
|
|
2865
2884
|
"proc-macro2",
|
|
2866
2885
|
"pyo3-macros-backend",
|
|
@@ -2870,11 +2889,11 @@ dependencies = [
|
|
|
2870
2889
|
|
|
2871
2890
|
[[package]]
|
|
2872
2891
|
name = "pyo3-macros-backend"
|
|
2873
|
-
version = "0.
|
|
2892
|
+
version = "0.25.0"
|
|
2874
2893
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2875
|
-
checksum = "
|
|
2894
|
+
checksum = "9dff85ebcaab8c441b0e3f7ae40a6963ecea8a9f5e74f647e33fcf5ec9a1e89e"
|
|
2876
2895
|
dependencies = [
|
|
2877
|
-
"heck
|
|
2896
|
+
"heck",
|
|
2878
2897
|
"proc-macro2",
|
|
2879
2898
|
"pyo3-build-config",
|
|
2880
2899
|
"quote",
|
|
@@ -2952,7 +2971,7 @@ version = "11.5.0"
|
|
|
2952
2971
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2953
2972
|
checksum = "c6df7ab838ed27997ba19a4664507e6f82b41fe6e20be42929332156e5e85146"
|
|
2954
2973
|
dependencies = [
|
|
2955
|
-
"bitflags 2.9.
|
|
2974
|
+
"bitflags 2.9.1",
|
|
2956
2975
|
]
|
|
2957
2976
|
|
|
2958
2977
|
[[package]]
|
|
@@ -2977,11 +2996,11 @@ dependencies = [
|
|
|
2977
2996
|
|
|
2978
2997
|
[[package]]
|
|
2979
2998
|
name = "redox_syscall"
|
|
2980
|
-
version = "0.5.
|
|
2999
|
+
version = "0.5.12"
|
|
2981
3000
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2982
|
-
checksum = "
|
|
3001
|
+
checksum = "928fca9cf2aa042393a8325b9ead81d2f0df4cb12e1e24cef072922ccd99c5af"
|
|
2983
3002
|
dependencies = [
|
|
2984
|
-
"bitflags 2.9.
|
|
3003
|
+
"bitflags 2.9.1",
|
|
2985
3004
|
]
|
|
2986
3005
|
|
|
2987
3006
|
[[package]]
|
|
@@ -2997,13 +3016,13 @@ dependencies = [
|
|
|
2997
3016
|
|
|
2998
3017
|
[[package]]
|
|
2999
3018
|
name = "regalloc2"
|
|
3000
|
-
version = "0.
|
|
3019
|
+
version = "0.12.2"
|
|
3001
3020
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3002
|
-
checksum = "
|
|
3021
|
+
checksum = "5216b1837de2149f8bc8e6d5f88a9326b63b8c836ed58ce4a0a29ec736a59734"
|
|
3003
3022
|
dependencies = [
|
|
3004
3023
|
"allocator-api2",
|
|
3005
3024
|
"bumpalo",
|
|
3006
|
-
"hashbrown 0.15.
|
|
3025
|
+
"hashbrown 0.15.3",
|
|
3007
3026
|
"log",
|
|
3008
3027
|
"rustc-hash 2.1.1",
|
|
3009
3028
|
"smallvec",
|
|
@@ -3136,7 +3155,7 @@ version = "0.38.44"
|
|
|
3136
3155
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3137
3156
|
checksum = "fdb5bc1ae2baa591800df16c9ca78619bf65c0488b41b96ccec5d11220d8c154"
|
|
3138
3157
|
dependencies = [
|
|
3139
|
-
"bitflags 2.9.
|
|
3158
|
+
"bitflags 2.9.1",
|
|
3140
3159
|
"errno",
|
|
3141
3160
|
"libc",
|
|
3142
3161
|
"linux-raw-sys 0.4.15",
|
|
@@ -3145,11 +3164,11 @@ dependencies = [
|
|
|
3145
3164
|
|
|
3146
3165
|
[[package]]
|
|
3147
3166
|
name = "rustix"
|
|
3148
|
-
version = "1.0.
|
|
3167
|
+
version = "1.0.7"
|
|
3149
3168
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3150
|
-
checksum = "
|
|
3169
|
+
checksum = "c71e83d6afe7ff64890ec6b71d6a69bb8a610ab78ce364b3352876bb4c801266"
|
|
3151
3170
|
dependencies = [
|
|
3152
|
-
"bitflags 2.9.
|
|
3171
|
+
"bitflags 2.9.1",
|
|
3153
3172
|
"errno",
|
|
3154
3173
|
"libc",
|
|
3155
3174
|
"linux-raw-sys 0.9.4",
|
|
@@ -3158,9 +3177,9 @@ dependencies = [
|
|
|
3158
3177
|
|
|
3159
3178
|
[[package]]
|
|
3160
3179
|
name = "rustversion"
|
|
3161
|
-
version = "1.0.
|
|
3180
|
+
version = "1.0.21"
|
|
3162
3181
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3163
|
-
checksum = "
|
|
3182
|
+
checksum = "8a0d197bd2c9dc6e53b84da9556a69ba4cdfab8619eb41a8bd1cc2027a0f6b1d"
|
|
3164
3183
|
|
|
3165
3184
|
[[package]]
|
|
3166
3185
|
name = "ryu"
|
|
@@ -3303,9 +3322,9 @@ dependencies = [
|
|
|
3303
3322
|
|
|
3304
3323
|
[[package]]
|
|
3305
3324
|
name = "sha2"
|
|
3306
|
-
version = "0.10.
|
|
3325
|
+
version = "0.10.9"
|
|
3307
3326
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3308
|
-
checksum = "
|
|
3327
|
+
checksum = "a7507d819769d01a365ab707794a4084392c824f54a7a6a7862f8c3d0892b283"
|
|
3309
3328
|
dependencies = [
|
|
3310
3329
|
"cfg-if",
|
|
3311
3330
|
"cpufeatures",
|
|
@@ -3330,9 +3349,9 @@ dependencies = [
|
|
|
3330
3349
|
|
|
3331
3350
|
[[package]]
|
|
3332
3351
|
name = "signal-hook"
|
|
3333
|
-
version = "0.3.
|
|
3352
|
+
version = "0.3.18"
|
|
3334
3353
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3335
|
-
checksum = "
|
|
3354
|
+
checksum = "d881a16cf4426aa584979d30bd82cb33429027e42122b169753d6ef1085ed6e2"
|
|
3336
3355
|
dependencies = [
|
|
3337
3356
|
"libc",
|
|
3338
3357
|
"signal-hook-registry",
|
|
@@ -3346,8 +3365,8 @@ checksum = "34db1a06d485c9142248b7a054f034b349b212551f3dfd19c94d45a754a217cd"
|
|
|
3346
3365
|
dependencies = [
|
|
3347
3366
|
"libc",
|
|
3348
3367
|
"mio 0.8.11",
|
|
3349
|
-
"mio 1.0.
|
|
3350
|
-
"signal-hook 0.3.
|
|
3368
|
+
"mio 1.0.4",
|
|
3369
|
+
"signal-hook 0.3.18",
|
|
3351
3370
|
]
|
|
3352
3371
|
|
|
3353
3372
|
[[package]]
|
|
@@ -3489,7 +3508,7 @@ version = "0.27.1"
|
|
|
3489
3508
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3490
3509
|
checksum = "c77a8c5abcaf0f9ce05d62342b7d298c346515365c36b673df4ebe3ced01fde8"
|
|
3491
3510
|
dependencies = [
|
|
3492
|
-
"heck
|
|
3511
|
+
"heck",
|
|
3493
3512
|
"proc-macro2",
|
|
3494
3513
|
"quote",
|
|
3495
3514
|
"rustversion",
|
|
@@ -3542,9 +3561,9 @@ dependencies = [
|
|
|
3542
3561
|
|
|
3543
3562
|
[[package]]
|
|
3544
3563
|
name = "synstructure"
|
|
3545
|
-
version = "0.13.
|
|
3564
|
+
version = "0.13.2"
|
|
3546
3565
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3547
|
-
checksum = "
|
|
3566
|
+
checksum = "728a70f3dbaf5bab7f0c4b1ac8d7ae5ea60a4b5549c8a5914361c99147a709d2"
|
|
3548
3567
|
dependencies = [
|
|
3549
3568
|
"proc-macro2",
|
|
3550
3569
|
"quote",
|
|
@@ -3565,14 +3584,14 @@ checksum = "e502f78cdbb8ba4718f566c418c52bc729126ffd16baee5baa718cf25dd5a69a"
|
|
|
3565
3584
|
|
|
3566
3585
|
[[package]]
|
|
3567
3586
|
name = "tempfile"
|
|
3568
|
-
version = "3.
|
|
3587
|
+
version = "3.20.0"
|
|
3569
3588
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3570
|
-
checksum = "
|
|
3589
|
+
checksum = "e8a64e3985349f2441a1a9ef0b853f869006c3855f2cda6862a94d26ebb9d6a1"
|
|
3571
3590
|
dependencies = [
|
|
3572
3591
|
"fastrand",
|
|
3573
|
-
"getrandom 0.3.
|
|
3592
|
+
"getrandom 0.3.3",
|
|
3574
3593
|
"once_cell",
|
|
3575
|
-
"rustix 1.0.
|
|
3594
|
+
"rustix 1.0.7",
|
|
3576
3595
|
"windows-sys 0.59.0",
|
|
3577
3596
|
]
|
|
3578
3597
|
|
|
@@ -3845,6 +3864,12 @@ version = "0.9.0"
|
|
|
3845
3864
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3846
3865
|
checksum = "8ecb6da28b8a351d773b68d5825ac39017e680750f980f3a1a85cd8dd28a47c1"
|
|
3847
3866
|
|
|
3867
|
+
[[package]]
|
|
3868
|
+
name = "unty"
|
|
3869
|
+
version = "0.0.4"
|
|
3870
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3871
|
+
checksum = "6d49784317cd0d1ee7ec5c716dd598ec5b4483ea832a2dced265471cc0f690ae"
|
|
3872
|
+
|
|
3848
3873
|
[[package]]
|
|
3849
3874
|
name = "utf8parse"
|
|
3850
3875
|
version = "0.2.2"
|
|
@@ -3853,11 +3878,13 @@ checksum = "06abde3611657adf66d383f00b093d7faecc7fa57071cce2578660c9f1010821"
|
|
|
3853
3878
|
|
|
3854
3879
|
[[package]]
|
|
3855
3880
|
name = "uuid"
|
|
3856
|
-
version = "1.
|
|
3881
|
+
version = "1.17.0"
|
|
3857
3882
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3858
|
-
checksum = "
|
|
3883
|
+
checksum = "3cf4199d1e5d15ddd86a694e4d0dffa9c323ce759fea589f00fef9d81cc1931d"
|
|
3859
3884
|
dependencies = [
|
|
3860
|
-
"getrandom 0.3.
|
|
3885
|
+
"getrandom 0.3.3",
|
|
3886
|
+
"js-sys",
|
|
3887
|
+
"wasm-bindgen",
|
|
3861
3888
|
]
|
|
3862
3889
|
|
|
3863
3890
|
[[package]]
|
|
@@ -3872,6 +3899,12 @@ version = "0.9.5"
|
|
|
3872
3899
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3873
3900
|
checksum = "0b928f33d975fc6ad9f86c8f283853ad26bdd5b10b7f1542aa2fa15e2289105a"
|
|
3874
3901
|
|
|
3902
|
+
[[package]]
|
|
3903
|
+
name = "virtue"
|
|
3904
|
+
version = "0.0.18"
|
|
3905
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3906
|
+
checksum = "051eb1abcf10076295e815102942cc58f9d5e3b4560e46e53c21e8ff6f3af7b1"
|
|
3907
|
+
|
|
3875
3908
|
[[package]]
|
|
3876
3909
|
name = "vtparse"
|
|
3877
3910
|
version = "0.6.2"
|
|
@@ -3922,7 +3955,7 @@ version = "0.22.0"
|
|
|
3922
3955
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3923
3956
|
checksum = "439ad39ff894c43c9649fa724cdde9a6fc50b855d517ef071a93e5df82fe51d3"
|
|
3924
3957
|
dependencies = [
|
|
3925
|
-
"heck
|
|
3958
|
+
"heck",
|
|
3926
3959
|
"proc-macro2",
|
|
3927
3960
|
"quote",
|
|
3928
3961
|
"syn 2.0.101",
|
|
@@ -4012,12 +4045,12 @@ dependencies = [
|
|
|
4012
4045
|
|
|
4013
4046
|
[[package]]
|
|
4014
4047
|
name = "wasm-encoder"
|
|
4015
|
-
version = "0.
|
|
4048
|
+
version = "0.229.0"
|
|
4016
4049
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4017
|
-
checksum = "
|
|
4050
|
+
checksum = "38ba1d491ecacb085a2552025c10a675a6fddcbd03b1fc9b36c536010ce265d2"
|
|
4018
4051
|
dependencies = [
|
|
4019
4052
|
"leb128fmt",
|
|
4020
|
-
"wasmparser 0.
|
|
4053
|
+
"wasmparser 0.229.0",
|
|
4021
4054
|
]
|
|
4022
4055
|
|
|
4023
4056
|
[[package]]
|
|
@@ -4027,7 +4060,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
4027
4060
|
checksum = "5309c1090e3e84dad0d382f42064e9933fdaedb87e468cc239f0eabea73ddcb6"
|
|
4028
4061
|
dependencies = [
|
|
4029
4062
|
"ahash",
|
|
4030
|
-
"bitflags 2.9.
|
|
4063
|
+
"bitflags 2.9.1",
|
|
4031
4064
|
"hashbrown 0.14.5",
|
|
4032
4065
|
"indexmap 2.9.0",
|
|
4033
4066
|
"semver 1.0.26",
|
|
@@ -4036,12 +4069,12 @@ dependencies = [
|
|
|
4036
4069
|
|
|
4037
4070
|
[[package]]
|
|
4038
4071
|
name = "wasmparser"
|
|
4039
|
-
version = "0.
|
|
4072
|
+
version = "0.229.0"
|
|
4040
4073
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4041
|
-
checksum = "
|
|
4074
|
+
checksum = "0cc3b1f053f5d41aa55640a1fa9b6d1b8a9e4418d118ce308d20e24ff3575a8c"
|
|
4042
4075
|
dependencies = [
|
|
4043
|
-
"bitflags 2.9.
|
|
4044
|
-
"hashbrown 0.15.
|
|
4076
|
+
"bitflags 2.9.1",
|
|
4077
|
+
"hashbrown 0.15.3",
|
|
4045
4078
|
"indexmap 2.9.0",
|
|
4046
4079
|
"semver 1.0.26",
|
|
4047
4080
|
"serde",
|
|
@@ -4049,28 +4082,28 @@ dependencies = [
|
|
|
4049
4082
|
|
|
4050
4083
|
[[package]]
|
|
4051
4084
|
name = "wasmprinter"
|
|
4052
|
-
version = "0.
|
|
4085
|
+
version = "0.229.0"
|
|
4053
4086
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4054
|
-
checksum = "
|
|
4087
|
+
checksum = "d25dac01892684a99b8fbfaf670eb6b56edea8a096438c75392daeb83156ae2e"
|
|
4055
4088
|
dependencies = [
|
|
4056
4089
|
"anyhow",
|
|
4057
4090
|
"termcolor",
|
|
4058
|
-
"wasmparser 0.
|
|
4091
|
+
"wasmparser 0.229.0",
|
|
4059
4092
|
]
|
|
4060
4093
|
|
|
4061
4094
|
[[package]]
|
|
4062
4095
|
name = "wasmtime"
|
|
4063
|
-
version = "
|
|
4096
|
+
version = "33.0.0"
|
|
4064
4097
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4065
|
-
checksum = "
|
|
4098
|
+
checksum = "15396de4fce22e431aa913a9d17325665e72a39aaa7972c8aeae7507eff6144f"
|
|
4066
4099
|
dependencies = [
|
|
4067
4100
|
"addr2line",
|
|
4068
4101
|
"anyhow",
|
|
4069
|
-
"bitflags 2.9.
|
|
4102
|
+
"bitflags 2.9.1",
|
|
4070
4103
|
"bumpalo",
|
|
4071
4104
|
"cc",
|
|
4072
4105
|
"cfg-if",
|
|
4073
|
-
"hashbrown 0.15.
|
|
4106
|
+
"hashbrown 0.15.3",
|
|
4074
4107
|
"indexmap 2.9.0",
|
|
4075
4108
|
"libc",
|
|
4076
4109
|
"log",
|
|
@@ -4082,13 +4115,13 @@ dependencies = [
|
|
|
4082
4115
|
"psm",
|
|
4083
4116
|
"pulley-interpreter",
|
|
4084
4117
|
"rayon",
|
|
4085
|
-
"rustix 1.0.
|
|
4118
|
+
"rustix 1.0.7",
|
|
4086
4119
|
"serde",
|
|
4087
4120
|
"serde_derive",
|
|
4088
4121
|
"smallvec",
|
|
4089
4122
|
"sptr",
|
|
4090
4123
|
"target-lexicon",
|
|
4091
|
-
"wasmparser 0.
|
|
4124
|
+
"wasmparser 0.229.0",
|
|
4092
4125
|
"wasmtime-asm-macros",
|
|
4093
4126
|
"wasmtime-cranelift",
|
|
4094
4127
|
"wasmtime-environ",
|
|
@@ -4102,18 +4135,18 @@ dependencies = [
|
|
|
4102
4135
|
|
|
4103
4136
|
[[package]]
|
|
4104
4137
|
name = "wasmtime-asm-macros"
|
|
4105
|
-
version = "
|
|
4138
|
+
version = "33.0.0"
|
|
4106
4139
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4107
|
-
checksum = "
|
|
4140
|
+
checksum = "c8d13b1a25d9b77ce42b4641a797e8c0bde0643b9ad5aaa36ce7e00cf373ffab"
|
|
4108
4141
|
dependencies = [
|
|
4109
4142
|
"cfg-if",
|
|
4110
4143
|
]
|
|
4111
4144
|
|
|
4112
4145
|
[[package]]
|
|
4113
4146
|
name = "wasmtime-cranelift"
|
|
4114
|
-
version = "
|
|
4147
|
+
version = "33.0.0"
|
|
4115
4148
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4116
|
-
checksum = "
|
|
4149
|
+
checksum = "a0c2c2e083dc4c119cca61cc42ca6b3711b75ed9823f77b684ee009c74f939d8"
|
|
4117
4150
|
dependencies = [
|
|
4118
4151
|
"anyhow",
|
|
4119
4152
|
"cfg-if",
|
|
@@ -4130,16 +4163,16 @@ dependencies = [
|
|
|
4130
4163
|
"smallvec",
|
|
4131
4164
|
"target-lexicon",
|
|
4132
4165
|
"thiserror 2.0.12",
|
|
4133
|
-
"wasmparser 0.
|
|
4166
|
+
"wasmparser 0.229.0",
|
|
4134
4167
|
"wasmtime-environ",
|
|
4135
4168
|
"wasmtime-versioned-export-macros",
|
|
4136
4169
|
]
|
|
4137
4170
|
|
|
4138
4171
|
[[package]]
|
|
4139
4172
|
name = "wasmtime-environ"
|
|
4140
|
-
version = "
|
|
4173
|
+
version = "33.0.0"
|
|
4141
4174
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4142
|
-
checksum = "
|
|
4175
|
+
checksum = "357542664493b1359727f235b615ae74f63bd46aa4d0c587b09e3b060eb0b8ef"
|
|
4143
4176
|
dependencies = [
|
|
4144
4177
|
"anyhow",
|
|
4145
4178
|
"cranelift-bitset",
|
|
@@ -4153,21 +4186,21 @@ dependencies = [
|
|
|
4153
4186
|
"serde_derive",
|
|
4154
4187
|
"smallvec",
|
|
4155
4188
|
"target-lexicon",
|
|
4156
|
-
"wasm-encoder 0.
|
|
4157
|
-
"wasmparser 0.
|
|
4189
|
+
"wasm-encoder 0.229.0",
|
|
4190
|
+
"wasmparser 0.229.0",
|
|
4158
4191
|
"wasmprinter",
|
|
4159
4192
|
]
|
|
4160
4193
|
|
|
4161
4194
|
[[package]]
|
|
4162
4195
|
name = "wasmtime-fiber"
|
|
4163
|
-
version = "
|
|
4196
|
+
version = "33.0.0"
|
|
4164
4197
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4165
|
-
checksum = "
|
|
4198
|
+
checksum = "d83e697b13d6ae9eff31edac86673aabaf8dbf20267f2aa20e831dd01da480a3"
|
|
4166
4199
|
dependencies = [
|
|
4167
4200
|
"anyhow",
|
|
4168
4201
|
"cc",
|
|
4169
4202
|
"cfg-if",
|
|
4170
|
-
"rustix 1.0.
|
|
4203
|
+
"rustix 1.0.7",
|
|
4171
4204
|
"wasmtime-asm-macros",
|
|
4172
4205
|
"wasmtime-versioned-export-macros",
|
|
4173
4206
|
"windows-sys 0.59.0",
|
|
@@ -4175,9 +4208,9 @@ dependencies = [
|
|
|
4175
4208
|
|
|
4176
4209
|
[[package]]
|
|
4177
4210
|
name = "wasmtime-jit-icache-coherence"
|
|
4178
|
-
version = "
|
|
4211
|
+
version = "33.0.0"
|
|
4179
4212
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4180
|
-
checksum = "
|
|
4213
|
+
checksum = "175e924dbc944c185808466d1e90b5a7feb610f3b9abdfe26f8ee25fd1086d1c"
|
|
4181
4214
|
dependencies = [
|
|
4182
4215
|
"anyhow",
|
|
4183
4216
|
"cfg-if",
|
|
@@ -4187,24 +4220,24 @@ dependencies = [
|
|
|
4187
4220
|
|
|
4188
4221
|
[[package]]
|
|
4189
4222
|
name = "wasmtime-math"
|
|
4190
|
-
version = "
|
|
4223
|
+
version = "33.0.0"
|
|
4191
4224
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4192
|
-
checksum = "
|
|
4225
|
+
checksum = "0d9448adcd9c5980c0eac1630794bd1be3cf573c28d0630f7d3184405b36bcfe"
|
|
4193
4226
|
dependencies = [
|
|
4194
4227
|
"libm",
|
|
4195
4228
|
]
|
|
4196
4229
|
|
|
4197
4230
|
[[package]]
|
|
4198
4231
|
name = "wasmtime-slab"
|
|
4199
|
-
version = "
|
|
4232
|
+
version = "33.0.0"
|
|
4200
4233
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4201
|
-
checksum = "
|
|
4234
|
+
checksum = "b50f7c227d6a925d9dfd0fbfdbf06877cb2fe387bb3248049706b19b5f86e560"
|
|
4202
4235
|
|
|
4203
4236
|
[[package]]
|
|
4204
4237
|
name = "wasmtime-versioned-export-macros"
|
|
4205
|
-
version = "
|
|
4238
|
+
version = "33.0.0"
|
|
4206
4239
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4207
|
-
checksum = "
|
|
4240
|
+
checksum = "55b39ffeda28be925babb2d45067d8ba2c67d2227328c5364d23b4152eba9950"
|
|
4208
4241
|
dependencies = [
|
|
4209
4242
|
"proc-macro2",
|
|
4210
4243
|
"quote",
|
|
@@ -4334,9 +4367,9 @@ checksum = "712e227841d057c1ee1cd2fb22fa7e5a5461ae8e48fa2ca79ec42cfc1931183f"
|
|
|
4334
4367
|
|
|
4335
4368
|
[[package]]
|
|
4336
4369
|
name = "windows-core"
|
|
4337
|
-
version = "0.61.
|
|
4370
|
+
version = "0.61.2"
|
|
4338
4371
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4339
|
-
checksum = "
|
|
4372
|
+
checksum = "c0fdd3ddb90610c7638aa2b3a3ab2904fb9e5cdbecc643ddb3647212781c4ae3"
|
|
4340
4373
|
dependencies = [
|
|
4341
4374
|
"windows-implement",
|
|
4342
4375
|
"windows-interface",
|
|
@@ -4375,18 +4408,18 @@ checksum = "76840935b766e1b0a05c0066835fb9ec80071d4c09a16f6bd5f7e655e3c14c38"
|
|
|
4375
4408
|
|
|
4376
4409
|
[[package]]
|
|
4377
4410
|
name = "windows-result"
|
|
4378
|
-
version = "0.3.
|
|
4411
|
+
version = "0.3.4"
|
|
4379
4412
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4380
|
-
checksum = "
|
|
4413
|
+
checksum = "56f42bd332cc6c8eac5af113fc0c1fd6a8fd2aa08a0119358686e5160d0586c6"
|
|
4381
4414
|
dependencies = [
|
|
4382
4415
|
"windows-link",
|
|
4383
4416
|
]
|
|
4384
4417
|
|
|
4385
4418
|
[[package]]
|
|
4386
4419
|
name = "windows-strings"
|
|
4387
|
-
version = "0.4.
|
|
4420
|
+
version = "0.4.2"
|
|
4388
4421
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4389
|
-
checksum = "
|
|
4422
|
+
checksum = "56e6c93f3a0c3b36176cb1327a4958a0353d5d166c2a35cb268ace15e91d3b57"
|
|
4390
4423
|
dependencies = [
|
|
4391
4424
|
"windows-link",
|
|
4392
4425
|
]
|
|
@@ -4598,9 +4631,9 @@ checksum = "589f6da84c646204747d1270a2a5661ea66ed1cced2631d546fdfb155959f9ec"
|
|
|
4598
4631
|
|
|
4599
4632
|
[[package]]
|
|
4600
4633
|
name = "winnow"
|
|
4601
|
-
version = "0.7.
|
|
4634
|
+
version = "0.7.10"
|
|
4602
4635
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4603
|
-
checksum = "
|
|
4636
|
+
checksum = "c06928c8748d81b05c9be96aad92e1b6ff01833332f281e8cfca3be4b35fc9ec"
|
|
4604
4637
|
dependencies = [
|
|
4605
4638
|
"memchr",
|
|
4606
4639
|
]
|
|
@@ -4611,7 +4644,7 @@ version = "0.39.0"
|
|
|
4611
4644
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4612
4645
|
checksum = "6f42320e61fe2cfd34354ecb597f86f413484a798ba44a8ca1165c58d42da6c1"
|
|
4613
4646
|
dependencies = [
|
|
4614
|
-
"bitflags 2.9.
|
|
4647
|
+
"bitflags 2.9.1",
|
|
4615
4648
|
]
|
|
4616
4649
|
|
|
4617
4650
|
[[package]]
|
|
@@ -4641,15 +4674,6 @@ dependencies = [
|
|
|
4641
4674
|
"time",
|
|
4642
4675
|
]
|
|
4643
4676
|
|
|
4644
|
-
[[package]]
|
|
4645
|
-
name = "xz2"
|
|
4646
|
-
version = "0.1.7"
|
|
4647
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4648
|
-
checksum = "388c44dc09d76f1536602ead6d325eb532f5c122f17782bd57fb47baeeb767e2"
|
|
4649
|
-
dependencies = [
|
|
4650
|
-
"lzma-sys",
|
|
4651
|
-
]
|
|
4652
|
-
|
|
4653
4677
|
[[package]]
|
|
4654
4678
|
name = "yansi"
|
|
4655
4679
|
version = "1.0.1"
|
|
@@ -4658,7 +4682,7 @@ checksum = "cfe53a6657fd280eaa890a3bc59152892ffa3e30101319d168b781ed6529b049"
|
|
|
4658
4682
|
|
|
4659
4683
|
[[package]]
|
|
4660
4684
|
name = "yara-x"
|
|
4661
|
-
version = "0.
|
|
4685
|
+
version = "1.0.1"
|
|
4662
4686
|
dependencies = [
|
|
4663
4687
|
"aho-corasick",
|
|
4664
4688
|
"annotate-snippets",
|
|
@@ -4667,7 +4691,7 @@ dependencies = [
|
|
|
4667
4691
|
"ascii_tree",
|
|
4668
4692
|
"base64 0.22.1",
|
|
4669
4693
|
"bincode",
|
|
4670
|
-
"bitflags 2.9.
|
|
4694
|
+
"bitflags 2.9.1",
|
|
4671
4695
|
"bitvec",
|
|
4672
4696
|
"bstr",
|
|
4673
4697
|
"const-oid",
|
|
@@ -4683,7 +4707,6 @@ dependencies = [
|
|
|
4683
4707
|
"intaglio",
|
|
4684
4708
|
"ipnet",
|
|
4685
4709
|
"itertools 0.14.0",
|
|
4686
|
-
"lazy_static",
|
|
4687
4710
|
"lingua",
|
|
4688
4711
|
"linkme",
|
|
4689
4712
|
"log",
|
|
@@ -4714,7 +4737,7 @@ dependencies = [
|
|
|
4714
4737
|
"serde",
|
|
4715
4738
|
"serde_json",
|
|
4716
4739
|
"sha1",
|
|
4717
|
-
"sha2 0.10.
|
|
4740
|
+
"sha2 0.10.9",
|
|
4718
4741
|
"smallvec",
|
|
4719
4742
|
"strum_macros",
|
|
4720
4743
|
"thiserror 2.0.12",
|
|
@@ -4733,7 +4756,7 @@ dependencies = [
|
|
|
4733
4756
|
|
|
4734
4757
|
[[package]]
|
|
4735
4758
|
name = "yara-x-capi"
|
|
4736
|
-
version = "0.
|
|
4759
|
+
version = "1.0.1"
|
|
4737
4760
|
dependencies = [
|
|
4738
4761
|
"cbindgen",
|
|
4739
4762
|
"serde_json",
|
|
@@ -4742,18 +4765,16 @@ dependencies = [
|
|
|
4742
4765
|
|
|
4743
4766
|
[[package]]
|
|
4744
4767
|
name = "yara-x-cli"
|
|
4745
|
-
version = "0.
|
|
4768
|
+
version = "1.0.1"
|
|
4746
4769
|
dependencies = [
|
|
4747
4770
|
"anyhow",
|
|
4748
|
-
"ascii_tree",
|
|
4749
4771
|
"assert_cmd",
|
|
4750
4772
|
"assert_fs",
|
|
4751
4773
|
"chardetng",
|
|
4752
4774
|
"clap",
|
|
4753
4775
|
"clap_complete",
|
|
4754
|
-
"colored_json",
|
|
4755
4776
|
"crossbeam",
|
|
4756
|
-
"crossterm 0.
|
|
4777
|
+
"crossterm 0.29.0",
|
|
4757
4778
|
"enable-ansi-support",
|
|
4758
4779
|
"encoding_rs",
|
|
4759
4780
|
"env_logger",
|
|
@@ -4764,29 +4785,29 @@ dependencies = [
|
|
|
4764
4785
|
"log",
|
|
4765
4786
|
"predicates",
|
|
4766
4787
|
"protobuf",
|
|
4767
|
-
"protobuf-json-mapping",
|
|
4768
4788
|
"serde",
|
|
4769
4789
|
"serde_json",
|
|
4770
4790
|
"strum",
|
|
4771
4791
|
"strum_macros",
|
|
4772
4792
|
"superconsole",
|
|
4793
|
+
"unicode-width",
|
|
4773
4794
|
"wild",
|
|
4774
4795
|
"yansi",
|
|
4775
4796
|
"yara-x",
|
|
4776
4797
|
"yara-x-fmt",
|
|
4777
4798
|
"yara-x-parser",
|
|
4799
|
+
"yara-x-proto-json",
|
|
4778
4800
|
"yara-x-proto-yaml",
|
|
4779
4801
|
]
|
|
4780
4802
|
|
|
4781
4803
|
[[package]]
|
|
4782
4804
|
name = "yara-x-fmt"
|
|
4783
|
-
version = "0.
|
|
4805
|
+
version = "1.0.1"
|
|
4784
4806
|
dependencies = [
|
|
4785
|
-
"bitflags 2.9.
|
|
4807
|
+
"bitflags 2.9.1",
|
|
4786
4808
|
"bstr",
|
|
4787
4809
|
"globwalk",
|
|
4788
4810
|
"goldenfile",
|
|
4789
|
-
"lazy_static",
|
|
4790
4811
|
"pretty_assertions",
|
|
4791
4812
|
"rayon",
|
|
4792
4813
|
"thiserror 2.0.12",
|
|
@@ -4795,7 +4816,7 @@ dependencies = [
|
|
|
4795
4816
|
|
|
4796
4817
|
[[package]]
|
|
4797
4818
|
name = "yara-x-macros"
|
|
4798
|
-
version = "0.
|
|
4819
|
+
version = "1.0.1"
|
|
4799
4820
|
dependencies = [
|
|
4800
4821
|
"darling",
|
|
4801
4822
|
"proc-macro2",
|
|
@@ -4805,11 +4826,11 @@ dependencies = [
|
|
|
4805
4826
|
|
|
4806
4827
|
[[package]]
|
|
4807
4828
|
name = "yara-x-parser"
|
|
4808
|
-
version = "0.
|
|
4829
|
+
version = "1.0.1"
|
|
4809
4830
|
dependencies = [
|
|
4810
4831
|
"anyhow",
|
|
4811
4832
|
"ascii_tree",
|
|
4812
|
-
"bitflags 2.9.
|
|
4833
|
+
"bitflags 2.9.1",
|
|
4813
4834
|
"bstr",
|
|
4814
4835
|
"env_logger",
|
|
4815
4836
|
"globwalk",
|
|
@@ -4829,16 +4850,30 @@ dependencies = [
|
|
|
4829
4850
|
|
|
4830
4851
|
[[package]]
|
|
4831
4852
|
name = "yara-x-proto"
|
|
4832
|
-
version = "0.
|
|
4853
|
+
version = "1.0.1"
|
|
4833
4854
|
dependencies = [
|
|
4834
4855
|
"protobuf",
|
|
4835
4856
|
"protobuf-codegen",
|
|
4836
4857
|
"protobuf-parse",
|
|
4837
4858
|
]
|
|
4838
4859
|
|
|
4860
|
+
[[package]]
|
|
4861
|
+
name = "yara-x-proto-json"
|
|
4862
|
+
version = "1.0.1"
|
|
4863
|
+
dependencies = [
|
|
4864
|
+
"base64 0.22.1",
|
|
4865
|
+
"globwalk",
|
|
4866
|
+
"goldenfile",
|
|
4867
|
+
"itertools 0.14.0",
|
|
4868
|
+
"protobuf",
|
|
4869
|
+
"protobuf-codegen",
|
|
4870
|
+
"yansi",
|
|
4871
|
+
"yara-x-proto",
|
|
4872
|
+
]
|
|
4873
|
+
|
|
4839
4874
|
[[package]]
|
|
4840
4875
|
name = "yara-x-proto-yaml"
|
|
4841
|
-
version = "0.
|
|
4876
|
+
version = "1.0.1"
|
|
4842
4877
|
dependencies = [
|
|
4843
4878
|
"chrono",
|
|
4844
4879
|
"globwalk",
|
|
@@ -4846,17 +4881,16 @@ dependencies = [
|
|
|
4846
4881
|
"itertools 0.14.0",
|
|
4847
4882
|
"protobuf",
|
|
4848
4883
|
"protobuf-codegen",
|
|
4849
|
-
"protobuf-parse",
|
|
4850
|
-
"protobuf-support",
|
|
4851
4884
|
"yansi",
|
|
4885
|
+
"yara-x-proto",
|
|
4852
4886
|
]
|
|
4853
4887
|
|
|
4854
4888
|
[[package]]
|
|
4855
4889
|
name = "yara-x-py"
|
|
4856
|
-
version = "0.
|
|
4890
|
+
version = "1.0.1"
|
|
4857
4891
|
dependencies = [
|
|
4892
|
+
"base64 0.22.1",
|
|
4858
4893
|
"protobuf",
|
|
4859
|
-
"protobuf-json-mapping",
|
|
4860
4894
|
"pyo3",
|
|
4861
4895
|
"pyo3-build-config",
|
|
4862
4896
|
"pyo3-file",
|
|
@@ -4865,15 +4899,7 @@ dependencies = [
|
|
|
4865
4899
|
"strum_macros",
|
|
4866
4900
|
"yara-x",
|
|
4867
4901
|
"yara-x-fmt",
|
|
4868
|
-
|
|
4869
|
-
|
|
4870
|
-
[[package]]
|
|
4871
|
-
name = "zerocopy"
|
|
4872
|
-
version = "0.7.35"
|
|
4873
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4874
|
-
checksum = "1b9b4fd18abc82b8136838da5d50bae7bdea537c574d8dc1a34ed098d6c166f0"
|
|
4875
|
-
dependencies = [
|
|
4876
|
-
"zerocopy-derive 0.7.35",
|
|
4902
|
+
"yara-x-proto-json",
|
|
4877
4903
|
]
|
|
4878
4904
|
|
|
4879
4905
|
[[package]]
|
|
@@ -4882,18 +4908,7 @@ version = "0.8.25"
|
|
|
4882
4908
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4883
4909
|
checksum = "a1702d9583232ddb9174e01bb7c15a2ab8fb1bc6f227aa1233858c351a3ba0cb"
|
|
4884
4910
|
dependencies = [
|
|
4885
|
-
"zerocopy-derive
|
|
4886
|
-
]
|
|
4887
|
-
|
|
4888
|
-
[[package]]
|
|
4889
|
-
name = "zerocopy-derive"
|
|
4890
|
-
version = "0.7.35"
|
|
4891
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4892
|
-
checksum = "fa4f8080344d4671fb4e831a13ad1e68092748387dfc4f55e356242fae12ce3e"
|
|
4893
|
-
dependencies = [
|
|
4894
|
-
"proc-macro2",
|
|
4895
|
-
"quote",
|
|
4896
|
-
"syn 2.0.101",
|
|
4911
|
+
"zerocopy-derive",
|
|
4897
4912
|
]
|
|
4898
4913
|
|
|
4899
4914
|
[[package]]
|
|
@@ -4929,9 +4944,9 @@ dependencies = [
|
|
|
4929
4944
|
|
|
4930
4945
|
[[package]]
|
|
4931
4946
|
name = "zip"
|
|
4932
|
-
version = "
|
|
4947
|
+
version = "4.0.0"
|
|
4933
4948
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4934
|
-
checksum = "
|
|
4949
|
+
checksum = "153a6fff49d264c4babdcfa6b4d534747f520e56e8f0f384f3b808c4b64cc1fd"
|
|
4935
4950
|
dependencies = [
|
|
4936
4951
|
"aes",
|
|
4937
4952
|
"arbitrary",
|
|
@@ -4940,15 +4955,14 @@ dependencies = [
|
|
|
4940
4955
|
"crc32fast",
|
|
4941
4956
|
"deflate64",
|
|
4942
4957
|
"flate2",
|
|
4943
|
-
"getrandom 0.3.
|
|
4958
|
+
"getrandom 0.3.3",
|
|
4944
4959
|
"hmac",
|
|
4945
4960
|
"indexmap 2.9.0",
|
|
4946
|
-
"
|
|
4961
|
+
"liblzma",
|
|
4947
4962
|
"memchr",
|
|
4948
4963
|
"pbkdf2",
|
|
4949
4964
|
"sha1",
|
|
4950
4965
|
"time",
|
|
4951
|
-
"xz2",
|
|
4952
4966
|
"zeroize",
|
|
4953
4967
|
"zopfli",
|
|
4954
4968
|
"zstd",
|