yara-x 0.13.0__tar.gz → 0.15.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.13.0 → yara_x-0.15.0}/Cargo.lock +734 -652
- {yara_x-0.13.0 → yara_x-0.15.0}/Cargo.toml +47 -48
- {yara_x-0.13.0 → yara_x-0.15.0}/PKG-INFO +1 -1
- {yara_x-0.13.0 → yara_x-0.15.0}/fmt/src/lib.rs +7 -4
- {yara_x-0.13.0 → yara_x-0.15.0}/fmt/src/testdata/default_tests/test5.formatted +1 -0
- yara_x-0.15.0/fmt/src/testdata/default_tests/test5.unformatted +1 -0
- yara_x-0.15.0/fmt/src/testdata/default_tests/test6.formatted +5 -0
- yara_x-0.15.0/fmt/src/testdata/default_tests/test6.unformatted +2 -0
- {yara_x-0.13.0 → yara_x-0.15.0}/fmt/src/tokens/mod.rs +1 -0
- {yara_x-0.13.0 → yara_x-0.15.0}/lib/Cargo.toml +15 -1
- {yara_x-0.13.0 → yara_x-0.15.0}/lib/build.rs +21 -12
- {yara_x-0.13.0 → yara_x-0.15.0}/lib/src/compiler/atoms/quality.rs +2 -2
- {yara_x-0.13.0 → yara_x-0.15.0}/lib/src/compiler/context.rs +4 -4
- {yara_x-0.13.0 → yara_x-0.15.0}/lib/src/compiler/errors.rs +161 -11
- {yara_x-0.13.0 → yara_x-0.15.0}/lib/src/compiler/ir/ast2ir.rs +107 -74
- {yara_x-0.13.0 → yara_x-0.15.0}/lib/src/compiler/ir/hex2hir.rs +4 -4
- {yara_x-0.13.0 → yara_x-0.15.0}/lib/src/compiler/ir/tests/mod.rs +13 -3
- {yara_x-0.13.0 → yara_x-0.15.0}/lib/src/compiler/ir/tests/testdata/1.cse.ir +29 -29
- {yara_x-0.13.0 → yara_x-0.15.0}/lib/src/compiler/ir/tests/testdata/1.hoisting.ir +29 -29
- {yara_x-0.13.0 → yara_x-0.15.0}/lib/src/compiler/ir/tests/testdata/1.ir +29 -29
- {yara_x-0.13.0 → yara_x-0.15.0}/lib/src/compiler/ir/tests/testdata/1.no-folding.ir +36 -36
- {yara_x-0.13.0 → yara_x-0.15.0}/lib/src/compiler/ir/tests/testdata/2.cse.ir +21 -21
- {yara_x-0.13.0 → yara_x-0.15.0}/lib/src/compiler/ir/tests/testdata/2.hoisting.ir +29 -29
- {yara_x-0.13.0 → yara_x-0.15.0}/lib/src/compiler/ir/tests/testdata/2.ir +23 -23
- {yara_x-0.13.0 → yara_x-0.15.0}/lib/src/compiler/ir/tests/testdata/2.no-folding.ir +23 -23
- {yara_x-0.13.0 → yara_x-0.15.0}/lib/src/compiler/ir/tests/testdata/3.cse.ir +5 -5
- {yara_x-0.13.0 → yara_x-0.15.0}/lib/src/compiler/ir/tests/testdata/3.hoisting.ir +5 -5
- {yara_x-0.13.0 → yara_x-0.15.0}/lib/src/compiler/ir/tests/testdata/3.ir +5 -5
- {yara_x-0.13.0 → yara_x-0.15.0}/lib/src/compiler/ir/tests/testdata/3.no-folding.ir +5 -5
- {yara_x-0.13.0 → yara_x-0.15.0}/lib/src/compiler/ir/tests/testdata/4.cse.ir +18 -18
- {yara_x-0.13.0 → yara_x-0.15.0}/lib/src/compiler/ir/tests/testdata/4.hoisting.ir +29 -29
- {yara_x-0.13.0 → yara_x-0.15.0}/lib/src/compiler/ir/tests/testdata/4.ir +18 -18
- {yara_x-0.13.0 → yara_x-0.15.0}/lib/src/compiler/ir/tests/testdata/4.no-folding.ir +18 -18
- {yara_x-0.13.0 → yara_x-0.15.0}/lib/src/compiler/ir/tests/testdata/5.cse.ir +48 -48
- {yara_x-0.13.0 → yara_x-0.15.0}/lib/src/compiler/ir/tests/testdata/5.hoisting.ir +58 -58
- {yara_x-0.13.0 → yara_x-0.15.0}/lib/src/compiler/ir/tests/testdata/5.ir +58 -58
- {yara_x-0.13.0 → yara_x-0.15.0}/lib/src/compiler/ir/tests/testdata/5.no-folding.ir +58 -58
- yara_x-0.15.0/lib/src/compiler/ir/tests/testdata/6.cse.ir +23 -0
- yara_x-0.15.0/lib/src/compiler/ir/tests/testdata/6.hoisting.ir +22 -0
- yara_x-0.15.0/lib/src/compiler/ir/tests/testdata/6.ir +22 -0
- yara_x-0.15.0/lib/src/compiler/ir/tests/testdata/6.no-folding.ir +22 -0
- {yara_x-0.13.0 → yara_x-0.15.0}/lib/src/compiler/ir/tests/testdata/7.cse.ir +18 -18
- {yara_x-0.13.0 → yara_x-0.15.0}/lib/src/compiler/ir/tests/testdata/7.hoisting.ir +24 -24
- {yara_x-0.13.0 → yara_x-0.15.0}/lib/src/compiler/ir/tests/testdata/7.ir +21 -21
- {yara_x-0.13.0 → yara_x-0.15.0}/lib/src/compiler/ir/tests/testdata/7.no-folding.ir +21 -21
- {yara_x-0.13.0 → yara_x-0.15.0}/lib/src/compiler/ir/tests/testdata/8.cse.ir +9 -9
- {yara_x-0.13.0 → yara_x-0.15.0}/lib/src/compiler/ir/tests/testdata/8.hoisting.ir +10 -10
- {yara_x-0.13.0 → yara_x-0.15.0}/lib/src/compiler/ir/tests/testdata/8.ir +9 -9
- {yara_x-0.13.0 → yara_x-0.15.0}/lib/src/compiler/ir/tests/testdata/8.no-folding.ir +9 -9
- yara_x-0.15.0/lib/src/compiler/ir/tests/testdata/9.cse.ir +23 -0
- yara_x-0.15.0/lib/src/compiler/ir/tests/testdata/9.hoisting.ir +23 -0
- yara_x-0.15.0/lib/src/compiler/ir/tests/testdata/9.ir +23 -0
- yara_x-0.15.0/lib/src/compiler/ir/tests/testdata/9.no-folding.ir +23 -0
- {yara_x-0.13.0 → yara_x-0.15.0}/lib/src/compiler/linters.rs +159 -6
- {yara_x-0.13.0 → yara_x-0.15.0}/lib/src/compiler/mod.rs +206 -60
- {yara_x-0.13.0 → yara_x-0.15.0}/lib/src/compiler/report.rs +32 -40
- {yara_x-0.13.0 → yara_x-0.15.0}/lib/src/compiler/tests/mod.rs +160 -1
- yara_x-0.15.0/lib/src/compiler/tests/testdata/errors/141.in +10 -0
- yara_x-0.15.0/lib/src/compiler/tests/testdata/errors/141.out +6 -0
- yara_x-0.15.0/lib/src/compiler/tests/testdata/errors/142.in +6 -0
- yara_x-0.15.0/lib/src/compiler/tests/testdata/errors/142.out +6 -0
- yara_x-0.15.0/lib/src/compiler/tests/testdata/errors/143.in +6 -0
- yara_x-0.15.0/lib/src/compiler/tests/testdata/errors/143.out +6 -0
- yara_x-0.15.0/lib/src/compiler/tests/testdata/includes/included_error.yar +1 -0
- yara_x-0.15.0/lib/src/compiler/tests/testdata/includes/included_ok.yar +4 -0
- {yara_x-0.13.0 → yara_x-0.15.0}/lib/src/compiler/tests/testdata/warnings/no_warnings.in +7 -0
- {yara_x-0.13.0 → yara_x-0.15.0}/lib/src/compiler/warnings.rs +65 -1
- {yara_x-0.13.0 → yara_x-0.15.0}/lib/src/modules/add_modules.rs +2 -0
- {yara_x-0.13.0 → yara_x-0.15.0}/lib/src/modules/dotnet/parser.rs +294 -267
- {yara_x-0.13.0 → yara_x-0.15.0}/lib/src/modules/elf/mod.rs +43 -6
- {yara_x-0.13.0 → yara_x-0.15.0}/lib/src/modules/elf/parser.rs +23 -17
- {yara_x-0.13.0 → yara_x-0.15.0}/lib/src/modules/lnk/mod.rs +5 -8
- {yara_x-0.13.0 → yara_x-0.15.0}/lib/src/modules/lnk/parser.rs +44 -31
- {yara_x-0.13.0 → yara_x-0.15.0}/lib/src/modules/macho/mod.rs +102 -0
- {yara_x-0.13.0 → yara_x-0.15.0}/lib/src/modules/macho/parser.rs +510 -368
- {yara_x-0.13.0 → yara_x-0.15.0}/lib/src/modules/magic/mod.rs +2 -8
- {yara_x-0.13.0 → yara_x-0.15.0}/lib/src/modules/mod.rs +2 -1
- {yara_x-0.13.0 → yara_x-0.15.0}/lib/src/modules/modules.rs +3 -1
- {yara_x-0.13.0 → yara_x-0.15.0}/lib/src/modules/pe/authenticode.rs +47 -15
- {yara_x-0.13.0 → yara_x-0.15.0}/lib/src/modules/pe/mod.rs +38 -0
- {yara_x-0.13.0 → yara_x-0.15.0}/lib/src/modules/pe/parser.rs +119 -94
- {yara_x-0.13.0 → yara_x-0.15.0}/lib/src/modules/protos/test_proto2.proto +2 -1
- yara_x-0.15.0/lib/src/modules/protos/vt/analysis.proto +17 -0
- yara_x-0.15.0/lib/src/modules/protos/vt/filetypes.proto +192 -0
- yara_x-0.15.0/lib/src/modules/protos/vt/gti_score.proto +32 -0
- yara_x-0.15.0/lib/src/modules/protos/vt/hunting_gti_score.proto +26 -0
- yara_x-0.15.0/lib/src/modules/protos/vt/sandbox.proto +358 -0
- yara_x-0.15.0/lib/src/modules/protos/vt/sigma.proto +59 -0
- yara_x-0.15.0/lib/src/modules/protos/vt/submitter.proto +13 -0
- yara_x-0.15.0/lib/src/modules/protos/vt/titan.proto +118 -0
- yara_x-0.15.0/lib/src/modules/protos/vt/tools/net_analysis.proto +51 -0
- yara_x-0.15.0/lib/src/modules/protos/vt/vtnet.proto +249 -0
- {yara_x-0.13.0 → yara_x-0.15.0}/lib/src/modules/test_proto2/mod.rs +17 -14
- {yara_x-0.13.0 → yara_x-0.15.0}/lib/src/modules/test_proto2/tests/mod.rs +8 -0
- yara_x-0.15.0/lib/src/modules/vt/bitsquatting.rs +41 -0
- yara_x-0.15.0/lib/src/modules/vt/homoglyphs.rs +119 -0
- yara_x-0.15.0/lib/src/modules/vt/interleaved.rs +55 -0
- yara_x-0.15.0/lib/src/modules/vt/mod.rs +527 -0
- yara_x-0.15.0/lib/src/modules/vt/typos.rs +390 -0
- {yara_x-0.13.0 → yara_x-0.15.0}/lib/src/re/fast/compiler.rs +2 -2
- {yara_x-0.13.0 → yara_x-0.15.0}/lib/src/re/hir.rs +27 -8
- {yara_x-0.13.0 → yara_x-0.15.0}/lib/src/re/mod.rs +1 -1
- {yara_x-0.13.0 → yara_x-0.15.0}/lib/src/re/thompson/compiler.rs +11 -1
- {yara_x-0.13.0 → yara_x-0.15.0}/lib/src/re/thompson/instr.rs +23 -1
- {yara_x-0.13.0 → yara_x-0.15.0}/lib/src/re/thompson/pikevm.rs +118 -17
- {yara_x-0.13.0 → yara_x-0.15.0}/lib/src/re/thompson/tests.rs +95 -0
- {yara_x-0.13.0 → yara_x-0.15.0}/lib/src/scanner/context.rs +44 -35
- {yara_x-0.13.0 → yara_x-0.15.0}/lib/src/scanner/mod.rs +12 -7
- {yara_x-0.13.0 → yara_x-0.15.0}/lib/src/symbols/mod.rs +5 -4
- {yara_x-0.13.0 → yara_x-0.15.0}/lib/src/tests/mod.rs +52 -6
- {yara_x-0.13.0 → yara_x-0.15.0}/lib/src/types/structure.rs +14 -1
- {yara_x-0.13.0 → yara_x-0.15.0}/lib/src/wasm/string.rs +2 -2
- {yara_x-0.13.0 → yara_x-0.15.0}/parser/src/ast/cst2ast.rs +38 -16
- {yara_x-0.13.0 → yara_x-0.15.0}/parser/src/ast/mod.rs +47 -11
- {yara_x-0.13.0 → yara_x-0.15.0}/parser/src/cst/syntax_kind.rs +4 -0
- {yara_x-0.13.0 → yara_x-0.15.0}/parser/src/parser/mod.rs +16 -2
- {yara_x-0.13.0 → yara_x-0.15.0}/parser/src/parser/tests/mod.rs +4 -4
- yara_x-0.15.0/parser/src/parser/tests/testdata/import.ast +4 -0
- yara_x-0.15.0/parser/src/parser/tests/testdata/import.cst +29 -0
- yara_x-0.15.0/parser/src/parser/tests/testdata/import.in +5 -0
- yara_x-0.15.0/parser/src/parser/tests/testdata/include.ast +4 -0
- yara_x-0.15.0/parser/src/parser/tests/testdata/include.cst +29 -0
- yara_x-0.15.0/parser/src/parser/tests/testdata/include.in +5 -0
- {yara_x-0.13.0 → yara_x-0.15.0}/parser/src/tokenizer/mod.rs +3 -0
- {yara_x-0.13.0 → yara_x-0.15.0}/parser/src/tokenizer/tokens.rs +4 -0
- {yara_x-0.13.0 → yara_x-0.15.0}/py/Cargo.toml +6 -4
- {yara_x-0.13.0 → yara_x-0.15.0}/py/src/lib.rs +112 -7
- {yara_x-0.13.0 → yara_x-0.15.0}/py/tests/test_api.py +23 -3
- {yara_x-0.13.0 → yara_x-0.15.0}/py/yara_x.pyi +10 -1
- yara_x-0.13.0/fmt/src/testdata/default_tests/test5.unformatted +0 -1
- yara_x-0.13.0/fmt/src/testdata/default_tests/test6.formatted +0 -12
- yara_x-0.13.0/fmt/src/testdata/default_tests/test6.unformatted +0 -4
- yara_x-0.13.0/lib/src/compiler/ir/tests/testdata/6.cse.ir +0 -23
- yara_x-0.13.0/lib/src/compiler/ir/tests/testdata/6.hoisting.ir +0 -22
- yara_x-0.13.0/lib/src/compiler/ir/tests/testdata/6.ir +0 -22
- yara_x-0.13.0/lib/src/compiler/ir/tests/testdata/6.no-folding.ir +0 -22
- yara_x-0.13.0/lib/src/compiler/ir/tests/testdata/9.cse.ir +0 -23
- yara_x-0.13.0/lib/src/compiler/ir/tests/testdata/9.hoisting.ir +0 -23
- yara_x-0.13.0/lib/src/compiler/ir/tests/testdata/9.ir +0 -23
- yara_x-0.13.0/lib/src/compiler/ir/tests/testdata/9.no-folding.ir +0 -23
- {yara_x-0.13.0 → yara_x-0.15.0}/README.md +0 -0
- {yara_x-0.13.0 → yara_x-0.15.0}/fmt/Cargo.lock +0 -0
- {yara_x-0.13.0 → yara_x-0.15.0}/fmt/Cargo.toml +0 -0
- {yara_x-0.13.0 → yara_x-0.15.0}/fmt/README.md +0 -0
- {yara_x-0.13.0 → yara_x-0.15.0}/fmt/src/align.rs +0 -0
- {yara_x-0.13.0 → yara_x-0.15.0}/fmt/src/bubble.rs +0 -0
- {yara_x-0.13.0 → yara_x-0.15.0}/fmt/src/comments.rs +0 -0
- {yara_x-0.13.0 → yara_x-0.15.0}/fmt/src/format_hex_patterns.rs +0 -0
- {yara_x-0.13.0 → yara_x-0.15.0}/fmt/src/indentation.rs +0 -0
- {yara_x-0.13.0 → yara_x-0.15.0}/fmt/src/processor/mod.rs +0 -0
- {yara_x-0.13.0 → yara_x-0.15.0}/fmt/src/processor/tests.rs +0 -0
- {yara_x-0.13.0 → yara_x-0.15.0}/fmt/src/testdata/config_tests/align_metadata_false.formatted +0 -0
- {yara_x-0.13.0 → yara_x-0.15.0}/fmt/src/testdata/config_tests/align_patterns_false.formatted +0 -0
- {yara_x-0.13.0 → yara_x-0.15.0}/fmt/src/testdata/config_tests/align_rule.unformatted +0 -0
- {yara_x-0.13.0 → yara_x-0.15.0}/fmt/src/testdata/config_tests/empty_line_after_section_header_true.formatted +0 -0
- {yara_x-0.13.0 → yara_x-0.15.0}/fmt/src/testdata/config_tests/empty_line_before_section_header_false.formatted +0 -0
- {yara_x-0.13.0 → yara_x-0.15.0}/fmt/src/testdata/config_tests/generic_rule.unformatted +0 -0
- {yara_x-0.13.0 → yara_x-0.15.0}/fmt/src/testdata/config_tests/indent_section_contents_false.formatted +0 -0
- {yara_x-0.13.0 → yara_x-0.15.0}/fmt/src/testdata/config_tests/indent_section_headers_false.formatted +0 -0
- {yara_x-0.13.0 → yara_x-0.15.0}/fmt/src/testdata/config_tests/indent_spaces_one.formatted +0 -0
- {yara_x-0.13.0 → yara_x-0.15.0}/fmt/src/testdata/config_tests/indent_spaces_zero.formatted +0 -0
- {yara_x-0.13.0 → yara_x-0.15.0}/fmt/src/testdata/config_tests/newline_before_curly_brace_true.formatted +0 -0
- {yara_x-0.13.0 → yara_x-0.15.0}/fmt/src/testdata/default_tests/test1.formatted +0 -0
- {yara_x-0.13.0 → yara_x-0.15.0}/fmt/src/testdata/default_tests/test1.unformatted +0 -0
- {yara_x-0.13.0 → yara_x-0.15.0}/fmt/src/testdata/default_tests/test10.formatted +0 -0
- {yara_x-0.13.0 → yara_x-0.15.0}/fmt/src/testdata/default_tests/test10.unformatted +0 -0
- {yara_x-0.13.0 → yara_x-0.15.0}/fmt/src/testdata/default_tests/test11.formatted +0 -0
- {yara_x-0.13.0 → yara_x-0.15.0}/fmt/src/testdata/default_tests/test11.unformatted +0 -0
- {yara_x-0.13.0 → yara_x-0.15.0}/fmt/src/testdata/default_tests/test12.formatted +0 -0
- {yara_x-0.13.0 → yara_x-0.15.0}/fmt/src/testdata/default_tests/test12.unformatted +0 -0
- {yara_x-0.13.0 → yara_x-0.15.0}/fmt/src/testdata/default_tests/test13.formatted +0 -0
- {yara_x-0.13.0 → yara_x-0.15.0}/fmt/src/testdata/default_tests/test13.unformatted +0 -0
- {yara_x-0.13.0 → yara_x-0.15.0}/fmt/src/testdata/default_tests/test14.formatted +0 -0
- {yara_x-0.13.0 → yara_x-0.15.0}/fmt/src/testdata/default_tests/test14.unformatted +0 -0
- {yara_x-0.13.0 → yara_x-0.15.0}/fmt/src/testdata/default_tests/test15.formatted +0 -0
- {yara_x-0.13.0 → yara_x-0.15.0}/fmt/src/testdata/default_tests/test15.unformatted +0 -0
- {yara_x-0.13.0 → yara_x-0.15.0}/fmt/src/testdata/default_tests/test16.formatted +0 -0
- {yara_x-0.13.0 → yara_x-0.15.0}/fmt/src/testdata/default_tests/test16.unformatted +0 -0
- {yara_x-0.13.0 → yara_x-0.15.0}/fmt/src/testdata/default_tests/test17.formatted +0 -0
- {yara_x-0.13.0 → yara_x-0.15.0}/fmt/src/testdata/default_tests/test17.unformatted +0 -0
- {yara_x-0.13.0 → yara_x-0.15.0}/fmt/src/testdata/default_tests/test18.formatted +0 -0
- {yara_x-0.13.0 → yara_x-0.15.0}/fmt/src/testdata/default_tests/test18.unformatted +0 -0
- {yara_x-0.13.0 → yara_x-0.15.0}/fmt/src/testdata/default_tests/test19.formatted +0 -0
- {yara_x-0.13.0 → yara_x-0.15.0}/fmt/src/testdata/default_tests/test19.unformatted +0 -0
- {yara_x-0.13.0 → yara_x-0.15.0}/fmt/src/testdata/default_tests/test2.formatted +0 -0
- {yara_x-0.13.0 → yara_x-0.15.0}/fmt/src/testdata/default_tests/test2.unformatted +0 -0
- {yara_x-0.13.0 → yara_x-0.15.0}/fmt/src/testdata/default_tests/test20.formatted +0 -0
- {yara_x-0.13.0 → yara_x-0.15.0}/fmt/src/testdata/default_tests/test20.unformatted +0 -0
- {yara_x-0.13.0 → yara_x-0.15.0}/fmt/src/testdata/default_tests/test21.formatted +0 -0
- {yara_x-0.13.0 → yara_x-0.15.0}/fmt/src/testdata/default_tests/test21.unformatted +0 -0
- {yara_x-0.13.0 → yara_x-0.15.0}/fmt/src/testdata/default_tests/test22.formatted +0 -0
- {yara_x-0.13.0 → yara_x-0.15.0}/fmt/src/testdata/default_tests/test22.unformatted +0 -0
- {yara_x-0.13.0 → yara_x-0.15.0}/fmt/src/testdata/default_tests/test23.formatted +0 -0
- {yara_x-0.13.0 → yara_x-0.15.0}/fmt/src/testdata/default_tests/test23.unformatted +0 -0
- {yara_x-0.13.0 → yara_x-0.15.0}/fmt/src/testdata/default_tests/test24.formatted +0 -0
- {yara_x-0.13.0 → yara_x-0.15.0}/fmt/src/testdata/default_tests/test24.unformatted +0 -0
- {yara_x-0.13.0 → yara_x-0.15.0}/fmt/src/testdata/default_tests/test25.formatted +0 -0
- {yara_x-0.13.0 → yara_x-0.15.0}/fmt/src/testdata/default_tests/test25.unformatted +0 -0
- {yara_x-0.13.0 → yara_x-0.15.0}/fmt/src/testdata/default_tests/test26.formatted +0 -0
- {yara_x-0.13.0 → yara_x-0.15.0}/fmt/src/testdata/default_tests/test26.unformatted +0 -0
- {yara_x-0.13.0 → yara_x-0.15.0}/fmt/src/testdata/default_tests/test27.formatted +0 -0
- {yara_x-0.13.0 → yara_x-0.15.0}/fmt/src/testdata/default_tests/test27.unformatted +0 -0
- {yara_x-0.13.0 → yara_x-0.15.0}/fmt/src/testdata/default_tests/test28.formatted +0 -0
- {yara_x-0.13.0 → yara_x-0.15.0}/fmt/src/testdata/default_tests/test28.unformatted +0 -0
- {yara_x-0.13.0 → yara_x-0.15.0}/fmt/src/testdata/default_tests/test29.formatted +0 -0
- {yara_x-0.13.0 → yara_x-0.15.0}/fmt/src/testdata/default_tests/test29.unformatted +0 -0
- {yara_x-0.13.0 → yara_x-0.15.0}/fmt/src/testdata/default_tests/test3.formatted +0 -0
- {yara_x-0.13.0 → yara_x-0.15.0}/fmt/src/testdata/default_tests/test3.unformatted +0 -0
- {yara_x-0.13.0 → yara_x-0.15.0}/fmt/src/testdata/default_tests/test30.formatted +0 -0
- {yara_x-0.13.0 → yara_x-0.15.0}/fmt/src/testdata/default_tests/test30.unformatted +0 -0
- {yara_x-0.13.0 → yara_x-0.15.0}/fmt/src/testdata/default_tests/test31.formatted +0 -0
- {yara_x-0.13.0 → yara_x-0.15.0}/fmt/src/testdata/default_tests/test31.unformatted +0 -0
- {yara_x-0.13.0 → yara_x-0.15.0}/fmt/src/testdata/default_tests/test32.formatted +0 -0
- {yara_x-0.13.0 → yara_x-0.15.0}/fmt/src/testdata/default_tests/test32.unformatted +0 -0
- {yara_x-0.13.0 → yara_x-0.15.0}/fmt/src/testdata/default_tests/test33.formatted +0 -0
- {yara_x-0.13.0 → yara_x-0.15.0}/fmt/src/testdata/default_tests/test33.unformatted +0 -0
- {yara_x-0.13.0 → yara_x-0.15.0}/fmt/src/testdata/default_tests/test34.formatted +0 -0
- {yara_x-0.13.0 → yara_x-0.15.0}/fmt/src/testdata/default_tests/test34.unformatted +0 -0
- {yara_x-0.13.0 → yara_x-0.15.0}/fmt/src/testdata/default_tests/test4.formatted +0 -0
- {yara_x-0.13.0 → yara_x-0.15.0}/fmt/src/testdata/default_tests/test4.unformatted +0 -0
- {yara_x-0.13.0 → yara_x-0.15.0}/fmt/src/testdata/default_tests/test7.formatted +0 -0
- {yara_x-0.13.0 → yara_x-0.15.0}/fmt/src/testdata/default_tests/test7.unformatted +0 -0
- {yara_x-0.13.0 → yara_x-0.15.0}/fmt/src/testdata/default_tests/test8.formatted +0 -0
- {yara_x-0.13.0 → yara_x-0.15.0}/fmt/src/testdata/default_tests/test8.unformatted +0 -0
- {yara_x-0.13.0 → yara_x-0.15.0}/fmt/src/testdata/default_tests/test9.formatted +0 -0
- {yara_x-0.13.0 → yara_x-0.15.0}/fmt/src/testdata/default_tests/test9.unformatted +0 -0
- {yara_x-0.13.0 → yara_x-0.15.0}/fmt/src/tests.rs +0 -0
- {yara_x-0.13.0 → yara_x-0.15.0}/fmt/src/tokens/tests.rs +0 -0
- {yara_x-0.13.0 → yara_x-0.15.0}/fmt/src/trailing_spaces.rs +0 -0
- {yara_x-0.13.0 → yara_x-0.15.0}/lib/README.md +0 -0
- {yara_x-0.13.0 → yara_x-0.15.0}/lib/src/compiler/atoms/mask.rs +0 -0
- {yara_x-0.13.0 → yara_x-0.15.0}/lib/src/compiler/atoms/mod.rs +0 -0
- {yara_x-0.13.0 → yara_x-0.15.0}/lib/src/compiler/base64.rs +0 -0
- {yara_x-0.13.0 → yara_x-0.15.0}/lib/src/compiler/emit.rs +0 -0
- {yara_x-0.13.0 → yara_x-0.15.0}/lib/src/compiler/ir/dfs.rs +0 -0
- {yara_x-0.13.0 → yara_x-0.15.0}/lib/src/compiler/ir/mod.rs +0 -0
- {yara_x-0.13.0 → yara_x-0.15.0}/lib/src/compiler/ir/tests/testdata/1.in +0 -0
- {yara_x-0.13.0 → yara_x-0.15.0}/lib/src/compiler/ir/tests/testdata/2.in +0 -0
- {yara_x-0.13.0 → yara_x-0.15.0}/lib/src/compiler/ir/tests/testdata/3.in +0 -0
- {yara_x-0.13.0 → yara_x-0.15.0}/lib/src/compiler/ir/tests/testdata/4.in +0 -0
- {yara_x-0.13.0 → yara_x-0.15.0}/lib/src/compiler/ir/tests/testdata/5.in +0 -0
- {yara_x-0.13.0 → yara_x-0.15.0}/lib/src/compiler/ir/tests/testdata/6.in +0 -0
- {yara_x-0.13.0 → yara_x-0.15.0}/lib/src/compiler/ir/tests/testdata/7.in +0 -0
- {yara_x-0.13.0 → yara_x-0.15.0}/lib/src/compiler/ir/tests/testdata/8.in +0 -0
- {yara_x-0.13.0 → yara_x-0.15.0}/lib/src/compiler/ir/tests/testdata/9.in +0 -0
- {yara_x-0.13.0 → yara_x-0.15.0}/lib/src/compiler/rules.rs +0 -0
- {yara_x-0.13.0 → yara_x-0.15.0}/lib/src/compiler/tests/testdata/errors/1.in +0 -0
- {yara_x-0.13.0 → yara_x-0.15.0}/lib/src/compiler/tests/testdata/errors/1.out +0 -0
- {yara_x-0.13.0 → yara_x-0.15.0}/lib/src/compiler/tests/testdata/errors/10.in +0 -0
- {yara_x-0.13.0 → yara_x-0.15.0}/lib/src/compiler/tests/testdata/errors/10.out +0 -0
- {yara_x-0.13.0 → yara_x-0.15.0}/lib/src/compiler/tests/testdata/errors/100.in +0 -0
- {yara_x-0.13.0 → yara_x-0.15.0}/lib/src/compiler/tests/testdata/errors/100.out +0 -0
- {yara_x-0.13.0 → yara_x-0.15.0}/lib/src/compiler/tests/testdata/errors/101.in +0 -0
- {yara_x-0.13.0 → yara_x-0.15.0}/lib/src/compiler/tests/testdata/errors/101.out +0 -0
- {yara_x-0.13.0 → yara_x-0.15.0}/lib/src/compiler/tests/testdata/errors/102.in +0 -0
- {yara_x-0.13.0 → yara_x-0.15.0}/lib/src/compiler/tests/testdata/errors/102.out +0 -0
- {yara_x-0.13.0 → yara_x-0.15.0}/lib/src/compiler/tests/testdata/errors/103.in +0 -0
- {yara_x-0.13.0 → yara_x-0.15.0}/lib/src/compiler/tests/testdata/errors/103.out +0 -0
- {yara_x-0.13.0 → yara_x-0.15.0}/lib/src/compiler/tests/testdata/errors/104.in +0 -0
- {yara_x-0.13.0 → yara_x-0.15.0}/lib/src/compiler/tests/testdata/errors/104.out +0 -0
- {yara_x-0.13.0 → yara_x-0.15.0}/lib/src/compiler/tests/testdata/errors/105.in +0 -0
- {yara_x-0.13.0 → yara_x-0.15.0}/lib/src/compiler/tests/testdata/errors/105.out +0 -0
- {yara_x-0.13.0 → yara_x-0.15.0}/lib/src/compiler/tests/testdata/errors/106.in +0 -0
- {yara_x-0.13.0 → yara_x-0.15.0}/lib/src/compiler/tests/testdata/errors/106.out +0 -0
- {yara_x-0.13.0 → yara_x-0.15.0}/lib/src/compiler/tests/testdata/errors/107.in +0 -0
- {yara_x-0.13.0 → yara_x-0.15.0}/lib/src/compiler/tests/testdata/errors/107.out +0 -0
- {yara_x-0.13.0 → yara_x-0.15.0}/lib/src/compiler/tests/testdata/errors/108.in +0 -0
- {yara_x-0.13.0 → yara_x-0.15.0}/lib/src/compiler/tests/testdata/errors/108.out +0 -0
- {yara_x-0.13.0 → yara_x-0.15.0}/lib/src/compiler/tests/testdata/errors/109.in +0 -0
- {yara_x-0.13.0 → yara_x-0.15.0}/lib/src/compiler/tests/testdata/errors/109.out +0 -0
- {yara_x-0.13.0 → yara_x-0.15.0}/lib/src/compiler/tests/testdata/errors/11.in +0 -0
- {yara_x-0.13.0 → yara_x-0.15.0}/lib/src/compiler/tests/testdata/errors/11.out +0 -0
- {yara_x-0.13.0 → yara_x-0.15.0}/lib/src/compiler/tests/testdata/errors/110.in +0 -0
- {yara_x-0.13.0 → yara_x-0.15.0}/lib/src/compiler/tests/testdata/errors/110.out +0 -0
- {yara_x-0.13.0 → yara_x-0.15.0}/lib/src/compiler/tests/testdata/errors/111.in +0 -0
- {yara_x-0.13.0 → yara_x-0.15.0}/lib/src/compiler/tests/testdata/errors/111.out +0 -0
- {yara_x-0.13.0 → yara_x-0.15.0}/lib/src/compiler/tests/testdata/errors/112.in +0 -0
- {yara_x-0.13.0 → yara_x-0.15.0}/lib/src/compiler/tests/testdata/errors/112.out +0 -0
- {yara_x-0.13.0 → yara_x-0.15.0}/lib/src/compiler/tests/testdata/errors/113.in +0 -0
- {yara_x-0.13.0 → yara_x-0.15.0}/lib/src/compiler/tests/testdata/errors/113.out +0 -0
- {yara_x-0.13.0 → yara_x-0.15.0}/lib/src/compiler/tests/testdata/errors/114.in +0 -0
- {yara_x-0.13.0 → yara_x-0.15.0}/lib/src/compiler/tests/testdata/errors/114.out +0 -0
- {yara_x-0.13.0 → yara_x-0.15.0}/lib/src/compiler/tests/testdata/errors/115.in +0 -0
- {yara_x-0.13.0 → yara_x-0.15.0}/lib/src/compiler/tests/testdata/errors/115.out +0 -0
- {yara_x-0.13.0 → yara_x-0.15.0}/lib/src/compiler/tests/testdata/errors/116.in +0 -0
- {yara_x-0.13.0 → yara_x-0.15.0}/lib/src/compiler/tests/testdata/errors/116.out +0 -0
- {yara_x-0.13.0 → yara_x-0.15.0}/lib/src/compiler/tests/testdata/errors/117.in +0 -0
- {yara_x-0.13.0 → yara_x-0.15.0}/lib/src/compiler/tests/testdata/errors/117.out +0 -0
- {yara_x-0.13.0 → yara_x-0.15.0}/lib/src/compiler/tests/testdata/errors/118.in +0 -0
- {yara_x-0.13.0 → yara_x-0.15.0}/lib/src/compiler/tests/testdata/errors/118.out +0 -0
- {yara_x-0.13.0 → yara_x-0.15.0}/lib/src/compiler/tests/testdata/errors/119.in +0 -0
- {yara_x-0.13.0 → yara_x-0.15.0}/lib/src/compiler/tests/testdata/errors/119.out +0 -0
- {yara_x-0.13.0 → yara_x-0.15.0}/lib/src/compiler/tests/testdata/errors/12.in +0 -0
- {yara_x-0.13.0 → yara_x-0.15.0}/lib/src/compiler/tests/testdata/errors/12.out +0 -0
- {yara_x-0.13.0 → yara_x-0.15.0}/lib/src/compiler/tests/testdata/errors/120.in +0 -0
- {yara_x-0.13.0 → yara_x-0.15.0}/lib/src/compiler/tests/testdata/errors/120.out +0 -0
- {yara_x-0.13.0 → yara_x-0.15.0}/lib/src/compiler/tests/testdata/errors/121.in +0 -0
- {yara_x-0.13.0 → yara_x-0.15.0}/lib/src/compiler/tests/testdata/errors/121.out +0 -0
- {yara_x-0.13.0 → yara_x-0.15.0}/lib/src/compiler/tests/testdata/errors/122.in +0 -0
- {yara_x-0.13.0 → yara_x-0.15.0}/lib/src/compiler/tests/testdata/errors/122.out +0 -0
- {yara_x-0.13.0 → yara_x-0.15.0}/lib/src/compiler/tests/testdata/errors/123.in +0 -0
- {yara_x-0.13.0 → yara_x-0.15.0}/lib/src/compiler/tests/testdata/errors/123.out +0 -0
- {yara_x-0.13.0 → yara_x-0.15.0}/lib/src/compiler/tests/testdata/errors/124.in +0 -0
- {yara_x-0.13.0 → yara_x-0.15.0}/lib/src/compiler/tests/testdata/errors/124.out +0 -0
- {yara_x-0.13.0 → yara_x-0.15.0}/lib/src/compiler/tests/testdata/errors/125.in +0 -0
- {yara_x-0.13.0 → yara_x-0.15.0}/lib/src/compiler/tests/testdata/errors/125.out +0 -0
- {yara_x-0.13.0 → yara_x-0.15.0}/lib/src/compiler/tests/testdata/errors/126.in +0 -0
- {yara_x-0.13.0 → yara_x-0.15.0}/lib/src/compiler/tests/testdata/errors/126.out +0 -0
- {yara_x-0.13.0 → yara_x-0.15.0}/lib/src/compiler/tests/testdata/errors/127.in +0 -0
- {yara_x-0.13.0 → yara_x-0.15.0}/lib/src/compiler/tests/testdata/errors/127.out +0 -0
- {yara_x-0.13.0 → yara_x-0.15.0}/lib/src/compiler/tests/testdata/errors/128.in +0 -0
- {yara_x-0.13.0 → yara_x-0.15.0}/lib/src/compiler/tests/testdata/errors/128.out +0 -0
- {yara_x-0.13.0 → yara_x-0.15.0}/lib/src/compiler/tests/testdata/errors/129.in +0 -0
- {yara_x-0.13.0 → yara_x-0.15.0}/lib/src/compiler/tests/testdata/errors/129.out +0 -0
- {yara_x-0.13.0 → yara_x-0.15.0}/lib/src/compiler/tests/testdata/errors/13.in +0 -0
- {yara_x-0.13.0 → yara_x-0.15.0}/lib/src/compiler/tests/testdata/errors/13.out +0 -0
- {yara_x-0.13.0 → yara_x-0.15.0}/lib/src/compiler/tests/testdata/errors/131.in +0 -0
- {yara_x-0.13.0 → yara_x-0.15.0}/lib/src/compiler/tests/testdata/errors/131.out +0 -0
- {yara_x-0.13.0 → yara_x-0.15.0}/lib/src/compiler/tests/testdata/errors/132.in +0 -0
- {yara_x-0.13.0 → yara_x-0.15.0}/lib/src/compiler/tests/testdata/errors/132.out +0 -0
- {yara_x-0.13.0 → yara_x-0.15.0}/lib/src/compiler/tests/testdata/errors/133.in +0 -0
- {yara_x-0.13.0 → yara_x-0.15.0}/lib/src/compiler/tests/testdata/errors/133.out +0 -0
- {yara_x-0.13.0 → yara_x-0.15.0}/lib/src/compiler/tests/testdata/errors/134.in +0 -0
- {yara_x-0.13.0 → yara_x-0.15.0}/lib/src/compiler/tests/testdata/errors/134.out +0 -0
- {yara_x-0.13.0 → yara_x-0.15.0}/lib/src/compiler/tests/testdata/errors/135.in +0 -0
- {yara_x-0.13.0 → yara_x-0.15.0}/lib/src/compiler/tests/testdata/errors/135.out +0 -0
- {yara_x-0.13.0 → yara_x-0.15.0}/lib/src/compiler/tests/testdata/errors/136.in +0 -0
- {yara_x-0.13.0 → yara_x-0.15.0}/lib/src/compiler/tests/testdata/errors/136.out +0 -0
- {yara_x-0.13.0 → yara_x-0.15.0}/lib/src/compiler/tests/testdata/errors/137.in +0 -0
- {yara_x-0.13.0 → yara_x-0.15.0}/lib/src/compiler/tests/testdata/errors/137.out +0 -0
- {yara_x-0.13.0 → yara_x-0.15.0}/lib/src/compiler/tests/testdata/errors/138.in +0 -0
- {yara_x-0.13.0 → yara_x-0.15.0}/lib/src/compiler/tests/testdata/errors/138.out +0 -0
- {yara_x-0.13.0 → yara_x-0.15.0}/lib/src/compiler/tests/testdata/errors/139.in +0 -0
- {yara_x-0.13.0 → yara_x-0.15.0}/lib/src/compiler/tests/testdata/errors/139.out +0 -0
- {yara_x-0.13.0 → yara_x-0.15.0}/lib/src/compiler/tests/testdata/errors/14.in +0 -0
- {yara_x-0.13.0 → yara_x-0.15.0}/lib/src/compiler/tests/testdata/errors/14.out +0 -0
- {yara_x-0.13.0 → yara_x-0.15.0}/lib/src/compiler/tests/testdata/errors/140.in +0 -0
- {yara_x-0.13.0 → yara_x-0.15.0}/lib/src/compiler/tests/testdata/errors/140.out +0 -0
- {yara_x-0.13.0 → yara_x-0.15.0}/lib/src/compiler/tests/testdata/errors/15.in +0 -0
- {yara_x-0.13.0 → yara_x-0.15.0}/lib/src/compiler/tests/testdata/errors/15.out +0 -0
- {yara_x-0.13.0 → yara_x-0.15.0}/lib/src/compiler/tests/testdata/errors/16.in +0 -0
- {yara_x-0.13.0 → yara_x-0.15.0}/lib/src/compiler/tests/testdata/errors/16.out +0 -0
- {yara_x-0.13.0 → yara_x-0.15.0}/lib/src/compiler/tests/testdata/errors/17.in +0 -0
- {yara_x-0.13.0 → yara_x-0.15.0}/lib/src/compiler/tests/testdata/errors/17.out +0 -0
- {yara_x-0.13.0 → yara_x-0.15.0}/lib/src/compiler/tests/testdata/errors/18.in +0 -0
- {yara_x-0.13.0 → yara_x-0.15.0}/lib/src/compiler/tests/testdata/errors/18.out +0 -0
- {yara_x-0.13.0 → yara_x-0.15.0}/lib/src/compiler/tests/testdata/errors/19.in +0 -0
- {yara_x-0.13.0 → yara_x-0.15.0}/lib/src/compiler/tests/testdata/errors/19.out +0 -0
- {yara_x-0.13.0 → yara_x-0.15.0}/lib/src/compiler/tests/testdata/errors/2.in +0 -0
- {yara_x-0.13.0 → yara_x-0.15.0}/lib/src/compiler/tests/testdata/errors/2.out +0 -0
- {yara_x-0.13.0 → yara_x-0.15.0}/lib/src/compiler/tests/testdata/errors/20.in +0 -0
- {yara_x-0.13.0 → yara_x-0.15.0}/lib/src/compiler/tests/testdata/errors/20.out +0 -0
- {yara_x-0.13.0 → yara_x-0.15.0}/lib/src/compiler/tests/testdata/errors/21.in +0 -0
- {yara_x-0.13.0 → yara_x-0.15.0}/lib/src/compiler/tests/testdata/errors/21.out +0 -0
- {yara_x-0.13.0 → yara_x-0.15.0}/lib/src/compiler/tests/testdata/errors/22.in +0 -0
- {yara_x-0.13.0 → yara_x-0.15.0}/lib/src/compiler/tests/testdata/errors/22.out +0 -0
- {yara_x-0.13.0 → yara_x-0.15.0}/lib/src/compiler/tests/testdata/errors/23.in +0 -0
- {yara_x-0.13.0 → yara_x-0.15.0}/lib/src/compiler/tests/testdata/errors/23.out +0 -0
- {yara_x-0.13.0 → yara_x-0.15.0}/lib/src/compiler/tests/testdata/errors/24.in +0 -0
- {yara_x-0.13.0 → yara_x-0.15.0}/lib/src/compiler/tests/testdata/errors/24.out +0 -0
- {yara_x-0.13.0 → yara_x-0.15.0}/lib/src/compiler/tests/testdata/errors/25.in +0 -0
- {yara_x-0.13.0 → yara_x-0.15.0}/lib/src/compiler/tests/testdata/errors/25.out +0 -0
- {yara_x-0.13.0 → yara_x-0.15.0}/lib/src/compiler/tests/testdata/errors/26.in +0 -0
- {yara_x-0.13.0 → yara_x-0.15.0}/lib/src/compiler/tests/testdata/errors/26.out +0 -0
- {yara_x-0.13.0 → yara_x-0.15.0}/lib/src/compiler/tests/testdata/errors/28.in +0 -0
- {yara_x-0.13.0 → yara_x-0.15.0}/lib/src/compiler/tests/testdata/errors/28.out +0 -0
- {yara_x-0.13.0 → yara_x-0.15.0}/lib/src/compiler/tests/testdata/errors/29.in +0 -0
- {yara_x-0.13.0 → yara_x-0.15.0}/lib/src/compiler/tests/testdata/errors/29.out +0 -0
- {yara_x-0.13.0 → yara_x-0.15.0}/lib/src/compiler/tests/testdata/errors/3.in +0 -0
- {yara_x-0.13.0 → yara_x-0.15.0}/lib/src/compiler/tests/testdata/errors/3.out +0 -0
- {yara_x-0.13.0 → yara_x-0.15.0}/lib/src/compiler/tests/testdata/errors/30.in +0 -0
- {yara_x-0.13.0 → yara_x-0.15.0}/lib/src/compiler/tests/testdata/errors/30.out +0 -0
- {yara_x-0.13.0 → yara_x-0.15.0}/lib/src/compiler/tests/testdata/errors/31.in +0 -0
- {yara_x-0.13.0 → yara_x-0.15.0}/lib/src/compiler/tests/testdata/errors/31.out +0 -0
- {yara_x-0.13.0 → yara_x-0.15.0}/lib/src/compiler/tests/testdata/errors/32.in +0 -0
- {yara_x-0.13.0 → yara_x-0.15.0}/lib/src/compiler/tests/testdata/errors/32.out +0 -0
- {yara_x-0.13.0 → yara_x-0.15.0}/lib/src/compiler/tests/testdata/errors/33.in +0 -0
- {yara_x-0.13.0 → yara_x-0.15.0}/lib/src/compiler/tests/testdata/errors/33.out +0 -0
- {yara_x-0.13.0 → yara_x-0.15.0}/lib/src/compiler/tests/testdata/errors/34.in +0 -0
- {yara_x-0.13.0 → yara_x-0.15.0}/lib/src/compiler/tests/testdata/errors/34.out +0 -0
- {yara_x-0.13.0 → yara_x-0.15.0}/lib/src/compiler/tests/testdata/errors/35.in +0 -0
- {yara_x-0.13.0 → yara_x-0.15.0}/lib/src/compiler/tests/testdata/errors/35.out +0 -0
- {yara_x-0.13.0 → yara_x-0.15.0}/lib/src/compiler/tests/testdata/errors/37.in +0 -0
- {yara_x-0.13.0 → yara_x-0.15.0}/lib/src/compiler/tests/testdata/errors/37.out +0 -0
- {yara_x-0.13.0 → yara_x-0.15.0}/lib/src/compiler/tests/testdata/errors/38.in +0 -0
- {yara_x-0.13.0 → yara_x-0.15.0}/lib/src/compiler/tests/testdata/errors/38.out +0 -0
- {yara_x-0.13.0 → yara_x-0.15.0}/lib/src/compiler/tests/testdata/errors/39.in +0 -0
- {yara_x-0.13.0 → yara_x-0.15.0}/lib/src/compiler/tests/testdata/errors/39.out +0 -0
- {yara_x-0.13.0 → yara_x-0.15.0}/lib/src/compiler/tests/testdata/errors/4.in +0 -0
- {yara_x-0.13.0 → yara_x-0.15.0}/lib/src/compiler/tests/testdata/errors/4.out +0 -0
- {yara_x-0.13.0 → yara_x-0.15.0}/lib/src/compiler/tests/testdata/errors/40.in +0 -0
- {yara_x-0.13.0 → yara_x-0.15.0}/lib/src/compiler/tests/testdata/errors/40.out +0 -0
- {yara_x-0.13.0 → yara_x-0.15.0}/lib/src/compiler/tests/testdata/errors/41.in +0 -0
- {yara_x-0.13.0 → yara_x-0.15.0}/lib/src/compiler/tests/testdata/errors/41.out +0 -0
- {yara_x-0.13.0 → yara_x-0.15.0}/lib/src/compiler/tests/testdata/errors/42.in +0 -0
- {yara_x-0.13.0 → yara_x-0.15.0}/lib/src/compiler/tests/testdata/errors/42.out +0 -0
- {yara_x-0.13.0 → yara_x-0.15.0}/lib/src/compiler/tests/testdata/errors/43.in +0 -0
- {yara_x-0.13.0 → yara_x-0.15.0}/lib/src/compiler/tests/testdata/errors/43.out +0 -0
- {yara_x-0.13.0 → yara_x-0.15.0}/lib/src/compiler/tests/testdata/errors/44.in +0 -0
- {yara_x-0.13.0 → yara_x-0.15.0}/lib/src/compiler/tests/testdata/errors/44.out +0 -0
- {yara_x-0.13.0 → yara_x-0.15.0}/lib/src/compiler/tests/testdata/errors/45.in +0 -0
- {yara_x-0.13.0 → yara_x-0.15.0}/lib/src/compiler/tests/testdata/errors/45.out +0 -0
- {yara_x-0.13.0 → yara_x-0.15.0}/lib/src/compiler/tests/testdata/errors/46.in +0 -0
- {yara_x-0.13.0 → yara_x-0.15.0}/lib/src/compiler/tests/testdata/errors/46.out +0 -0
- {yara_x-0.13.0 → yara_x-0.15.0}/lib/src/compiler/tests/testdata/errors/47.in +0 -0
- {yara_x-0.13.0 → yara_x-0.15.0}/lib/src/compiler/tests/testdata/errors/47.out +0 -0
- {yara_x-0.13.0 → yara_x-0.15.0}/lib/src/compiler/tests/testdata/errors/48.in +0 -0
- {yara_x-0.13.0 → yara_x-0.15.0}/lib/src/compiler/tests/testdata/errors/48.out +0 -0
- {yara_x-0.13.0 → yara_x-0.15.0}/lib/src/compiler/tests/testdata/errors/49.in +0 -0
- {yara_x-0.13.0 → yara_x-0.15.0}/lib/src/compiler/tests/testdata/errors/49.out +0 -0
- {yara_x-0.13.0 → yara_x-0.15.0}/lib/src/compiler/tests/testdata/errors/5.in +0 -0
- {yara_x-0.13.0 → yara_x-0.15.0}/lib/src/compiler/tests/testdata/errors/5.out +0 -0
- {yara_x-0.13.0 → yara_x-0.15.0}/lib/src/compiler/tests/testdata/errors/50.in +0 -0
- {yara_x-0.13.0 → yara_x-0.15.0}/lib/src/compiler/tests/testdata/errors/50.out +0 -0
- {yara_x-0.13.0 → yara_x-0.15.0}/lib/src/compiler/tests/testdata/errors/51.in +0 -0
- {yara_x-0.13.0 → yara_x-0.15.0}/lib/src/compiler/tests/testdata/errors/51.out +0 -0
- {yara_x-0.13.0 → yara_x-0.15.0}/lib/src/compiler/tests/testdata/errors/52.in +0 -0
- {yara_x-0.13.0 → yara_x-0.15.0}/lib/src/compiler/tests/testdata/errors/52.out +0 -0
- {yara_x-0.13.0 → yara_x-0.15.0}/lib/src/compiler/tests/testdata/errors/53.in +0 -0
- {yara_x-0.13.0 → yara_x-0.15.0}/lib/src/compiler/tests/testdata/errors/53.out +0 -0
- {yara_x-0.13.0 → yara_x-0.15.0}/lib/src/compiler/tests/testdata/errors/54.in +0 -0
- {yara_x-0.13.0 → yara_x-0.15.0}/lib/src/compiler/tests/testdata/errors/54.out +0 -0
- {yara_x-0.13.0 → yara_x-0.15.0}/lib/src/compiler/tests/testdata/errors/55.in +0 -0
- {yara_x-0.13.0 → yara_x-0.15.0}/lib/src/compiler/tests/testdata/errors/55.out +0 -0
- {yara_x-0.13.0 → yara_x-0.15.0}/lib/src/compiler/tests/testdata/errors/56.in +0 -0
- {yara_x-0.13.0 → yara_x-0.15.0}/lib/src/compiler/tests/testdata/errors/56.out +0 -0
- {yara_x-0.13.0 → yara_x-0.15.0}/lib/src/compiler/tests/testdata/errors/57.in +0 -0
- {yara_x-0.13.0 → yara_x-0.15.0}/lib/src/compiler/tests/testdata/errors/57.out +0 -0
- {yara_x-0.13.0 → yara_x-0.15.0}/lib/src/compiler/tests/testdata/errors/58.in +0 -0
- {yara_x-0.13.0 → yara_x-0.15.0}/lib/src/compiler/tests/testdata/errors/58.out +0 -0
- {yara_x-0.13.0 → yara_x-0.15.0}/lib/src/compiler/tests/testdata/errors/59.in +0 -0
- {yara_x-0.13.0 → yara_x-0.15.0}/lib/src/compiler/tests/testdata/errors/59.out +0 -0
- {yara_x-0.13.0 → yara_x-0.15.0}/lib/src/compiler/tests/testdata/errors/6.in +0 -0
- {yara_x-0.13.0 → yara_x-0.15.0}/lib/src/compiler/tests/testdata/errors/6.out +0 -0
- {yara_x-0.13.0 → yara_x-0.15.0}/lib/src/compiler/tests/testdata/errors/60.in +0 -0
- {yara_x-0.13.0 → yara_x-0.15.0}/lib/src/compiler/tests/testdata/errors/60.out +0 -0
- {yara_x-0.13.0 → yara_x-0.15.0}/lib/src/compiler/tests/testdata/errors/61.in +0 -0
- {yara_x-0.13.0 → yara_x-0.15.0}/lib/src/compiler/tests/testdata/errors/61.out +0 -0
- {yara_x-0.13.0 → yara_x-0.15.0}/lib/src/compiler/tests/testdata/errors/62.in +0 -0
- {yara_x-0.13.0 → yara_x-0.15.0}/lib/src/compiler/tests/testdata/errors/62.out +0 -0
- {yara_x-0.13.0 → yara_x-0.15.0}/lib/src/compiler/tests/testdata/errors/63.in +0 -0
- {yara_x-0.13.0 → yara_x-0.15.0}/lib/src/compiler/tests/testdata/errors/63.out +0 -0
- {yara_x-0.13.0 → yara_x-0.15.0}/lib/src/compiler/tests/testdata/errors/64.in +0 -0
- {yara_x-0.13.0 → yara_x-0.15.0}/lib/src/compiler/tests/testdata/errors/64.out +0 -0
- {yara_x-0.13.0 → yara_x-0.15.0}/lib/src/compiler/tests/testdata/errors/65.in +0 -0
- {yara_x-0.13.0 → yara_x-0.15.0}/lib/src/compiler/tests/testdata/errors/65.out +0 -0
- {yara_x-0.13.0 → yara_x-0.15.0}/lib/src/compiler/tests/testdata/errors/66.in +0 -0
- {yara_x-0.13.0 → yara_x-0.15.0}/lib/src/compiler/tests/testdata/errors/66.out +0 -0
- {yara_x-0.13.0 → yara_x-0.15.0}/lib/src/compiler/tests/testdata/errors/67.in +0 -0
- {yara_x-0.13.0 → yara_x-0.15.0}/lib/src/compiler/tests/testdata/errors/67.out +0 -0
- {yara_x-0.13.0 → yara_x-0.15.0}/lib/src/compiler/tests/testdata/errors/68.in +0 -0
- {yara_x-0.13.0 → yara_x-0.15.0}/lib/src/compiler/tests/testdata/errors/68.out +0 -0
- {yara_x-0.13.0 → yara_x-0.15.0}/lib/src/compiler/tests/testdata/errors/69.in +0 -0
- {yara_x-0.13.0 → yara_x-0.15.0}/lib/src/compiler/tests/testdata/errors/69.out +0 -0
- {yara_x-0.13.0 → yara_x-0.15.0}/lib/src/compiler/tests/testdata/errors/7.in +0 -0
- {yara_x-0.13.0 → yara_x-0.15.0}/lib/src/compiler/tests/testdata/errors/7.out +0 -0
- {yara_x-0.13.0 → yara_x-0.15.0}/lib/src/compiler/tests/testdata/errors/70.in +0 -0
- {yara_x-0.13.0 → yara_x-0.15.0}/lib/src/compiler/tests/testdata/errors/70.out +0 -0
- {yara_x-0.13.0 → yara_x-0.15.0}/lib/src/compiler/tests/testdata/errors/71.in +0 -0
- {yara_x-0.13.0 → yara_x-0.15.0}/lib/src/compiler/tests/testdata/errors/71.out +0 -0
- {yara_x-0.13.0 → yara_x-0.15.0}/lib/src/compiler/tests/testdata/errors/72.in +0 -0
- {yara_x-0.13.0 → yara_x-0.15.0}/lib/src/compiler/tests/testdata/errors/72.out +0 -0
- {yara_x-0.13.0 → yara_x-0.15.0}/lib/src/compiler/tests/testdata/errors/73.in +0 -0
- {yara_x-0.13.0 → yara_x-0.15.0}/lib/src/compiler/tests/testdata/errors/73.out +0 -0
- {yara_x-0.13.0 → yara_x-0.15.0}/lib/src/compiler/tests/testdata/errors/74.in +0 -0
- {yara_x-0.13.0 → yara_x-0.15.0}/lib/src/compiler/tests/testdata/errors/74.out +0 -0
- {yara_x-0.13.0 → yara_x-0.15.0}/lib/src/compiler/tests/testdata/errors/75.in +0 -0
- {yara_x-0.13.0 → yara_x-0.15.0}/lib/src/compiler/tests/testdata/errors/75.out +0 -0
- {yara_x-0.13.0 → yara_x-0.15.0}/lib/src/compiler/tests/testdata/errors/76.in +0 -0
- {yara_x-0.13.0 → yara_x-0.15.0}/lib/src/compiler/tests/testdata/errors/76.out +0 -0
- {yara_x-0.13.0 → yara_x-0.15.0}/lib/src/compiler/tests/testdata/errors/77.in +0 -0
- {yara_x-0.13.0 → yara_x-0.15.0}/lib/src/compiler/tests/testdata/errors/77.out +0 -0
- {yara_x-0.13.0 → yara_x-0.15.0}/lib/src/compiler/tests/testdata/errors/78.in +0 -0
- {yara_x-0.13.0 → yara_x-0.15.0}/lib/src/compiler/tests/testdata/errors/78.out +0 -0
- {yara_x-0.13.0 → yara_x-0.15.0}/lib/src/compiler/tests/testdata/errors/79.in +0 -0
- {yara_x-0.13.0 → yara_x-0.15.0}/lib/src/compiler/tests/testdata/errors/79.out +0 -0
- {yara_x-0.13.0 → yara_x-0.15.0}/lib/src/compiler/tests/testdata/errors/8.in +0 -0
- {yara_x-0.13.0 → yara_x-0.15.0}/lib/src/compiler/tests/testdata/errors/8.out +0 -0
- {yara_x-0.13.0 → yara_x-0.15.0}/lib/src/compiler/tests/testdata/errors/80.in +0 -0
- {yara_x-0.13.0 → yara_x-0.15.0}/lib/src/compiler/tests/testdata/errors/80.out +0 -0
- {yara_x-0.13.0 → yara_x-0.15.0}/lib/src/compiler/tests/testdata/errors/81.in +0 -0
- {yara_x-0.13.0 → yara_x-0.15.0}/lib/src/compiler/tests/testdata/errors/81.out +0 -0
- {yara_x-0.13.0 → yara_x-0.15.0}/lib/src/compiler/tests/testdata/errors/82.in +0 -0
- {yara_x-0.13.0 → yara_x-0.15.0}/lib/src/compiler/tests/testdata/errors/82.out +0 -0
- {yara_x-0.13.0 → yara_x-0.15.0}/lib/src/compiler/tests/testdata/errors/83.in +0 -0
- {yara_x-0.13.0 → yara_x-0.15.0}/lib/src/compiler/tests/testdata/errors/83.out +0 -0
- {yara_x-0.13.0 → yara_x-0.15.0}/lib/src/compiler/tests/testdata/errors/84.in +0 -0
- {yara_x-0.13.0 → yara_x-0.15.0}/lib/src/compiler/tests/testdata/errors/84.out +0 -0
- {yara_x-0.13.0 → yara_x-0.15.0}/lib/src/compiler/tests/testdata/errors/85.in +0 -0
- {yara_x-0.13.0 → yara_x-0.15.0}/lib/src/compiler/tests/testdata/errors/85.out +0 -0
- {yara_x-0.13.0 → yara_x-0.15.0}/lib/src/compiler/tests/testdata/errors/86.in +0 -0
- {yara_x-0.13.0 → yara_x-0.15.0}/lib/src/compiler/tests/testdata/errors/86.out +0 -0
- {yara_x-0.13.0 → yara_x-0.15.0}/lib/src/compiler/tests/testdata/errors/87.in +0 -0
- {yara_x-0.13.0 → yara_x-0.15.0}/lib/src/compiler/tests/testdata/errors/87.out +0 -0
- {yara_x-0.13.0 → yara_x-0.15.0}/lib/src/compiler/tests/testdata/errors/88.in +0 -0
- {yara_x-0.13.0 → yara_x-0.15.0}/lib/src/compiler/tests/testdata/errors/88.out +0 -0
- {yara_x-0.13.0 → yara_x-0.15.0}/lib/src/compiler/tests/testdata/errors/89.in +0 -0
- {yara_x-0.13.0 → yara_x-0.15.0}/lib/src/compiler/tests/testdata/errors/89.out +0 -0
- {yara_x-0.13.0 → yara_x-0.15.0}/lib/src/compiler/tests/testdata/errors/9.in +0 -0
- {yara_x-0.13.0 → yara_x-0.15.0}/lib/src/compiler/tests/testdata/errors/9.out +0 -0
- {yara_x-0.13.0 → yara_x-0.15.0}/lib/src/compiler/tests/testdata/errors/90.in +0 -0
- {yara_x-0.13.0 → yara_x-0.15.0}/lib/src/compiler/tests/testdata/errors/90.out +0 -0
- {yara_x-0.13.0 → yara_x-0.15.0}/lib/src/compiler/tests/testdata/errors/91.in +0 -0
- {yara_x-0.13.0 → yara_x-0.15.0}/lib/src/compiler/tests/testdata/errors/91.out +0 -0
- {yara_x-0.13.0 → yara_x-0.15.0}/lib/src/compiler/tests/testdata/errors/92.in +0 -0
- {yara_x-0.13.0 → yara_x-0.15.0}/lib/src/compiler/tests/testdata/errors/92.out +0 -0
- {yara_x-0.13.0 → yara_x-0.15.0}/lib/src/compiler/tests/testdata/errors/93.in +0 -0
- {yara_x-0.13.0 → yara_x-0.15.0}/lib/src/compiler/tests/testdata/errors/93.out +0 -0
- {yara_x-0.13.0 → yara_x-0.15.0}/lib/src/compiler/tests/testdata/errors/94.in +0 -0
- {yara_x-0.13.0 → yara_x-0.15.0}/lib/src/compiler/tests/testdata/errors/94.out +0 -0
- {yara_x-0.13.0 → yara_x-0.15.0}/lib/src/compiler/tests/testdata/errors/95.in +0 -0
- {yara_x-0.13.0 → yara_x-0.15.0}/lib/src/compiler/tests/testdata/errors/95.out +0 -0
- {yara_x-0.13.0 → yara_x-0.15.0}/lib/src/compiler/tests/testdata/errors/96.in +0 -0
- {yara_x-0.13.0 → yara_x-0.15.0}/lib/src/compiler/tests/testdata/errors/96.out +0 -0
- {yara_x-0.13.0 → yara_x-0.15.0}/lib/src/compiler/tests/testdata/errors/97.in +0 -0
- {yara_x-0.13.0 → yara_x-0.15.0}/lib/src/compiler/tests/testdata/errors/97.out +0 -0
- {yara_x-0.13.0 → yara_x-0.15.0}/lib/src/compiler/tests/testdata/errors/98.in +0 -0
- {yara_x-0.13.0 → yara_x-0.15.0}/lib/src/compiler/tests/testdata/errors/98.out +0 -0
- {yara_x-0.13.0 → yara_x-0.15.0}/lib/src/compiler/tests/testdata/errors/99.in +0 -0
- {yara_x-0.13.0 → yara_x-0.15.0}/lib/src/compiler/tests/testdata/errors/99.out +0 -0
- {yara_x-0.13.0 → yara_x-0.15.0}/lib/src/compiler/tests/testdata/warnings/1.in +0 -0
- {yara_x-0.13.0 → yara_x-0.15.0}/lib/src/compiler/tests/testdata/warnings/1.out +0 -0
- {yara_x-0.13.0 → yara_x-0.15.0}/lib/src/compiler/tests/testdata/warnings/10.in +0 -0
- {yara_x-0.13.0 → yara_x-0.15.0}/lib/src/compiler/tests/testdata/warnings/10.out +0 -0
- {yara_x-0.13.0 → yara_x-0.15.0}/lib/src/compiler/tests/testdata/warnings/11.in +0 -0
- {yara_x-0.13.0 → yara_x-0.15.0}/lib/src/compiler/tests/testdata/warnings/11.out +0 -0
- {yara_x-0.13.0 → yara_x-0.15.0}/lib/src/compiler/tests/testdata/warnings/12.in +0 -0
- {yara_x-0.13.0 → yara_x-0.15.0}/lib/src/compiler/tests/testdata/warnings/12.out +0 -0
- {yara_x-0.13.0 → yara_x-0.15.0}/lib/src/compiler/tests/testdata/warnings/13.in +0 -0
- {yara_x-0.13.0 → yara_x-0.15.0}/lib/src/compiler/tests/testdata/warnings/13.out +0 -0
- {yara_x-0.13.0 → yara_x-0.15.0}/lib/src/compiler/tests/testdata/warnings/14.in +0 -0
- {yara_x-0.13.0 → yara_x-0.15.0}/lib/src/compiler/tests/testdata/warnings/14.out +0 -0
- {yara_x-0.13.0 → yara_x-0.15.0}/lib/src/compiler/tests/testdata/warnings/15.in +0 -0
- {yara_x-0.13.0 → yara_x-0.15.0}/lib/src/compiler/tests/testdata/warnings/15.out +0 -0
- {yara_x-0.13.0 → yara_x-0.15.0}/lib/src/compiler/tests/testdata/warnings/16.in +0 -0
- {yara_x-0.13.0 → yara_x-0.15.0}/lib/src/compiler/tests/testdata/warnings/16.out +0 -0
- {yara_x-0.13.0 → yara_x-0.15.0}/lib/src/compiler/tests/testdata/warnings/17.in +0 -0
- {yara_x-0.13.0 → yara_x-0.15.0}/lib/src/compiler/tests/testdata/warnings/17.out +0 -0
- {yara_x-0.13.0 → yara_x-0.15.0}/lib/src/compiler/tests/testdata/warnings/18.in +0 -0
- {yara_x-0.13.0 → yara_x-0.15.0}/lib/src/compiler/tests/testdata/warnings/18.out +0 -0
- {yara_x-0.13.0 → yara_x-0.15.0}/lib/src/compiler/tests/testdata/warnings/19.in +0 -0
- {yara_x-0.13.0 → yara_x-0.15.0}/lib/src/compiler/tests/testdata/warnings/19.out +0 -0
- {yara_x-0.13.0 → yara_x-0.15.0}/lib/src/compiler/tests/testdata/warnings/2.in +0 -0
- {yara_x-0.13.0 → yara_x-0.15.0}/lib/src/compiler/tests/testdata/warnings/2.out +0 -0
- {yara_x-0.13.0 → yara_x-0.15.0}/lib/src/compiler/tests/testdata/warnings/20.in +0 -0
- {yara_x-0.13.0 → yara_x-0.15.0}/lib/src/compiler/tests/testdata/warnings/20.out +0 -0
- {yara_x-0.13.0 → yara_x-0.15.0}/lib/src/compiler/tests/testdata/warnings/21.in +0 -0
- {yara_x-0.13.0 → yara_x-0.15.0}/lib/src/compiler/tests/testdata/warnings/21.out +0 -0
- {yara_x-0.13.0 → yara_x-0.15.0}/lib/src/compiler/tests/testdata/warnings/22.in +0 -0
- {yara_x-0.13.0 → yara_x-0.15.0}/lib/src/compiler/tests/testdata/warnings/22.out +0 -0
- {yara_x-0.13.0 → yara_x-0.15.0}/lib/src/compiler/tests/testdata/warnings/23.in +0 -0
- {yara_x-0.13.0 → yara_x-0.15.0}/lib/src/compiler/tests/testdata/warnings/23.out +0 -0
- {yara_x-0.13.0 → yara_x-0.15.0}/lib/src/compiler/tests/testdata/warnings/24.in +0 -0
- {yara_x-0.13.0 → yara_x-0.15.0}/lib/src/compiler/tests/testdata/warnings/24.out +0 -0
- {yara_x-0.13.0 → yara_x-0.15.0}/lib/src/compiler/tests/testdata/warnings/25.in +0 -0
- {yara_x-0.13.0 → yara_x-0.15.0}/lib/src/compiler/tests/testdata/warnings/25.out +0 -0
- {yara_x-0.13.0 → yara_x-0.15.0}/lib/src/compiler/tests/testdata/warnings/26.in +0 -0
- {yara_x-0.13.0 → yara_x-0.15.0}/lib/src/compiler/tests/testdata/warnings/26.out +0 -0
- {yara_x-0.13.0 → yara_x-0.15.0}/lib/src/compiler/tests/testdata/warnings/27.in +0 -0
- {yara_x-0.13.0 → yara_x-0.15.0}/lib/src/compiler/tests/testdata/warnings/27.out +0 -0
- {yara_x-0.13.0 → yara_x-0.15.0}/lib/src/compiler/tests/testdata/warnings/28.in +0 -0
- {yara_x-0.13.0 → yara_x-0.15.0}/lib/src/compiler/tests/testdata/warnings/28.out +0 -0
- {yara_x-0.13.0 → yara_x-0.15.0}/lib/src/compiler/tests/testdata/warnings/29.in +0 -0
- {yara_x-0.13.0 → yara_x-0.15.0}/lib/src/compiler/tests/testdata/warnings/29.out +0 -0
- {yara_x-0.13.0 → yara_x-0.15.0}/lib/src/compiler/tests/testdata/warnings/3.in +0 -0
- {yara_x-0.13.0 → yara_x-0.15.0}/lib/src/compiler/tests/testdata/warnings/3.out +0 -0
- {yara_x-0.13.0 → yara_x-0.15.0}/lib/src/compiler/tests/testdata/warnings/30.in +0 -0
- {yara_x-0.13.0 → yara_x-0.15.0}/lib/src/compiler/tests/testdata/warnings/30.out +0 -0
- {yara_x-0.13.0 → yara_x-0.15.0}/lib/src/compiler/tests/testdata/warnings/31.in +0 -0
- {yara_x-0.13.0 → yara_x-0.15.0}/lib/src/compiler/tests/testdata/warnings/31.out +0 -0
- {yara_x-0.13.0 → yara_x-0.15.0}/lib/src/compiler/tests/testdata/warnings/32.in +0 -0
- {yara_x-0.13.0 → yara_x-0.15.0}/lib/src/compiler/tests/testdata/warnings/32.out +0 -0
- {yara_x-0.13.0 → yara_x-0.15.0}/lib/src/compiler/tests/testdata/warnings/33.in +0 -0
- {yara_x-0.13.0 → yara_x-0.15.0}/lib/src/compiler/tests/testdata/warnings/33.out +0 -0
- {yara_x-0.13.0 → yara_x-0.15.0}/lib/src/compiler/tests/testdata/warnings/34.in +0 -0
- {yara_x-0.13.0 → yara_x-0.15.0}/lib/src/compiler/tests/testdata/warnings/34.out +0 -0
- {yara_x-0.13.0 → yara_x-0.15.0}/lib/src/compiler/tests/testdata/warnings/35.in +0 -0
- {yara_x-0.13.0 → yara_x-0.15.0}/lib/src/compiler/tests/testdata/warnings/35.out +0 -0
- {yara_x-0.13.0 → yara_x-0.15.0}/lib/src/compiler/tests/testdata/warnings/4.in +0 -0
- {yara_x-0.13.0 → yara_x-0.15.0}/lib/src/compiler/tests/testdata/warnings/4.out +0 -0
- {yara_x-0.13.0 → yara_x-0.15.0}/lib/src/compiler/tests/testdata/warnings/5.in +0 -0
- {yara_x-0.13.0 → yara_x-0.15.0}/lib/src/compiler/tests/testdata/warnings/5.out +0 -0
- {yara_x-0.13.0 → yara_x-0.15.0}/lib/src/compiler/tests/testdata/warnings/6.in +0 -0
- {yara_x-0.13.0 → yara_x-0.15.0}/lib/src/compiler/tests/testdata/warnings/6.out +0 -0
- {yara_x-0.13.0 → yara_x-0.15.0}/lib/src/compiler/tests/testdata/warnings/7.in +0 -0
- {yara_x-0.13.0 → yara_x-0.15.0}/lib/src/compiler/tests/testdata/warnings/7.out +0 -0
- {yara_x-0.13.0 → yara_x-0.15.0}/lib/src/compiler/tests/testdata/warnings/8.in +0 -0
- {yara_x-0.13.0 → yara_x-0.15.0}/lib/src/compiler/tests/testdata/warnings/8.out +0 -0
- {yara_x-0.13.0 → yara_x-0.15.0}/lib/src/compiler/tests/testdata/warnings/9.in +0 -0
- {yara_x-0.13.0 → yara_x-0.15.0}/lib/src/compiler/tests/testdata/warnings/9.out +0 -0
- {yara_x-0.13.0 → yara_x-0.15.0}/lib/src/compiler/tests/testdata/warnings/no_warnings.out +0 -0
- {yara_x-0.13.0 → yara_x-0.15.0}/lib/src/lib.rs +0 -0
- {yara_x-0.13.0 → yara_x-0.15.0}/lib/src/models.rs +0 -0
- {yara_x-0.13.0 → yara_x-0.15.0}/lib/src/modules/console.rs +0 -0
- {yara_x-0.13.0 → yara_x-0.15.0}/lib/src/modules/cuckoo/mod.rs +0 -0
- {yara_x-0.13.0 → yara_x-0.15.0}/lib/src/modules/cuckoo/schema.rs +0 -0
- {yara_x-0.13.0 → yara_x-0.15.0}/lib/src/modules/cuckoo/tests/mod.rs +0 -0
- {yara_x-0.13.0 → yara_x-0.15.0}/lib/src/modules/cuckoo/tests/testdata/1.json +0 -0
- {yara_x-0.13.0 → yara_x-0.15.0}/lib/src/modules/cuckoo/tests/testdata/1.yar +0 -0
- {yara_x-0.13.0 → yara_x-0.15.0}/lib/src/modules/cuckoo/tests/testdata/2.json +0 -0
- {yara_x-0.13.0 → yara_x-0.15.0}/lib/src/modules/cuckoo/tests/testdata/2.yar +0 -0
- {yara_x-0.13.0 → yara_x-0.15.0}/lib/src/modules/dotnet/mod.rs +0 -0
- {yara_x-0.13.0 → yara_x-0.15.0}/lib/src/modules/dotnet/tests/testdata/605ebe5b5f4b94e1a73e0ad1162bd542e5cb948d1a4ea5a575a14d6b9d6ee849.in +0 -0
- {yara_x-0.13.0 → yara_x-0.15.0}/lib/src/modules/dotnet/tests/testdata/86a1e48cfc843eabfe1b468ef9358c1068950f849c612ab808225b359db0bb8c.in +0 -0
- {yara_x-0.13.0 → yara_x-0.15.0}/lib/src/modules/elf/tests/mod.rs +0 -0
- {yara_x-0.13.0 → yara_x-0.15.0}/lib/src/modules/hash/mod.rs +0 -0
- {yara_x-0.13.0 → yara_x-0.15.0}/lib/src/modules/hash/tests/mod.rs +0 -0
- {yara_x-0.13.0 → yara_x-0.15.0}/lib/src/modules/macho/tests/mod.rs +0 -0
- {yara_x-0.13.0 → yara_x-0.15.0}/lib/src/modules/magic/tests/mod.rs +0 -0
- {yara_x-0.13.0 → yara_x-0.15.0}/lib/src/modules/math.rs +0 -0
- {yara_x-0.13.0 → yara_x-0.15.0}/lib/src/modules/pe/rva2off.rs +0 -0
- {yara_x-0.13.0 → yara_x-0.15.0}/lib/src/modules/pe/tests/mod.rs +0 -0
- {yara_x-0.13.0 → yara_x-0.15.0}/lib/src/modules/protos/console.proto +0 -0
- {yara_x-0.13.0 → yara_x-0.15.0}/lib/src/modules/protos/cuckoo.proto +0 -0
- {yara_x-0.13.0 → yara_x-0.15.0}/lib/src/modules/protos/dotnet.proto +0 -0
- {yara_x-0.13.0 → yara_x-0.15.0}/lib/src/modules/protos/elf.proto +0 -0
- {yara_x-0.13.0 → yara_x-0.15.0}/lib/src/modules/protos/hash.proto +0 -0
- {yara_x-0.13.0 → yara_x-0.15.0}/lib/src/modules/protos/lnk.proto +0 -0
- {yara_x-0.13.0 → yara_x-0.15.0}/lib/src/modules/protos/macho.proto +0 -0
- {yara_x-0.13.0 → yara_x-0.15.0}/lib/src/modules/protos/magic.proto +0 -0
- {yara_x-0.13.0 → yara_x-0.15.0}/lib/src/modules/protos/math.proto +0 -0
- {yara_x-0.13.0 → yara_x-0.15.0}/lib/src/modules/protos/mods.proto +0 -0
- {yara_x-0.13.0 → yara_x-0.15.0}/lib/src/modules/protos/pe.proto +0 -0
- {yara_x-0.13.0 → yara_x-0.15.0}/lib/src/modules/protos/string.proto +0 -0
- {yara_x-0.13.0 → yara_x-0.15.0}/lib/src/modules/protos/test_proto3.proto +0 -0
- {yara_x-0.13.0 → yara_x-0.15.0}/lib/src/modules/protos/text.proto +0 -0
- {yara_x-0.13.0 → yara_x-0.15.0}/lib/src/modules/protos/time.proto +0 -0
- {yara_x-0.13.0 → yara_x-0.15.0}/lib/src/modules/protos/yaml.proto +0 -0
- {yara_x-0.13.0 → yara_x-0.15.0}/lib/src/modules/protos/yara.proto +0 -0
- {yara_x-0.13.0 → yara_x-0.15.0}/lib/src/modules/string.rs +0 -0
- {yara_x-0.13.0 → yara_x-0.15.0}/lib/src/modules/test_proto3/mod.rs +0 -0
- {yara_x-0.13.0 → yara_x-0.15.0}/lib/src/modules/tests.rs +0 -0
- {yara_x-0.13.0 → yara_x-0.15.0}/lib/src/modules/text.rs +0 -0
- {yara_x-0.13.0 → yara_x-0.15.0}/lib/src/modules/time.rs +0 -0
- {yara_x-0.13.0 → yara_x-0.15.0}/lib/src/modules/utils/asn1.rs +0 -0
- {yara_x-0.13.0 → yara_x-0.15.0}/lib/src/modules/utils/mod.rs +0 -0
- {yara_x-0.13.0 → yara_x-0.15.0}/lib/src/re/bitmapset.rs +0 -0
- {yara_x-0.13.0 → yara_x-0.15.0}/lib/src/re/fast/fastvm.rs +0 -0
- {yara_x-0.13.0 → yara_x-0.15.0}/lib/src/re/fast/instr.rs +0 -0
- {yara_x-0.13.0 → yara_x-0.15.0}/lib/src/re/fast/mod.rs +0 -0
- {yara_x-0.13.0 → yara_x-0.15.0}/lib/src/re/parser.rs +0 -0
- {yara_x-0.13.0 → yara_x-0.15.0}/lib/src/re/thompson/mod.rs +0 -0
- {yara_x-0.13.0 → yara_x-0.15.0}/lib/src/scanner/matches.rs +0 -0
- {yara_x-0.13.0 → yara_x-0.15.0}/lib/src/scanner/tests.rs +0 -0
- {yara_x-0.13.0 → yara_x-0.15.0}/lib/src/string_pool.rs +0 -0
- {yara_x-0.13.0 → yara_x-0.15.0}/lib/src/tests/testdata/jumps.bin +0 -0
- {yara_x-0.13.0 → yara_x-0.15.0}/lib/src/types/array.rs +0 -0
- {yara_x-0.13.0 → yara_x-0.15.0}/lib/src/types/func.rs +0 -0
- {yara_x-0.13.0 → yara_x-0.15.0}/lib/src/types/map.rs +0 -0
- {yara_x-0.13.0 → yara_x-0.15.0}/lib/src/types/mod.rs +0 -0
- {yara_x-0.13.0 → yara_x-0.15.0}/lib/src/variables.rs +0 -0
- {yara_x-0.13.0 → yara_x-0.15.0}/lib/src/wasm/builder.rs +0 -0
- {yara_x-0.13.0 → yara_x-0.15.0}/lib/src/wasm/mod.rs +0 -0
- {yara_x-0.13.0 → yara_x-0.15.0}/macros/Cargo.lock +0 -0
- {yara_x-0.13.0 → yara_x-0.15.0}/macros/Cargo.toml +0 -0
- {yara_x-0.13.0 → yara_x-0.15.0}/macros/src/error.rs +0 -0
- {yara_x-0.13.0 → yara_x-0.15.0}/macros/src/lib.rs +0 -0
- {yara_x-0.13.0 → yara_x-0.15.0}/macros/src/module_export.rs +0 -0
- {yara_x-0.13.0 → yara_x-0.15.0}/macros/src/module_main.rs +0 -0
- {yara_x-0.13.0 → yara_x-0.15.0}/macros/src/wasm_export.rs +0 -0
- {yara_x-0.13.0 → yara_x-0.15.0}/parser/Cargo.toml +0 -0
- {yara_x-0.13.0 → yara_x-0.15.0}/parser/README.md +0 -0
- {yara_x-0.13.0 → yara_x-0.15.0}/parser/src/ast/ascii_tree.rs +0 -0
- {yara_x-0.13.0 → yara_x-0.15.0}/parser/src/ast/errors.rs +0 -0
- {yara_x-0.13.0 → yara_x-0.15.0}/parser/src/cst/mod.rs +0 -0
- {yara_x-0.13.0 → yara_x-0.15.0}/parser/src/cst/syntax_stream.rs +0 -0
- {yara_x-0.13.0 → yara_x-0.15.0}/parser/src/cst/tests.rs +0 -0
- {yara_x-0.13.0 → yara_x-0.15.0}/parser/src/lib.rs +0 -0
- {yara_x-0.13.0 → yara_x-0.15.0}/parser/src/parser/tests/testdata/arithmetic-ops.ast +0 -0
- {yara_x-0.13.0 → yara_x-0.15.0}/parser/src/parser/tests/testdata/arithmetic-ops.cst +0 -0
- {yara_x-0.13.0 → yara_x-0.15.0}/parser/src/parser/tests/testdata/arithmetic-ops.in +0 -0
- {yara_x-0.13.0 → yara_x-0.15.0}/parser/src/parser/tests/testdata/basic-1.ast +0 -0
- {yara_x-0.13.0 → yara_x-0.15.0}/parser/src/parser/tests/testdata/basic-1.cst +0 -0
- {yara_x-0.13.0 → yara_x-0.15.0}/parser/src/parser/tests/testdata/basic-1.in +0 -0
- {yara_x-0.13.0 → yara_x-0.15.0}/parser/src/parser/tests/testdata/basic-2.ast +0 -0
- {yara_x-0.13.0 → yara_x-0.15.0}/parser/src/parser/tests/testdata/basic-2.cst +0 -0
- {yara_x-0.13.0 → yara_x-0.15.0}/parser/src/parser/tests/testdata/basic-2.in +0 -0
- {yara_x-0.13.0 → yara_x-0.15.0}/parser/src/parser/tests/testdata/basic-3.ast +0 -0
- {yara_x-0.13.0 → yara_x-0.15.0}/parser/src/parser/tests/testdata/basic-3.cst +0 -0
- {yara_x-0.13.0 → yara_x-0.15.0}/parser/src/parser/tests/testdata/basic-3.in +0 -0
- {yara_x-0.13.0 → yara_x-0.15.0}/parser/src/parser/tests/testdata/basic-4.ast +0 -0
- {yara_x-0.13.0 → yara_x-0.15.0}/parser/src/parser/tests/testdata/basic-4.cst +0 -0
- {yara_x-0.13.0 → yara_x-0.15.0}/parser/src/parser/tests/testdata/basic-4.in +0 -0
- {yara_x-0.13.0 → yara_x-0.15.0}/parser/src/parser/tests/testdata/basic-error-1.ast +0 -0
- {yara_x-0.13.0 → yara_x-0.15.0}/parser/src/parser/tests/testdata/basic-error-1.cst +0 -0
- {yara_x-0.13.0 → yara_x-0.15.0}/parser/src/parser/tests/testdata/basic-error-1.in +0 -0
- {yara_x-0.13.0 → yara_x-0.15.0}/parser/src/parser/tests/testdata/basic-error-2.ast +0 -0
- {yara_x-0.13.0 → yara_x-0.15.0}/parser/src/parser/tests/testdata/basic-error-2.cst +0 -0
- {yara_x-0.13.0 → yara_x-0.15.0}/parser/src/parser/tests/testdata/basic-error-2.in +0 -0
- {yara_x-0.13.0 → yara_x-0.15.0}/parser/src/parser/tests/testdata/basic-error-3.ast +0 -0
- {yara_x-0.13.0 → yara_x-0.15.0}/parser/src/parser/tests/testdata/basic-error-3.cst +0 -0
- {yara_x-0.13.0 → yara_x-0.15.0}/parser/src/parser/tests/testdata/basic-error-3.in +0 -0
- {yara_x-0.13.0 → yara_x-0.15.0}/parser/src/parser/tests/testdata/basic-error-4.ast +0 -0
- {yara_x-0.13.0 → yara_x-0.15.0}/parser/src/parser/tests/testdata/basic-error-4.cst +0 -0
- {yara_x-0.13.0 → yara_x-0.15.0}/parser/src/parser/tests/testdata/basic-error-4.in +0 -0
- {yara_x-0.13.0 → yara_x-0.15.0}/parser/src/parser/tests/testdata/basic-error-5.ast +0 -0
- {yara_x-0.13.0 → yara_x-0.15.0}/parser/src/parser/tests/testdata/basic-error-5.cst +0 -0
- {yara_x-0.13.0 → yara_x-0.15.0}/parser/src/parser/tests/testdata/basic-error-5.in +0 -0
- {yara_x-0.13.0 → yara_x-0.15.0}/parser/src/parser/tests/testdata/bitwise-ops-error-1.ast +0 -0
- {yara_x-0.13.0 → yara_x-0.15.0}/parser/src/parser/tests/testdata/bitwise-ops-error-1.cst +0 -0
- {yara_x-0.13.0 → yara_x-0.15.0}/parser/src/parser/tests/testdata/bitwise-ops-error-1.in +0 -0
- {yara_x-0.13.0 → yara_x-0.15.0}/parser/src/parser/tests/testdata/bitwise-ops.ast +0 -0
- {yara_x-0.13.0 → yara_x-0.15.0}/parser/src/parser/tests/testdata/bitwise-ops.cst +0 -0
- {yara_x-0.13.0 → yara_x-0.15.0}/parser/src/parser/tests/testdata/bitwise-ops.in +0 -0
- {yara_x-0.13.0 → yara_x-0.15.0}/parser/src/parser/tests/testdata/comments.ast +0 -0
- {yara_x-0.13.0 → yara_x-0.15.0}/parser/src/parser/tests/testdata/comments.cst +0 -0
- {yara_x-0.13.0 → yara_x-0.15.0}/parser/src/parser/tests/testdata/comments.in +0 -0
- {yara_x-0.13.0 → yara_x-0.15.0}/parser/src/parser/tests/testdata/expr-1.ast +0 -0
- {yara_x-0.13.0 → yara_x-0.15.0}/parser/src/parser/tests/testdata/expr-1.cst +0 -0
- {yara_x-0.13.0 → yara_x-0.15.0}/parser/src/parser/tests/testdata/expr-1.in +0 -0
- {yara_x-0.13.0 → yara_x-0.15.0}/parser/src/parser/tests/testdata/expr-2.ast +0 -0
- {yara_x-0.13.0 → yara_x-0.15.0}/parser/src/parser/tests/testdata/expr-2.cst +0 -0
- {yara_x-0.13.0 → yara_x-0.15.0}/parser/src/parser/tests/testdata/expr-2.in +0 -0
- {yara_x-0.13.0 → yara_x-0.15.0}/parser/src/parser/tests/testdata/expr-3.ast +0 -0
- {yara_x-0.13.0 → yara_x-0.15.0}/parser/src/parser/tests/testdata/expr-3.cst +0 -0
- {yara_x-0.13.0 → yara_x-0.15.0}/parser/src/parser/tests/testdata/expr-3.in +0 -0
- {yara_x-0.13.0 → yara_x-0.15.0}/parser/src/parser/tests/testdata/expr-4.ast +0 -0
- {yara_x-0.13.0 → yara_x-0.15.0}/parser/src/parser/tests/testdata/expr-4.cst +0 -0
- {yara_x-0.13.0 → yara_x-0.15.0}/parser/src/parser/tests/testdata/expr-4.in +0 -0
- {yara_x-0.13.0 → yara_x-0.15.0}/parser/src/parser/tests/testdata/expr-5.ast +0 -0
- {yara_x-0.13.0 → yara_x-0.15.0}/parser/src/parser/tests/testdata/expr-5.cst +0 -0
- {yara_x-0.13.0 → yara_x-0.15.0}/parser/src/parser/tests/testdata/expr-5.in +0 -0
- {yara_x-0.13.0 → yara_x-0.15.0}/parser/src/parser/tests/testdata/expr-6.ast +0 -0
- {yara_x-0.13.0 → yara_x-0.15.0}/parser/src/parser/tests/testdata/expr-6.cst +0 -0
- {yara_x-0.13.0 → yara_x-0.15.0}/parser/src/parser/tests/testdata/expr-6.in +0 -0
- {yara_x-0.13.0 → yara_x-0.15.0}/parser/src/parser/tests/testdata/expr-error-1.ast +0 -0
- {yara_x-0.13.0 → yara_x-0.15.0}/parser/src/parser/tests/testdata/expr-error-1.cst +0 -0
- {yara_x-0.13.0 → yara_x-0.15.0}/parser/src/parser/tests/testdata/expr-error-1.in +0 -0
- {yara_x-0.13.0 → yara_x-0.15.0}/parser/src/parser/tests/testdata/for-1.ast +0 -0
- {yara_x-0.13.0 → yara_x-0.15.0}/parser/src/parser/tests/testdata/for-1.cst +0 -0
- {yara_x-0.13.0 → yara_x-0.15.0}/parser/src/parser/tests/testdata/for-1.in +0 -0
- {yara_x-0.13.0 → yara_x-0.15.0}/parser/src/parser/tests/testdata/for-2.ast +0 -0
- {yara_x-0.13.0 → yara_x-0.15.0}/parser/src/parser/tests/testdata/for-2.cst +0 -0
- {yara_x-0.13.0 → yara_x-0.15.0}/parser/src/parser/tests/testdata/for-2.in +0 -0
- {yara_x-0.13.0 → yara_x-0.15.0}/parser/src/parser/tests/testdata/for-3.ast +0 -0
- {yara_x-0.13.0 → yara_x-0.15.0}/parser/src/parser/tests/testdata/for-3.cst +0 -0
- {yara_x-0.13.0 → yara_x-0.15.0}/parser/src/parser/tests/testdata/for-3.in +0 -0
- {yara_x-0.13.0 → yara_x-0.15.0}/parser/src/parser/tests/testdata/for-4.ast +0 -0
- {yara_x-0.13.0 → yara_x-0.15.0}/parser/src/parser/tests/testdata/for-4.cst +0 -0
- {yara_x-0.13.0 → yara_x-0.15.0}/parser/src/parser/tests/testdata/for-4.in +0 -0
- {yara_x-0.13.0 → yara_x-0.15.0}/parser/src/parser/tests/testdata/for-5.ast +0 -0
- {yara_x-0.13.0 → yara_x-0.15.0}/parser/src/parser/tests/testdata/for-5.cst +0 -0
- {yara_x-0.13.0 → yara_x-0.15.0}/parser/src/parser/tests/testdata/for-5.in +0 -0
- {yara_x-0.13.0 → yara_x-0.15.0}/parser/src/parser/tests/testdata/for-error-1.ast +0 -0
- {yara_x-0.13.0 → yara_x-0.15.0}/parser/src/parser/tests/testdata/for-error-1.cst +0 -0
- {yara_x-0.13.0 → yara_x-0.15.0}/parser/src/parser/tests/testdata/for-error-1.in +0 -0
- {yara_x-0.13.0 → yara_x-0.15.0}/parser/src/parser/tests/testdata/func-call.ast +0 -0
- {yara_x-0.13.0 → yara_x-0.15.0}/parser/src/parser/tests/testdata/func-call.cst +0 -0
- {yara_x-0.13.0 → yara_x-0.15.0}/parser/src/parser/tests/testdata/func-call.in +0 -0
- {yara_x-0.13.0 → yara_x-0.15.0}/parser/src/parser/tests/testdata/hex-patterns-1.ast +0 -0
- {yara_x-0.13.0 → yara_x-0.15.0}/parser/src/parser/tests/testdata/hex-patterns-1.cst +0 -0
- {yara_x-0.13.0 → yara_x-0.15.0}/parser/src/parser/tests/testdata/hex-patterns-1.in +0 -0
- {yara_x-0.13.0 → yara_x-0.15.0}/parser/src/parser/tests/testdata/hex-patterns-2.ast +0 -0
- {yara_x-0.13.0 → yara_x-0.15.0}/parser/src/parser/tests/testdata/hex-patterns-2.cst +0 -0
- {yara_x-0.13.0 → yara_x-0.15.0}/parser/src/parser/tests/testdata/hex-patterns-2.in +0 -0
- {yara_x-0.13.0 → yara_x-0.15.0}/parser/src/parser/tests/testdata/hex-patterns-3.ast +0 -0
- {yara_x-0.13.0 → yara_x-0.15.0}/parser/src/parser/tests/testdata/hex-patterns-3.cst +0 -0
- {yara_x-0.13.0 → yara_x-0.15.0}/parser/src/parser/tests/testdata/hex-patterns-3.in +0 -0
- {yara_x-0.13.0 → yara_x-0.15.0}/parser/src/parser/tests/testdata/hex-patterns-error-1.ast +0 -0
- {yara_x-0.13.0 → yara_x-0.15.0}/parser/src/parser/tests/testdata/hex-patterns-error-1.cst +0 -0
- {yara_x-0.13.0 → yara_x-0.15.0}/parser/src/parser/tests/testdata/hex-patterns-error-1.in +0 -0
- {yara_x-0.13.0 → yara_x-0.15.0}/parser/src/parser/tests/testdata/hex-patterns-error-2.ast +0 -0
- {yara_x-0.13.0 → yara_x-0.15.0}/parser/src/parser/tests/testdata/hex-patterns-error-2.cst +0 -0
- {yara_x-0.13.0 → yara_x-0.15.0}/parser/src/parser/tests/testdata/hex-patterns-error-2.in +0 -0
- {yara_x-0.13.0 → yara_x-0.15.0}/parser/src/parser/tests/testdata/meta-error-1.ast +0 -0
- {yara_x-0.13.0 → yara_x-0.15.0}/parser/src/parser/tests/testdata/meta-error-1.cst +0 -0
- {yara_x-0.13.0 → yara_x-0.15.0}/parser/src/parser/tests/testdata/meta-error-1.in +0 -0
- {yara_x-0.13.0 → yara_x-0.15.0}/parser/src/parser/tests/testdata/meta-error-2.ast +0 -0
- {yara_x-0.13.0 → yara_x-0.15.0}/parser/src/parser/tests/testdata/meta-error-2.cst +0 -0
- {yara_x-0.13.0 → yara_x-0.15.0}/parser/src/parser/tests/testdata/meta-error-2.in +0 -0
- {yara_x-0.13.0 → yara_x-0.15.0}/parser/src/parser/tests/testdata/meta-error-3.ast +0 -0
- {yara_x-0.13.0 → yara_x-0.15.0}/parser/src/parser/tests/testdata/meta-error-3.cst +0 -0
- {yara_x-0.13.0 → yara_x-0.15.0}/parser/src/parser/tests/testdata/meta-error-3.in +0 -0
- {yara_x-0.13.0 → yara_x-0.15.0}/parser/src/parser/tests/testdata/meta-error-4.ast +0 -0
- {yara_x-0.13.0 → yara_x-0.15.0}/parser/src/parser/tests/testdata/meta-error-4.cst +0 -0
- {yara_x-0.13.0 → yara_x-0.15.0}/parser/src/parser/tests/testdata/meta-error-4.in +0 -0
- {yara_x-0.13.0 → yara_x-0.15.0}/parser/src/parser/tests/testdata/meta-error-5.ast +0 -0
- {yara_x-0.13.0 → yara_x-0.15.0}/parser/src/parser/tests/testdata/meta-error-5.cst +0 -0
- {yara_x-0.13.0 → yara_x-0.15.0}/parser/src/parser/tests/testdata/meta-error-5.in +0 -0
- {yara_x-0.13.0 → yara_x-0.15.0}/parser/src/parser/tests/testdata/meta-error-6.ast +0 -0
- {yara_x-0.13.0 → yara_x-0.15.0}/parser/src/parser/tests/testdata/meta-error-6.cst +0 -0
- {yara_x-0.13.0 → yara_x-0.15.0}/parser/src/parser/tests/testdata/meta-error-6.in +0 -0
- {yara_x-0.13.0 → yara_x-0.15.0}/parser/src/parser/tests/testdata/meta.ast +0 -0
- {yara_x-0.13.0 → yara_x-0.15.0}/parser/src/parser/tests/testdata/meta.cst +0 -0
- {yara_x-0.13.0 → yara_x-0.15.0}/parser/src/parser/tests/testdata/meta.in +0 -0
- {yara_x-0.13.0 → yara_x-0.15.0}/parser/src/parser/tests/testdata/of-1.ast +0 -0
- {yara_x-0.13.0 → yara_x-0.15.0}/parser/src/parser/tests/testdata/of-1.cst +0 -0
- {yara_x-0.13.0 → yara_x-0.15.0}/parser/src/parser/tests/testdata/of-1.in +0 -0
- {yara_x-0.13.0 → yara_x-0.15.0}/parser/src/parser/tests/testdata/of-error-1.ast +0 -0
- {yara_x-0.13.0 → yara_x-0.15.0}/parser/src/parser/tests/testdata/of-error-1.cst +0 -0
- {yara_x-0.13.0 → yara_x-0.15.0}/parser/src/parser/tests/testdata/of-error-1.in +0 -0
- {yara_x-0.13.0 → yara_x-0.15.0}/parser/src/parser/tests/testdata/pattern-mods-1.ast +0 -0
- {yara_x-0.13.0 → yara_x-0.15.0}/parser/src/parser/tests/testdata/pattern-mods-1.cst +0 -0
- {yara_x-0.13.0 → yara_x-0.15.0}/parser/src/parser/tests/testdata/pattern-mods-1.in +0 -0
- {yara_x-0.13.0 → yara_x-0.15.0}/parser/src/parser/tests/testdata/pattern-mods-error-1.ast +0 -0
- {yara_x-0.13.0 → yara_x-0.15.0}/parser/src/parser/tests/testdata/pattern-mods-error-1.cst +0 -0
- {yara_x-0.13.0 → yara_x-0.15.0}/parser/src/parser/tests/testdata/pattern-mods-error-1.in +0 -0
- {yara_x-0.13.0 → yara_x-0.15.0}/parser/src/parser/tests/testdata/patterns-1.ast +0 -0
- {yara_x-0.13.0 → yara_x-0.15.0}/parser/src/parser/tests/testdata/patterns-1.cst +0 -0
- {yara_x-0.13.0 → yara_x-0.15.0}/parser/src/parser/tests/testdata/patterns-1.in +0 -0
- {yara_x-0.13.0 → yara_x-0.15.0}/parser/src/parser/tests/testdata/patterns-2.ast +0 -0
- {yara_x-0.13.0 → yara_x-0.15.0}/parser/src/parser/tests/testdata/patterns-2.cst +0 -0
- {yara_x-0.13.0 → yara_x-0.15.0}/parser/src/parser/tests/testdata/patterns-2.in +0 -0
- {yara_x-0.13.0 → yara_x-0.15.0}/parser/src/parser/tests/testdata/patterns-3.ast +0 -0
- {yara_x-0.13.0 → yara_x-0.15.0}/parser/src/parser/tests/testdata/patterns-3.cst +0 -0
- {yara_x-0.13.0 → yara_x-0.15.0}/parser/src/parser/tests/testdata/patterns-3.in +0 -0
- {yara_x-0.13.0 → yara_x-0.15.0}/parser/src/parser/tests/testdata/patterns-error-1.ast +0 -0
- {yara_x-0.13.0 → yara_x-0.15.0}/parser/src/parser/tests/testdata/patterns-error-1.cst +0 -0
- {yara_x-0.13.0 → yara_x-0.15.0}/parser/src/parser/tests/testdata/patterns-error-1.in +0 -0
- {yara_x-0.13.0 → yara_x-0.15.0}/parser/src/parser/tests/testdata/patterns-error-2.ast +0 -0
- {yara_x-0.13.0 → yara_x-0.15.0}/parser/src/parser/tests/testdata/patterns-error-2.cst +0 -0
- {yara_x-0.13.0 → yara_x-0.15.0}/parser/src/parser/tests/testdata/patterns-error-2.in +0 -0
- {yara_x-0.13.0 → yara_x-0.15.0}/parser/src/parser/tests/testdata/patterns-error-3.ast +0 -0
- {yara_x-0.13.0 → yara_x-0.15.0}/parser/src/parser/tests/testdata/patterns-error-3.cst +0 -0
- {yara_x-0.13.0 → yara_x-0.15.0}/parser/src/parser/tests/testdata/patterns-error-3.in +0 -0
- {yara_x-0.13.0 → yara_x-0.15.0}/parser/src/parser/tests/testdata/patterns-error-4.ast +0 -0
- {yara_x-0.13.0 → yara_x-0.15.0}/parser/src/parser/tests/testdata/patterns-error-4.cst +0 -0
- {yara_x-0.13.0 → yara_x-0.15.0}/parser/src/parser/tests/testdata/patterns-error-4.in +0 -0
- {yara_x-0.13.0 → yara_x-0.15.0}/parser/src/parser/tests/testdata/patterns-error-5.ast +0 -0
- {yara_x-0.13.0 → yara_x-0.15.0}/parser/src/parser/tests/testdata/patterns-error-5.cst +0 -0
- {yara_x-0.13.0 → yara_x-0.15.0}/parser/src/parser/tests/testdata/patterns-error-5.in +0 -0
- {yara_x-0.13.0 → yara_x-0.15.0}/parser/src/parser/tests/testdata/patterns-error-6.ast +0 -0
- {yara_x-0.13.0 → yara_x-0.15.0}/parser/src/parser/tests/testdata/patterns-error-6.cst +0 -0
- {yara_x-0.13.0 → yara_x-0.15.0}/parser/src/parser/tests/testdata/patterns-error-6.in +0 -0
- {yara_x-0.13.0 → yara_x-0.15.0}/parser/src/parser/tests/testdata/patterns-error-7.ast +0 -0
- {yara_x-0.13.0 → yara_x-0.15.0}/parser/src/parser/tests/testdata/patterns-error-7.cst +0 -0
- {yara_x-0.13.0 → yara_x-0.15.0}/parser/src/parser/tests/testdata/patterns-error-7.in +0 -0
- {yara_x-0.13.0 → yara_x-0.15.0}/parser/src/parser/tests/testdata/rule-mods-1.ast +0 -0
- {yara_x-0.13.0 → yara_x-0.15.0}/parser/src/parser/tests/testdata/rule-mods-1.cst +0 -0
- {yara_x-0.13.0 → yara_x-0.15.0}/parser/src/parser/tests/testdata/rule-mods-1.in +0 -0
- {yara_x-0.13.0 → yara_x-0.15.0}/parser/src/parser/tests/testdata/rule-tags-error-1.ast +0 -0
- {yara_x-0.13.0 → yara_x-0.15.0}/parser/src/parser/tests/testdata/rule-tags-error-1.cst +0 -0
- {yara_x-0.13.0 → yara_x-0.15.0}/parser/src/parser/tests/testdata/rule-tags-error-1.in +0 -0
- {yara_x-0.13.0 → yara_x-0.15.0}/parser/src/parser/tests/testdata/rule-tags-error-2.ast +0 -0
- {yara_x-0.13.0 → yara_x-0.15.0}/parser/src/parser/tests/testdata/rule-tags-error-2.cst +0 -0
- {yara_x-0.13.0 → yara_x-0.15.0}/parser/src/parser/tests/testdata/rule-tags-error-2.in +0 -0
- {yara_x-0.13.0 → yara_x-0.15.0}/parser/src/parser/tests/testdata/rule-tags-error-3.ast +0 -0
- {yara_x-0.13.0 → yara_x-0.15.0}/parser/src/parser/tests/testdata/rule-tags-error-3.cst +0 -0
- {yara_x-0.13.0 → yara_x-0.15.0}/parser/src/parser/tests/testdata/rule-tags-error-3.in +0 -0
- {yara_x-0.13.0 → yara_x-0.15.0}/parser/src/parser/tests/testdata/rule-tags.ast +0 -0
- {yara_x-0.13.0 → yara_x-0.15.0}/parser/src/parser/tests/testdata/rule-tags.cst +0 -0
- {yara_x-0.13.0 → yara_x-0.15.0}/parser/src/parser/tests/testdata/rule-tags.in +0 -0
- {yara_x-0.13.0 → yara_x-0.15.0}/parser/src/parser/tests/testdata/with-1.ast +0 -0
- {yara_x-0.13.0 → yara_x-0.15.0}/parser/src/parser/tests/testdata/with-1.cst +0 -0
- {yara_x-0.13.0 → yara_x-0.15.0}/parser/src/parser/tests/testdata/with-1.in +0 -0
- {yara_x-0.13.0 → yara_x-0.15.0}/parser/src/parser/tests/testdata/with-2.ast +0 -0
- {yara_x-0.13.0 → yara_x-0.15.0}/parser/src/parser/tests/testdata/with-2.cst +0 -0
- {yara_x-0.13.0 → yara_x-0.15.0}/parser/src/parser/tests/testdata/with-2.in +0 -0
- {yara_x-0.13.0 → yara_x-0.15.0}/parser/src/parser/tests/testdata/with-error-1.ast +0 -0
- {yara_x-0.13.0 → yara_x-0.15.0}/parser/src/parser/tests/testdata/with-error-1.cst +0 -0
- {yara_x-0.13.0 → yara_x-0.15.0}/parser/src/parser/tests/testdata/with-error-1.in +0 -0
- {yara_x-0.13.0 → yara_x-0.15.0}/parser/src/parser/tests/testdata/with-error-2.ast +0 -0
- {yara_x-0.13.0 → yara_x-0.15.0}/parser/src/parser/tests/testdata/with-error-2.cst +0 -0
- {yara_x-0.13.0 → yara_x-0.15.0}/parser/src/parser/tests/testdata/with-error-2.in +0 -0
- {yara_x-0.13.0 → yara_x-0.15.0}/parser/src/parser/tests/testdata/with-error-3.ast +0 -0
- {yara_x-0.13.0 → yara_x-0.15.0}/parser/src/parser/tests/testdata/with-error-3.cst +0 -0
- {yara_x-0.13.0 → yara_x-0.15.0}/parser/src/parser/tests/testdata/with-error-3.in +0 -0
- {yara_x-0.13.0 → yara_x-0.15.0}/parser/src/parser/token_stream.rs +0 -0
- {yara_x-0.13.0 → yara_x-0.15.0}/parser/src/tokenizer/tests.rs +0 -0
- {yara_x-0.13.0 → yara_x-0.15.0}/proto/Cargo.lock +0 -0
- {yara_x-0.13.0 → yara_x-0.15.0}/proto/Cargo.toml +0 -0
- {yara_x-0.13.0 → yara_x-0.15.0}/proto/README.md +0 -0
- {yara_x-0.13.0 → yara_x-0.15.0}/proto/build.rs +0 -0
- {yara_x-0.13.0 → yara_x-0.15.0}/proto/src/lib.rs +0 -0
- {yara_x-0.13.0 → yara_x-0.15.0}/proto/src/yara.proto +0 -0
- {yara_x-0.13.0 → yara_x-0.15.0}/proto-yaml/Cargo.toml +0 -0
- {yara_x-0.13.0 → yara_x-0.15.0}/proto-yaml/README.md +0 -0
- {yara_x-0.13.0 → yara_x-0.15.0}/proto-yaml/build.rs +0 -0
- {yara_x-0.13.0 → yara_x-0.15.0}/proto-yaml/src/lib.rs +0 -0
- {yara_x-0.13.0 → yara_x-0.15.0}/proto-yaml/src/tests/mod.rs +0 -0
- {yara_x-0.13.0 → yara_x-0.15.0}/proto-yaml/src/tests/test.proto +0 -0
- {yara_x-0.13.0 → yara_x-0.15.0}/proto-yaml/src/tests/testdata/1.in +0 -0
- {yara_x-0.13.0 → yara_x-0.15.0}/proto-yaml/src/tests/testdata/1.out +0 -0
- {yara_x-0.13.0 → yara_x-0.15.0}/proto-yaml/src/yaml.proto +0 -0
- {yara_x-0.13.0 → yara_x-0.15.0}/py/README.md +0 -0
- {yara_x-0.13.0 → yara_x-0.15.0}/py/build.rs +0 -0
- {yara_x-0.13.0 → yara_x-0.15.0}/pyproject.toml +0 -0
|
@@ -1,6 +1,15 @@
|
|
|
1
1
|
# This file is automatically @generated by Cargo.
|
|
2
2
|
# It is not intended for manual editing.
|
|
3
|
-
version =
|
|
3
|
+
version = 4
|
|
4
|
+
|
|
5
|
+
[[package]]
|
|
6
|
+
name = "addr2line"
|
|
7
|
+
version = "0.24.2"
|
|
8
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
9
|
+
checksum = "dfbe277e56a376000877090da837660b4427aad530e3028d44e0bffe4f89a1c1"
|
|
10
|
+
dependencies = [
|
|
11
|
+
"gimli 0.31.1",
|
|
12
|
+
]
|
|
4
13
|
|
|
5
14
|
[[package]]
|
|
6
15
|
name = "adler2"
|
|
@@ -27,10 +36,10 @@ checksum = "e89da841a80418a9b391ebaea17f5c112ffaaa96f621d2c285b5174da76b9011"
|
|
|
27
36
|
dependencies = [
|
|
28
37
|
"cfg-if",
|
|
29
38
|
"const-random",
|
|
30
|
-
"getrandom",
|
|
39
|
+
"getrandom 0.2.16",
|
|
31
40
|
"once_cell",
|
|
32
41
|
"version_check",
|
|
33
|
-
"zerocopy",
|
|
42
|
+
"zerocopy 0.7.35",
|
|
34
43
|
]
|
|
35
44
|
|
|
36
45
|
[[package]]
|
|
@@ -141,9 +150,9 @@ dependencies = [
|
|
|
141
150
|
|
|
142
151
|
[[package]]
|
|
143
152
|
name = "anyhow"
|
|
144
|
-
version = "1.0.
|
|
153
|
+
version = "1.0.98"
|
|
145
154
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
146
|
-
checksum = "
|
|
155
|
+
checksum = "e16d2d3311acee920a9eb8d33b8cbc1787ce4a264e85f964c2404b969bdcd487"
|
|
147
156
|
|
|
148
157
|
[[package]]
|
|
149
158
|
name = "arbitrary"
|
|
@@ -171,9 +180,9 @@ checksum = "ca6c635b3aa665c649ad1415f1573c85957dfa47690ec27aebe7ec17efe3c643"
|
|
|
171
180
|
|
|
172
181
|
[[package]]
|
|
173
182
|
name = "asn1-rs"
|
|
174
|
-
version = "0.7.
|
|
183
|
+
version = "0.7.1"
|
|
175
184
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
176
|
-
checksum = "
|
|
185
|
+
checksum = "56624a96882bb8c26d61312ae18cb45868e5a9992ea73c58e45c3101e56a1e60"
|
|
177
186
|
dependencies = [
|
|
178
187
|
"asn1-rs-derive",
|
|
179
188
|
"asn1-rs-impl",
|
|
@@ -181,7 +190,7 @@ dependencies = [
|
|
|
181
190
|
"nom 7.1.3",
|
|
182
191
|
"num-traits",
|
|
183
192
|
"rusticata-macros",
|
|
184
|
-
"thiserror 2.0.
|
|
193
|
+
"thiserror 2.0.12",
|
|
185
194
|
"time",
|
|
186
195
|
]
|
|
187
196
|
|
|
@@ -193,7 +202,7 @@ checksum = "3109e49b1e4909e9db6515a30c633684d68cdeaa252f215214cb4fa1a5bfee2c"
|
|
|
193
202
|
dependencies = [
|
|
194
203
|
"proc-macro2",
|
|
195
204
|
"quote",
|
|
196
|
-
"syn 2.0.
|
|
205
|
+
"syn 2.0.101",
|
|
197
206
|
"synstructure",
|
|
198
207
|
]
|
|
199
208
|
|
|
@@ -205,14 +214,14 @@ checksum = "7b18050c2cd6fe86c3a76584ef5e0baf286d038cda203eb6223df2cc413565f7"
|
|
|
205
214
|
dependencies = [
|
|
206
215
|
"proc-macro2",
|
|
207
216
|
"quote",
|
|
208
|
-
"syn 2.0.
|
|
217
|
+
"syn 2.0.101",
|
|
209
218
|
]
|
|
210
219
|
|
|
211
220
|
[[package]]
|
|
212
221
|
name = "assert_cmd"
|
|
213
|
-
version = "2.0.
|
|
222
|
+
version = "2.0.17"
|
|
214
223
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
215
|
-
checksum = "
|
|
224
|
+
checksum = "2bd389a4b2970a01282ee455294913c0a43724daedcd1a24c3eb0ec1c1320b66"
|
|
216
225
|
dependencies = [
|
|
217
226
|
"anstyle",
|
|
218
227
|
"bstr",
|
|
@@ -274,9 +283,9 @@ checksum = "72b3254f16251a8381aa12e40e3c4d2f0199f8c6508fbecb9d91f575e0fbb8c6"
|
|
|
274
283
|
|
|
275
284
|
[[package]]
|
|
276
285
|
name = "base64ct"
|
|
277
|
-
version = "1.
|
|
286
|
+
version = "1.7.3"
|
|
278
287
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
279
|
-
checksum = "
|
|
288
|
+
checksum = "89e25b6adfb930f02d1981565a6e5d9c547ac15a96606256d3b59040e5cd4ca3"
|
|
280
289
|
|
|
281
290
|
[[package]]
|
|
282
291
|
name = "beef"
|
|
@@ -301,9 +310,9 @@ checksum = "bef38d45163c2f1dde094a7dfd33ccf595c92905c8f8f4fdc18d06fb1037718a"
|
|
|
301
310
|
|
|
302
311
|
[[package]]
|
|
303
312
|
name = "bitflags"
|
|
304
|
-
version = "2.
|
|
313
|
+
version = "2.9.0"
|
|
305
314
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
306
|
-
checksum = "
|
|
315
|
+
checksum = "5c8214115b7bf84099f1309324e63141d4c5d7cc26862f97a0a857dbefe165bd"
|
|
307
316
|
dependencies = [
|
|
308
317
|
"serde",
|
|
309
318
|
]
|
|
@@ -340,9 +349,9 @@ dependencies = [
|
|
|
340
349
|
|
|
341
350
|
[[package]]
|
|
342
351
|
name = "brotli"
|
|
343
|
-
version = "
|
|
352
|
+
version = "7.0.0"
|
|
344
353
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
345
|
-
checksum = "
|
|
354
|
+
checksum = "cc97b8f16f944bba54f0433f07e30be199b6dc2bd25937444bbad560bcea29bd"
|
|
346
355
|
dependencies = [
|
|
347
356
|
"alloc-no-stdlib",
|
|
348
357
|
"alloc-stdlib",
|
|
@@ -351,9 +360,9 @@ dependencies = [
|
|
|
351
360
|
|
|
352
361
|
[[package]]
|
|
353
362
|
name = "brotli-decompressor"
|
|
354
|
-
version = "
|
|
363
|
+
version = "4.0.3"
|
|
355
364
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
356
|
-
checksum = "
|
|
365
|
+
checksum = "a334ef7c9e23abf0ce748e8cd309037da93e606ad52eb372e4ce327a0dcfbdfd"
|
|
357
366
|
dependencies = [
|
|
358
367
|
"alloc-no-stdlib",
|
|
359
368
|
"alloc-stdlib",
|
|
@@ -361,9 +370,9 @@ dependencies = [
|
|
|
361
370
|
|
|
362
371
|
[[package]]
|
|
363
372
|
name = "bstr"
|
|
364
|
-
version = "1.
|
|
373
|
+
version = "1.12.0"
|
|
365
374
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
366
|
-
checksum = "
|
|
375
|
+
checksum = "234113d19d0d7d613b40e86fb654acf958910802bcceab913a4f9e7cda03b1a4"
|
|
367
376
|
dependencies = [
|
|
368
377
|
"memchr",
|
|
369
378
|
"regex-automata",
|
|
@@ -372,9 +381,9 @@ dependencies = [
|
|
|
372
381
|
|
|
373
382
|
[[package]]
|
|
374
383
|
name = "bumpalo"
|
|
375
|
-
version = "3.
|
|
384
|
+
version = "3.17.0"
|
|
376
385
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
377
|
-
checksum = "
|
|
386
|
+
checksum = "1628fb46dfa0b37568d12e5edd512553eccf6a22a78e8bde00bb4aed84d5bdbf"
|
|
378
387
|
dependencies = [
|
|
379
388
|
"allocator-api2",
|
|
380
389
|
]
|
|
@@ -387,9 +396,9 @@ checksum = "5ce89b21cab1437276d2650d57e971f9d548a2d9037cc231abdc0562b97498ce"
|
|
|
387
396
|
|
|
388
397
|
[[package]]
|
|
389
398
|
name = "bytemuck"
|
|
390
|
-
version = "1.
|
|
399
|
+
version = "1.23.0"
|
|
391
400
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
392
|
-
checksum = "
|
|
401
|
+
checksum = "9134a6ef01ce4b366b50689c94f82c14bc72bc5d0386829828a2e2752ef7958c"
|
|
393
402
|
|
|
394
403
|
[[package]]
|
|
395
404
|
name = "byteorder"
|
|
@@ -397,30 +406,22 @@ version = "1.5.0"
|
|
|
397
406
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
398
407
|
checksum = "1fd0f2584146f6f2ef48085050886acf353beff7305ebd1ae69500e27c67f64b"
|
|
399
408
|
|
|
400
|
-
[[package]]
|
|
401
|
-
name = "bytes"
|
|
402
|
-
version = "1.9.0"
|
|
403
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
404
|
-
checksum = "325918d6fe32f23b19878fe4b34794ae41fc19ddbe53b10571a4874d44ffd39b"
|
|
405
|
-
|
|
406
409
|
[[package]]
|
|
407
410
|
name = "bzip2"
|
|
408
|
-
version = "0.
|
|
411
|
+
version = "0.5.2"
|
|
409
412
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
410
|
-
checksum = "
|
|
413
|
+
checksum = "49ecfb22d906f800d4fe833b6282cf4dc1c298f5057ca0b5445e5c209735ca47"
|
|
411
414
|
dependencies = [
|
|
412
415
|
"bzip2-sys",
|
|
413
|
-
"libc",
|
|
414
416
|
]
|
|
415
417
|
|
|
416
418
|
[[package]]
|
|
417
419
|
name = "bzip2-sys"
|
|
418
|
-
version = "0.1.
|
|
420
|
+
version = "0.1.13+1.0.8"
|
|
419
421
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
420
|
-
checksum = "
|
|
422
|
+
checksum = "225bff33b2141874fe80d71e07d6eec4f85c5c216453dd96388240f96e1acc14"
|
|
421
423
|
dependencies = [
|
|
422
424
|
"cc",
|
|
423
|
-
"libc",
|
|
424
425
|
"pkg-config",
|
|
425
426
|
]
|
|
426
427
|
|
|
@@ -450,7 +451,7 @@ checksum = "4acbb09d9ee8e23699b9634375c72795d095bf268439da88562cf9b501f181fa"
|
|
|
450
451
|
dependencies = [
|
|
451
452
|
"camino",
|
|
452
453
|
"cargo-platform",
|
|
453
|
-
"semver 1.0.
|
|
454
|
+
"semver 1.0.26",
|
|
454
455
|
"serde",
|
|
455
456
|
"serde_json",
|
|
456
457
|
]
|
|
@@ -472,22 +473,22 @@ checksum = "eadd868a2ce9ca38de7eeafdcec9c7065ef89b42b32f0839278d55f35c54d1ff"
|
|
|
472
473
|
dependencies = [
|
|
473
474
|
"clap",
|
|
474
475
|
"heck 0.4.1",
|
|
475
|
-
"indexmap 2.
|
|
476
|
+
"indexmap 2.9.0",
|
|
476
477
|
"log",
|
|
477
478
|
"proc-macro2",
|
|
478
479
|
"quote",
|
|
479
480
|
"serde",
|
|
480
481
|
"serde_json",
|
|
481
|
-
"syn 2.0.
|
|
482
|
+
"syn 2.0.101",
|
|
482
483
|
"tempfile",
|
|
483
484
|
"toml",
|
|
484
485
|
]
|
|
485
486
|
|
|
486
487
|
[[package]]
|
|
487
488
|
name = "cc"
|
|
488
|
-
version = "1.2.
|
|
489
|
+
version = "1.2.20"
|
|
489
490
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
490
|
-
checksum = "
|
|
491
|
+
checksum = "04da6a0d40b948dfc4fa8f5bbf402b0fc1a64a28dbf7d12ffd683550f2c1b63a"
|
|
491
492
|
dependencies = [
|
|
492
493
|
"jobserver",
|
|
493
494
|
"libc",
|
|
@@ -513,16 +514,16 @@ dependencies = [
|
|
|
513
514
|
|
|
514
515
|
[[package]]
|
|
515
516
|
name = "chrono"
|
|
516
|
-
version = "0.4.
|
|
517
|
+
version = "0.4.41"
|
|
517
518
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
518
|
-
checksum = "
|
|
519
|
+
checksum = "c469d952047f47f91b68d1cba3f10d63c11d73e4636f24f08daf0278abf01c4d"
|
|
519
520
|
dependencies = [
|
|
520
521
|
"android-tzdata",
|
|
521
522
|
"iana-time-zone",
|
|
522
523
|
"js-sys",
|
|
523
524
|
"num-traits",
|
|
524
525
|
"wasm-bindgen",
|
|
525
|
-
"windows-
|
|
526
|
+
"windows-link",
|
|
526
527
|
]
|
|
527
528
|
|
|
528
529
|
[[package]]
|
|
@@ -537,9 +538,9 @@ dependencies = [
|
|
|
537
538
|
|
|
538
539
|
[[package]]
|
|
539
540
|
name = "clap"
|
|
540
|
-
version = "4.5.
|
|
541
|
+
version = "4.5.37"
|
|
541
542
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
542
|
-
checksum = "
|
|
543
|
+
checksum = "eccb054f56cbd38340b380d4a8e69ef1f02f1af43db2f0cc817a4774d80ae071"
|
|
543
544
|
dependencies = [
|
|
544
545
|
"clap_builder",
|
|
545
546
|
"clap_derive",
|
|
@@ -547,9 +548,9 @@ dependencies = [
|
|
|
547
548
|
|
|
548
549
|
[[package]]
|
|
549
550
|
name = "clap_builder"
|
|
550
|
-
version = "4.5.
|
|
551
|
+
version = "4.5.37"
|
|
551
552
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
552
|
-
checksum = "
|
|
553
|
+
checksum = "efd9466fac8543255d3b1fcad4762c5e116ffe808c8a3043d4263cd4fd4862a2"
|
|
553
554
|
dependencies = [
|
|
554
555
|
"anstream",
|
|
555
556
|
"anstyle",
|
|
@@ -559,23 +560,23 @@ dependencies = [
|
|
|
559
560
|
|
|
560
561
|
[[package]]
|
|
561
562
|
name = "clap_complete"
|
|
562
|
-
version = "4.5.
|
|
563
|
+
version = "4.5.48"
|
|
563
564
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
564
|
-
checksum = "
|
|
565
|
+
checksum = "be8c97f3a6f02b9e24cadc12aaba75201d18754b53ea0a9d99642f806ccdb4c9"
|
|
565
566
|
dependencies = [
|
|
566
567
|
"clap",
|
|
567
568
|
]
|
|
568
569
|
|
|
569
570
|
[[package]]
|
|
570
571
|
name = "clap_derive"
|
|
571
|
-
version = "4.5.
|
|
572
|
+
version = "4.5.32"
|
|
572
573
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
573
|
-
checksum = "
|
|
574
|
+
checksum = "09176aae279615badda0765c0c0b3f6ed53f4709118af73cf4655d85d1530cd7"
|
|
574
575
|
dependencies = [
|
|
575
576
|
"heck 0.5.0",
|
|
576
577
|
"proc-macro2",
|
|
577
578
|
"quote",
|
|
578
|
-
"syn 2.0.
|
|
579
|
+
"syn 2.0.101",
|
|
579
580
|
]
|
|
580
581
|
|
|
581
582
|
[[package]]
|
|
@@ -609,22 +610,23 @@ dependencies = [
|
|
|
609
610
|
|
|
610
611
|
[[package]]
|
|
611
612
|
name = "compact_str"
|
|
612
|
-
version = "0.
|
|
613
|
+
version = "0.9.0"
|
|
613
614
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
614
|
-
checksum = "
|
|
615
|
+
checksum = "3fdb1325a1cece981e8a296ab8f0f9b63ae357bd0784a9faaf548cc7b480707a"
|
|
615
616
|
dependencies = [
|
|
616
617
|
"castaway",
|
|
617
618
|
"cfg-if",
|
|
618
619
|
"itoa",
|
|
620
|
+
"rustversion",
|
|
619
621
|
"ryu",
|
|
620
622
|
"static_assertions",
|
|
621
623
|
]
|
|
622
624
|
|
|
623
625
|
[[package]]
|
|
624
626
|
name = "console"
|
|
625
|
-
version = "0.15.
|
|
627
|
+
version = "0.15.11"
|
|
626
628
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
627
|
-
checksum = "
|
|
629
|
+
checksum = "054ccb5b10f9f2cbf51eb355ca1d05c2d279ce1804688d0db74b4733a5aeafd8"
|
|
628
630
|
dependencies = [
|
|
629
631
|
"encode_unicode",
|
|
630
632
|
"libc",
|
|
@@ -653,7 +655,7 @@ version = "0.1.16"
|
|
|
653
655
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
654
656
|
checksum = "f9d839f2a20b0aee515dc581a6172f2321f96cab76c1a38a4c584a194955390e"
|
|
655
657
|
dependencies = [
|
|
656
|
-
"getrandom",
|
|
658
|
+
"getrandom 0.2.16",
|
|
657
659
|
"once_cell",
|
|
658
660
|
"tiny-keccak",
|
|
659
661
|
]
|
|
@@ -678,27 +680,45 @@ checksum = "7704b5fdd17b18ae31c4c1da5a2e0305a2bf17b5249300a9ee9ed7b72114c636"
|
|
|
678
680
|
|
|
679
681
|
[[package]]
|
|
680
682
|
name = "cpufeatures"
|
|
681
|
-
version = "0.2.
|
|
683
|
+
version = "0.2.17"
|
|
682
684
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
683
|
-
checksum = "
|
|
685
|
+
checksum = "59ed5838eebb26a2bb2e58f6d5b5316989ae9d08bab10e0e6d103e656d1b0280"
|
|
684
686
|
dependencies = [
|
|
685
687
|
"libc",
|
|
686
688
|
]
|
|
687
689
|
|
|
690
|
+
[[package]]
|
|
691
|
+
name = "cranelift-assembler-x64"
|
|
692
|
+
version = "0.119.0"
|
|
693
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
694
|
+
checksum = "263cc79b8a23c29720eb596d251698f604546b48c34d0d84f8fd2761e5bf8888"
|
|
695
|
+
dependencies = [
|
|
696
|
+
"cranelift-assembler-x64-meta",
|
|
697
|
+
]
|
|
698
|
+
|
|
699
|
+
[[package]]
|
|
700
|
+
name = "cranelift-assembler-x64-meta"
|
|
701
|
+
version = "0.119.0"
|
|
702
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
703
|
+
checksum = "5b4a113455f8c0e13e3b3222a9c38d6940b958ff22573108be083495c72820e1"
|
|
704
|
+
dependencies = [
|
|
705
|
+
"cranelift-srcgen",
|
|
706
|
+
]
|
|
707
|
+
|
|
688
708
|
[[package]]
|
|
689
709
|
name = "cranelift-bforest"
|
|
690
|
-
version = "0.
|
|
710
|
+
version = "0.119.0"
|
|
691
711
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
692
|
-
checksum = "
|
|
712
|
+
checksum = "58f96dca41c5acf5d4312c1d04b3391e21a312f8d64ce31a2723a3bb8edd5d4d"
|
|
693
713
|
dependencies = [
|
|
694
714
|
"cranelift-entity",
|
|
695
715
|
]
|
|
696
716
|
|
|
697
717
|
[[package]]
|
|
698
718
|
name = "cranelift-bitset"
|
|
699
|
-
version = "0.
|
|
719
|
+
version = "0.119.0"
|
|
700
720
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
701
|
-
checksum = "
|
|
721
|
+
checksum = "7d821ed698dd83d9c012447eb63a5406c1e9c23732a2f674fb5b5015afd42202"
|
|
702
722
|
dependencies = [
|
|
703
723
|
"serde",
|
|
704
724
|
"serde_derive",
|
|
@@ -706,11 +726,12 @@ dependencies = [
|
|
|
706
726
|
|
|
707
727
|
[[package]]
|
|
708
728
|
name = "cranelift-codegen"
|
|
709
|
-
version = "0.
|
|
729
|
+
version = "0.119.0"
|
|
710
730
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
711
|
-
checksum = "
|
|
731
|
+
checksum = "06c52fdec4322cb8d5545a648047819aaeaa04e630f88d3a609c0d3c1a00e9a0"
|
|
712
732
|
dependencies = [
|
|
713
733
|
"bumpalo",
|
|
734
|
+
"cranelift-assembler-x64",
|
|
714
735
|
"cranelift-bforest",
|
|
715
736
|
"cranelift-bitset",
|
|
716
737
|
"cranelift-codegen-meta",
|
|
@@ -719,44 +740,48 @@ dependencies = [
|
|
|
719
740
|
"cranelift-entity",
|
|
720
741
|
"cranelift-isle",
|
|
721
742
|
"gimli 0.31.1",
|
|
722
|
-
"hashbrown 0.
|
|
743
|
+
"hashbrown 0.15.2",
|
|
723
744
|
"log",
|
|
745
|
+
"pulley-interpreter",
|
|
724
746
|
"regalloc2",
|
|
725
|
-
"rustc-hash 2.1.
|
|
747
|
+
"rustc-hash 2.1.1",
|
|
726
748
|
"serde",
|
|
727
749
|
"smallvec",
|
|
728
|
-
"target-lexicon
|
|
750
|
+
"target-lexicon",
|
|
729
751
|
]
|
|
730
752
|
|
|
731
753
|
[[package]]
|
|
732
754
|
name = "cranelift-codegen-meta"
|
|
733
|
-
version = "0.
|
|
755
|
+
version = "0.119.0"
|
|
734
756
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
735
|
-
checksum = "
|
|
757
|
+
checksum = "af2c215e0c9afa8069aafb71d22aa0e0dde1048d9a5c3c72a83cacf9b61fcf4a"
|
|
736
758
|
dependencies = [
|
|
759
|
+
"cranelift-assembler-x64-meta",
|
|
737
760
|
"cranelift-codegen-shared",
|
|
761
|
+
"cranelift-srcgen",
|
|
762
|
+
"pulley-interpreter",
|
|
738
763
|
]
|
|
739
764
|
|
|
740
765
|
[[package]]
|
|
741
766
|
name = "cranelift-codegen-shared"
|
|
742
|
-
version = "0.
|
|
767
|
+
version = "0.119.0"
|
|
743
768
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
744
|
-
checksum = "
|
|
769
|
+
checksum = "97524b2446fc26a78142132d813679dda19f620048ebc9a9fbb0ac9f2d320dcb"
|
|
745
770
|
|
|
746
771
|
[[package]]
|
|
747
772
|
name = "cranelift-control"
|
|
748
|
-
version = "0.
|
|
773
|
+
version = "0.119.0"
|
|
749
774
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
750
|
-
checksum = "
|
|
775
|
+
checksum = "8e32e900aee81f9e3cc493405ef667a7812cb5c79b5fc6b669e0a2795bda4b22"
|
|
751
776
|
dependencies = [
|
|
752
777
|
"arbitrary",
|
|
753
778
|
]
|
|
754
779
|
|
|
755
780
|
[[package]]
|
|
756
781
|
name = "cranelift-entity"
|
|
757
|
-
version = "0.
|
|
782
|
+
version = "0.119.0"
|
|
758
783
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
759
|
-
checksum = "
|
|
784
|
+
checksum = "d16a2e28e0fa6b9108d76879d60fe1cc95ba90e1bcf52bac96496371044484ee"
|
|
760
785
|
dependencies = [
|
|
761
786
|
"cranelift-bitset",
|
|
762
787
|
"serde",
|
|
@@ -765,33 +790,39 @@ dependencies = [
|
|
|
765
790
|
|
|
766
791
|
[[package]]
|
|
767
792
|
name = "cranelift-frontend"
|
|
768
|
-
version = "0.
|
|
793
|
+
version = "0.119.0"
|
|
769
794
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
770
|
-
checksum = "
|
|
795
|
+
checksum = "328181a9083d99762d85954a16065d2560394a862b8dc10239f39668df528b95"
|
|
771
796
|
dependencies = [
|
|
772
797
|
"cranelift-codegen",
|
|
773
798
|
"log",
|
|
774
799
|
"smallvec",
|
|
775
|
-
"target-lexicon
|
|
800
|
+
"target-lexicon",
|
|
776
801
|
]
|
|
777
802
|
|
|
778
803
|
[[package]]
|
|
779
804
|
name = "cranelift-isle"
|
|
780
|
-
version = "0.
|
|
805
|
+
version = "0.119.0"
|
|
781
806
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
782
|
-
checksum = "
|
|
807
|
+
checksum = "e916f36f183e377e9a3ed71769f2721df88b72648831e95bb9fa6b0cd9b1c709"
|
|
783
808
|
|
|
784
809
|
[[package]]
|
|
785
810
|
name = "cranelift-native"
|
|
786
|
-
version = "0.
|
|
811
|
+
version = "0.119.0"
|
|
787
812
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
788
|
-
checksum = "
|
|
813
|
+
checksum = "fc852cf04128877047dc2027aa1b85c64f681dc3a6a37ff45dcbfa26e4d52d2f"
|
|
789
814
|
dependencies = [
|
|
790
815
|
"cranelift-codegen",
|
|
791
816
|
"libc",
|
|
792
|
-
"target-lexicon
|
|
817
|
+
"target-lexicon",
|
|
793
818
|
]
|
|
794
819
|
|
|
820
|
+
[[package]]
|
|
821
|
+
name = "cranelift-srcgen"
|
|
822
|
+
version = "0.119.0"
|
|
823
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
824
|
+
checksum = "47e1a86340a16e74b4285cc86ac69458fa1c8e7aaff313da4a89d10efd3535ee"
|
|
825
|
+
|
|
795
826
|
[[package]]
|
|
796
827
|
name = "crc"
|
|
797
828
|
version = "3.2.1"
|
|
@@ -831,9 +862,9 @@ dependencies = [
|
|
|
831
862
|
|
|
832
863
|
[[package]]
|
|
833
864
|
name = "crossbeam-channel"
|
|
834
|
-
version = "0.5.
|
|
865
|
+
version = "0.5.15"
|
|
835
866
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
836
|
-
checksum = "
|
|
867
|
+
checksum = "82b8f8f868b36967f9606790d1903570de9ceaf870a7bf9fbbd3016d636a2cb2"
|
|
837
868
|
dependencies = [
|
|
838
869
|
"crossbeam-utils",
|
|
839
870
|
]
|
|
@@ -894,11 +925,11 @@ version = "0.28.1"
|
|
|
894
925
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
895
926
|
checksum = "829d955a0bb380ef178a640b91779e3987da38c9aea133b20614cfed8cdea9c6"
|
|
896
927
|
dependencies = [
|
|
897
|
-
"bitflags 2.
|
|
928
|
+
"bitflags 2.9.0",
|
|
898
929
|
"crossterm_winapi",
|
|
899
930
|
"mio 1.0.3",
|
|
900
931
|
"parking_lot",
|
|
901
|
-
"rustix",
|
|
932
|
+
"rustix 0.38.44",
|
|
902
933
|
"signal-hook 0.3.17",
|
|
903
934
|
"signal-hook-mio",
|
|
904
935
|
"winapi",
|
|
@@ -915,9 +946,9 @@ dependencies = [
|
|
|
915
946
|
|
|
916
947
|
[[package]]
|
|
917
948
|
name = "crunchy"
|
|
918
|
-
version = "0.2.
|
|
949
|
+
version = "0.2.3"
|
|
919
950
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
920
|
-
checksum = "
|
|
951
|
+
checksum = "43da5946c66ffcc7745f48db692ffbb10a83bfe0afd96235c5c2a4fb23994929"
|
|
921
952
|
|
|
922
953
|
[[package]]
|
|
923
954
|
name = "crypto-bigint"
|
|
@@ -953,9 +984,9 @@ dependencies = [
|
|
|
953
984
|
|
|
954
985
|
[[package]]
|
|
955
986
|
name = "darling"
|
|
956
|
-
version = "0.20.
|
|
987
|
+
version = "0.20.11"
|
|
957
988
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
958
|
-
checksum = "
|
|
989
|
+
checksum = "fc7f46116c46ff9ab3eb1597a45688b6715c6e628b5c133e288e709a29bcb4ee"
|
|
959
990
|
dependencies = [
|
|
960
991
|
"darling_core",
|
|
961
992
|
"darling_macro",
|
|
@@ -963,34 +994,48 @@ dependencies = [
|
|
|
963
994
|
|
|
964
995
|
[[package]]
|
|
965
996
|
name = "darling_core"
|
|
966
|
-
version = "0.20.
|
|
997
|
+
version = "0.20.11"
|
|
967
998
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
968
|
-
checksum = "
|
|
999
|
+
checksum = "0d00b9596d185e565c2207a0b01f8bd1a135483d02d9b7b0a54b11da8d53412e"
|
|
969
1000
|
dependencies = [
|
|
970
1001
|
"fnv",
|
|
971
1002
|
"ident_case",
|
|
972
1003
|
"proc-macro2",
|
|
973
1004
|
"quote",
|
|
974
1005
|
"strsim 0.11.1",
|
|
975
|
-
"syn 2.0.
|
|
1006
|
+
"syn 2.0.101",
|
|
976
1007
|
]
|
|
977
1008
|
|
|
978
1009
|
[[package]]
|
|
979
1010
|
name = "darling_macro"
|
|
980
|
-
version = "0.20.
|
|
1011
|
+
version = "0.20.11"
|
|
981
1012
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
982
|
-
checksum = "
|
|
1013
|
+
checksum = "fc34b93ccb385b40dc71c6fceac4b2ad23662c7eeb248cf10d529b7e055b6ead"
|
|
983
1014
|
dependencies = [
|
|
984
1015
|
"darling_core",
|
|
985
1016
|
"quote",
|
|
986
|
-
"syn 2.0.
|
|
1017
|
+
"syn 2.0.101",
|
|
1018
|
+
]
|
|
1019
|
+
|
|
1020
|
+
[[package]]
|
|
1021
|
+
name = "dashmap"
|
|
1022
|
+
version = "6.1.0"
|
|
1023
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1024
|
+
checksum = "5041cc499144891f3790297212f32a74fb938e5136a14943f338ef9e0ae276cf"
|
|
1025
|
+
dependencies = [
|
|
1026
|
+
"cfg-if",
|
|
1027
|
+
"crossbeam-utils",
|
|
1028
|
+
"hashbrown 0.14.5",
|
|
1029
|
+
"lock_api",
|
|
1030
|
+
"once_cell",
|
|
1031
|
+
"parking_lot_core",
|
|
987
1032
|
]
|
|
988
1033
|
|
|
989
1034
|
[[package]]
|
|
990
1035
|
name = "data-encoding"
|
|
991
|
-
version = "2.
|
|
1036
|
+
version = "2.9.0"
|
|
992
1037
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
993
|
-
checksum = "
|
|
1038
|
+
checksum = "2a2330da5de22e8a3cb63252ce2abb30116bf5265e89c0e01bc17015ce30a476"
|
|
994
1039
|
|
|
995
1040
|
[[package]]
|
|
996
1041
|
name = "deflate64"
|
|
@@ -1006,9 +1051,9 @@ checksum = "5729f5117e208430e437df2f4843f5e5952997175992d1414f94c57d61e270b4"
|
|
|
1006
1051
|
|
|
1007
1052
|
[[package]]
|
|
1008
1053
|
name = "der"
|
|
1009
|
-
version = "0.7.
|
|
1054
|
+
version = "0.7.10"
|
|
1010
1055
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1011
|
-
checksum = "
|
|
1056
|
+
checksum = "e7c1832837b905bbfb5101e07cc24c8deddf52f93225eee6ead5f4d63d53ddcb"
|
|
1012
1057
|
dependencies = [
|
|
1013
1058
|
"const-oid",
|
|
1014
1059
|
"pem-rfc7468",
|
|
@@ -1031,9 +1076,9 @@ dependencies = [
|
|
|
1031
1076
|
|
|
1032
1077
|
[[package]]
|
|
1033
1078
|
name = "deranged"
|
|
1034
|
-
version = "0.
|
|
1079
|
+
version = "0.4.0"
|
|
1035
1080
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1036
|
-
checksum = "
|
|
1081
|
+
checksum = "9c9e6a11ca8224451684bc0d7d5a7adbf8f2fd6887261a1cfc3c0432f9d4068e"
|
|
1037
1082
|
dependencies = [
|
|
1038
1083
|
"powerfmt",
|
|
1039
1084
|
]
|
|
@@ -1046,7 +1091,7 @@ checksum = "30542c1ad912e0e3d22a1935c290e12e8a29d704a420177a31faad4a601a0800"
|
|
|
1046
1091
|
dependencies = [
|
|
1047
1092
|
"proc-macro2",
|
|
1048
1093
|
"quote",
|
|
1049
|
-
"syn 2.0.
|
|
1094
|
+
"syn 2.0.101",
|
|
1050
1095
|
]
|
|
1051
1096
|
|
|
1052
1097
|
[[package]]
|
|
@@ -1110,7 +1155,7 @@ checksum = "97369cbbc041bc366949bc74d34658d6cda5621039731c6310521892a3a20ae0"
|
|
|
1110
1155
|
dependencies = [
|
|
1111
1156
|
"proc-macro2",
|
|
1112
1157
|
"quote",
|
|
1113
|
-
"syn 2.0.
|
|
1158
|
+
"syn 2.0.101",
|
|
1114
1159
|
]
|
|
1115
1160
|
|
|
1116
1161
|
[[package]]
|
|
@@ -1151,9 +1196,9 @@ dependencies = [
|
|
|
1151
1196
|
|
|
1152
1197
|
[[package]]
|
|
1153
1198
|
name = "either"
|
|
1154
|
-
version = "1.
|
|
1199
|
+
version = "1.15.0"
|
|
1155
1200
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1156
|
-
checksum = "
|
|
1201
|
+
checksum = "48c757948c5ede0e46177b7add2e67155f70e33c07fea8284df6576da70b3719"
|
|
1157
1202
|
|
|
1158
1203
|
[[package]]
|
|
1159
1204
|
name = "elliptic-curve"
|
|
@@ -1212,18 +1257,6 @@ dependencies = [
|
|
|
1212
1257
|
"cfg-if",
|
|
1213
1258
|
]
|
|
1214
1259
|
|
|
1215
|
-
[[package]]
|
|
1216
|
-
name = "enum_dispatch"
|
|
1217
|
-
version = "0.3.13"
|
|
1218
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1219
|
-
checksum = "aa18ce2bc66555b3218614519ac839ddb759a7d6720732f979ef8d13be147ecd"
|
|
1220
|
-
dependencies = [
|
|
1221
|
-
"once_cell",
|
|
1222
|
-
"proc-macro2",
|
|
1223
|
-
"quote",
|
|
1224
|
-
"syn 2.0.96",
|
|
1225
|
-
]
|
|
1226
|
-
|
|
1227
1260
|
[[package]]
|
|
1228
1261
|
name = "env_filter"
|
|
1229
1262
|
version = "0.1.3"
|
|
@@ -1236,28 +1269,28 @@ dependencies = [
|
|
|
1236
1269
|
|
|
1237
1270
|
[[package]]
|
|
1238
1271
|
name = "env_logger"
|
|
1239
|
-
version = "0.11.
|
|
1272
|
+
version = "0.11.8"
|
|
1240
1273
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1241
|
-
checksum = "
|
|
1274
|
+
checksum = "13c863f0904021b108aa8b2f55046443e6b1ebde8fd4a15c399893aae4fa069f"
|
|
1242
1275
|
dependencies = [
|
|
1243
1276
|
"anstream",
|
|
1244
1277
|
"anstyle",
|
|
1245
1278
|
"env_filter",
|
|
1246
|
-
"
|
|
1279
|
+
"jiff",
|
|
1247
1280
|
"log",
|
|
1248
1281
|
]
|
|
1249
1282
|
|
|
1250
1283
|
[[package]]
|
|
1251
1284
|
name = "equivalent"
|
|
1252
|
-
version = "1.0.
|
|
1285
|
+
version = "1.0.2"
|
|
1253
1286
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1254
|
-
checksum = "
|
|
1287
|
+
checksum = "877a4ace8713b0bcf2a4e7eec82529c029f1d0619886d18145fea96c3ffe5c0f"
|
|
1255
1288
|
|
|
1256
1289
|
[[package]]
|
|
1257
1290
|
name = "errno"
|
|
1258
|
-
version = "0.3.
|
|
1291
|
+
version = "0.3.11"
|
|
1259
1292
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1260
|
-
checksum = "
|
|
1293
|
+
checksum = "976dd42dc7e85965fe702eb8164f21f450704bdde31faefd6471dba214cb594e"
|
|
1261
1294
|
dependencies = [
|
|
1262
1295
|
"libc",
|
|
1263
1296
|
"windows-sys 0.59.0",
|
|
@@ -1292,9 +1325,9 @@ checksum = "37909eebbb50d72f9059c3b6d82c0463f2ff062c9e95845c43a6c9c0355411be"
|
|
|
1292
1325
|
|
|
1293
1326
|
[[package]]
|
|
1294
1327
|
name = "ff"
|
|
1295
|
-
version = "0.13.
|
|
1328
|
+
version = "0.13.1"
|
|
1296
1329
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1297
|
-
checksum = "
|
|
1330
|
+
checksum = "c0b50bfb653653f9ca9095b427bed08ab8d75a137839d9ad64eb11810d5b6393"
|
|
1298
1331
|
dependencies = [
|
|
1299
1332
|
"rand_core",
|
|
1300
1333
|
"subtle",
|
|
@@ -1315,9 +1348,9 @@ dependencies = [
|
|
|
1315
1348
|
|
|
1316
1349
|
[[package]]
|
|
1317
1350
|
name = "filedescriptor"
|
|
1318
|
-
version = "0.8.
|
|
1351
|
+
version = "0.8.3"
|
|
1319
1352
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1320
|
-
checksum = "
|
|
1353
|
+
checksum = "e40758ed24c9b2eeb76c35fb0aebc66c626084edd827e07e1552279814c6682d"
|
|
1321
1354
|
dependencies = [
|
|
1322
1355
|
"libc",
|
|
1323
1356
|
"thiserror 1.0.69",
|
|
@@ -1338,11 +1371,12 @@ checksum = "0ce7134b9999ecaf8bcd65542e436736ef32ddca1b3e06094cb6ec5755203b80"
|
|
|
1338
1371
|
|
|
1339
1372
|
[[package]]
|
|
1340
1373
|
name = "flate2"
|
|
1341
|
-
version = "1.
|
|
1374
|
+
version = "1.1.1"
|
|
1342
1375
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1343
|
-
checksum = "
|
|
1376
|
+
checksum = "7ced92e76e966ca2fd84c8f7aa01a4aea65b0eb6648d72f7c8f3e2764a67fece"
|
|
1344
1377
|
dependencies = [
|
|
1345
1378
|
"crc32fast",
|
|
1379
|
+
"libz-rs-sys",
|
|
1346
1380
|
"miniz_oxide",
|
|
1347
1381
|
]
|
|
1348
1382
|
|
|
@@ -1355,20 +1389,6 @@ dependencies = [
|
|
|
1355
1389
|
"num-traits",
|
|
1356
1390
|
]
|
|
1357
1391
|
|
|
1358
|
-
[[package]]
|
|
1359
|
-
name = "fmmap"
|
|
1360
|
-
version = "0.3.3"
|
|
1361
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1362
|
-
checksum = "6099ab52d5329340a3014f60ca91bc892181ae32e752360d07be9295924dcb0b"
|
|
1363
|
-
dependencies = [
|
|
1364
|
-
"byteorder",
|
|
1365
|
-
"bytes",
|
|
1366
|
-
"enum_dispatch",
|
|
1367
|
-
"fs4",
|
|
1368
|
-
"memmapix",
|
|
1369
|
-
"parse-display",
|
|
1370
|
-
]
|
|
1371
|
-
|
|
1372
1392
|
[[package]]
|
|
1373
1393
|
name = "fnv"
|
|
1374
1394
|
version = "1.0.7"
|
|
@@ -1377,30 +1397,20 @@ checksum = "3f9eec918d3f24069decb9af1554cad7c880e2da24a9afd88aca000531ab82c1"
|
|
|
1377
1397
|
|
|
1378
1398
|
[[package]]
|
|
1379
1399
|
name = "foldhash"
|
|
1380
|
-
version = "0.1.
|
|
1400
|
+
version = "0.1.5"
|
|
1381
1401
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1382
|
-
checksum = "
|
|
1402
|
+
checksum = "d9c4f5dac5e15c24eb999c26181a6ca40b39fe946cbe4c263c7209467bc83af2"
|
|
1383
1403
|
|
|
1384
1404
|
[[package]]
|
|
1385
1405
|
name = "fraction"
|
|
1386
|
-
version = "0.
|
|
1406
|
+
version = "0.15.3"
|
|
1387
1407
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1388
|
-
checksum = "
|
|
1408
|
+
checksum = "0f158e3ff0a1b334408dc9fb811cd99b446986f4d8b741bb08f9df1604085ae7"
|
|
1389
1409
|
dependencies = [
|
|
1390
1410
|
"lazy_static",
|
|
1391
1411
|
"num",
|
|
1392
1412
|
]
|
|
1393
1413
|
|
|
1394
|
-
[[package]]
|
|
1395
|
-
name = "fs4"
|
|
1396
|
-
version = "0.6.6"
|
|
1397
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1398
|
-
checksum = "2eeb4ed9e12f43b7fa0baae3f9cdda28352770132ef2e09a23760c29cae8bd47"
|
|
1399
|
-
dependencies = [
|
|
1400
|
-
"rustix",
|
|
1401
|
-
"windows-sys 0.48.0",
|
|
1402
|
-
]
|
|
1403
|
-
|
|
1404
1414
|
[[package]]
|
|
1405
1415
|
name = "funty"
|
|
1406
1416
|
version = "2.0.0"
|
|
@@ -1420,13 +1430,27 @@ dependencies = [
|
|
|
1420
1430
|
|
|
1421
1431
|
[[package]]
|
|
1422
1432
|
name = "getrandom"
|
|
1423
|
-
version = "0.2.
|
|
1433
|
+
version = "0.2.16"
|
|
1424
1434
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1425
|
-
checksum = "
|
|
1435
|
+
checksum = "335ff9f135e4384c8150d6f27c6daed433577f86b4750418338c01a1a2528592"
|
|
1426
1436
|
dependencies = [
|
|
1427
1437
|
"cfg-if",
|
|
1428
1438
|
"libc",
|
|
1429
|
-
"wasi",
|
|
1439
|
+
"wasi 0.11.0+wasi-snapshot-preview1",
|
|
1440
|
+
]
|
|
1441
|
+
|
|
1442
|
+
[[package]]
|
|
1443
|
+
name = "getrandom"
|
|
1444
|
+
version = "0.3.2"
|
|
1445
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1446
|
+
checksum = "73fea8450eea4bac3940448fb7ae50d91f034f941199fcd9d909a5a07aa455f0"
|
|
1447
|
+
dependencies = [
|
|
1448
|
+
"cfg-if",
|
|
1449
|
+
"js-sys",
|
|
1450
|
+
"libc",
|
|
1451
|
+
"r-efi",
|
|
1452
|
+
"wasi 0.14.2+wasi-0.2.4",
|
|
1453
|
+
"wasm-bindgen",
|
|
1430
1454
|
]
|
|
1431
1455
|
|
|
1432
1456
|
[[package]]
|
|
@@ -1447,7 +1471,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
1447
1471
|
checksum = "07e28edb80900c19c28f1072f2e8aeca7fa06b23cd4169cefe1af5aa3260783f"
|
|
1448
1472
|
dependencies = [
|
|
1449
1473
|
"fallible-iterator 0.3.0",
|
|
1450
|
-
"indexmap 2.
|
|
1474
|
+
"indexmap 2.9.0",
|
|
1451
1475
|
"stable_deref_trait",
|
|
1452
1476
|
]
|
|
1453
1477
|
|
|
@@ -1459,15 +1483,15 @@ checksum = "a8d1add55171497b4705a648c6b583acafb01d58050a51727785f0b2c8e0a2b2"
|
|
|
1459
1483
|
|
|
1460
1484
|
[[package]]
|
|
1461
1485
|
name = "globset"
|
|
1462
|
-
version = "0.4.
|
|
1486
|
+
version = "0.4.16"
|
|
1463
1487
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1464
|
-
checksum = "
|
|
1488
|
+
checksum = "54a1028dfc5f5df5da8a56a73e6c153c9a9708ec57232470703592a3f18e49f5"
|
|
1465
1489
|
dependencies = [
|
|
1466
1490
|
"aho-corasick",
|
|
1467
1491
|
"bstr",
|
|
1468
1492
|
"log",
|
|
1469
1493
|
"regex-automata",
|
|
1470
|
-
"regex-syntax
|
|
1494
|
+
"regex-syntax",
|
|
1471
1495
|
]
|
|
1472
1496
|
|
|
1473
1497
|
[[package]]
|
|
@@ -1476,16 +1500,16 @@ version = "0.9.1"
|
|
|
1476
1500
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1477
1501
|
checksum = "0bf760ebf69878d9fd8f110c89703d90ce35095324d1f1edcb595c63945ee757"
|
|
1478
1502
|
dependencies = [
|
|
1479
|
-
"bitflags 2.
|
|
1503
|
+
"bitflags 2.9.0",
|
|
1480
1504
|
"ignore",
|
|
1481
1505
|
"walkdir",
|
|
1482
1506
|
]
|
|
1483
1507
|
|
|
1484
1508
|
[[package]]
|
|
1485
1509
|
name = "goldenfile"
|
|
1486
|
-
version = "1.
|
|
1510
|
+
version = "1.8.0"
|
|
1487
1511
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1488
|
-
checksum = "
|
|
1512
|
+
checksum = "cf39e208efa110ca273f7255aea02485103ffcb7e5dfa5e4196b05a02411618e"
|
|
1489
1513
|
dependencies = [
|
|
1490
1514
|
"scopeguard",
|
|
1491
1515
|
"similar-asserts",
|
|
@@ -1575,22 +1599,17 @@ dependencies = [
|
|
|
1575
1599
|
"windows-sys 0.59.0",
|
|
1576
1600
|
]
|
|
1577
1601
|
|
|
1578
|
-
[[package]]
|
|
1579
|
-
name = "humantime"
|
|
1580
|
-
version = "2.1.0"
|
|
1581
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1582
|
-
checksum = "9a3a5bfb195931eeb336b2a7b4d761daec841b97f947d34394601737a7bba5e4"
|
|
1583
|
-
|
|
1584
1602
|
[[package]]
|
|
1585
1603
|
name = "iana-time-zone"
|
|
1586
|
-
version = "0.1.
|
|
1604
|
+
version = "0.1.63"
|
|
1587
1605
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1588
|
-
checksum = "
|
|
1606
|
+
checksum = "b0c919e5debc312ad217002b8048a17b7d83f80703865bbfcfebb0458b0b27d8"
|
|
1589
1607
|
dependencies = [
|
|
1590
1608
|
"android_system_properties",
|
|
1591
1609
|
"core-foundation-sys",
|
|
1592
1610
|
"iana-time-zone-haiku",
|
|
1593
1611
|
"js-sys",
|
|
1612
|
+
"log",
|
|
1594
1613
|
"wasm-bindgen",
|
|
1595
1614
|
"windows-core",
|
|
1596
1615
|
]
|
|
@@ -1669,9 +1688,9 @@ dependencies = [
|
|
|
1669
1688
|
|
|
1670
1689
|
[[package]]
|
|
1671
1690
|
name = "indexmap"
|
|
1672
|
-
version = "2.
|
|
1691
|
+
version = "2.9.0"
|
|
1673
1692
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1674
|
-
checksum = "
|
|
1693
|
+
checksum = "cea70ddb795996207ad57735b50c5982d8844f38ba9ee5f1aedcfb708a2aa11e"
|
|
1675
1694
|
dependencies = [
|
|
1676
1695
|
"equivalent",
|
|
1677
1696
|
"hashbrown 0.15.2",
|
|
@@ -1680,15 +1699,15 @@ dependencies = [
|
|
|
1680
1699
|
|
|
1681
1700
|
[[package]]
|
|
1682
1701
|
name = "indoc"
|
|
1683
|
-
version = "2.0.
|
|
1702
|
+
version = "2.0.6"
|
|
1684
1703
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1685
|
-
checksum = "
|
|
1704
|
+
checksum = "f4c7245a08504955605670dbf141fceab975f15ca21570696aebe9d2e71576bd"
|
|
1686
1705
|
|
|
1687
1706
|
[[package]]
|
|
1688
1707
|
name = "inout"
|
|
1689
|
-
version = "0.1.
|
|
1708
|
+
version = "0.1.4"
|
|
1690
1709
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1691
|
-
checksum = "
|
|
1710
|
+
checksum = "879f10e63c20629ecabbb64a8010319738c66a5cd0c29b02d63d272b03751d01"
|
|
1692
1711
|
dependencies = [
|
|
1693
1712
|
"generic-array",
|
|
1694
1713
|
]
|
|
@@ -1699,6 +1718,12 @@ version = "1.10.0"
|
|
|
1699
1718
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1700
1719
|
checksum = "7785e397d45f5a00bd35df6c293518c240c321b734b15a02718aa21103de1ce9"
|
|
1701
1720
|
|
|
1721
|
+
[[package]]
|
|
1722
|
+
name = "ipnet"
|
|
1723
|
+
version = "2.11.0"
|
|
1724
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1725
|
+
checksum = "469fb0b9cefa57e3ef31275ee7cacb78f2fdca44e4765491884a2b119d4eb130"
|
|
1726
|
+
|
|
1702
1727
|
[[package]]
|
|
1703
1728
|
name = "is_terminal_polyfill"
|
|
1704
1729
|
version = "1.70.1"
|
|
@@ -1716,34 +1741,50 @@ dependencies = [
|
|
|
1716
1741
|
|
|
1717
1742
|
[[package]]
|
|
1718
1743
|
name = "itertools"
|
|
1719
|
-
version = "0.
|
|
1744
|
+
version = "0.14.0"
|
|
1720
1745
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1721
|
-
checksum = "
|
|
1746
|
+
checksum = "2b192c782037fadd9cfa75548310488aabdbf3d2da73885b31bd0abd03351285"
|
|
1722
1747
|
dependencies = [
|
|
1723
1748
|
"either",
|
|
1724
1749
|
]
|
|
1725
1750
|
|
|
1726
1751
|
[[package]]
|
|
1727
|
-
name = "
|
|
1728
|
-
version = "0.
|
|
1752
|
+
name = "itoa"
|
|
1753
|
+
version = "1.0.15"
|
|
1729
1754
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1730
|
-
checksum = "
|
|
1755
|
+
checksum = "4a5f13b858c8d314ee3e8f639011f7ccefe71f97f96e50151fb991f267928e2c"
|
|
1756
|
+
|
|
1757
|
+
[[package]]
|
|
1758
|
+
name = "jiff"
|
|
1759
|
+
version = "0.2.10"
|
|
1760
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1761
|
+
checksum = "5a064218214dc6a10fbae5ec5fa888d80c45d611aba169222fc272072bf7aef6"
|
|
1731
1762
|
dependencies = [
|
|
1732
|
-
"
|
|
1763
|
+
"jiff-static",
|
|
1764
|
+
"log",
|
|
1765
|
+
"portable-atomic",
|
|
1766
|
+
"portable-atomic-util",
|
|
1767
|
+
"serde",
|
|
1733
1768
|
]
|
|
1734
1769
|
|
|
1735
1770
|
[[package]]
|
|
1736
|
-
name = "
|
|
1737
|
-
version = "
|
|
1771
|
+
name = "jiff-static"
|
|
1772
|
+
version = "0.2.10"
|
|
1738
1773
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1739
|
-
checksum = "
|
|
1774
|
+
checksum = "199b7932d97e325aff3a7030e141eafe7f2c6268e1d1b24859b753a627f45254"
|
|
1775
|
+
dependencies = [
|
|
1776
|
+
"proc-macro2",
|
|
1777
|
+
"quote",
|
|
1778
|
+
"syn 2.0.101",
|
|
1779
|
+
]
|
|
1740
1780
|
|
|
1741
1781
|
[[package]]
|
|
1742
1782
|
name = "jobserver"
|
|
1743
|
-
version = "0.1.
|
|
1783
|
+
version = "0.1.33"
|
|
1744
1784
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1745
|
-
checksum = "
|
|
1785
|
+
checksum = "38f262f097c174adebe41eb73d66ae9c06b2844fb0da69969647bbddd9b0538a"
|
|
1746
1786
|
dependencies = [
|
|
1787
|
+
"getrandom 0.3.2",
|
|
1747
1788
|
"libc",
|
|
1748
1789
|
]
|
|
1749
1790
|
|
|
@@ -1778,17 +1819,23 @@ version = "0.2.5"
|
|
|
1778
1819
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1779
1820
|
checksum = "884e2677b40cc8c339eaefcb701c32ef1fd2493d71118dc0ca4b6a736c93bd67"
|
|
1780
1821
|
|
|
1822
|
+
[[package]]
|
|
1823
|
+
name = "leb128fmt"
|
|
1824
|
+
version = "0.1.0"
|
|
1825
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1826
|
+
checksum = "09edd9e8b54e49e587e4f6295a7d29c3ea94d469cb40ab8ca70b288248a81db2"
|
|
1827
|
+
|
|
1781
1828
|
[[package]]
|
|
1782
1829
|
name = "libc"
|
|
1783
|
-
version = "0.2.
|
|
1830
|
+
version = "0.2.172"
|
|
1784
1831
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1785
|
-
checksum = "
|
|
1832
|
+
checksum = "d750af042f7ef4f724306de029d18836c26c1765a54a6a3f094cbd23a7267ffa"
|
|
1786
1833
|
|
|
1787
1834
|
[[package]]
|
|
1788
1835
|
name = "libm"
|
|
1789
|
-
version = "0.2.
|
|
1836
|
+
version = "0.2.13"
|
|
1790
1837
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1791
|
-
checksum = "
|
|
1838
|
+
checksum = "c9627da5196e5d8ed0b0495e61e518847578da83483c37288316d9b2e03a7f72"
|
|
1792
1839
|
|
|
1793
1840
|
[[package]]
|
|
1794
1841
|
name = "libredox"
|
|
@@ -1796,92 +1843,101 @@ version = "0.1.3"
|
|
|
1796
1843
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1797
1844
|
checksum = "c0ff37bd590ca25063e35af745c343cb7a0271906fb7b37e4813e8f79f00268d"
|
|
1798
1845
|
dependencies = [
|
|
1799
|
-
"bitflags 2.
|
|
1846
|
+
"bitflags 2.9.0",
|
|
1800
1847
|
"libc",
|
|
1801
1848
|
]
|
|
1802
1849
|
|
|
1850
|
+
[[package]]
|
|
1851
|
+
name = "libz-rs-sys"
|
|
1852
|
+
version = "0.5.0"
|
|
1853
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1854
|
+
checksum = "6489ca9bd760fe9642d7644e827b0c9add07df89857b0416ee15c1cc1a3b8c5a"
|
|
1855
|
+
dependencies = [
|
|
1856
|
+
"zlib-rs",
|
|
1857
|
+
]
|
|
1858
|
+
|
|
1803
1859
|
[[package]]
|
|
1804
1860
|
name = "lingua"
|
|
1805
|
-
version = "1.
|
|
1861
|
+
version = "1.7.1"
|
|
1806
1862
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1807
|
-
checksum = "
|
|
1863
|
+
checksum = "a44d00c66a76c4c2782442de0726c86d74cd3f717b318842f6ff347439c3fbe5"
|
|
1808
1864
|
dependencies = [
|
|
1809
1865
|
"ahash",
|
|
1810
1866
|
"brotli",
|
|
1811
1867
|
"compact_str",
|
|
1868
|
+
"dashmap",
|
|
1812
1869
|
"fraction",
|
|
1813
1870
|
"include_dir",
|
|
1814
|
-
"itertools 0.
|
|
1871
|
+
"itertools 0.14.0",
|
|
1815
1872
|
"lingua-english-language-model",
|
|
1816
1873
|
"lingua-french-language-model",
|
|
1817
1874
|
"lingua-german-language-model",
|
|
1818
1875
|
"lingua-spanish-language-model",
|
|
1819
1876
|
"maplit",
|
|
1820
|
-
"once_cell",
|
|
1821
1877
|
"rayon",
|
|
1822
1878
|
"regex",
|
|
1823
1879
|
"serde",
|
|
1824
1880
|
"serde-wasm-bindgen",
|
|
1825
1881
|
"serde_json",
|
|
1826
|
-
"strum
|
|
1827
|
-
"strum_macros
|
|
1882
|
+
"strum",
|
|
1883
|
+
"strum_macros",
|
|
1828
1884
|
"wasm-bindgen",
|
|
1829
1885
|
]
|
|
1830
1886
|
|
|
1831
1887
|
[[package]]
|
|
1832
1888
|
name = "lingua-english-language-model"
|
|
1833
|
-
version = "1.
|
|
1889
|
+
version = "1.2.0"
|
|
1834
1890
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1835
|
-
checksum = "
|
|
1891
|
+
checksum = "8a4b2666c2dc3669b9cc2235f318184f3cc3426bf7075336bcf8f9ddba6f81c0"
|
|
1836
1892
|
dependencies = [
|
|
1837
1893
|
"include_dir",
|
|
1838
1894
|
]
|
|
1839
1895
|
|
|
1840
1896
|
[[package]]
|
|
1841
1897
|
name = "lingua-french-language-model"
|
|
1842
|
-
version = "1.
|
|
1898
|
+
version = "1.2.0"
|
|
1843
1899
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1844
|
-
checksum = "
|
|
1900
|
+
checksum = "e7fd27da82335b66738d137ee64221f479973467b9178d49d802acbe847de355"
|
|
1845
1901
|
dependencies = [
|
|
1846
1902
|
"include_dir",
|
|
1847
1903
|
]
|
|
1848
1904
|
|
|
1849
1905
|
[[package]]
|
|
1850
1906
|
name = "lingua-german-language-model"
|
|
1851
|
-
version = "1.
|
|
1907
|
+
version = "1.2.0"
|
|
1852
1908
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1853
|
-
checksum = "
|
|
1909
|
+
checksum = "bfa568bbca8beb3b0cfc691cf2e87d1d24cb457c8e19ed168dd22d739c24a15e"
|
|
1854
1910
|
dependencies = [
|
|
1855
1911
|
"include_dir",
|
|
1856
1912
|
]
|
|
1857
1913
|
|
|
1858
1914
|
[[package]]
|
|
1859
1915
|
name = "lingua-spanish-language-model"
|
|
1860
|
-
version = "1.
|
|
1916
|
+
version = "1.2.0"
|
|
1861
1917
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1862
|
-
checksum = "
|
|
1918
|
+
checksum = "05df7766652773b2292e7ad12221c0090954baed18ca2ff631a5f134ce08d91d"
|
|
1863
1919
|
dependencies = [
|
|
1864
1920
|
"include_dir",
|
|
1865
1921
|
]
|
|
1866
1922
|
|
|
1867
1923
|
[[package]]
|
|
1868
1924
|
name = "linkme"
|
|
1869
|
-
version = "0.3.
|
|
1925
|
+
version = "0.3.32"
|
|
1870
1926
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1871
|
-
checksum = "
|
|
1927
|
+
checksum = "22d227772b5999ddc0690e733f734f95ca05387e329c4084fe65678c51198ffe"
|
|
1872
1928
|
dependencies = [
|
|
1873
1929
|
"linkme-impl",
|
|
1874
1930
|
]
|
|
1875
1931
|
|
|
1876
1932
|
[[package]]
|
|
1877
1933
|
name = "linkme-impl"
|
|
1878
|
-
version = "0.3.
|
|
1934
|
+
version = "0.3.32"
|
|
1879
1935
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1880
|
-
checksum = "
|
|
1936
|
+
checksum = "71a98813fa0073a317ed6a8055dcd4722a49d9b862af828ee68449adb799b6be"
|
|
1881
1937
|
dependencies = [
|
|
1882
1938
|
"proc-macro2",
|
|
1883
1939
|
"quote",
|
|
1884
|
-
"syn 2.0.
|
|
1940
|
+
"syn 2.0.101",
|
|
1885
1941
|
]
|
|
1886
1942
|
|
|
1887
1943
|
[[package]]
|
|
@@ -1890,6 +1946,12 @@ version = "0.4.15"
|
|
|
1890
1946
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1891
1947
|
checksum = "d26c52dbd32dccf2d10cac7725f8eae5296885fb5703b261f7d0a0739ec807ab"
|
|
1892
1948
|
|
|
1949
|
+
[[package]]
|
|
1950
|
+
name = "linux-raw-sys"
|
|
1951
|
+
version = "0.9.4"
|
|
1952
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1953
|
+
checksum = "cd945864f07fe9f5371a27ad7b52a172b4b499999f1d97574c9fa68373937e12"
|
|
1954
|
+
|
|
1893
1955
|
[[package]]
|
|
1894
1956
|
name = "lock_api"
|
|
1895
1957
|
version = "0.4.12"
|
|
@@ -1900,17 +1962,11 @@ dependencies = [
|
|
|
1900
1962
|
"scopeguard",
|
|
1901
1963
|
]
|
|
1902
1964
|
|
|
1903
|
-
[[package]]
|
|
1904
|
-
name = "lockfree-object-pool"
|
|
1905
|
-
version = "0.1.6"
|
|
1906
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1907
|
-
checksum = "9374ef4228402d4b7e403e5838cb880d9ee663314b0a900d5a6aabf0c213552e"
|
|
1908
|
-
|
|
1909
1965
|
[[package]]
|
|
1910
1966
|
name = "log"
|
|
1911
|
-
version = "0.4.
|
|
1967
|
+
version = "0.4.27"
|
|
1912
1968
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1913
|
-
checksum = "
|
|
1969
|
+
checksum = "13dc2df351e3202783a1fe0d44375f7295ffb4049267b0f3018346dc122a1d94"
|
|
1914
1970
|
|
|
1915
1971
|
[[package]]
|
|
1916
1972
|
name = "logos"
|
|
@@ -1932,9 +1988,9 @@ dependencies = [
|
|
|
1932
1988
|
"lazy_static",
|
|
1933
1989
|
"proc-macro2",
|
|
1934
1990
|
"quote",
|
|
1935
|
-
"regex-syntax
|
|
1991
|
+
"regex-syntax",
|
|
1936
1992
|
"rustc_version",
|
|
1937
|
-
"syn 2.0.
|
|
1993
|
+
"syn 2.0.101",
|
|
1938
1994
|
]
|
|
1939
1995
|
|
|
1940
1996
|
[[package]]
|
|
@@ -1956,6 +2012,17 @@ dependencies = [
|
|
|
1956
2012
|
"crc",
|
|
1957
2013
|
]
|
|
1958
2014
|
|
|
2015
|
+
[[package]]
|
|
2016
|
+
name = "lzma-sys"
|
|
2017
|
+
version = "0.1.20"
|
|
2018
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2019
|
+
checksum = "5fda04ab3764e6cde78b9974eec4f779acaba7c4e84b36eca3cf77c581b85d27"
|
|
2020
|
+
dependencies = [
|
|
2021
|
+
"cc",
|
|
2022
|
+
"libc",
|
|
2023
|
+
"pkg-config",
|
|
2024
|
+
]
|
|
2025
|
+
|
|
1959
2026
|
[[package]]
|
|
1960
2027
|
name = "mach2"
|
|
1961
2028
|
version = "0.4.2"
|
|
@@ -1971,7 +2038,7 @@ version = "0.16.2"
|
|
|
1971
2038
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1972
2039
|
checksum = "a200ae03df8c3dce7a963f6eeaac8feb41bf9001cb7e5ab22e3205aec2f0373d"
|
|
1973
2040
|
dependencies = [
|
|
1974
|
-
"bitflags 2.
|
|
2041
|
+
"bitflags 2.9.0",
|
|
1975
2042
|
"libc",
|
|
1976
2043
|
"magic-sys",
|
|
1977
2044
|
"thiserror 1.0.69",
|
|
@@ -2024,16 +2091,16 @@ version = "0.6.4"
|
|
|
2024
2091
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2025
2092
|
checksum = "b2cffa4ad52c6f791f4f8b15f0c05f9824b2ced1160e88cc393d64fff9a8ac64"
|
|
2026
2093
|
dependencies = [
|
|
2027
|
-
"rustix",
|
|
2094
|
+
"rustix 0.38.44",
|
|
2028
2095
|
]
|
|
2029
2096
|
|
|
2030
2097
|
[[package]]
|
|
2031
|
-
name = "
|
|
2032
|
-
version = "0.
|
|
2098
|
+
name = "memmap2"
|
|
2099
|
+
version = "0.9.5"
|
|
2033
2100
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2034
|
-
checksum = "
|
|
2101
|
+
checksum = "fd3f7eed9d3848f8b98834af67102b720745c4ec028fcd0aa0239277e7de374f"
|
|
2035
2102
|
dependencies = [
|
|
2036
|
-
"
|
|
2103
|
+
"libc",
|
|
2037
2104
|
]
|
|
2038
2105
|
|
|
2039
2106
|
[[package]]
|
|
@@ -2077,9 +2144,9 @@ checksum = "68354c5c6bd36d73ff3feceb05efa59b6acb7626617f4962be322a825e61f79a"
|
|
|
2077
2144
|
|
|
2078
2145
|
[[package]]
|
|
2079
2146
|
name = "miniz_oxide"
|
|
2080
|
-
version = "0.8.
|
|
2147
|
+
version = "0.8.8"
|
|
2081
2148
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2082
|
-
checksum = "
|
|
2149
|
+
checksum = "3be647b768db090acb35d5ec5db2b0e1f1de11133ca123b9eacf5137868f892a"
|
|
2083
2150
|
dependencies = [
|
|
2084
2151
|
"adler2",
|
|
2085
2152
|
]
|
|
@@ -2092,7 +2159,7 @@ checksum = "a4a650543ca06a924e8b371db273b2756685faae30f8487da1b56505a8f78b0c"
|
|
|
2092
2159
|
dependencies = [
|
|
2093
2160
|
"libc",
|
|
2094
2161
|
"log",
|
|
2095
|
-
"wasi",
|
|
2162
|
+
"wasi 0.11.0+wasi-snapshot-preview1",
|
|
2096
2163
|
"windows-sys 0.48.0",
|
|
2097
2164
|
]
|
|
2098
2165
|
|
|
@@ -2104,7 +2171,7 @@ checksum = "2886843bf800fba2e3377cff24abf6379b4c4d5c6681eaf9ea5b0d15090450bd"
|
|
|
2104
2171
|
dependencies = [
|
|
2105
2172
|
"libc",
|
|
2106
2173
|
"log",
|
|
2107
|
-
"wasi",
|
|
2174
|
+
"wasi 0.11.0+wasi-snapshot-preview1",
|
|
2108
2175
|
"windows-sys 0.52.0",
|
|
2109
2176
|
]
|
|
2110
2177
|
|
|
@@ -2140,6 +2207,15 @@ dependencies = [
|
|
|
2140
2207
|
"minimal-lexical",
|
|
2141
2208
|
]
|
|
2142
2209
|
|
|
2210
|
+
[[package]]
|
|
2211
|
+
name = "nom"
|
|
2212
|
+
version = "8.0.0"
|
|
2213
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2214
|
+
checksum = "df9761775871bdef83bee530e60050f7e54b1105350d6884eb0fb4f46c2f9405"
|
|
2215
|
+
dependencies = [
|
|
2216
|
+
"memchr",
|
|
2217
|
+
]
|
|
2218
|
+
|
|
2143
2219
|
[[package]]
|
|
2144
2220
|
name = "normalize-line-endings"
|
|
2145
2221
|
version = "0.3.0"
|
|
@@ -2221,7 +2297,7 @@ checksum = "ed3955f1a9c7c0c15e092f9c887db08b1fc683305fdf6eb6684f22555355e202"
|
|
|
2221
2297
|
dependencies = [
|
|
2222
2298
|
"proc-macro2",
|
|
2223
2299
|
"quote",
|
|
2224
|
-
"syn 2.0.
|
|
2300
|
+
"syn 2.0.101",
|
|
2225
2301
|
]
|
|
2226
2302
|
|
|
2227
2303
|
[[package]]
|
|
@@ -2273,24 +2349,24 @@ checksum = "62948e14d923ea95ea2c7c86c71013138b66525b86bdc08d2dcc262bdb497b87"
|
|
|
2273
2349
|
dependencies = [
|
|
2274
2350
|
"crc32fast",
|
|
2275
2351
|
"hashbrown 0.15.2",
|
|
2276
|
-
"indexmap 2.
|
|
2352
|
+
"indexmap 2.9.0",
|
|
2277
2353
|
"memchr",
|
|
2278
2354
|
]
|
|
2279
2355
|
|
|
2280
2356
|
[[package]]
|
|
2281
2357
|
name = "oid-registry"
|
|
2282
|
-
version = "0.8.
|
|
2358
|
+
version = "0.8.1"
|
|
2283
2359
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2284
|
-
checksum = "
|
|
2360
|
+
checksum = "12f40cff3dde1b6087cc5d5f5d4d65712f34016a03ed60e9c08dcc392736b5b7"
|
|
2285
2361
|
dependencies = [
|
|
2286
2362
|
"asn1-rs",
|
|
2287
2363
|
]
|
|
2288
2364
|
|
|
2289
2365
|
[[package]]
|
|
2290
2366
|
name = "once_cell"
|
|
2291
|
-
version = "1.
|
|
2367
|
+
version = "1.21.3"
|
|
2292
2368
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2293
|
-
checksum = "
|
|
2369
|
+
checksum = "42f5e15c9953c5e4ccceeb2e7382a716482c34515315f7b03532b8b4e8393d2d"
|
|
2294
2370
|
|
|
2295
2371
|
[[package]]
|
|
2296
2372
|
name = "opaque-debug"
|
|
@@ -2330,9 +2406,9 @@ dependencies = [
|
|
|
2330
2406
|
|
|
2331
2407
|
[[package]]
|
|
2332
2408
|
name = "p384"
|
|
2333
|
-
version = "0.13.
|
|
2409
|
+
version = "0.13.1"
|
|
2334
2410
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2335
|
-
checksum = "
|
|
2411
|
+
checksum = "fe42f1670a52a47d448f14b6a5c61dd78fce51856e68edaa38f7ae3a46b8d6b6"
|
|
2336
2412
|
dependencies = [
|
|
2337
2413
|
"ecdsa",
|
|
2338
2414
|
"elliptic-curve",
|
|
@@ -2363,38 +2439,6 @@ dependencies = [
|
|
|
2363
2439
|
"windows-targets 0.52.6",
|
|
2364
2440
|
]
|
|
2365
2441
|
|
|
2366
|
-
[[package]]
|
|
2367
|
-
name = "parse-display"
|
|
2368
|
-
version = "0.8.2"
|
|
2369
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2370
|
-
checksum = "c6509d08722b53e8dafe97f2027b22ccbe3a5db83cb352931e9716b0aa44bc5c"
|
|
2371
|
-
dependencies = [
|
|
2372
|
-
"once_cell",
|
|
2373
|
-
"parse-display-derive",
|
|
2374
|
-
"regex",
|
|
2375
|
-
]
|
|
2376
|
-
|
|
2377
|
-
[[package]]
|
|
2378
|
-
name = "parse-display-derive"
|
|
2379
|
-
version = "0.8.2"
|
|
2380
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2381
|
-
checksum = "68517892c8daf78da08c0db777fcc17e07f2f63ef70041718f8a7630ad84f341"
|
|
2382
|
-
dependencies = [
|
|
2383
|
-
"once_cell",
|
|
2384
|
-
"proc-macro2",
|
|
2385
|
-
"quote",
|
|
2386
|
-
"regex",
|
|
2387
|
-
"regex-syntax 0.7.5",
|
|
2388
|
-
"structmeta",
|
|
2389
|
-
"syn 2.0.96",
|
|
2390
|
-
]
|
|
2391
|
-
|
|
2392
|
-
[[package]]
|
|
2393
|
-
name = "paste"
|
|
2394
|
-
version = "1.0.15"
|
|
2395
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2396
|
-
checksum = "57c0d7b74b563b49d38dae00a0c37d4d6de9b432382b2892f0574ddcae73fd0a"
|
|
2397
|
-
|
|
2398
2442
|
[[package]]
|
|
2399
2443
|
name = "pbkdf2"
|
|
2400
2444
|
version = "0.12.2"
|
|
@@ -2416,20 +2460,20 @@ dependencies = [
|
|
|
2416
2460
|
|
|
2417
2461
|
[[package]]
|
|
2418
2462
|
name = "pest"
|
|
2419
|
-
version = "2.
|
|
2463
|
+
version = "2.8.0"
|
|
2420
2464
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2421
|
-
checksum = "
|
|
2465
|
+
checksum = "198db74531d58c70a361c42201efde7e2591e976d518caf7662a47dc5720e7b6"
|
|
2422
2466
|
dependencies = [
|
|
2423
2467
|
"memchr",
|
|
2424
|
-
"thiserror 2.0.
|
|
2468
|
+
"thiserror 2.0.12",
|
|
2425
2469
|
"ucd-trie",
|
|
2426
2470
|
]
|
|
2427
2471
|
|
|
2428
2472
|
[[package]]
|
|
2429
2473
|
name = "pest_derive"
|
|
2430
|
-
version = "2.
|
|
2474
|
+
version = "2.8.0"
|
|
2431
2475
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2432
|
-
checksum = "
|
|
2476
|
+
checksum = "d725d9cfd79e87dccc9341a2ef39d1b6f6353d68c4b33c177febbe1a402c97c5"
|
|
2433
2477
|
dependencies = [
|
|
2434
2478
|
"pest",
|
|
2435
2479
|
"pest_generator",
|
|
@@ -2437,22 +2481,22 @@ dependencies = [
|
|
|
2437
2481
|
|
|
2438
2482
|
[[package]]
|
|
2439
2483
|
name = "pest_generator"
|
|
2440
|
-
version = "2.
|
|
2484
|
+
version = "2.8.0"
|
|
2441
2485
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2442
|
-
checksum = "
|
|
2486
|
+
checksum = "db7d01726be8ab66ab32f9df467ae8b1148906685bbe75c82d1e65d7f5b3f841"
|
|
2443
2487
|
dependencies = [
|
|
2444
2488
|
"pest",
|
|
2445
2489
|
"pest_meta",
|
|
2446
2490
|
"proc-macro2",
|
|
2447
2491
|
"quote",
|
|
2448
|
-
"syn 2.0.
|
|
2492
|
+
"syn 2.0.101",
|
|
2449
2493
|
]
|
|
2450
2494
|
|
|
2451
2495
|
[[package]]
|
|
2452
2496
|
name = "pest_meta"
|
|
2453
|
-
version = "2.
|
|
2497
|
+
version = "2.8.0"
|
|
2454
2498
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2455
|
-
checksum = "
|
|
2499
|
+
checksum = "7f9f832470494906d1fca5329f8ab5791cc60beb230c74815dff541cbd2b5ca0"
|
|
2456
2500
|
dependencies = [
|
|
2457
2501
|
"once_cell",
|
|
2458
2502
|
"pest",
|
|
@@ -2508,7 +2552,7 @@ dependencies = [
|
|
|
2508
2552
|
"phf_shared 0.11.3",
|
|
2509
2553
|
"proc-macro2",
|
|
2510
2554
|
"quote",
|
|
2511
|
-
"syn 2.0.
|
|
2555
|
+
"syn 2.0.101",
|
|
2512
2556
|
]
|
|
2513
2557
|
|
|
2514
2558
|
[[package]]
|
|
@@ -2552,15 +2596,24 @@ dependencies = [
|
|
|
2552
2596
|
|
|
2553
2597
|
[[package]]
|
|
2554
2598
|
name = "pkg-config"
|
|
2555
|
-
version = "0.3.
|
|
2599
|
+
version = "0.3.32"
|
|
2556
2600
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2557
|
-
checksum = "
|
|
2601
|
+
checksum = "7edddbd0b52d732b21ad9a5fab5c704c14cd949e5e9a1ec5929a24fded1b904c"
|
|
2558
2602
|
|
|
2559
2603
|
[[package]]
|
|
2560
2604
|
name = "portable-atomic"
|
|
2561
|
-
version = "1.
|
|
2605
|
+
version = "1.11.0"
|
|
2562
2606
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2563
|
-
checksum = "
|
|
2607
|
+
checksum = "350e9b48cbc6b0e028b0473b114454c6316e57336ee184ceab6e53f72c178b3e"
|
|
2608
|
+
|
|
2609
|
+
[[package]]
|
|
2610
|
+
name = "portable-atomic-util"
|
|
2611
|
+
version = "0.2.4"
|
|
2612
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2613
|
+
checksum = "d8a2f0d8d040d7848a709caf78912debcc3f33ee4b3cac47d73d1e1069e83507"
|
|
2614
|
+
dependencies = [
|
|
2615
|
+
"portable-atomic",
|
|
2616
|
+
]
|
|
2564
2617
|
|
|
2565
2618
|
[[package]]
|
|
2566
2619
|
name = "postcard"
|
|
@@ -2582,11 +2635,11 @@ checksum = "439ee305def115ba05938db6eb1644ff94165c5ab5e9420d1c1bcedbba909391"
|
|
|
2582
2635
|
|
|
2583
2636
|
[[package]]
|
|
2584
2637
|
name = "ppv-lite86"
|
|
2585
|
-
version = "0.2.
|
|
2638
|
+
version = "0.2.21"
|
|
2586
2639
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2587
|
-
checksum = "
|
|
2640
|
+
checksum = "85eae3c4ed2f50dcfe72643da4befc30deadb458a9b590d720cde2f2b1e97da9"
|
|
2588
2641
|
dependencies = [
|
|
2589
|
-
"zerocopy",
|
|
2642
|
+
"zerocopy 0.8.25",
|
|
2590
2643
|
]
|
|
2591
2644
|
|
|
2592
2645
|
[[package]]
|
|
@@ -2640,18 +2693,18 @@ dependencies = [
|
|
|
2640
2693
|
|
|
2641
2694
|
[[package]]
|
|
2642
2695
|
name = "proc-macro2"
|
|
2643
|
-
version = "1.0.
|
|
2696
|
+
version = "1.0.95"
|
|
2644
2697
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2645
|
-
checksum = "
|
|
2698
|
+
checksum = "02b3e5e68a3a1a02aad3ec490a98007cbc13c37cbe84a3cd7b8e406d76e7f778"
|
|
2646
2699
|
dependencies = [
|
|
2647
2700
|
"unicode-ident",
|
|
2648
2701
|
]
|
|
2649
2702
|
|
|
2650
2703
|
[[package]]
|
|
2651
2704
|
name = "protobuf"
|
|
2652
|
-
version = "3.7.
|
|
2705
|
+
version = "3.7.2"
|
|
2653
2706
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2654
|
-
checksum = "
|
|
2707
|
+
checksum = "d65a1d4ddae7d8b5de68153b48f6aa3bba8cb002b243dbdbc55a5afbc98f99f4"
|
|
2655
2708
|
dependencies = [
|
|
2656
2709
|
"once_cell",
|
|
2657
2710
|
"protobuf-support",
|
|
@@ -2660,9 +2713,9 @@ dependencies = [
|
|
|
2660
2713
|
|
|
2661
2714
|
[[package]]
|
|
2662
2715
|
name = "protobuf-codegen"
|
|
2663
|
-
version = "3.7.
|
|
2716
|
+
version = "3.7.2"
|
|
2664
2717
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2665
|
-
checksum = "
|
|
2718
|
+
checksum = "5d3976825c0014bbd2f3b34f0001876604fe87e0c86cd8fa54251530f1544ace"
|
|
2666
2719
|
dependencies = [
|
|
2667
2720
|
"anyhow",
|
|
2668
2721
|
"once_cell",
|
|
@@ -2675,9 +2728,9 @@ dependencies = [
|
|
|
2675
2728
|
|
|
2676
2729
|
[[package]]
|
|
2677
2730
|
name = "protobuf-json-mapping"
|
|
2678
|
-
version = "3.7.
|
|
2731
|
+
version = "3.7.2"
|
|
2679
2732
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2680
|
-
checksum = "
|
|
2733
|
+
checksum = "e0d6e4be637b310d8a5c02fa195243328e2d97fa7df1127a27281ef1187fcb1d"
|
|
2681
2734
|
dependencies = [
|
|
2682
2735
|
"protobuf",
|
|
2683
2736
|
"protobuf-support",
|
|
@@ -2686,12 +2739,12 @@ dependencies = [
|
|
|
2686
2739
|
|
|
2687
2740
|
[[package]]
|
|
2688
2741
|
name = "protobuf-parse"
|
|
2689
|
-
version = "3.7.
|
|
2742
|
+
version = "3.7.2"
|
|
2690
2743
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2691
|
-
checksum = "
|
|
2744
|
+
checksum = "b4aeaa1f2460f1d348eeaeed86aea999ce98c1bded6f089ff8514c9d9dbdc973"
|
|
2692
2745
|
dependencies = [
|
|
2693
2746
|
"anyhow",
|
|
2694
|
-
"indexmap 2.
|
|
2747
|
+
"indexmap 2.9.0",
|
|
2695
2748
|
"log",
|
|
2696
2749
|
"protobuf",
|
|
2697
2750
|
"protobuf-support",
|
|
@@ -2702,18 +2755,33 @@ dependencies = [
|
|
|
2702
2755
|
|
|
2703
2756
|
[[package]]
|
|
2704
2757
|
name = "protobuf-support"
|
|
2705
|
-
version = "3.7.
|
|
2758
|
+
version = "3.7.2"
|
|
2706
2759
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2707
|
-
checksum = "
|
|
2760
|
+
checksum = "3e36c2f31e0a47f9280fb347ef5e461ffcd2c52dd520d8e216b52f93b0b0d7d6"
|
|
2708
2761
|
dependencies = [
|
|
2709
2762
|
"thiserror 1.0.69",
|
|
2710
2763
|
]
|
|
2711
2764
|
|
|
2765
|
+
[[package]]
|
|
2766
|
+
name = "psl"
|
|
2767
|
+
version = "2.1.105"
|
|
2768
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2769
|
+
checksum = "449489ec586fb1a3339a78556a3f66e55b411137a3b035c7a2ee183c6aa71bff"
|
|
2770
|
+
dependencies = [
|
|
2771
|
+
"psl-types",
|
|
2772
|
+
]
|
|
2773
|
+
|
|
2774
|
+
[[package]]
|
|
2775
|
+
name = "psl-types"
|
|
2776
|
+
version = "2.0.11"
|
|
2777
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2778
|
+
checksum = "33cb294fe86a74cbcf50d4445b37da762029549ebeea341421c7c70370f86cac"
|
|
2779
|
+
|
|
2712
2780
|
[[package]]
|
|
2713
2781
|
name = "psm"
|
|
2714
|
-
version = "0.1.
|
|
2782
|
+
version = "0.1.26"
|
|
2715
2783
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2716
|
-
checksum = "
|
|
2784
|
+
checksum = "6e944464ec8536cd1beb0bbfd96987eb5e3b72f2ecdafdc5c769a37f1fa2ae1f"
|
|
2717
2785
|
dependencies = [
|
|
2718
2786
|
"cc",
|
|
2719
2787
|
]
|
|
@@ -2724,28 +2792,27 @@ version = "0.9.6"
|
|
|
2724
2792
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2725
2793
|
checksum = "57206b407293d2bcd3af849ce869d52068623f19e1b5ff8e8778e3309439682b"
|
|
2726
2794
|
dependencies = [
|
|
2727
|
-
"bitflags 2.
|
|
2795
|
+
"bitflags 2.9.0",
|
|
2728
2796
|
"memchr",
|
|
2729
2797
|
"unicase",
|
|
2730
2798
|
]
|
|
2731
2799
|
|
|
2732
2800
|
[[package]]
|
|
2733
2801
|
name = "pulley-interpreter"
|
|
2734
|
-
version = "
|
|
2802
|
+
version = "32.0.0"
|
|
2735
2803
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2736
|
-
checksum = "
|
|
2804
|
+
checksum = "69c819888a64024f9c6bc7facbed99dfb4dd0124abe4335b6a54eabaa68ef506"
|
|
2737
2805
|
dependencies = [
|
|
2738
2806
|
"cranelift-bitset",
|
|
2739
2807
|
"log",
|
|
2740
|
-
"sptr",
|
|
2741
2808
|
"wasmtime-math",
|
|
2742
2809
|
]
|
|
2743
2810
|
|
|
2744
2811
|
[[package]]
|
|
2745
2812
|
name = "pyo3"
|
|
2746
|
-
version = "0.
|
|
2813
|
+
version = "0.24.2"
|
|
2747
2814
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2748
|
-
checksum = "
|
|
2815
|
+
checksum = "e5203598f366b11a02b13aa20cab591229ff0a89fd121a308a5df751d5fc9219"
|
|
2749
2816
|
dependencies = [
|
|
2750
2817
|
"cfg-if",
|
|
2751
2818
|
"indoc",
|
|
@@ -2761,19 +2828,19 @@ dependencies = [
|
|
|
2761
2828
|
|
|
2762
2829
|
[[package]]
|
|
2763
2830
|
name = "pyo3-build-config"
|
|
2764
|
-
version = "0.
|
|
2831
|
+
version = "0.24.2"
|
|
2765
2832
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2766
|
-
checksum = "
|
|
2833
|
+
checksum = "99636d423fa2ca130fa5acde3059308006d46f98caac629418e53f7ebb1e9999"
|
|
2767
2834
|
dependencies = [
|
|
2768
2835
|
"once_cell",
|
|
2769
|
-
"target-lexicon
|
|
2836
|
+
"target-lexicon",
|
|
2770
2837
|
]
|
|
2771
2838
|
|
|
2772
2839
|
[[package]]
|
|
2773
2840
|
name = "pyo3-ffi"
|
|
2774
|
-
version = "0.
|
|
2841
|
+
version = "0.24.2"
|
|
2775
2842
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2776
|
-
checksum = "
|
|
2843
|
+
checksum = "78f9cf92ba9c409279bc3305b5409d90db2d2c22392d443a87df3a1adad59e33"
|
|
2777
2844
|
dependencies = [
|
|
2778
2845
|
"libc",
|
|
2779
2846
|
"pyo3-build-config",
|
|
@@ -2781,9 +2848,9 @@ dependencies = [
|
|
|
2781
2848
|
|
|
2782
2849
|
[[package]]
|
|
2783
2850
|
name = "pyo3-file"
|
|
2784
|
-
version = "0.
|
|
2851
|
+
version = "0.12.0"
|
|
2785
2852
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2786
|
-
checksum = "
|
|
2853
|
+
checksum = "8d97fbb05588c29774af01833e598fae7e714a3f87d36b286e0466f6b678e4a7"
|
|
2787
2854
|
dependencies = [
|
|
2788
2855
|
"pyo3",
|
|
2789
2856
|
"skeptic",
|
|
@@ -2791,27 +2858,27 @@ dependencies = [
|
|
|
2791
2858
|
|
|
2792
2859
|
[[package]]
|
|
2793
2860
|
name = "pyo3-macros"
|
|
2794
|
-
version = "0.
|
|
2861
|
+
version = "0.24.2"
|
|
2795
2862
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2796
|
-
checksum = "
|
|
2863
|
+
checksum = "0b999cb1a6ce21f9a6b147dcf1be9ffedf02e0043aec74dc390f3007047cecd9"
|
|
2797
2864
|
dependencies = [
|
|
2798
2865
|
"proc-macro2",
|
|
2799
2866
|
"pyo3-macros-backend",
|
|
2800
2867
|
"quote",
|
|
2801
|
-
"syn 2.0.
|
|
2868
|
+
"syn 2.0.101",
|
|
2802
2869
|
]
|
|
2803
2870
|
|
|
2804
2871
|
[[package]]
|
|
2805
2872
|
name = "pyo3-macros-backend"
|
|
2806
|
-
version = "0.
|
|
2873
|
+
version = "0.24.2"
|
|
2807
2874
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2808
|
-
checksum = "
|
|
2875
|
+
checksum = "822ece1c7e1012745607d5cf0bcb2874769f0f7cb34c4cde03b9358eb9ef911a"
|
|
2809
2876
|
dependencies = [
|
|
2810
2877
|
"heck 0.5.0",
|
|
2811
2878
|
"proc-macro2",
|
|
2812
2879
|
"pyo3-build-config",
|
|
2813
2880
|
"quote",
|
|
2814
|
-
"syn 2.0.
|
|
2881
|
+
"syn 2.0.101",
|
|
2815
2882
|
]
|
|
2816
2883
|
|
|
2817
2884
|
[[package]]
|
|
@@ -2824,20 +2891,26 @@ dependencies = [
|
|
|
2824
2891
|
"libc",
|
|
2825
2892
|
"once_cell",
|
|
2826
2893
|
"raw-cpuid",
|
|
2827
|
-
"wasi",
|
|
2894
|
+
"wasi 0.11.0+wasi-snapshot-preview1",
|
|
2828
2895
|
"web-sys",
|
|
2829
2896
|
"winapi",
|
|
2830
2897
|
]
|
|
2831
2898
|
|
|
2832
2899
|
[[package]]
|
|
2833
2900
|
name = "quote"
|
|
2834
|
-
version = "1.0.
|
|
2901
|
+
version = "1.0.40"
|
|
2835
2902
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2836
|
-
checksum = "
|
|
2903
|
+
checksum = "1885c039570dc00dcb4ff087a89e185fd56bae234ddc7f056a945bf36467248d"
|
|
2837
2904
|
dependencies = [
|
|
2838
2905
|
"proc-macro2",
|
|
2839
2906
|
]
|
|
2840
2907
|
|
|
2908
|
+
[[package]]
|
|
2909
|
+
name = "r-efi"
|
|
2910
|
+
version = "5.2.0"
|
|
2911
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2912
|
+
checksum = "74765f6d916ee2faa39bc8e68e4f3ed8949b48cccdac59983d287a7cb71ce9c5"
|
|
2913
|
+
|
|
2841
2914
|
[[package]]
|
|
2842
2915
|
name = "radium"
|
|
2843
2916
|
version = "0.7.0"
|
|
@@ -2850,7 +2923,6 @@ version = "0.8.5"
|
|
|
2850
2923
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2851
2924
|
checksum = "34af8d1a0e25924bc5b7c43c079c942339d8f0a8b57c39049bef581b46327404"
|
|
2852
2925
|
dependencies = [
|
|
2853
|
-
"libc",
|
|
2854
2926
|
"rand_chacha",
|
|
2855
2927
|
"rand_core",
|
|
2856
2928
|
]
|
|
@@ -2871,16 +2943,16 @@ version = "0.6.4"
|
|
|
2871
2943
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2872
2944
|
checksum = "ec0be4795e2f6a28069bec0b5ff3e2ac9bafc99e6a9a7dc3547996c5c816922c"
|
|
2873
2945
|
dependencies = [
|
|
2874
|
-
"getrandom",
|
|
2946
|
+
"getrandom 0.2.16",
|
|
2875
2947
|
]
|
|
2876
2948
|
|
|
2877
2949
|
[[package]]
|
|
2878
2950
|
name = "raw-cpuid"
|
|
2879
|
-
version = "11.
|
|
2951
|
+
version = "11.5.0"
|
|
2880
2952
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2881
|
-
checksum = "
|
|
2953
|
+
checksum = "c6df7ab838ed27997ba19a4664507e6f82b41fe6e20be42929332156e5e85146"
|
|
2882
2954
|
dependencies = [
|
|
2883
|
-
"bitflags 2.
|
|
2955
|
+
"bitflags 2.9.0",
|
|
2884
2956
|
]
|
|
2885
2957
|
|
|
2886
2958
|
[[package]]
|
|
@@ -2905,11 +2977,11 @@ dependencies = [
|
|
|
2905
2977
|
|
|
2906
2978
|
[[package]]
|
|
2907
2979
|
name = "redox_syscall"
|
|
2908
|
-
version = "0.5.
|
|
2980
|
+
version = "0.5.11"
|
|
2909
2981
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2910
|
-
checksum = "
|
|
2982
|
+
checksum = "d2f103c6d277498fbceb16e84d317e2a400f160f46904d5f5410848c829511a3"
|
|
2911
2983
|
dependencies = [
|
|
2912
|
-
"bitflags 2.
|
|
2984
|
+
"bitflags 2.9.0",
|
|
2913
2985
|
]
|
|
2914
2986
|
|
|
2915
2987
|
[[package]]
|
|
@@ -2918,22 +2990,22 @@ version = "0.4.6"
|
|
|
2918
2990
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2919
2991
|
checksum = "ba009ff324d1fc1b900bd1fdb31564febe58a8ccc8a6fdbb93b543d33b13ca43"
|
|
2920
2992
|
dependencies = [
|
|
2921
|
-
"getrandom",
|
|
2993
|
+
"getrandom 0.2.16",
|
|
2922
2994
|
"libredox",
|
|
2923
2995
|
"thiserror 1.0.69",
|
|
2924
2996
|
]
|
|
2925
2997
|
|
|
2926
2998
|
[[package]]
|
|
2927
2999
|
name = "regalloc2"
|
|
2928
|
-
version = "0.11.
|
|
3000
|
+
version = "0.11.2"
|
|
2929
3001
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2930
|
-
checksum = "
|
|
3002
|
+
checksum = "dc06e6b318142614e4a48bc725abbf08ff166694835c43c9dae5a9009704639a"
|
|
2931
3003
|
dependencies = [
|
|
2932
3004
|
"allocator-api2",
|
|
2933
3005
|
"bumpalo",
|
|
2934
3006
|
"hashbrown 0.15.2",
|
|
2935
3007
|
"log",
|
|
2936
|
-
"rustc-hash 2.1.
|
|
3008
|
+
"rustc-hash 2.1.1",
|
|
2937
3009
|
"smallvec",
|
|
2938
3010
|
]
|
|
2939
3011
|
|
|
@@ -2946,7 +3018,7 @@ dependencies = [
|
|
|
2946
3018
|
"aho-corasick",
|
|
2947
3019
|
"memchr",
|
|
2948
3020
|
"regex-automata",
|
|
2949
|
-
"regex-syntax
|
|
3021
|
+
"regex-syntax",
|
|
2950
3022
|
]
|
|
2951
3023
|
|
|
2952
3024
|
[[package]]
|
|
@@ -2957,15 +3029,9 @@ checksum = "809e8dc61f6de73b46c85f4c96486310fe304c434cfa43669d7b40f711150908"
|
|
|
2957
3029
|
dependencies = [
|
|
2958
3030
|
"aho-corasick",
|
|
2959
3031
|
"memchr",
|
|
2960
|
-
"regex-syntax
|
|
3032
|
+
"regex-syntax",
|
|
2961
3033
|
]
|
|
2962
3034
|
|
|
2963
|
-
[[package]]
|
|
2964
|
-
name = "regex-syntax"
|
|
2965
|
-
version = "0.7.5"
|
|
2966
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2967
|
-
checksum = "dbb5fb1acd8a1a18b3dd5be62d25485eb770e05afb408a9627d14d451bae12da"
|
|
2968
|
-
|
|
2969
3035
|
[[package]]
|
|
2970
3036
|
name = "regex-syntax"
|
|
2971
3037
|
version = "0.8.5"
|
|
@@ -2984,15 +3050,14 @@ dependencies = [
|
|
|
2984
3050
|
|
|
2985
3051
|
[[package]]
|
|
2986
3052
|
name = "ring"
|
|
2987
|
-
version = "0.17.
|
|
3053
|
+
version = "0.17.14"
|
|
2988
3054
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2989
|
-
checksum = "
|
|
3055
|
+
checksum = "a4689e6c2294d81e88dc6261c768b63bc4fcdb852be6d1352498b114f61383b7"
|
|
2990
3056
|
dependencies = [
|
|
2991
3057
|
"cc",
|
|
2992
3058
|
"cfg-if",
|
|
2993
|
-
"getrandom",
|
|
3059
|
+
"getrandom 0.2.16",
|
|
2994
3060
|
"libc",
|
|
2995
|
-
"spin",
|
|
2996
3061
|
"untrusted",
|
|
2997
3062
|
"windows-sys 0.52.0",
|
|
2998
3063
|
]
|
|
@@ -3017,9 +3082,9 @@ checksum = "6c20b6793b5c2fa6553b250154b78d6d0db37e72700ae35fad9387a46f487c97"
|
|
|
3017
3082
|
|
|
3018
3083
|
[[package]]
|
|
3019
3084
|
name = "rsa"
|
|
3020
|
-
version = "0.9.
|
|
3085
|
+
version = "0.9.8"
|
|
3021
3086
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3022
|
-
checksum = "
|
|
3087
|
+
checksum = "78928ac1ed176a5ca1d17e578a1825f3d81ca54cf41053a592584b020cfd691b"
|
|
3023
3088
|
dependencies = [
|
|
3024
3089
|
"const-oid",
|
|
3025
3090
|
"digest 0.10.7",
|
|
@@ -3043,9 +3108,9 @@ checksum = "08d43f7aa6b08d49f382cde6a7982047c3426db949b1424bc4b7ec9ae12c6ce2"
|
|
|
3043
3108
|
|
|
3044
3109
|
[[package]]
|
|
3045
3110
|
name = "rustc-hash"
|
|
3046
|
-
version = "2.1.
|
|
3111
|
+
version = "2.1.1"
|
|
3047
3112
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3048
|
-
checksum = "
|
|
3113
|
+
checksum = "357703d41365b4b27c590e3ed91eabb1b663f07c4c084095e60cbed4362dff0d"
|
|
3049
3114
|
|
|
3050
3115
|
[[package]]
|
|
3051
3116
|
name = "rustc_version"
|
|
@@ -3053,7 +3118,7 @@ version = "0.4.1"
|
|
|
3053
3118
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3054
3119
|
checksum = "cfcb3a22ef46e85b45de6ee7e79d063319ebb6594faafcf1c225ea92ab6e9b92"
|
|
3055
3120
|
dependencies = [
|
|
3056
|
-
"semver 1.0.
|
|
3121
|
+
"semver 1.0.26",
|
|
3057
3122
|
]
|
|
3058
3123
|
|
|
3059
3124
|
[[package]]
|
|
@@ -3067,28 +3132,41 @@ dependencies = [
|
|
|
3067
3132
|
|
|
3068
3133
|
[[package]]
|
|
3069
3134
|
name = "rustix"
|
|
3070
|
-
version = "0.38.
|
|
3135
|
+
version = "0.38.44"
|
|
3071
3136
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3072
|
-
checksum = "
|
|
3137
|
+
checksum = "fdb5bc1ae2baa591800df16c9ca78619bf65c0488b41b96ccec5d11220d8c154"
|
|
3073
3138
|
dependencies = [
|
|
3074
|
-
"bitflags 2.
|
|
3139
|
+
"bitflags 2.9.0",
|
|
3075
3140
|
"errno",
|
|
3076
3141
|
"libc",
|
|
3077
|
-
"linux-raw-sys",
|
|
3142
|
+
"linux-raw-sys 0.4.15",
|
|
3143
|
+
"windows-sys 0.59.0",
|
|
3144
|
+
]
|
|
3145
|
+
|
|
3146
|
+
[[package]]
|
|
3147
|
+
name = "rustix"
|
|
3148
|
+
version = "1.0.5"
|
|
3149
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3150
|
+
checksum = "d97817398dd4bb2e6da002002db259209759911da105da92bec29ccb12cf58bf"
|
|
3151
|
+
dependencies = [
|
|
3152
|
+
"bitflags 2.9.0",
|
|
3153
|
+
"errno",
|
|
3154
|
+
"libc",
|
|
3155
|
+
"linux-raw-sys 0.9.4",
|
|
3078
3156
|
"windows-sys 0.59.0",
|
|
3079
3157
|
]
|
|
3080
3158
|
|
|
3081
3159
|
[[package]]
|
|
3082
3160
|
name = "rustversion"
|
|
3083
|
-
version = "1.0.
|
|
3161
|
+
version = "1.0.20"
|
|
3084
3162
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3085
|
-
checksum = "
|
|
3163
|
+
checksum = "eded382c5f5f786b989652c49544c4877d9f015cc22e145a5ea8ea66c2921cd2"
|
|
3086
3164
|
|
|
3087
3165
|
[[package]]
|
|
3088
3166
|
name = "ryu"
|
|
3089
|
-
version = "1.0.
|
|
3167
|
+
version = "1.0.20"
|
|
3090
3168
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3091
|
-
checksum = "
|
|
3169
|
+
checksum = "28d3b2b1366ec20994f1fd18c3c594f05c5dd4bc44d8bb0c1c632c8d6829481f"
|
|
3092
3170
|
|
|
3093
3171
|
[[package]]
|
|
3094
3172
|
name = "same-file"
|
|
@@ -3130,9 +3208,9 @@ dependencies = [
|
|
|
3130
3208
|
|
|
3131
3209
|
[[package]]
|
|
3132
3210
|
name = "semver"
|
|
3133
|
-
version = "1.0.
|
|
3211
|
+
version = "1.0.26"
|
|
3134
3212
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3135
|
-
checksum = "
|
|
3213
|
+
checksum = "56e6fa9c48d24d85fb3de5ad847117517440f6beceb7798af16b4a87d616b8d0"
|
|
3136
3214
|
dependencies = [
|
|
3137
3215
|
"serde",
|
|
3138
3216
|
]
|
|
@@ -3148,9 +3226,9 @@ dependencies = [
|
|
|
3148
3226
|
|
|
3149
3227
|
[[package]]
|
|
3150
3228
|
name = "serde"
|
|
3151
|
-
version = "1.0.
|
|
3229
|
+
version = "1.0.219"
|
|
3152
3230
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3153
|
-
checksum = "
|
|
3231
|
+
checksum = "5f0e2c6ed6606019b4e29e69dbaba95b11854410e5347d525002456dbbb786b6"
|
|
3154
3232
|
dependencies = [
|
|
3155
3233
|
"serde_derive",
|
|
3156
3234
|
]
|
|
@@ -3168,22 +3246,22 @@ dependencies = [
|
|
|
3168
3246
|
|
|
3169
3247
|
[[package]]
|
|
3170
3248
|
name = "serde_derive"
|
|
3171
|
-
version = "1.0.
|
|
3249
|
+
version = "1.0.219"
|
|
3172
3250
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3173
|
-
checksum = "
|
|
3251
|
+
checksum = "5b0276cf7f2c73365f7157c8123c21cd9a50fbbd844757af28ca1f5925fc2a00"
|
|
3174
3252
|
dependencies = [
|
|
3175
3253
|
"proc-macro2",
|
|
3176
3254
|
"quote",
|
|
3177
|
-
"syn 2.0.
|
|
3255
|
+
"syn 2.0.101",
|
|
3178
3256
|
]
|
|
3179
3257
|
|
|
3180
3258
|
[[package]]
|
|
3181
3259
|
name = "serde_json"
|
|
3182
|
-
version = "1.0.
|
|
3260
|
+
version = "1.0.140"
|
|
3183
3261
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3184
|
-
checksum = "
|
|
3262
|
+
checksum = "20068b6e96dc6c9bd23e01df8827e6c7e1f2fddd43c21810382803c136b99373"
|
|
3185
3263
|
dependencies = [
|
|
3186
|
-
"indexmap 2.
|
|
3264
|
+
"indexmap 2.9.0",
|
|
3187
3265
|
"itoa",
|
|
3188
3266
|
"memchr",
|
|
3189
3267
|
"ryu",
|
|
@@ -3274,9 +3352,9 @@ dependencies = [
|
|
|
3274
3352
|
|
|
3275
3353
|
[[package]]
|
|
3276
3354
|
name = "signal-hook-registry"
|
|
3277
|
-
version = "1.4.
|
|
3355
|
+
version = "1.4.5"
|
|
3278
3356
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3279
|
-
checksum = "
|
|
3357
|
+
checksum = "9203b8055f63a2a00e2f593bb0510367fe707d7ff1e5c872de2f537b339e5410"
|
|
3280
3358
|
dependencies = [
|
|
3281
3359
|
"libc",
|
|
3282
3360
|
]
|
|
@@ -3299,9 +3377,9 @@ checksum = "d66dc143e6b11c1eddc06d5c423cfc97062865baf299914ab64caa38182078fe"
|
|
|
3299
3377
|
|
|
3300
3378
|
[[package]]
|
|
3301
3379
|
name = "similar"
|
|
3302
|
-
version = "2.
|
|
3380
|
+
version = "2.7.0"
|
|
3303
3381
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3304
|
-
checksum = "
|
|
3382
|
+
checksum = "bbbb5d9659141646ae647b42fe094daf6c6192d1620870b449d9557f748b2daa"
|
|
3305
3383
|
dependencies = [
|
|
3306
3384
|
"bstr",
|
|
3307
3385
|
"unicode-segmentation",
|
|
@@ -3309,9 +3387,9 @@ dependencies = [
|
|
|
3309
3387
|
|
|
3310
3388
|
[[package]]
|
|
3311
3389
|
name = "similar-asserts"
|
|
3312
|
-
version = "1.
|
|
3390
|
+
version = "1.7.0"
|
|
3313
3391
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3314
|
-
checksum = "
|
|
3392
|
+
checksum = "b5b441962c817e33508847a22bd82f03a30cff43642dc2fae8b050566121eb9a"
|
|
3315
3393
|
dependencies = [
|
|
3316
3394
|
"console",
|
|
3317
3395
|
"similar",
|
|
@@ -3346,9 +3424,9 @@ dependencies = [
|
|
|
3346
3424
|
|
|
3347
3425
|
[[package]]
|
|
3348
3426
|
name = "smallvec"
|
|
3349
|
-
version = "1.
|
|
3427
|
+
version = "1.15.0"
|
|
3350
3428
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3351
|
-
checksum = "
|
|
3429
|
+
checksum = "8917285742e9f3e1683f0a9c4e6b57960b7314d0b08d30d1ecd426713ee2eee9"
|
|
3352
3430
|
dependencies = [
|
|
3353
3431
|
"serde",
|
|
3354
3432
|
]
|
|
@@ -3399,65 +3477,23 @@ version = "0.11.1"
|
|
|
3399
3477
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3400
3478
|
checksum = "7da8b5736845d9f2fcb837ea5d9e2628564b3b043a70948a3f0b778838c5fb4f"
|
|
3401
3479
|
|
|
3402
|
-
[[package]]
|
|
3403
|
-
name = "structmeta"
|
|
3404
|
-
version = "0.2.0"
|
|
3405
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3406
|
-
checksum = "78ad9e09554f0456d67a69c1584c9798ba733a5b50349a6c0d0948710523922d"
|
|
3407
|
-
dependencies = [
|
|
3408
|
-
"proc-macro2",
|
|
3409
|
-
"quote",
|
|
3410
|
-
"structmeta-derive",
|
|
3411
|
-
"syn 2.0.96",
|
|
3412
|
-
]
|
|
3413
|
-
|
|
3414
|
-
[[package]]
|
|
3415
|
-
name = "structmeta-derive"
|
|
3416
|
-
version = "0.2.0"
|
|
3417
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3418
|
-
checksum = "a60bcaff7397072dca0017d1db428e30d5002e00b6847703e2e42005c95fbe00"
|
|
3419
|
-
dependencies = [
|
|
3420
|
-
"proc-macro2",
|
|
3421
|
-
"quote",
|
|
3422
|
-
"syn 2.0.96",
|
|
3423
|
-
]
|
|
3424
|
-
|
|
3425
|
-
[[package]]
|
|
3426
|
-
name = "strum"
|
|
3427
|
-
version = "0.25.0"
|
|
3428
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3429
|
-
checksum = "290d54ea6f91c969195bdbcd7442c8c2a2ba87da8bf60a7ee86a235d4bc1e125"
|
|
3430
|
-
|
|
3431
3480
|
[[package]]
|
|
3432
3481
|
name = "strum"
|
|
3433
|
-
version = "0.
|
|
3482
|
+
version = "0.27.1"
|
|
3434
3483
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3435
|
-
checksum = "
|
|
3436
|
-
|
|
3437
|
-
[[package]]
|
|
3438
|
-
name = "strum_macros"
|
|
3439
|
-
version = "0.25.3"
|
|
3440
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3441
|
-
checksum = "23dc1fa9ac9c169a78ba62f0b841814b7abae11bdd047b9c58f893439e309ea0"
|
|
3442
|
-
dependencies = [
|
|
3443
|
-
"heck 0.4.1",
|
|
3444
|
-
"proc-macro2",
|
|
3445
|
-
"quote",
|
|
3446
|
-
"rustversion",
|
|
3447
|
-
"syn 2.0.96",
|
|
3448
|
-
]
|
|
3484
|
+
checksum = "f64def088c51c9510a8579e3c5d67c65349dcf755e5479ad3d010aa6454e2c32"
|
|
3449
3485
|
|
|
3450
3486
|
[[package]]
|
|
3451
3487
|
name = "strum_macros"
|
|
3452
|
-
version = "0.
|
|
3488
|
+
version = "0.27.1"
|
|
3453
3489
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3454
|
-
checksum = "
|
|
3490
|
+
checksum = "c77a8c5abcaf0f9ce05d62342b7d298c346515365c36b673df4ebe3ced01fde8"
|
|
3455
3491
|
dependencies = [
|
|
3456
3492
|
"heck 0.5.0",
|
|
3457
3493
|
"proc-macro2",
|
|
3458
3494
|
"quote",
|
|
3459
3495
|
"rustversion",
|
|
3460
|
-
"syn 2.0.
|
|
3496
|
+
"syn 2.0.101",
|
|
3461
3497
|
]
|
|
3462
3498
|
|
|
3463
3499
|
[[package]]
|
|
@@ -3495,9 +3531,9 @@ dependencies = [
|
|
|
3495
3531
|
|
|
3496
3532
|
[[package]]
|
|
3497
3533
|
name = "syn"
|
|
3498
|
-
version = "2.0.
|
|
3534
|
+
version = "2.0.101"
|
|
3499
3535
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3500
|
-
checksum = "
|
|
3536
|
+
checksum = "8ce2b7fc941b3a24138a0a7cf8e858bfc6a992e7978a068a5c760deb0ed43caf"
|
|
3501
3537
|
dependencies = [
|
|
3502
3538
|
"proc-macro2",
|
|
3503
3539
|
"quote",
|
|
@@ -3512,7 +3548,7 @@ checksum = "c8af7666ab7b6390ab78131fb5b0fce11d6b7a6951602017c35fa82800708971"
|
|
|
3512
3548
|
dependencies = [
|
|
3513
3549
|
"proc-macro2",
|
|
3514
3550
|
"quote",
|
|
3515
|
-
"syn 2.0.
|
|
3551
|
+
"syn 2.0.101",
|
|
3516
3552
|
]
|
|
3517
3553
|
|
|
3518
3554
|
[[package]]
|
|
@@ -3523,27 +3559,20 @@ checksum = "55937e1799185b12863d447f42597ed69d9928686b8d88a1df17376a097d8369"
|
|
|
3523
3559
|
|
|
3524
3560
|
[[package]]
|
|
3525
3561
|
name = "target-lexicon"
|
|
3526
|
-
version = "0.
|
|
3527
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3528
|
-
checksum = "61c41af27dd6d1e27b1b16b489db798443478cef1f06a660c96db617ba5de3b1"
|
|
3529
|
-
|
|
3530
|
-
[[package]]
|
|
3531
|
-
name = "target-lexicon"
|
|
3532
|
-
version = "0.13.1"
|
|
3562
|
+
version = "0.13.2"
|
|
3533
3563
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3534
|
-
checksum = "
|
|
3564
|
+
checksum = "e502f78cdbb8ba4718f566c418c52bc729126ffd16baee5baa718cf25dd5a69a"
|
|
3535
3565
|
|
|
3536
3566
|
[[package]]
|
|
3537
3567
|
name = "tempfile"
|
|
3538
|
-
version = "3.
|
|
3568
|
+
version = "3.19.1"
|
|
3539
3569
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3540
|
-
checksum = "
|
|
3570
|
+
checksum = "7437ac7763b9b123ccf33c338a5cc1bac6f69b45a136c19bdd8a65e3916435bf"
|
|
3541
3571
|
dependencies = [
|
|
3542
|
-
"cfg-if",
|
|
3543
3572
|
"fastrand",
|
|
3544
|
-
"getrandom",
|
|
3573
|
+
"getrandom 0.3.2",
|
|
3545
3574
|
"once_cell",
|
|
3546
|
-
"rustix",
|
|
3575
|
+
"rustix 1.0.5",
|
|
3547
3576
|
"windows-sys 0.59.0",
|
|
3548
3577
|
]
|
|
3549
3578
|
|
|
@@ -3643,11 +3672,11 @@ dependencies = [
|
|
|
3643
3672
|
|
|
3644
3673
|
[[package]]
|
|
3645
3674
|
name = "thiserror"
|
|
3646
|
-
version = "2.0.
|
|
3675
|
+
version = "2.0.12"
|
|
3647
3676
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3648
|
-
checksum = "
|
|
3677
|
+
checksum = "567b8a2dae586314f7be2a752ec7474332959c6460e02bde30d702a66d488708"
|
|
3649
3678
|
dependencies = [
|
|
3650
|
-
"thiserror-impl 2.0.
|
|
3679
|
+
"thiserror-impl 2.0.12",
|
|
3651
3680
|
]
|
|
3652
3681
|
|
|
3653
3682
|
[[package]]
|
|
@@ -3658,25 +3687,25 @@ checksum = "4fee6c4efc90059e10f81e6d42c60a18f76588c3d74cb83a0b242a2b6c7504c1"
|
|
|
3658
3687
|
dependencies = [
|
|
3659
3688
|
"proc-macro2",
|
|
3660
3689
|
"quote",
|
|
3661
|
-
"syn 2.0.
|
|
3690
|
+
"syn 2.0.101",
|
|
3662
3691
|
]
|
|
3663
3692
|
|
|
3664
3693
|
[[package]]
|
|
3665
3694
|
name = "thiserror-impl"
|
|
3666
|
-
version = "2.0.
|
|
3695
|
+
version = "2.0.12"
|
|
3667
3696
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3668
|
-
checksum = "
|
|
3697
|
+
checksum = "7f7cf42b4507d8ea322120659672cf1b9dbb93f8f2d4ecfd6e51350ff5b17a1d"
|
|
3669
3698
|
dependencies = [
|
|
3670
3699
|
"proc-macro2",
|
|
3671
3700
|
"quote",
|
|
3672
|
-
"syn 2.0.
|
|
3701
|
+
"syn 2.0.101",
|
|
3673
3702
|
]
|
|
3674
3703
|
|
|
3675
3704
|
[[package]]
|
|
3676
3705
|
name = "time"
|
|
3677
|
-
version = "0.3.
|
|
3706
|
+
version = "0.3.41"
|
|
3678
3707
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3679
|
-
checksum = "
|
|
3708
|
+
checksum = "8a7619e19bc266e0f9c5e6686659d394bc57973859340060a69221e57dbc0c40"
|
|
3680
3709
|
dependencies = [
|
|
3681
3710
|
"deranged",
|
|
3682
3711
|
"itoa",
|
|
@@ -3689,15 +3718,15 @@ dependencies = [
|
|
|
3689
3718
|
|
|
3690
3719
|
[[package]]
|
|
3691
3720
|
name = "time-core"
|
|
3692
|
-
version = "0.1.
|
|
3721
|
+
version = "0.1.4"
|
|
3693
3722
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3694
|
-
checksum = "
|
|
3723
|
+
checksum = "c9e9a38711f559d9e3ce1cdb06dd7c5b8ea546bc90052da6d06bb76da74bb07c"
|
|
3695
3724
|
|
|
3696
3725
|
[[package]]
|
|
3697
3726
|
name = "time-macros"
|
|
3698
|
-
version = "0.2.
|
|
3727
|
+
version = "0.2.22"
|
|
3699
3728
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3700
|
-
checksum = "
|
|
3729
|
+
checksum = "3526739392ec93fd8b359c8e98514cb3e8e021beb4e5f597b00a0221f8ed8a49"
|
|
3701
3730
|
dependencies = [
|
|
3702
3731
|
"num-conv",
|
|
3703
3732
|
"time-core",
|
|
@@ -3720,9 +3749,9 @@ checksum = "f762ca8308eda1e38512dc88a99f021e5214699ba133de157f588c8bfd0745c7"
|
|
|
3720
3749
|
|
|
3721
3750
|
[[package]]
|
|
3722
3751
|
name = "toml"
|
|
3723
|
-
version = "0.8.
|
|
3752
|
+
version = "0.8.22"
|
|
3724
3753
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3725
|
-
checksum = "
|
|
3754
|
+
checksum = "05ae329d1f08c4d17a59bed7ff5b5a769d062e64a62d34a3261b219e62cd5aae"
|
|
3726
3755
|
dependencies = [
|
|
3727
3756
|
"serde",
|
|
3728
3757
|
"serde_spanned",
|
|
@@ -3732,31 +3761,38 @@ dependencies = [
|
|
|
3732
3761
|
|
|
3733
3762
|
[[package]]
|
|
3734
3763
|
name = "toml_datetime"
|
|
3735
|
-
version = "0.6.
|
|
3764
|
+
version = "0.6.9"
|
|
3736
3765
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3737
|
-
checksum = "
|
|
3766
|
+
checksum = "3da5db5a963e24bc68be8b17b6fa82814bb22ee8660f192bb182771d498f09a3"
|
|
3738
3767
|
dependencies = [
|
|
3739
3768
|
"serde",
|
|
3740
3769
|
]
|
|
3741
3770
|
|
|
3742
3771
|
[[package]]
|
|
3743
3772
|
name = "toml_edit"
|
|
3744
|
-
version = "0.22.
|
|
3773
|
+
version = "0.22.26"
|
|
3745
3774
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3746
|
-
checksum = "
|
|
3775
|
+
checksum = "310068873db2c5b3e7659d2cc35d21855dbafa50d1ce336397c666e3cb08137e"
|
|
3747
3776
|
dependencies = [
|
|
3748
|
-
"indexmap 2.
|
|
3777
|
+
"indexmap 2.9.0",
|
|
3749
3778
|
"serde",
|
|
3750
3779
|
"serde_spanned",
|
|
3751
3780
|
"toml_datetime",
|
|
3781
|
+
"toml_write",
|
|
3752
3782
|
"winnow",
|
|
3753
3783
|
]
|
|
3754
3784
|
|
|
3785
|
+
[[package]]
|
|
3786
|
+
name = "toml_write"
|
|
3787
|
+
version = "0.1.1"
|
|
3788
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3789
|
+
checksum = "bfb942dfe1d8e29a7ee7fcbde5bd2b9a25fb89aa70caea2eba3bee836ff41076"
|
|
3790
|
+
|
|
3755
3791
|
[[package]]
|
|
3756
3792
|
name = "typenum"
|
|
3757
|
-
version = "1.
|
|
3793
|
+
version = "1.18.0"
|
|
3758
3794
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3759
|
-
checksum = "
|
|
3795
|
+
checksum = "1dccffe3ce07af9386bfd29e80c0ab1a8205a2fc34e4bcd40364df902cfa8f3f"
|
|
3760
3796
|
|
|
3761
3797
|
[[package]]
|
|
3762
3798
|
name = "ucd-trie"
|
|
@@ -3781,9 +3817,9 @@ checksum = "75b844d17643ee918803943289730bec8aac480150456169e647ed0b576ba539"
|
|
|
3781
3817
|
|
|
3782
3818
|
[[package]]
|
|
3783
3819
|
name = "unicode-ident"
|
|
3784
|
-
version = "1.0.
|
|
3820
|
+
version = "1.0.18"
|
|
3785
3821
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3786
|
-
checksum = "
|
|
3822
|
+
checksum = "5a5f39404a5da50712a4c1eecf25e90dd62b613502b7e925fd4e4d19b5c96512"
|
|
3787
3823
|
|
|
3788
3824
|
[[package]]
|
|
3789
3825
|
name = "unicode-segmentation"
|
|
@@ -3797,17 +3833,11 @@ version = "0.2.0"
|
|
|
3797
3833
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3798
3834
|
checksum = "1fc81956842c57dac11422a97c3b8195a1ff727f06e85c84ed2e8aa277c9a0fd"
|
|
3799
3835
|
|
|
3800
|
-
[[package]]
|
|
3801
|
-
name = "unicode-xid"
|
|
3802
|
-
version = "0.2.6"
|
|
3803
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3804
|
-
checksum = "ebc1c04c71510c7f702b52b7c350734c9ff1295c464a03335b00bb84fc54f853"
|
|
3805
|
-
|
|
3806
3836
|
[[package]]
|
|
3807
3837
|
name = "unindent"
|
|
3808
|
-
version = "0.2.
|
|
3838
|
+
version = "0.2.4"
|
|
3809
3839
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3810
|
-
checksum = "
|
|
3840
|
+
checksum = "7264e107f553ccae879d21fbea1d6724ac785e8c3bfc762137959b5802826ef3"
|
|
3811
3841
|
|
|
3812
3842
|
[[package]]
|
|
3813
3843
|
name = "untrusted"
|
|
@@ -3823,11 +3853,11 @@ checksum = "06abde3611657adf66d383f00b093d7faecc7fa57071cce2578660c9f1010821"
|
|
|
3823
3853
|
|
|
3824
3854
|
[[package]]
|
|
3825
3855
|
name = "uuid"
|
|
3826
|
-
version = "1.
|
|
3856
|
+
version = "1.16.0"
|
|
3827
3857
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3828
|
-
checksum = "
|
|
3858
|
+
checksum = "458f7a779bf54acc9f347480ac654f68407d3aab21269a6e3c9f922acd9e2da9"
|
|
3829
3859
|
dependencies = [
|
|
3830
|
-
"getrandom",
|
|
3860
|
+
"getrandom 0.3.2",
|
|
3831
3861
|
]
|
|
3832
3862
|
|
|
3833
3863
|
[[package]]
|
|
@@ -3853,9 +3883,9 @@ dependencies = [
|
|
|
3853
3883
|
|
|
3854
3884
|
[[package]]
|
|
3855
3885
|
name = "wait-timeout"
|
|
3856
|
-
version = "0.2.
|
|
3886
|
+
version = "0.2.1"
|
|
3857
3887
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3858
|
-
checksum = "
|
|
3888
|
+
checksum = "09ac3b126d3914f9849036f826e054cbabdc8519970b8998ddaf3b5bd3c65f11"
|
|
3859
3889
|
dependencies = [
|
|
3860
3890
|
"libc",
|
|
3861
3891
|
]
|
|
@@ -3895,7 +3925,7 @@ dependencies = [
|
|
|
3895
3925
|
"heck 0.5.0",
|
|
3896
3926
|
"proc-macro2",
|
|
3897
3927
|
"quote",
|
|
3898
|
-
"syn 2.0.
|
|
3928
|
+
"syn 2.0.101",
|
|
3899
3929
|
]
|
|
3900
3930
|
|
|
3901
3931
|
[[package]]
|
|
@@ -3904,6 +3934,15 @@ version = "0.11.0+wasi-snapshot-preview1"
|
|
|
3904
3934
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3905
3935
|
checksum = "9c8d87e72b64a3b4db28d11ce29237c246188f4f51057d65a7eab63b7987e423"
|
|
3906
3936
|
|
|
3937
|
+
[[package]]
|
|
3938
|
+
name = "wasi"
|
|
3939
|
+
version = "0.14.2+wasi-0.2.4"
|
|
3940
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3941
|
+
checksum = "9683f9a5a998d873c0d21fcbe3c083009670149a8fab228644b8bd36b2c48cb3"
|
|
3942
|
+
dependencies = [
|
|
3943
|
+
"wit-bindgen-rt",
|
|
3944
|
+
]
|
|
3945
|
+
|
|
3907
3946
|
[[package]]
|
|
3908
3947
|
name = "wasm-bindgen"
|
|
3909
3948
|
version = "0.2.100"
|
|
@@ -3926,7 +3965,7 @@ dependencies = [
|
|
|
3926
3965
|
"log",
|
|
3927
3966
|
"proc-macro2",
|
|
3928
3967
|
"quote",
|
|
3929
|
-
"syn 2.0.
|
|
3968
|
+
"syn 2.0.101",
|
|
3930
3969
|
"wasm-bindgen-shared",
|
|
3931
3970
|
]
|
|
3932
3971
|
|
|
@@ -3948,7 +3987,7 @@ checksum = "8ae87ea40c9f689fc23f209965b6fb8a99ad69aeeb0231408be24920604395de"
|
|
|
3948
3987
|
dependencies = [
|
|
3949
3988
|
"proc-macro2",
|
|
3950
3989
|
"quote",
|
|
3951
|
-
"syn 2.0.
|
|
3990
|
+
"syn 2.0.101",
|
|
3952
3991
|
"wasm-bindgen-backend",
|
|
3953
3992
|
"wasm-bindgen-shared",
|
|
3954
3993
|
]
|
|
@@ -3973,12 +4012,12 @@ dependencies = [
|
|
|
3973
4012
|
|
|
3974
4013
|
[[package]]
|
|
3975
4014
|
name = "wasm-encoder"
|
|
3976
|
-
version = "0.
|
|
4015
|
+
version = "0.228.0"
|
|
3977
4016
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3978
|
-
checksum = "
|
|
4017
|
+
checksum = "05d30290541f2d4242a162bbda76b8f2d8b1ac59eab3568ed6f2327d52c9b2c4"
|
|
3979
4018
|
dependencies = [
|
|
3980
|
-
"
|
|
3981
|
-
"wasmparser 0.
|
|
4019
|
+
"leb128fmt",
|
|
4020
|
+
"wasmparser 0.228.0",
|
|
3982
4021
|
]
|
|
3983
4022
|
|
|
3984
4023
|
[[package]]
|
|
@@ -3988,70 +4027,69 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
3988
4027
|
checksum = "5309c1090e3e84dad0d382f42064e9933fdaedb87e468cc239f0eabea73ddcb6"
|
|
3989
4028
|
dependencies = [
|
|
3990
4029
|
"ahash",
|
|
3991
|
-
"bitflags 2.
|
|
4030
|
+
"bitflags 2.9.0",
|
|
3992
4031
|
"hashbrown 0.14.5",
|
|
3993
|
-
"indexmap 2.
|
|
3994
|
-
"semver 1.0.
|
|
4032
|
+
"indexmap 2.9.0",
|
|
4033
|
+
"semver 1.0.26",
|
|
3995
4034
|
"serde",
|
|
3996
4035
|
]
|
|
3997
4036
|
|
|
3998
4037
|
[[package]]
|
|
3999
4038
|
name = "wasmparser"
|
|
4000
|
-
version = "0.
|
|
4039
|
+
version = "0.228.0"
|
|
4001
4040
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4002
|
-
checksum = "
|
|
4041
|
+
checksum = "4abf1132c1fdf747d56bbc1bb52152400c70f336870f968b85e89ea422198ae3"
|
|
4003
4042
|
dependencies = [
|
|
4004
|
-
"bitflags 2.
|
|
4043
|
+
"bitflags 2.9.0",
|
|
4005
4044
|
"hashbrown 0.15.2",
|
|
4006
|
-
"indexmap 2.
|
|
4007
|
-
"semver 1.0.
|
|
4045
|
+
"indexmap 2.9.0",
|
|
4046
|
+
"semver 1.0.26",
|
|
4008
4047
|
"serde",
|
|
4009
4048
|
]
|
|
4010
4049
|
|
|
4011
4050
|
[[package]]
|
|
4012
4051
|
name = "wasmprinter"
|
|
4013
|
-
version = "0.
|
|
4052
|
+
version = "0.228.0"
|
|
4014
4053
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4015
|
-
checksum = "
|
|
4054
|
+
checksum = "0df64bd38c14db359d02ce2024c64eb161aa2618ccee5f3bc5acbbd65c9a875c"
|
|
4016
4055
|
dependencies = [
|
|
4017
4056
|
"anyhow",
|
|
4018
4057
|
"termcolor",
|
|
4019
|
-
"wasmparser 0.
|
|
4058
|
+
"wasmparser 0.228.0",
|
|
4020
4059
|
]
|
|
4021
4060
|
|
|
4022
4061
|
[[package]]
|
|
4023
4062
|
name = "wasmtime"
|
|
4024
|
-
version = "
|
|
4063
|
+
version = "32.0.0"
|
|
4025
4064
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4026
|
-
checksum = "
|
|
4065
|
+
checksum = "ab05ab5e27e0d76a9a7cd93d30baa600549945ff7dcae57559de9678e28f3b7e"
|
|
4027
4066
|
dependencies = [
|
|
4067
|
+
"addr2line",
|
|
4028
4068
|
"anyhow",
|
|
4029
|
-
"bitflags 2.
|
|
4069
|
+
"bitflags 2.9.0",
|
|
4030
4070
|
"bumpalo",
|
|
4031
4071
|
"cc",
|
|
4032
4072
|
"cfg-if",
|
|
4033
|
-
"hashbrown 0.
|
|
4034
|
-
"indexmap 2.
|
|
4073
|
+
"hashbrown 0.15.2",
|
|
4074
|
+
"indexmap 2.9.0",
|
|
4035
4075
|
"libc",
|
|
4036
4076
|
"log",
|
|
4037
4077
|
"mach2",
|
|
4038
4078
|
"memfd",
|
|
4039
4079
|
"object",
|
|
4040
4080
|
"once_cell",
|
|
4041
|
-
"paste",
|
|
4042
4081
|
"postcard",
|
|
4043
4082
|
"psm",
|
|
4044
4083
|
"pulley-interpreter",
|
|
4045
4084
|
"rayon",
|
|
4046
|
-
"rustix",
|
|
4085
|
+
"rustix 1.0.5",
|
|
4047
4086
|
"serde",
|
|
4048
4087
|
"serde_derive",
|
|
4049
4088
|
"smallvec",
|
|
4050
4089
|
"sptr",
|
|
4051
|
-
"target-lexicon
|
|
4052
|
-
"wasmparser 0.
|
|
4090
|
+
"target-lexicon",
|
|
4091
|
+
"wasmparser 0.228.0",
|
|
4053
4092
|
"wasmtime-asm-macros",
|
|
4054
|
-
"wasmtime-component-macro",
|
|
4055
4093
|
"wasmtime-cranelift",
|
|
4056
4094
|
"wasmtime-environ",
|
|
4057
4095
|
"wasmtime-fiber",
|
|
@@ -4064,39 +4102,18 @@ dependencies = [
|
|
|
4064
4102
|
|
|
4065
4103
|
[[package]]
|
|
4066
4104
|
name = "wasmtime-asm-macros"
|
|
4067
|
-
version = "
|
|
4105
|
+
version = "32.0.0"
|
|
4068
4106
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4069
|
-
checksum = "
|
|
4107
|
+
checksum = "194241137d4c1a30a3c2d713016d3de7e2c4e25c9a1a49ef23fc9b850d9e2068"
|
|
4070
4108
|
dependencies = [
|
|
4071
4109
|
"cfg-if",
|
|
4072
4110
|
]
|
|
4073
4111
|
|
|
4074
|
-
[[package]]
|
|
4075
|
-
name = "wasmtime-component-macro"
|
|
4076
|
-
version = "29.0.1"
|
|
4077
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4078
|
-
checksum = "d74de6592ed945d0a602f71243982a304d5d02f1e501b638addf57f42d57dfaf"
|
|
4079
|
-
dependencies = [
|
|
4080
|
-
"anyhow",
|
|
4081
|
-
"proc-macro2",
|
|
4082
|
-
"quote",
|
|
4083
|
-
"syn 2.0.96",
|
|
4084
|
-
"wasmtime-component-util",
|
|
4085
|
-
"wasmtime-wit-bindgen",
|
|
4086
|
-
"wit-parser",
|
|
4087
|
-
]
|
|
4088
|
-
|
|
4089
|
-
[[package]]
|
|
4090
|
-
name = "wasmtime-component-util"
|
|
4091
|
-
version = "29.0.1"
|
|
4092
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4093
|
-
checksum = "707dc7b3c112ab5a366b30cfe2fb5b2f8e6a0f682f16df96a5ec582bfe6f056e"
|
|
4094
|
-
|
|
4095
4112
|
[[package]]
|
|
4096
4113
|
name = "wasmtime-cranelift"
|
|
4097
|
-
version = "
|
|
4114
|
+
version = "32.0.0"
|
|
4098
4115
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4099
|
-
checksum = "
|
|
4116
|
+
checksum = "925c030360b8084e450f29d4d772e89ba0a8855dd0a47e07dd11e7f5fd900b42"
|
|
4100
4117
|
dependencies = [
|
|
4101
4118
|
"anyhow",
|
|
4102
4119
|
"cfg-if",
|
|
@@ -4106,50 +4123,51 @@ dependencies = [
|
|
|
4106
4123
|
"cranelift-frontend",
|
|
4107
4124
|
"cranelift-native",
|
|
4108
4125
|
"gimli 0.31.1",
|
|
4109
|
-
"itertools 0.
|
|
4126
|
+
"itertools 0.14.0",
|
|
4110
4127
|
"log",
|
|
4111
4128
|
"object",
|
|
4129
|
+
"pulley-interpreter",
|
|
4112
4130
|
"smallvec",
|
|
4113
|
-
"target-lexicon
|
|
4114
|
-
"thiserror
|
|
4115
|
-
"wasmparser 0.
|
|
4131
|
+
"target-lexicon",
|
|
4132
|
+
"thiserror 2.0.12",
|
|
4133
|
+
"wasmparser 0.228.0",
|
|
4116
4134
|
"wasmtime-environ",
|
|
4117
4135
|
"wasmtime-versioned-export-macros",
|
|
4118
4136
|
]
|
|
4119
4137
|
|
|
4120
4138
|
[[package]]
|
|
4121
4139
|
name = "wasmtime-environ"
|
|
4122
|
-
version = "
|
|
4140
|
+
version = "32.0.0"
|
|
4123
4141
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4124
|
-
checksum = "
|
|
4142
|
+
checksum = "58d78b12eb1f2d2ac85eff89693963ba9c13dd9c90796d92d83ff27b23b29fbe"
|
|
4125
4143
|
dependencies = [
|
|
4126
4144
|
"anyhow",
|
|
4127
4145
|
"cranelift-bitset",
|
|
4128
4146
|
"cranelift-entity",
|
|
4129
4147
|
"gimli 0.31.1",
|
|
4130
|
-
"indexmap 2.
|
|
4148
|
+
"indexmap 2.9.0",
|
|
4131
4149
|
"log",
|
|
4132
4150
|
"object",
|
|
4133
4151
|
"postcard",
|
|
4134
4152
|
"serde",
|
|
4135
4153
|
"serde_derive",
|
|
4136
4154
|
"smallvec",
|
|
4137
|
-
"target-lexicon
|
|
4138
|
-
"wasm-encoder 0.
|
|
4139
|
-
"wasmparser 0.
|
|
4155
|
+
"target-lexicon",
|
|
4156
|
+
"wasm-encoder 0.228.0",
|
|
4157
|
+
"wasmparser 0.228.0",
|
|
4140
4158
|
"wasmprinter",
|
|
4141
4159
|
]
|
|
4142
4160
|
|
|
4143
4161
|
[[package]]
|
|
4144
4162
|
name = "wasmtime-fiber"
|
|
4145
|
-
version = "
|
|
4163
|
+
version = "32.0.0"
|
|
4146
4164
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4147
|
-
checksum = "
|
|
4165
|
+
checksum = "ced0efdb1553ada01704540d3cf3e525c93c8f5ca24a48d3e50ba5f2083c36ba"
|
|
4148
4166
|
dependencies = [
|
|
4149
4167
|
"anyhow",
|
|
4150
4168
|
"cc",
|
|
4151
4169
|
"cfg-if",
|
|
4152
|
-
"rustix",
|
|
4170
|
+
"rustix 1.0.5",
|
|
4153
4171
|
"wasmtime-asm-macros",
|
|
4154
4172
|
"wasmtime-versioned-export-macros",
|
|
4155
4173
|
"windows-sys 0.59.0",
|
|
@@ -4157,9 +4175,9 @@ dependencies = [
|
|
|
4157
4175
|
|
|
4158
4176
|
[[package]]
|
|
4159
4177
|
name = "wasmtime-jit-icache-coherence"
|
|
4160
|
-
version = "
|
|
4178
|
+
version = "32.0.0"
|
|
4161
4179
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4162
|
-
checksum = "
|
|
4180
|
+
checksum = "eb399eaabd7594f695e1159d236bf40ef55babcb3af97f97c027864ed2104db6"
|
|
4163
4181
|
dependencies = [
|
|
4164
4182
|
"anyhow",
|
|
4165
4183
|
"cfg-if",
|
|
@@ -4169,40 +4187,28 @@ dependencies = [
|
|
|
4169
4187
|
|
|
4170
4188
|
[[package]]
|
|
4171
4189
|
name = "wasmtime-math"
|
|
4172
|
-
version = "
|
|
4190
|
+
version = "32.0.0"
|
|
4173
4191
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4174
|
-
checksum = "
|
|
4192
|
+
checksum = "a527168840e87fc06422b44e7540b4e38df7c84237abdad3dc2450dcde8ab38e"
|
|
4175
4193
|
dependencies = [
|
|
4176
4194
|
"libm",
|
|
4177
4195
|
]
|
|
4178
4196
|
|
|
4179
4197
|
[[package]]
|
|
4180
4198
|
name = "wasmtime-slab"
|
|
4181
|
-
version = "
|
|
4199
|
+
version = "32.0.0"
|
|
4182
4200
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4183
|
-
checksum = "
|
|
4201
|
+
checksum = "46a3a2798fb5472381cebd72c1daa1f99bbfd6fb645bf8285db8b3a48405daec"
|
|
4184
4202
|
|
|
4185
4203
|
[[package]]
|
|
4186
4204
|
name = "wasmtime-versioned-export-macros"
|
|
4187
|
-
version = "
|
|
4205
|
+
version = "32.0.0"
|
|
4188
4206
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4189
|
-
checksum = "
|
|
4207
|
+
checksum = "b5afcdcb7f97cce62f6f512182259bfed5d2941253ad43780b3a4e1ad72e4fea"
|
|
4190
4208
|
dependencies = [
|
|
4191
4209
|
"proc-macro2",
|
|
4192
4210
|
"quote",
|
|
4193
|
-
"syn 2.0.
|
|
4194
|
-
]
|
|
4195
|
-
|
|
4196
|
-
[[package]]
|
|
4197
|
-
name = "wasmtime-wit-bindgen"
|
|
4198
|
-
version = "29.0.1"
|
|
4199
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4200
|
-
checksum = "8358319c2dd1e4db79e3c1c5d3a5af84956615343f9f89f4e4996a36816e06e6"
|
|
4201
|
-
dependencies = [
|
|
4202
|
-
"anyhow",
|
|
4203
|
-
"heck 0.5.0",
|
|
4204
|
-
"indexmap 2.7.0",
|
|
4205
|
-
"wit-parser",
|
|
4211
|
+
"syn 2.0.101",
|
|
4206
4212
|
]
|
|
4207
4213
|
|
|
4208
4214
|
[[package]]
|
|
@@ -4222,7 +4228,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
4222
4228
|
checksum = "0c0a6e355560527dd2d1cf7890652f4f09bb3433b6aadade4c9b5ed76de5f3ec"
|
|
4223
4229
|
dependencies = [
|
|
4224
4230
|
"log",
|
|
4225
|
-
"wezterm-dynamic 0.2.
|
|
4231
|
+
"wezterm-dynamic 0.2.1",
|
|
4226
4232
|
]
|
|
4227
4233
|
|
|
4228
4234
|
[[package]]
|
|
@@ -4252,22 +4258,22 @@ dependencies = [
|
|
|
4252
4258
|
|
|
4253
4259
|
[[package]]
|
|
4254
4260
|
name = "wezterm-dynamic"
|
|
4255
|
-
version = "0.2.
|
|
4261
|
+
version = "0.2.1"
|
|
4256
4262
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4257
|
-
checksum = "
|
|
4263
|
+
checksum = "5f2ab60e120fd6eaa68d9567f3226e876684639d22a4219b313ff69ec0ccd5ac"
|
|
4258
4264
|
dependencies = [
|
|
4259
4265
|
"log",
|
|
4260
4266
|
"ordered-float 4.6.0",
|
|
4261
|
-
"strsim 0.
|
|
4267
|
+
"strsim 0.11.1",
|
|
4262
4268
|
"thiserror 1.0.69",
|
|
4263
4269
|
"wezterm-dynamic-derive",
|
|
4264
4270
|
]
|
|
4265
4271
|
|
|
4266
4272
|
[[package]]
|
|
4267
4273
|
name = "wezterm-dynamic-derive"
|
|
4268
|
-
version = "0.1.
|
|
4274
|
+
version = "0.1.1"
|
|
4269
4275
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4270
|
-
checksum = "
|
|
4276
|
+
checksum = "46c0cf2d539c645b448eaffec9ec494b8b19bd5077d9e58cb1ae7efece8d575b"
|
|
4271
4277
|
dependencies = [
|
|
4272
4278
|
"proc-macro2",
|
|
4273
4279
|
"quote",
|
|
@@ -4283,7 +4289,7 @@ dependencies = [
|
|
|
4283
4289
|
"either",
|
|
4284
4290
|
"home",
|
|
4285
4291
|
"once_cell",
|
|
4286
|
-
"rustix",
|
|
4292
|
+
"rustix 0.38.44",
|
|
4287
4293
|
]
|
|
4288
4294
|
|
|
4289
4295
|
[[package]]
|
|
@@ -4328,11 +4334,61 @@ checksum = "712e227841d057c1ee1cd2fb22fa7e5a5461ae8e48fa2ca79ec42cfc1931183f"
|
|
|
4328
4334
|
|
|
4329
4335
|
[[package]]
|
|
4330
4336
|
name = "windows-core"
|
|
4331
|
-
version = "0.
|
|
4337
|
+
version = "0.61.0"
|
|
4332
4338
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4333
|
-
checksum = "
|
|
4339
|
+
checksum = "4763c1de310c86d75a878046489e2e5ba02c649d185f21c67d4cf8a56d098980"
|
|
4334
4340
|
dependencies = [
|
|
4335
|
-
"windows-
|
|
4341
|
+
"windows-implement",
|
|
4342
|
+
"windows-interface",
|
|
4343
|
+
"windows-link",
|
|
4344
|
+
"windows-result",
|
|
4345
|
+
"windows-strings",
|
|
4346
|
+
]
|
|
4347
|
+
|
|
4348
|
+
[[package]]
|
|
4349
|
+
name = "windows-implement"
|
|
4350
|
+
version = "0.60.0"
|
|
4351
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4352
|
+
checksum = "a47fddd13af08290e67f4acabf4b459f647552718f683a7b415d290ac744a836"
|
|
4353
|
+
dependencies = [
|
|
4354
|
+
"proc-macro2",
|
|
4355
|
+
"quote",
|
|
4356
|
+
"syn 2.0.101",
|
|
4357
|
+
]
|
|
4358
|
+
|
|
4359
|
+
[[package]]
|
|
4360
|
+
name = "windows-interface"
|
|
4361
|
+
version = "0.59.1"
|
|
4362
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4363
|
+
checksum = "bd9211b69f8dcdfa817bfd14bf1c97c9188afa36f4750130fcdf3f400eca9fa8"
|
|
4364
|
+
dependencies = [
|
|
4365
|
+
"proc-macro2",
|
|
4366
|
+
"quote",
|
|
4367
|
+
"syn 2.0.101",
|
|
4368
|
+
]
|
|
4369
|
+
|
|
4370
|
+
[[package]]
|
|
4371
|
+
name = "windows-link"
|
|
4372
|
+
version = "0.1.1"
|
|
4373
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4374
|
+
checksum = "76840935b766e1b0a05c0066835fb9ec80071d4c09a16f6bd5f7e655e3c14c38"
|
|
4375
|
+
|
|
4376
|
+
[[package]]
|
|
4377
|
+
name = "windows-result"
|
|
4378
|
+
version = "0.3.2"
|
|
4379
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4380
|
+
checksum = "c64fd11a4fd95df68efcfee5f44a294fe71b8bc6a91993e2791938abcc712252"
|
|
4381
|
+
dependencies = [
|
|
4382
|
+
"windows-link",
|
|
4383
|
+
]
|
|
4384
|
+
|
|
4385
|
+
[[package]]
|
|
4386
|
+
name = "windows-strings"
|
|
4387
|
+
version = "0.4.0"
|
|
4388
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4389
|
+
checksum = "7a2ba9642430ee452d5a7aa78d72907ebe8cfda358e8cb7918a2050581322f97"
|
|
4390
|
+
dependencies = [
|
|
4391
|
+
"windows-link",
|
|
4336
4392
|
]
|
|
4337
4393
|
|
|
4338
4394
|
[[package]]
|
|
@@ -4542,29 +4598,20 @@ checksum = "589f6da84c646204747d1270a2a5661ea66ed1cced2631d546fdfb155959f9ec"
|
|
|
4542
4598
|
|
|
4543
4599
|
[[package]]
|
|
4544
4600
|
name = "winnow"
|
|
4545
|
-
version = "0.
|
|
4601
|
+
version = "0.7.7"
|
|
4546
4602
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4547
|
-
checksum = "
|
|
4603
|
+
checksum = "6cb8234a863ea0e8cd7284fcdd4f145233eb00fee02bbdd9861aec44e6477bc5"
|
|
4548
4604
|
dependencies = [
|
|
4549
4605
|
"memchr",
|
|
4550
4606
|
]
|
|
4551
4607
|
|
|
4552
4608
|
[[package]]
|
|
4553
|
-
name = "wit-
|
|
4554
|
-
version = "0.
|
|
4609
|
+
name = "wit-bindgen-rt"
|
|
4610
|
+
version = "0.39.0"
|
|
4555
4611
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4556
|
-
checksum = "
|
|
4612
|
+
checksum = "6f42320e61fe2cfd34354ecb597f86f413484a798ba44a8ca1165c58d42da6c1"
|
|
4557
4613
|
dependencies = [
|
|
4558
|
-
"
|
|
4559
|
-
"id-arena",
|
|
4560
|
-
"indexmap 2.7.0",
|
|
4561
|
-
"log",
|
|
4562
|
-
"semver 1.0.24",
|
|
4563
|
-
"serde",
|
|
4564
|
-
"serde_derive",
|
|
4565
|
-
"serde_json",
|
|
4566
|
-
"unicode-xid",
|
|
4567
|
-
"wasmparser 0.221.2",
|
|
4614
|
+
"bitflags 2.9.0",
|
|
4568
4615
|
]
|
|
4569
4616
|
|
|
4570
4617
|
[[package]]
|
|
@@ -4590,10 +4637,19 @@ dependencies = [
|
|
|
4590
4637
|
"oid-registry",
|
|
4591
4638
|
"ring",
|
|
4592
4639
|
"rusticata-macros",
|
|
4593
|
-
"thiserror 2.0.
|
|
4640
|
+
"thiserror 2.0.12",
|
|
4594
4641
|
"time",
|
|
4595
4642
|
]
|
|
4596
4643
|
|
|
4644
|
+
[[package]]
|
|
4645
|
+
name = "xz2"
|
|
4646
|
+
version = "0.1.7"
|
|
4647
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4648
|
+
checksum = "388c44dc09d76f1536602ead6d325eb532f5c122f17782bd57fb47baeeb767e2"
|
|
4649
|
+
dependencies = [
|
|
4650
|
+
"lzma-sys",
|
|
4651
|
+
]
|
|
4652
|
+
|
|
4597
4653
|
[[package]]
|
|
4598
4654
|
name = "yansi"
|
|
4599
4655
|
version = "1.0.1"
|
|
@@ -4602,7 +4658,7 @@ checksum = "cfe53a6657fd280eaa890a3bc59152892ffa3e30101319d168b781ed6529b049"
|
|
|
4602
4658
|
|
|
4603
4659
|
[[package]]
|
|
4604
4660
|
name = "yara-x"
|
|
4605
|
-
version = "0.
|
|
4661
|
+
version = "0.15.0"
|
|
4606
4662
|
dependencies = [
|
|
4607
4663
|
"aho-corasick",
|
|
4608
4664
|
"annotate-snippets",
|
|
@@ -4611,7 +4667,7 @@ dependencies = [
|
|
|
4611
4667
|
"ascii_tree",
|
|
4612
4668
|
"base64 0.22.1",
|
|
4613
4669
|
"bincode",
|
|
4614
|
-
"bitflags 2.
|
|
4670
|
+
"bitflags 2.9.0",
|
|
4615
4671
|
"bitvec",
|
|
4616
4672
|
"bstr",
|
|
4617
4673
|
"const-oid",
|
|
@@ -4620,12 +4676,12 @@ dependencies = [
|
|
|
4620
4676
|
"digest 0.10.7",
|
|
4621
4677
|
"dsa",
|
|
4622
4678
|
"ecdsa",
|
|
4623
|
-
"fmmap",
|
|
4624
4679
|
"globwalk",
|
|
4625
4680
|
"goldenfile",
|
|
4626
4681
|
"ihex",
|
|
4627
|
-
"indexmap 2.
|
|
4682
|
+
"indexmap 2.9.0",
|
|
4628
4683
|
"intaglio",
|
|
4684
|
+
"ipnet",
|
|
4629
4685
|
"itertools 0.14.0",
|
|
4630
4686
|
"lazy_static",
|
|
4631
4687
|
"lingua",
|
|
@@ -4635,8 +4691,9 @@ dependencies = [
|
|
|
4635
4691
|
"md-5",
|
|
4636
4692
|
"md2",
|
|
4637
4693
|
"memchr",
|
|
4694
|
+
"memmap2",
|
|
4638
4695
|
"memx",
|
|
4639
|
-
"nom
|
|
4696
|
+
"nom 8.0.0",
|
|
4640
4697
|
"num-derive 0.4.2",
|
|
4641
4698
|
"num-traits",
|
|
4642
4699
|
"p256",
|
|
@@ -4645,21 +4702,22 @@ dependencies = [
|
|
|
4645
4702
|
"protobuf",
|
|
4646
4703
|
"protobuf-codegen",
|
|
4647
4704
|
"protobuf-parse",
|
|
4705
|
+
"psl",
|
|
4648
4706
|
"quanta",
|
|
4649
4707
|
"rayon",
|
|
4650
4708
|
"regex",
|
|
4651
4709
|
"regex-automata",
|
|
4652
|
-
"regex-syntax
|
|
4710
|
+
"regex-syntax",
|
|
4653
4711
|
"roxmltree",
|
|
4654
4712
|
"rsa",
|
|
4655
|
-
"rustc-hash 2.1.
|
|
4713
|
+
"rustc-hash 2.1.1",
|
|
4656
4714
|
"serde",
|
|
4657
4715
|
"serde_json",
|
|
4658
4716
|
"sha1",
|
|
4659
4717
|
"sha2 0.10.8",
|
|
4660
4718
|
"smallvec",
|
|
4661
|
-
"strum_macros
|
|
4662
|
-
"thiserror 2.0.
|
|
4719
|
+
"strum_macros",
|
|
4720
|
+
"thiserror 2.0.12",
|
|
4663
4721
|
"tlsh-fixed",
|
|
4664
4722
|
"uuid",
|
|
4665
4723
|
"walrus",
|
|
@@ -4675,7 +4733,7 @@ dependencies = [
|
|
|
4675
4733
|
|
|
4676
4734
|
[[package]]
|
|
4677
4735
|
name = "yara-x-capi"
|
|
4678
|
-
version = "0.
|
|
4736
|
+
version = "0.15.0"
|
|
4679
4737
|
dependencies = [
|
|
4680
4738
|
"cbindgen",
|
|
4681
4739
|
"serde_json",
|
|
@@ -4684,7 +4742,7 @@ dependencies = [
|
|
|
4684
4742
|
|
|
4685
4743
|
[[package]]
|
|
4686
4744
|
name = "yara-x-cli"
|
|
4687
|
-
version = "0.
|
|
4745
|
+
version = "0.15.0"
|
|
4688
4746
|
dependencies = [
|
|
4689
4747
|
"anyhow",
|
|
4690
4748
|
"ascii_tree",
|
|
@@ -4709,8 +4767,8 @@ dependencies = [
|
|
|
4709
4767
|
"protobuf-json-mapping",
|
|
4710
4768
|
"serde",
|
|
4711
4769
|
"serde_json",
|
|
4712
|
-
"strum
|
|
4713
|
-
"strum_macros
|
|
4770
|
+
"strum",
|
|
4771
|
+
"strum_macros",
|
|
4714
4772
|
"superconsole",
|
|
4715
4773
|
"wild",
|
|
4716
4774
|
"yansi",
|
|
@@ -4722,41 +4780,41 @@ dependencies = [
|
|
|
4722
4780
|
|
|
4723
4781
|
[[package]]
|
|
4724
4782
|
name = "yara-x-fmt"
|
|
4725
|
-
version = "0.
|
|
4783
|
+
version = "0.15.0"
|
|
4726
4784
|
dependencies = [
|
|
4727
|
-
"bitflags 2.
|
|
4785
|
+
"bitflags 2.9.0",
|
|
4728
4786
|
"bstr",
|
|
4729
4787
|
"globwalk",
|
|
4730
4788
|
"goldenfile",
|
|
4731
4789
|
"lazy_static",
|
|
4732
4790
|
"pretty_assertions",
|
|
4733
4791
|
"rayon",
|
|
4734
|
-
"thiserror 2.0.
|
|
4792
|
+
"thiserror 2.0.12",
|
|
4735
4793
|
"yara-x-parser",
|
|
4736
4794
|
]
|
|
4737
4795
|
|
|
4738
4796
|
[[package]]
|
|
4739
4797
|
name = "yara-x-macros"
|
|
4740
|
-
version = "0.
|
|
4798
|
+
version = "0.15.0"
|
|
4741
4799
|
dependencies = [
|
|
4742
4800
|
"darling",
|
|
4743
4801
|
"proc-macro2",
|
|
4744
4802
|
"quote",
|
|
4745
|
-
"syn 2.0.
|
|
4803
|
+
"syn 2.0.101",
|
|
4746
4804
|
]
|
|
4747
4805
|
|
|
4748
4806
|
[[package]]
|
|
4749
4807
|
name = "yara-x-parser"
|
|
4750
|
-
version = "0.
|
|
4808
|
+
version = "0.15.0"
|
|
4751
4809
|
dependencies = [
|
|
4752
4810
|
"anyhow",
|
|
4753
4811
|
"ascii_tree",
|
|
4754
|
-
"bitflags 2.
|
|
4812
|
+
"bitflags 2.9.0",
|
|
4755
4813
|
"bstr",
|
|
4756
4814
|
"env_logger",
|
|
4757
4815
|
"globwalk",
|
|
4758
4816
|
"goldenfile",
|
|
4759
|
-
"indexmap 2.
|
|
4817
|
+
"indexmap 2.9.0",
|
|
4760
4818
|
"itertools 0.14.0",
|
|
4761
4819
|
"log",
|
|
4762
4820
|
"logos",
|
|
@@ -4764,14 +4822,14 @@ dependencies = [
|
|
|
4764
4822
|
"pretty_assertions",
|
|
4765
4823
|
"rayon",
|
|
4766
4824
|
"rowan",
|
|
4767
|
-
"rustc-hash 2.1.
|
|
4825
|
+
"rustc-hash 2.1.1",
|
|
4768
4826
|
"serde",
|
|
4769
4827
|
"yansi",
|
|
4770
4828
|
]
|
|
4771
4829
|
|
|
4772
4830
|
[[package]]
|
|
4773
4831
|
name = "yara-x-proto"
|
|
4774
|
-
version = "0.
|
|
4832
|
+
version = "0.15.0"
|
|
4775
4833
|
dependencies = [
|
|
4776
4834
|
"protobuf",
|
|
4777
4835
|
"protobuf-codegen",
|
|
@@ -4780,7 +4838,7 @@ dependencies = [
|
|
|
4780
4838
|
|
|
4781
4839
|
[[package]]
|
|
4782
4840
|
name = "yara-x-proto-yaml"
|
|
4783
|
-
version = "0.
|
|
4841
|
+
version = "0.15.0"
|
|
4784
4842
|
dependencies = [
|
|
4785
4843
|
"chrono",
|
|
4786
4844
|
"globwalk",
|
|
@@ -4795,13 +4853,16 @@ dependencies = [
|
|
|
4795
4853
|
|
|
4796
4854
|
[[package]]
|
|
4797
4855
|
name = "yara-x-py"
|
|
4798
|
-
version = "0.
|
|
4856
|
+
version = "0.15.0"
|
|
4799
4857
|
dependencies = [
|
|
4858
|
+
"protobuf",
|
|
4800
4859
|
"protobuf-json-mapping",
|
|
4801
4860
|
"pyo3",
|
|
4802
4861
|
"pyo3-build-config",
|
|
4803
4862
|
"pyo3-file",
|
|
4804
4863
|
"serde_json",
|
|
4864
|
+
"strum",
|
|
4865
|
+
"strum_macros",
|
|
4805
4866
|
"yara-x",
|
|
4806
4867
|
"yara-x-fmt",
|
|
4807
4868
|
]
|
|
@@ -4812,8 +4873,16 @@ version = "0.7.35"
|
|
|
4812
4873
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4813
4874
|
checksum = "1b9b4fd18abc82b8136838da5d50bae7bdea537c574d8dc1a34ed098d6c166f0"
|
|
4814
4875
|
dependencies = [
|
|
4815
|
-
"
|
|
4816
|
-
|
|
4876
|
+
"zerocopy-derive 0.7.35",
|
|
4877
|
+
]
|
|
4878
|
+
|
|
4879
|
+
[[package]]
|
|
4880
|
+
name = "zerocopy"
|
|
4881
|
+
version = "0.8.25"
|
|
4882
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4883
|
+
checksum = "a1702d9583232ddb9174e01bb7c15a2ab8fb1bc6f227aa1233858c351a3ba0cb"
|
|
4884
|
+
dependencies = [
|
|
4885
|
+
"zerocopy-derive 0.8.25",
|
|
4817
4886
|
]
|
|
4818
4887
|
|
|
4819
4888
|
[[package]]
|
|
@@ -4824,7 +4893,18 @@ checksum = "fa4f8080344d4671fb4e831a13ad1e68092748387dfc4f55e356242fae12ce3e"
|
|
|
4824
4893
|
dependencies = [
|
|
4825
4894
|
"proc-macro2",
|
|
4826
4895
|
"quote",
|
|
4827
|
-
"syn 2.0.
|
|
4896
|
+
"syn 2.0.101",
|
|
4897
|
+
]
|
|
4898
|
+
|
|
4899
|
+
[[package]]
|
|
4900
|
+
name = "zerocopy-derive"
|
|
4901
|
+
version = "0.8.25"
|
|
4902
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4903
|
+
checksum = "28a6e20d751156648aa063f3800b706ee209a32c0b4d9f24be3d980b01be55ef"
|
|
4904
|
+
dependencies = [
|
|
4905
|
+
"proc-macro2",
|
|
4906
|
+
"quote",
|
|
4907
|
+
"syn 2.0.101",
|
|
4828
4908
|
]
|
|
4829
4909
|
|
|
4830
4910
|
[[package]]
|
|
@@ -4844,75 +4924,77 @@ checksum = "ce36e65b0d2999d2aafac989fb249189a141aee1f53c612c1f37d72631959f69"
|
|
|
4844
4924
|
dependencies = [
|
|
4845
4925
|
"proc-macro2",
|
|
4846
4926
|
"quote",
|
|
4847
|
-
"syn 2.0.
|
|
4927
|
+
"syn 2.0.101",
|
|
4848
4928
|
]
|
|
4849
4929
|
|
|
4850
4930
|
[[package]]
|
|
4851
4931
|
name = "zip"
|
|
4852
|
-
version = "
|
|
4932
|
+
version = "3.0.0"
|
|
4853
4933
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4854
|
-
checksum = "
|
|
4934
|
+
checksum = "12598812502ed0105f607f941c386f43d441e00148fce9dec3ca5ffb0bde9308"
|
|
4855
4935
|
dependencies = [
|
|
4856
4936
|
"aes",
|
|
4857
4937
|
"arbitrary",
|
|
4858
4938
|
"bzip2",
|
|
4859
4939
|
"constant_time_eq",
|
|
4860
4940
|
"crc32fast",
|
|
4861
|
-
"crossbeam-utils",
|
|
4862
4941
|
"deflate64",
|
|
4863
|
-
"displaydoc",
|
|
4864
4942
|
"flate2",
|
|
4943
|
+
"getrandom 0.3.2",
|
|
4865
4944
|
"hmac",
|
|
4866
|
-
"indexmap 2.
|
|
4945
|
+
"indexmap 2.9.0",
|
|
4867
4946
|
"lzma-rs",
|
|
4868
4947
|
"memchr",
|
|
4869
4948
|
"pbkdf2",
|
|
4870
|
-
"rand",
|
|
4871
4949
|
"sha1",
|
|
4872
|
-
"thiserror 2.0.11",
|
|
4873
4950
|
"time",
|
|
4951
|
+
"xz2",
|
|
4874
4952
|
"zeroize",
|
|
4875
4953
|
"zopfli",
|
|
4876
4954
|
"zstd",
|
|
4877
4955
|
]
|
|
4878
4956
|
|
|
4957
|
+
[[package]]
|
|
4958
|
+
name = "zlib-rs"
|
|
4959
|
+
version = "0.5.0"
|
|
4960
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4961
|
+
checksum = "868b928d7949e09af2f6086dfc1e01936064cc7a819253bce650d4e2a2d63ba8"
|
|
4962
|
+
|
|
4879
4963
|
[[package]]
|
|
4880
4964
|
name = "zopfli"
|
|
4881
|
-
version = "0.8.
|
|
4965
|
+
version = "0.8.2"
|
|
4882
4966
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4883
|
-
checksum = "
|
|
4967
|
+
checksum = "edfc5ee405f504cd4984ecc6f14d02d55cfda60fa4b689434ef4102aae150cd7"
|
|
4884
4968
|
dependencies = [
|
|
4885
4969
|
"bumpalo",
|
|
4886
4970
|
"crc32fast",
|
|
4887
|
-
"lockfree-object-pool",
|
|
4888
4971
|
"log",
|
|
4889
|
-
"once_cell",
|
|
4890
4972
|
"simd-adler32",
|
|
4891
4973
|
]
|
|
4892
4974
|
|
|
4893
4975
|
[[package]]
|
|
4894
4976
|
name = "zstd"
|
|
4895
|
-
version = "0.13.
|
|
4977
|
+
version = "0.13.3"
|
|
4896
4978
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4897
|
-
checksum = "
|
|
4979
|
+
checksum = "e91ee311a569c327171651566e07972200e76fcfe2242a4fa446149a3881c08a"
|
|
4898
4980
|
dependencies = [
|
|
4899
4981
|
"zstd-safe",
|
|
4900
4982
|
]
|
|
4901
4983
|
|
|
4902
4984
|
[[package]]
|
|
4903
4985
|
name = "zstd-safe"
|
|
4904
|
-
version = "7.2.
|
|
4986
|
+
version = "7.2.4"
|
|
4905
4987
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4906
|
-
checksum = "
|
|
4988
|
+
checksum = "8f49c4d5f0abb602a93fb8736af2a4f4dd9512e36f7f570d66e65ff867ed3b9d"
|
|
4907
4989
|
dependencies = [
|
|
4908
4990
|
"zstd-sys",
|
|
4909
4991
|
]
|
|
4910
4992
|
|
|
4911
4993
|
[[package]]
|
|
4912
4994
|
name = "zstd-sys"
|
|
4913
|
-
version = "2.0.
|
|
4995
|
+
version = "2.0.15+zstd.1.5.7"
|
|
4914
4996
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4915
|
-
checksum = "
|
|
4997
|
+
checksum = "eb81183ddd97d0c74cedf1d50d85c8d08c1b8b68ee863bdee9e706eedba1a237"
|
|
4916
4998
|
dependencies = [
|
|
4917
4999
|
"cc",
|
|
4918
5000
|
"pkg-config",
|