yara-x 0.14.0__tar.gz → 1.0.0__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Potentially problematic release.
This version of yara-x might be problematic. Click here for more details.
- {yara_x-0.14.0 → yara_x-1.0.0}/Cargo.lock +536 -872
- {yara_x-0.14.0 → yara_x-1.0.0}/Cargo.toml +19 -24
- {yara_x-0.14.0 → yara_x-1.0.0}/PKG-INFO +1 -1
- {yara_x-0.14.0 → yara_x-1.0.0}/fmt/Cargo.toml +0 -1
- {yara_x-0.14.0 → yara_x-1.0.0}/fmt/README.md +6 -12
- {yara_x-0.14.0 → yara_x-1.0.0}/fmt/src/lib.rs +7 -4
- {yara_x-0.14.0 → yara_x-1.0.0}/fmt/src/testdata/default_tests/test5.formatted +1 -0
- yara_x-1.0.0/fmt/src/testdata/default_tests/test5.unformatted +1 -0
- yara_x-1.0.0/fmt/src/testdata/default_tests/test6.formatted +5 -0
- yara_x-1.0.0/fmt/src/testdata/default_tests/test6.unformatted +2 -0
- {yara_x-0.14.0 → yara_x-1.0.0}/fmt/src/tokens/mod.rs +96 -113
- {yara_x-0.14.0 → yara_x-1.0.0}/lib/Cargo.toml +4 -7
- {yara_x-0.14.0/proto-yaml → yara_x-1.0.0/lib}/README.md +6 -12
- {yara_x-0.14.0 → yara_x-1.0.0}/lib/build.rs +10 -2
- {yara_x-0.14.0 → yara_x-1.0.0}/lib/src/compiler/context.rs +8 -4
- {yara_x-0.14.0 → yara_x-1.0.0}/lib/src/compiler/emit.rs +14 -13
- {yara_x-0.14.0 → yara_x-1.0.0}/lib/src/compiler/errors.rs +101 -12
- {yara_x-0.14.0 → yara_x-1.0.0}/lib/src/compiler/ir/ast2ir.rs +226 -100
- {yara_x-0.14.0 → yara_x-1.0.0}/lib/src/compiler/ir/hex2hir.rs +5 -4
- {yara_x-0.14.0 → yara_x-1.0.0}/lib/src/compiler/ir/mod.rs +44 -390
- {yara_x-0.14.0 → yara_x-1.0.0}/lib/src/compiler/ir/tests/mod.rs +3 -22
- yara_x-0.14.0/lib/src/compiler/ir/tests/testdata/1.cse.ir → yara_x-1.0.0/lib/src/compiler/ir/tests/testdata/1.ir +10 -10
- yara_x-1.0.0/lib/src/compiler/ir/tests/testdata/2.no-folding.ir +45 -0
- yara_x-1.0.0/lib/src/compiler/ir/tests/testdata/3.cse.ir +13 -0
- yara_x-1.0.0/lib/src/compiler/ir/tests/testdata/3.hoisting.ir +13 -0
- yara_x-1.0.0/lib/src/compiler/ir/tests/testdata/3.ir +13 -0
- yara_x-1.0.0/lib/src/compiler/ir/tests/testdata/3.no-folding.ir +13 -0
- yara_x-1.0.0/lib/src/compiler/ir/tests/testdata/4.cse.ir +53 -0
- yara_x-1.0.0/lib/src/compiler/ir/tests/testdata/4.hoisting.ir +83 -0
- {yara_x-0.14.0 → yara_x-1.0.0}/lib/src/compiler/ir/tests/testdata/4.in +4 -1
- {yara_x-0.14.0 → yara_x-1.0.0}/lib/src/compiler/ir/tests/testdata/4.ir +17 -6
- {yara_x-0.14.0 → yara_x-1.0.0}/lib/src/compiler/ir/tests/testdata/4.no-folding.ir +17 -6
- yara_x-1.0.0/lib/src/compiler/ir/tests/testdata/5.no-folding.ir +110 -0
- yara_x-1.0.0/lib/src/compiler/ir/tests/testdata/6.no-folding.ir +22 -0
- yara_x-1.0.0/lib/src/compiler/ir/tests/testdata/7.no-folding.ir +46 -0
- yara_x-1.0.0/lib/src/compiler/ir/tests/testdata/8.cse.ir +30 -0
- yara_x-1.0.0/lib/src/compiler/ir/tests/testdata/8.hoisting.ir +32 -0
- {yara_x-0.14.0 → yara_x-1.0.0}/lib/src/compiler/ir/tests/testdata/8.in +1 -1
- yara_x-1.0.0/lib/src/compiler/ir/tests/testdata/8.ir +30 -0
- yara_x-1.0.0/lib/src/compiler/ir/tests/testdata/8.no-folding.ir +30 -0
- {yara_x-0.14.0 → yara_x-1.0.0}/lib/src/compiler/linters.rs +13 -12
- {yara_x-0.14.0 → yara_x-1.0.0}/lib/src/compiler/mod.rs +209 -80
- {yara_x-0.14.0 → yara_x-1.0.0}/lib/src/compiler/report.rs +34 -42
- {yara_x-0.14.0 → yara_x-1.0.0}/lib/src/compiler/rules.rs +19 -11
- {yara_x-0.14.0 → yara_x-1.0.0}/lib/src/compiler/tests/mod.rs +39 -1
- yara_x-1.0.0/lib/src/compiler/tests/testdata/errors/142.in +6 -0
- yara_x-1.0.0/lib/src/compiler/tests/testdata/errors/142.out +6 -0
- yara_x-1.0.0/lib/src/compiler/tests/testdata/errors/143.in +6 -0
- yara_x-1.0.0/lib/src/compiler/tests/testdata/errors/143.out +6 -0
- yara_x-1.0.0/lib/src/compiler/tests/testdata/includes/included_error.yar +1 -0
- yara_x-1.0.0/lib/src/compiler/tests/testdata/includes/included_ok.yar +4 -0
- yara_x-1.0.0/lib/src/compiler/tests/testdata/warnings/36.in +95 -0
- yara_x-1.0.0/lib/src/compiler/tests/testdata/warnings/36.out +56 -0
- yara_x-1.0.0/lib/src/compiler/tests/testdata/warnings/37.in +6 -0
- yara_x-1.0.0/lib/src/compiler/tests/testdata/warnings/37.out +34 -0
- yara_x-1.0.0/lib/src/compiler/tests/testdata/warnings/38.in +8 -0
- yara_x-1.0.0/lib/src/compiler/tests/testdata/warnings/38.out +9 -0
- {yara_x-0.14.0 → yara_x-1.0.0}/lib/src/compiler/tests/testdata/warnings/no_warnings.in +7 -0
- {yara_x-0.14.0 → yara_x-1.0.0}/lib/src/compiler/warnings.rs +80 -7
- {yara_x-0.14.0 → yara_x-1.0.0}/lib/src/modules/dotnet/parser.rs +11 -8
- {yara_x-0.14.0 → yara_x-1.0.0}/lib/src/modules/elf/mod.rs +7 -8
- {yara_x-0.14.0 → yara_x-1.0.0}/lib/src/modules/hash/mod.rs +33 -18
- {yara_x-0.14.0 → yara_x-1.0.0}/lib/src/modules/mod.rs +32 -30
- {yara_x-0.14.0 → yara_x-1.0.0}/lib/src/modules/protos/dotnet.proto +5 -6
- {yara_x-0.14.0 → yara_x-1.0.0}/lib/src/modules/protos/elf.proto +1 -2
- {yara_x-0.14.0 → yara_x-1.0.0}/lib/src/modules/protos/macho.proto +20 -21
- {yara_x-0.14.0 → yara_x-1.0.0}/lib/src/modules/protos/pe.proto +48 -49
- {yara_x-0.14.0 → yara_x-1.0.0}/lib/src/modules/protos/test_proto2.proto +4 -2
- {yara_x-0.14.0 → yara_x-1.0.0}/lib/src/modules/protos/vt/titan.proto +6 -6
- {yara_x-0.14.0 → yara_x-1.0.0}/lib/src/modules/protos/vt/vtnet.proto +3 -3
- {yara_x-0.14.0 → yara_x-1.0.0}/lib/src/modules/test_proto2/mod.rs +2 -0
- yara_x-1.0.0/lib/src/modules/vt/bitsquatting.rs +41 -0
- yara_x-1.0.0/lib/src/modules/vt/homoglyphs.rs +119 -0
- yara_x-1.0.0/lib/src/modules/vt/interleaved.rs +55 -0
- yara_x-1.0.0/lib/src/modules/vt/mod.rs +527 -0
- yara_x-1.0.0/lib/src/modules/vt/typos.rs +390 -0
- {yara_x-0.14.0 → yara_x-1.0.0}/lib/src/scanner/context.rs +9 -16
- {yara_x-0.14.0 → yara_x-1.0.0}/lib/src/scanner/mod.rs +2 -2
- {yara_x-0.14.0 → yara_x-1.0.0}/lib/src/string_pool.rs +18 -6
- {yara_x-0.14.0 → yara_x-1.0.0}/lib/src/symbols/mod.rs +4 -4
- {yara_x-0.14.0 → yara_x-1.0.0}/lib/src/types/array.rs +5 -5
- {yara_x-0.14.0 → yara_x-1.0.0}/lib/src/types/func.rs +123 -46
- {yara_x-0.14.0 → yara_x-1.0.0}/lib/src/types/mod.rs +184 -93
- {yara_x-0.14.0 → yara_x-1.0.0}/lib/src/types/structure.rs +67 -68
- {yara_x-0.14.0 → yara_x-1.0.0}/lib/src/variables.rs +6 -6
- {yara_x-0.14.0 → yara_x-1.0.0}/lib/src/wasm/mod.rs +54 -49
- {yara_x-0.14.0 → yara_x-1.0.0}/lib/src/wasm/string.rs +105 -40
- {yara_x-0.14.0 → yara_x-1.0.0}/macros/src/wasm_export.rs +75 -5
- {yara_x-0.14.0 → yara_x-1.0.0}/parser/README.md +6 -12
- {yara_x-0.14.0 → yara_x-1.0.0}/parser/src/ast/cst2ast.rs +39 -17
- {yara_x-0.14.0 → yara_x-1.0.0}/parser/src/ast/mod.rs +49 -12
- {yara_x-0.14.0 → yara_x-1.0.0}/parser/src/cst/syntax_kind.rs +4 -0
- {yara_x-0.14.0 → yara_x-1.0.0}/parser/src/parser/mod.rs +16 -2
- {yara_x-0.14.0 → yara_x-1.0.0}/parser/src/parser/tests/mod.rs +4 -4
- yara_x-1.0.0/parser/src/parser/tests/testdata/import.ast +4 -0
- yara_x-1.0.0/parser/src/parser/tests/testdata/import.cst +29 -0
- yara_x-1.0.0/parser/src/parser/tests/testdata/import.in +5 -0
- yara_x-1.0.0/parser/src/parser/tests/testdata/include.ast +4 -0
- yara_x-1.0.0/parser/src/parser/tests/testdata/include.cst +29 -0
- yara_x-1.0.0/parser/src/parser/tests/testdata/include.in +5 -0
- {yara_x-0.14.0 → yara_x-1.0.0}/parser/src/tokenizer/mod.rs +3 -0
- {yara_x-0.14.0 → yara_x-1.0.0}/parser/src/tokenizer/tokens.rs +4 -0
- yara_x-1.0.0/proto/README.md +69 -0
- yara_x-1.0.0/proto/src/lib.rs +94 -0
- {yara_x-0.14.0/lib/src/modules/protos → yara_x-1.0.0/proto/src}/yara.proto +15 -0
- yara_x-1.0.0/proto-json/Cargo.toml +28 -0
- {yara_x-0.14.0/lib → yara_x-1.0.0/proto-json}/README.md +6 -12
- {yara_x-0.14.0/proto-yaml → yara_x-1.0.0/proto-json}/build.rs +2 -1
- yara_x-1.0.0/proto-json/src/lib.rs +321 -0
- yara_x-1.0.0/proto-json/src/tests/mod.rs +25 -0
- yara_x-1.0.0/proto-json/src/tests/test.proto +23 -0
- yara_x-1.0.0/proto-json/src/tests/testdata/1.in +30 -0
- yara_x-1.0.0/proto-json/src/tests/testdata/1.out +29 -0
- {yara_x-0.14.0 → yara_x-1.0.0}/proto-yaml/Cargo.toml +1 -2
- yara_x-1.0.0/proto-yaml/README.md +69 -0
- yara_x-1.0.0/proto-yaml/build.rs +14 -0
- {yara_x-0.14.0 → yara_x-1.0.0}/proto-yaml/src/lib.rs +77 -124
- {yara_x-0.14.0 → yara_x-1.0.0}/proto-yaml/src/tests/test.proto +3 -3
- {yara_x-0.14.0 → yara_x-1.0.0}/py/Cargo.toml +8 -5
- {yara_x-0.14.0 → yara_x-1.0.0}/py/src/lib.rs +205 -19
- {yara_x-0.14.0 → yara_x-1.0.0}/py/tests/test_api.py +27 -3
- {yara_x-0.14.0 → yara_x-1.0.0}/py/yara_x.pyi +10 -1
- yara_x-0.14.0/fmt/src/testdata/default_tests/test5.unformatted +0 -1
- yara_x-0.14.0/fmt/src/testdata/default_tests/test6.formatted +0 -12
- yara_x-0.14.0/fmt/src/testdata/default_tests/test6.unformatted +0 -4
- yara_x-0.14.0/lib/src/compiler/ir/tests/testdata/2.cse.ir +0 -43
- yara_x-0.14.0/lib/src/compiler/ir/tests/testdata/3.cse.ir +0 -13
- yara_x-0.14.0/lib/src/compiler/ir/tests/testdata/3.hoisting.ir +0 -13
- yara_x-0.14.0/lib/src/compiler/ir/tests/testdata/3.ir +0 -13
- yara_x-0.14.0/lib/src/compiler/ir/tests/testdata/3.no-folding.ir +0 -13
- yara_x-0.14.0/lib/src/compiler/ir/tests/testdata/4.cse.ir +0 -42
- yara_x-0.14.0/lib/src/compiler/ir/tests/testdata/4.hoisting.ir +0 -64
- yara_x-0.14.0/lib/src/compiler/ir/tests/testdata/5.cse.ir +0 -102
- yara_x-0.14.0/lib/src/compiler/ir/tests/testdata/6.cse.ir +0 -23
- yara_x-0.14.0/lib/src/compiler/ir/tests/testdata/7.cse.ir +0 -42
- yara_x-0.14.0/lib/src/compiler/ir/tests/testdata/8.cse.ir +0 -28
- yara_x-0.14.0/lib/src/compiler/ir/tests/testdata/8.hoisting.ir +0 -30
- yara_x-0.14.0/lib/src/compiler/ir/tests/testdata/8.ir +0 -28
- yara_x-0.14.0/lib/src/compiler/ir/tests/testdata/8.no-folding.ir +0 -28
- yara_x-0.14.0/lib/src/modules/protos/yaml.proto +0 -13
- yara_x-0.14.0/lib/src/modules/vt/mod.rs +0 -523
- yara_x-0.14.0/proto/README.md +0 -75
- yara_x-0.14.0/proto/src/lib.rs +0 -3
- yara_x-0.14.0/proto/src/yara.proto +0 -154
- yara_x-0.14.0/proto-yaml/src/yaml.proto +0 -13
- {yara_x-0.14.0 → yara_x-1.0.0}/README.md +0 -0
- {yara_x-0.14.0 → yara_x-1.0.0}/fmt/Cargo.lock +0 -0
- {yara_x-0.14.0 → yara_x-1.0.0}/fmt/src/align.rs +0 -0
- {yara_x-0.14.0 → yara_x-1.0.0}/fmt/src/bubble.rs +0 -0
- {yara_x-0.14.0 → yara_x-1.0.0}/fmt/src/comments.rs +0 -0
- {yara_x-0.14.0 → yara_x-1.0.0}/fmt/src/format_hex_patterns.rs +0 -0
- {yara_x-0.14.0 → yara_x-1.0.0}/fmt/src/indentation.rs +0 -0
- {yara_x-0.14.0 → yara_x-1.0.0}/fmt/src/processor/mod.rs +0 -0
- {yara_x-0.14.0 → yara_x-1.0.0}/fmt/src/processor/tests.rs +0 -0
- {yara_x-0.14.0 → yara_x-1.0.0}/fmt/src/testdata/config_tests/align_metadata_false.formatted +0 -0
- {yara_x-0.14.0 → yara_x-1.0.0}/fmt/src/testdata/config_tests/align_patterns_false.formatted +0 -0
- {yara_x-0.14.0 → yara_x-1.0.0}/fmt/src/testdata/config_tests/align_rule.unformatted +0 -0
- {yara_x-0.14.0 → yara_x-1.0.0}/fmt/src/testdata/config_tests/empty_line_after_section_header_true.formatted +0 -0
- {yara_x-0.14.0 → yara_x-1.0.0}/fmt/src/testdata/config_tests/empty_line_before_section_header_false.formatted +0 -0
- {yara_x-0.14.0 → yara_x-1.0.0}/fmt/src/testdata/config_tests/generic_rule.unformatted +0 -0
- {yara_x-0.14.0 → yara_x-1.0.0}/fmt/src/testdata/config_tests/indent_section_contents_false.formatted +0 -0
- {yara_x-0.14.0 → yara_x-1.0.0}/fmt/src/testdata/config_tests/indent_section_headers_false.formatted +0 -0
- {yara_x-0.14.0 → yara_x-1.0.0}/fmt/src/testdata/config_tests/indent_spaces_one.formatted +0 -0
- {yara_x-0.14.0 → yara_x-1.0.0}/fmt/src/testdata/config_tests/indent_spaces_zero.formatted +0 -0
- {yara_x-0.14.0 → yara_x-1.0.0}/fmt/src/testdata/config_tests/newline_before_curly_brace_true.formatted +0 -0
- {yara_x-0.14.0 → yara_x-1.0.0}/fmt/src/testdata/default_tests/test1.formatted +0 -0
- {yara_x-0.14.0 → yara_x-1.0.0}/fmt/src/testdata/default_tests/test1.unformatted +0 -0
- {yara_x-0.14.0 → yara_x-1.0.0}/fmt/src/testdata/default_tests/test10.formatted +0 -0
- {yara_x-0.14.0 → yara_x-1.0.0}/fmt/src/testdata/default_tests/test10.unformatted +0 -0
- {yara_x-0.14.0 → yara_x-1.0.0}/fmt/src/testdata/default_tests/test11.formatted +0 -0
- {yara_x-0.14.0 → yara_x-1.0.0}/fmt/src/testdata/default_tests/test11.unformatted +0 -0
- {yara_x-0.14.0 → yara_x-1.0.0}/fmt/src/testdata/default_tests/test12.formatted +0 -0
- {yara_x-0.14.0 → yara_x-1.0.0}/fmt/src/testdata/default_tests/test12.unformatted +0 -0
- {yara_x-0.14.0 → yara_x-1.0.0}/fmt/src/testdata/default_tests/test13.formatted +0 -0
- {yara_x-0.14.0 → yara_x-1.0.0}/fmt/src/testdata/default_tests/test13.unformatted +0 -0
- {yara_x-0.14.0 → yara_x-1.0.0}/fmt/src/testdata/default_tests/test14.formatted +0 -0
- {yara_x-0.14.0 → yara_x-1.0.0}/fmt/src/testdata/default_tests/test14.unformatted +0 -0
- {yara_x-0.14.0 → yara_x-1.0.0}/fmt/src/testdata/default_tests/test15.formatted +0 -0
- {yara_x-0.14.0 → yara_x-1.0.0}/fmt/src/testdata/default_tests/test15.unformatted +0 -0
- {yara_x-0.14.0 → yara_x-1.0.0}/fmt/src/testdata/default_tests/test16.formatted +0 -0
- {yara_x-0.14.0 → yara_x-1.0.0}/fmt/src/testdata/default_tests/test16.unformatted +0 -0
- {yara_x-0.14.0 → yara_x-1.0.0}/fmt/src/testdata/default_tests/test17.formatted +0 -0
- {yara_x-0.14.0 → yara_x-1.0.0}/fmt/src/testdata/default_tests/test17.unformatted +0 -0
- {yara_x-0.14.0 → yara_x-1.0.0}/fmt/src/testdata/default_tests/test18.formatted +0 -0
- {yara_x-0.14.0 → yara_x-1.0.0}/fmt/src/testdata/default_tests/test18.unformatted +0 -0
- {yara_x-0.14.0 → yara_x-1.0.0}/fmt/src/testdata/default_tests/test19.formatted +0 -0
- {yara_x-0.14.0 → yara_x-1.0.0}/fmt/src/testdata/default_tests/test19.unformatted +0 -0
- {yara_x-0.14.0 → yara_x-1.0.0}/fmt/src/testdata/default_tests/test2.formatted +0 -0
- {yara_x-0.14.0 → yara_x-1.0.0}/fmt/src/testdata/default_tests/test2.unformatted +0 -0
- {yara_x-0.14.0 → yara_x-1.0.0}/fmt/src/testdata/default_tests/test20.formatted +0 -0
- {yara_x-0.14.0 → yara_x-1.0.0}/fmt/src/testdata/default_tests/test20.unformatted +0 -0
- {yara_x-0.14.0 → yara_x-1.0.0}/fmt/src/testdata/default_tests/test21.formatted +0 -0
- {yara_x-0.14.0 → yara_x-1.0.0}/fmt/src/testdata/default_tests/test21.unformatted +0 -0
- {yara_x-0.14.0 → yara_x-1.0.0}/fmt/src/testdata/default_tests/test22.formatted +0 -0
- {yara_x-0.14.0 → yara_x-1.0.0}/fmt/src/testdata/default_tests/test22.unformatted +0 -0
- {yara_x-0.14.0 → yara_x-1.0.0}/fmt/src/testdata/default_tests/test23.formatted +0 -0
- {yara_x-0.14.0 → yara_x-1.0.0}/fmt/src/testdata/default_tests/test23.unformatted +0 -0
- {yara_x-0.14.0 → yara_x-1.0.0}/fmt/src/testdata/default_tests/test24.formatted +0 -0
- {yara_x-0.14.0 → yara_x-1.0.0}/fmt/src/testdata/default_tests/test24.unformatted +0 -0
- {yara_x-0.14.0 → yara_x-1.0.0}/fmt/src/testdata/default_tests/test25.formatted +0 -0
- {yara_x-0.14.0 → yara_x-1.0.0}/fmt/src/testdata/default_tests/test25.unformatted +0 -0
- {yara_x-0.14.0 → yara_x-1.0.0}/fmt/src/testdata/default_tests/test26.formatted +0 -0
- {yara_x-0.14.0 → yara_x-1.0.0}/fmt/src/testdata/default_tests/test26.unformatted +0 -0
- {yara_x-0.14.0 → yara_x-1.0.0}/fmt/src/testdata/default_tests/test27.formatted +0 -0
- {yara_x-0.14.0 → yara_x-1.0.0}/fmt/src/testdata/default_tests/test27.unformatted +0 -0
- {yara_x-0.14.0 → yara_x-1.0.0}/fmt/src/testdata/default_tests/test28.formatted +0 -0
- {yara_x-0.14.0 → yara_x-1.0.0}/fmt/src/testdata/default_tests/test28.unformatted +0 -0
- {yara_x-0.14.0 → yara_x-1.0.0}/fmt/src/testdata/default_tests/test29.formatted +0 -0
- {yara_x-0.14.0 → yara_x-1.0.0}/fmt/src/testdata/default_tests/test29.unformatted +0 -0
- {yara_x-0.14.0 → yara_x-1.0.0}/fmt/src/testdata/default_tests/test3.formatted +0 -0
- {yara_x-0.14.0 → yara_x-1.0.0}/fmt/src/testdata/default_tests/test3.unformatted +0 -0
- {yara_x-0.14.0 → yara_x-1.0.0}/fmt/src/testdata/default_tests/test30.formatted +0 -0
- {yara_x-0.14.0 → yara_x-1.0.0}/fmt/src/testdata/default_tests/test30.unformatted +0 -0
- {yara_x-0.14.0 → yara_x-1.0.0}/fmt/src/testdata/default_tests/test31.formatted +0 -0
- {yara_x-0.14.0 → yara_x-1.0.0}/fmt/src/testdata/default_tests/test31.unformatted +0 -0
- {yara_x-0.14.0 → yara_x-1.0.0}/fmt/src/testdata/default_tests/test32.formatted +0 -0
- {yara_x-0.14.0 → yara_x-1.0.0}/fmt/src/testdata/default_tests/test32.unformatted +0 -0
- {yara_x-0.14.0 → yara_x-1.0.0}/fmt/src/testdata/default_tests/test33.formatted +0 -0
- {yara_x-0.14.0 → yara_x-1.0.0}/fmt/src/testdata/default_tests/test33.unformatted +0 -0
- {yara_x-0.14.0 → yara_x-1.0.0}/fmt/src/testdata/default_tests/test34.formatted +0 -0
- {yara_x-0.14.0 → yara_x-1.0.0}/fmt/src/testdata/default_tests/test34.unformatted +0 -0
- {yara_x-0.14.0 → yara_x-1.0.0}/fmt/src/testdata/default_tests/test4.formatted +0 -0
- {yara_x-0.14.0 → yara_x-1.0.0}/fmt/src/testdata/default_tests/test4.unformatted +0 -0
- {yara_x-0.14.0 → yara_x-1.0.0}/fmt/src/testdata/default_tests/test7.formatted +0 -0
- {yara_x-0.14.0 → yara_x-1.0.0}/fmt/src/testdata/default_tests/test7.unformatted +0 -0
- {yara_x-0.14.0 → yara_x-1.0.0}/fmt/src/testdata/default_tests/test8.formatted +0 -0
- {yara_x-0.14.0 → yara_x-1.0.0}/fmt/src/testdata/default_tests/test8.unformatted +0 -0
- {yara_x-0.14.0 → yara_x-1.0.0}/fmt/src/testdata/default_tests/test9.formatted +0 -0
- {yara_x-0.14.0 → yara_x-1.0.0}/fmt/src/testdata/default_tests/test9.unformatted +0 -0
- {yara_x-0.14.0 → yara_x-1.0.0}/fmt/src/tests.rs +0 -0
- {yara_x-0.14.0 → yara_x-1.0.0}/fmt/src/tokens/tests.rs +0 -0
- {yara_x-0.14.0 → yara_x-1.0.0}/fmt/src/trailing_spaces.rs +0 -0
- {yara_x-0.14.0 → yara_x-1.0.0}/lib/src/compiler/atoms/mask.rs +0 -0
- {yara_x-0.14.0 → yara_x-1.0.0}/lib/src/compiler/atoms/mod.rs +0 -0
- {yara_x-0.14.0 → yara_x-1.0.0}/lib/src/compiler/atoms/quality.rs +0 -0
- {yara_x-0.14.0 → yara_x-1.0.0}/lib/src/compiler/base64.rs +0 -0
- {yara_x-0.14.0 → yara_x-1.0.0}/lib/src/compiler/ir/dfs.rs +0 -0
- /yara_x-0.14.0/lib/src/compiler/ir/tests/testdata/1.hoisting.ir → /yara_x-1.0.0/lib/src/compiler/ir/tests/testdata/1.cse.ir +0 -0
- /yara_x-0.14.0/lib/src/compiler/ir/tests/testdata/1.ir → /yara_x-1.0.0/lib/src/compiler/ir/tests/testdata/1.hoisting.ir +0 -0
- {yara_x-0.14.0 → yara_x-1.0.0}/lib/src/compiler/ir/tests/testdata/1.in +0 -0
- {yara_x-0.14.0 → yara_x-1.0.0}/lib/src/compiler/ir/tests/testdata/1.no-folding.ir +0 -0
- /yara_x-0.14.0/lib/src/compiler/ir/tests/testdata/2.ir → /yara_x-1.0.0/lib/src/compiler/ir/tests/testdata/2.cse.ir +0 -0
- {yara_x-0.14.0 → yara_x-1.0.0}/lib/src/compiler/ir/tests/testdata/2.hoisting.ir +0 -0
- {yara_x-0.14.0 → yara_x-1.0.0}/lib/src/compiler/ir/tests/testdata/2.in +0 -0
- /yara_x-0.14.0/lib/src/compiler/ir/tests/testdata/2.no-folding.ir → /yara_x-1.0.0/lib/src/compiler/ir/tests/testdata/2.ir +0 -0
- {yara_x-0.14.0 → yara_x-1.0.0}/lib/src/compiler/ir/tests/testdata/3.in +0 -0
- /yara_x-0.14.0/lib/src/compiler/ir/tests/testdata/5.hoisting.ir → /yara_x-1.0.0/lib/src/compiler/ir/tests/testdata/5.cse.ir +0 -0
- /yara_x-0.14.0/lib/src/compiler/ir/tests/testdata/5.ir → /yara_x-1.0.0/lib/src/compiler/ir/tests/testdata/5.hoisting.ir +0 -0
- {yara_x-0.14.0 → yara_x-1.0.0}/lib/src/compiler/ir/tests/testdata/5.in +0 -0
- /yara_x-0.14.0/lib/src/compiler/ir/tests/testdata/5.no-folding.ir → /yara_x-1.0.0/lib/src/compiler/ir/tests/testdata/5.ir +0 -0
- /yara_x-0.14.0/lib/src/compiler/ir/tests/testdata/6.hoisting.ir → /yara_x-1.0.0/lib/src/compiler/ir/tests/testdata/6.cse.ir +0 -0
- /yara_x-0.14.0/lib/src/compiler/ir/tests/testdata/6.ir → /yara_x-1.0.0/lib/src/compiler/ir/tests/testdata/6.hoisting.ir +0 -0
- {yara_x-0.14.0 → yara_x-1.0.0}/lib/src/compiler/ir/tests/testdata/6.in +0 -0
- /yara_x-0.14.0/lib/src/compiler/ir/tests/testdata/6.no-folding.ir → /yara_x-1.0.0/lib/src/compiler/ir/tests/testdata/6.ir +0 -0
- /yara_x-0.14.0/lib/src/compiler/ir/tests/testdata/7.ir → /yara_x-1.0.0/lib/src/compiler/ir/tests/testdata/7.cse.ir +0 -0
- {yara_x-0.14.0 → yara_x-1.0.0}/lib/src/compiler/ir/tests/testdata/7.hoisting.ir +0 -0
- {yara_x-0.14.0 → yara_x-1.0.0}/lib/src/compiler/ir/tests/testdata/7.in +0 -0
- /yara_x-0.14.0/lib/src/compiler/ir/tests/testdata/7.no-folding.ir → /yara_x-1.0.0/lib/src/compiler/ir/tests/testdata/7.ir +0 -0
- {yara_x-0.14.0 → yara_x-1.0.0}/lib/src/compiler/ir/tests/testdata/9.cse.ir +0 -0
- {yara_x-0.14.0 → yara_x-1.0.0}/lib/src/compiler/ir/tests/testdata/9.hoisting.ir +0 -0
- {yara_x-0.14.0 → yara_x-1.0.0}/lib/src/compiler/ir/tests/testdata/9.in +0 -0
- {yara_x-0.14.0 → yara_x-1.0.0}/lib/src/compiler/ir/tests/testdata/9.ir +0 -0
- {yara_x-0.14.0 → yara_x-1.0.0}/lib/src/compiler/ir/tests/testdata/9.no-folding.ir +0 -0
- {yara_x-0.14.0 → yara_x-1.0.0}/lib/src/compiler/tests/testdata/errors/1.in +0 -0
- {yara_x-0.14.0 → yara_x-1.0.0}/lib/src/compiler/tests/testdata/errors/1.out +0 -0
- {yara_x-0.14.0 → yara_x-1.0.0}/lib/src/compiler/tests/testdata/errors/10.in +0 -0
- {yara_x-0.14.0 → yara_x-1.0.0}/lib/src/compiler/tests/testdata/errors/10.out +0 -0
- {yara_x-0.14.0 → yara_x-1.0.0}/lib/src/compiler/tests/testdata/errors/100.in +0 -0
- {yara_x-0.14.0 → yara_x-1.0.0}/lib/src/compiler/tests/testdata/errors/100.out +0 -0
- {yara_x-0.14.0 → yara_x-1.0.0}/lib/src/compiler/tests/testdata/errors/101.in +0 -0
- {yara_x-0.14.0 → yara_x-1.0.0}/lib/src/compiler/tests/testdata/errors/101.out +0 -0
- {yara_x-0.14.0 → yara_x-1.0.0}/lib/src/compiler/tests/testdata/errors/102.in +0 -0
- {yara_x-0.14.0 → yara_x-1.0.0}/lib/src/compiler/tests/testdata/errors/102.out +0 -0
- {yara_x-0.14.0 → yara_x-1.0.0}/lib/src/compiler/tests/testdata/errors/103.in +0 -0
- {yara_x-0.14.0 → yara_x-1.0.0}/lib/src/compiler/tests/testdata/errors/103.out +0 -0
- {yara_x-0.14.0 → yara_x-1.0.0}/lib/src/compiler/tests/testdata/errors/104.in +0 -0
- {yara_x-0.14.0 → yara_x-1.0.0}/lib/src/compiler/tests/testdata/errors/104.out +0 -0
- {yara_x-0.14.0 → yara_x-1.0.0}/lib/src/compiler/tests/testdata/errors/105.in +0 -0
- {yara_x-0.14.0 → yara_x-1.0.0}/lib/src/compiler/tests/testdata/errors/105.out +0 -0
- {yara_x-0.14.0 → yara_x-1.0.0}/lib/src/compiler/tests/testdata/errors/106.in +0 -0
- {yara_x-0.14.0 → yara_x-1.0.0}/lib/src/compiler/tests/testdata/errors/106.out +0 -0
- {yara_x-0.14.0 → yara_x-1.0.0}/lib/src/compiler/tests/testdata/errors/107.in +0 -0
- {yara_x-0.14.0 → yara_x-1.0.0}/lib/src/compiler/tests/testdata/errors/107.out +0 -0
- {yara_x-0.14.0 → yara_x-1.0.0}/lib/src/compiler/tests/testdata/errors/108.in +0 -0
- {yara_x-0.14.0 → yara_x-1.0.0}/lib/src/compiler/tests/testdata/errors/108.out +0 -0
- {yara_x-0.14.0 → yara_x-1.0.0}/lib/src/compiler/tests/testdata/errors/109.in +0 -0
- {yara_x-0.14.0 → yara_x-1.0.0}/lib/src/compiler/tests/testdata/errors/109.out +0 -0
- {yara_x-0.14.0 → yara_x-1.0.0}/lib/src/compiler/tests/testdata/errors/11.in +0 -0
- {yara_x-0.14.0 → yara_x-1.0.0}/lib/src/compiler/tests/testdata/errors/11.out +0 -0
- {yara_x-0.14.0 → yara_x-1.0.0}/lib/src/compiler/tests/testdata/errors/110.in +0 -0
- {yara_x-0.14.0 → yara_x-1.0.0}/lib/src/compiler/tests/testdata/errors/110.out +0 -0
- {yara_x-0.14.0 → yara_x-1.0.0}/lib/src/compiler/tests/testdata/errors/111.in +0 -0
- {yara_x-0.14.0 → yara_x-1.0.0}/lib/src/compiler/tests/testdata/errors/111.out +0 -0
- {yara_x-0.14.0 → yara_x-1.0.0}/lib/src/compiler/tests/testdata/errors/112.in +0 -0
- {yara_x-0.14.0 → yara_x-1.0.0}/lib/src/compiler/tests/testdata/errors/112.out +0 -0
- {yara_x-0.14.0 → yara_x-1.0.0}/lib/src/compiler/tests/testdata/errors/113.in +0 -0
- {yara_x-0.14.0 → yara_x-1.0.0}/lib/src/compiler/tests/testdata/errors/113.out +0 -0
- {yara_x-0.14.0 → yara_x-1.0.0}/lib/src/compiler/tests/testdata/errors/114.in +0 -0
- {yara_x-0.14.0 → yara_x-1.0.0}/lib/src/compiler/tests/testdata/errors/114.out +0 -0
- {yara_x-0.14.0 → yara_x-1.0.0}/lib/src/compiler/tests/testdata/errors/115.in +0 -0
- {yara_x-0.14.0 → yara_x-1.0.0}/lib/src/compiler/tests/testdata/errors/115.out +0 -0
- {yara_x-0.14.0 → yara_x-1.0.0}/lib/src/compiler/tests/testdata/errors/116.in +0 -0
- {yara_x-0.14.0 → yara_x-1.0.0}/lib/src/compiler/tests/testdata/errors/116.out +0 -0
- {yara_x-0.14.0 → yara_x-1.0.0}/lib/src/compiler/tests/testdata/errors/117.in +0 -0
- {yara_x-0.14.0 → yara_x-1.0.0}/lib/src/compiler/tests/testdata/errors/117.out +0 -0
- {yara_x-0.14.0 → yara_x-1.0.0}/lib/src/compiler/tests/testdata/errors/118.in +0 -0
- {yara_x-0.14.0 → yara_x-1.0.0}/lib/src/compiler/tests/testdata/errors/118.out +0 -0
- {yara_x-0.14.0 → yara_x-1.0.0}/lib/src/compiler/tests/testdata/errors/119.in +0 -0
- {yara_x-0.14.0 → yara_x-1.0.0}/lib/src/compiler/tests/testdata/errors/119.out +0 -0
- {yara_x-0.14.0 → yara_x-1.0.0}/lib/src/compiler/tests/testdata/errors/12.in +0 -0
- {yara_x-0.14.0 → yara_x-1.0.0}/lib/src/compiler/tests/testdata/errors/12.out +0 -0
- {yara_x-0.14.0 → yara_x-1.0.0}/lib/src/compiler/tests/testdata/errors/120.in +0 -0
- {yara_x-0.14.0 → yara_x-1.0.0}/lib/src/compiler/tests/testdata/errors/120.out +0 -0
- {yara_x-0.14.0 → yara_x-1.0.0}/lib/src/compiler/tests/testdata/errors/121.in +0 -0
- {yara_x-0.14.0 → yara_x-1.0.0}/lib/src/compiler/tests/testdata/errors/121.out +0 -0
- {yara_x-0.14.0 → yara_x-1.0.0}/lib/src/compiler/tests/testdata/errors/122.in +0 -0
- {yara_x-0.14.0 → yara_x-1.0.0}/lib/src/compiler/tests/testdata/errors/122.out +0 -0
- {yara_x-0.14.0 → yara_x-1.0.0}/lib/src/compiler/tests/testdata/errors/123.in +0 -0
- {yara_x-0.14.0 → yara_x-1.0.0}/lib/src/compiler/tests/testdata/errors/123.out +0 -0
- {yara_x-0.14.0 → yara_x-1.0.0}/lib/src/compiler/tests/testdata/errors/124.in +0 -0
- {yara_x-0.14.0 → yara_x-1.0.0}/lib/src/compiler/tests/testdata/errors/124.out +0 -0
- {yara_x-0.14.0 → yara_x-1.0.0}/lib/src/compiler/tests/testdata/errors/125.in +0 -0
- {yara_x-0.14.0 → yara_x-1.0.0}/lib/src/compiler/tests/testdata/errors/125.out +0 -0
- {yara_x-0.14.0 → yara_x-1.0.0}/lib/src/compiler/tests/testdata/errors/126.in +0 -0
- {yara_x-0.14.0 → yara_x-1.0.0}/lib/src/compiler/tests/testdata/errors/126.out +0 -0
- {yara_x-0.14.0 → yara_x-1.0.0}/lib/src/compiler/tests/testdata/errors/127.in +0 -0
- {yara_x-0.14.0 → yara_x-1.0.0}/lib/src/compiler/tests/testdata/errors/127.out +0 -0
- {yara_x-0.14.0 → yara_x-1.0.0}/lib/src/compiler/tests/testdata/errors/128.in +0 -0
- {yara_x-0.14.0 → yara_x-1.0.0}/lib/src/compiler/tests/testdata/errors/128.out +0 -0
- {yara_x-0.14.0 → yara_x-1.0.0}/lib/src/compiler/tests/testdata/errors/129.in +0 -0
- {yara_x-0.14.0 → yara_x-1.0.0}/lib/src/compiler/tests/testdata/errors/129.out +0 -0
- {yara_x-0.14.0 → yara_x-1.0.0}/lib/src/compiler/tests/testdata/errors/13.in +0 -0
- {yara_x-0.14.0 → yara_x-1.0.0}/lib/src/compiler/tests/testdata/errors/13.out +0 -0
- {yara_x-0.14.0 → yara_x-1.0.0}/lib/src/compiler/tests/testdata/errors/131.in +0 -0
- {yara_x-0.14.0 → yara_x-1.0.0}/lib/src/compiler/tests/testdata/errors/131.out +0 -0
- {yara_x-0.14.0 → yara_x-1.0.0}/lib/src/compiler/tests/testdata/errors/132.in +0 -0
- {yara_x-0.14.0 → yara_x-1.0.0}/lib/src/compiler/tests/testdata/errors/132.out +0 -0
- {yara_x-0.14.0 → yara_x-1.0.0}/lib/src/compiler/tests/testdata/errors/133.in +0 -0
- {yara_x-0.14.0 → yara_x-1.0.0}/lib/src/compiler/tests/testdata/errors/133.out +0 -0
- {yara_x-0.14.0 → yara_x-1.0.0}/lib/src/compiler/tests/testdata/errors/134.in +0 -0
- {yara_x-0.14.0 → yara_x-1.0.0}/lib/src/compiler/tests/testdata/errors/134.out +0 -0
- {yara_x-0.14.0 → yara_x-1.0.0}/lib/src/compiler/tests/testdata/errors/135.in +0 -0
- {yara_x-0.14.0 → yara_x-1.0.0}/lib/src/compiler/tests/testdata/errors/135.out +0 -0
- {yara_x-0.14.0 → yara_x-1.0.0}/lib/src/compiler/tests/testdata/errors/136.in +0 -0
- {yara_x-0.14.0 → yara_x-1.0.0}/lib/src/compiler/tests/testdata/errors/136.out +0 -0
- {yara_x-0.14.0 → yara_x-1.0.0}/lib/src/compiler/tests/testdata/errors/137.in +0 -0
- {yara_x-0.14.0 → yara_x-1.0.0}/lib/src/compiler/tests/testdata/errors/137.out +0 -0
- {yara_x-0.14.0 → yara_x-1.0.0}/lib/src/compiler/tests/testdata/errors/138.in +0 -0
- {yara_x-0.14.0 → yara_x-1.0.0}/lib/src/compiler/tests/testdata/errors/138.out +0 -0
- {yara_x-0.14.0 → yara_x-1.0.0}/lib/src/compiler/tests/testdata/errors/139.in +0 -0
- {yara_x-0.14.0 → yara_x-1.0.0}/lib/src/compiler/tests/testdata/errors/139.out +0 -0
- {yara_x-0.14.0 → yara_x-1.0.0}/lib/src/compiler/tests/testdata/errors/14.in +0 -0
- {yara_x-0.14.0 → yara_x-1.0.0}/lib/src/compiler/tests/testdata/errors/14.out +0 -0
- {yara_x-0.14.0 → yara_x-1.0.0}/lib/src/compiler/tests/testdata/errors/140.in +0 -0
- {yara_x-0.14.0 → yara_x-1.0.0}/lib/src/compiler/tests/testdata/errors/140.out +0 -0
- {yara_x-0.14.0 → yara_x-1.0.0}/lib/src/compiler/tests/testdata/errors/141.in +0 -0
- {yara_x-0.14.0 → yara_x-1.0.0}/lib/src/compiler/tests/testdata/errors/141.out +0 -0
- {yara_x-0.14.0 → yara_x-1.0.0}/lib/src/compiler/tests/testdata/errors/15.in +0 -0
- {yara_x-0.14.0 → yara_x-1.0.0}/lib/src/compiler/tests/testdata/errors/15.out +0 -0
- {yara_x-0.14.0 → yara_x-1.0.0}/lib/src/compiler/tests/testdata/errors/16.in +0 -0
- {yara_x-0.14.0 → yara_x-1.0.0}/lib/src/compiler/tests/testdata/errors/16.out +0 -0
- {yara_x-0.14.0 → yara_x-1.0.0}/lib/src/compiler/tests/testdata/errors/17.in +0 -0
- {yara_x-0.14.0 → yara_x-1.0.0}/lib/src/compiler/tests/testdata/errors/17.out +0 -0
- {yara_x-0.14.0 → yara_x-1.0.0}/lib/src/compiler/tests/testdata/errors/18.in +0 -0
- {yara_x-0.14.0 → yara_x-1.0.0}/lib/src/compiler/tests/testdata/errors/18.out +0 -0
- {yara_x-0.14.0 → yara_x-1.0.0}/lib/src/compiler/tests/testdata/errors/19.in +0 -0
- {yara_x-0.14.0 → yara_x-1.0.0}/lib/src/compiler/tests/testdata/errors/19.out +0 -0
- {yara_x-0.14.0 → yara_x-1.0.0}/lib/src/compiler/tests/testdata/errors/2.in +0 -0
- {yara_x-0.14.0 → yara_x-1.0.0}/lib/src/compiler/tests/testdata/errors/2.out +0 -0
- {yara_x-0.14.0 → yara_x-1.0.0}/lib/src/compiler/tests/testdata/errors/20.in +0 -0
- {yara_x-0.14.0 → yara_x-1.0.0}/lib/src/compiler/tests/testdata/errors/20.out +0 -0
- {yara_x-0.14.0 → yara_x-1.0.0}/lib/src/compiler/tests/testdata/errors/21.in +0 -0
- {yara_x-0.14.0 → yara_x-1.0.0}/lib/src/compiler/tests/testdata/errors/21.out +0 -0
- {yara_x-0.14.0 → yara_x-1.0.0}/lib/src/compiler/tests/testdata/errors/22.in +0 -0
- {yara_x-0.14.0 → yara_x-1.0.0}/lib/src/compiler/tests/testdata/errors/22.out +0 -0
- {yara_x-0.14.0 → yara_x-1.0.0}/lib/src/compiler/tests/testdata/errors/23.in +0 -0
- {yara_x-0.14.0 → yara_x-1.0.0}/lib/src/compiler/tests/testdata/errors/23.out +0 -0
- {yara_x-0.14.0 → yara_x-1.0.0}/lib/src/compiler/tests/testdata/errors/24.in +0 -0
- {yara_x-0.14.0 → yara_x-1.0.0}/lib/src/compiler/tests/testdata/errors/24.out +0 -0
- {yara_x-0.14.0 → yara_x-1.0.0}/lib/src/compiler/tests/testdata/errors/25.in +0 -0
- {yara_x-0.14.0 → yara_x-1.0.0}/lib/src/compiler/tests/testdata/errors/25.out +0 -0
- {yara_x-0.14.0 → yara_x-1.0.0}/lib/src/compiler/tests/testdata/errors/26.in +0 -0
- {yara_x-0.14.0 → yara_x-1.0.0}/lib/src/compiler/tests/testdata/errors/26.out +0 -0
- {yara_x-0.14.0 → yara_x-1.0.0}/lib/src/compiler/tests/testdata/errors/28.in +0 -0
- {yara_x-0.14.0 → yara_x-1.0.0}/lib/src/compiler/tests/testdata/errors/28.out +0 -0
- {yara_x-0.14.0 → yara_x-1.0.0}/lib/src/compiler/tests/testdata/errors/29.in +0 -0
- {yara_x-0.14.0 → yara_x-1.0.0}/lib/src/compiler/tests/testdata/errors/29.out +0 -0
- {yara_x-0.14.0 → yara_x-1.0.0}/lib/src/compiler/tests/testdata/errors/3.in +0 -0
- {yara_x-0.14.0 → yara_x-1.0.0}/lib/src/compiler/tests/testdata/errors/3.out +0 -0
- {yara_x-0.14.0 → yara_x-1.0.0}/lib/src/compiler/tests/testdata/errors/30.in +0 -0
- {yara_x-0.14.0 → yara_x-1.0.0}/lib/src/compiler/tests/testdata/errors/30.out +0 -0
- {yara_x-0.14.0 → yara_x-1.0.0}/lib/src/compiler/tests/testdata/errors/31.in +0 -0
- {yara_x-0.14.0 → yara_x-1.0.0}/lib/src/compiler/tests/testdata/errors/31.out +0 -0
- {yara_x-0.14.0 → yara_x-1.0.0}/lib/src/compiler/tests/testdata/errors/32.in +0 -0
- {yara_x-0.14.0 → yara_x-1.0.0}/lib/src/compiler/tests/testdata/errors/32.out +0 -0
- {yara_x-0.14.0 → yara_x-1.0.0}/lib/src/compiler/tests/testdata/errors/33.in +0 -0
- {yara_x-0.14.0 → yara_x-1.0.0}/lib/src/compiler/tests/testdata/errors/33.out +0 -0
- {yara_x-0.14.0 → yara_x-1.0.0}/lib/src/compiler/tests/testdata/errors/34.in +0 -0
- {yara_x-0.14.0 → yara_x-1.0.0}/lib/src/compiler/tests/testdata/errors/34.out +0 -0
- {yara_x-0.14.0 → yara_x-1.0.0}/lib/src/compiler/tests/testdata/errors/35.in +0 -0
- {yara_x-0.14.0 → yara_x-1.0.0}/lib/src/compiler/tests/testdata/errors/35.out +0 -0
- {yara_x-0.14.0 → yara_x-1.0.0}/lib/src/compiler/tests/testdata/errors/37.in +0 -0
- {yara_x-0.14.0 → yara_x-1.0.0}/lib/src/compiler/tests/testdata/errors/37.out +0 -0
- {yara_x-0.14.0 → yara_x-1.0.0}/lib/src/compiler/tests/testdata/errors/38.in +0 -0
- {yara_x-0.14.0 → yara_x-1.0.0}/lib/src/compiler/tests/testdata/errors/38.out +0 -0
- {yara_x-0.14.0 → yara_x-1.0.0}/lib/src/compiler/tests/testdata/errors/39.in +0 -0
- {yara_x-0.14.0 → yara_x-1.0.0}/lib/src/compiler/tests/testdata/errors/39.out +0 -0
- {yara_x-0.14.0 → yara_x-1.0.0}/lib/src/compiler/tests/testdata/errors/4.in +0 -0
- {yara_x-0.14.0 → yara_x-1.0.0}/lib/src/compiler/tests/testdata/errors/4.out +0 -0
- {yara_x-0.14.0 → yara_x-1.0.0}/lib/src/compiler/tests/testdata/errors/40.in +0 -0
- {yara_x-0.14.0 → yara_x-1.0.0}/lib/src/compiler/tests/testdata/errors/40.out +0 -0
- {yara_x-0.14.0 → yara_x-1.0.0}/lib/src/compiler/tests/testdata/errors/41.in +0 -0
- {yara_x-0.14.0 → yara_x-1.0.0}/lib/src/compiler/tests/testdata/errors/41.out +0 -0
- {yara_x-0.14.0 → yara_x-1.0.0}/lib/src/compiler/tests/testdata/errors/42.in +0 -0
- {yara_x-0.14.0 → yara_x-1.0.0}/lib/src/compiler/tests/testdata/errors/42.out +0 -0
- {yara_x-0.14.0 → yara_x-1.0.0}/lib/src/compiler/tests/testdata/errors/43.in +0 -0
- {yara_x-0.14.0 → yara_x-1.0.0}/lib/src/compiler/tests/testdata/errors/43.out +0 -0
- {yara_x-0.14.0 → yara_x-1.0.0}/lib/src/compiler/tests/testdata/errors/44.in +0 -0
- {yara_x-0.14.0 → yara_x-1.0.0}/lib/src/compiler/tests/testdata/errors/44.out +0 -0
- {yara_x-0.14.0 → yara_x-1.0.0}/lib/src/compiler/tests/testdata/errors/45.in +0 -0
- {yara_x-0.14.0 → yara_x-1.0.0}/lib/src/compiler/tests/testdata/errors/45.out +0 -0
- {yara_x-0.14.0 → yara_x-1.0.0}/lib/src/compiler/tests/testdata/errors/46.in +0 -0
- {yara_x-0.14.0 → yara_x-1.0.0}/lib/src/compiler/tests/testdata/errors/46.out +0 -0
- {yara_x-0.14.0 → yara_x-1.0.0}/lib/src/compiler/tests/testdata/errors/47.in +0 -0
- {yara_x-0.14.0 → yara_x-1.0.0}/lib/src/compiler/tests/testdata/errors/47.out +0 -0
- {yara_x-0.14.0 → yara_x-1.0.0}/lib/src/compiler/tests/testdata/errors/48.in +0 -0
- {yara_x-0.14.0 → yara_x-1.0.0}/lib/src/compiler/tests/testdata/errors/48.out +0 -0
- {yara_x-0.14.0 → yara_x-1.0.0}/lib/src/compiler/tests/testdata/errors/49.in +0 -0
- {yara_x-0.14.0 → yara_x-1.0.0}/lib/src/compiler/tests/testdata/errors/49.out +0 -0
- {yara_x-0.14.0 → yara_x-1.0.0}/lib/src/compiler/tests/testdata/errors/5.in +0 -0
- {yara_x-0.14.0 → yara_x-1.0.0}/lib/src/compiler/tests/testdata/errors/5.out +0 -0
- {yara_x-0.14.0 → yara_x-1.0.0}/lib/src/compiler/tests/testdata/errors/50.in +0 -0
- {yara_x-0.14.0 → yara_x-1.0.0}/lib/src/compiler/tests/testdata/errors/50.out +0 -0
- {yara_x-0.14.0 → yara_x-1.0.0}/lib/src/compiler/tests/testdata/errors/51.in +0 -0
- {yara_x-0.14.0 → yara_x-1.0.0}/lib/src/compiler/tests/testdata/errors/51.out +0 -0
- {yara_x-0.14.0 → yara_x-1.0.0}/lib/src/compiler/tests/testdata/errors/52.in +0 -0
- {yara_x-0.14.0 → yara_x-1.0.0}/lib/src/compiler/tests/testdata/errors/52.out +0 -0
- {yara_x-0.14.0 → yara_x-1.0.0}/lib/src/compiler/tests/testdata/errors/53.in +0 -0
- {yara_x-0.14.0 → yara_x-1.0.0}/lib/src/compiler/tests/testdata/errors/53.out +0 -0
- {yara_x-0.14.0 → yara_x-1.0.0}/lib/src/compiler/tests/testdata/errors/54.in +0 -0
- {yara_x-0.14.0 → yara_x-1.0.0}/lib/src/compiler/tests/testdata/errors/54.out +0 -0
- {yara_x-0.14.0 → yara_x-1.0.0}/lib/src/compiler/tests/testdata/errors/55.in +0 -0
- {yara_x-0.14.0 → yara_x-1.0.0}/lib/src/compiler/tests/testdata/errors/55.out +0 -0
- {yara_x-0.14.0 → yara_x-1.0.0}/lib/src/compiler/tests/testdata/errors/56.in +0 -0
- {yara_x-0.14.0 → yara_x-1.0.0}/lib/src/compiler/tests/testdata/errors/56.out +0 -0
- {yara_x-0.14.0 → yara_x-1.0.0}/lib/src/compiler/tests/testdata/errors/57.in +0 -0
- {yara_x-0.14.0 → yara_x-1.0.0}/lib/src/compiler/tests/testdata/errors/57.out +0 -0
- {yara_x-0.14.0 → yara_x-1.0.0}/lib/src/compiler/tests/testdata/errors/58.in +0 -0
- {yara_x-0.14.0 → yara_x-1.0.0}/lib/src/compiler/tests/testdata/errors/58.out +0 -0
- {yara_x-0.14.0 → yara_x-1.0.0}/lib/src/compiler/tests/testdata/errors/59.in +0 -0
- {yara_x-0.14.0 → yara_x-1.0.0}/lib/src/compiler/tests/testdata/errors/59.out +0 -0
- {yara_x-0.14.0 → yara_x-1.0.0}/lib/src/compiler/tests/testdata/errors/6.in +0 -0
- {yara_x-0.14.0 → yara_x-1.0.0}/lib/src/compiler/tests/testdata/errors/6.out +0 -0
- {yara_x-0.14.0 → yara_x-1.0.0}/lib/src/compiler/tests/testdata/errors/60.in +0 -0
- {yara_x-0.14.0 → yara_x-1.0.0}/lib/src/compiler/tests/testdata/errors/60.out +0 -0
- {yara_x-0.14.0 → yara_x-1.0.0}/lib/src/compiler/tests/testdata/errors/61.in +0 -0
- {yara_x-0.14.0 → yara_x-1.0.0}/lib/src/compiler/tests/testdata/errors/61.out +0 -0
- {yara_x-0.14.0 → yara_x-1.0.0}/lib/src/compiler/tests/testdata/errors/62.in +0 -0
- {yara_x-0.14.0 → yara_x-1.0.0}/lib/src/compiler/tests/testdata/errors/62.out +0 -0
- {yara_x-0.14.0 → yara_x-1.0.0}/lib/src/compiler/tests/testdata/errors/63.in +0 -0
- {yara_x-0.14.0 → yara_x-1.0.0}/lib/src/compiler/tests/testdata/errors/63.out +0 -0
- {yara_x-0.14.0 → yara_x-1.0.0}/lib/src/compiler/tests/testdata/errors/64.in +0 -0
- {yara_x-0.14.0 → yara_x-1.0.0}/lib/src/compiler/tests/testdata/errors/64.out +0 -0
- {yara_x-0.14.0 → yara_x-1.0.0}/lib/src/compiler/tests/testdata/errors/65.in +0 -0
- {yara_x-0.14.0 → yara_x-1.0.0}/lib/src/compiler/tests/testdata/errors/65.out +0 -0
- {yara_x-0.14.0 → yara_x-1.0.0}/lib/src/compiler/tests/testdata/errors/66.in +0 -0
- {yara_x-0.14.0 → yara_x-1.0.0}/lib/src/compiler/tests/testdata/errors/66.out +0 -0
- {yara_x-0.14.0 → yara_x-1.0.0}/lib/src/compiler/tests/testdata/errors/67.in +0 -0
- {yara_x-0.14.0 → yara_x-1.0.0}/lib/src/compiler/tests/testdata/errors/67.out +0 -0
- {yara_x-0.14.0 → yara_x-1.0.0}/lib/src/compiler/tests/testdata/errors/68.in +0 -0
- {yara_x-0.14.0 → yara_x-1.0.0}/lib/src/compiler/tests/testdata/errors/68.out +0 -0
- {yara_x-0.14.0 → yara_x-1.0.0}/lib/src/compiler/tests/testdata/errors/69.in +0 -0
- {yara_x-0.14.0 → yara_x-1.0.0}/lib/src/compiler/tests/testdata/errors/69.out +0 -0
- {yara_x-0.14.0 → yara_x-1.0.0}/lib/src/compiler/tests/testdata/errors/7.in +0 -0
- {yara_x-0.14.0 → yara_x-1.0.0}/lib/src/compiler/tests/testdata/errors/7.out +0 -0
- {yara_x-0.14.0 → yara_x-1.0.0}/lib/src/compiler/tests/testdata/errors/70.in +0 -0
- {yara_x-0.14.0 → yara_x-1.0.0}/lib/src/compiler/tests/testdata/errors/70.out +0 -0
- {yara_x-0.14.0 → yara_x-1.0.0}/lib/src/compiler/tests/testdata/errors/71.in +0 -0
- {yara_x-0.14.0 → yara_x-1.0.0}/lib/src/compiler/tests/testdata/errors/71.out +0 -0
- {yara_x-0.14.0 → yara_x-1.0.0}/lib/src/compiler/tests/testdata/errors/72.in +0 -0
- {yara_x-0.14.0 → yara_x-1.0.0}/lib/src/compiler/tests/testdata/errors/72.out +0 -0
- {yara_x-0.14.0 → yara_x-1.0.0}/lib/src/compiler/tests/testdata/errors/73.in +0 -0
- {yara_x-0.14.0 → yara_x-1.0.0}/lib/src/compiler/tests/testdata/errors/73.out +0 -0
- {yara_x-0.14.0 → yara_x-1.0.0}/lib/src/compiler/tests/testdata/errors/74.in +0 -0
- {yara_x-0.14.0 → yara_x-1.0.0}/lib/src/compiler/tests/testdata/errors/74.out +0 -0
- {yara_x-0.14.0 → yara_x-1.0.0}/lib/src/compiler/tests/testdata/errors/75.in +0 -0
- {yara_x-0.14.0 → yara_x-1.0.0}/lib/src/compiler/tests/testdata/errors/75.out +0 -0
- {yara_x-0.14.0 → yara_x-1.0.0}/lib/src/compiler/tests/testdata/errors/76.in +0 -0
- {yara_x-0.14.0 → yara_x-1.0.0}/lib/src/compiler/tests/testdata/errors/76.out +0 -0
- {yara_x-0.14.0 → yara_x-1.0.0}/lib/src/compiler/tests/testdata/errors/77.in +0 -0
- {yara_x-0.14.0 → yara_x-1.0.0}/lib/src/compiler/tests/testdata/errors/77.out +0 -0
- {yara_x-0.14.0 → yara_x-1.0.0}/lib/src/compiler/tests/testdata/errors/78.in +0 -0
- {yara_x-0.14.0 → yara_x-1.0.0}/lib/src/compiler/tests/testdata/errors/78.out +0 -0
- {yara_x-0.14.0 → yara_x-1.0.0}/lib/src/compiler/tests/testdata/errors/79.in +0 -0
- {yara_x-0.14.0 → yara_x-1.0.0}/lib/src/compiler/tests/testdata/errors/79.out +0 -0
- {yara_x-0.14.0 → yara_x-1.0.0}/lib/src/compiler/tests/testdata/errors/8.in +0 -0
- {yara_x-0.14.0 → yara_x-1.0.0}/lib/src/compiler/tests/testdata/errors/8.out +0 -0
- {yara_x-0.14.0 → yara_x-1.0.0}/lib/src/compiler/tests/testdata/errors/80.in +0 -0
- {yara_x-0.14.0 → yara_x-1.0.0}/lib/src/compiler/tests/testdata/errors/80.out +0 -0
- {yara_x-0.14.0 → yara_x-1.0.0}/lib/src/compiler/tests/testdata/errors/81.in +0 -0
- {yara_x-0.14.0 → yara_x-1.0.0}/lib/src/compiler/tests/testdata/errors/81.out +0 -0
- {yara_x-0.14.0 → yara_x-1.0.0}/lib/src/compiler/tests/testdata/errors/82.in +0 -0
- {yara_x-0.14.0 → yara_x-1.0.0}/lib/src/compiler/tests/testdata/errors/82.out +0 -0
- {yara_x-0.14.0 → yara_x-1.0.0}/lib/src/compiler/tests/testdata/errors/83.in +0 -0
- {yara_x-0.14.0 → yara_x-1.0.0}/lib/src/compiler/tests/testdata/errors/83.out +0 -0
- {yara_x-0.14.0 → yara_x-1.0.0}/lib/src/compiler/tests/testdata/errors/84.in +0 -0
- {yara_x-0.14.0 → yara_x-1.0.0}/lib/src/compiler/tests/testdata/errors/84.out +0 -0
- {yara_x-0.14.0 → yara_x-1.0.0}/lib/src/compiler/tests/testdata/errors/85.in +0 -0
- {yara_x-0.14.0 → yara_x-1.0.0}/lib/src/compiler/tests/testdata/errors/85.out +0 -0
- {yara_x-0.14.0 → yara_x-1.0.0}/lib/src/compiler/tests/testdata/errors/86.in +0 -0
- {yara_x-0.14.0 → yara_x-1.0.0}/lib/src/compiler/tests/testdata/errors/86.out +0 -0
- {yara_x-0.14.0 → yara_x-1.0.0}/lib/src/compiler/tests/testdata/errors/87.in +0 -0
- {yara_x-0.14.0 → yara_x-1.0.0}/lib/src/compiler/tests/testdata/errors/87.out +0 -0
- {yara_x-0.14.0 → yara_x-1.0.0}/lib/src/compiler/tests/testdata/errors/88.in +0 -0
- {yara_x-0.14.0 → yara_x-1.0.0}/lib/src/compiler/tests/testdata/errors/88.out +0 -0
- {yara_x-0.14.0 → yara_x-1.0.0}/lib/src/compiler/tests/testdata/errors/89.in +0 -0
- {yara_x-0.14.0 → yara_x-1.0.0}/lib/src/compiler/tests/testdata/errors/89.out +0 -0
- {yara_x-0.14.0 → yara_x-1.0.0}/lib/src/compiler/tests/testdata/errors/9.in +0 -0
- {yara_x-0.14.0 → yara_x-1.0.0}/lib/src/compiler/tests/testdata/errors/9.out +0 -0
- {yara_x-0.14.0 → yara_x-1.0.0}/lib/src/compiler/tests/testdata/errors/90.in +0 -0
- {yara_x-0.14.0 → yara_x-1.0.0}/lib/src/compiler/tests/testdata/errors/90.out +0 -0
- {yara_x-0.14.0 → yara_x-1.0.0}/lib/src/compiler/tests/testdata/errors/91.in +0 -0
- {yara_x-0.14.0 → yara_x-1.0.0}/lib/src/compiler/tests/testdata/errors/91.out +0 -0
- {yara_x-0.14.0 → yara_x-1.0.0}/lib/src/compiler/tests/testdata/errors/92.in +0 -0
- {yara_x-0.14.0 → yara_x-1.0.0}/lib/src/compiler/tests/testdata/errors/92.out +0 -0
- {yara_x-0.14.0 → yara_x-1.0.0}/lib/src/compiler/tests/testdata/errors/93.in +0 -0
- {yara_x-0.14.0 → yara_x-1.0.0}/lib/src/compiler/tests/testdata/errors/93.out +0 -0
- {yara_x-0.14.0 → yara_x-1.0.0}/lib/src/compiler/tests/testdata/errors/94.in +0 -0
- {yara_x-0.14.0 → yara_x-1.0.0}/lib/src/compiler/tests/testdata/errors/94.out +0 -0
- {yara_x-0.14.0 → yara_x-1.0.0}/lib/src/compiler/tests/testdata/errors/95.in +0 -0
- {yara_x-0.14.0 → yara_x-1.0.0}/lib/src/compiler/tests/testdata/errors/95.out +0 -0
- {yara_x-0.14.0 → yara_x-1.0.0}/lib/src/compiler/tests/testdata/errors/96.in +0 -0
- {yara_x-0.14.0 → yara_x-1.0.0}/lib/src/compiler/tests/testdata/errors/96.out +0 -0
- {yara_x-0.14.0 → yara_x-1.0.0}/lib/src/compiler/tests/testdata/errors/97.in +0 -0
- {yara_x-0.14.0 → yara_x-1.0.0}/lib/src/compiler/tests/testdata/errors/97.out +0 -0
- {yara_x-0.14.0 → yara_x-1.0.0}/lib/src/compiler/tests/testdata/errors/98.in +0 -0
- {yara_x-0.14.0 → yara_x-1.0.0}/lib/src/compiler/tests/testdata/errors/98.out +0 -0
- {yara_x-0.14.0 → yara_x-1.0.0}/lib/src/compiler/tests/testdata/errors/99.in +0 -0
- {yara_x-0.14.0 → yara_x-1.0.0}/lib/src/compiler/tests/testdata/errors/99.out +0 -0
- {yara_x-0.14.0 → yara_x-1.0.0}/lib/src/compiler/tests/testdata/warnings/1.in +0 -0
- {yara_x-0.14.0 → yara_x-1.0.0}/lib/src/compiler/tests/testdata/warnings/1.out +0 -0
- {yara_x-0.14.0 → yara_x-1.0.0}/lib/src/compiler/tests/testdata/warnings/10.in +0 -0
- {yara_x-0.14.0 → yara_x-1.0.0}/lib/src/compiler/tests/testdata/warnings/10.out +0 -0
- {yara_x-0.14.0 → yara_x-1.0.0}/lib/src/compiler/tests/testdata/warnings/11.in +0 -0
- {yara_x-0.14.0 → yara_x-1.0.0}/lib/src/compiler/tests/testdata/warnings/11.out +0 -0
- {yara_x-0.14.0 → yara_x-1.0.0}/lib/src/compiler/tests/testdata/warnings/12.in +0 -0
- {yara_x-0.14.0 → yara_x-1.0.0}/lib/src/compiler/tests/testdata/warnings/12.out +0 -0
- {yara_x-0.14.0 → yara_x-1.0.0}/lib/src/compiler/tests/testdata/warnings/13.in +0 -0
- {yara_x-0.14.0 → yara_x-1.0.0}/lib/src/compiler/tests/testdata/warnings/13.out +0 -0
- {yara_x-0.14.0 → yara_x-1.0.0}/lib/src/compiler/tests/testdata/warnings/14.in +0 -0
- {yara_x-0.14.0 → yara_x-1.0.0}/lib/src/compiler/tests/testdata/warnings/14.out +0 -0
- {yara_x-0.14.0 → yara_x-1.0.0}/lib/src/compiler/tests/testdata/warnings/15.in +0 -0
- {yara_x-0.14.0 → yara_x-1.0.0}/lib/src/compiler/tests/testdata/warnings/15.out +0 -0
- {yara_x-0.14.0 → yara_x-1.0.0}/lib/src/compiler/tests/testdata/warnings/16.in +0 -0
- {yara_x-0.14.0 → yara_x-1.0.0}/lib/src/compiler/tests/testdata/warnings/16.out +0 -0
- {yara_x-0.14.0 → yara_x-1.0.0}/lib/src/compiler/tests/testdata/warnings/17.in +0 -0
- {yara_x-0.14.0 → yara_x-1.0.0}/lib/src/compiler/tests/testdata/warnings/17.out +0 -0
- {yara_x-0.14.0 → yara_x-1.0.0}/lib/src/compiler/tests/testdata/warnings/18.in +0 -0
- {yara_x-0.14.0 → yara_x-1.0.0}/lib/src/compiler/tests/testdata/warnings/18.out +0 -0
- {yara_x-0.14.0 → yara_x-1.0.0}/lib/src/compiler/tests/testdata/warnings/19.in +0 -0
- {yara_x-0.14.0 → yara_x-1.0.0}/lib/src/compiler/tests/testdata/warnings/19.out +0 -0
- {yara_x-0.14.0 → yara_x-1.0.0}/lib/src/compiler/tests/testdata/warnings/2.in +0 -0
- {yara_x-0.14.0 → yara_x-1.0.0}/lib/src/compiler/tests/testdata/warnings/2.out +0 -0
- {yara_x-0.14.0 → yara_x-1.0.0}/lib/src/compiler/tests/testdata/warnings/20.in +0 -0
- {yara_x-0.14.0 → yara_x-1.0.0}/lib/src/compiler/tests/testdata/warnings/20.out +0 -0
- {yara_x-0.14.0 → yara_x-1.0.0}/lib/src/compiler/tests/testdata/warnings/21.in +0 -0
- {yara_x-0.14.0 → yara_x-1.0.0}/lib/src/compiler/tests/testdata/warnings/21.out +0 -0
- {yara_x-0.14.0 → yara_x-1.0.0}/lib/src/compiler/tests/testdata/warnings/22.in +0 -0
- {yara_x-0.14.0 → yara_x-1.0.0}/lib/src/compiler/tests/testdata/warnings/22.out +0 -0
- {yara_x-0.14.0 → yara_x-1.0.0}/lib/src/compiler/tests/testdata/warnings/23.in +0 -0
- {yara_x-0.14.0 → yara_x-1.0.0}/lib/src/compiler/tests/testdata/warnings/23.out +0 -0
- {yara_x-0.14.0 → yara_x-1.0.0}/lib/src/compiler/tests/testdata/warnings/24.in +0 -0
- {yara_x-0.14.0 → yara_x-1.0.0}/lib/src/compiler/tests/testdata/warnings/24.out +0 -0
- {yara_x-0.14.0 → yara_x-1.0.0}/lib/src/compiler/tests/testdata/warnings/25.in +0 -0
- {yara_x-0.14.0 → yara_x-1.0.0}/lib/src/compiler/tests/testdata/warnings/25.out +0 -0
- {yara_x-0.14.0 → yara_x-1.0.0}/lib/src/compiler/tests/testdata/warnings/26.in +0 -0
- {yara_x-0.14.0 → yara_x-1.0.0}/lib/src/compiler/tests/testdata/warnings/26.out +0 -0
- {yara_x-0.14.0 → yara_x-1.0.0}/lib/src/compiler/tests/testdata/warnings/27.in +0 -0
- {yara_x-0.14.0 → yara_x-1.0.0}/lib/src/compiler/tests/testdata/warnings/27.out +0 -0
- {yara_x-0.14.0 → yara_x-1.0.0}/lib/src/compiler/tests/testdata/warnings/28.in +0 -0
- {yara_x-0.14.0 → yara_x-1.0.0}/lib/src/compiler/tests/testdata/warnings/28.out +0 -0
- {yara_x-0.14.0 → yara_x-1.0.0}/lib/src/compiler/tests/testdata/warnings/29.in +0 -0
- {yara_x-0.14.0 → yara_x-1.0.0}/lib/src/compiler/tests/testdata/warnings/29.out +0 -0
- {yara_x-0.14.0 → yara_x-1.0.0}/lib/src/compiler/tests/testdata/warnings/3.in +0 -0
- {yara_x-0.14.0 → yara_x-1.0.0}/lib/src/compiler/tests/testdata/warnings/3.out +0 -0
- {yara_x-0.14.0 → yara_x-1.0.0}/lib/src/compiler/tests/testdata/warnings/30.in +0 -0
- {yara_x-0.14.0 → yara_x-1.0.0}/lib/src/compiler/tests/testdata/warnings/30.out +0 -0
- {yara_x-0.14.0 → yara_x-1.0.0}/lib/src/compiler/tests/testdata/warnings/31.in +0 -0
- {yara_x-0.14.0 → yara_x-1.0.0}/lib/src/compiler/tests/testdata/warnings/31.out +0 -0
- {yara_x-0.14.0 → yara_x-1.0.0}/lib/src/compiler/tests/testdata/warnings/32.in +0 -0
- {yara_x-0.14.0 → yara_x-1.0.0}/lib/src/compiler/tests/testdata/warnings/32.out +0 -0
- {yara_x-0.14.0 → yara_x-1.0.0}/lib/src/compiler/tests/testdata/warnings/33.in +0 -0
- {yara_x-0.14.0 → yara_x-1.0.0}/lib/src/compiler/tests/testdata/warnings/33.out +0 -0
- {yara_x-0.14.0 → yara_x-1.0.0}/lib/src/compiler/tests/testdata/warnings/34.in +0 -0
- {yara_x-0.14.0 → yara_x-1.0.0}/lib/src/compiler/tests/testdata/warnings/34.out +0 -0
- {yara_x-0.14.0 → yara_x-1.0.0}/lib/src/compiler/tests/testdata/warnings/35.in +0 -0
- {yara_x-0.14.0 → yara_x-1.0.0}/lib/src/compiler/tests/testdata/warnings/35.out +0 -0
- {yara_x-0.14.0 → yara_x-1.0.0}/lib/src/compiler/tests/testdata/warnings/4.in +0 -0
- {yara_x-0.14.0 → yara_x-1.0.0}/lib/src/compiler/tests/testdata/warnings/4.out +0 -0
- {yara_x-0.14.0 → yara_x-1.0.0}/lib/src/compiler/tests/testdata/warnings/5.in +0 -0
- {yara_x-0.14.0 → yara_x-1.0.0}/lib/src/compiler/tests/testdata/warnings/5.out +0 -0
- {yara_x-0.14.0 → yara_x-1.0.0}/lib/src/compiler/tests/testdata/warnings/6.in +0 -0
- {yara_x-0.14.0 → yara_x-1.0.0}/lib/src/compiler/tests/testdata/warnings/6.out +0 -0
- {yara_x-0.14.0 → yara_x-1.0.0}/lib/src/compiler/tests/testdata/warnings/7.in +0 -0
- {yara_x-0.14.0 → yara_x-1.0.0}/lib/src/compiler/tests/testdata/warnings/7.out +0 -0
- {yara_x-0.14.0 → yara_x-1.0.0}/lib/src/compiler/tests/testdata/warnings/8.in +0 -0
- {yara_x-0.14.0 → yara_x-1.0.0}/lib/src/compiler/tests/testdata/warnings/8.out +0 -0
- {yara_x-0.14.0 → yara_x-1.0.0}/lib/src/compiler/tests/testdata/warnings/9.in +0 -0
- {yara_x-0.14.0 → yara_x-1.0.0}/lib/src/compiler/tests/testdata/warnings/9.out +0 -0
- {yara_x-0.14.0 → yara_x-1.0.0}/lib/src/compiler/tests/testdata/warnings/no_warnings.out +0 -0
- {yara_x-0.14.0 → yara_x-1.0.0}/lib/src/lib.rs +0 -0
- {yara_x-0.14.0 → yara_x-1.0.0}/lib/src/models.rs +0 -0
- {yara_x-0.14.0 → yara_x-1.0.0}/lib/src/modules/add_modules.rs +0 -0
- {yara_x-0.14.0 → yara_x-1.0.0}/lib/src/modules/console.rs +0 -0
- {yara_x-0.14.0 → yara_x-1.0.0}/lib/src/modules/cuckoo/mod.rs +0 -0
- {yara_x-0.14.0 → yara_x-1.0.0}/lib/src/modules/cuckoo/schema.rs +0 -0
- {yara_x-0.14.0 → yara_x-1.0.0}/lib/src/modules/cuckoo/tests/mod.rs +0 -0
- {yara_x-0.14.0 → yara_x-1.0.0}/lib/src/modules/cuckoo/tests/testdata/1.json +0 -0
- {yara_x-0.14.0 → yara_x-1.0.0}/lib/src/modules/cuckoo/tests/testdata/1.yar +0 -0
- {yara_x-0.14.0 → yara_x-1.0.0}/lib/src/modules/cuckoo/tests/testdata/2.json +0 -0
- {yara_x-0.14.0 → yara_x-1.0.0}/lib/src/modules/cuckoo/tests/testdata/2.yar +0 -0
- {yara_x-0.14.0 → yara_x-1.0.0}/lib/src/modules/dotnet/mod.rs +0 -0
- {yara_x-0.14.0 → yara_x-1.0.0}/lib/src/modules/dotnet/tests/testdata/605ebe5b5f4b94e1a73e0ad1162bd542e5cb948d1a4ea5a575a14d6b9d6ee849.in +0 -0
- {yara_x-0.14.0 → yara_x-1.0.0}/lib/src/modules/dotnet/tests/testdata/86a1e48cfc843eabfe1b468ef9358c1068950f849c612ab808225b359db0bb8c.in +0 -0
- {yara_x-0.14.0 → yara_x-1.0.0}/lib/src/modules/elf/parser.rs +0 -0
- {yara_x-0.14.0 → yara_x-1.0.0}/lib/src/modules/elf/tests/mod.rs +0 -0
- {yara_x-0.14.0 → yara_x-1.0.0}/lib/src/modules/hash/tests/mod.rs +0 -0
- {yara_x-0.14.0 → yara_x-1.0.0}/lib/src/modules/lnk/mod.rs +0 -0
- {yara_x-0.14.0 → yara_x-1.0.0}/lib/src/modules/lnk/parser.rs +0 -0
- {yara_x-0.14.0 → yara_x-1.0.0}/lib/src/modules/macho/mod.rs +0 -0
- {yara_x-0.14.0 → yara_x-1.0.0}/lib/src/modules/macho/parser.rs +0 -0
- {yara_x-0.14.0 → yara_x-1.0.0}/lib/src/modules/macho/tests/mod.rs +0 -0
- {yara_x-0.14.0 → yara_x-1.0.0}/lib/src/modules/magic/mod.rs +0 -0
- {yara_x-0.14.0 → yara_x-1.0.0}/lib/src/modules/magic/tests/mod.rs +0 -0
- {yara_x-0.14.0 → yara_x-1.0.0}/lib/src/modules/math.rs +0 -0
- {yara_x-0.14.0 → yara_x-1.0.0}/lib/src/modules/modules.rs +0 -0
- {yara_x-0.14.0 → yara_x-1.0.0}/lib/src/modules/pe/authenticode.rs +0 -0
- {yara_x-0.14.0 → yara_x-1.0.0}/lib/src/modules/pe/mod.rs +0 -0
- {yara_x-0.14.0 → yara_x-1.0.0}/lib/src/modules/pe/parser.rs +0 -0
- {yara_x-0.14.0 → yara_x-1.0.0}/lib/src/modules/pe/rva2off.rs +0 -0
- {yara_x-0.14.0 → yara_x-1.0.0}/lib/src/modules/pe/tests/mod.rs +0 -0
- {yara_x-0.14.0 → yara_x-1.0.0}/lib/src/modules/protos/console.proto +0 -0
- {yara_x-0.14.0 → yara_x-1.0.0}/lib/src/modules/protos/cuckoo.proto +0 -0
- {yara_x-0.14.0 → yara_x-1.0.0}/lib/src/modules/protos/hash.proto +0 -0
- {yara_x-0.14.0 → yara_x-1.0.0}/lib/src/modules/protos/lnk.proto +0 -0
- {yara_x-0.14.0 → yara_x-1.0.0}/lib/src/modules/protos/magic.proto +0 -0
- {yara_x-0.14.0 → yara_x-1.0.0}/lib/src/modules/protos/math.proto +0 -0
- {yara_x-0.14.0 → yara_x-1.0.0}/lib/src/modules/protos/mods.proto +0 -0
- {yara_x-0.14.0 → yara_x-1.0.0}/lib/src/modules/protos/string.proto +0 -0
- {yara_x-0.14.0 → yara_x-1.0.0}/lib/src/modules/protos/test_proto3.proto +0 -0
- {yara_x-0.14.0 → yara_x-1.0.0}/lib/src/modules/protos/text.proto +0 -0
- {yara_x-0.14.0 → yara_x-1.0.0}/lib/src/modules/protos/time.proto +0 -0
- {yara_x-0.14.0 → yara_x-1.0.0}/lib/src/modules/protos/vt/analysis.proto +0 -0
- {yara_x-0.14.0 → yara_x-1.0.0}/lib/src/modules/protos/vt/filetypes.proto +0 -0
- {yara_x-0.14.0 → yara_x-1.0.0}/lib/src/modules/protos/vt/gti_score.proto +0 -0
- {yara_x-0.14.0 → yara_x-1.0.0}/lib/src/modules/protos/vt/hunting_gti_score.proto +0 -0
- {yara_x-0.14.0 → yara_x-1.0.0}/lib/src/modules/protos/vt/sandbox.proto +0 -0
- {yara_x-0.14.0 → yara_x-1.0.0}/lib/src/modules/protos/vt/sigma.proto +0 -0
- {yara_x-0.14.0 → yara_x-1.0.0}/lib/src/modules/protos/vt/submitter.proto +0 -0
- {yara_x-0.14.0 → yara_x-1.0.0}/lib/src/modules/protos/vt/tools/net_analysis.proto +0 -0
- {yara_x-0.14.0 → yara_x-1.0.0}/lib/src/modules/string.rs +0 -0
- {yara_x-0.14.0 → yara_x-1.0.0}/lib/src/modules/test_proto2/tests/mod.rs +0 -0
- {yara_x-0.14.0 → yara_x-1.0.0}/lib/src/modules/test_proto3/mod.rs +0 -0
- {yara_x-0.14.0 → yara_x-1.0.0}/lib/src/modules/tests.rs +0 -0
- {yara_x-0.14.0 → yara_x-1.0.0}/lib/src/modules/text.rs +0 -0
- {yara_x-0.14.0 → yara_x-1.0.0}/lib/src/modules/time.rs +0 -0
- {yara_x-0.14.0 → yara_x-1.0.0}/lib/src/modules/utils/asn1.rs +0 -0
- {yara_x-0.14.0 → yara_x-1.0.0}/lib/src/modules/utils/mod.rs +0 -0
- {yara_x-0.14.0 → yara_x-1.0.0}/lib/src/re/bitmapset.rs +0 -0
- {yara_x-0.14.0 → yara_x-1.0.0}/lib/src/re/fast/compiler.rs +0 -0
- {yara_x-0.14.0 → yara_x-1.0.0}/lib/src/re/fast/fastvm.rs +0 -0
- {yara_x-0.14.0 → yara_x-1.0.0}/lib/src/re/fast/instr.rs +0 -0
- {yara_x-0.14.0 → yara_x-1.0.0}/lib/src/re/fast/mod.rs +0 -0
- {yara_x-0.14.0 → yara_x-1.0.0}/lib/src/re/hir.rs +0 -0
- {yara_x-0.14.0 → yara_x-1.0.0}/lib/src/re/mod.rs +0 -0
- {yara_x-0.14.0 → yara_x-1.0.0}/lib/src/re/parser.rs +0 -0
- {yara_x-0.14.0 → yara_x-1.0.0}/lib/src/re/thompson/compiler.rs +0 -0
- {yara_x-0.14.0 → yara_x-1.0.0}/lib/src/re/thompson/instr.rs +0 -0
- {yara_x-0.14.0 → yara_x-1.0.0}/lib/src/re/thompson/mod.rs +0 -0
- {yara_x-0.14.0 → yara_x-1.0.0}/lib/src/re/thompson/pikevm.rs +0 -0
- {yara_x-0.14.0 → yara_x-1.0.0}/lib/src/re/thompson/tests.rs +0 -0
- {yara_x-0.14.0 → yara_x-1.0.0}/lib/src/scanner/matches.rs +0 -0
- {yara_x-0.14.0 → yara_x-1.0.0}/lib/src/scanner/tests.rs +0 -0
- {yara_x-0.14.0 → yara_x-1.0.0}/lib/src/tests/mod.rs +0 -0
- {yara_x-0.14.0 → yara_x-1.0.0}/lib/src/tests/testdata/jumps.bin +0 -0
- {yara_x-0.14.0 → yara_x-1.0.0}/lib/src/types/map.rs +0 -0
- {yara_x-0.14.0 → yara_x-1.0.0}/lib/src/wasm/builder.rs +0 -0
- {yara_x-0.14.0 → yara_x-1.0.0}/macros/Cargo.lock +0 -0
- {yara_x-0.14.0 → yara_x-1.0.0}/macros/Cargo.toml +0 -0
- {yara_x-0.14.0 → yara_x-1.0.0}/macros/src/error.rs +0 -0
- {yara_x-0.14.0 → yara_x-1.0.0}/macros/src/lib.rs +0 -0
- {yara_x-0.14.0 → yara_x-1.0.0}/macros/src/module_export.rs +0 -0
- {yara_x-0.14.0 → yara_x-1.0.0}/macros/src/module_main.rs +0 -0
- {yara_x-0.14.0 → yara_x-1.0.0}/parser/Cargo.toml +0 -0
- {yara_x-0.14.0 → yara_x-1.0.0}/parser/src/ast/ascii_tree.rs +0 -0
- {yara_x-0.14.0 → yara_x-1.0.0}/parser/src/ast/errors.rs +0 -0
- {yara_x-0.14.0 → yara_x-1.0.0}/parser/src/cst/mod.rs +0 -0
- {yara_x-0.14.0 → yara_x-1.0.0}/parser/src/cst/syntax_stream.rs +0 -0
- {yara_x-0.14.0 → yara_x-1.0.0}/parser/src/cst/tests.rs +0 -0
- {yara_x-0.14.0 → yara_x-1.0.0}/parser/src/lib.rs +0 -0
- {yara_x-0.14.0 → yara_x-1.0.0}/parser/src/parser/tests/testdata/arithmetic-ops.ast +0 -0
- {yara_x-0.14.0 → yara_x-1.0.0}/parser/src/parser/tests/testdata/arithmetic-ops.cst +0 -0
- {yara_x-0.14.0 → yara_x-1.0.0}/parser/src/parser/tests/testdata/arithmetic-ops.in +0 -0
- {yara_x-0.14.0 → yara_x-1.0.0}/parser/src/parser/tests/testdata/basic-1.ast +0 -0
- {yara_x-0.14.0 → yara_x-1.0.0}/parser/src/parser/tests/testdata/basic-1.cst +0 -0
- {yara_x-0.14.0 → yara_x-1.0.0}/parser/src/parser/tests/testdata/basic-1.in +0 -0
- {yara_x-0.14.0 → yara_x-1.0.0}/parser/src/parser/tests/testdata/basic-2.ast +0 -0
- {yara_x-0.14.0 → yara_x-1.0.0}/parser/src/parser/tests/testdata/basic-2.cst +0 -0
- {yara_x-0.14.0 → yara_x-1.0.0}/parser/src/parser/tests/testdata/basic-2.in +0 -0
- {yara_x-0.14.0 → yara_x-1.0.0}/parser/src/parser/tests/testdata/basic-3.ast +0 -0
- {yara_x-0.14.0 → yara_x-1.0.0}/parser/src/parser/tests/testdata/basic-3.cst +0 -0
- {yara_x-0.14.0 → yara_x-1.0.0}/parser/src/parser/tests/testdata/basic-3.in +0 -0
- {yara_x-0.14.0 → yara_x-1.0.0}/parser/src/parser/tests/testdata/basic-4.ast +0 -0
- {yara_x-0.14.0 → yara_x-1.0.0}/parser/src/parser/tests/testdata/basic-4.cst +0 -0
- {yara_x-0.14.0 → yara_x-1.0.0}/parser/src/parser/tests/testdata/basic-4.in +0 -0
- {yara_x-0.14.0 → yara_x-1.0.0}/parser/src/parser/tests/testdata/basic-error-1.ast +0 -0
- {yara_x-0.14.0 → yara_x-1.0.0}/parser/src/parser/tests/testdata/basic-error-1.cst +0 -0
- {yara_x-0.14.0 → yara_x-1.0.0}/parser/src/parser/tests/testdata/basic-error-1.in +0 -0
- {yara_x-0.14.0 → yara_x-1.0.0}/parser/src/parser/tests/testdata/basic-error-2.ast +0 -0
- {yara_x-0.14.0 → yara_x-1.0.0}/parser/src/parser/tests/testdata/basic-error-2.cst +0 -0
- {yara_x-0.14.0 → yara_x-1.0.0}/parser/src/parser/tests/testdata/basic-error-2.in +0 -0
- {yara_x-0.14.0 → yara_x-1.0.0}/parser/src/parser/tests/testdata/basic-error-3.ast +0 -0
- {yara_x-0.14.0 → yara_x-1.0.0}/parser/src/parser/tests/testdata/basic-error-3.cst +0 -0
- {yara_x-0.14.0 → yara_x-1.0.0}/parser/src/parser/tests/testdata/basic-error-3.in +0 -0
- {yara_x-0.14.0 → yara_x-1.0.0}/parser/src/parser/tests/testdata/basic-error-4.ast +0 -0
- {yara_x-0.14.0 → yara_x-1.0.0}/parser/src/parser/tests/testdata/basic-error-4.cst +0 -0
- {yara_x-0.14.0 → yara_x-1.0.0}/parser/src/parser/tests/testdata/basic-error-4.in +0 -0
- {yara_x-0.14.0 → yara_x-1.0.0}/parser/src/parser/tests/testdata/basic-error-5.ast +0 -0
- {yara_x-0.14.0 → yara_x-1.0.0}/parser/src/parser/tests/testdata/basic-error-5.cst +0 -0
- {yara_x-0.14.0 → yara_x-1.0.0}/parser/src/parser/tests/testdata/basic-error-5.in +0 -0
- {yara_x-0.14.0 → yara_x-1.0.0}/parser/src/parser/tests/testdata/bitwise-ops-error-1.ast +0 -0
- {yara_x-0.14.0 → yara_x-1.0.0}/parser/src/parser/tests/testdata/bitwise-ops-error-1.cst +0 -0
- {yara_x-0.14.0 → yara_x-1.0.0}/parser/src/parser/tests/testdata/bitwise-ops-error-1.in +0 -0
- {yara_x-0.14.0 → yara_x-1.0.0}/parser/src/parser/tests/testdata/bitwise-ops.ast +0 -0
- {yara_x-0.14.0 → yara_x-1.0.0}/parser/src/parser/tests/testdata/bitwise-ops.cst +0 -0
- {yara_x-0.14.0 → yara_x-1.0.0}/parser/src/parser/tests/testdata/bitwise-ops.in +0 -0
- {yara_x-0.14.0 → yara_x-1.0.0}/parser/src/parser/tests/testdata/comments.ast +0 -0
- {yara_x-0.14.0 → yara_x-1.0.0}/parser/src/parser/tests/testdata/comments.cst +0 -0
- {yara_x-0.14.0 → yara_x-1.0.0}/parser/src/parser/tests/testdata/comments.in +0 -0
- {yara_x-0.14.0 → yara_x-1.0.0}/parser/src/parser/tests/testdata/expr-1.ast +0 -0
- {yara_x-0.14.0 → yara_x-1.0.0}/parser/src/parser/tests/testdata/expr-1.cst +0 -0
- {yara_x-0.14.0 → yara_x-1.0.0}/parser/src/parser/tests/testdata/expr-1.in +0 -0
- {yara_x-0.14.0 → yara_x-1.0.0}/parser/src/parser/tests/testdata/expr-2.ast +0 -0
- {yara_x-0.14.0 → yara_x-1.0.0}/parser/src/parser/tests/testdata/expr-2.cst +0 -0
- {yara_x-0.14.0 → yara_x-1.0.0}/parser/src/parser/tests/testdata/expr-2.in +0 -0
- {yara_x-0.14.0 → yara_x-1.0.0}/parser/src/parser/tests/testdata/expr-3.ast +0 -0
- {yara_x-0.14.0 → yara_x-1.0.0}/parser/src/parser/tests/testdata/expr-3.cst +0 -0
- {yara_x-0.14.0 → yara_x-1.0.0}/parser/src/parser/tests/testdata/expr-3.in +0 -0
- {yara_x-0.14.0 → yara_x-1.0.0}/parser/src/parser/tests/testdata/expr-4.ast +0 -0
- {yara_x-0.14.0 → yara_x-1.0.0}/parser/src/parser/tests/testdata/expr-4.cst +0 -0
- {yara_x-0.14.0 → yara_x-1.0.0}/parser/src/parser/tests/testdata/expr-4.in +0 -0
- {yara_x-0.14.0 → yara_x-1.0.0}/parser/src/parser/tests/testdata/expr-5.ast +0 -0
- {yara_x-0.14.0 → yara_x-1.0.0}/parser/src/parser/tests/testdata/expr-5.cst +0 -0
- {yara_x-0.14.0 → yara_x-1.0.0}/parser/src/parser/tests/testdata/expr-5.in +0 -0
- {yara_x-0.14.0 → yara_x-1.0.0}/parser/src/parser/tests/testdata/expr-6.ast +0 -0
- {yara_x-0.14.0 → yara_x-1.0.0}/parser/src/parser/tests/testdata/expr-6.cst +0 -0
- {yara_x-0.14.0 → yara_x-1.0.0}/parser/src/parser/tests/testdata/expr-6.in +0 -0
- {yara_x-0.14.0 → yara_x-1.0.0}/parser/src/parser/tests/testdata/expr-error-1.ast +0 -0
- {yara_x-0.14.0 → yara_x-1.0.0}/parser/src/parser/tests/testdata/expr-error-1.cst +0 -0
- {yara_x-0.14.0 → yara_x-1.0.0}/parser/src/parser/tests/testdata/expr-error-1.in +0 -0
- {yara_x-0.14.0 → yara_x-1.0.0}/parser/src/parser/tests/testdata/for-1.ast +0 -0
- {yara_x-0.14.0 → yara_x-1.0.0}/parser/src/parser/tests/testdata/for-1.cst +0 -0
- {yara_x-0.14.0 → yara_x-1.0.0}/parser/src/parser/tests/testdata/for-1.in +0 -0
- {yara_x-0.14.0 → yara_x-1.0.0}/parser/src/parser/tests/testdata/for-2.ast +0 -0
- {yara_x-0.14.0 → yara_x-1.0.0}/parser/src/parser/tests/testdata/for-2.cst +0 -0
- {yara_x-0.14.0 → yara_x-1.0.0}/parser/src/parser/tests/testdata/for-2.in +0 -0
- {yara_x-0.14.0 → yara_x-1.0.0}/parser/src/parser/tests/testdata/for-3.ast +0 -0
- {yara_x-0.14.0 → yara_x-1.0.0}/parser/src/parser/tests/testdata/for-3.cst +0 -0
- {yara_x-0.14.0 → yara_x-1.0.0}/parser/src/parser/tests/testdata/for-3.in +0 -0
- {yara_x-0.14.0 → yara_x-1.0.0}/parser/src/parser/tests/testdata/for-4.ast +0 -0
- {yara_x-0.14.0 → yara_x-1.0.0}/parser/src/parser/tests/testdata/for-4.cst +0 -0
- {yara_x-0.14.0 → yara_x-1.0.0}/parser/src/parser/tests/testdata/for-4.in +0 -0
- {yara_x-0.14.0 → yara_x-1.0.0}/parser/src/parser/tests/testdata/for-5.ast +0 -0
- {yara_x-0.14.0 → yara_x-1.0.0}/parser/src/parser/tests/testdata/for-5.cst +0 -0
- {yara_x-0.14.0 → yara_x-1.0.0}/parser/src/parser/tests/testdata/for-5.in +0 -0
- {yara_x-0.14.0 → yara_x-1.0.0}/parser/src/parser/tests/testdata/for-error-1.ast +0 -0
- {yara_x-0.14.0 → yara_x-1.0.0}/parser/src/parser/tests/testdata/for-error-1.cst +0 -0
- {yara_x-0.14.0 → yara_x-1.0.0}/parser/src/parser/tests/testdata/for-error-1.in +0 -0
- {yara_x-0.14.0 → yara_x-1.0.0}/parser/src/parser/tests/testdata/func-call.ast +0 -0
- {yara_x-0.14.0 → yara_x-1.0.0}/parser/src/parser/tests/testdata/func-call.cst +0 -0
- {yara_x-0.14.0 → yara_x-1.0.0}/parser/src/parser/tests/testdata/func-call.in +0 -0
- {yara_x-0.14.0 → yara_x-1.0.0}/parser/src/parser/tests/testdata/hex-patterns-1.ast +0 -0
- {yara_x-0.14.0 → yara_x-1.0.0}/parser/src/parser/tests/testdata/hex-patterns-1.cst +0 -0
- {yara_x-0.14.0 → yara_x-1.0.0}/parser/src/parser/tests/testdata/hex-patterns-1.in +0 -0
- {yara_x-0.14.0 → yara_x-1.0.0}/parser/src/parser/tests/testdata/hex-patterns-2.ast +0 -0
- {yara_x-0.14.0 → yara_x-1.0.0}/parser/src/parser/tests/testdata/hex-patterns-2.cst +0 -0
- {yara_x-0.14.0 → yara_x-1.0.0}/parser/src/parser/tests/testdata/hex-patterns-2.in +0 -0
- {yara_x-0.14.0 → yara_x-1.0.0}/parser/src/parser/tests/testdata/hex-patterns-3.ast +0 -0
- {yara_x-0.14.0 → yara_x-1.0.0}/parser/src/parser/tests/testdata/hex-patterns-3.cst +0 -0
- {yara_x-0.14.0 → yara_x-1.0.0}/parser/src/parser/tests/testdata/hex-patterns-3.in +0 -0
- {yara_x-0.14.0 → yara_x-1.0.0}/parser/src/parser/tests/testdata/hex-patterns-error-1.ast +0 -0
- {yara_x-0.14.0 → yara_x-1.0.0}/parser/src/parser/tests/testdata/hex-patterns-error-1.cst +0 -0
- {yara_x-0.14.0 → yara_x-1.0.0}/parser/src/parser/tests/testdata/hex-patterns-error-1.in +0 -0
- {yara_x-0.14.0 → yara_x-1.0.0}/parser/src/parser/tests/testdata/hex-patterns-error-2.ast +0 -0
- {yara_x-0.14.0 → yara_x-1.0.0}/parser/src/parser/tests/testdata/hex-patterns-error-2.cst +0 -0
- {yara_x-0.14.0 → yara_x-1.0.0}/parser/src/parser/tests/testdata/hex-patterns-error-2.in +0 -0
- {yara_x-0.14.0 → yara_x-1.0.0}/parser/src/parser/tests/testdata/meta-error-1.ast +0 -0
- {yara_x-0.14.0 → yara_x-1.0.0}/parser/src/parser/tests/testdata/meta-error-1.cst +0 -0
- {yara_x-0.14.0 → yara_x-1.0.0}/parser/src/parser/tests/testdata/meta-error-1.in +0 -0
- {yara_x-0.14.0 → yara_x-1.0.0}/parser/src/parser/tests/testdata/meta-error-2.ast +0 -0
- {yara_x-0.14.0 → yara_x-1.0.0}/parser/src/parser/tests/testdata/meta-error-2.cst +0 -0
- {yara_x-0.14.0 → yara_x-1.0.0}/parser/src/parser/tests/testdata/meta-error-2.in +0 -0
- {yara_x-0.14.0 → yara_x-1.0.0}/parser/src/parser/tests/testdata/meta-error-3.ast +0 -0
- {yara_x-0.14.0 → yara_x-1.0.0}/parser/src/parser/tests/testdata/meta-error-3.cst +0 -0
- {yara_x-0.14.0 → yara_x-1.0.0}/parser/src/parser/tests/testdata/meta-error-3.in +0 -0
- {yara_x-0.14.0 → yara_x-1.0.0}/parser/src/parser/tests/testdata/meta-error-4.ast +0 -0
- {yara_x-0.14.0 → yara_x-1.0.0}/parser/src/parser/tests/testdata/meta-error-4.cst +0 -0
- {yara_x-0.14.0 → yara_x-1.0.0}/parser/src/parser/tests/testdata/meta-error-4.in +0 -0
- {yara_x-0.14.0 → yara_x-1.0.0}/parser/src/parser/tests/testdata/meta-error-5.ast +0 -0
- {yara_x-0.14.0 → yara_x-1.0.0}/parser/src/parser/tests/testdata/meta-error-5.cst +0 -0
- {yara_x-0.14.0 → yara_x-1.0.0}/parser/src/parser/tests/testdata/meta-error-5.in +0 -0
- {yara_x-0.14.0 → yara_x-1.0.0}/parser/src/parser/tests/testdata/meta-error-6.ast +0 -0
- {yara_x-0.14.0 → yara_x-1.0.0}/parser/src/parser/tests/testdata/meta-error-6.cst +0 -0
- {yara_x-0.14.0 → yara_x-1.0.0}/parser/src/parser/tests/testdata/meta-error-6.in +0 -0
- {yara_x-0.14.0 → yara_x-1.0.0}/parser/src/parser/tests/testdata/meta.ast +0 -0
- {yara_x-0.14.0 → yara_x-1.0.0}/parser/src/parser/tests/testdata/meta.cst +0 -0
- {yara_x-0.14.0 → yara_x-1.0.0}/parser/src/parser/tests/testdata/meta.in +0 -0
- {yara_x-0.14.0 → yara_x-1.0.0}/parser/src/parser/tests/testdata/of-1.ast +0 -0
- {yara_x-0.14.0 → yara_x-1.0.0}/parser/src/parser/tests/testdata/of-1.cst +0 -0
- {yara_x-0.14.0 → yara_x-1.0.0}/parser/src/parser/tests/testdata/of-1.in +0 -0
- {yara_x-0.14.0 → yara_x-1.0.0}/parser/src/parser/tests/testdata/of-error-1.ast +0 -0
- {yara_x-0.14.0 → yara_x-1.0.0}/parser/src/parser/tests/testdata/of-error-1.cst +0 -0
- {yara_x-0.14.0 → yara_x-1.0.0}/parser/src/parser/tests/testdata/of-error-1.in +0 -0
- {yara_x-0.14.0 → yara_x-1.0.0}/parser/src/parser/tests/testdata/pattern-mods-1.ast +0 -0
- {yara_x-0.14.0 → yara_x-1.0.0}/parser/src/parser/tests/testdata/pattern-mods-1.cst +0 -0
- {yara_x-0.14.0 → yara_x-1.0.0}/parser/src/parser/tests/testdata/pattern-mods-1.in +0 -0
- {yara_x-0.14.0 → yara_x-1.0.0}/parser/src/parser/tests/testdata/pattern-mods-error-1.ast +0 -0
- {yara_x-0.14.0 → yara_x-1.0.0}/parser/src/parser/tests/testdata/pattern-mods-error-1.cst +0 -0
- {yara_x-0.14.0 → yara_x-1.0.0}/parser/src/parser/tests/testdata/pattern-mods-error-1.in +0 -0
- {yara_x-0.14.0 → yara_x-1.0.0}/parser/src/parser/tests/testdata/patterns-1.ast +0 -0
- {yara_x-0.14.0 → yara_x-1.0.0}/parser/src/parser/tests/testdata/patterns-1.cst +0 -0
- {yara_x-0.14.0 → yara_x-1.0.0}/parser/src/parser/tests/testdata/patterns-1.in +0 -0
- {yara_x-0.14.0 → yara_x-1.0.0}/parser/src/parser/tests/testdata/patterns-2.ast +0 -0
- {yara_x-0.14.0 → yara_x-1.0.0}/parser/src/parser/tests/testdata/patterns-2.cst +0 -0
- {yara_x-0.14.0 → yara_x-1.0.0}/parser/src/parser/tests/testdata/patterns-2.in +0 -0
- {yara_x-0.14.0 → yara_x-1.0.0}/parser/src/parser/tests/testdata/patterns-3.ast +0 -0
- {yara_x-0.14.0 → yara_x-1.0.0}/parser/src/parser/tests/testdata/patterns-3.cst +0 -0
- {yara_x-0.14.0 → yara_x-1.0.0}/parser/src/parser/tests/testdata/patterns-3.in +0 -0
- {yara_x-0.14.0 → yara_x-1.0.0}/parser/src/parser/tests/testdata/patterns-error-1.ast +0 -0
- {yara_x-0.14.0 → yara_x-1.0.0}/parser/src/parser/tests/testdata/patterns-error-1.cst +0 -0
- {yara_x-0.14.0 → yara_x-1.0.0}/parser/src/parser/tests/testdata/patterns-error-1.in +0 -0
- {yara_x-0.14.0 → yara_x-1.0.0}/parser/src/parser/tests/testdata/patterns-error-2.ast +0 -0
- {yara_x-0.14.0 → yara_x-1.0.0}/parser/src/parser/tests/testdata/patterns-error-2.cst +0 -0
- {yara_x-0.14.0 → yara_x-1.0.0}/parser/src/parser/tests/testdata/patterns-error-2.in +0 -0
- {yara_x-0.14.0 → yara_x-1.0.0}/parser/src/parser/tests/testdata/patterns-error-3.ast +0 -0
- {yara_x-0.14.0 → yara_x-1.0.0}/parser/src/parser/tests/testdata/patterns-error-3.cst +0 -0
- {yara_x-0.14.0 → yara_x-1.0.0}/parser/src/parser/tests/testdata/patterns-error-3.in +0 -0
- {yara_x-0.14.0 → yara_x-1.0.0}/parser/src/parser/tests/testdata/patterns-error-4.ast +0 -0
- {yara_x-0.14.0 → yara_x-1.0.0}/parser/src/parser/tests/testdata/patterns-error-4.cst +0 -0
- {yara_x-0.14.0 → yara_x-1.0.0}/parser/src/parser/tests/testdata/patterns-error-4.in +0 -0
- {yara_x-0.14.0 → yara_x-1.0.0}/parser/src/parser/tests/testdata/patterns-error-5.ast +0 -0
- {yara_x-0.14.0 → yara_x-1.0.0}/parser/src/parser/tests/testdata/patterns-error-5.cst +0 -0
- {yara_x-0.14.0 → yara_x-1.0.0}/parser/src/parser/tests/testdata/patterns-error-5.in +0 -0
- {yara_x-0.14.0 → yara_x-1.0.0}/parser/src/parser/tests/testdata/patterns-error-6.ast +0 -0
- {yara_x-0.14.0 → yara_x-1.0.0}/parser/src/parser/tests/testdata/patterns-error-6.cst +0 -0
- {yara_x-0.14.0 → yara_x-1.0.0}/parser/src/parser/tests/testdata/patterns-error-6.in +0 -0
- {yara_x-0.14.0 → yara_x-1.0.0}/parser/src/parser/tests/testdata/patterns-error-7.ast +0 -0
- {yara_x-0.14.0 → yara_x-1.0.0}/parser/src/parser/tests/testdata/patterns-error-7.cst +0 -0
- {yara_x-0.14.0 → yara_x-1.0.0}/parser/src/parser/tests/testdata/patterns-error-7.in +0 -0
- {yara_x-0.14.0 → yara_x-1.0.0}/parser/src/parser/tests/testdata/rule-mods-1.ast +0 -0
- {yara_x-0.14.0 → yara_x-1.0.0}/parser/src/parser/tests/testdata/rule-mods-1.cst +0 -0
- {yara_x-0.14.0 → yara_x-1.0.0}/parser/src/parser/tests/testdata/rule-mods-1.in +0 -0
- {yara_x-0.14.0 → yara_x-1.0.0}/parser/src/parser/tests/testdata/rule-tags-error-1.ast +0 -0
- {yara_x-0.14.0 → yara_x-1.0.0}/parser/src/parser/tests/testdata/rule-tags-error-1.cst +0 -0
- {yara_x-0.14.0 → yara_x-1.0.0}/parser/src/parser/tests/testdata/rule-tags-error-1.in +0 -0
- {yara_x-0.14.0 → yara_x-1.0.0}/parser/src/parser/tests/testdata/rule-tags-error-2.ast +0 -0
- {yara_x-0.14.0 → yara_x-1.0.0}/parser/src/parser/tests/testdata/rule-tags-error-2.cst +0 -0
- {yara_x-0.14.0 → yara_x-1.0.0}/parser/src/parser/tests/testdata/rule-tags-error-2.in +0 -0
- {yara_x-0.14.0 → yara_x-1.0.0}/parser/src/parser/tests/testdata/rule-tags-error-3.ast +0 -0
- {yara_x-0.14.0 → yara_x-1.0.0}/parser/src/parser/tests/testdata/rule-tags-error-3.cst +0 -0
- {yara_x-0.14.0 → yara_x-1.0.0}/parser/src/parser/tests/testdata/rule-tags-error-3.in +0 -0
- {yara_x-0.14.0 → yara_x-1.0.0}/parser/src/parser/tests/testdata/rule-tags.ast +0 -0
- {yara_x-0.14.0 → yara_x-1.0.0}/parser/src/parser/tests/testdata/rule-tags.cst +0 -0
- {yara_x-0.14.0 → yara_x-1.0.0}/parser/src/parser/tests/testdata/rule-tags.in +0 -0
- {yara_x-0.14.0 → yara_x-1.0.0}/parser/src/parser/tests/testdata/with-1.ast +0 -0
- {yara_x-0.14.0 → yara_x-1.0.0}/parser/src/parser/tests/testdata/with-1.cst +0 -0
- {yara_x-0.14.0 → yara_x-1.0.0}/parser/src/parser/tests/testdata/with-1.in +0 -0
- {yara_x-0.14.0 → yara_x-1.0.0}/parser/src/parser/tests/testdata/with-2.ast +0 -0
- {yara_x-0.14.0 → yara_x-1.0.0}/parser/src/parser/tests/testdata/with-2.cst +0 -0
- {yara_x-0.14.0 → yara_x-1.0.0}/parser/src/parser/tests/testdata/with-2.in +0 -0
- {yara_x-0.14.0 → yara_x-1.0.0}/parser/src/parser/tests/testdata/with-error-1.ast +0 -0
- {yara_x-0.14.0 → yara_x-1.0.0}/parser/src/parser/tests/testdata/with-error-1.cst +0 -0
- {yara_x-0.14.0 → yara_x-1.0.0}/parser/src/parser/tests/testdata/with-error-1.in +0 -0
- {yara_x-0.14.0 → yara_x-1.0.0}/parser/src/parser/tests/testdata/with-error-2.ast +0 -0
- {yara_x-0.14.0 → yara_x-1.0.0}/parser/src/parser/tests/testdata/with-error-2.cst +0 -0
- {yara_x-0.14.0 → yara_x-1.0.0}/parser/src/parser/tests/testdata/with-error-2.in +0 -0
- {yara_x-0.14.0 → yara_x-1.0.0}/parser/src/parser/tests/testdata/with-error-3.ast +0 -0
- {yara_x-0.14.0 → yara_x-1.0.0}/parser/src/parser/tests/testdata/with-error-3.cst +0 -0
- {yara_x-0.14.0 → yara_x-1.0.0}/parser/src/parser/tests/testdata/with-error-3.in +0 -0
- {yara_x-0.14.0 → yara_x-1.0.0}/parser/src/parser/token_stream.rs +0 -0
- {yara_x-0.14.0 → yara_x-1.0.0}/parser/src/tokenizer/tests.rs +0 -0
- {yara_x-0.14.0 → yara_x-1.0.0}/proto/Cargo.lock +0 -0
- {yara_x-0.14.0 → yara_x-1.0.0}/proto/Cargo.toml +0 -0
- {yara_x-0.14.0 → yara_x-1.0.0}/proto/build.rs +0 -0
- {yara_x-0.14.0 → yara_x-1.0.0}/proto-yaml/src/tests/mod.rs +0 -0
- {yara_x-0.14.0 → yara_x-1.0.0}/proto-yaml/src/tests/testdata/1.in +0 -0
- {yara_x-0.14.0 → yara_x-1.0.0}/proto-yaml/src/tests/testdata/1.out +0 -0
- {yara_x-0.14.0 → yara_x-1.0.0}/py/README.md +0 -0
- {yara_x-0.14.0 → yara_x-1.0.0}/py/build.rs +0 -0
- {yara_x-0.14.0 → yara_x-1.0.0}/pyproject.toml +0 -0
|
@@ -1,16 +1,6 @@
|
|
|
1
1
|
# This file is automatically @generated by Cargo.
|
|
2
2
|
# It is not intended for manual editing.
|
|
3
|
-
version =
|
|
4
|
-
|
|
5
|
-
[[package]]
|
|
6
|
-
name = "addr"
|
|
7
|
-
version = "0.15.6"
|
|
8
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
9
|
-
checksum = "a93b8a41dbe230ad5087cc721f8d41611de654542180586b315d9f4cf6b72bef"
|
|
10
|
-
dependencies = [
|
|
11
|
-
"psl",
|
|
12
|
-
"psl-types",
|
|
13
|
-
]
|
|
3
|
+
version = 4
|
|
14
4
|
|
|
15
5
|
[[package]]
|
|
16
6
|
name = "addr2line"
|
|
@@ -40,16 +30,16 @@ dependencies = [
|
|
|
40
30
|
|
|
41
31
|
[[package]]
|
|
42
32
|
name = "ahash"
|
|
43
|
-
version = "0.8.
|
|
33
|
+
version = "0.8.12"
|
|
44
34
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
45
|
-
checksum = "
|
|
35
|
+
checksum = "5a15f179cd60c4584b8a8c596927aadc462e27f2ca70c04e0071964a73ba7a75"
|
|
46
36
|
dependencies = [
|
|
47
37
|
"cfg-if",
|
|
48
38
|
"const-random",
|
|
49
|
-
"getrandom 0.
|
|
39
|
+
"getrandom 0.3.3",
|
|
50
40
|
"once_cell",
|
|
51
41
|
"version_check",
|
|
52
|
-
"zerocopy
|
|
42
|
+
"zerocopy",
|
|
53
43
|
]
|
|
54
44
|
|
|
55
45
|
[[package]]
|
|
@@ -149,20 +139,20 @@ dependencies = [
|
|
|
149
139
|
|
|
150
140
|
[[package]]
|
|
151
141
|
name = "anstyle-wincon"
|
|
152
|
-
version = "3.0.
|
|
142
|
+
version = "3.0.8"
|
|
153
143
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
154
|
-
checksum = "
|
|
144
|
+
checksum = "6680de5231bd6ee4c6191b8a1325daa282b415391ec9d3a37bd34f2060dc73fa"
|
|
155
145
|
dependencies = [
|
|
156
146
|
"anstyle",
|
|
157
|
-
"
|
|
147
|
+
"once_cell_polyfill",
|
|
158
148
|
"windows-sys 0.59.0",
|
|
159
149
|
]
|
|
160
150
|
|
|
161
151
|
[[package]]
|
|
162
152
|
name = "anyhow"
|
|
163
|
-
version = "1.0.
|
|
153
|
+
version = "1.0.98"
|
|
164
154
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
165
|
-
checksum = "
|
|
155
|
+
checksum = "e16d2d3311acee920a9eb8d33b8cbc1787ce4a264e85f964c2404b969bdcd487"
|
|
166
156
|
|
|
167
157
|
[[package]]
|
|
168
158
|
name = "arbitrary"
|
|
@@ -175,9 +165,9 @@ dependencies = [
|
|
|
175
165
|
|
|
176
166
|
[[package]]
|
|
177
167
|
name = "array-bytes"
|
|
178
|
-
version = "9.1
|
|
168
|
+
version = "9.2.1"
|
|
179
169
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
180
|
-
checksum = "
|
|
170
|
+
checksum = "72995684d3ec25cefacc30147756ee639b9da0895cc41b44c31e3eca111fbde2"
|
|
181
171
|
dependencies = [
|
|
182
172
|
"smallvec",
|
|
183
173
|
]
|
|
@@ -212,7 +202,7 @@ checksum = "3109e49b1e4909e9db6515a30c633684d68cdeaa252f215214cb4fa1a5bfee2c"
|
|
|
212
202
|
dependencies = [
|
|
213
203
|
"proc-macro2",
|
|
214
204
|
"quote",
|
|
215
|
-
"syn 2.0.
|
|
205
|
+
"syn 2.0.101",
|
|
216
206
|
"synstructure",
|
|
217
207
|
]
|
|
218
208
|
|
|
@@ -224,14 +214,14 @@ checksum = "7b18050c2cd6fe86c3a76584ef5e0baf286d038cda203eb6223df2cc413565f7"
|
|
|
224
214
|
dependencies = [
|
|
225
215
|
"proc-macro2",
|
|
226
216
|
"quote",
|
|
227
|
-
"syn 2.0.
|
|
217
|
+
"syn 2.0.101",
|
|
228
218
|
]
|
|
229
219
|
|
|
230
220
|
[[package]]
|
|
231
221
|
name = "assert_cmd"
|
|
232
|
-
version = "2.0.
|
|
222
|
+
version = "2.0.17"
|
|
233
223
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
234
|
-
checksum = "
|
|
224
|
+
checksum = "2bd389a4b2970a01282ee455294913c0a43724daedcd1a24c3eb0ec1c1320b66"
|
|
235
225
|
dependencies = [
|
|
236
226
|
"anstyle",
|
|
237
227
|
"bstr",
|
|
@@ -245,9 +235,9 @@ dependencies = [
|
|
|
245
235
|
|
|
246
236
|
[[package]]
|
|
247
237
|
name = "assert_fs"
|
|
248
|
-
version = "1.1.
|
|
238
|
+
version = "1.1.3"
|
|
249
239
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
250
|
-
checksum = "
|
|
240
|
+
checksum = "a652f6cb1f516886fcfee5e7a5c078b9ade62cfcb889524efe5a64d682dd27a9"
|
|
251
241
|
dependencies = [
|
|
252
242
|
"anstyle",
|
|
253
243
|
"doc-comment",
|
|
@@ -258,23 +248,6 @@ dependencies = [
|
|
|
258
248
|
"tempfile",
|
|
259
249
|
]
|
|
260
250
|
|
|
261
|
-
[[package]]
|
|
262
|
-
name = "async-smtp"
|
|
263
|
-
version = "0.9.2"
|
|
264
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
265
|
-
checksum = "00d1f1a16e5abad3ada9f1f23dbc2f354b138121b90533381be62dada6cbf40a"
|
|
266
|
-
dependencies = [
|
|
267
|
-
"anyhow",
|
|
268
|
-
"base64 0.13.1",
|
|
269
|
-
"futures",
|
|
270
|
-
"hostname",
|
|
271
|
-
"log",
|
|
272
|
-
"nom 7.1.3",
|
|
273
|
-
"pin-project",
|
|
274
|
-
"thiserror 1.0.69",
|
|
275
|
-
"tokio",
|
|
276
|
-
]
|
|
277
|
-
|
|
278
251
|
[[package]]
|
|
279
252
|
name = "atomic"
|
|
280
253
|
version = "0.6.0"
|
|
@@ -290,21 +263,6 @@ version = "1.4.0"
|
|
|
290
263
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
291
264
|
checksum = "ace50bade8e6234aa140d9a2f552bbee1db4d353f69b8217bc503490fc1a9f26"
|
|
292
265
|
|
|
293
|
-
[[package]]
|
|
294
|
-
name = "backtrace"
|
|
295
|
-
version = "0.3.74"
|
|
296
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
297
|
-
checksum = "8d82cb332cdfaed17ae235a638438ac4d4839913cc2af585c3c6746e8f8bee1a"
|
|
298
|
-
dependencies = [
|
|
299
|
-
"addr2line",
|
|
300
|
-
"cfg-if",
|
|
301
|
-
"libc",
|
|
302
|
-
"miniz_oxide",
|
|
303
|
-
"object",
|
|
304
|
-
"rustc-demangle",
|
|
305
|
-
"windows-targets 0.52.6",
|
|
306
|
-
]
|
|
307
|
-
|
|
308
266
|
[[package]]
|
|
309
267
|
name = "base16ct"
|
|
310
268
|
version = "0.2.0"
|
|
@@ -337,11 +295,22 @@ checksum = "3a8241f3ebb85c056b509d4327ad0358fbbba6ffb340bf388f26350aeda225b1"
|
|
|
337
295
|
|
|
338
296
|
[[package]]
|
|
339
297
|
name = "bincode"
|
|
340
|
-
version = "
|
|
298
|
+
version = "2.0.1"
|
|
341
299
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
342
|
-
checksum = "
|
|
300
|
+
checksum = "36eaf5d7b090263e8150820482d5d93cd964a81e4019913c972f4edcc6edb740"
|
|
343
301
|
dependencies = [
|
|
302
|
+
"bincode_derive",
|
|
344
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",
|
|
345
314
|
]
|
|
346
315
|
|
|
347
316
|
[[package]]
|
|
@@ -352,9 +321,9 @@ checksum = "bef38d45163c2f1dde094a7dfd33ccf595c92905c8f8f4fdc18d06fb1037718a"
|
|
|
352
321
|
|
|
353
322
|
[[package]]
|
|
354
323
|
name = "bitflags"
|
|
355
|
-
version = "2.9.
|
|
324
|
+
version = "2.9.1"
|
|
356
325
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
357
|
-
checksum = "
|
|
326
|
+
checksum = "1b8e56985ec62d17e9c1001dc89c88ecd7dc08e47eba5ec7c29c7b5eeecde967"
|
|
358
327
|
dependencies = [
|
|
359
328
|
"serde",
|
|
360
329
|
]
|
|
@@ -391,9 +360,9 @@ dependencies = [
|
|
|
391
360
|
|
|
392
361
|
[[package]]
|
|
393
362
|
name = "brotli"
|
|
394
|
-
version = "
|
|
363
|
+
version = "8.0.1"
|
|
395
364
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
396
|
-
checksum = "
|
|
365
|
+
checksum = "9991eea70ea4f293524138648e41ee89b0b2b12ddef3b255effa43c8056e0e0d"
|
|
397
366
|
dependencies = [
|
|
398
367
|
"alloc-no-stdlib",
|
|
399
368
|
"alloc-stdlib",
|
|
@@ -402,9 +371,9 @@ dependencies = [
|
|
|
402
371
|
|
|
403
372
|
[[package]]
|
|
404
373
|
name = "brotli-decompressor"
|
|
405
|
-
version = "
|
|
374
|
+
version = "5.0.0"
|
|
406
375
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
407
|
-
checksum = "
|
|
376
|
+
checksum = "874bb8112abecc98cbd6d81ea4fa7e94fb9449648c93cc89aa40c81c24d7de03"
|
|
408
377
|
dependencies = [
|
|
409
378
|
"alloc-no-stdlib",
|
|
410
379
|
"alloc-stdlib",
|
|
@@ -412,9 +381,9 @@ dependencies = [
|
|
|
412
381
|
|
|
413
382
|
[[package]]
|
|
414
383
|
name = "bstr"
|
|
415
|
-
version = "1.
|
|
384
|
+
version = "1.12.0"
|
|
416
385
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
417
|
-
checksum = "
|
|
386
|
+
checksum = "234113d19d0d7d613b40e86fb654acf958910802bcceab913a4f9e7cda03b1a4"
|
|
418
387
|
dependencies = [
|
|
419
388
|
"memchr",
|
|
420
389
|
"regex-automata",
|
|
@@ -432,15 +401,15 @@ dependencies = [
|
|
|
432
401
|
|
|
433
402
|
[[package]]
|
|
434
403
|
name = "bytecount"
|
|
435
|
-
version = "0.6.
|
|
404
|
+
version = "0.6.9"
|
|
436
405
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
437
|
-
checksum = "
|
|
406
|
+
checksum = "175812e0be2bccb6abe50bb8d566126198344f707e304f45c648fd8f2cc0365e"
|
|
438
407
|
|
|
439
408
|
[[package]]
|
|
440
409
|
name = "bytemuck"
|
|
441
|
-
version = "1.
|
|
410
|
+
version = "1.23.0"
|
|
442
411
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
443
|
-
checksum = "
|
|
412
|
+
checksum = "9134a6ef01ce4b366b50689c94f82c14bc72bc5d0386829828a2e2752ef7958c"
|
|
444
413
|
|
|
445
414
|
[[package]]
|
|
446
415
|
name = "byteorder"
|
|
@@ -448,12 +417,6 @@ version = "1.5.0"
|
|
|
448
417
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
449
418
|
checksum = "1fd0f2584146f6f2ef48085050886acf353beff7305ebd1ae69500e27c67f64b"
|
|
450
419
|
|
|
451
|
-
[[package]]
|
|
452
|
-
name = "bytes"
|
|
453
|
-
version = "1.10.1"
|
|
454
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
455
|
-
checksum = "d71b6127be86fdcfddb610f7182ac57211d4b18a3e9c82eb2d17662f2227ad6a"
|
|
456
|
-
|
|
457
420
|
[[package]]
|
|
458
421
|
name = "bzip2"
|
|
459
422
|
version = "0.5.2"
|
|
@@ -475,9 +438,9 @@ dependencies = [
|
|
|
475
438
|
|
|
476
439
|
[[package]]
|
|
477
440
|
name = "camino"
|
|
478
|
-
version = "1.1.
|
|
441
|
+
version = "1.1.10"
|
|
479
442
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
480
|
-
checksum = "
|
|
443
|
+
checksum = "0da45bc31171d8d6960122e222a67740df867c1dd53b4d51caa297084c185cab"
|
|
481
444
|
dependencies = [
|
|
482
445
|
"serde",
|
|
483
446
|
]
|
|
@@ -515,28 +478,28 @@ dependencies = [
|
|
|
515
478
|
|
|
516
479
|
[[package]]
|
|
517
480
|
name = "cbindgen"
|
|
518
|
-
version = "0.
|
|
481
|
+
version = "0.29.0"
|
|
519
482
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
520
|
-
checksum = "
|
|
483
|
+
checksum = "975982cdb7ad6a142be15bdf84aea7ec6a9e5d4d797c004d43185b24cfe4e684"
|
|
521
484
|
dependencies = [
|
|
522
485
|
"clap",
|
|
523
|
-
"heck
|
|
524
|
-
"indexmap 2.
|
|
486
|
+
"heck",
|
|
487
|
+
"indexmap 2.9.0",
|
|
525
488
|
"log",
|
|
526
489
|
"proc-macro2",
|
|
527
490
|
"quote",
|
|
528
491
|
"serde",
|
|
529
492
|
"serde_json",
|
|
530
|
-
"syn 2.0.
|
|
493
|
+
"syn 2.0.101",
|
|
531
494
|
"tempfile",
|
|
532
495
|
"toml",
|
|
533
496
|
]
|
|
534
497
|
|
|
535
498
|
[[package]]
|
|
536
499
|
name = "cc"
|
|
537
|
-
version = "1.2.
|
|
500
|
+
version = "1.2.25"
|
|
538
501
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
539
|
-
checksum = "
|
|
502
|
+
checksum = "d0fc897dc1e865cc67c0e05a836d9d3f1df3cbe442aa4a9473b18e12624a4951"
|
|
540
503
|
dependencies = [
|
|
541
504
|
"jobserver",
|
|
542
505
|
"libc",
|
|
@@ -562,9 +525,9 @@ dependencies = [
|
|
|
562
525
|
|
|
563
526
|
[[package]]
|
|
564
527
|
name = "chrono"
|
|
565
|
-
version = "0.4.
|
|
528
|
+
version = "0.4.41"
|
|
566
529
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
567
|
-
checksum = "
|
|
530
|
+
checksum = "c469d952047f47f91b68d1cba3f10d63c11d73e4636f24f08daf0278abf01c4d"
|
|
568
531
|
dependencies = [
|
|
569
532
|
"android-tzdata",
|
|
570
533
|
"iana-time-zone",
|
|
@@ -586,9 +549,9 @@ dependencies = [
|
|
|
586
549
|
|
|
587
550
|
[[package]]
|
|
588
551
|
name = "clap"
|
|
589
|
-
version = "4.5.
|
|
552
|
+
version = "4.5.39"
|
|
590
553
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
591
|
-
checksum = "
|
|
554
|
+
checksum = "fd60e63e9be68e5fb56422e397cf9baddded06dae1d2e523401542383bc72a9f"
|
|
592
555
|
dependencies = [
|
|
593
556
|
"clap_builder",
|
|
594
557
|
"clap_derive",
|
|
@@ -596,9 +559,9 @@ dependencies = [
|
|
|
596
559
|
|
|
597
560
|
[[package]]
|
|
598
561
|
name = "clap_builder"
|
|
599
|
-
version = "4.5.
|
|
562
|
+
version = "4.5.39"
|
|
600
563
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
601
|
-
checksum = "
|
|
564
|
+
checksum = "89cc6392a1f72bbeb820d71f32108f61fdaf18bc526e1d23954168a67759ef51"
|
|
602
565
|
dependencies = [
|
|
603
566
|
"anstream",
|
|
604
567
|
"anstyle",
|
|
@@ -608,9 +571,9 @@ dependencies = [
|
|
|
608
571
|
|
|
609
572
|
[[package]]
|
|
610
573
|
name = "clap_complete"
|
|
611
|
-
version = "4.5.
|
|
574
|
+
version = "4.5.52"
|
|
612
575
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
613
|
-
checksum = "
|
|
576
|
+
checksum = "1a554639e42d0c838336fc4fbedb9e2df3ad1fa4acda149f9126b4ccfcd7900f"
|
|
614
577
|
dependencies = [
|
|
615
578
|
"clap",
|
|
616
579
|
]
|
|
@@ -621,10 +584,10 @@ version = "4.5.32"
|
|
|
621
584
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
622
585
|
checksum = "09176aae279615badda0765c0c0b3f6ed53f4709118af73cf4655d85d1530cd7"
|
|
623
586
|
dependencies = [
|
|
624
|
-
"heck
|
|
587
|
+
"heck",
|
|
625
588
|
"proc-macro2",
|
|
626
589
|
"quote",
|
|
627
|
-
"syn 2.0.
|
|
590
|
+
"syn 2.0.101",
|
|
628
591
|
]
|
|
629
592
|
|
|
630
593
|
[[package]]
|
|
@@ -645,17 +608,6 @@ version = "1.0.3"
|
|
|
645
608
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
646
609
|
checksum = "5b63caa9aa9397e2d9480a9b13673856c78d8ac123288526c37d7839f2a86990"
|
|
647
610
|
|
|
648
|
-
[[package]]
|
|
649
|
-
name = "colored_json"
|
|
650
|
-
version = "5.0.0"
|
|
651
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
652
|
-
checksum = "e35980a1b846f8e3e359fd18099172a0857140ba9230affc4f71348081e039b6"
|
|
653
|
-
dependencies = [
|
|
654
|
-
"serde",
|
|
655
|
-
"serde_json",
|
|
656
|
-
"yansi",
|
|
657
|
-
]
|
|
658
|
-
|
|
659
611
|
[[package]]
|
|
660
612
|
name = "compact_str"
|
|
661
613
|
version = "0.9.0"
|
|
@@ -703,7 +655,7 @@ version = "0.1.16"
|
|
|
703
655
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
704
656
|
checksum = "f9d839f2a20b0aee515dc581a6172f2321f96cab76c1a38a4c584a194955390e"
|
|
705
657
|
dependencies = [
|
|
706
|
-
"getrandom 0.2.
|
|
658
|
+
"getrandom 0.2.16",
|
|
707
659
|
"once_cell",
|
|
708
660
|
"tiny-keccak",
|
|
709
661
|
]
|
|
@@ -714,6 +666,15 @@ version = "0.3.1"
|
|
|
714
666
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
715
667
|
checksum = "7c74b8349d32d297c9134b8c88677813a227df8f779daa29bfc29c183fe3dca6"
|
|
716
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
|
+
|
|
717
678
|
[[package]]
|
|
718
679
|
name = "core-foundation-sys"
|
|
719
680
|
version = "0.8.7"
|
|
@@ -737,33 +698,36 @@ dependencies = [
|
|
|
737
698
|
|
|
738
699
|
[[package]]
|
|
739
700
|
name = "cranelift-assembler-x64"
|
|
740
|
-
version = "0.
|
|
701
|
+
version = "0.120.0"
|
|
741
702
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
742
|
-
checksum = "
|
|
703
|
+
checksum = "9ff8e35182c7372df00447cb90a04e584e032c42b9b9b6e8c50ddaaf0d7900d5"
|
|
743
704
|
dependencies = [
|
|
744
705
|
"cranelift-assembler-x64-meta",
|
|
745
706
|
]
|
|
746
707
|
|
|
747
708
|
[[package]]
|
|
748
709
|
name = "cranelift-assembler-x64-meta"
|
|
749
|
-
version = "0.
|
|
710
|
+
version = "0.120.0"
|
|
750
711
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
751
|
-
checksum = "
|
|
712
|
+
checksum = "14220f9c2698015c3b94dc6b84ae045c1c45509ddc406e43c6139252757fdb7a"
|
|
713
|
+
dependencies = [
|
|
714
|
+
"cranelift-srcgen",
|
|
715
|
+
]
|
|
752
716
|
|
|
753
717
|
[[package]]
|
|
754
718
|
name = "cranelift-bforest"
|
|
755
|
-
version = "0.
|
|
719
|
+
version = "0.120.0"
|
|
756
720
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
757
|
-
checksum = "
|
|
721
|
+
checksum = "d372ef2777ceefd75829e1390211ac240e9196bc60699218f7ea2419038288ee"
|
|
758
722
|
dependencies = [
|
|
759
723
|
"cranelift-entity",
|
|
760
724
|
]
|
|
761
725
|
|
|
762
726
|
[[package]]
|
|
763
727
|
name = "cranelift-bitset"
|
|
764
|
-
version = "0.
|
|
728
|
+
version = "0.120.0"
|
|
765
729
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
766
|
-
checksum = "
|
|
730
|
+
checksum = "56323783e423818fa89ce8078e90a3913d2a6e0810399bfce8ebd7ee87baa81f"
|
|
767
731
|
dependencies = [
|
|
768
732
|
"serde",
|
|
769
733
|
"serde_derive",
|
|
@@ -771,9 +735,9 @@ dependencies = [
|
|
|
771
735
|
|
|
772
736
|
[[package]]
|
|
773
737
|
name = "cranelift-codegen"
|
|
774
|
-
version = "0.
|
|
738
|
+
version = "0.120.0"
|
|
775
739
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
776
|
-
checksum = "
|
|
740
|
+
checksum = "74ffb780aab6186c6e9ba26519654b1ac55a09c0a866f6088a4efbbd84da68ed"
|
|
777
741
|
dependencies = [
|
|
778
742
|
"bumpalo",
|
|
779
743
|
"cranelift-assembler-x64",
|
|
@@ -785,47 +749,48 @@ dependencies = [
|
|
|
785
749
|
"cranelift-entity",
|
|
786
750
|
"cranelift-isle",
|
|
787
751
|
"gimli 0.31.1",
|
|
788
|
-
"hashbrown 0.15.
|
|
752
|
+
"hashbrown 0.15.3",
|
|
789
753
|
"log",
|
|
790
754
|
"pulley-interpreter",
|
|
791
755
|
"regalloc2",
|
|
792
756
|
"rustc-hash 2.1.1",
|
|
793
757
|
"serde",
|
|
794
758
|
"smallvec",
|
|
795
|
-
"target-lexicon
|
|
759
|
+
"target-lexicon",
|
|
796
760
|
]
|
|
797
761
|
|
|
798
762
|
[[package]]
|
|
799
763
|
name = "cranelift-codegen-meta"
|
|
800
|
-
version = "0.
|
|
764
|
+
version = "0.120.0"
|
|
801
765
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
802
|
-
checksum = "
|
|
766
|
+
checksum = "c23ef13814d3b39c869650d5961128cbbecad83fbdff4e6836a03ecf6862d7ed"
|
|
803
767
|
dependencies = [
|
|
804
|
-
"cranelift-assembler-x64",
|
|
768
|
+
"cranelift-assembler-x64-meta",
|
|
805
769
|
"cranelift-codegen-shared",
|
|
770
|
+
"cranelift-srcgen",
|
|
806
771
|
"pulley-interpreter",
|
|
807
772
|
]
|
|
808
773
|
|
|
809
774
|
[[package]]
|
|
810
775
|
name = "cranelift-codegen-shared"
|
|
811
|
-
version = "0.
|
|
776
|
+
version = "0.120.0"
|
|
812
777
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
813
|
-
checksum = "
|
|
778
|
+
checksum = "b9f623300657679f847803ce80811454bfff89cea4f6bf684be5c468d4a73631"
|
|
814
779
|
|
|
815
780
|
[[package]]
|
|
816
781
|
name = "cranelift-control"
|
|
817
|
-
version = "0.
|
|
782
|
+
version = "0.120.0"
|
|
818
783
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
819
|
-
checksum = "
|
|
784
|
+
checksum = "31f4168af69989aa6b91fab46799ed4df6096f3209f4a6c8fb4358f49c60188f"
|
|
820
785
|
dependencies = [
|
|
821
786
|
"arbitrary",
|
|
822
787
|
]
|
|
823
788
|
|
|
824
789
|
[[package]]
|
|
825
790
|
name = "cranelift-entity"
|
|
826
|
-
version = "0.
|
|
791
|
+
version = "0.120.0"
|
|
827
792
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
828
|
-
checksum = "
|
|
793
|
+
checksum = "ca6fa9bae1c8de26d71ac2162f069447610fd91e7780cb480ee0d76ac81eabb8"
|
|
829
794
|
dependencies = [
|
|
830
795
|
"cranelift-bitset",
|
|
831
796
|
"serde",
|
|
@@ -834,47 +799,38 @@ dependencies = [
|
|
|
834
799
|
|
|
835
800
|
[[package]]
|
|
836
801
|
name = "cranelift-frontend"
|
|
837
|
-
version = "0.
|
|
802
|
+
version = "0.120.0"
|
|
838
803
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
839
|
-
checksum = "
|
|
804
|
+
checksum = "b8219205608aa0b0e6769b580284a7e055c7e0c323c1041cde7ca078add3e412"
|
|
840
805
|
dependencies = [
|
|
841
806
|
"cranelift-codegen",
|
|
842
807
|
"log",
|
|
843
808
|
"smallvec",
|
|
844
|
-
"target-lexicon
|
|
809
|
+
"target-lexicon",
|
|
845
810
|
]
|
|
846
811
|
|
|
847
812
|
[[package]]
|
|
848
813
|
name = "cranelift-isle"
|
|
849
|
-
version = "0.
|
|
814
|
+
version = "0.120.0"
|
|
850
815
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
851
|
-
checksum = "
|
|
816
|
+
checksum = "588d0c5964f10860b04043e55aab26d7f7a206b0fd4f10c5260e8aa5773832bd"
|
|
852
817
|
|
|
853
818
|
[[package]]
|
|
854
819
|
name = "cranelift-native"
|
|
855
|
-
version = "0.
|
|
820
|
+
version = "0.120.0"
|
|
856
821
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
857
|
-
checksum = "
|
|
822
|
+
checksum = "19ed3c94cb97b14f92b6a94a1d45ef8c851f6a2ad9114e5d91d233f7da638fed"
|
|
858
823
|
dependencies = [
|
|
859
824
|
"cranelift-codegen",
|
|
860
825
|
"libc",
|
|
861
|
-
"target-lexicon
|
|
826
|
+
"target-lexicon",
|
|
862
827
|
]
|
|
863
828
|
|
|
864
829
|
[[package]]
|
|
865
|
-
name = "
|
|
866
|
-
version = "
|
|
830
|
+
name = "cranelift-srcgen"
|
|
831
|
+
version = "0.120.0"
|
|
867
832
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
868
|
-
checksum = "
|
|
869
|
-
dependencies = [
|
|
870
|
-
"crc-catalog",
|
|
871
|
-
]
|
|
872
|
-
|
|
873
|
-
[[package]]
|
|
874
|
-
name = "crc-catalog"
|
|
875
|
-
version = "2.4.0"
|
|
876
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
877
|
-
checksum = "19d374276b40fb8bbdee95aef7c7fa6b5316ec764510eb64b8dd0e2ed0d7e7f5"
|
|
833
|
+
checksum = "85256fac1519a7d25a040c1d850fba67478f3f021ad5fdf738ba4425ee862dbf"
|
|
878
834
|
|
|
879
835
|
[[package]]
|
|
880
836
|
name = "crc32fast"
|
|
@@ -900,9 +856,9 @@ dependencies = [
|
|
|
900
856
|
|
|
901
857
|
[[package]]
|
|
902
858
|
name = "crossbeam-channel"
|
|
903
|
-
version = "0.5.
|
|
859
|
+
version = "0.5.15"
|
|
904
860
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
905
|
-
checksum = "
|
|
861
|
+
checksum = "82b8f8f868b36967f9606790d1903570de9ceaf870a7bf9fbbd3016d636a2cb2"
|
|
906
862
|
dependencies = [
|
|
907
863
|
"crossbeam-utils",
|
|
908
864
|
]
|
|
@@ -952,23 +908,25 @@ dependencies = [
|
|
|
952
908
|
"libc",
|
|
953
909
|
"mio 0.8.11",
|
|
954
910
|
"parking_lot",
|
|
955
|
-
"signal-hook 0.3.
|
|
911
|
+
"signal-hook 0.3.18",
|
|
956
912
|
"signal-hook-mio",
|
|
957
913
|
"winapi",
|
|
958
914
|
]
|
|
959
915
|
|
|
960
916
|
[[package]]
|
|
961
917
|
name = "crossterm"
|
|
962
|
-
version = "0.
|
|
918
|
+
version = "0.29.0"
|
|
963
919
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
964
|
-
checksum = "
|
|
920
|
+
checksum = "d8b9f2e4c67f833b660cdb0a3523065869fb35570177239812ed4c905aeff87b"
|
|
965
921
|
dependencies = [
|
|
966
|
-
"bitflags 2.9.
|
|
922
|
+
"bitflags 2.9.1",
|
|
967
923
|
"crossterm_winapi",
|
|
968
|
-
"
|
|
924
|
+
"derive_more",
|
|
925
|
+
"document-features",
|
|
926
|
+
"mio 1.0.4",
|
|
969
927
|
"parking_lot",
|
|
970
|
-
"rustix 0.
|
|
971
|
-
"signal-hook 0.3.
|
|
928
|
+
"rustix 1.0.7",
|
|
929
|
+
"signal-hook 0.3.18",
|
|
972
930
|
"signal-hook-mio",
|
|
973
931
|
"winapi",
|
|
974
932
|
]
|
|
@@ -1022,9 +980,9 @@ dependencies = [
|
|
|
1022
980
|
|
|
1023
981
|
[[package]]
|
|
1024
982
|
name = "darling"
|
|
1025
|
-
version = "0.20.
|
|
983
|
+
version = "0.20.11"
|
|
1026
984
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1027
|
-
checksum = "
|
|
985
|
+
checksum = "fc7f46116c46ff9ab3eb1597a45688b6715c6e628b5c133e288e709a29bcb4ee"
|
|
1028
986
|
dependencies = [
|
|
1029
987
|
"darling_core",
|
|
1030
988
|
"darling_macro",
|
|
@@ -1032,27 +990,27 @@ dependencies = [
|
|
|
1032
990
|
|
|
1033
991
|
[[package]]
|
|
1034
992
|
name = "darling_core"
|
|
1035
|
-
version = "0.20.
|
|
993
|
+
version = "0.20.11"
|
|
1036
994
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1037
|
-
checksum = "
|
|
995
|
+
checksum = "0d00b9596d185e565c2207a0b01f8bd1a135483d02d9b7b0a54b11da8d53412e"
|
|
1038
996
|
dependencies = [
|
|
1039
997
|
"fnv",
|
|
1040
998
|
"ident_case",
|
|
1041
999
|
"proc-macro2",
|
|
1042
1000
|
"quote",
|
|
1043
1001
|
"strsim 0.11.1",
|
|
1044
|
-
"syn 2.0.
|
|
1002
|
+
"syn 2.0.101",
|
|
1045
1003
|
]
|
|
1046
1004
|
|
|
1047
1005
|
[[package]]
|
|
1048
1006
|
name = "darling_macro"
|
|
1049
|
-
version = "0.20.
|
|
1007
|
+
version = "0.20.11"
|
|
1050
1008
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1051
|
-
checksum = "
|
|
1009
|
+
checksum = "fc34b93ccb385b40dc71c6fceac4b2ad23662c7eeb248cf10d529b7e055b6ead"
|
|
1052
1010
|
dependencies = [
|
|
1053
1011
|
"darling_core",
|
|
1054
1012
|
"quote",
|
|
1055
|
-
"syn 2.0.
|
|
1013
|
+
"syn 2.0.101",
|
|
1056
1014
|
]
|
|
1057
1015
|
|
|
1058
1016
|
[[package]]
|
|
@@ -1071,9 +1029,9 @@ dependencies = [
|
|
|
1071
1029
|
|
|
1072
1030
|
[[package]]
|
|
1073
1031
|
name = "data-encoding"
|
|
1074
|
-
version = "2.
|
|
1032
|
+
version = "2.9.0"
|
|
1075
1033
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1076
|
-
checksum = "
|
|
1034
|
+
checksum = "2a2330da5de22e8a3cb63252ce2abb30116bf5265e89c0e01bc17015ce30a476"
|
|
1077
1035
|
|
|
1078
1036
|
[[package]]
|
|
1079
1037
|
name = "deflate64"
|
|
@@ -1089,9 +1047,9 @@ checksum = "5729f5117e208430e437df2f4843f5e5952997175992d1414f94c57d61e270b4"
|
|
|
1089
1047
|
|
|
1090
1048
|
[[package]]
|
|
1091
1049
|
name = "der"
|
|
1092
|
-
version = "0.7.
|
|
1050
|
+
version = "0.7.10"
|
|
1093
1051
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1094
|
-
checksum = "
|
|
1052
|
+
checksum = "e7c1832837b905bbfb5101e07cc24c8deddf52f93225eee6ead5f4d63d53ddcb"
|
|
1095
1053
|
dependencies = [
|
|
1096
1054
|
"const-oid",
|
|
1097
1055
|
"pem-rfc7468",
|
|
@@ -1114,9 +1072,9 @@ dependencies = [
|
|
|
1114
1072
|
|
|
1115
1073
|
[[package]]
|
|
1116
1074
|
name = "deranged"
|
|
1117
|
-
version = "0.4.
|
|
1075
|
+
version = "0.4.0"
|
|
1118
1076
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1119
|
-
checksum = "
|
|
1077
|
+
checksum = "9c9e6a11ca8224451684bc0d7d5a7adbf8f2fd6887261a1cfc3c0432f9d4068e"
|
|
1120
1078
|
dependencies = [
|
|
1121
1079
|
"powerfmt",
|
|
1122
1080
|
]
|
|
@@ -1129,7 +1087,28 @@ checksum = "30542c1ad912e0e3d22a1935c290e12e8a29d704a420177a31faad4a601a0800"
|
|
|
1129
1087
|
dependencies = [
|
|
1130
1088
|
"proc-macro2",
|
|
1131
1089
|
"quote",
|
|
1132
|
-
"syn 2.0.
|
|
1090
|
+
"syn 2.0.101",
|
|
1091
|
+
]
|
|
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",
|
|
1133
1112
|
]
|
|
1134
1113
|
|
|
1135
1114
|
[[package]]
|
|
@@ -1193,7 +1172,7 @@ checksum = "97369cbbc041bc366949bc74d34658d6cda5621039731c6310521892a3a20ae0"
|
|
|
1193
1172
|
dependencies = [
|
|
1194
1173
|
"proc-macro2",
|
|
1195
1174
|
"quote",
|
|
1196
|
-
"syn 2.0.
|
|
1175
|
+
"syn 2.0.101",
|
|
1197
1176
|
]
|
|
1198
1177
|
|
|
1199
1178
|
[[package]]
|
|
@@ -1202,6 +1181,15 @@ version = "0.3.3"
|
|
|
1202
1181
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1203
1182
|
checksum = "fea41bba32d969b513997752735605054bc0dfa92b4c56bf1189f2e174be7a10"
|
|
1204
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
|
+
|
|
1205
1193
|
[[package]]
|
|
1206
1194
|
name = "dsa"
|
|
1207
1195
|
version = "0.6.3"
|
|
@@ -1213,7 +1201,7 @@ dependencies = [
|
|
|
1213
1201
|
"num-traits",
|
|
1214
1202
|
"pkcs8",
|
|
1215
1203
|
"rfc6979",
|
|
1216
|
-
"sha2 0.10.
|
|
1204
|
+
"sha2 0.10.9",
|
|
1217
1205
|
"signature",
|
|
1218
1206
|
"zeroize",
|
|
1219
1207
|
]
|
|
@@ -1307,9 +1295,9 @@ dependencies = [
|
|
|
1307
1295
|
|
|
1308
1296
|
[[package]]
|
|
1309
1297
|
name = "env_logger"
|
|
1310
|
-
version = "0.11.
|
|
1298
|
+
version = "0.11.8"
|
|
1311
1299
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1312
|
-
checksum = "
|
|
1300
|
+
checksum = "13c863f0904021b108aa8b2f55046443e6b1ebde8fd4a15c399893aae4fa069f"
|
|
1313
1301
|
dependencies = [
|
|
1314
1302
|
"anstream",
|
|
1315
1303
|
"anstyle",
|
|
@@ -1326,9 +1314,9 @@ checksum = "877a4ace8713b0bcf2a4e7eec82529c029f1d0619886d18145fea96c3ffe5c0f"
|
|
|
1326
1314
|
|
|
1327
1315
|
[[package]]
|
|
1328
1316
|
name = "errno"
|
|
1329
|
-
version = "0.3.
|
|
1317
|
+
version = "0.3.12"
|
|
1330
1318
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1331
|
-
checksum = "
|
|
1319
|
+
checksum = "cea14ef9355e3beab063703aa9dab15afd25f0667c341310c1e5274bb1d0da18"
|
|
1332
1320
|
dependencies = [
|
|
1333
1321
|
"libc",
|
|
1334
1322
|
"windows-sys 0.59.0",
|
|
@@ -1409,11 +1397,12 @@ checksum = "0ce7134b9999ecaf8bcd65542e436736ef32ddca1b3e06094cb6ec5755203b80"
|
|
|
1409
1397
|
|
|
1410
1398
|
[[package]]
|
|
1411
1399
|
name = "flate2"
|
|
1412
|
-
version = "1.1.
|
|
1400
|
+
version = "1.1.1"
|
|
1413
1401
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1414
|
-
checksum = "
|
|
1402
|
+
checksum = "7ced92e76e966ca2fd84c8f7aa01a4aea65b0eb6648d72f7c8f3e2764a67fece"
|
|
1415
1403
|
dependencies = [
|
|
1416
1404
|
"crc32fast",
|
|
1405
|
+
"libz-rs-sys",
|
|
1417
1406
|
"miniz_oxide",
|
|
1418
1407
|
]
|
|
1419
1408
|
|
|
@@ -1454,95 +1443,6 @@ version = "2.0.0"
|
|
|
1454
1443
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1455
1444
|
checksum = "e6d5a32815ae3f33302d95fdcb2ce17862f8c65363dcfd29360480ba1001fc9c"
|
|
1456
1445
|
|
|
1457
|
-
[[package]]
|
|
1458
|
-
name = "futures"
|
|
1459
|
-
version = "0.3.31"
|
|
1460
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1461
|
-
checksum = "65bc07b1a8bc7c85c5f2e110c476c7389b4554ba72af57d8445ea63a576b0876"
|
|
1462
|
-
dependencies = [
|
|
1463
|
-
"futures-channel",
|
|
1464
|
-
"futures-core",
|
|
1465
|
-
"futures-executor",
|
|
1466
|
-
"futures-io",
|
|
1467
|
-
"futures-sink",
|
|
1468
|
-
"futures-task",
|
|
1469
|
-
"futures-util",
|
|
1470
|
-
]
|
|
1471
|
-
|
|
1472
|
-
[[package]]
|
|
1473
|
-
name = "futures-channel"
|
|
1474
|
-
version = "0.3.31"
|
|
1475
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1476
|
-
checksum = "2dff15bf788c671c1934e366d07e30c1814a8ef514e1af724a602e8a2fbe1b10"
|
|
1477
|
-
dependencies = [
|
|
1478
|
-
"futures-core",
|
|
1479
|
-
"futures-sink",
|
|
1480
|
-
]
|
|
1481
|
-
|
|
1482
|
-
[[package]]
|
|
1483
|
-
name = "futures-core"
|
|
1484
|
-
version = "0.3.31"
|
|
1485
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1486
|
-
checksum = "05f29059c0c2090612e8d742178b0580d2dc940c837851ad723096f87af6663e"
|
|
1487
|
-
|
|
1488
|
-
[[package]]
|
|
1489
|
-
name = "futures-executor"
|
|
1490
|
-
version = "0.3.31"
|
|
1491
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1492
|
-
checksum = "1e28d1d997f585e54aebc3f97d39e72338912123a67330d723fdbb564d646c9f"
|
|
1493
|
-
dependencies = [
|
|
1494
|
-
"futures-core",
|
|
1495
|
-
"futures-task",
|
|
1496
|
-
"futures-util",
|
|
1497
|
-
]
|
|
1498
|
-
|
|
1499
|
-
[[package]]
|
|
1500
|
-
name = "futures-io"
|
|
1501
|
-
version = "0.3.31"
|
|
1502
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1503
|
-
checksum = "9e5c1b78ca4aae1ac06c48a526a655760685149f0d465d21f37abfe57ce075c6"
|
|
1504
|
-
|
|
1505
|
-
[[package]]
|
|
1506
|
-
name = "futures-macro"
|
|
1507
|
-
version = "0.3.31"
|
|
1508
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1509
|
-
checksum = "162ee34ebcb7c64a8abebc059ce0fee27c2262618d7b60ed8faf72fef13c3650"
|
|
1510
|
-
dependencies = [
|
|
1511
|
-
"proc-macro2",
|
|
1512
|
-
"quote",
|
|
1513
|
-
"syn 2.0.100",
|
|
1514
|
-
]
|
|
1515
|
-
|
|
1516
|
-
[[package]]
|
|
1517
|
-
name = "futures-sink"
|
|
1518
|
-
version = "0.3.31"
|
|
1519
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1520
|
-
checksum = "e575fab7d1e0dcb8d0c7bcf9a63ee213816ab51902e6d244a95819acacf1d4f7"
|
|
1521
|
-
|
|
1522
|
-
[[package]]
|
|
1523
|
-
name = "futures-task"
|
|
1524
|
-
version = "0.3.31"
|
|
1525
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1526
|
-
checksum = "f90f7dce0722e95104fcb095585910c0977252f286e354b5e3bd38902cd99988"
|
|
1527
|
-
|
|
1528
|
-
[[package]]
|
|
1529
|
-
name = "futures-util"
|
|
1530
|
-
version = "0.3.31"
|
|
1531
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1532
|
-
checksum = "9fa08315bb612088cc391249efdc3bc77536f16c91f6cf495e6fbe85b20a4a81"
|
|
1533
|
-
dependencies = [
|
|
1534
|
-
"futures-channel",
|
|
1535
|
-
"futures-core",
|
|
1536
|
-
"futures-io",
|
|
1537
|
-
"futures-macro",
|
|
1538
|
-
"futures-sink",
|
|
1539
|
-
"futures-task",
|
|
1540
|
-
"memchr",
|
|
1541
|
-
"pin-project-lite",
|
|
1542
|
-
"pin-utils",
|
|
1543
|
-
"slab",
|
|
1544
|
-
]
|
|
1545
|
-
|
|
1546
1446
|
[[package]]
|
|
1547
1447
|
name = "generic-array"
|
|
1548
1448
|
version = "0.14.7"
|
|
@@ -1556,9 +1456,9 @@ dependencies = [
|
|
|
1556
1456
|
|
|
1557
1457
|
[[package]]
|
|
1558
1458
|
name = "getrandom"
|
|
1559
|
-
version = "0.2.
|
|
1459
|
+
version = "0.2.16"
|
|
1560
1460
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1561
|
-
checksum = "
|
|
1461
|
+
checksum = "335ff9f135e4384c8150d6f27c6daed433577f86b4750418338c01a1a2528592"
|
|
1562
1462
|
dependencies = [
|
|
1563
1463
|
"cfg-if",
|
|
1564
1464
|
"libc",
|
|
@@ -1567,9 +1467,9 @@ dependencies = [
|
|
|
1567
1467
|
|
|
1568
1468
|
[[package]]
|
|
1569
1469
|
name = "getrandom"
|
|
1570
|
-
version = "0.3.
|
|
1470
|
+
version = "0.3.3"
|
|
1571
1471
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1572
|
-
checksum = "
|
|
1472
|
+
checksum = "26145e563e54f2cadc477553f1ec5ee650b00862f0a58bcd12cbdc5f0ea2d2f4"
|
|
1573
1473
|
dependencies = [
|
|
1574
1474
|
"cfg-if",
|
|
1575
1475
|
"js-sys",
|
|
@@ -1597,7 +1497,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
1597
1497
|
checksum = "07e28edb80900c19c28f1072f2e8aeca7fa06b23cd4169cefe1af5aa3260783f"
|
|
1598
1498
|
dependencies = [
|
|
1599
1499
|
"fallible-iterator 0.3.0",
|
|
1600
|
-
"indexmap 2.
|
|
1500
|
+
"indexmap 2.9.0",
|
|
1601
1501
|
"stable_deref_trait",
|
|
1602
1502
|
]
|
|
1603
1503
|
|
|
@@ -1626,7 +1526,7 @@ version = "0.9.1"
|
|
|
1626
1526
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1627
1527
|
checksum = "0bf760ebf69878d9fd8f110c89703d90ce35095324d1f1edcb595c63945ee757"
|
|
1628
1528
|
dependencies = [
|
|
1629
|
-
"bitflags 2.9.
|
|
1529
|
+
"bitflags 2.9.1",
|
|
1630
1530
|
"ignore",
|
|
1631
1531
|
"walkdir",
|
|
1632
1532
|
]
|
|
@@ -1654,25 +1554,6 @@ dependencies = [
|
|
|
1654
1554
|
"subtle",
|
|
1655
1555
|
]
|
|
1656
1556
|
|
|
1657
|
-
[[package]]
|
|
1658
|
-
name = "h2"
|
|
1659
|
-
version = "0.3.26"
|
|
1660
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1661
|
-
checksum = "81fe527a889e1532da5c525686d96d4c2e74cdd345badf8dfef9f6b39dd5f5e8"
|
|
1662
|
-
dependencies = [
|
|
1663
|
-
"bytes",
|
|
1664
|
-
"fnv",
|
|
1665
|
-
"futures-core",
|
|
1666
|
-
"futures-sink",
|
|
1667
|
-
"futures-util",
|
|
1668
|
-
"http",
|
|
1669
|
-
"indexmap 2.8.0",
|
|
1670
|
-
"slab",
|
|
1671
|
-
"tokio",
|
|
1672
|
-
"tokio-util",
|
|
1673
|
-
"tracing",
|
|
1674
|
-
]
|
|
1675
|
-
|
|
1676
1557
|
[[package]]
|
|
1677
1558
|
name = "hashbrown"
|
|
1678
1559
|
version = "0.12.3"
|
|
@@ -1691,20 +1572,14 @@ dependencies = [
|
|
|
1691
1572
|
|
|
1692
1573
|
[[package]]
|
|
1693
1574
|
name = "hashbrown"
|
|
1694
|
-
version = "0.15.
|
|
1575
|
+
version = "0.15.3"
|
|
1695
1576
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1696
|
-
checksum = "
|
|
1577
|
+
checksum = "84b26c544d002229e640969970a2e74021aadf6e2f96372b9c58eff97de08eb3"
|
|
1697
1578
|
dependencies = [
|
|
1698
1579
|
"foldhash",
|
|
1699
1580
|
"serde",
|
|
1700
1581
|
]
|
|
1701
1582
|
|
|
1702
|
-
[[package]]
|
|
1703
|
-
name = "heck"
|
|
1704
|
-
version = "0.4.1"
|
|
1705
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1706
|
-
checksum = "95505c38b4572b2d910cecb0281560f54b440a19336cbbcb27bf6ce6adc6f5a8"
|
|
1707
|
-
|
|
1708
1583
|
[[package]]
|
|
1709
1584
|
name = "heck"
|
|
1710
1585
|
version = "0.5.0"
|
|
@@ -1744,80 +1619,11 @@ dependencies = [
|
|
|
1744
1619
|
"windows-sys 0.59.0",
|
|
1745
1620
|
]
|
|
1746
1621
|
|
|
1747
|
-
[[package]]
|
|
1748
|
-
name = "hostname"
|
|
1749
|
-
version = "0.3.1"
|
|
1750
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1751
|
-
checksum = "3c731c3e10504cc8ed35cfe2f1db4c9274c3d35fa486e3b31df46f068ef3e867"
|
|
1752
|
-
dependencies = [
|
|
1753
|
-
"libc",
|
|
1754
|
-
"match_cfg",
|
|
1755
|
-
"winapi",
|
|
1756
|
-
]
|
|
1757
|
-
|
|
1758
|
-
[[package]]
|
|
1759
|
-
name = "http"
|
|
1760
|
-
version = "0.2.12"
|
|
1761
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1762
|
-
checksum = "601cbb57e577e2f5ef5be8e7b83f0f63994f25aa94d673e54a92d5c516d101f1"
|
|
1763
|
-
dependencies = [
|
|
1764
|
-
"bytes",
|
|
1765
|
-
"fnv",
|
|
1766
|
-
"itoa",
|
|
1767
|
-
]
|
|
1768
|
-
|
|
1769
|
-
[[package]]
|
|
1770
|
-
name = "http-body"
|
|
1771
|
-
version = "0.4.6"
|
|
1772
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1773
|
-
checksum = "7ceab25649e9960c0311ea418d17bee82c0dcec1bd053b5f9a66e265a693bed2"
|
|
1774
|
-
dependencies = [
|
|
1775
|
-
"bytes",
|
|
1776
|
-
"http",
|
|
1777
|
-
"pin-project-lite",
|
|
1778
|
-
]
|
|
1779
|
-
|
|
1780
|
-
[[package]]
|
|
1781
|
-
name = "httparse"
|
|
1782
|
-
version = "1.10.1"
|
|
1783
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1784
|
-
checksum = "6dbf3de79e51f3d586ab4cb9d5c3e2c14aa28ed23d180cf89b4df0454a69cc87"
|
|
1785
|
-
|
|
1786
|
-
[[package]]
|
|
1787
|
-
name = "httpdate"
|
|
1788
|
-
version = "1.0.3"
|
|
1789
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1790
|
-
checksum = "df3b46402a9d5adb4c86a0cf463f42e19994e3ee891101b1841f30a545cb49a9"
|
|
1791
|
-
|
|
1792
|
-
[[package]]
|
|
1793
|
-
name = "hyper"
|
|
1794
|
-
version = "0.14.32"
|
|
1795
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1796
|
-
checksum = "41dfc780fdec9373c01bae43289ea34c972e40ee3c9f6b3c8801a35f35586ce7"
|
|
1797
|
-
dependencies = [
|
|
1798
|
-
"bytes",
|
|
1799
|
-
"futures-channel",
|
|
1800
|
-
"futures-core",
|
|
1801
|
-
"futures-util",
|
|
1802
|
-
"h2",
|
|
1803
|
-
"http",
|
|
1804
|
-
"http-body",
|
|
1805
|
-
"httparse",
|
|
1806
|
-
"httpdate",
|
|
1807
|
-
"itoa",
|
|
1808
|
-
"pin-project-lite",
|
|
1809
|
-
"socket2",
|
|
1810
|
-
"tokio",
|
|
1811
|
-
"tower-service",
|
|
1812
|
-
"tracing",
|
|
1813
|
-
"want",
|
|
1814
|
-
]
|
|
1815
|
-
|
|
1816
1622
|
[[package]]
|
|
1817
1623
|
name = "iana-time-zone"
|
|
1818
|
-
version = "0.1.
|
|
1624
|
+
version = "0.1.63"
|
|
1819
1625
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1820
|
-
checksum = "
|
|
1626
|
+
checksum = "b0c919e5debc312ad217002b8048a17b7d83f80703865bbfcfebb0458b0b27d8"
|
|
1821
1627
|
dependencies = [
|
|
1822
1628
|
"android_system_properties",
|
|
1823
1629
|
"core-foundation-sys",
|
|
@@ -1902,12 +1708,12 @@ dependencies = [
|
|
|
1902
1708
|
|
|
1903
1709
|
[[package]]
|
|
1904
1710
|
name = "indexmap"
|
|
1905
|
-
version = "2.
|
|
1711
|
+
version = "2.9.0"
|
|
1906
1712
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1907
|
-
checksum = "
|
|
1713
|
+
checksum = "cea70ddb795996207ad57735b50c5982d8844f38ba9ee5f1aedcfb708a2aa11e"
|
|
1908
1714
|
dependencies = [
|
|
1909
1715
|
"equivalent",
|
|
1910
|
-
"hashbrown 0.15.
|
|
1716
|
+
"hashbrown 0.15.3",
|
|
1911
1717
|
"serde",
|
|
1912
1718
|
]
|
|
1913
1719
|
|
|
@@ -1953,24 +1759,6 @@ dependencies = [
|
|
|
1953
1759
|
"either",
|
|
1954
1760
|
]
|
|
1955
1761
|
|
|
1956
|
-
[[package]]
|
|
1957
|
-
name = "itertools"
|
|
1958
|
-
version = "0.11.0"
|
|
1959
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1960
|
-
checksum = "b1c173a5686ce8bfa551b3563d0c2170bf24ca44da99c7ca4bfdab5418c3fe57"
|
|
1961
|
-
dependencies = [
|
|
1962
|
-
"either",
|
|
1963
|
-
]
|
|
1964
|
-
|
|
1965
|
-
[[package]]
|
|
1966
|
-
name = "itertools"
|
|
1967
|
-
version = "0.12.1"
|
|
1968
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1969
|
-
checksum = "ba291022dbbd398a455acf126c1e341954079855bc60dfdda641363bd6922569"
|
|
1970
|
-
dependencies = [
|
|
1971
|
-
"either",
|
|
1972
|
-
]
|
|
1973
|
-
|
|
1974
1762
|
[[package]]
|
|
1975
1763
|
name = "itertools"
|
|
1976
1764
|
version = "0.14.0"
|
|
@@ -1988,9 +1776,9 @@ checksum = "4a5f13b858c8d314ee3e8f639011f7ccefe71f97f96e50151fb991f267928e2c"
|
|
|
1988
1776
|
|
|
1989
1777
|
[[package]]
|
|
1990
1778
|
name = "jiff"
|
|
1991
|
-
version = "0.2.
|
|
1779
|
+
version = "0.2.14"
|
|
1992
1780
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1993
|
-
checksum = "
|
|
1781
|
+
checksum = "a194df1107f33c79f4f93d02c80798520551949d59dfad22b6157048a88cca93"
|
|
1994
1782
|
dependencies = [
|
|
1995
1783
|
"jiff-static",
|
|
1996
1784
|
"log",
|
|
@@ -2001,21 +1789,22 @@ dependencies = [
|
|
|
2001
1789
|
|
|
2002
1790
|
[[package]]
|
|
2003
1791
|
name = "jiff-static"
|
|
2004
|
-
version = "0.2.
|
|
1792
|
+
version = "0.2.14"
|
|
2005
1793
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2006
|
-
checksum = "
|
|
1794
|
+
checksum = "6c6e1db7ed32c6c71b759497fae34bf7933636f75a251b9e736555da426f6442"
|
|
2007
1795
|
dependencies = [
|
|
2008
1796
|
"proc-macro2",
|
|
2009
1797
|
"quote",
|
|
2010
|
-
"syn 2.0.
|
|
1798
|
+
"syn 2.0.101",
|
|
2011
1799
|
]
|
|
2012
1800
|
|
|
2013
1801
|
[[package]]
|
|
2014
1802
|
name = "jobserver"
|
|
2015
|
-
version = "0.1.
|
|
1803
|
+
version = "0.1.33"
|
|
2016
1804
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2017
|
-
checksum = "
|
|
1805
|
+
checksum = "38f262f097c174adebe41eb73d66ae9c06b2844fb0da69969647bbddd9b0538a"
|
|
2018
1806
|
dependencies = [
|
|
1807
|
+
"getrandom 0.3.3",
|
|
2019
1808
|
"libc",
|
|
2020
1809
|
]
|
|
2021
1810
|
|
|
@@ -2050,17 +1839,43 @@ version = "0.2.5"
|
|
|
2050
1839
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2051
1840
|
checksum = "884e2677b40cc8c339eaefcb701c32ef1fd2493d71118dc0ca4b6a736c93bd67"
|
|
2052
1841
|
|
|
1842
|
+
[[package]]
|
|
1843
|
+
name = "leb128fmt"
|
|
1844
|
+
version = "0.1.0"
|
|
1845
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1846
|
+
checksum = "09edd9e8b54e49e587e4f6295a7d29c3ea94d469cb40ab8ca70b288248a81db2"
|
|
1847
|
+
|
|
2053
1848
|
[[package]]
|
|
2054
1849
|
name = "libc"
|
|
2055
|
-
version = "0.2.
|
|
1850
|
+
version = "0.2.172"
|
|
2056
1851
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2057
|
-
checksum = "
|
|
1852
|
+
checksum = "d750af042f7ef4f724306de029d18836c26c1765a54a6a3f094cbd23a7267ffa"
|
|
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
|
+
]
|
|
2058
1873
|
|
|
2059
1874
|
[[package]]
|
|
2060
1875
|
name = "libm"
|
|
2061
|
-
version = "0.2.
|
|
1876
|
+
version = "0.2.15"
|
|
2062
1877
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2063
|
-
checksum = "
|
|
1878
|
+
checksum = "f9fbbcab51052fe104eb5e5d351cf728d30a5be1fe14d9be8a3b097481fb97de"
|
|
2064
1879
|
|
|
2065
1880
|
[[package]]
|
|
2066
1881
|
name = "libredox"
|
|
@@ -2068,15 +1883,24 @@ version = "0.1.3"
|
|
|
2068
1883
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2069
1884
|
checksum = "c0ff37bd590ca25063e35af745c343cb7a0271906fb7b37e4813e8f79f00268d"
|
|
2070
1885
|
dependencies = [
|
|
2071
|
-
"bitflags 2.9.
|
|
1886
|
+
"bitflags 2.9.1",
|
|
2072
1887
|
"libc",
|
|
2073
1888
|
]
|
|
2074
1889
|
|
|
1890
|
+
[[package]]
|
|
1891
|
+
name = "libz-rs-sys"
|
|
1892
|
+
version = "0.5.0"
|
|
1893
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1894
|
+
checksum = "6489ca9bd760fe9642d7644e827b0c9add07df89857b0416ee15c1cc1a3b8c5a"
|
|
1895
|
+
dependencies = [
|
|
1896
|
+
"zlib-rs",
|
|
1897
|
+
]
|
|
1898
|
+
|
|
2075
1899
|
[[package]]
|
|
2076
1900
|
name = "lingua"
|
|
2077
|
-
version = "1.7.
|
|
1901
|
+
version = "1.7.2"
|
|
2078
1902
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2079
|
-
checksum = "
|
|
1903
|
+
checksum = "6e501c98d473068ce13ddfa5ca86846a6b60e24e3020ba9d2f49af654e9219ec"
|
|
2080
1904
|
dependencies = [
|
|
2081
1905
|
"ahash",
|
|
2082
1906
|
"brotli",
|
|
@@ -2138,22 +1962,22 @@ dependencies = [
|
|
|
2138
1962
|
|
|
2139
1963
|
[[package]]
|
|
2140
1964
|
name = "linkme"
|
|
2141
|
-
version = "0.3.
|
|
1965
|
+
version = "0.3.33"
|
|
2142
1966
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2143
|
-
checksum = "
|
|
1967
|
+
checksum = "a1b1703c00b2a6a70738920544aa51652532cacddfec2e162d2e29eae01e665c"
|
|
2144
1968
|
dependencies = [
|
|
2145
1969
|
"linkme-impl",
|
|
2146
1970
|
]
|
|
2147
1971
|
|
|
2148
1972
|
[[package]]
|
|
2149
1973
|
name = "linkme-impl"
|
|
2150
|
-
version = "0.3.
|
|
1974
|
+
version = "0.3.33"
|
|
2151
1975
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2152
|
-
checksum = "
|
|
1976
|
+
checksum = "04d55ca5d5a14363da83bf3c33874b8feaa34653e760d5216d7ef9829c88001a"
|
|
2153
1977
|
dependencies = [
|
|
2154
1978
|
"proc-macro2",
|
|
2155
1979
|
"quote",
|
|
2156
|
-
"syn 2.0.
|
|
1980
|
+
"syn 2.0.101",
|
|
2157
1981
|
]
|
|
2158
1982
|
|
|
2159
1983
|
[[package]]
|
|
@@ -2164,26 +1988,26 @@ checksum = "d26c52dbd32dccf2d10cac7725f8eae5296885fb5703b261f7d0a0739ec807ab"
|
|
|
2164
1988
|
|
|
2165
1989
|
[[package]]
|
|
2166
1990
|
name = "linux-raw-sys"
|
|
2167
|
-
version = "0.9.
|
|
1991
|
+
version = "0.9.4"
|
|
1992
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1993
|
+
checksum = "cd945864f07fe9f5371a27ad7b52a172b4b499999f1d97574c9fa68373937e12"
|
|
1994
|
+
|
|
1995
|
+
[[package]]
|
|
1996
|
+
name = "litrs"
|
|
1997
|
+
version = "0.4.1"
|
|
2168
1998
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2169
|
-
checksum = "
|
|
1999
|
+
checksum = "b4ce301924b7887e9d637144fdade93f9dfff9b60981d4ac161db09720d39aa5"
|
|
2170
2000
|
|
|
2171
2001
|
[[package]]
|
|
2172
2002
|
name = "lock_api"
|
|
2173
|
-
version = "0.4.
|
|
2003
|
+
version = "0.4.13"
|
|
2174
2004
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2175
|
-
checksum = "
|
|
2005
|
+
checksum = "96936507f153605bddfcda068dd804796c84324ed2510809e5b2a624c81da765"
|
|
2176
2006
|
dependencies = [
|
|
2177
2007
|
"autocfg",
|
|
2178
2008
|
"scopeguard",
|
|
2179
2009
|
]
|
|
2180
2010
|
|
|
2181
|
-
[[package]]
|
|
2182
|
-
name = "lockfree-object-pool"
|
|
2183
|
-
version = "0.1.6"
|
|
2184
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2185
|
-
checksum = "9374ef4228402d4b7e403e5838cb880d9ee663314b0a900d5a6aabf0c213552e"
|
|
2186
|
-
|
|
2187
2011
|
[[package]]
|
|
2188
2012
|
name = "log"
|
|
2189
2013
|
version = "0.4.27"
|
|
@@ -2212,7 +2036,7 @@ dependencies = [
|
|
|
2212
2036
|
"quote",
|
|
2213
2037
|
"regex-syntax",
|
|
2214
2038
|
"rustc_version",
|
|
2215
|
-
"syn 2.0.
|
|
2039
|
+
"syn 2.0.101",
|
|
2216
2040
|
]
|
|
2217
2041
|
|
|
2218
2042
|
[[package]]
|
|
@@ -2224,27 +2048,6 @@ dependencies = [
|
|
|
2224
2048
|
"logos-codegen",
|
|
2225
2049
|
]
|
|
2226
2050
|
|
|
2227
|
-
[[package]]
|
|
2228
|
-
name = "lzma-rs"
|
|
2229
|
-
version = "0.3.0"
|
|
2230
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2231
|
-
checksum = "297e814c836ae64db86b36cf2a557ba54368d03f6afcd7d947c266692f71115e"
|
|
2232
|
-
dependencies = [
|
|
2233
|
-
"byteorder",
|
|
2234
|
-
"crc",
|
|
2235
|
-
]
|
|
2236
|
-
|
|
2237
|
-
[[package]]
|
|
2238
|
-
name = "lzma-sys"
|
|
2239
|
-
version = "0.1.20"
|
|
2240
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2241
|
-
checksum = "5fda04ab3764e6cde78b9974eec4f779acaba7c4e84b36eca3cf77c581b85d27"
|
|
2242
|
-
dependencies = [
|
|
2243
|
-
"cc",
|
|
2244
|
-
"libc",
|
|
2245
|
-
"pkg-config",
|
|
2246
|
-
]
|
|
2247
|
-
|
|
2248
2051
|
[[package]]
|
|
2249
2052
|
name = "mach2"
|
|
2250
2053
|
version = "0.4.2"
|
|
@@ -2260,7 +2063,7 @@ version = "0.16.2"
|
|
|
2260
2063
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2261
2064
|
checksum = "a200ae03df8c3dce7a963f6eeaac8feb41bf9001cb7e5ab22e3205aec2f0373d"
|
|
2262
2065
|
dependencies = [
|
|
2263
|
-
"bitflags 2.9.
|
|
2066
|
+
"bitflags 2.9.1",
|
|
2264
2067
|
"libc",
|
|
2265
2068
|
"magic-sys",
|
|
2266
2069
|
"thiserror 1.0.69",
|
|
@@ -2282,12 +2085,6 @@ version = "1.0.2"
|
|
|
2282
2085
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2283
2086
|
checksum = "3e2e65a1a2e43cfcb47a895c4c8b10d1f4a61097f9f254f183aee60cad9c651d"
|
|
2284
2087
|
|
|
2285
|
-
[[package]]
|
|
2286
|
-
name = "match_cfg"
|
|
2287
|
-
version = "0.1.0"
|
|
2288
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2289
|
-
checksum = "ffbee8634e0d45d258acb448e7eaab3fce7a0a467395d4d9f228e3c1f01fb2e4"
|
|
2290
|
-
|
|
2291
2088
|
[[package]]
|
|
2292
2089
|
name = "md-5"
|
|
2293
2090
|
version = "0.10.6"
|
|
@@ -2372,9 +2169,9 @@ checksum = "68354c5c6bd36d73ff3feceb05efa59b6acb7626617f4962be322a825e61f79a"
|
|
|
2372
2169
|
|
|
2373
2170
|
[[package]]
|
|
2374
2171
|
name = "miniz_oxide"
|
|
2375
|
-
version = "0.8.
|
|
2172
|
+
version = "0.8.8"
|
|
2376
2173
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2377
|
-
checksum = "
|
|
2174
|
+
checksum = "3be647b768db090acb35d5ec5db2b0e1f1de11133ca123b9eacf5137868f892a"
|
|
2378
2175
|
dependencies = [
|
|
2379
2176
|
"adler2",
|
|
2380
2177
|
]
|
|
@@ -2393,14 +2190,14 @@ dependencies = [
|
|
|
2393
2190
|
|
|
2394
2191
|
[[package]]
|
|
2395
2192
|
name = "mio"
|
|
2396
|
-
version = "1.0.
|
|
2193
|
+
version = "1.0.4"
|
|
2397
2194
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2398
|
-
checksum = "
|
|
2195
|
+
checksum = "78bed444cc8a2160f01cbcf811ef18cac863ad68ae8ca62092e8db51d51c761c"
|
|
2399
2196
|
dependencies = [
|
|
2400
2197
|
"libc",
|
|
2401
2198
|
"log",
|
|
2402
2199
|
"wasi 0.11.0+wasi-snapshot-preview1",
|
|
2403
|
-
"windows-sys 0.
|
|
2200
|
+
"windows-sys 0.59.0",
|
|
2404
2201
|
]
|
|
2405
2202
|
|
|
2406
2203
|
[[package]]
|
|
@@ -2525,7 +2322,7 @@ checksum = "ed3955f1a9c7c0c15e092f9c887db08b1fc683305fdf6eb6684f22555355e202"
|
|
|
2525
2322
|
dependencies = [
|
|
2526
2323
|
"proc-macro2",
|
|
2527
2324
|
"quote",
|
|
2528
|
-
"syn 2.0.
|
|
2325
|
+
"syn 2.0.101",
|
|
2529
2326
|
]
|
|
2530
2327
|
|
|
2531
2328
|
[[package]]
|
|
@@ -2576,8 +2373,8 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
2576
2373
|
checksum = "62948e14d923ea95ea2c7c86c71013138b66525b86bdc08d2dcc262bdb497b87"
|
|
2577
2374
|
dependencies = [
|
|
2578
2375
|
"crc32fast",
|
|
2579
|
-
"hashbrown 0.15.
|
|
2580
|
-
"indexmap 2.
|
|
2376
|
+
"hashbrown 0.15.3",
|
|
2377
|
+
"indexmap 2.9.0",
|
|
2581
2378
|
"memchr",
|
|
2582
2379
|
]
|
|
2583
2380
|
|
|
@@ -2592,9 +2389,15 @@ dependencies = [
|
|
|
2592
2389
|
|
|
2593
2390
|
[[package]]
|
|
2594
2391
|
name = "once_cell"
|
|
2595
|
-
version = "1.21.
|
|
2392
|
+
version = "1.21.3"
|
|
2393
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2394
|
+
checksum = "42f5e15c9953c5e4ccceeb2e7382a716482c34515315f7b03532b8b4e8393d2d"
|
|
2395
|
+
|
|
2396
|
+
[[package]]
|
|
2397
|
+
name = "once_cell_polyfill"
|
|
2398
|
+
version = "1.70.1"
|
|
2596
2399
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2597
|
-
checksum = "
|
|
2400
|
+
checksum = "a4895175b425cb1f87721b59f0f286c2092bd4af812243672510e1ac53e2e0ad"
|
|
2598
2401
|
|
|
2599
2402
|
[[package]]
|
|
2600
2403
|
name = "opaque-debug"
|
|
@@ -2629,7 +2432,7 @@ dependencies = [
|
|
|
2629
2432
|
"ecdsa",
|
|
2630
2433
|
"elliptic-curve",
|
|
2631
2434
|
"primeorder",
|
|
2632
|
-
"sha2 0.10.
|
|
2435
|
+
"sha2 0.10.9",
|
|
2633
2436
|
]
|
|
2634
2437
|
|
|
2635
2438
|
[[package]]
|
|
@@ -2641,14 +2444,14 @@ dependencies = [
|
|
|
2641
2444
|
"ecdsa",
|
|
2642
2445
|
"elliptic-curve",
|
|
2643
2446
|
"primeorder",
|
|
2644
|
-
"sha2 0.10.
|
|
2447
|
+
"sha2 0.10.9",
|
|
2645
2448
|
]
|
|
2646
2449
|
|
|
2647
2450
|
[[package]]
|
|
2648
2451
|
name = "parking_lot"
|
|
2649
|
-
version = "0.12.
|
|
2452
|
+
version = "0.12.4"
|
|
2650
2453
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2651
|
-
checksum = "
|
|
2454
|
+
checksum = "70d58bf43669b5795d1576d0641cfb6fbb2057bf629506267a92807158584a13"
|
|
2652
2455
|
dependencies = [
|
|
2653
2456
|
"lock_api",
|
|
2654
2457
|
"parking_lot_core",
|
|
@@ -2656,9 +2459,9 @@ dependencies = [
|
|
|
2656
2459
|
|
|
2657
2460
|
[[package]]
|
|
2658
2461
|
name = "parking_lot_core"
|
|
2659
|
-
version = "0.9.
|
|
2462
|
+
version = "0.9.11"
|
|
2660
2463
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2661
|
-
checksum = "
|
|
2464
|
+
checksum = "bc838d2a56b5b1a6c25f55575dfc605fabb63bb2365f6c2353ef9159aa69e4a5"
|
|
2662
2465
|
dependencies = [
|
|
2663
2466
|
"cfg-if",
|
|
2664
2467
|
"libc",
|
|
@@ -2667,12 +2470,6 @@ dependencies = [
|
|
|
2667
2470
|
"windows-targets 0.52.6",
|
|
2668
2471
|
]
|
|
2669
2472
|
|
|
2670
|
-
[[package]]
|
|
2671
|
-
name = "paste"
|
|
2672
|
-
version = "1.0.15"
|
|
2673
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2674
|
-
checksum = "57c0d7b74b563b49d38dae00a0c37d4d6de9b432382b2892f0574ddcae73fd0a"
|
|
2675
|
-
|
|
2676
2473
|
[[package]]
|
|
2677
2474
|
name = "pbkdf2"
|
|
2678
2475
|
version = "0.12.2"
|
|
@@ -2723,7 +2520,7 @@ dependencies = [
|
|
|
2723
2520
|
"pest_meta",
|
|
2724
2521
|
"proc-macro2",
|
|
2725
2522
|
"quote",
|
|
2726
|
-
"syn 2.0.
|
|
2523
|
+
"syn 2.0.101",
|
|
2727
2524
|
]
|
|
2728
2525
|
|
|
2729
2526
|
[[package]]
|
|
@@ -2734,7 +2531,7 @@ checksum = "7f9f832470494906d1fca5329f8ab5791cc60beb230c74815dff541cbd2b5ca0"
|
|
|
2734
2531
|
dependencies = [
|
|
2735
2532
|
"once_cell",
|
|
2736
2533
|
"pest",
|
|
2737
|
-
"sha2 0.10.
|
|
2534
|
+
"sha2 0.10.9",
|
|
2738
2535
|
]
|
|
2739
2536
|
|
|
2740
2537
|
[[package]]
|
|
@@ -2786,7 +2583,7 @@ dependencies = [
|
|
|
2786
2583
|
"phf_shared 0.11.3",
|
|
2787
2584
|
"proc-macro2",
|
|
2788
2585
|
"quote",
|
|
2789
|
-
"syn 2.0.
|
|
2586
|
+
"syn 2.0.101",
|
|
2790
2587
|
]
|
|
2791
2588
|
|
|
2792
2589
|
[[package]]
|
|
@@ -2807,38 +2604,6 @@ dependencies = [
|
|
|
2807
2604
|
"siphasher 1.0.1",
|
|
2808
2605
|
]
|
|
2809
2606
|
|
|
2810
|
-
[[package]]
|
|
2811
|
-
name = "pin-project"
|
|
2812
|
-
version = "1.1.10"
|
|
2813
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2814
|
-
checksum = "677f1add503faace112b9f1373e43e9e054bfdd22ff1a63c1bc485eaec6a6a8a"
|
|
2815
|
-
dependencies = [
|
|
2816
|
-
"pin-project-internal",
|
|
2817
|
-
]
|
|
2818
|
-
|
|
2819
|
-
[[package]]
|
|
2820
|
-
name = "pin-project-internal"
|
|
2821
|
-
version = "1.1.10"
|
|
2822
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2823
|
-
checksum = "6e918e4ff8c4549eb882f14b3a4bc8c8bc93de829416eacf579f1207a8fbf861"
|
|
2824
|
-
dependencies = [
|
|
2825
|
-
"proc-macro2",
|
|
2826
|
-
"quote",
|
|
2827
|
-
"syn 2.0.100",
|
|
2828
|
-
]
|
|
2829
|
-
|
|
2830
|
-
[[package]]
|
|
2831
|
-
name = "pin-project-lite"
|
|
2832
|
-
version = "0.2.16"
|
|
2833
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2834
|
-
checksum = "3b3cff922bd51709b605d9ead9aa71031d81447142d828eb4a6eba76fe619f9b"
|
|
2835
|
-
|
|
2836
|
-
[[package]]
|
|
2837
|
-
name = "pin-utils"
|
|
2838
|
-
version = "0.1.0"
|
|
2839
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2840
|
-
checksum = "8b870d8c151b6f2fb93e84a13146138f05d02ed11c7e7c54f8826aaaf7c9f184"
|
|
2841
|
-
|
|
2842
2607
|
[[package]]
|
|
2843
2608
|
name = "pkcs1"
|
|
2844
2609
|
version = "0.7.5"
|
|
@@ -2905,7 +2670,7 @@ version = "0.2.21"
|
|
|
2905
2670
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2906
2671
|
checksum = "85eae3c4ed2f50dcfe72643da4befc30deadb458a9b590d720cde2f2b1e97da9"
|
|
2907
2672
|
dependencies = [
|
|
2908
|
-
"zerocopy
|
|
2673
|
+
"zerocopy",
|
|
2909
2674
|
]
|
|
2910
2675
|
|
|
2911
2676
|
[[package]]
|
|
@@ -2959,9 +2724,9 @@ dependencies = [
|
|
|
2959
2724
|
|
|
2960
2725
|
[[package]]
|
|
2961
2726
|
name = "proc-macro2"
|
|
2962
|
-
version = "1.0.
|
|
2727
|
+
version = "1.0.95"
|
|
2963
2728
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2964
|
-
checksum = "
|
|
2729
|
+
checksum = "02b3e5e68a3a1a02aad3ec490a98007cbc13c37cbe84a3cd7b8e406d76e7f778"
|
|
2965
2730
|
dependencies = [
|
|
2966
2731
|
"unicode-ident",
|
|
2967
2732
|
]
|
|
@@ -2992,17 +2757,6 @@ dependencies = [
|
|
|
2992
2757
|
"thiserror 1.0.69",
|
|
2993
2758
|
]
|
|
2994
2759
|
|
|
2995
|
-
[[package]]
|
|
2996
|
-
name = "protobuf-json-mapping"
|
|
2997
|
-
version = "3.7.2"
|
|
2998
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2999
|
-
checksum = "e0d6e4be637b310d8a5c02fa195243328e2d97fa7df1127a27281ef1187fcb1d"
|
|
3000
|
-
dependencies = [
|
|
3001
|
-
"protobuf",
|
|
3002
|
-
"protobuf-support",
|
|
3003
|
-
"thiserror 1.0.69",
|
|
3004
|
-
]
|
|
3005
|
-
|
|
3006
2760
|
[[package]]
|
|
3007
2761
|
name = "protobuf-parse"
|
|
3008
2762
|
version = "3.7.2"
|
|
@@ -3010,7 +2764,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
3010
2764
|
checksum = "b4aeaa1f2460f1d348eeaeed86aea999ce98c1bded6f089ff8514c9d9dbdc973"
|
|
3011
2765
|
dependencies = [
|
|
3012
2766
|
"anyhow",
|
|
3013
|
-
"indexmap 2.
|
|
2767
|
+
"indexmap 2.9.0",
|
|
3014
2768
|
"log",
|
|
3015
2769
|
"protobuf",
|
|
3016
2770
|
"protobuf-support",
|
|
@@ -3030,9 +2784,9 @@ dependencies = [
|
|
|
3030
2784
|
|
|
3031
2785
|
[[package]]
|
|
3032
2786
|
name = "psl"
|
|
3033
|
-
version = "2.1.
|
|
2787
|
+
version = "2.1.115"
|
|
3034
2788
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3035
|
-
checksum = "
|
|
2789
|
+
checksum = "16f605d6286ebe6f97118b1d1116b7a143b4b860091711a389050dd87fadcfe8"
|
|
3036
2790
|
dependencies = [
|
|
3037
2791
|
"psl-types",
|
|
3038
2792
|
]
|
|
@@ -3045,9 +2799,9 @@ checksum = "33cb294fe86a74cbcf50d4445b37da762029549ebeea341421c7c70370f86cac"
|
|
|
3045
2799
|
|
|
3046
2800
|
[[package]]
|
|
3047
2801
|
name = "psm"
|
|
3048
|
-
version = "0.1.
|
|
2802
|
+
version = "0.1.26"
|
|
3049
2803
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3050
|
-
checksum = "
|
|
2804
|
+
checksum = "6e944464ec8536cd1beb0bbfd96987eb5e3b72f2ecdafdc5c769a37f1fa2ae1f"
|
|
3051
2805
|
dependencies = [
|
|
3052
2806
|
"cc",
|
|
3053
2807
|
]
|
|
@@ -3058,35 +2812,28 @@ version = "0.9.6"
|
|
|
3058
2812
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3059
2813
|
checksum = "57206b407293d2bcd3af849ce869d52068623f19e1b5ff8e8778e3309439682b"
|
|
3060
2814
|
dependencies = [
|
|
3061
|
-
"bitflags 2.9.
|
|
2815
|
+
"bitflags 2.9.1",
|
|
3062
2816
|
"memchr",
|
|
3063
2817
|
"unicase",
|
|
3064
2818
|
]
|
|
3065
2819
|
|
|
3066
2820
|
[[package]]
|
|
3067
2821
|
name = "pulley-interpreter"
|
|
3068
|
-
version = "
|
|
2822
|
+
version = "33.0.0"
|
|
3069
2823
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3070
|
-
checksum = "
|
|
2824
|
+
checksum = "aeb99cb5a3ada8e95a246d09f5fdb609f021bf740efd3ca9bddf458e3293a6a0"
|
|
3071
2825
|
dependencies = [
|
|
3072
2826
|
"cranelift-bitset",
|
|
3073
2827
|
"log",
|
|
3074
2828
|
"wasmtime-math",
|
|
3075
2829
|
]
|
|
3076
2830
|
|
|
3077
|
-
[[package]]
|
|
3078
|
-
name = "punycode"
|
|
3079
|
-
version = "0.4.1"
|
|
3080
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3081
|
-
checksum = "e9e1dcb320d6839f6edb64f7a4a59d39b30480d4d1765b56873f7c858538a5fe"
|
|
3082
|
-
|
|
3083
2831
|
[[package]]
|
|
3084
2832
|
name = "pyo3"
|
|
3085
|
-
version = "0.
|
|
2833
|
+
version = "0.25.0"
|
|
3086
2834
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3087
|
-
checksum = "
|
|
2835
|
+
checksum = "f239d656363bcee73afef85277f1b281e8ac6212a1d42aa90e55b90ed43c47a4"
|
|
3088
2836
|
dependencies = [
|
|
3089
|
-
"cfg-if",
|
|
3090
2837
|
"indoc",
|
|
3091
2838
|
"libc",
|
|
3092
2839
|
"memoffset 0.9.1",
|
|
@@ -3100,19 +2847,19 @@ dependencies = [
|
|
|
3100
2847
|
|
|
3101
2848
|
[[package]]
|
|
3102
2849
|
name = "pyo3-build-config"
|
|
3103
|
-
version = "0.
|
|
2850
|
+
version = "0.25.0"
|
|
3104
2851
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3105
|
-
checksum = "
|
|
2852
|
+
checksum = "755ea671a1c34044fa165247aaf6f419ca39caa6003aee791a0df2713d8f1b6d"
|
|
3106
2853
|
dependencies = [
|
|
3107
2854
|
"once_cell",
|
|
3108
|
-
"target-lexicon
|
|
2855
|
+
"target-lexicon",
|
|
3109
2856
|
]
|
|
3110
2857
|
|
|
3111
2858
|
[[package]]
|
|
3112
2859
|
name = "pyo3-ffi"
|
|
3113
|
-
version = "0.
|
|
2860
|
+
version = "0.25.0"
|
|
3114
2861
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3115
|
-
checksum = "
|
|
2862
|
+
checksum = "fc95a2e67091e44791d4ea300ff744be5293f394f1bafd9f78c080814d35956e"
|
|
3116
2863
|
dependencies = [
|
|
3117
2864
|
"libc",
|
|
3118
2865
|
"pyo3-build-config",
|
|
@@ -3120,9 +2867,9 @@ dependencies = [
|
|
|
3120
2867
|
|
|
3121
2868
|
[[package]]
|
|
3122
2869
|
name = "pyo3-file"
|
|
3123
|
-
version = "0.
|
|
2870
|
+
version = "0.13.0"
|
|
3124
2871
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3125
|
-
checksum = "
|
|
2872
|
+
checksum = "75916300df50dbfa6958ec05fe53473e69474542dac7fd1275aa6869a18a241a"
|
|
3126
2873
|
dependencies = [
|
|
3127
2874
|
"pyo3",
|
|
3128
2875
|
"skeptic",
|
|
@@ -3130,27 +2877,27 @@ dependencies = [
|
|
|
3130
2877
|
|
|
3131
2878
|
[[package]]
|
|
3132
2879
|
name = "pyo3-macros"
|
|
3133
|
-
version = "0.
|
|
2880
|
+
version = "0.25.0"
|
|
3134
2881
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3135
|
-
checksum = "
|
|
2882
|
+
checksum = "a179641d1b93920829a62f15e87c0ed791b6c8db2271ba0fd7c2686090510214"
|
|
3136
2883
|
dependencies = [
|
|
3137
2884
|
"proc-macro2",
|
|
3138
2885
|
"pyo3-macros-backend",
|
|
3139
2886
|
"quote",
|
|
3140
|
-
"syn 2.0.
|
|
2887
|
+
"syn 2.0.101",
|
|
3141
2888
|
]
|
|
3142
2889
|
|
|
3143
2890
|
[[package]]
|
|
3144
2891
|
name = "pyo3-macros-backend"
|
|
3145
|
-
version = "0.
|
|
2892
|
+
version = "0.25.0"
|
|
3146
2893
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3147
|
-
checksum = "
|
|
2894
|
+
checksum = "9dff85ebcaab8c441b0e3f7ae40a6963ecea8a9f5e74f647e33fcf5ec9a1e89e"
|
|
3148
2895
|
dependencies = [
|
|
3149
|
-
"heck
|
|
2896
|
+
"heck",
|
|
3150
2897
|
"proc-macro2",
|
|
3151
2898
|
"pyo3-build-config",
|
|
3152
2899
|
"quote",
|
|
3153
|
-
"syn 2.0.
|
|
2900
|
+
"syn 2.0.101",
|
|
3154
2901
|
]
|
|
3155
2902
|
|
|
3156
2903
|
[[package]]
|
|
@@ -3215,7 +2962,7 @@ version = "0.6.4"
|
|
|
3215
2962
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3216
2963
|
checksum = "ec0be4795e2f6a28069bec0b5ff3e2ac9bafc99e6a9a7dc3547996c5c816922c"
|
|
3217
2964
|
dependencies = [
|
|
3218
|
-
"getrandom 0.2.
|
|
2965
|
+
"getrandom 0.2.16",
|
|
3219
2966
|
]
|
|
3220
2967
|
|
|
3221
2968
|
[[package]]
|
|
@@ -3224,7 +2971,7 @@ version = "11.5.0"
|
|
|
3224
2971
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3225
2972
|
checksum = "c6df7ab838ed27997ba19a4664507e6f82b41fe6e20be42929332156e5e85146"
|
|
3226
2973
|
dependencies = [
|
|
3227
|
-
"bitflags 2.9.
|
|
2974
|
+
"bitflags 2.9.1",
|
|
3228
2975
|
]
|
|
3229
2976
|
|
|
3230
2977
|
[[package]]
|
|
@@ -3249,11 +2996,11 @@ dependencies = [
|
|
|
3249
2996
|
|
|
3250
2997
|
[[package]]
|
|
3251
2998
|
name = "redox_syscall"
|
|
3252
|
-
version = "0.5.
|
|
2999
|
+
version = "0.5.12"
|
|
3253
3000
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3254
|
-
checksum = "
|
|
3001
|
+
checksum = "928fca9cf2aa042393a8325b9ead81d2f0df4cb12e1e24cef072922ccd99c5af"
|
|
3255
3002
|
dependencies = [
|
|
3256
|
-
"bitflags 2.9.
|
|
3003
|
+
"bitflags 2.9.1",
|
|
3257
3004
|
]
|
|
3258
3005
|
|
|
3259
3006
|
[[package]]
|
|
@@ -3262,20 +3009,20 @@ version = "0.4.6"
|
|
|
3262
3009
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3263
3010
|
checksum = "ba009ff324d1fc1b900bd1fdb31564febe58a8ccc8a6fdbb93b543d33b13ca43"
|
|
3264
3011
|
dependencies = [
|
|
3265
|
-
"getrandom 0.2.
|
|
3012
|
+
"getrandom 0.2.16",
|
|
3266
3013
|
"libredox",
|
|
3267
3014
|
"thiserror 1.0.69",
|
|
3268
3015
|
]
|
|
3269
3016
|
|
|
3270
3017
|
[[package]]
|
|
3271
3018
|
name = "regalloc2"
|
|
3272
|
-
version = "0.
|
|
3019
|
+
version = "0.12.2"
|
|
3273
3020
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3274
|
-
checksum = "
|
|
3021
|
+
checksum = "5216b1837de2149f8bc8e6d5f88a9326b63b8c836ed58ce4a0a29ec736a59734"
|
|
3275
3022
|
dependencies = [
|
|
3276
3023
|
"allocator-api2",
|
|
3277
3024
|
"bumpalo",
|
|
3278
|
-
"hashbrown 0.15.
|
|
3025
|
+
"hashbrown 0.15.3",
|
|
3279
3026
|
"log",
|
|
3280
3027
|
"rustc-hash 2.1.1",
|
|
3281
3028
|
"smallvec",
|
|
@@ -3328,7 +3075,7 @@ checksum = "a4689e6c2294d81e88dc6261c768b63bc4fcdb852be6d1352498b114f61383b7"
|
|
|
3328
3075
|
dependencies = [
|
|
3329
3076
|
"cc",
|
|
3330
3077
|
"cfg-if",
|
|
3331
|
-
"getrandom 0.2.
|
|
3078
|
+
"getrandom 0.2.16",
|
|
3332
3079
|
"libc",
|
|
3333
3080
|
"untrusted",
|
|
3334
3081
|
"windows-sys 0.52.0",
|
|
@@ -3372,12 +3119,6 @@ dependencies = [
|
|
|
3372
3119
|
"zeroize",
|
|
3373
3120
|
]
|
|
3374
3121
|
|
|
3375
|
-
[[package]]
|
|
3376
|
-
name = "rustc-demangle"
|
|
3377
|
-
version = "0.1.24"
|
|
3378
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3379
|
-
checksum = "719b953e2095829ee67db738b3bfa9fa368c94900df327b3f07fe6e794d2fe1f"
|
|
3380
|
-
|
|
3381
3122
|
[[package]]
|
|
3382
3123
|
name = "rustc-hash"
|
|
3383
3124
|
version = "1.1.0"
|
|
@@ -3414,7 +3155,7 @@ version = "0.38.44"
|
|
|
3414
3155
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3415
3156
|
checksum = "fdb5bc1ae2baa591800df16c9ca78619bf65c0488b41b96ccec5d11220d8c154"
|
|
3416
3157
|
dependencies = [
|
|
3417
|
-
"bitflags 2.9.
|
|
3158
|
+
"bitflags 2.9.1",
|
|
3418
3159
|
"errno",
|
|
3419
3160
|
"libc",
|
|
3420
3161
|
"linux-raw-sys 0.4.15",
|
|
@@ -3423,22 +3164,22 @@ dependencies = [
|
|
|
3423
3164
|
|
|
3424
3165
|
[[package]]
|
|
3425
3166
|
name = "rustix"
|
|
3426
|
-
version = "1.0.
|
|
3167
|
+
version = "1.0.7"
|
|
3427
3168
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3428
|
-
checksum = "
|
|
3169
|
+
checksum = "c71e83d6afe7ff64890ec6b71d6a69bb8a610ab78ce364b3352876bb4c801266"
|
|
3429
3170
|
dependencies = [
|
|
3430
|
-
"bitflags 2.9.
|
|
3171
|
+
"bitflags 2.9.1",
|
|
3431
3172
|
"errno",
|
|
3432
3173
|
"libc",
|
|
3433
|
-
"linux-raw-sys 0.9.
|
|
3174
|
+
"linux-raw-sys 0.9.4",
|
|
3434
3175
|
"windows-sys 0.59.0",
|
|
3435
3176
|
]
|
|
3436
3177
|
|
|
3437
3178
|
[[package]]
|
|
3438
3179
|
name = "rustversion"
|
|
3439
|
-
version = "1.0.
|
|
3180
|
+
version = "1.0.21"
|
|
3440
3181
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3441
|
-
checksum = "
|
|
3182
|
+
checksum = "8a0d197bd2c9dc6e53b84da9556a69ba4cdfab8619eb41a8bd1cc2027a0f6b1d"
|
|
3442
3183
|
|
|
3443
3184
|
[[package]]
|
|
3444
3185
|
name = "ryu"
|
|
@@ -3530,7 +3271,7 @@ checksum = "5b0276cf7f2c73365f7157c8123c21cd9a50fbbd844757af28ca1f5925fc2a00"
|
|
|
3530
3271
|
dependencies = [
|
|
3531
3272
|
"proc-macro2",
|
|
3532
3273
|
"quote",
|
|
3533
|
-
"syn 2.0.
|
|
3274
|
+
"syn 2.0.101",
|
|
3534
3275
|
]
|
|
3535
3276
|
|
|
3536
3277
|
[[package]]
|
|
@@ -3539,7 +3280,7 @@ version = "1.0.140"
|
|
|
3539
3280
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3540
3281
|
checksum = "20068b6e96dc6c9bd23e01df8827e6c7e1f2fddd43c21810382803c136b99373"
|
|
3541
3282
|
dependencies = [
|
|
3542
|
-
"indexmap 2.
|
|
3283
|
+
"indexmap 2.9.0",
|
|
3543
3284
|
"itoa",
|
|
3544
3285
|
"memchr",
|
|
3545
3286
|
"ryu",
|
|
@@ -3581,9 +3322,9 @@ dependencies = [
|
|
|
3581
3322
|
|
|
3582
3323
|
[[package]]
|
|
3583
3324
|
name = "sha2"
|
|
3584
|
-
version = "0.10.
|
|
3325
|
+
version = "0.10.9"
|
|
3585
3326
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3586
|
-
checksum = "
|
|
3327
|
+
checksum = "a7507d819769d01a365ab707794a4084392c824f54a7a6a7862f8c3d0892b283"
|
|
3587
3328
|
dependencies = [
|
|
3588
3329
|
"cfg-if",
|
|
3589
3330
|
"cpufeatures",
|
|
@@ -3608,9 +3349,9 @@ dependencies = [
|
|
|
3608
3349
|
|
|
3609
3350
|
[[package]]
|
|
3610
3351
|
name = "signal-hook"
|
|
3611
|
-
version = "0.3.
|
|
3352
|
+
version = "0.3.18"
|
|
3612
3353
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3613
|
-
checksum = "
|
|
3354
|
+
checksum = "d881a16cf4426aa584979d30bd82cb33429027e42122b169753d6ef1085ed6e2"
|
|
3614
3355
|
dependencies = [
|
|
3615
3356
|
"libc",
|
|
3616
3357
|
"signal-hook-registry",
|
|
@@ -3624,15 +3365,15 @@ checksum = "34db1a06d485c9142248b7a054f034b349b212551f3dfd19c94d45a754a217cd"
|
|
|
3624
3365
|
dependencies = [
|
|
3625
3366
|
"libc",
|
|
3626
3367
|
"mio 0.8.11",
|
|
3627
|
-
"mio 1.0.
|
|
3628
|
-
"signal-hook 0.3.
|
|
3368
|
+
"mio 1.0.4",
|
|
3369
|
+
"signal-hook 0.3.18",
|
|
3629
3370
|
]
|
|
3630
3371
|
|
|
3631
3372
|
[[package]]
|
|
3632
3373
|
name = "signal-hook-registry"
|
|
3633
|
-
version = "1.4.
|
|
3374
|
+
version = "1.4.5"
|
|
3634
3375
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3635
|
-
checksum = "
|
|
3376
|
+
checksum = "9203b8055f63a2a00e2f593bb0510367fe707d7ff1e5c872de2f537b339e5410"
|
|
3636
3377
|
dependencies = [
|
|
3637
3378
|
"libc",
|
|
3638
3379
|
]
|
|
@@ -3700,34 +3441,15 @@ dependencies = [
|
|
|
3700
3441
|
"walkdir",
|
|
3701
3442
|
]
|
|
3702
3443
|
|
|
3703
|
-
[[package]]
|
|
3704
|
-
name = "slab"
|
|
3705
|
-
version = "0.4.9"
|
|
3706
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3707
|
-
checksum = "8f92a496fb766b417c996b9c5e57daf2f7ad3b0bebe1ccfca4856390e3d3bb67"
|
|
3708
|
-
dependencies = [
|
|
3709
|
-
"autocfg",
|
|
3710
|
-
]
|
|
3711
|
-
|
|
3712
3444
|
[[package]]
|
|
3713
3445
|
name = "smallvec"
|
|
3714
|
-
version = "1.
|
|
3446
|
+
version = "1.15.0"
|
|
3715
3447
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3716
|
-
checksum = "
|
|
3448
|
+
checksum = "8917285742e9f3e1683f0a9c4e6b57960b7314d0b08d30d1ecd426713ee2eee9"
|
|
3717
3449
|
dependencies = [
|
|
3718
3450
|
"serde",
|
|
3719
3451
|
]
|
|
3720
3452
|
|
|
3721
|
-
[[package]]
|
|
3722
|
-
name = "socket2"
|
|
3723
|
-
version = "0.5.8"
|
|
3724
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3725
|
-
checksum = "c970269d99b64e60ec3bd6ad27270092a5394c4e309314b18ae3fe575695fbe8"
|
|
3726
|
-
dependencies = [
|
|
3727
|
-
"libc",
|
|
3728
|
-
"windows-sys 0.52.0",
|
|
3729
|
-
]
|
|
3730
|
-
|
|
3731
3453
|
[[package]]
|
|
3732
3454
|
name = "spin"
|
|
3733
3455
|
version = "0.9.8"
|
|
@@ -3786,11 +3508,11 @@ version = "0.27.1"
|
|
|
3786
3508
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3787
3509
|
checksum = "c77a8c5abcaf0f9ce05d62342b7d298c346515365c36b673df4ebe3ced01fde8"
|
|
3788
3510
|
dependencies = [
|
|
3789
|
-
"heck
|
|
3511
|
+
"heck",
|
|
3790
3512
|
"proc-macro2",
|
|
3791
3513
|
"quote",
|
|
3792
3514
|
"rustversion",
|
|
3793
|
-
"syn 2.0.
|
|
3515
|
+
"syn 2.0.101",
|
|
3794
3516
|
]
|
|
3795
3517
|
|
|
3796
3518
|
[[package]]
|
|
@@ -3828,9 +3550,9 @@ dependencies = [
|
|
|
3828
3550
|
|
|
3829
3551
|
[[package]]
|
|
3830
3552
|
name = "syn"
|
|
3831
|
-
version = "2.0.
|
|
3553
|
+
version = "2.0.101"
|
|
3832
3554
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3833
|
-
checksum = "
|
|
3555
|
+
checksum = "8ce2b7fc941b3a24138a0a7cf8e858bfc6a992e7978a068a5c760deb0ed43caf"
|
|
3834
3556
|
dependencies = [
|
|
3835
3557
|
"proc-macro2",
|
|
3836
3558
|
"quote",
|
|
@@ -3839,13 +3561,13 @@ dependencies = [
|
|
|
3839
3561
|
|
|
3840
3562
|
[[package]]
|
|
3841
3563
|
name = "synstructure"
|
|
3842
|
-
version = "0.13.
|
|
3564
|
+
version = "0.13.2"
|
|
3843
3565
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3844
|
-
checksum = "
|
|
3566
|
+
checksum = "728a70f3dbaf5bab7f0c4b1ac8d7ae5ea60a4b5549c8a5914361c99147a709d2"
|
|
3845
3567
|
dependencies = [
|
|
3846
3568
|
"proc-macro2",
|
|
3847
3569
|
"quote",
|
|
3848
|
-
"syn 2.0.
|
|
3570
|
+
"syn 2.0.101",
|
|
3849
3571
|
]
|
|
3850
3572
|
|
|
3851
3573
|
[[package]]
|
|
@@ -3854,12 +3576,6 @@ version = "1.0.1"
|
|
|
3854
3576
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3855
3577
|
checksum = "55937e1799185b12863d447f42597ed69d9928686b8d88a1df17376a097d8369"
|
|
3856
3578
|
|
|
3857
|
-
[[package]]
|
|
3858
|
-
name = "target-lexicon"
|
|
3859
|
-
version = "0.12.16"
|
|
3860
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3861
|
-
checksum = "61c41af27dd6d1e27b1b16b489db798443478cef1f06a660c96db617ba5de3b1"
|
|
3862
|
-
|
|
3863
3579
|
[[package]]
|
|
3864
3580
|
name = "target-lexicon"
|
|
3865
3581
|
version = "0.13.2"
|
|
@@ -3868,14 +3584,14 @@ checksum = "e502f78cdbb8ba4718f566c418c52bc729126ffd16baee5baa718cf25dd5a69a"
|
|
|
3868
3584
|
|
|
3869
3585
|
[[package]]
|
|
3870
3586
|
name = "tempfile"
|
|
3871
|
-
version = "3.
|
|
3587
|
+
version = "3.20.0"
|
|
3872
3588
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3873
|
-
checksum = "
|
|
3589
|
+
checksum = "e8a64e3985349f2441a1a9ef0b853f869006c3855f2cda6862a94d26ebb9d6a1"
|
|
3874
3590
|
dependencies = [
|
|
3875
3591
|
"fastrand",
|
|
3876
|
-
"getrandom 0.3.
|
|
3592
|
+
"getrandom 0.3.3",
|
|
3877
3593
|
"once_cell",
|
|
3878
|
-
"rustix 1.0.
|
|
3594
|
+
"rustix 1.0.7",
|
|
3879
3595
|
"windows-sys 0.59.0",
|
|
3880
3596
|
]
|
|
3881
3597
|
|
|
@@ -3990,7 +3706,7 @@ checksum = "4fee6c4efc90059e10f81e6d42c60a18f76588c3d74cb83a0b242a2b6c7504c1"
|
|
|
3990
3706
|
dependencies = [
|
|
3991
3707
|
"proc-macro2",
|
|
3992
3708
|
"quote",
|
|
3993
|
-
"syn 2.0.
|
|
3709
|
+
"syn 2.0.101",
|
|
3994
3710
|
]
|
|
3995
3711
|
|
|
3996
3712
|
[[package]]
|
|
@@ -4001,7 +3717,7 @@ checksum = "7f7cf42b4507d8ea322120659672cf1b9dbb93f8f2d4ecfd6e51350ff5b17a1d"
|
|
|
4001
3717
|
dependencies = [
|
|
4002
3718
|
"proc-macro2",
|
|
4003
3719
|
"quote",
|
|
4004
|
-
"syn 2.0.
|
|
3720
|
+
"syn 2.0.101",
|
|
4005
3721
|
]
|
|
4006
3722
|
|
|
4007
3723
|
[[package]]
|
|
@@ -4050,53 +3766,11 @@ version = "0.1.1"
|
|
|
4050
3766
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4051
3767
|
checksum = "f762ca8308eda1e38512dc88a99f021e5214699ba133de157f588c8bfd0745c7"
|
|
4052
3768
|
|
|
4053
|
-
[[package]]
|
|
4054
|
-
name = "tokio"
|
|
4055
|
-
version = "1.44.1"
|
|
4056
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4057
|
-
checksum = "f382da615b842244d4b8738c82ed1275e6c5dd90c459a30941cd07080b06c91a"
|
|
4058
|
-
dependencies = [
|
|
4059
|
-
"backtrace",
|
|
4060
|
-
"bytes",
|
|
4061
|
-
"libc",
|
|
4062
|
-
"mio 1.0.3",
|
|
4063
|
-
"parking_lot",
|
|
4064
|
-
"pin-project-lite",
|
|
4065
|
-
"signal-hook-registry",
|
|
4066
|
-
"socket2",
|
|
4067
|
-
"tokio-macros",
|
|
4068
|
-
"windows-sys 0.52.0",
|
|
4069
|
-
]
|
|
4070
|
-
|
|
4071
|
-
[[package]]
|
|
4072
|
-
name = "tokio-macros"
|
|
4073
|
-
version = "2.5.0"
|
|
4074
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4075
|
-
checksum = "6e06d43f1345a3bcd39f6a56dbb7dcab2ba47e68e8ac134855e7e2bdbaf8cab8"
|
|
4076
|
-
dependencies = [
|
|
4077
|
-
"proc-macro2",
|
|
4078
|
-
"quote",
|
|
4079
|
-
"syn 2.0.100",
|
|
4080
|
-
]
|
|
4081
|
-
|
|
4082
|
-
[[package]]
|
|
4083
|
-
name = "tokio-util"
|
|
4084
|
-
version = "0.7.14"
|
|
4085
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4086
|
-
checksum = "6b9590b93e6fcc1739458317cccd391ad3955e2bde8913edf6f95f9e65a8f034"
|
|
4087
|
-
dependencies = [
|
|
4088
|
-
"bytes",
|
|
4089
|
-
"futures-core",
|
|
4090
|
-
"futures-sink",
|
|
4091
|
-
"pin-project-lite",
|
|
4092
|
-
"tokio",
|
|
4093
|
-
]
|
|
4094
|
-
|
|
4095
3769
|
[[package]]
|
|
4096
3770
|
name = "toml"
|
|
4097
|
-
version = "0.8.
|
|
3771
|
+
version = "0.8.22"
|
|
4098
3772
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4099
|
-
checksum = "
|
|
3773
|
+
checksum = "05ae329d1f08c4d17a59bed7ff5b5a769d062e64a62d34a3261b219e62cd5aae"
|
|
4100
3774
|
dependencies = [
|
|
4101
3775
|
"serde",
|
|
4102
3776
|
"serde_spanned",
|
|
@@ -4106,76 +3780,32 @@ dependencies = [
|
|
|
4106
3780
|
|
|
4107
3781
|
[[package]]
|
|
4108
3782
|
name = "toml_datetime"
|
|
4109
|
-
version = "0.6.
|
|
3783
|
+
version = "0.6.9"
|
|
4110
3784
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4111
|
-
checksum = "
|
|
3785
|
+
checksum = "3da5db5a963e24bc68be8b17b6fa82814bb22ee8660f192bb182771d498f09a3"
|
|
4112
3786
|
dependencies = [
|
|
4113
3787
|
"serde",
|
|
4114
3788
|
]
|
|
4115
3789
|
|
|
4116
3790
|
[[package]]
|
|
4117
3791
|
name = "toml_edit"
|
|
4118
|
-
version = "0.22.
|
|
3792
|
+
version = "0.22.26"
|
|
4119
3793
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4120
|
-
checksum = "
|
|
3794
|
+
checksum = "310068873db2c5b3e7659d2cc35d21855dbafa50d1ce336397c666e3cb08137e"
|
|
4121
3795
|
dependencies = [
|
|
4122
|
-
"indexmap 2.
|
|
3796
|
+
"indexmap 2.9.0",
|
|
4123
3797
|
"serde",
|
|
4124
3798
|
"serde_spanned",
|
|
4125
3799
|
"toml_datetime",
|
|
3800
|
+
"toml_write",
|
|
4126
3801
|
"winnow",
|
|
4127
3802
|
]
|
|
4128
3803
|
|
|
4129
3804
|
[[package]]
|
|
4130
|
-
name = "
|
|
4131
|
-
version = "0.
|
|
4132
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4133
|
-
checksum = "8df9b6e13f2d32c91b9bd719c00d1958837bc7dec474d94952798cc8e69eeec3"
|
|
4134
|
-
|
|
4135
|
-
[[package]]
|
|
4136
|
-
name = "tracing"
|
|
4137
|
-
version = "0.1.41"
|
|
4138
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4139
|
-
checksum = "784e0ac535deb450455cbfa28a6f0df145ea1bb7ae51b821cf5e7927fdcfbdd0"
|
|
4140
|
-
dependencies = [
|
|
4141
|
-
"pin-project-lite",
|
|
4142
|
-
"tracing-core",
|
|
4143
|
-
]
|
|
4144
|
-
|
|
4145
|
-
[[package]]
|
|
4146
|
-
name = "tracing-core"
|
|
4147
|
-
version = "0.1.33"
|
|
4148
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4149
|
-
checksum = "e672c95779cf947c5311f83787af4fa8fffd12fb27e4993211a84bdfd9610f9c"
|
|
4150
|
-
dependencies = [
|
|
4151
|
-
"once_cell",
|
|
4152
|
-
]
|
|
4153
|
-
|
|
4154
|
-
[[package]]
|
|
4155
|
-
name = "try-lock"
|
|
4156
|
-
version = "0.2.5"
|
|
4157
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4158
|
-
checksum = "e421abadd41a4225275504ea4d6566923418b7f05506fbc9c0fe86ba7396114b"
|
|
4159
|
-
|
|
4160
|
-
[[package]]
|
|
4161
|
-
name = "twistrs"
|
|
4162
|
-
version = "0.7.5"
|
|
3805
|
+
name = "toml_write"
|
|
3806
|
+
version = "0.1.1"
|
|
4163
3807
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4164
|
-
checksum = "
|
|
4165
|
-
dependencies = [
|
|
4166
|
-
"addr",
|
|
4167
|
-
"anyhow",
|
|
4168
|
-
"async-smtp",
|
|
4169
|
-
"futures",
|
|
4170
|
-
"hyper",
|
|
4171
|
-
"itertools 0.11.0",
|
|
4172
|
-
"lazy_static",
|
|
4173
|
-
"phf 0.11.3",
|
|
4174
|
-
"punycode",
|
|
4175
|
-
"serde",
|
|
4176
|
-
"thiserror 1.0.69",
|
|
4177
|
-
"tokio",
|
|
4178
|
-
]
|
|
3808
|
+
checksum = "bfb942dfe1d8e29a7ee7fcbde5bd2b9a25fb89aa70caea2eba3bee836ff41076"
|
|
4179
3809
|
|
|
4180
3810
|
[[package]]
|
|
4181
3811
|
name = "typenum"
|
|
@@ -4234,6 +3864,12 @@ version = "0.9.0"
|
|
|
4234
3864
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4235
3865
|
checksum = "8ecb6da28b8a351d773b68d5825ac39017e680750f980f3a1a85cd8dd28a47c1"
|
|
4236
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
|
+
|
|
4237
3873
|
[[package]]
|
|
4238
3874
|
name = "utf8parse"
|
|
4239
3875
|
version = "0.2.2"
|
|
@@ -4242,11 +3878,13 @@ checksum = "06abde3611657adf66d383f00b093d7faecc7fa57071cce2578660c9f1010821"
|
|
|
4242
3878
|
|
|
4243
3879
|
[[package]]
|
|
4244
3880
|
name = "uuid"
|
|
4245
|
-
version = "1.
|
|
3881
|
+
version = "1.17.0"
|
|
4246
3882
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4247
|
-
checksum = "
|
|
3883
|
+
checksum = "3cf4199d1e5d15ddd86a694e4d0dffa9c323ce759fea589f00fef9d81cc1931d"
|
|
4248
3884
|
dependencies = [
|
|
4249
|
-
"getrandom 0.3.
|
|
3885
|
+
"getrandom 0.3.3",
|
|
3886
|
+
"js-sys",
|
|
3887
|
+
"wasm-bindgen",
|
|
4250
3888
|
]
|
|
4251
3889
|
|
|
4252
3890
|
[[package]]
|
|
@@ -4261,6 +3899,12 @@ version = "0.9.5"
|
|
|
4261
3899
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4262
3900
|
checksum = "0b928f33d975fc6ad9f86c8f283853ad26bdd5b10b7f1542aa2fa15e2289105a"
|
|
4263
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
|
+
|
|
4264
3908
|
[[package]]
|
|
4265
3909
|
name = "vtparse"
|
|
4266
3910
|
version = "0.6.2"
|
|
@@ -4311,19 +3955,10 @@ version = "0.22.0"
|
|
|
4311
3955
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4312
3956
|
checksum = "439ad39ff894c43c9649fa724cdde9a6fc50b855d517ef071a93e5df82fe51d3"
|
|
4313
3957
|
dependencies = [
|
|
4314
|
-
"heck
|
|
3958
|
+
"heck",
|
|
4315
3959
|
"proc-macro2",
|
|
4316
3960
|
"quote",
|
|
4317
|
-
"syn 2.0.
|
|
4318
|
-
]
|
|
4319
|
-
|
|
4320
|
-
[[package]]
|
|
4321
|
-
name = "want"
|
|
4322
|
-
version = "0.3.1"
|
|
4323
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4324
|
-
checksum = "bfa7760aed19e106de2c7c0b581b509f2f25d3dacaf737cb82ac61bc6d760b0e"
|
|
4325
|
-
dependencies = [
|
|
4326
|
-
"try-lock",
|
|
3961
|
+
"syn 2.0.101",
|
|
4327
3962
|
]
|
|
4328
3963
|
|
|
4329
3964
|
[[package]]
|
|
@@ -4363,7 +3998,7 @@ dependencies = [
|
|
|
4363
3998
|
"log",
|
|
4364
3999
|
"proc-macro2",
|
|
4365
4000
|
"quote",
|
|
4366
|
-
"syn 2.0.
|
|
4001
|
+
"syn 2.0.101",
|
|
4367
4002
|
"wasm-bindgen-shared",
|
|
4368
4003
|
]
|
|
4369
4004
|
|
|
@@ -4385,7 +4020,7 @@ checksum = "8ae87ea40c9f689fc23f209965b6fb8a99ad69aeeb0231408be24920604395de"
|
|
|
4385
4020
|
dependencies = [
|
|
4386
4021
|
"proc-macro2",
|
|
4387
4022
|
"quote",
|
|
4388
|
-
"syn 2.0.
|
|
4023
|
+
"syn 2.0.101",
|
|
4389
4024
|
"wasm-bindgen-backend",
|
|
4390
4025
|
"wasm-bindgen-shared",
|
|
4391
4026
|
]
|
|
@@ -4410,12 +4045,12 @@ dependencies = [
|
|
|
4410
4045
|
|
|
4411
4046
|
[[package]]
|
|
4412
4047
|
name = "wasm-encoder"
|
|
4413
|
-
version = "0.
|
|
4048
|
+
version = "0.229.0"
|
|
4414
4049
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4415
|
-
checksum = "
|
|
4050
|
+
checksum = "38ba1d491ecacb085a2552025c10a675a6fddcbd03b1fc9b36c536010ce265d2"
|
|
4416
4051
|
dependencies = [
|
|
4417
|
-
"
|
|
4418
|
-
"wasmparser 0.
|
|
4052
|
+
"leb128fmt",
|
|
4053
|
+
"wasmparser 0.229.0",
|
|
4419
4054
|
]
|
|
4420
4055
|
|
|
4421
4056
|
[[package]]
|
|
@@ -4425,69 +4060,68 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
4425
4060
|
checksum = "5309c1090e3e84dad0d382f42064e9933fdaedb87e468cc239f0eabea73ddcb6"
|
|
4426
4061
|
dependencies = [
|
|
4427
4062
|
"ahash",
|
|
4428
|
-
"bitflags 2.9.
|
|
4063
|
+
"bitflags 2.9.1",
|
|
4429
4064
|
"hashbrown 0.14.5",
|
|
4430
|
-
"indexmap 2.
|
|
4065
|
+
"indexmap 2.9.0",
|
|
4431
4066
|
"semver 1.0.26",
|
|
4432
4067
|
"serde",
|
|
4433
4068
|
]
|
|
4434
4069
|
|
|
4435
4070
|
[[package]]
|
|
4436
4071
|
name = "wasmparser"
|
|
4437
|
-
version = "0.
|
|
4072
|
+
version = "0.229.0"
|
|
4438
4073
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4439
|
-
checksum = "
|
|
4074
|
+
checksum = "0cc3b1f053f5d41aa55640a1fa9b6d1b8a9e4418d118ce308d20e24ff3575a8c"
|
|
4440
4075
|
dependencies = [
|
|
4441
|
-
"bitflags 2.9.
|
|
4442
|
-
"hashbrown 0.15.
|
|
4443
|
-
"indexmap 2.
|
|
4076
|
+
"bitflags 2.9.1",
|
|
4077
|
+
"hashbrown 0.15.3",
|
|
4078
|
+
"indexmap 2.9.0",
|
|
4444
4079
|
"semver 1.0.26",
|
|
4445
4080
|
"serde",
|
|
4446
4081
|
]
|
|
4447
4082
|
|
|
4448
4083
|
[[package]]
|
|
4449
4084
|
name = "wasmprinter"
|
|
4450
|
-
version = "0.
|
|
4085
|
+
version = "0.229.0"
|
|
4451
4086
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4452
|
-
checksum = "
|
|
4087
|
+
checksum = "d25dac01892684a99b8fbfaf670eb6b56edea8a096438c75392daeb83156ae2e"
|
|
4453
4088
|
dependencies = [
|
|
4454
4089
|
"anyhow",
|
|
4455
4090
|
"termcolor",
|
|
4456
|
-
"wasmparser 0.
|
|
4091
|
+
"wasmparser 0.229.0",
|
|
4457
4092
|
]
|
|
4458
4093
|
|
|
4459
4094
|
[[package]]
|
|
4460
4095
|
name = "wasmtime"
|
|
4461
|
-
version = "
|
|
4096
|
+
version = "33.0.0"
|
|
4462
4097
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4463
|
-
checksum = "
|
|
4098
|
+
checksum = "15396de4fce22e431aa913a9d17325665e72a39aaa7972c8aeae7507eff6144f"
|
|
4464
4099
|
dependencies = [
|
|
4465
4100
|
"addr2line",
|
|
4466
4101
|
"anyhow",
|
|
4467
|
-
"bitflags 2.9.
|
|
4102
|
+
"bitflags 2.9.1",
|
|
4468
4103
|
"bumpalo",
|
|
4469
4104
|
"cc",
|
|
4470
4105
|
"cfg-if",
|
|
4471
|
-
"hashbrown 0.15.
|
|
4472
|
-
"indexmap 2.
|
|
4106
|
+
"hashbrown 0.15.3",
|
|
4107
|
+
"indexmap 2.9.0",
|
|
4473
4108
|
"libc",
|
|
4474
4109
|
"log",
|
|
4475
4110
|
"mach2",
|
|
4476
4111
|
"memfd",
|
|
4477
4112
|
"object",
|
|
4478
4113
|
"once_cell",
|
|
4479
|
-
"paste",
|
|
4480
4114
|
"postcard",
|
|
4481
4115
|
"psm",
|
|
4482
4116
|
"pulley-interpreter",
|
|
4483
4117
|
"rayon",
|
|
4484
|
-
"rustix 0.
|
|
4118
|
+
"rustix 1.0.7",
|
|
4485
4119
|
"serde",
|
|
4486
4120
|
"serde_derive",
|
|
4487
4121
|
"smallvec",
|
|
4488
4122
|
"sptr",
|
|
4489
|
-
"target-lexicon
|
|
4490
|
-
"wasmparser 0.
|
|
4123
|
+
"target-lexicon",
|
|
4124
|
+
"wasmparser 0.229.0",
|
|
4491
4125
|
"wasmtime-asm-macros",
|
|
4492
4126
|
"wasmtime-cranelift",
|
|
4493
4127
|
"wasmtime-environ",
|
|
@@ -4501,18 +4135,18 @@ dependencies = [
|
|
|
4501
4135
|
|
|
4502
4136
|
[[package]]
|
|
4503
4137
|
name = "wasmtime-asm-macros"
|
|
4504
|
-
version = "
|
|
4138
|
+
version = "33.0.0"
|
|
4505
4139
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4506
|
-
checksum = "
|
|
4140
|
+
checksum = "c8d13b1a25d9b77ce42b4641a797e8c0bde0643b9ad5aaa36ce7e00cf373ffab"
|
|
4507
4141
|
dependencies = [
|
|
4508
4142
|
"cfg-if",
|
|
4509
4143
|
]
|
|
4510
4144
|
|
|
4511
4145
|
[[package]]
|
|
4512
4146
|
name = "wasmtime-cranelift"
|
|
4513
|
-
version = "
|
|
4147
|
+
version = "33.0.0"
|
|
4514
4148
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4515
|
-
checksum = "
|
|
4149
|
+
checksum = "a0c2c2e083dc4c119cca61cc42ca6b3711b75ed9823f77b684ee009c74f939d8"
|
|
4516
4150
|
dependencies = [
|
|
4517
4151
|
"anyhow",
|
|
4518
4152
|
"cfg-if",
|
|
@@ -4522,51 +4156,51 @@ dependencies = [
|
|
|
4522
4156
|
"cranelift-frontend",
|
|
4523
4157
|
"cranelift-native",
|
|
4524
4158
|
"gimli 0.31.1",
|
|
4525
|
-
"itertools 0.
|
|
4159
|
+
"itertools 0.14.0",
|
|
4526
4160
|
"log",
|
|
4527
4161
|
"object",
|
|
4528
4162
|
"pulley-interpreter",
|
|
4529
4163
|
"smallvec",
|
|
4530
|
-
"target-lexicon
|
|
4531
|
-
"thiserror
|
|
4532
|
-
"wasmparser 0.
|
|
4164
|
+
"target-lexicon",
|
|
4165
|
+
"thiserror 2.0.12",
|
|
4166
|
+
"wasmparser 0.229.0",
|
|
4533
4167
|
"wasmtime-environ",
|
|
4534
4168
|
"wasmtime-versioned-export-macros",
|
|
4535
4169
|
]
|
|
4536
4170
|
|
|
4537
4171
|
[[package]]
|
|
4538
4172
|
name = "wasmtime-environ"
|
|
4539
|
-
version = "
|
|
4173
|
+
version = "33.0.0"
|
|
4540
4174
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4541
|
-
checksum = "
|
|
4175
|
+
checksum = "357542664493b1359727f235b615ae74f63bd46aa4d0c587b09e3b060eb0b8ef"
|
|
4542
4176
|
dependencies = [
|
|
4543
4177
|
"anyhow",
|
|
4544
4178
|
"cranelift-bitset",
|
|
4545
4179
|
"cranelift-entity",
|
|
4546
4180
|
"gimli 0.31.1",
|
|
4547
|
-
"indexmap 2.
|
|
4181
|
+
"indexmap 2.9.0",
|
|
4548
4182
|
"log",
|
|
4549
4183
|
"object",
|
|
4550
4184
|
"postcard",
|
|
4551
4185
|
"serde",
|
|
4552
4186
|
"serde_derive",
|
|
4553
4187
|
"smallvec",
|
|
4554
|
-
"target-lexicon
|
|
4555
|
-
"wasm-encoder 0.
|
|
4556
|
-
"wasmparser 0.
|
|
4188
|
+
"target-lexicon",
|
|
4189
|
+
"wasm-encoder 0.229.0",
|
|
4190
|
+
"wasmparser 0.229.0",
|
|
4557
4191
|
"wasmprinter",
|
|
4558
4192
|
]
|
|
4559
4193
|
|
|
4560
4194
|
[[package]]
|
|
4561
4195
|
name = "wasmtime-fiber"
|
|
4562
|
-
version = "
|
|
4196
|
+
version = "33.0.0"
|
|
4563
4197
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4564
|
-
checksum = "
|
|
4198
|
+
checksum = "d83e697b13d6ae9eff31edac86673aabaf8dbf20267f2aa20e831dd01da480a3"
|
|
4565
4199
|
dependencies = [
|
|
4566
4200
|
"anyhow",
|
|
4567
4201
|
"cc",
|
|
4568
4202
|
"cfg-if",
|
|
4569
|
-
"rustix 0.
|
|
4203
|
+
"rustix 1.0.7",
|
|
4570
4204
|
"wasmtime-asm-macros",
|
|
4571
4205
|
"wasmtime-versioned-export-macros",
|
|
4572
4206
|
"windows-sys 0.59.0",
|
|
@@ -4574,9 +4208,9 @@ dependencies = [
|
|
|
4574
4208
|
|
|
4575
4209
|
[[package]]
|
|
4576
4210
|
name = "wasmtime-jit-icache-coherence"
|
|
4577
|
-
version = "
|
|
4211
|
+
version = "33.0.0"
|
|
4578
4212
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4579
|
-
checksum = "
|
|
4213
|
+
checksum = "175e924dbc944c185808466d1e90b5a7feb610f3b9abdfe26f8ee25fd1086d1c"
|
|
4580
4214
|
dependencies = [
|
|
4581
4215
|
"anyhow",
|
|
4582
4216
|
"cfg-if",
|
|
@@ -4586,28 +4220,28 @@ dependencies = [
|
|
|
4586
4220
|
|
|
4587
4221
|
[[package]]
|
|
4588
4222
|
name = "wasmtime-math"
|
|
4589
|
-
version = "
|
|
4223
|
+
version = "33.0.0"
|
|
4590
4224
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4591
|
-
checksum = "
|
|
4225
|
+
checksum = "0d9448adcd9c5980c0eac1630794bd1be3cf573c28d0630f7d3184405b36bcfe"
|
|
4592
4226
|
dependencies = [
|
|
4593
4227
|
"libm",
|
|
4594
4228
|
]
|
|
4595
4229
|
|
|
4596
4230
|
[[package]]
|
|
4597
4231
|
name = "wasmtime-slab"
|
|
4598
|
-
version = "
|
|
4232
|
+
version = "33.0.0"
|
|
4599
4233
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4600
|
-
checksum = "
|
|
4234
|
+
checksum = "b50f7c227d6a925d9dfd0fbfdbf06877cb2fe387bb3248049706b19b5f86e560"
|
|
4601
4235
|
|
|
4602
4236
|
[[package]]
|
|
4603
4237
|
name = "wasmtime-versioned-export-macros"
|
|
4604
|
-
version = "
|
|
4238
|
+
version = "33.0.0"
|
|
4605
4239
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4606
|
-
checksum = "
|
|
4240
|
+
checksum = "55b39ffeda28be925babb2d45067d8ba2c67d2227328c5364d23b4152eba9950"
|
|
4607
4241
|
dependencies = [
|
|
4608
4242
|
"proc-macro2",
|
|
4609
4243
|
"quote",
|
|
4610
|
-
"syn 2.0.
|
|
4244
|
+
"syn 2.0.101",
|
|
4611
4245
|
]
|
|
4612
4246
|
|
|
4613
4247
|
[[package]]
|
|
@@ -4733,11 +4367,37 @@ checksum = "712e227841d057c1ee1cd2fb22fa7e5a5461ae8e48fa2ca79ec42cfc1931183f"
|
|
|
4733
4367
|
|
|
4734
4368
|
[[package]]
|
|
4735
4369
|
name = "windows-core"
|
|
4736
|
-
version = "0.
|
|
4370
|
+
version = "0.61.2"
|
|
4737
4371
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4738
|
-
checksum = "
|
|
4372
|
+
checksum = "c0fdd3ddb90610c7638aa2b3a3ab2904fb9e5cdbecc643ddb3647212781c4ae3"
|
|
4739
4373
|
dependencies = [
|
|
4740
|
-
"windows-
|
|
4374
|
+
"windows-implement",
|
|
4375
|
+
"windows-interface",
|
|
4376
|
+
"windows-link",
|
|
4377
|
+
"windows-result",
|
|
4378
|
+
"windows-strings",
|
|
4379
|
+
]
|
|
4380
|
+
|
|
4381
|
+
[[package]]
|
|
4382
|
+
name = "windows-implement"
|
|
4383
|
+
version = "0.60.0"
|
|
4384
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4385
|
+
checksum = "a47fddd13af08290e67f4acabf4b459f647552718f683a7b415d290ac744a836"
|
|
4386
|
+
dependencies = [
|
|
4387
|
+
"proc-macro2",
|
|
4388
|
+
"quote",
|
|
4389
|
+
"syn 2.0.101",
|
|
4390
|
+
]
|
|
4391
|
+
|
|
4392
|
+
[[package]]
|
|
4393
|
+
name = "windows-interface"
|
|
4394
|
+
version = "0.59.1"
|
|
4395
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4396
|
+
checksum = "bd9211b69f8dcdfa817bfd14bf1c97c9188afa36f4750130fcdf3f400eca9fa8"
|
|
4397
|
+
dependencies = [
|
|
4398
|
+
"proc-macro2",
|
|
4399
|
+
"quote",
|
|
4400
|
+
"syn 2.0.101",
|
|
4741
4401
|
]
|
|
4742
4402
|
|
|
4743
4403
|
[[package]]
|
|
@@ -4746,6 +4406,24 @@ version = "0.1.1"
|
|
|
4746
4406
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4747
4407
|
checksum = "76840935b766e1b0a05c0066835fb9ec80071d4c09a16f6bd5f7e655e3c14c38"
|
|
4748
4408
|
|
|
4409
|
+
[[package]]
|
|
4410
|
+
name = "windows-result"
|
|
4411
|
+
version = "0.3.4"
|
|
4412
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4413
|
+
checksum = "56f42bd332cc6c8eac5af113fc0c1fd6a8fd2aa08a0119358686e5160d0586c6"
|
|
4414
|
+
dependencies = [
|
|
4415
|
+
"windows-link",
|
|
4416
|
+
]
|
|
4417
|
+
|
|
4418
|
+
[[package]]
|
|
4419
|
+
name = "windows-strings"
|
|
4420
|
+
version = "0.4.2"
|
|
4421
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4422
|
+
checksum = "56e6c93f3a0c3b36176cb1327a4958a0353d5d166c2a35cb268ace15e91d3b57"
|
|
4423
|
+
dependencies = [
|
|
4424
|
+
"windows-link",
|
|
4425
|
+
]
|
|
4426
|
+
|
|
4749
4427
|
[[package]]
|
|
4750
4428
|
name = "windows-sys"
|
|
4751
4429
|
version = "0.42.0"
|
|
@@ -4953,9 +4631,9 @@ checksum = "589f6da84c646204747d1270a2a5661ea66ed1cced2631d546fdfb155959f9ec"
|
|
|
4953
4631
|
|
|
4954
4632
|
[[package]]
|
|
4955
4633
|
name = "winnow"
|
|
4956
|
-
version = "0.7.
|
|
4634
|
+
version = "0.7.10"
|
|
4957
4635
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4958
|
-
checksum = "
|
|
4636
|
+
checksum = "c06928c8748d81b05c9be96aad92e1b6ff01833332f281e8cfca3be4b35fc9ec"
|
|
4959
4637
|
dependencies = [
|
|
4960
4638
|
"memchr",
|
|
4961
4639
|
]
|
|
@@ -4966,7 +4644,7 @@ version = "0.39.0"
|
|
|
4966
4644
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4967
4645
|
checksum = "6f42320e61fe2cfd34354ecb597f86f413484a798ba44a8ca1165c58d42da6c1"
|
|
4968
4646
|
dependencies = [
|
|
4969
|
-
"bitflags 2.9.
|
|
4647
|
+
"bitflags 2.9.1",
|
|
4970
4648
|
]
|
|
4971
4649
|
|
|
4972
4650
|
[[package]]
|
|
@@ -4996,15 +4674,6 @@ dependencies = [
|
|
|
4996
4674
|
"time",
|
|
4997
4675
|
]
|
|
4998
4676
|
|
|
4999
|
-
[[package]]
|
|
5000
|
-
name = "xz2"
|
|
5001
|
-
version = "0.1.7"
|
|
5002
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
5003
|
-
checksum = "388c44dc09d76f1536602ead6d325eb532f5c122f17782bd57fb47baeeb767e2"
|
|
5004
|
-
dependencies = [
|
|
5005
|
-
"lzma-sys",
|
|
5006
|
-
]
|
|
5007
|
-
|
|
5008
4677
|
[[package]]
|
|
5009
4678
|
name = "yansi"
|
|
5010
4679
|
version = "1.0.1"
|
|
@@ -5013,7 +4682,7 @@ checksum = "cfe53a6657fd280eaa890a3bc59152892ffa3e30101319d168b781ed6529b049"
|
|
|
5013
4682
|
|
|
5014
4683
|
[[package]]
|
|
5015
4684
|
name = "yara-x"
|
|
5016
|
-
version = "0.
|
|
4685
|
+
version = "1.0.0"
|
|
5017
4686
|
dependencies = [
|
|
5018
4687
|
"aho-corasick",
|
|
5019
4688
|
"annotate-snippets",
|
|
@@ -5022,7 +4691,7 @@ dependencies = [
|
|
|
5022
4691
|
"ascii_tree",
|
|
5023
4692
|
"base64 0.22.1",
|
|
5024
4693
|
"bincode",
|
|
5025
|
-
"bitflags 2.9.
|
|
4694
|
+
"bitflags 2.9.1",
|
|
5026
4695
|
"bitvec",
|
|
5027
4696
|
"bstr",
|
|
5028
4697
|
"const-oid",
|
|
@@ -5034,11 +4703,10 @@ dependencies = [
|
|
|
5034
4703
|
"globwalk",
|
|
5035
4704
|
"goldenfile",
|
|
5036
4705
|
"ihex",
|
|
5037
|
-
"indexmap 2.
|
|
4706
|
+
"indexmap 2.9.0",
|
|
5038
4707
|
"intaglio",
|
|
5039
4708
|
"ipnet",
|
|
5040
4709
|
"itertools 0.14.0",
|
|
5041
|
-
"lazy_static",
|
|
5042
4710
|
"lingua",
|
|
5043
4711
|
"linkme",
|
|
5044
4712
|
"log",
|
|
@@ -5057,6 +4725,7 @@ dependencies = [
|
|
|
5057
4725
|
"protobuf",
|
|
5058
4726
|
"protobuf-codegen",
|
|
5059
4727
|
"protobuf-parse",
|
|
4728
|
+
"psl",
|
|
5060
4729
|
"quanta",
|
|
5061
4730
|
"rayon",
|
|
5062
4731
|
"regex",
|
|
@@ -5068,12 +4737,11 @@ dependencies = [
|
|
|
5068
4737
|
"serde",
|
|
5069
4738
|
"serde_json",
|
|
5070
4739
|
"sha1",
|
|
5071
|
-
"sha2 0.10.
|
|
4740
|
+
"sha2 0.10.9",
|
|
5072
4741
|
"smallvec",
|
|
5073
4742
|
"strum_macros",
|
|
5074
4743
|
"thiserror 2.0.12",
|
|
5075
4744
|
"tlsh-fixed",
|
|
5076
|
-
"twistrs",
|
|
5077
4745
|
"uuid",
|
|
5078
4746
|
"walrus",
|
|
5079
4747
|
"wasmtime",
|
|
@@ -5088,7 +4756,7 @@ dependencies = [
|
|
|
5088
4756
|
|
|
5089
4757
|
[[package]]
|
|
5090
4758
|
name = "yara-x-capi"
|
|
5091
|
-
version = "0.
|
|
4759
|
+
version = "1.0.0"
|
|
5092
4760
|
dependencies = [
|
|
5093
4761
|
"cbindgen",
|
|
5094
4762
|
"serde_json",
|
|
@@ -5097,18 +4765,16 @@ dependencies = [
|
|
|
5097
4765
|
|
|
5098
4766
|
[[package]]
|
|
5099
4767
|
name = "yara-x-cli"
|
|
5100
|
-
version = "0.
|
|
4768
|
+
version = "1.0.0"
|
|
5101
4769
|
dependencies = [
|
|
5102
4770
|
"anyhow",
|
|
5103
|
-
"ascii_tree",
|
|
5104
4771
|
"assert_cmd",
|
|
5105
4772
|
"assert_fs",
|
|
5106
4773
|
"chardetng",
|
|
5107
4774
|
"clap",
|
|
5108
4775
|
"clap_complete",
|
|
5109
|
-
"colored_json",
|
|
5110
4776
|
"crossbeam",
|
|
5111
|
-
"crossterm 0.
|
|
4777
|
+
"crossterm 0.29.0",
|
|
5112
4778
|
"enable-ansi-support",
|
|
5113
4779
|
"encoding_rs",
|
|
5114
4780
|
"env_logger",
|
|
@@ -5119,7 +4785,6 @@ dependencies = [
|
|
|
5119
4785
|
"log",
|
|
5120
4786
|
"predicates",
|
|
5121
4787
|
"protobuf",
|
|
5122
|
-
"protobuf-json-mapping",
|
|
5123
4788
|
"serde",
|
|
5124
4789
|
"serde_json",
|
|
5125
4790
|
"strum",
|
|
@@ -5130,18 +4795,18 @@ dependencies = [
|
|
|
5130
4795
|
"yara-x",
|
|
5131
4796
|
"yara-x-fmt",
|
|
5132
4797
|
"yara-x-parser",
|
|
4798
|
+
"yara-x-proto-json",
|
|
5133
4799
|
"yara-x-proto-yaml",
|
|
5134
4800
|
]
|
|
5135
4801
|
|
|
5136
4802
|
[[package]]
|
|
5137
4803
|
name = "yara-x-fmt"
|
|
5138
|
-
version = "0.
|
|
4804
|
+
version = "1.0.0"
|
|
5139
4805
|
dependencies = [
|
|
5140
|
-
"bitflags 2.9.
|
|
4806
|
+
"bitflags 2.9.1",
|
|
5141
4807
|
"bstr",
|
|
5142
4808
|
"globwalk",
|
|
5143
4809
|
"goldenfile",
|
|
5144
|
-
"lazy_static",
|
|
5145
4810
|
"pretty_assertions",
|
|
5146
4811
|
"rayon",
|
|
5147
4812
|
"thiserror 2.0.12",
|
|
@@ -5150,26 +4815,26 @@ dependencies = [
|
|
|
5150
4815
|
|
|
5151
4816
|
[[package]]
|
|
5152
4817
|
name = "yara-x-macros"
|
|
5153
|
-
version = "0.
|
|
4818
|
+
version = "1.0.0"
|
|
5154
4819
|
dependencies = [
|
|
5155
4820
|
"darling",
|
|
5156
4821
|
"proc-macro2",
|
|
5157
4822
|
"quote",
|
|
5158
|
-
"syn 2.0.
|
|
4823
|
+
"syn 2.0.101",
|
|
5159
4824
|
]
|
|
5160
4825
|
|
|
5161
4826
|
[[package]]
|
|
5162
4827
|
name = "yara-x-parser"
|
|
5163
|
-
version = "0.
|
|
4828
|
+
version = "1.0.0"
|
|
5164
4829
|
dependencies = [
|
|
5165
4830
|
"anyhow",
|
|
5166
4831
|
"ascii_tree",
|
|
5167
|
-
"bitflags 2.9.
|
|
4832
|
+
"bitflags 2.9.1",
|
|
5168
4833
|
"bstr",
|
|
5169
4834
|
"env_logger",
|
|
5170
4835
|
"globwalk",
|
|
5171
4836
|
"goldenfile",
|
|
5172
|
-
"indexmap 2.
|
|
4837
|
+
"indexmap 2.9.0",
|
|
5173
4838
|
"itertools 0.14.0",
|
|
5174
4839
|
"log",
|
|
5175
4840
|
"logos",
|
|
@@ -5184,16 +4849,30 @@ dependencies = [
|
|
|
5184
4849
|
|
|
5185
4850
|
[[package]]
|
|
5186
4851
|
name = "yara-x-proto"
|
|
5187
|
-
version = "0.
|
|
4852
|
+
version = "1.0.0"
|
|
5188
4853
|
dependencies = [
|
|
5189
4854
|
"protobuf",
|
|
5190
4855
|
"protobuf-codegen",
|
|
5191
4856
|
"protobuf-parse",
|
|
5192
4857
|
]
|
|
5193
4858
|
|
|
4859
|
+
[[package]]
|
|
4860
|
+
name = "yara-x-proto-json"
|
|
4861
|
+
version = "1.0.0"
|
|
4862
|
+
dependencies = [
|
|
4863
|
+
"base64 0.22.1",
|
|
4864
|
+
"globwalk",
|
|
4865
|
+
"goldenfile",
|
|
4866
|
+
"itertools 0.14.0",
|
|
4867
|
+
"protobuf",
|
|
4868
|
+
"protobuf-codegen",
|
|
4869
|
+
"yansi",
|
|
4870
|
+
"yara-x-proto",
|
|
4871
|
+
]
|
|
4872
|
+
|
|
5194
4873
|
[[package]]
|
|
5195
4874
|
name = "yara-x-proto-yaml"
|
|
5196
|
-
version = "0.
|
|
4875
|
+
version = "1.0.0"
|
|
5197
4876
|
dependencies = [
|
|
5198
4877
|
"chrono",
|
|
5199
4878
|
"globwalk",
|
|
@@ -5201,62 +4880,45 @@ dependencies = [
|
|
|
5201
4880
|
"itertools 0.14.0",
|
|
5202
4881
|
"protobuf",
|
|
5203
4882
|
"protobuf-codegen",
|
|
5204
|
-
"protobuf-parse",
|
|
5205
|
-
"protobuf-support",
|
|
5206
4883
|
"yansi",
|
|
4884
|
+
"yara-x-proto",
|
|
5207
4885
|
]
|
|
5208
4886
|
|
|
5209
4887
|
[[package]]
|
|
5210
4888
|
name = "yara-x-py"
|
|
5211
|
-
version = "0.
|
|
4889
|
+
version = "1.0.0"
|
|
5212
4890
|
dependencies = [
|
|
5213
|
-
"
|
|
4891
|
+
"base64 0.22.1",
|
|
4892
|
+
"protobuf",
|
|
5214
4893
|
"pyo3",
|
|
5215
4894
|
"pyo3-build-config",
|
|
5216
4895
|
"pyo3-file",
|
|
5217
4896
|
"serde_json",
|
|
4897
|
+
"strum",
|
|
4898
|
+
"strum_macros",
|
|
5218
4899
|
"yara-x",
|
|
5219
4900
|
"yara-x-fmt",
|
|
4901
|
+
"yara-x-proto-json",
|
|
5220
4902
|
]
|
|
5221
4903
|
|
|
5222
4904
|
[[package]]
|
|
5223
4905
|
name = "zerocopy"
|
|
5224
|
-
version = "0.
|
|
5225
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
5226
|
-
checksum = "1b9b4fd18abc82b8136838da5d50bae7bdea537c574d8dc1a34ed098d6c166f0"
|
|
5227
|
-
dependencies = [
|
|
5228
|
-
"zerocopy-derive 0.7.35",
|
|
5229
|
-
]
|
|
5230
|
-
|
|
5231
|
-
[[package]]
|
|
5232
|
-
name = "zerocopy"
|
|
5233
|
-
version = "0.8.24"
|
|
5234
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
5235
|
-
checksum = "2586fea28e186957ef732a5f8b3be2da217d65c5969d4b1e17f973ebbe876879"
|
|
5236
|
-
dependencies = [
|
|
5237
|
-
"zerocopy-derive 0.8.24",
|
|
5238
|
-
]
|
|
5239
|
-
|
|
5240
|
-
[[package]]
|
|
5241
|
-
name = "zerocopy-derive"
|
|
5242
|
-
version = "0.7.35"
|
|
4906
|
+
version = "0.8.25"
|
|
5243
4907
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
5244
|
-
checksum = "
|
|
4908
|
+
checksum = "a1702d9583232ddb9174e01bb7c15a2ab8fb1bc6f227aa1233858c351a3ba0cb"
|
|
5245
4909
|
dependencies = [
|
|
5246
|
-
"
|
|
5247
|
-
"quote",
|
|
5248
|
-
"syn 2.0.100",
|
|
4910
|
+
"zerocopy-derive",
|
|
5249
4911
|
]
|
|
5250
4912
|
|
|
5251
4913
|
[[package]]
|
|
5252
4914
|
name = "zerocopy-derive"
|
|
5253
|
-
version = "0.8.
|
|
4915
|
+
version = "0.8.25"
|
|
5254
4916
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
5255
|
-
checksum = "
|
|
4917
|
+
checksum = "28a6e20d751156648aa063f3800b706ee209a32c0b4d9f24be3d980b01be55ef"
|
|
5256
4918
|
dependencies = [
|
|
5257
4919
|
"proc-macro2",
|
|
5258
4920
|
"quote",
|
|
5259
|
-
"syn 2.0.
|
|
4921
|
+
"syn 2.0.101",
|
|
5260
4922
|
]
|
|
5261
4923
|
|
|
5262
4924
|
[[package]]
|
|
@@ -5276,48 +4938,50 @@ checksum = "ce36e65b0d2999d2aafac989fb249189a141aee1f53c612c1f37d72631959f69"
|
|
|
5276
4938
|
dependencies = [
|
|
5277
4939
|
"proc-macro2",
|
|
5278
4940
|
"quote",
|
|
5279
|
-
"syn 2.0.
|
|
4941
|
+
"syn 2.0.101",
|
|
5280
4942
|
]
|
|
5281
4943
|
|
|
5282
4944
|
[[package]]
|
|
5283
4945
|
name = "zip"
|
|
5284
|
-
version = "
|
|
4946
|
+
version = "4.0.0"
|
|
5285
4947
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
5286
|
-
checksum = "
|
|
4948
|
+
checksum = "153a6fff49d264c4babdcfa6b4d534747f520e56e8f0f384f3b808c4b64cc1fd"
|
|
5287
4949
|
dependencies = [
|
|
5288
4950
|
"aes",
|
|
5289
4951
|
"arbitrary",
|
|
5290
4952
|
"bzip2",
|
|
5291
4953
|
"constant_time_eq",
|
|
5292
4954
|
"crc32fast",
|
|
5293
|
-
"crossbeam-utils",
|
|
5294
4955
|
"deflate64",
|
|
5295
4956
|
"flate2",
|
|
5296
|
-
"getrandom 0.3.
|
|
4957
|
+
"getrandom 0.3.3",
|
|
5297
4958
|
"hmac",
|
|
5298
|
-
"indexmap 2.
|
|
5299
|
-
"
|
|
4959
|
+
"indexmap 2.9.0",
|
|
4960
|
+
"liblzma",
|
|
5300
4961
|
"memchr",
|
|
5301
4962
|
"pbkdf2",
|
|
5302
4963
|
"sha1",
|
|
5303
4964
|
"time",
|
|
5304
|
-
"xz2",
|
|
5305
4965
|
"zeroize",
|
|
5306
4966
|
"zopfli",
|
|
5307
4967
|
"zstd",
|
|
5308
4968
|
]
|
|
5309
4969
|
|
|
4970
|
+
[[package]]
|
|
4971
|
+
name = "zlib-rs"
|
|
4972
|
+
version = "0.5.0"
|
|
4973
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4974
|
+
checksum = "868b928d7949e09af2f6086dfc1e01936064cc7a819253bce650d4e2a2d63ba8"
|
|
4975
|
+
|
|
5310
4976
|
[[package]]
|
|
5311
4977
|
name = "zopfli"
|
|
5312
|
-
version = "0.8.
|
|
4978
|
+
version = "0.8.2"
|
|
5313
4979
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
5314
|
-
checksum = "
|
|
4980
|
+
checksum = "edfc5ee405f504cd4984ecc6f14d02d55cfda60fa4b689434ef4102aae150cd7"
|
|
5315
4981
|
dependencies = [
|
|
5316
4982
|
"bumpalo",
|
|
5317
4983
|
"crc32fast",
|
|
5318
|
-
"lockfree-object-pool",
|
|
5319
4984
|
"log",
|
|
5320
|
-
"once_cell",
|
|
5321
4985
|
"simd-adler32",
|
|
5322
4986
|
]
|
|
5323
4987
|
|