yara-x 0.13.0__tar.gz → 0.14.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.14.0}/Cargo.lock +1005 -574
- {yara_x-0.13.0 → yara_x-0.14.0}/Cargo.toml +46 -44
- {yara_x-0.13.0 → yara_x-0.14.0}/PKG-INFO +1 -1
- {yara_x-0.13.0 → yara_x-0.14.0}/lib/Cargo.toml +17 -1
- {yara_x-0.13.0 → yara_x-0.14.0}/lib/build.rs +21 -12
- {yara_x-0.13.0 → yara_x-0.14.0}/lib/src/compiler/atoms/quality.rs +2 -2
- {yara_x-0.13.0 → yara_x-0.14.0}/lib/src/compiler/errors.rs +67 -3
- {yara_x-0.13.0 → yara_x-0.14.0}/lib/src/compiler/ir/ast2ir.rs +10 -1
- {yara_x-0.13.0 → yara_x-0.14.0}/lib/src/compiler/ir/tests/mod.rs +13 -3
- {yara_x-0.13.0 → yara_x-0.14.0}/lib/src/compiler/ir/tests/testdata/1.cse.ir +29 -29
- {yara_x-0.13.0 → yara_x-0.14.0}/lib/src/compiler/ir/tests/testdata/1.hoisting.ir +29 -29
- {yara_x-0.13.0 → yara_x-0.14.0}/lib/src/compiler/ir/tests/testdata/1.ir +29 -29
- {yara_x-0.13.0 → yara_x-0.14.0}/lib/src/compiler/ir/tests/testdata/1.no-folding.ir +36 -36
- {yara_x-0.13.0 → yara_x-0.14.0}/lib/src/compiler/ir/tests/testdata/2.cse.ir +21 -21
- {yara_x-0.13.0 → yara_x-0.14.0}/lib/src/compiler/ir/tests/testdata/2.hoisting.ir +29 -29
- {yara_x-0.13.0 → yara_x-0.14.0}/lib/src/compiler/ir/tests/testdata/2.ir +23 -23
- {yara_x-0.13.0 → yara_x-0.14.0}/lib/src/compiler/ir/tests/testdata/2.no-folding.ir +23 -23
- {yara_x-0.13.0 → yara_x-0.14.0}/lib/src/compiler/ir/tests/testdata/3.cse.ir +5 -5
- {yara_x-0.13.0 → yara_x-0.14.0}/lib/src/compiler/ir/tests/testdata/3.hoisting.ir +5 -5
- {yara_x-0.13.0 → yara_x-0.14.0}/lib/src/compiler/ir/tests/testdata/3.ir +5 -5
- {yara_x-0.13.0 → yara_x-0.14.0}/lib/src/compiler/ir/tests/testdata/3.no-folding.ir +5 -5
- {yara_x-0.13.0 → yara_x-0.14.0}/lib/src/compiler/ir/tests/testdata/4.cse.ir +18 -18
- {yara_x-0.13.0 → yara_x-0.14.0}/lib/src/compiler/ir/tests/testdata/4.hoisting.ir +29 -29
- {yara_x-0.13.0 → yara_x-0.14.0}/lib/src/compiler/ir/tests/testdata/4.ir +18 -18
- {yara_x-0.13.0 → yara_x-0.14.0}/lib/src/compiler/ir/tests/testdata/4.no-folding.ir +18 -18
- {yara_x-0.13.0 → yara_x-0.14.0}/lib/src/compiler/ir/tests/testdata/5.cse.ir +48 -48
- {yara_x-0.13.0 → yara_x-0.14.0}/lib/src/compiler/ir/tests/testdata/5.hoisting.ir +58 -58
- {yara_x-0.13.0 → yara_x-0.14.0}/lib/src/compiler/ir/tests/testdata/5.ir +58 -58
- {yara_x-0.13.0 → yara_x-0.14.0}/lib/src/compiler/ir/tests/testdata/5.no-folding.ir +58 -58
- yara_x-0.14.0/lib/src/compiler/ir/tests/testdata/6.cse.ir +23 -0
- yara_x-0.14.0/lib/src/compiler/ir/tests/testdata/6.hoisting.ir +22 -0
- yara_x-0.14.0/lib/src/compiler/ir/tests/testdata/6.ir +22 -0
- yara_x-0.14.0/lib/src/compiler/ir/tests/testdata/6.no-folding.ir +22 -0
- {yara_x-0.13.0 → yara_x-0.14.0}/lib/src/compiler/ir/tests/testdata/7.cse.ir +18 -18
- {yara_x-0.13.0 → yara_x-0.14.0}/lib/src/compiler/ir/tests/testdata/7.hoisting.ir +24 -24
- {yara_x-0.13.0 → yara_x-0.14.0}/lib/src/compiler/ir/tests/testdata/7.ir +21 -21
- {yara_x-0.13.0 → yara_x-0.14.0}/lib/src/compiler/ir/tests/testdata/7.no-folding.ir +21 -21
- {yara_x-0.13.0 → yara_x-0.14.0}/lib/src/compiler/ir/tests/testdata/8.cse.ir +9 -9
- {yara_x-0.13.0 → yara_x-0.14.0}/lib/src/compiler/ir/tests/testdata/8.hoisting.ir +10 -10
- {yara_x-0.13.0 → yara_x-0.14.0}/lib/src/compiler/ir/tests/testdata/8.ir +9 -9
- {yara_x-0.13.0 → yara_x-0.14.0}/lib/src/compiler/ir/tests/testdata/8.no-folding.ir +9 -9
- yara_x-0.14.0/lib/src/compiler/ir/tests/testdata/9.cse.ir +23 -0
- yara_x-0.14.0/lib/src/compiler/ir/tests/testdata/9.hoisting.ir +23 -0
- yara_x-0.14.0/lib/src/compiler/ir/tests/testdata/9.ir +23 -0
- yara_x-0.14.0/lib/src/compiler/ir/tests/testdata/9.no-folding.ir +23 -0
- {yara_x-0.13.0 → yara_x-0.14.0}/lib/src/compiler/linters.rs +151 -0
- {yara_x-0.13.0 → yara_x-0.14.0}/lib/src/compiler/mod.rs +9 -5
- {yara_x-0.13.0 → yara_x-0.14.0}/lib/src/compiler/tests/mod.rs +122 -1
- yara_x-0.14.0/lib/src/compiler/tests/testdata/errors/141.in +10 -0
- yara_x-0.14.0/lib/src/compiler/tests/testdata/errors/141.out +6 -0
- {yara_x-0.13.0 → yara_x-0.14.0}/lib/src/compiler/warnings.rs +64 -0
- {yara_x-0.13.0 → yara_x-0.14.0}/lib/src/modules/add_modules.rs +2 -0
- {yara_x-0.13.0 → yara_x-0.14.0}/lib/src/modules/dotnet/parser.rs +293 -266
- {yara_x-0.13.0 → yara_x-0.14.0}/lib/src/modules/elf/mod.rs +43 -6
- {yara_x-0.13.0 → yara_x-0.14.0}/lib/src/modules/elf/parser.rs +23 -17
- {yara_x-0.13.0 → yara_x-0.14.0}/lib/src/modules/lnk/mod.rs +5 -8
- {yara_x-0.13.0 → yara_x-0.14.0}/lib/src/modules/lnk/parser.rs +44 -31
- {yara_x-0.13.0 → yara_x-0.14.0}/lib/src/modules/macho/mod.rs +102 -0
- {yara_x-0.13.0 → yara_x-0.14.0}/lib/src/modules/macho/parser.rs +510 -368
- {yara_x-0.13.0 → yara_x-0.14.0}/lib/src/modules/magic/mod.rs +2 -8
- {yara_x-0.13.0 → yara_x-0.14.0}/lib/src/modules/mod.rs +1 -0
- {yara_x-0.13.0 → yara_x-0.14.0}/lib/src/modules/modules.rs +3 -1
- {yara_x-0.13.0 → yara_x-0.14.0}/lib/src/modules/pe/authenticode.rs +47 -15
- {yara_x-0.13.0 → yara_x-0.14.0}/lib/src/modules/pe/mod.rs +38 -0
- {yara_x-0.13.0 → yara_x-0.14.0}/lib/src/modules/pe/parser.rs +119 -94
- {yara_x-0.13.0 → yara_x-0.14.0}/lib/src/modules/protos/test_proto2.proto +2 -1
- yara_x-0.14.0/lib/src/modules/protos/vt/analysis.proto +17 -0
- yara_x-0.14.0/lib/src/modules/protos/vt/filetypes.proto +192 -0
- yara_x-0.14.0/lib/src/modules/protos/vt/gti_score.proto +32 -0
- yara_x-0.14.0/lib/src/modules/protos/vt/hunting_gti_score.proto +26 -0
- yara_x-0.14.0/lib/src/modules/protos/vt/sandbox.proto +358 -0
- yara_x-0.14.0/lib/src/modules/protos/vt/sigma.proto +59 -0
- yara_x-0.14.0/lib/src/modules/protos/vt/submitter.proto +13 -0
- yara_x-0.14.0/lib/src/modules/protos/vt/titan.proto +118 -0
- yara_x-0.14.0/lib/src/modules/protos/vt/tools/net_analysis.proto +51 -0
- yara_x-0.14.0/lib/src/modules/protos/vt/vtnet.proto +249 -0
- {yara_x-0.13.0 → yara_x-0.14.0}/lib/src/modules/test_proto2/mod.rs +17 -14
- {yara_x-0.13.0 → yara_x-0.14.0}/lib/src/modules/test_proto2/tests/mod.rs +8 -0
- yara_x-0.14.0/lib/src/modules/vt/mod.rs +523 -0
- {yara_x-0.13.0 → yara_x-0.14.0}/lib/src/re/fast/compiler.rs +2 -2
- {yara_x-0.13.0 → yara_x-0.14.0}/lib/src/re/hir.rs +27 -8
- {yara_x-0.13.0 → yara_x-0.14.0}/lib/src/re/mod.rs +1 -1
- {yara_x-0.13.0 → yara_x-0.14.0}/lib/src/re/thompson/compiler.rs +11 -1
- {yara_x-0.13.0 → yara_x-0.14.0}/lib/src/re/thompson/instr.rs +23 -1
- {yara_x-0.13.0 → yara_x-0.14.0}/lib/src/re/thompson/pikevm.rs +118 -17
- {yara_x-0.13.0 → yara_x-0.14.0}/lib/src/re/thompson/tests.rs +95 -0
- {yara_x-0.13.0 → yara_x-0.14.0}/lib/src/scanner/context.rs +35 -19
- {yara_x-0.13.0 → yara_x-0.14.0}/lib/src/scanner/mod.rs +12 -7
- {yara_x-0.13.0 → yara_x-0.14.0}/lib/src/symbols/mod.rs +5 -4
- {yara_x-0.13.0 → yara_x-0.14.0}/lib/src/tests/mod.rs +52 -6
- {yara_x-0.13.0 → yara_x-0.14.0}/lib/src/types/structure.rs +15 -1
- 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.14.0}/README.md +0 -0
- {yara_x-0.13.0 → yara_x-0.14.0}/fmt/Cargo.lock +0 -0
- {yara_x-0.13.0 → yara_x-0.14.0}/fmt/Cargo.toml +0 -0
- {yara_x-0.13.0 → yara_x-0.14.0}/fmt/README.md +0 -0
- {yara_x-0.13.0 → yara_x-0.14.0}/fmt/src/align.rs +0 -0
- {yara_x-0.13.0 → yara_x-0.14.0}/fmt/src/bubble.rs +0 -0
- {yara_x-0.13.0 → yara_x-0.14.0}/fmt/src/comments.rs +0 -0
- {yara_x-0.13.0 → yara_x-0.14.0}/fmt/src/format_hex_patterns.rs +0 -0
- {yara_x-0.13.0 → yara_x-0.14.0}/fmt/src/indentation.rs +0 -0
- {yara_x-0.13.0 → yara_x-0.14.0}/fmt/src/lib.rs +0 -0
- {yara_x-0.13.0 → yara_x-0.14.0}/fmt/src/processor/mod.rs +0 -0
- {yara_x-0.13.0 → yara_x-0.14.0}/fmt/src/processor/tests.rs +0 -0
- {yara_x-0.13.0 → yara_x-0.14.0}/fmt/src/testdata/config_tests/align_metadata_false.formatted +0 -0
- {yara_x-0.13.0 → yara_x-0.14.0}/fmt/src/testdata/config_tests/align_patterns_false.formatted +0 -0
- {yara_x-0.13.0 → yara_x-0.14.0}/fmt/src/testdata/config_tests/align_rule.unformatted +0 -0
- {yara_x-0.13.0 → yara_x-0.14.0}/fmt/src/testdata/config_tests/empty_line_after_section_header_true.formatted +0 -0
- {yara_x-0.13.0 → yara_x-0.14.0}/fmt/src/testdata/config_tests/empty_line_before_section_header_false.formatted +0 -0
- {yara_x-0.13.0 → yara_x-0.14.0}/fmt/src/testdata/config_tests/generic_rule.unformatted +0 -0
- {yara_x-0.13.0 → yara_x-0.14.0}/fmt/src/testdata/config_tests/indent_section_contents_false.formatted +0 -0
- {yara_x-0.13.0 → yara_x-0.14.0}/fmt/src/testdata/config_tests/indent_section_headers_false.formatted +0 -0
- {yara_x-0.13.0 → yara_x-0.14.0}/fmt/src/testdata/config_tests/indent_spaces_one.formatted +0 -0
- {yara_x-0.13.0 → yara_x-0.14.0}/fmt/src/testdata/config_tests/indent_spaces_zero.formatted +0 -0
- {yara_x-0.13.0 → yara_x-0.14.0}/fmt/src/testdata/config_tests/newline_before_curly_brace_true.formatted +0 -0
- {yara_x-0.13.0 → yara_x-0.14.0}/fmt/src/testdata/default_tests/test1.formatted +0 -0
- {yara_x-0.13.0 → yara_x-0.14.0}/fmt/src/testdata/default_tests/test1.unformatted +0 -0
- {yara_x-0.13.0 → yara_x-0.14.0}/fmt/src/testdata/default_tests/test10.formatted +0 -0
- {yara_x-0.13.0 → yara_x-0.14.0}/fmt/src/testdata/default_tests/test10.unformatted +0 -0
- {yara_x-0.13.0 → yara_x-0.14.0}/fmt/src/testdata/default_tests/test11.formatted +0 -0
- {yara_x-0.13.0 → yara_x-0.14.0}/fmt/src/testdata/default_tests/test11.unformatted +0 -0
- {yara_x-0.13.0 → yara_x-0.14.0}/fmt/src/testdata/default_tests/test12.formatted +0 -0
- {yara_x-0.13.0 → yara_x-0.14.0}/fmt/src/testdata/default_tests/test12.unformatted +0 -0
- {yara_x-0.13.0 → yara_x-0.14.0}/fmt/src/testdata/default_tests/test13.formatted +0 -0
- {yara_x-0.13.0 → yara_x-0.14.0}/fmt/src/testdata/default_tests/test13.unformatted +0 -0
- {yara_x-0.13.0 → yara_x-0.14.0}/fmt/src/testdata/default_tests/test14.formatted +0 -0
- {yara_x-0.13.0 → yara_x-0.14.0}/fmt/src/testdata/default_tests/test14.unformatted +0 -0
- {yara_x-0.13.0 → yara_x-0.14.0}/fmt/src/testdata/default_tests/test15.formatted +0 -0
- {yara_x-0.13.0 → yara_x-0.14.0}/fmt/src/testdata/default_tests/test15.unformatted +0 -0
- {yara_x-0.13.0 → yara_x-0.14.0}/fmt/src/testdata/default_tests/test16.formatted +0 -0
- {yara_x-0.13.0 → yara_x-0.14.0}/fmt/src/testdata/default_tests/test16.unformatted +0 -0
- {yara_x-0.13.0 → yara_x-0.14.0}/fmt/src/testdata/default_tests/test17.formatted +0 -0
- {yara_x-0.13.0 → yara_x-0.14.0}/fmt/src/testdata/default_tests/test17.unformatted +0 -0
- {yara_x-0.13.0 → yara_x-0.14.0}/fmt/src/testdata/default_tests/test18.formatted +0 -0
- {yara_x-0.13.0 → yara_x-0.14.0}/fmt/src/testdata/default_tests/test18.unformatted +0 -0
- {yara_x-0.13.0 → yara_x-0.14.0}/fmt/src/testdata/default_tests/test19.formatted +0 -0
- {yara_x-0.13.0 → yara_x-0.14.0}/fmt/src/testdata/default_tests/test19.unformatted +0 -0
- {yara_x-0.13.0 → yara_x-0.14.0}/fmt/src/testdata/default_tests/test2.formatted +0 -0
- {yara_x-0.13.0 → yara_x-0.14.0}/fmt/src/testdata/default_tests/test2.unformatted +0 -0
- {yara_x-0.13.0 → yara_x-0.14.0}/fmt/src/testdata/default_tests/test20.formatted +0 -0
- {yara_x-0.13.0 → yara_x-0.14.0}/fmt/src/testdata/default_tests/test20.unformatted +0 -0
- {yara_x-0.13.0 → yara_x-0.14.0}/fmt/src/testdata/default_tests/test21.formatted +0 -0
- {yara_x-0.13.0 → yara_x-0.14.0}/fmt/src/testdata/default_tests/test21.unformatted +0 -0
- {yara_x-0.13.0 → yara_x-0.14.0}/fmt/src/testdata/default_tests/test22.formatted +0 -0
- {yara_x-0.13.0 → yara_x-0.14.0}/fmt/src/testdata/default_tests/test22.unformatted +0 -0
- {yara_x-0.13.0 → yara_x-0.14.0}/fmt/src/testdata/default_tests/test23.formatted +0 -0
- {yara_x-0.13.0 → yara_x-0.14.0}/fmt/src/testdata/default_tests/test23.unformatted +0 -0
- {yara_x-0.13.0 → yara_x-0.14.0}/fmt/src/testdata/default_tests/test24.formatted +0 -0
- {yara_x-0.13.0 → yara_x-0.14.0}/fmt/src/testdata/default_tests/test24.unformatted +0 -0
- {yara_x-0.13.0 → yara_x-0.14.0}/fmt/src/testdata/default_tests/test25.formatted +0 -0
- {yara_x-0.13.0 → yara_x-0.14.0}/fmt/src/testdata/default_tests/test25.unformatted +0 -0
- {yara_x-0.13.0 → yara_x-0.14.0}/fmt/src/testdata/default_tests/test26.formatted +0 -0
- {yara_x-0.13.0 → yara_x-0.14.0}/fmt/src/testdata/default_tests/test26.unformatted +0 -0
- {yara_x-0.13.0 → yara_x-0.14.0}/fmt/src/testdata/default_tests/test27.formatted +0 -0
- {yara_x-0.13.0 → yara_x-0.14.0}/fmt/src/testdata/default_tests/test27.unformatted +0 -0
- {yara_x-0.13.0 → yara_x-0.14.0}/fmt/src/testdata/default_tests/test28.formatted +0 -0
- {yara_x-0.13.0 → yara_x-0.14.0}/fmt/src/testdata/default_tests/test28.unformatted +0 -0
- {yara_x-0.13.0 → yara_x-0.14.0}/fmt/src/testdata/default_tests/test29.formatted +0 -0
- {yara_x-0.13.0 → yara_x-0.14.0}/fmt/src/testdata/default_tests/test29.unformatted +0 -0
- {yara_x-0.13.0 → yara_x-0.14.0}/fmt/src/testdata/default_tests/test3.formatted +0 -0
- {yara_x-0.13.0 → yara_x-0.14.0}/fmt/src/testdata/default_tests/test3.unformatted +0 -0
- {yara_x-0.13.0 → yara_x-0.14.0}/fmt/src/testdata/default_tests/test30.formatted +0 -0
- {yara_x-0.13.0 → yara_x-0.14.0}/fmt/src/testdata/default_tests/test30.unformatted +0 -0
- {yara_x-0.13.0 → yara_x-0.14.0}/fmt/src/testdata/default_tests/test31.formatted +0 -0
- {yara_x-0.13.0 → yara_x-0.14.0}/fmt/src/testdata/default_tests/test31.unformatted +0 -0
- {yara_x-0.13.0 → yara_x-0.14.0}/fmt/src/testdata/default_tests/test32.formatted +0 -0
- {yara_x-0.13.0 → yara_x-0.14.0}/fmt/src/testdata/default_tests/test32.unformatted +0 -0
- {yara_x-0.13.0 → yara_x-0.14.0}/fmt/src/testdata/default_tests/test33.formatted +0 -0
- {yara_x-0.13.0 → yara_x-0.14.0}/fmt/src/testdata/default_tests/test33.unformatted +0 -0
- {yara_x-0.13.0 → yara_x-0.14.0}/fmt/src/testdata/default_tests/test34.formatted +0 -0
- {yara_x-0.13.0 → yara_x-0.14.0}/fmt/src/testdata/default_tests/test34.unformatted +0 -0
- {yara_x-0.13.0 → yara_x-0.14.0}/fmt/src/testdata/default_tests/test4.formatted +0 -0
- {yara_x-0.13.0 → yara_x-0.14.0}/fmt/src/testdata/default_tests/test4.unformatted +0 -0
- {yara_x-0.13.0 → yara_x-0.14.0}/fmt/src/testdata/default_tests/test5.formatted +0 -0
- {yara_x-0.13.0 → yara_x-0.14.0}/fmt/src/testdata/default_tests/test5.unformatted +0 -0
- {yara_x-0.13.0 → yara_x-0.14.0}/fmt/src/testdata/default_tests/test6.formatted +0 -0
- {yara_x-0.13.0 → yara_x-0.14.0}/fmt/src/testdata/default_tests/test6.unformatted +0 -0
- {yara_x-0.13.0 → yara_x-0.14.0}/fmt/src/testdata/default_tests/test7.formatted +0 -0
- {yara_x-0.13.0 → yara_x-0.14.0}/fmt/src/testdata/default_tests/test7.unformatted +0 -0
- {yara_x-0.13.0 → yara_x-0.14.0}/fmt/src/testdata/default_tests/test8.formatted +0 -0
- {yara_x-0.13.0 → yara_x-0.14.0}/fmt/src/testdata/default_tests/test8.unformatted +0 -0
- {yara_x-0.13.0 → yara_x-0.14.0}/fmt/src/testdata/default_tests/test9.formatted +0 -0
- {yara_x-0.13.0 → yara_x-0.14.0}/fmt/src/testdata/default_tests/test9.unformatted +0 -0
- {yara_x-0.13.0 → yara_x-0.14.0}/fmt/src/tests.rs +0 -0
- {yara_x-0.13.0 → yara_x-0.14.0}/fmt/src/tokens/mod.rs +0 -0
- {yara_x-0.13.0 → yara_x-0.14.0}/fmt/src/tokens/tests.rs +0 -0
- {yara_x-0.13.0 → yara_x-0.14.0}/fmt/src/trailing_spaces.rs +0 -0
- {yara_x-0.13.0 → yara_x-0.14.0}/lib/README.md +0 -0
- {yara_x-0.13.0 → yara_x-0.14.0}/lib/src/compiler/atoms/mask.rs +0 -0
- {yara_x-0.13.0 → yara_x-0.14.0}/lib/src/compiler/atoms/mod.rs +0 -0
- {yara_x-0.13.0 → yara_x-0.14.0}/lib/src/compiler/base64.rs +0 -0
- {yara_x-0.13.0 → yara_x-0.14.0}/lib/src/compiler/context.rs +0 -0
- {yara_x-0.13.0 → yara_x-0.14.0}/lib/src/compiler/emit.rs +0 -0
- {yara_x-0.13.0 → yara_x-0.14.0}/lib/src/compiler/ir/dfs.rs +0 -0
- {yara_x-0.13.0 → yara_x-0.14.0}/lib/src/compiler/ir/hex2hir.rs +0 -0
- {yara_x-0.13.0 → yara_x-0.14.0}/lib/src/compiler/ir/mod.rs +0 -0
- {yara_x-0.13.0 → yara_x-0.14.0}/lib/src/compiler/ir/tests/testdata/1.in +0 -0
- {yara_x-0.13.0 → yara_x-0.14.0}/lib/src/compiler/ir/tests/testdata/2.in +0 -0
- {yara_x-0.13.0 → yara_x-0.14.0}/lib/src/compiler/ir/tests/testdata/3.in +0 -0
- {yara_x-0.13.0 → yara_x-0.14.0}/lib/src/compiler/ir/tests/testdata/4.in +0 -0
- {yara_x-0.13.0 → yara_x-0.14.0}/lib/src/compiler/ir/tests/testdata/5.in +0 -0
- {yara_x-0.13.0 → yara_x-0.14.0}/lib/src/compiler/ir/tests/testdata/6.in +0 -0
- {yara_x-0.13.0 → yara_x-0.14.0}/lib/src/compiler/ir/tests/testdata/7.in +0 -0
- {yara_x-0.13.0 → yara_x-0.14.0}/lib/src/compiler/ir/tests/testdata/8.in +0 -0
- {yara_x-0.13.0 → yara_x-0.14.0}/lib/src/compiler/ir/tests/testdata/9.in +0 -0
- {yara_x-0.13.0 → yara_x-0.14.0}/lib/src/compiler/report.rs +0 -0
- {yara_x-0.13.0 → yara_x-0.14.0}/lib/src/compiler/rules.rs +0 -0
- {yara_x-0.13.0 → yara_x-0.14.0}/lib/src/compiler/tests/testdata/errors/1.in +0 -0
- {yara_x-0.13.0 → yara_x-0.14.0}/lib/src/compiler/tests/testdata/errors/1.out +0 -0
- {yara_x-0.13.0 → yara_x-0.14.0}/lib/src/compiler/tests/testdata/errors/10.in +0 -0
- {yara_x-0.13.0 → yara_x-0.14.0}/lib/src/compiler/tests/testdata/errors/10.out +0 -0
- {yara_x-0.13.0 → yara_x-0.14.0}/lib/src/compiler/tests/testdata/errors/100.in +0 -0
- {yara_x-0.13.0 → yara_x-0.14.0}/lib/src/compiler/tests/testdata/errors/100.out +0 -0
- {yara_x-0.13.0 → yara_x-0.14.0}/lib/src/compiler/tests/testdata/errors/101.in +0 -0
- {yara_x-0.13.0 → yara_x-0.14.0}/lib/src/compiler/tests/testdata/errors/101.out +0 -0
- {yara_x-0.13.0 → yara_x-0.14.0}/lib/src/compiler/tests/testdata/errors/102.in +0 -0
- {yara_x-0.13.0 → yara_x-0.14.0}/lib/src/compiler/tests/testdata/errors/102.out +0 -0
- {yara_x-0.13.0 → yara_x-0.14.0}/lib/src/compiler/tests/testdata/errors/103.in +0 -0
- {yara_x-0.13.0 → yara_x-0.14.0}/lib/src/compiler/tests/testdata/errors/103.out +0 -0
- {yara_x-0.13.0 → yara_x-0.14.0}/lib/src/compiler/tests/testdata/errors/104.in +0 -0
- {yara_x-0.13.0 → yara_x-0.14.0}/lib/src/compiler/tests/testdata/errors/104.out +0 -0
- {yara_x-0.13.0 → yara_x-0.14.0}/lib/src/compiler/tests/testdata/errors/105.in +0 -0
- {yara_x-0.13.0 → yara_x-0.14.0}/lib/src/compiler/tests/testdata/errors/105.out +0 -0
- {yara_x-0.13.0 → yara_x-0.14.0}/lib/src/compiler/tests/testdata/errors/106.in +0 -0
- {yara_x-0.13.0 → yara_x-0.14.0}/lib/src/compiler/tests/testdata/errors/106.out +0 -0
- {yara_x-0.13.0 → yara_x-0.14.0}/lib/src/compiler/tests/testdata/errors/107.in +0 -0
- {yara_x-0.13.0 → yara_x-0.14.0}/lib/src/compiler/tests/testdata/errors/107.out +0 -0
- {yara_x-0.13.0 → yara_x-0.14.0}/lib/src/compiler/tests/testdata/errors/108.in +0 -0
- {yara_x-0.13.0 → yara_x-0.14.0}/lib/src/compiler/tests/testdata/errors/108.out +0 -0
- {yara_x-0.13.0 → yara_x-0.14.0}/lib/src/compiler/tests/testdata/errors/109.in +0 -0
- {yara_x-0.13.0 → yara_x-0.14.0}/lib/src/compiler/tests/testdata/errors/109.out +0 -0
- {yara_x-0.13.0 → yara_x-0.14.0}/lib/src/compiler/tests/testdata/errors/11.in +0 -0
- {yara_x-0.13.0 → yara_x-0.14.0}/lib/src/compiler/tests/testdata/errors/11.out +0 -0
- {yara_x-0.13.0 → yara_x-0.14.0}/lib/src/compiler/tests/testdata/errors/110.in +0 -0
- {yara_x-0.13.0 → yara_x-0.14.0}/lib/src/compiler/tests/testdata/errors/110.out +0 -0
- {yara_x-0.13.0 → yara_x-0.14.0}/lib/src/compiler/tests/testdata/errors/111.in +0 -0
- {yara_x-0.13.0 → yara_x-0.14.0}/lib/src/compiler/tests/testdata/errors/111.out +0 -0
- {yara_x-0.13.0 → yara_x-0.14.0}/lib/src/compiler/tests/testdata/errors/112.in +0 -0
- {yara_x-0.13.0 → yara_x-0.14.0}/lib/src/compiler/tests/testdata/errors/112.out +0 -0
- {yara_x-0.13.0 → yara_x-0.14.0}/lib/src/compiler/tests/testdata/errors/113.in +0 -0
- {yara_x-0.13.0 → yara_x-0.14.0}/lib/src/compiler/tests/testdata/errors/113.out +0 -0
- {yara_x-0.13.0 → yara_x-0.14.0}/lib/src/compiler/tests/testdata/errors/114.in +0 -0
- {yara_x-0.13.0 → yara_x-0.14.0}/lib/src/compiler/tests/testdata/errors/114.out +0 -0
- {yara_x-0.13.0 → yara_x-0.14.0}/lib/src/compiler/tests/testdata/errors/115.in +0 -0
- {yara_x-0.13.0 → yara_x-0.14.0}/lib/src/compiler/tests/testdata/errors/115.out +0 -0
- {yara_x-0.13.0 → yara_x-0.14.0}/lib/src/compiler/tests/testdata/errors/116.in +0 -0
- {yara_x-0.13.0 → yara_x-0.14.0}/lib/src/compiler/tests/testdata/errors/116.out +0 -0
- {yara_x-0.13.0 → yara_x-0.14.0}/lib/src/compiler/tests/testdata/errors/117.in +0 -0
- {yara_x-0.13.0 → yara_x-0.14.0}/lib/src/compiler/tests/testdata/errors/117.out +0 -0
- {yara_x-0.13.0 → yara_x-0.14.0}/lib/src/compiler/tests/testdata/errors/118.in +0 -0
- {yara_x-0.13.0 → yara_x-0.14.0}/lib/src/compiler/tests/testdata/errors/118.out +0 -0
- {yara_x-0.13.0 → yara_x-0.14.0}/lib/src/compiler/tests/testdata/errors/119.in +0 -0
- {yara_x-0.13.0 → yara_x-0.14.0}/lib/src/compiler/tests/testdata/errors/119.out +0 -0
- {yara_x-0.13.0 → yara_x-0.14.0}/lib/src/compiler/tests/testdata/errors/12.in +0 -0
- {yara_x-0.13.0 → yara_x-0.14.0}/lib/src/compiler/tests/testdata/errors/12.out +0 -0
- {yara_x-0.13.0 → yara_x-0.14.0}/lib/src/compiler/tests/testdata/errors/120.in +0 -0
- {yara_x-0.13.0 → yara_x-0.14.0}/lib/src/compiler/tests/testdata/errors/120.out +0 -0
- {yara_x-0.13.0 → yara_x-0.14.0}/lib/src/compiler/tests/testdata/errors/121.in +0 -0
- {yara_x-0.13.0 → yara_x-0.14.0}/lib/src/compiler/tests/testdata/errors/121.out +0 -0
- {yara_x-0.13.0 → yara_x-0.14.0}/lib/src/compiler/tests/testdata/errors/122.in +0 -0
- {yara_x-0.13.0 → yara_x-0.14.0}/lib/src/compiler/tests/testdata/errors/122.out +0 -0
- {yara_x-0.13.0 → yara_x-0.14.0}/lib/src/compiler/tests/testdata/errors/123.in +0 -0
- {yara_x-0.13.0 → yara_x-0.14.0}/lib/src/compiler/tests/testdata/errors/123.out +0 -0
- {yara_x-0.13.0 → yara_x-0.14.0}/lib/src/compiler/tests/testdata/errors/124.in +0 -0
- {yara_x-0.13.0 → yara_x-0.14.0}/lib/src/compiler/tests/testdata/errors/124.out +0 -0
- {yara_x-0.13.0 → yara_x-0.14.0}/lib/src/compiler/tests/testdata/errors/125.in +0 -0
- {yara_x-0.13.0 → yara_x-0.14.0}/lib/src/compiler/tests/testdata/errors/125.out +0 -0
- {yara_x-0.13.0 → yara_x-0.14.0}/lib/src/compiler/tests/testdata/errors/126.in +0 -0
- {yara_x-0.13.0 → yara_x-0.14.0}/lib/src/compiler/tests/testdata/errors/126.out +0 -0
- {yara_x-0.13.0 → yara_x-0.14.0}/lib/src/compiler/tests/testdata/errors/127.in +0 -0
- {yara_x-0.13.0 → yara_x-0.14.0}/lib/src/compiler/tests/testdata/errors/127.out +0 -0
- {yara_x-0.13.0 → yara_x-0.14.0}/lib/src/compiler/tests/testdata/errors/128.in +0 -0
- {yara_x-0.13.0 → yara_x-0.14.0}/lib/src/compiler/tests/testdata/errors/128.out +0 -0
- {yara_x-0.13.0 → yara_x-0.14.0}/lib/src/compiler/tests/testdata/errors/129.in +0 -0
- {yara_x-0.13.0 → yara_x-0.14.0}/lib/src/compiler/tests/testdata/errors/129.out +0 -0
- {yara_x-0.13.0 → yara_x-0.14.0}/lib/src/compiler/tests/testdata/errors/13.in +0 -0
- {yara_x-0.13.0 → yara_x-0.14.0}/lib/src/compiler/tests/testdata/errors/13.out +0 -0
- {yara_x-0.13.0 → yara_x-0.14.0}/lib/src/compiler/tests/testdata/errors/131.in +0 -0
- {yara_x-0.13.0 → yara_x-0.14.0}/lib/src/compiler/tests/testdata/errors/131.out +0 -0
- {yara_x-0.13.0 → yara_x-0.14.0}/lib/src/compiler/tests/testdata/errors/132.in +0 -0
- {yara_x-0.13.0 → yara_x-0.14.0}/lib/src/compiler/tests/testdata/errors/132.out +0 -0
- {yara_x-0.13.0 → yara_x-0.14.0}/lib/src/compiler/tests/testdata/errors/133.in +0 -0
- {yara_x-0.13.0 → yara_x-0.14.0}/lib/src/compiler/tests/testdata/errors/133.out +0 -0
- {yara_x-0.13.0 → yara_x-0.14.0}/lib/src/compiler/tests/testdata/errors/134.in +0 -0
- {yara_x-0.13.0 → yara_x-0.14.0}/lib/src/compiler/tests/testdata/errors/134.out +0 -0
- {yara_x-0.13.0 → yara_x-0.14.0}/lib/src/compiler/tests/testdata/errors/135.in +0 -0
- {yara_x-0.13.0 → yara_x-0.14.0}/lib/src/compiler/tests/testdata/errors/135.out +0 -0
- {yara_x-0.13.0 → yara_x-0.14.0}/lib/src/compiler/tests/testdata/errors/136.in +0 -0
- {yara_x-0.13.0 → yara_x-0.14.0}/lib/src/compiler/tests/testdata/errors/136.out +0 -0
- {yara_x-0.13.0 → yara_x-0.14.0}/lib/src/compiler/tests/testdata/errors/137.in +0 -0
- {yara_x-0.13.0 → yara_x-0.14.0}/lib/src/compiler/tests/testdata/errors/137.out +0 -0
- {yara_x-0.13.0 → yara_x-0.14.0}/lib/src/compiler/tests/testdata/errors/138.in +0 -0
- {yara_x-0.13.0 → yara_x-0.14.0}/lib/src/compiler/tests/testdata/errors/138.out +0 -0
- {yara_x-0.13.0 → yara_x-0.14.0}/lib/src/compiler/tests/testdata/errors/139.in +0 -0
- {yara_x-0.13.0 → yara_x-0.14.0}/lib/src/compiler/tests/testdata/errors/139.out +0 -0
- {yara_x-0.13.0 → yara_x-0.14.0}/lib/src/compiler/tests/testdata/errors/14.in +0 -0
- {yara_x-0.13.0 → yara_x-0.14.0}/lib/src/compiler/tests/testdata/errors/14.out +0 -0
- {yara_x-0.13.0 → yara_x-0.14.0}/lib/src/compiler/tests/testdata/errors/140.in +0 -0
- {yara_x-0.13.0 → yara_x-0.14.0}/lib/src/compiler/tests/testdata/errors/140.out +0 -0
- {yara_x-0.13.0 → yara_x-0.14.0}/lib/src/compiler/tests/testdata/errors/15.in +0 -0
- {yara_x-0.13.0 → yara_x-0.14.0}/lib/src/compiler/tests/testdata/errors/15.out +0 -0
- {yara_x-0.13.0 → yara_x-0.14.0}/lib/src/compiler/tests/testdata/errors/16.in +0 -0
- {yara_x-0.13.0 → yara_x-0.14.0}/lib/src/compiler/tests/testdata/errors/16.out +0 -0
- {yara_x-0.13.0 → yara_x-0.14.0}/lib/src/compiler/tests/testdata/errors/17.in +0 -0
- {yara_x-0.13.0 → yara_x-0.14.0}/lib/src/compiler/tests/testdata/errors/17.out +0 -0
- {yara_x-0.13.0 → yara_x-0.14.0}/lib/src/compiler/tests/testdata/errors/18.in +0 -0
- {yara_x-0.13.0 → yara_x-0.14.0}/lib/src/compiler/tests/testdata/errors/18.out +0 -0
- {yara_x-0.13.0 → yara_x-0.14.0}/lib/src/compiler/tests/testdata/errors/19.in +0 -0
- {yara_x-0.13.0 → yara_x-0.14.0}/lib/src/compiler/tests/testdata/errors/19.out +0 -0
- {yara_x-0.13.0 → yara_x-0.14.0}/lib/src/compiler/tests/testdata/errors/2.in +0 -0
- {yara_x-0.13.0 → yara_x-0.14.0}/lib/src/compiler/tests/testdata/errors/2.out +0 -0
- {yara_x-0.13.0 → yara_x-0.14.0}/lib/src/compiler/tests/testdata/errors/20.in +0 -0
- {yara_x-0.13.0 → yara_x-0.14.0}/lib/src/compiler/tests/testdata/errors/20.out +0 -0
- {yara_x-0.13.0 → yara_x-0.14.0}/lib/src/compiler/tests/testdata/errors/21.in +0 -0
- {yara_x-0.13.0 → yara_x-0.14.0}/lib/src/compiler/tests/testdata/errors/21.out +0 -0
- {yara_x-0.13.0 → yara_x-0.14.0}/lib/src/compiler/tests/testdata/errors/22.in +0 -0
- {yara_x-0.13.0 → yara_x-0.14.0}/lib/src/compiler/tests/testdata/errors/22.out +0 -0
- {yara_x-0.13.0 → yara_x-0.14.0}/lib/src/compiler/tests/testdata/errors/23.in +0 -0
- {yara_x-0.13.0 → yara_x-0.14.0}/lib/src/compiler/tests/testdata/errors/23.out +0 -0
- {yara_x-0.13.0 → yara_x-0.14.0}/lib/src/compiler/tests/testdata/errors/24.in +0 -0
- {yara_x-0.13.0 → yara_x-0.14.0}/lib/src/compiler/tests/testdata/errors/24.out +0 -0
- {yara_x-0.13.0 → yara_x-0.14.0}/lib/src/compiler/tests/testdata/errors/25.in +0 -0
- {yara_x-0.13.0 → yara_x-0.14.0}/lib/src/compiler/tests/testdata/errors/25.out +0 -0
- {yara_x-0.13.0 → yara_x-0.14.0}/lib/src/compiler/tests/testdata/errors/26.in +0 -0
- {yara_x-0.13.0 → yara_x-0.14.0}/lib/src/compiler/tests/testdata/errors/26.out +0 -0
- {yara_x-0.13.0 → yara_x-0.14.0}/lib/src/compiler/tests/testdata/errors/28.in +0 -0
- {yara_x-0.13.0 → yara_x-0.14.0}/lib/src/compiler/tests/testdata/errors/28.out +0 -0
- {yara_x-0.13.0 → yara_x-0.14.0}/lib/src/compiler/tests/testdata/errors/29.in +0 -0
- {yara_x-0.13.0 → yara_x-0.14.0}/lib/src/compiler/tests/testdata/errors/29.out +0 -0
- {yara_x-0.13.0 → yara_x-0.14.0}/lib/src/compiler/tests/testdata/errors/3.in +0 -0
- {yara_x-0.13.0 → yara_x-0.14.0}/lib/src/compiler/tests/testdata/errors/3.out +0 -0
- {yara_x-0.13.0 → yara_x-0.14.0}/lib/src/compiler/tests/testdata/errors/30.in +0 -0
- {yara_x-0.13.0 → yara_x-0.14.0}/lib/src/compiler/tests/testdata/errors/30.out +0 -0
- {yara_x-0.13.0 → yara_x-0.14.0}/lib/src/compiler/tests/testdata/errors/31.in +0 -0
- {yara_x-0.13.0 → yara_x-0.14.0}/lib/src/compiler/tests/testdata/errors/31.out +0 -0
- {yara_x-0.13.0 → yara_x-0.14.0}/lib/src/compiler/tests/testdata/errors/32.in +0 -0
- {yara_x-0.13.0 → yara_x-0.14.0}/lib/src/compiler/tests/testdata/errors/32.out +0 -0
- {yara_x-0.13.0 → yara_x-0.14.0}/lib/src/compiler/tests/testdata/errors/33.in +0 -0
- {yara_x-0.13.0 → yara_x-0.14.0}/lib/src/compiler/tests/testdata/errors/33.out +0 -0
- {yara_x-0.13.0 → yara_x-0.14.0}/lib/src/compiler/tests/testdata/errors/34.in +0 -0
- {yara_x-0.13.0 → yara_x-0.14.0}/lib/src/compiler/tests/testdata/errors/34.out +0 -0
- {yara_x-0.13.0 → yara_x-0.14.0}/lib/src/compiler/tests/testdata/errors/35.in +0 -0
- {yara_x-0.13.0 → yara_x-0.14.0}/lib/src/compiler/tests/testdata/errors/35.out +0 -0
- {yara_x-0.13.0 → yara_x-0.14.0}/lib/src/compiler/tests/testdata/errors/37.in +0 -0
- {yara_x-0.13.0 → yara_x-0.14.0}/lib/src/compiler/tests/testdata/errors/37.out +0 -0
- {yara_x-0.13.0 → yara_x-0.14.0}/lib/src/compiler/tests/testdata/errors/38.in +0 -0
- {yara_x-0.13.0 → yara_x-0.14.0}/lib/src/compiler/tests/testdata/errors/38.out +0 -0
- {yara_x-0.13.0 → yara_x-0.14.0}/lib/src/compiler/tests/testdata/errors/39.in +0 -0
- {yara_x-0.13.0 → yara_x-0.14.0}/lib/src/compiler/tests/testdata/errors/39.out +0 -0
- {yara_x-0.13.0 → yara_x-0.14.0}/lib/src/compiler/tests/testdata/errors/4.in +0 -0
- {yara_x-0.13.0 → yara_x-0.14.0}/lib/src/compiler/tests/testdata/errors/4.out +0 -0
- {yara_x-0.13.0 → yara_x-0.14.0}/lib/src/compiler/tests/testdata/errors/40.in +0 -0
- {yara_x-0.13.0 → yara_x-0.14.0}/lib/src/compiler/tests/testdata/errors/40.out +0 -0
- {yara_x-0.13.0 → yara_x-0.14.0}/lib/src/compiler/tests/testdata/errors/41.in +0 -0
- {yara_x-0.13.0 → yara_x-0.14.0}/lib/src/compiler/tests/testdata/errors/41.out +0 -0
- {yara_x-0.13.0 → yara_x-0.14.0}/lib/src/compiler/tests/testdata/errors/42.in +0 -0
- {yara_x-0.13.0 → yara_x-0.14.0}/lib/src/compiler/tests/testdata/errors/42.out +0 -0
- {yara_x-0.13.0 → yara_x-0.14.0}/lib/src/compiler/tests/testdata/errors/43.in +0 -0
- {yara_x-0.13.0 → yara_x-0.14.0}/lib/src/compiler/tests/testdata/errors/43.out +0 -0
- {yara_x-0.13.0 → yara_x-0.14.0}/lib/src/compiler/tests/testdata/errors/44.in +0 -0
- {yara_x-0.13.0 → yara_x-0.14.0}/lib/src/compiler/tests/testdata/errors/44.out +0 -0
- {yara_x-0.13.0 → yara_x-0.14.0}/lib/src/compiler/tests/testdata/errors/45.in +0 -0
- {yara_x-0.13.0 → yara_x-0.14.0}/lib/src/compiler/tests/testdata/errors/45.out +0 -0
- {yara_x-0.13.0 → yara_x-0.14.0}/lib/src/compiler/tests/testdata/errors/46.in +0 -0
- {yara_x-0.13.0 → yara_x-0.14.0}/lib/src/compiler/tests/testdata/errors/46.out +0 -0
- {yara_x-0.13.0 → yara_x-0.14.0}/lib/src/compiler/tests/testdata/errors/47.in +0 -0
- {yara_x-0.13.0 → yara_x-0.14.0}/lib/src/compiler/tests/testdata/errors/47.out +0 -0
- {yara_x-0.13.0 → yara_x-0.14.0}/lib/src/compiler/tests/testdata/errors/48.in +0 -0
- {yara_x-0.13.0 → yara_x-0.14.0}/lib/src/compiler/tests/testdata/errors/48.out +0 -0
- {yara_x-0.13.0 → yara_x-0.14.0}/lib/src/compiler/tests/testdata/errors/49.in +0 -0
- {yara_x-0.13.0 → yara_x-0.14.0}/lib/src/compiler/tests/testdata/errors/49.out +0 -0
- {yara_x-0.13.0 → yara_x-0.14.0}/lib/src/compiler/tests/testdata/errors/5.in +0 -0
- {yara_x-0.13.0 → yara_x-0.14.0}/lib/src/compiler/tests/testdata/errors/5.out +0 -0
- {yara_x-0.13.0 → yara_x-0.14.0}/lib/src/compiler/tests/testdata/errors/50.in +0 -0
- {yara_x-0.13.0 → yara_x-0.14.0}/lib/src/compiler/tests/testdata/errors/50.out +0 -0
- {yara_x-0.13.0 → yara_x-0.14.0}/lib/src/compiler/tests/testdata/errors/51.in +0 -0
- {yara_x-0.13.0 → yara_x-0.14.0}/lib/src/compiler/tests/testdata/errors/51.out +0 -0
- {yara_x-0.13.0 → yara_x-0.14.0}/lib/src/compiler/tests/testdata/errors/52.in +0 -0
- {yara_x-0.13.0 → yara_x-0.14.0}/lib/src/compiler/tests/testdata/errors/52.out +0 -0
- {yara_x-0.13.0 → yara_x-0.14.0}/lib/src/compiler/tests/testdata/errors/53.in +0 -0
- {yara_x-0.13.0 → yara_x-0.14.0}/lib/src/compiler/tests/testdata/errors/53.out +0 -0
- {yara_x-0.13.0 → yara_x-0.14.0}/lib/src/compiler/tests/testdata/errors/54.in +0 -0
- {yara_x-0.13.0 → yara_x-0.14.0}/lib/src/compiler/tests/testdata/errors/54.out +0 -0
- {yara_x-0.13.0 → yara_x-0.14.0}/lib/src/compiler/tests/testdata/errors/55.in +0 -0
- {yara_x-0.13.0 → yara_x-0.14.0}/lib/src/compiler/tests/testdata/errors/55.out +0 -0
- {yara_x-0.13.0 → yara_x-0.14.0}/lib/src/compiler/tests/testdata/errors/56.in +0 -0
- {yara_x-0.13.0 → yara_x-0.14.0}/lib/src/compiler/tests/testdata/errors/56.out +0 -0
- {yara_x-0.13.0 → yara_x-0.14.0}/lib/src/compiler/tests/testdata/errors/57.in +0 -0
- {yara_x-0.13.0 → yara_x-0.14.0}/lib/src/compiler/tests/testdata/errors/57.out +0 -0
- {yara_x-0.13.0 → yara_x-0.14.0}/lib/src/compiler/tests/testdata/errors/58.in +0 -0
- {yara_x-0.13.0 → yara_x-0.14.0}/lib/src/compiler/tests/testdata/errors/58.out +0 -0
- {yara_x-0.13.0 → yara_x-0.14.0}/lib/src/compiler/tests/testdata/errors/59.in +0 -0
- {yara_x-0.13.0 → yara_x-0.14.0}/lib/src/compiler/tests/testdata/errors/59.out +0 -0
- {yara_x-0.13.0 → yara_x-0.14.0}/lib/src/compiler/tests/testdata/errors/6.in +0 -0
- {yara_x-0.13.0 → yara_x-0.14.0}/lib/src/compiler/tests/testdata/errors/6.out +0 -0
- {yara_x-0.13.0 → yara_x-0.14.0}/lib/src/compiler/tests/testdata/errors/60.in +0 -0
- {yara_x-0.13.0 → yara_x-0.14.0}/lib/src/compiler/tests/testdata/errors/60.out +0 -0
- {yara_x-0.13.0 → yara_x-0.14.0}/lib/src/compiler/tests/testdata/errors/61.in +0 -0
- {yara_x-0.13.0 → yara_x-0.14.0}/lib/src/compiler/tests/testdata/errors/61.out +0 -0
- {yara_x-0.13.0 → yara_x-0.14.0}/lib/src/compiler/tests/testdata/errors/62.in +0 -0
- {yara_x-0.13.0 → yara_x-0.14.0}/lib/src/compiler/tests/testdata/errors/62.out +0 -0
- {yara_x-0.13.0 → yara_x-0.14.0}/lib/src/compiler/tests/testdata/errors/63.in +0 -0
- {yara_x-0.13.0 → yara_x-0.14.0}/lib/src/compiler/tests/testdata/errors/63.out +0 -0
- {yara_x-0.13.0 → yara_x-0.14.0}/lib/src/compiler/tests/testdata/errors/64.in +0 -0
- {yara_x-0.13.0 → yara_x-0.14.0}/lib/src/compiler/tests/testdata/errors/64.out +0 -0
- {yara_x-0.13.0 → yara_x-0.14.0}/lib/src/compiler/tests/testdata/errors/65.in +0 -0
- {yara_x-0.13.0 → yara_x-0.14.0}/lib/src/compiler/tests/testdata/errors/65.out +0 -0
- {yara_x-0.13.0 → yara_x-0.14.0}/lib/src/compiler/tests/testdata/errors/66.in +0 -0
- {yara_x-0.13.0 → yara_x-0.14.0}/lib/src/compiler/tests/testdata/errors/66.out +0 -0
- {yara_x-0.13.0 → yara_x-0.14.0}/lib/src/compiler/tests/testdata/errors/67.in +0 -0
- {yara_x-0.13.0 → yara_x-0.14.0}/lib/src/compiler/tests/testdata/errors/67.out +0 -0
- {yara_x-0.13.0 → yara_x-0.14.0}/lib/src/compiler/tests/testdata/errors/68.in +0 -0
- {yara_x-0.13.0 → yara_x-0.14.0}/lib/src/compiler/tests/testdata/errors/68.out +0 -0
- {yara_x-0.13.0 → yara_x-0.14.0}/lib/src/compiler/tests/testdata/errors/69.in +0 -0
- {yara_x-0.13.0 → yara_x-0.14.0}/lib/src/compiler/tests/testdata/errors/69.out +0 -0
- {yara_x-0.13.0 → yara_x-0.14.0}/lib/src/compiler/tests/testdata/errors/7.in +0 -0
- {yara_x-0.13.0 → yara_x-0.14.0}/lib/src/compiler/tests/testdata/errors/7.out +0 -0
- {yara_x-0.13.0 → yara_x-0.14.0}/lib/src/compiler/tests/testdata/errors/70.in +0 -0
- {yara_x-0.13.0 → yara_x-0.14.0}/lib/src/compiler/tests/testdata/errors/70.out +0 -0
- {yara_x-0.13.0 → yara_x-0.14.0}/lib/src/compiler/tests/testdata/errors/71.in +0 -0
- {yara_x-0.13.0 → yara_x-0.14.0}/lib/src/compiler/tests/testdata/errors/71.out +0 -0
- {yara_x-0.13.0 → yara_x-0.14.0}/lib/src/compiler/tests/testdata/errors/72.in +0 -0
- {yara_x-0.13.0 → yara_x-0.14.0}/lib/src/compiler/tests/testdata/errors/72.out +0 -0
- {yara_x-0.13.0 → yara_x-0.14.0}/lib/src/compiler/tests/testdata/errors/73.in +0 -0
- {yara_x-0.13.0 → yara_x-0.14.0}/lib/src/compiler/tests/testdata/errors/73.out +0 -0
- {yara_x-0.13.0 → yara_x-0.14.0}/lib/src/compiler/tests/testdata/errors/74.in +0 -0
- {yara_x-0.13.0 → yara_x-0.14.0}/lib/src/compiler/tests/testdata/errors/74.out +0 -0
- {yara_x-0.13.0 → yara_x-0.14.0}/lib/src/compiler/tests/testdata/errors/75.in +0 -0
- {yara_x-0.13.0 → yara_x-0.14.0}/lib/src/compiler/tests/testdata/errors/75.out +0 -0
- {yara_x-0.13.0 → yara_x-0.14.0}/lib/src/compiler/tests/testdata/errors/76.in +0 -0
- {yara_x-0.13.0 → yara_x-0.14.0}/lib/src/compiler/tests/testdata/errors/76.out +0 -0
- {yara_x-0.13.0 → yara_x-0.14.0}/lib/src/compiler/tests/testdata/errors/77.in +0 -0
- {yara_x-0.13.0 → yara_x-0.14.0}/lib/src/compiler/tests/testdata/errors/77.out +0 -0
- {yara_x-0.13.0 → yara_x-0.14.0}/lib/src/compiler/tests/testdata/errors/78.in +0 -0
- {yara_x-0.13.0 → yara_x-0.14.0}/lib/src/compiler/tests/testdata/errors/78.out +0 -0
- {yara_x-0.13.0 → yara_x-0.14.0}/lib/src/compiler/tests/testdata/errors/79.in +0 -0
- {yara_x-0.13.0 → yara_x-0.14.0}/lib/src/compiler/tests/testdata/errors/79.out +0 -0
- {yara_x-0.13.0 → yara_x-0.14.0}/lib/src/compiler/tests/testdata/errors/8.in +0 -0
- {yara_x-0.13.0 → yara_x-0.14.0}/lib/src/compiler/tests/testdata/errors/8.out +0 -0
- {yara_x-0.13.0 → yara_x-0.14.0}/lib/src/compiler/tests/testdata/errors/80.in +0 -0
- {yara_x-0.13.0 → yara_x-0.14.0}/lib/src/compiler/tests/testdata/errors/80.out +0 -0
- {yara_x-0.13.0 → yara_x-0.14.0}/lib/src/compiler/tests/testdata/errors/81.in +0 -0
- {yara_x-0.13.0 → yara_x-0.14.0}/lib/src/compiler/tests/testdata/errors/81.out +0 -0
- {yara_x-0.13.0 → yara_x-0.14.0}/lib/src/compiler/tests/testdata/errors/82.in +0 -0
- {yara_x-0.13.0 → yara_x-0.14.0}/lib/src/compiler/tests/testdata/errors/82.out +0 -0
- {yara_x-0.13.0 → yara_x-0.14.0}/lib/src/compiler/tests/testdata/errors/83.in +0 -0
- {yara_x-0.13.0 → yara_x-0.14.0}/lib/src/compiler/tests/testdata/errors/83.out +0 -0
- {yara_x-0.13.0 → yara_x-0.14.0}/lib/src/compiler/tests/testdata/errors/84.in +0 -0
- {yara_x-0.13.0 → yara_x-0.14.0}/lib/src/compiler/tests/testdata/errors/84.out +0 -0
- {yara_x-0.13.0 → yara_x-0.14.0}/lib/src/compiler/tests/testdata/errors/85.in +0 -0
- {yara_x-0.13.0 → yara_x-0.14.0}/lib/src/compiler/tests/testdata/errors/85.out +0 -0
- {yara_x-0.13.0 → yara_x-0.14.0}/lib/src/compiler/tests/testdata/errors/86.in +0 -0
- {yara_x-0.13.0 → yara_x-0.14.0}/lib/src/compiler/tests/testdata/errors/86.out +0 -0
- {yara_x-0.13.0 → yara_x-0.14.0}/lib/src/compiler/tests/testdata/errors/87.in +0 -0
- {yara_x-0.13.0 → yara_x-0.14.0}/lib/src/compiler/tests/testdata/errors/87.out +0 -0
- {yara_x-0.13.0 → yara_x-0.14.0}/lib/src/compiler/tests/testdata/errors/88.in +0 -0
- {yara_x-0.13.0 → yara_x-0.14.0}/lib/src/compiler/tests/testdata/errors/88.out +0 -0
- {yara_x-0.13.0 → yara_x-0.14.0}/lib/src/compiler/tests/testdata/errors/89.in +0 -0
- {yara_x-0.13.0 → yara_x-0.14.0}/lib/src/compiler/tests/testdata/errors/89.out +0 -0
- {yara_x-0.13.0 → yara_x-0.14.0}/lib/src/compiler/tests/testdata/errors/9.in +0 -0
- {yara_x-0.13.0 → yara_x-0.14.0}/lib/src/compiler/tests/testdata/errors/9.out +0 -0
- {yara_x-0.13.0 → yara_x-0.14.0}/lib/src/compiler/tests/testdata/errors/90.in +0 -0
- {yara_x-0.13.0 → yara_x-0.14.0}/lib/src/compiler/tests/testdata/errors/90.out +0 -0
- {yara_x-0.13.0 → yara_x-0.14.0}/lib/src/compiler/tests/testdata/errors/91.in +0 -0
- {yara_x-0.13.0 → yara_x-0.14.0}/lib/src/compiler/tests/testdata/errors/91.out +0 -0
- {yara_x-0.13.0 → yara_x-0.14.0}/lib/src/compiler/tests/testdata/errors/92.in +0 -0
- {yara_x-0.13.0 → yara_x-0.14.0}/lib/src/compiler/tests/testdata/errors/92.out +0 -0
- {yara_x-0.13.0 → yara_x-0.14.0}/lib/src/compiler/tests/testdata/errors/93.in +0 -0
- {yara_x-0.13.0 → yara_x-0.14.0}/lib/src/compiler/tests/testdata/errors/93.out +0 -0
- {yara_x-0.13.0 → yara_x-0.14.0}/lib/src/compiler/tests/testdata/errors/94.in +0 -0
- {yara_x-0.13.0 → yara_x-0.14.0}/lib/src/compiler/tests/testdata/errors/94.out +0 -0
- {yara_x-0.13.0 → yara_x-0.14.0}/lib/src/compiler/tests/testdata/errors/95.in +0 -0
- {yara_x-0.13.0 → yara_x-0.14.0}/lib/src/compiler/tests/testdata/errors/95.out +0 -0
- {yara_x-0.13.0 → yara_x-0.14.0}/lib/src/compiler/tests/testdata/errors/96.in +0 -0
- {yara_x-0.13.0 → yara_x-0.14.0}/lib/src/compiler/tests/testdata/errors/96.out +0 -0
- {yara_x-0.13.0 → yara_x-0.14.0}/lib/src/compiler/tests/testdata/errors/97.in +0 -0
- {yara_x-0.13.0 → yara_x-0.14.0}/lib/src/compiler/tests/testdata/errors/97.out +0 -0
- {yara_x-0.13.0 → yara_x-0.14.0}/lib/src/compiler/tests/testdata/errors/98.in +0 -0
- {yara_x-0.13.0 → yara_x-0.14.0}/lib/src/compiler/tests/testdata/errors/98.out +0 -0
- {yara_x-0.13.0 → yara_x-0.14.0}/lib/src/compiler/tests/testdata/errors/99.in +0 -0
- {yara_x-0.13.0 → yara_x-0.14.0}/lib/src/compiler/tests/testdata/errors/99.out +0 -0
- {yara_x-0.13.0 → yara_x-0.14.0}/lib/src/compiler/tests/testdata/warnings/1.in +0 -0
- {yara_x-0.13.0 → yara_x-0.14.0}/lib/src/compiler/tests/testdata/warnings/1.out +0 -0
- {yara_x-0.13.0 → yara_x-0.14.0}/lib/src/compiler/tests/testdata/warnings/10.in +0 -0
- {yara_x-0.13.0 → yara_x-0.14.0}/lib/src/compiler/tests/testdata/warnings/10.out +0 -0
- {yara_x-0.13.0 → yara_x-0.14.0}/lib/src/compiler/tests/testdata/warnings/11.in +0 -0
- {yara_x-0.13.0 → yara_x-0.14.0}/lib/src/compiler/tests/testdata/warnings/11.out +0 -0
- {yara_x-0.13.0 → yara_x-0.14.0}/lib/src/compiler/tests/testdata/warnings/12.in +0 -0
- {yara_x-0.13.0 → yara_x-0.14.0}/lib/src/compiler/tests/testdata/warnings/12.out +0 -0
- {yara_x-0.13.0 → yara_x-0.14.0}/lib/src/compiler/tests/testdata/warnings/13.in +0 -0
- {yara_x-0.13.0 → yara_x-0.14.0}/lib/src/compiler/tests/testdata/warnings/13.out +0 -0
- {yara_x-0.13.0 → yara_x-0.14.0}/lib/src/compiler/tests/testdata/warnings/14.in +0 -0
- {yara_x-0.13.0 → yara_x-0.14.0}/lib/src/compiler/tests/testdata/warnings/14.out +0 -0
- {yara_x-0.13.0 → yara_x-0.14.0}/lib/src/compiler/tests/testdata/warnings/15.in +0 -0
- {yara_x-0.13.0 → yara_x-0.14.0}/lib/src/compiler/tests/testdata/warnings/15.out +0 -0
- {yara_x-0.13.0 → yara_x-0.14.0}/lib/src/compiler/tests/testdata/warnings/16.in +0 -0
- {yara_x-0.13.0 → yara_x-0.14.0}/lib/src/compiler/tests/testdata/warnings/16.out +0 -0
- {yara_x-0.13.0 → yara_x-0.14.0}/lib/src/compiler/tests/testdata/warnings/17.in +0 -0
- {yara_x-0.13.0 → yara_x-0.14.0}/lib/src/compiler/tests/testdata/warnings/17.out +0 -0
- {yara_x-0.13.0 → yara_x-0.14.0}/lib/src/compiler/tests/testdata/warnings/18.in +0 -0
- {yara_x-0.13.0 → yara_x-0.14.0}/lib/src/compiler/tests/testdata/warnings/18.out +0 -0
- {yara_x-0.13.0 → yara_x-0.14.0}/lib/src/compiler/tests/testdata/warnings/19.in +0 -0
- {yara_x-0.13.0 → yara_x-0.14.0}/lib/src/compiler/tests/testdata/warnings/19.out +0 -0
- {yara_x-0.13.0 → yara_x-0.14.0}/lib/src/compiler/tests/testdata/warnings/2.in +0 -0
- {yara_x-0.13.0 → yara_x-0.14.0}/lib/src/compiler/tests/testdata/warnings/2.out +0 -0
- {yara_x-0.13.0 → yara_x-0.14.0}/lib/src/compiler/tests/testdata/warnings/20.in +0 -0
- {yara_x-0.13.0 → yara_x-0.14.0}/lib/src/compiler/tests/testdata/warnings/20.out +0 -0
- {yara_x-0.13.0 → yara_x-0.14.0}/lib/src/compiler/tests/testdata/warnings/21.in +0 -0
- {yara_x-0.13.0 → yara_x-0.14.0}/lib/src/compiler/tests/testdata/warnings/21.out +0 -0
- {yara_x-0.13.0 → yara_x-0.14.0}/lib/src/compiler/tests/testdata/warnings/22.in +0 -0
- {yara_x-0.13.0 → yara_x-0.14.0}/lib/src/compiler/tests/testdata/warnings/22.out +0 -0
- {yara_x-0.13.0 → yara_x-0.14.0}/lib/src/compiler/tests/testdata/warnings/23.in +0 -0
- {yara_x-0.13.0 → yara_x-0.14.0}/lib/src/compiler/tests/testdata/warnings/23.out +0 -0
- {yara_x-0.13.0 → yara_x-0.14.0}/lib/src/compiler/tests/testdata/warnings/24.in +0 -0
- {yara_x-0.13.0 → yara_x-0.14.0}/lib/src/compiler/tests/testdata/warnings/24.out +0 -0
- {yara_x-0.13.0 → yara_x-0.14.0}/lib/src/compiler/tests/testdata/warnings/25.in +0 -0
- {yara_x-0.13.0 → yara_x-0.14.0}/lib/src/compiler/tests/testdata/warnings/25.out +0 -0
- {yara_x-0.13.0 → yara_x-0.14.0}/lib/src/compiler/tests/testdata/warnings/26.in +0 -0
- {yara_x-0.13.0 → yara_x-0.14.0}/lib/src/compiler/tests/testdata/warnings/26.out +0 -0
- {yara_x-0.13.0 → yara_x-0.14.0}/lib/src/compiler/tests/testdata/warnings/27.in +0 -0
- {yara_x-0.13.0 → yara_x-0.14.0}/lib/src/compiler/tests/testdata/warnings/27.out +0 -0
- {yara_x-0.13.0 → yara_x-0.14.0}/lib/src/compiler/tests/testdata/warnings/28.in +0 -0
- {yara_x-0.13.0 → yara_x-0.14.0}/lib/src/compiler/tests/testdata/warnings/28.out +0 -0
- {yara_x-0.13.0 → yara_x-0.14.0}/lib/src/compiler/tests/testdata/warnings/29.in +0 -0
- {yara_x-0.13.0 → yara_x-0.14.0}/lib/src/compiler/tests/testdata/warnings/29.out +0 -0
- {yara_x-0.13.0 → yara_x-0.14.0}/lib/src/compiler/tests/testdata/warnings/3.in +0 -0
- {yara_x-0.13.0 → yara_x-0.14.0}/lib/src/compiler/tests/testdata/warnings/3.out +0 -0
- {yara_x-0.13.0 → yara_x-0.14.0}/lib/src/compiler/tests/testdata/warnings/30.in +0 -0
- {yara_x-0.13.0 → yara_x-0.14.0}/lib/src/compiler/tests/testdata/warnings/30.out +0 -0
- {yara_x-0.13.0 → yara_x-0.14.0}/lib/src/compiler/tests/testdata/warnings/31.in +0 -0
- {yara_x-0.13.0 → yara_x-0.14.0}/lib/src/compiler/tests/testdata/warnings/31.out +0 -0
- {yara_x-0.13.0 → yara_x-0.14.0}/lib/src/compiler/tests/testdata/warnings/32.in +0 -0
- {yara_x-0.13.0 → yara_x-0.14.0}/lib/src/compiler/tests/testdata/warnings/32.out +0 -0
- {yara_x-0.13.0 → yara_x-0.14.0}/lib/src/compiler/tests/testdata/warnings/33.in +0 -0
- {yara_x-0.13.0 → yara_x-0.14.0}/lib/src/compiler/tests/testdata/warnings/33.out +0 -0
- {yara_x-0.13.0 → yara_x-0.14.0}/lib/src/compiler/tests/testdata/warnings/34.in +0 -0
- {yara_x-0.13.0 → yara_x-0.14.0}/lib/src/compiler/tests/testdata/warnings/34.out +0 -0
- {yara_x-0.13.0 → yara_x-0.14.0}/lib/src/compiler/tests/testdata/warnings/35.in +0 -0
- {yara_x-0.13.0 → yara_x-0.14.0}/lib/src/compiler/tests/testdata/warnings/35.out +0 -0
- {yara_x-0.13.0 → yara_x-0.14.0}/lib/src/compiler/tests/testdata/warnings/4.in +0 -0
- {yara_x-0.13.0 → yara_x-0.14.0}/lib/src/compiler/tests/testdata/warnings/4.out +0 -0
- {yara_x-0.13.0 → yara_x-0.14.0}/lib/src/compiler/tests/testdata/warnings/5.in +0 -0
- {yara_x-0.13.0 → yara_x-0.14.0}/lib/src/compiler/tests/testdata/warnings/5.out +0 -0
- {yara_x-0.13.0 → yara_x-0.14.0}/lib/src/compiler/tests/testdata/warnings/6.in +0 -0
- {yara_x-0.13.0 → yara_x-0.14.0}/lib/src/compiler/tests/testdata/warnings/6.out +0 -0
- {yara_x-0.13.0 → yara_x-0.14.0}/lib/src/compiler/tests/testdata/warnings/7.in +0 -0
- {yara_x-0.13.0 → yara_x-0.14.0}/lib/src/compiler/tests/testdata/warnings/7.out +0 -0
- {yara_x-0.13.0 → yara_x-0.14.0}/lib/src/compiler/tests/testdata/warnings/8.in +0 -0
- {yara_x-0.13.0 → yara_x-0.14.0}/lib/src/compiler/tests/testdata/warnings/8.out +0 -0
- {yara_x-0.13.0 → yara_x-0.14.0}/lib/src/compiler/tests/testdata/warnings/9.in +0 -0
- {yara_x-0.13.0 → yara_x-0.14.0}/lib/src/compiler/tests/testdata/warnings/9.out +0 -0
- {yara_x-0.13.0 → yara_x-0.14.0}/lib/src/compiler/tests/testdata/warnings/no_warnings.in +0 -0
- {yara_x-0.13.0 → yara_x-0.14.0}/lib/src/compiler/tests/testdata/warnings/no_warnings.out +0 -0
- {yara_x-0.13.0 → yara_x-0.14.0}/lib/src/lib.rs +0 -0
- {yara_x-0.13.0 → yara_x-0.14.0}/lib/src/models.rs +0 -0
- {yara_x-0.13.0 → yara_x-0.14.0}/lib/src/modules/console.rs +0 -0
- {yara_x-0.13.0 → yara_x-0.14.0}/lib/src/modules/cuckoo/mod.rs +0 -0
- {yara_x-0.13.0 → yara_x-0.14.0}/lib/src/modules/cuckoo/schema.rs +0 -0
- {yara_x-0.13.0 → yara_x-0.14.0}/lib/src/modules/cuckoo/tests/mod.rs +0 -0
- {yara_x-0.13.0 → yara_x-0.14.0}/lib/src/modules/cuckoo/tests/testdata/1.json +0 -0
- {yara_x-0.13.0 → yara_x-0.14.0}/lib/src/modules/cuckoo/tests/testdata/1.yar +0 -0
- {yara_x-0.13.0 → yara_x-0.14.0}/lib/src/modules/cuckoo/tests/testdata/2.json +0 -0
- {yara_x-0.13.0 → yara_x-0.14.0}/lib/src/modules/cuckoo/tests/testdata/2.yar +0 -0
- {yara_x-0.13.0 → yara_x-0.14.0}/lib/src/modules/dotnet/mod.rs +0 -0
- {yara_x-0.13.0 → yara_x-0.14.0}/lib/src/modules/dotnet/tests/testdata/605ebe5b5f4b94e1a73e0ad1162bd542e5cb948d1a4ea5a575a14d6b9d6ee849.in +0 -0
- {yara_x-0.13.0 → yara_x-0.14.0}/lib/src/modules/dotnet/tests/testdata/86a1e48cfc843eabfe1b468ef9358c1068950f849c612ab808225b359db0bb8c.in +0 -0
- {yara_x-0.13.0 → yara_x-0.14.0}/lib/src/modules/elf/tests/mod.rs +0 -0
- {yara_x-0.13.0 → yara_x-0.14.0}/lib/src/modules/hash/mod.rs +0 -0
- {yara_x-0.13.0 → yara_x-0.14.0}/lib/src/modules/hash/tests/mod.rs +0 -0
- {yara_x-0.13.0 → yara_x-0.14.0}/lib/src/modules/macho/tests/mod.rs +0 -0
- {yara_x-0.13.0 → yara_x-0.14.0}/lib/src/modules/magic/tests/mod.rs +0 -0
- {yara_x-0.13.0 → yara_x-0.14.0}/lib/src/modules/math.rs +0 -0
- {yara_x-0.13.0 → yara_x-0.14.0}/lib/src/modules/pe/rva2off.rs +0 -0
- {yara_x-0.13.0 → yara_x-0.14.0}/lib/src/modules/pe/tests/mod.rs +0 -0
- {yara_x-0.13.0 → yara_x-0.14.0}/lib/src/modules/protos/console.proto +0 -0
- {yara_x-0.13.0 → yara_x-0.14.0}/lib/src/modules/protos/cuckoo.proto +0 -0
- {yara_x-0.13.0 → yara_x-0.14.0}/lib/src/modules/protos/dotnet.proto +0 -0
- {yara_x-0.13.0 → yara_x-0.14.0}/lib/src/modules/protos/elf.proto +0 -0
- {yara_x-0.13.0 → yara_x-0.14.0}/lib/src/modules/protos/hash.proto +0 -0
- {yara_x-0.13.0 → yara_x-0.14.0}/lib/src/modules/protos/lnk.proto +0 -0
- {yara_x-0.13.0 → yara_x-0.14.0}/lib/src/modules/protos/macho.proto +0 -0
- {yara_x-0.13.0 → yara_x-0.14.0}/lib/src/modules/protos/magic.proto +0 -0
- {yara_x-0.13.0 → yara_x-0.14.0}/lib/src/modules/protos/math.proto +0 -0
- {yara_x-0.13.0 → yara_x-0.14.0}/lib/src/modules/protos/mods.proto +0 -0
- {yara_x-0.13.0 → yara_x-0.14.0}/lib/src/modules/protos/pe.proto +0 -0
- {yara_x-0.13.0 → yara_x-0.14.0}/lib/src/modules/protos/string.proto +0 -0
- {yara_x-0.13.0 → yara_x-0.14.0}/lib/src/modules/protos/test_proto3.proto +0 -0
- {yara_x-0.13.0 → yara_x-0.14.0}/lib/src/modules/protos/text.proto +0 -0
- {yara_x-0.13.0 → yara_x-0.14.0}/lib/src/modules/protos/time.proto +0 -0
- {yara_x-0.13.0 → yara_x-0.14.0}/lib/src/modules/protos/yaml.proto +0 -0
- {yara_x-0.13.0 → yara_x-0.14.0}/lib/src/modules/protos/yara.proto +0 -0
- {yara_x-0.13.0 → yara_x-0.14.0}/lib/src/modules/string.rs +0 -0
- {yara_x-0.13.0 → yara_x-0.14.0}/lib/src/modules/test_proto3/mod.rs +0 -0
- {yara_x-0.13.0 → yara_x-0.14.0}/lib/src/modules/tests.rs +0 -0
- {yara_x-0.13.0 → yara_x-0.14.0}/lib/src/modules/text.rs +0 -0
- {yara_x-0.13.0 → yara_x-0.14.0}/lib/src/modules/time.rs +0 -0
- {yara_x-0.13.0 → yara_x-0.14.0}/lib/src/modules/utils/asn1.rs +0 -0
- {yara_x-0.13.0 → yara_x-0.14.0}/lib/src/modules/utils/mod.rs +0 -0
- {yara_x-0.13.0 → yara_x-0.14.0}/lib/src/re/bitmapset.rs +0 -0
- {yara_x-0.13.0 → yara_x-0.14.0}/lib/src/re/fast/fastvm.rs +0 -0
- {yara_x-0.13.0 → yara_x-0.14.0}/lib/src/re/fast/instr.rs +0 -0
- {yara_x-0.13.0 → yara_x-0.14.0}/lib/src/re/fast/mod.rs +0 -0
- {yara_x-0.13.0 → yara_x-0.14.0}/lib/src/re/parser.rs +0 -0
- {yara_x-0.13.0 → yara_x-0.14.0}/lib/src/re/thompson/mod.rs +0 -0
- {yara_x-0.13.0 → yara_x-0.14.0}/lib/src/scanner/matches.rs +0 -0
- {yara_x-0.13.0 → yara_x-0.14.0}/lib/src/scanner/tests.rs +0 -0
- {yara_x-0.13.0 → yara_x-0.14.0}/lib/src/string_pool.rs +0 -0
- {yara_x-0.13.0 → yara_x-0.14.0}/lib/src/tests/testdata/jumps.bin +0 -0
- {yara_x-0.13.0 → yara_x-0.14.0}/lib/src/types/array.rs +0 -0
- {yara_x-0.13.0 → yara_x-0.14.0}/lib/src/types/func.rs +0 -0
- {yara_x-0.13.0 → yara_x-0.14.0}/lib/src/types/map.rs +0 -0
- {yara_x-0.13.0 → yara_x-0.14.0}/lib/src/types/mod.rs +0 -0
- {yara_x-0.13.0 → yara_x-0.14.0}/lib/src/variables.rs +0 -0
- {yara_x-0.13.0 → yara_x-0.14.0}/lib/src/wasm/builder.rs +0 -0
- {yara_x-0.13.0 → yara_x-0.14.0}/lib/src/wasm/mod.rs +0 -0
- {yara_x-0.13.0 → yara_x-0.14.0}/lib/src/wasm/string.rs +0 -0
- {yara_x-0.13.0 → yara_x-0.14.0}/macros/Cargo.lock +0 -0
- {yara_x-0.13.0 → yara_x-0.14.0}/macros/Cargo.toml +0 -0
- {yara_x-0.13.0 → yara_x-0.14.0}/macros/src/error.rs +0 -0
- {yara_x-0.13.0 → yara_x-0.14.0}/macros/src/lib.rs +0 -0
- {yara_x-0.13.0 → yara_x-0.14.0}/macros/src/module_export.rs +0 -0
- {yara_x-0.13.0 → yara_x-0.14.0}/macros/src/module_main.rs +0 -0
- {yara_x-0.13.0 → yara_x-0.14.0}/macros/src/wasm_export.rs +0 -0
- {yara_x-0.13.0 → yara_x-0.14.0}/parser/Cargo.toml +0 -0
- {yara_x-0.13.0 → yara_x-0.14.0}/parser/README.md +0 -0
- {yara_x-0.13.0 → yara_x-0.14.0}/parser/src/ast/ascii_tree.rs +0 -0
- {yara_x-0.13.0 → yara_x-0.14.0}/parser/src/ast/cst2ast.rs +0 -0
- {yara_x-0.13.0 → yara_x-0.14.0}/parser/src/ast/errors.rs +0 -0
- {yara_x-0.13.0 → yara_x-0.14.0}/parser/src/ast/mod.rs +0 -0
- {yara_x-0.13.0 → yara_x-0.14.0}/parser/src/cst/mod.rs +0 -0
- {yara_x-0.13.0 → yara_x-0.14.0}/parser/src/cst/syntax_kind.rs +0 -0
- {yara_x-0.13.0 → yara_x-0.14.0}/parser/src/cst/syntax_stream.rs +0 -0
- {yara_x-0.13.0 → yara_x-0.14.0}/parser/src/cst/tests.rs +0 -0
- {yara_x-0.13.0 → yara_x-0.14.0}/parser/src/lib.rs +0 -0
- {yara_x-0.13.0 → yara_x-0.14.0}/parser/src/parser/mod.rs +0 -0
- {yara_x-0.13.0 → yara_x-0.14.0}/parser/src/parser/tests/mod.rs +0 -0
- {yara_x-0.13.0 → yara_x-0.14.0}/parser/src/parser/tests/testdata/arithmetic-ops.ast +0 -0
- {yara_x-0.13.0 → yara_x-0.14.0}/parser/src/parser/tests/testdata/arithmetic-ops.cst +0 -0
- {yara_x-0.13.0 → yara_x-0.14.0}/parser/src/parser/tests/testdata/arithmetic-ops.in +0 -0
- {yara_x-0.13.0 → yara_x-0.14.0}/parser/src/parser/tests/testdata/basic-1.ast +0 -0
- {yara_x-0.13.0 → yara_x-0.14.0}/parser/src/parser/tests/testdata/basic-1.cst +0 -0
- {yara_x-0.13.0 → yara_x-0.14.0}/parser/src/parser/tests/testdata/basic-1.in +0 -0
- {yara_x-0.13.0 → yara_x-0.14.0}/parser/src/parser/tests/testdata/basic-2.ast +0 -0
- {yara_x-0.13.0 → yara_x-0.14.0}/parser/src/parser/tests/testdata/basic-2.cst +0 -0
- {yara_x-0.13.0 → yara_x-0.14.0}/parser/src/parser/tests/testdata/basic-2.in +0 -0
- {yara_x-0.13.0 → yara_x-0.14.0}/parser/src/parser/tests/testdata/basic-3.ast +0 -0
- {yara_x-0.13.0 → yara_x-0.14.0}/parser/src/parser/tests/testdata/basic-3.cst +0 -0
- {yara_x-0.13.0 → yara_x-0.14.0}/parser/src/parser/tests/testdata/basic-3.in +0 -0
- {yara_x-0.13.0 → yara_x-0.14.0}/parser/src/parser/tests/testdata/basic-4.ast +0 -0
- {yara_x-0.13.0 → yara_x-0.14.0}/parser/src/parser/tests/testdata/basic-4.cst +0 -0
- {yara_x-0.13.0 → yara_x-0.14.0}/parser/src/parser/tests/testdata/basic-4.in +0 -0
- {yara_x-0.13.0 → yara_x-0.14.0}/parser/src/parser/tests/testdata/basic-error-1.ast +0 -0
- {yara_x-0.13.0 → yara_x-0.14.0}/parser/src/parser/tests/testdata/basic-error-1.cst +0 -0
- {yara_x-0.13.0 → yara_x-0.14.0}/parser/src/parser/tests/testdata/basic-error-1.in +0 -0
- {yara_x-0.13.0 → yara_x-0.14.0}/parser/src/parser/tests/testdata/basic-error-2.ast +0 -0
- {yara_x-0.13.0 → yara_x-0.14.0}/parser/src/parser/tests/testdata/basic-error-2.cst +0 -0
- {yara_x-0.13.0 → yara_x-0.14.0}/parser/src/parser/tests/testdata/basic-error-2.in +0 -0
- {yara_x-0.13.0 → yara_x-0.14.0}/parser/src/parser/tests/testdata/basic-error-3.ast +0 -0
- {yara_x-0.13.0 → yara_x-0.14.0}/parser/src/parser/tests/testdata/basic-error-3.cst +0 -0
- {yara_x-0.13.0 → yara_x-0.14.0}/parser/src/parser/tests/testdata/basic-error-3.in +0 -0
- {yara_x-0.13.0 → yara_x-0.14.0}/parser/src/parser/tests/testdata/basic-error-4.ast +0 -0
- {yara_x-0.13.0 → yara_x-0.14.0}/parser/src/parser/tests/testdata/basic-error-4.cst +0 -0
- {yara_x-0.13.0 → yara_x-0.14.0}/parser/src/parser/tests/testdata/basic-error-4.in +0 -0
- {yara_x-0.13.0 → yara_x-0.14.0}/parser/src/parser/tests/testdata/basic-error-5.ast +0 -0
- {yara_x-0.13.0 → yara_x-0.14.0}/parser/src/parser/tests/testdata/basic-error-5.cst +0 -0
- {yara_x-0.13.0 → yara_x-0.14.0}/parser/src/parser/tests/testdata/basic-error-5.in +0 -0
- {yara_x-0.13.0 → yara_x-0.14.0}/parser/src/parser/tests/testdata/bitwise-ops-error-1.ast +0 -0
- {yara_x-0.13.0 → yara_x-0.14.0}/parser/src/parser/tests/testdata/bitwise-ops-error-1.cst +0 -0
- {yara_x-0.13.0 → yara_x-0.14.0}/parser/src/parser/tests/testdata/bitwise-ops-error-1.in +0 -0
- {yara_x-0.13.0 → yara_x-0.14.0}/parser/src/parser/tests/testdata/bitwise-ops.ast +0 -0
- {yara_x-0.13.0 → yara_x-0.14.0}/parser/src/parser/tests/testdata/bitwise-ops.cst +0 -0
- {yara_x-0.13.0 → yara_x-0.14.0}/parser/src/parser/tests/testdata/bitwise-ops.in +0 -0
- {yara_x-0.13.0 → yara_x-0.14.0}/parser/src/parser/tests/testdata/comments.ast +0 -0
- {yara_x-0.13.0 → yara_x-0.14.0}/parser/src/parser/tests/testdata/comments.cst +0 -0
- {yara_x-0.13.0 → yara_x-0.14.0}/parser/src/parser/tests/testdata/comments.in +0 -0
- {yara_x-0.13.0 → yara_x-0.14.0}/parser/src/parser/tests/testdata/expr-1.ast +0 -0
- {yara_x-0.13.0 → yara_x-0.14.0}/parser/src/parser/tests/testdata/expr-1.cst +0 -0
- {yara_x-0.13.0 → yara_x-0.14.0}/parser/src/parser/tests/testdata/expr-1.in +0 -0
- {yara_x-0.13.0 → yara_x-0.14.0}/parser/src/parser/tests/testdata/expr-2.ast +0 -0
- {yara_x-0.13.0 → yara_x-0.14.0}/parser/src/parser/tests/testdata/expr-2.cst +0 -0
- {yara_x-0.13.0 → yara_x-0.14.0}/parser/src/parser/tests/testdata/expr-2.in +0 -0
- {yara_x-0.13.0 → yara_x-0.14.0}/parser/src/parser/tests/testdata/expr-3.ast +0 -0
- {yara_x-0.13.0 → yara_x-0.14.0}/parser/src/parser/tests/testdata/expr-3.cst +0 -0
- {yara_x-0.13.0 → yara_x-0.14.0}/parser/src/parser/tests/testdata/expr-3.in +0 -0
- {yara_x-0.13.0 → yara_x-0.14.0}/parser/src/parser/tests/testdata/expr-4.ast +0 -0
- {yara_x-0.13.0 → yara_x-0.14.0}/parser/src/parser/tests/testdata/expr-4.cst +0 -0
- {yara_x-0.13.0 → yara_x-0.14.0}/parser/src/parser/tests/testdata/expr-4.in +0 -0
- {yara_x-0.13.0 → yara_x-0.14.0}/parser/src/parser/tests/testdata/expr-5.ast +0 -0
- {yara_x-0.13.0 → yara_x-0.14.0}/parser/src/parser/tests/testdata/expr-5.cst +0 -0
- {yara_x-0.13.0 → yara_x-0.14.0}/parser/src/parser/tests/testdata/expr-5.in +0 -0
- {yara_x-0.13.0 → yara_x-0.14.0}/parser/src/parser/tests/testdata/expr-6.ast +0 -0
- {yara_x-0.13.0 → yara_x-0.14.0}/parser/src/parser/tests/testdata/expr-6.cst +0 -0
- {yara_x-0.13.0 → yara_x-0.14.0}/parser/src/parser/tests/testdata/expr-6.in +0 -0
- {yara_x-0.13.0 → yara_x-0.14.0}/parser/src/parser/tests/testdata/expr-error-1.ast +0 -0
- {yara_x-0.13.0 → yara_x-0.14.0}/parser/src/parser/tests/testdata/expr-error-1.cst +0 -0
- {yara_x-0.13.0 → yara_x-0.14.0}/parser/src/parser/tests/testdata/expr-error-1.in +0 -0
- {yara_x-0.13.0 → yara_x-0.14.0}/parser/src/parser/tests/testdata/for-1.ast +0 -0
- {yara_x-0.13.0 → yara_x-0.14.0}/parser/src/parser/tests/testdata/for-1.cst +0 -0
- {yara_x-0.13.0 → yara_x-0.14.0}/parser/src/parser/tests/testdata/for-1.in +0 -0
- {yara_x-0.13.0 → yara_x-0.14.0}/parser/src/parser/tests/testdata/for-2.ast +0 -0
- {yara_x-0.13.0 → yara_x-0.14.0}/parser/src/parser/tests/testdata/for-2.cst +0 -0
- {yara_x-0.13.0 → yara_x-0.14.0}/parser/src/parser/tests/testdata/for-2.in +0 -0
- {yara_x-0.13.0 → yara_x-0.14.0}/parser/src/parser/tests/testdata/for-3.ast +0 -0
- {yara_x-0.13.0 → yara_x-0.14.0}/parser/src/parser/tests/testdata/for-3.cst +0 -0
- {yara_x-0.13.0 → yara_x-0.14.0}/parser/src/parser/tests/testdata/for-3.in +0 -0
- {yara_x-0.13.0 → yara_x-0.14.0}/parser/src/parser/tests/testdata/for-4.ast +0 -0
- {yara_x-0.13.0 → yara_x-0.14.0}/parser/src/parser/tests/testdata/for-4.cst +0 -0
- {yara_x-0.13.0 → yara_x-0.14.0}/parser/src/parser/tests/testdata/for-4.in +0 -0
- {yara_x-0.13.0 → yara_x-0.14.0}/parser/src/parser/tests/testdata/for-5.ast +0 -0
- {yara_x-0.13.0 → yara_x-0.14.0}/parser/src/parser/tests/testdata/for-5.cst +0 -0
- {yara_x-0.13.0 → yara_x-0.14.0}/parser/src/parser/tests/testdata/for-5.in +0 -0
- {yara_x-0.13.0 → yara_x-0.14.0}/parser/src/parser/tests/testdata/for-error-1.ast +0 -0
- {yara_x-0.13.0 → yara_x-0.14.0}/parser/src/parser/tests/testdata/for-error-1.cst +0 -0
- {yara_x-0.13.0 → yara_x-0.14.0}/parser/src/parser/tests/testdata/for-error-1.in +0 -0
- {yara_x-0.13.0 → yara_x-0.14.0}/parser/src/parser/tests/testdata/func-call.ast +0 -0
- {yara_x-0.13.0 → yara_x-0.14.0}/parser/src/parser/tests/testdata/func-call.cst +0 -0
- {yara_x-0.13.0 → yara_x-0.14.0}/parser/src/parser/tests/testdata/func-call.in +0 -0
- {yara_x-0.13.0 → yara_x-0.14.0}/parser/src/parser/tests/testdata/hex-patterns-1.ast +0 -0
- {yara_x-0.13.0 → yara_x-0.14.0}/parser/src/parser/tests/testdata/hex-patterns-1.cst +0 -0
- {yara_x-0.13.0 → yara_x-0.14.0}/parser/src/parser/tests/testdata/hex-patterns-1.in +0 -0
- {yara_x-0.13.0 → yara_x-0.14.0}/parser/src/parser/tests/testdata/hex-patterns-2.ast +0 -0
- {yara_x-0.13.0 → yara_x-0.14.0}/parser/src/parser/tests/testdata/hex-patterns-2.cst +0 -0
- {yara_x-0.13.0 → yara_x-0.14.0}/parser/src/parser/tests/testdata/hex-patterns-2.in +0 -0
- {yara_x-0.13.0 → yara_x-0.14.0}/parser/src/parser/tests/testdata/hex-patterns-3.ast +0 -0
- {yara_x-0.13.0 → yara_x-0.14.0}/parser/src/parser/tests/testdata/hex-patterns-3.cst +0 -0
- {yara_x-0.13.0 → yara_x-0.14.0}/parser/src/parser/tests/testdata/hex-patterns-3.in +0 -0
- {yara_x-0.13.0 → yara_x-0.14.0}/parser/src/parser/tests/testdata/hex-patterns-error-1.ast +0 -0
- {yara_x-0.13.0 → yara_x-0.14.0}/parser/src/parser/tests/testdata/hex-patterns-error-1.cst +0 -0
- {yara_x-0.13.0 → yara_x-0.14.0}/parser/src/parser/tests/testdata/hex-patterns-error-1.in +0 -0
- {yara_x-0.13.0 → yara_x-0.14.0}/parser/src/parser/tests/testdata/hex-patterns-error-2.ast +0 -0
- {yara_x-0.13.0 → yara_x-0.14.0}/parser/src/parser/tests/testdata/hex-patterns-error-2.cst +0 -0
- {yara_x-0.13.0 → yara_x-0.14.0}/parser/src/parser/tests/testdata/hex-patterns-error-2.in +0 -0
- {yara_x-0.13.0 → yara_x-0.14.0}/parser/src/parser/tests/testdata/meta-error-1.ast +0 -0
- {yara_x-0.13.0 → yara_x-0.14.0}/parser/src/parser/tests/testdata/meta-error-1.cst +0 -0
- {yara_x-0.13.0 → yara_x-0.14.0}/parser/src/parser/tests/testdata/meta-error-1.in +0 -0
- {yara_x-0.13.0 → yara_x-0.14.0}/parser/src/parser/tests/testdata/meta-error-2.ast +0 -0
- {yara_x-0.13.0 → yara_x-0.14.0}/parser/src/parser/tests/testdata/meta-error-2.cst +0 -0
- {yara_x-0.13.0 → yara_x-0.14.0}/parser/src/parser/tests/testdata/meta-error-2.in +0 -0
- {yara_x-0.13.0 → yara_x-0.14.0}/parser/src/parser/tests/testdata/meta-error-3.ast +0 -0
- {yara_x-0.13.0 → yara_x-0.14.0}/parser/src/parser/tests/testdata/meta-error-3.cst +0 -0
- {yara_x-0.13.0 → yara_x-0.14.0}/parser/src/parser/tests/testdata/meta-error-3.in +0 -0
- {yara_x-0.13.0 → yara_x-0.14.0}/parser/src/parser/tests/testdata/meta-error-4.ast +0 -0
- {yara_x-0.13.0 → yara_x-0.14.0}/parser/src/parser/tests/testdata/meta-error-4.cst +0 -0
- {yara_x-0.13.0 → yara_x-0.14.0}/parser/src/parser/tests/testdata/meta-error-4.in +0 -0
- {yara_x-0.13.0 → yara_x-0.14.0}/parser/src/parser/tests/testdata/meta-error-5.ast +0 -0
- {yara_x-0.13.0 → yara_x-0.14.0}/parser/src/parser/tests/testdata/meta-error-5.cst +0 -0
- {yara_x-0.13.0 → yara_x-0.14.0}/parser/src/parser/tests/testdata/meta-error-5.in +0 -0
- {yara_x-0.13.0 → yara_x-0.14.0}/parser/src/parser/tests/testdata/meta-error-6.ast +0 -0
- {yara_x-0.13.0 → yara_x-0.14.0}/parser/src/parser/tests/testdata/meta-error-6.cst +0 -0
- {yara_x-0.13.0 → yara_x-0.14.0}/parser/src/parser/tests/testdata/meta-error-6.in +0 -0
- {yara_x-0.13.0 → yara_x-0.14.0}/parser/src/parser/tests/testdata/meta.ast +0 -0
- {yara_x-0.13.0 → yara_x-0.14.0}/parser/src/parser/tests/testdata/meta.cst +0 -0
- {yara_x-0.13.0 → yara_x-0.14.0}/parser/src/parser/tests/testdata/meta.in +0 -0
- {yara_x-0.13.0 → yara_x-0.14.0}/parser/src/parser/tests/testdata/of-1.ast +0 -0
- {yara_x-0.13.0 → yara_x-0.14.0}/parser/src/parser/tests/testdata/of-1.cst +0 -0
- {yara_x-0.13.0 → yara_x-0.14.0}/parser/src/parser/tests/testdata/of-1.in +0 -0
- {yara_x-0.13.0 → yara_x-0.14.0}/parser/src/parser/tests/testdata/of-error-1.ast +0 -0
- {yara_x-0.13.0 → yara_x-0.14.0}/parser/src/parser/tests/testdata/of-error-1.cst +0 -0
- {yara_x-0.13.0 → yara_x-0.14.0}/parser/src/parser/tests/testdata/of-error-1.in +0 -0
- {yara_x-0.13.0 → yara_x-0.14.0}/parser/src/parser/tests/testdata/pattern-mods-1.ast +0 -0
- {yara_x-0.13.0 → yara_x-0.14.0}/parser/src/parser/tests/testdata/pattern-mods-1.cst +0 -0
- {yara_x-0.13.0 → yara_x-0.14.0}/parser/src/parser/tests/testdata/pattern-mods-1.in +0 -0
- {yara_x-0.13.0 → yara_x-0.14.0}/parser/src/parser/tests/testdata/pattern-mods-error-1.ast +0 -0
- {yara_x-0.13.0 → yara_x-0.14.0}/parser/src/parser/tests/testdata/pattern-mods-error-1.cst +0 -0
- {yara_x-0.13.0 → yara_x-0.14.0}/parser/src/parser/tests/testdata/pattern-mods-error-1.in +0 -0
- {yara_x-0.13.0 → yara_x-0.14.0}/parser/src/parser/tests/testdata/patterns-1.ast +0 -0
- {yara_x-0.13.0 → yara_x-0.14.0}/parser/src/parser/tests/testdata/patterns-1.cst +0 -0
- {yara_x-0.13.0 → yara_x-0.14.0}/parser/src/parser/tests/testdata/patterns-1.in +0 -0
- {yara_x-0.13.0 → yara_x-0.14.0}/parser/src/parser/tests/testdata/patterns-2.ast +0 -0
- {yara_x-0.13.0 → yara_x-0.14.0}/parser/src/parser/tests/testdata/patterns-2.cst +0 -0
- {yara_x-0.13.0 → yara_x-0.14.0}/parser/src/parser/tests/testdata/patterns-2.in +0 -0
- {yara_x-0.13.0 → yara_x-0.14.0}/parser/src/parser/tests/testdata/patterns-3.ast +0 -0
- {yara_x-0.13.0 → yara_x-0.14.0}/parser/src/parser/tests/testdata/patterns-3.cst +0 -0
- {yara_x-0.13.0 → yara_x-0.14.0}/parser/src/parser/tests/testdata/patterns-3.in +0 -0
- {yara_x-0.13.0 → yara_x-0.14.0}/parser/src/parser/tests/testdata/patterns-error-1.ast +0 -0
- {yara_x-0.13.0 → yara_x-0.14.0}/parser/src/parser/tests/testdata/patterns-error-1.cst +0 -0
- {yara_x-0.13.0 → yara_x-0.14.0}/parser/src/parser/tests/testdata/patterns-error-1.in +0 -0
- {yara_x-0.13.0 → yara_x-0.14.0}/parser/src/parser/tests/testdata/patterns-error-2.ast +0 -0
- {yara_x-0.13.0 → yara_x-0.14.0}/parser/src/parser/tests/testdata/patterns-error-2.cst +0 -0
- {yara_x-0.13.0 → yara_x-0.14.0}/parser/src/parser/tests/testdata/patterns-error-2.in +0 -0
- {yara_x-0.13.0 → yara_x-0.14.0}/parser/src/parser/tests/testdata/patterns-error-3.ast +0 -0
- {yara_x-0.13.0 → yara_x-0.14.0}/parser/src/parser/tests/testdata/patterns-error-3.cst +0 -0
- {yara_x-0.13.0 → yara_x-0.14.0}/parser/src/parser/tests/testdata/patterns-error-3.in +0 -0
- {yara_x-0.13.0 → yara_x-0.14.0}/parser/src/parser/tests/testdata/patterns-error-4.ast +0 -0
- {yara_x-0.13.0 → yara_x-0.14.0}/parser/src/parser/tests/testdata/patterns-error-4.cst +0 -0
- {yara_x-0.13.0 → yara_x-0.14.0}/parser/src/parser/tests/testdata/patterns-error-4.in +0 -0
- {yara_x-0.13.0 → yara_x-0.14.0}/parser/src/parser/tests/testdata/patterns-error-5.ast +0 -0
- {yara_x-0.13.0 → yara_x-0.14.0}/parser/src/parser/tests/testdata/patterns-error-5.cst +0 -0
- {yara_x-0.13.0 → yara_x-0.14.0}/parser/src/parser/tests/testdata/patterns-error-5.in +0 -0
- {yara_x-0.13.0 → yara_x-0.14.0}/parser/src/parser/tests/testdata/patterns-error-6.ast +0 -0
- {yara_x-0.13.0 → yara_x-0.14.0}/parser/src/parser/tests/testdata/patterns-error-6.cst +0 -0
- {yara_x-0.13.0 → yara_x-0.14.0}/parser/src/parser/tests/testdata/patterns-error-6.in +0 -0
- {yara_x-0.13.0 → yara_x-0.14.0}/parser/src/parser/tests/testdata/patterns-error-7.ast +0 -0
- {yara_x-0.13.0 → yara_x-0.14.0}/parser/src/parser/tests/testdata/patterns-error-7.cst +0 -0
- {yara_x-0.13.0 → yara_x-0.14.0}/parser/src/parser/tests/testdata/patterns-error-7.in +0 -0
- {yara_x-0.13.0 → yara_x-0.14.0}/parser/src/parser/tests/testdata/rule-mods-1.ast +0 -0
- {yara_x-0.13.0 → yara_x-0.14.0}/parser/src/parser/tests/testdata/rule-mods-1.cst +0 -0
- {yara_x-0.13.0 → yara_x-0.14.0}/parser/src/parser/tests/testdata/rule-mods-1.in +0 -0
- {yara_x-0.13.0 → yara_x-0.14.0}/parser/src/parser/tests/testdata/rule-tags-error-1.ast +0 -0
- {yara_x-0.13.0 → yara_x-0.14.0}/parser/src/parser/tests/testdata/rule-tags-error-1.cst +0 -0
- {yara_x-0.13.0 → yara_x-0.14.0}/parser/src/parser/tests/testdata/rule-tags-error-1.in +0 -0
- {yara_x-0.13.0 → yara_x-0.14.0}/parser/src/parser/tests/testdata/rule-tags-error-2.ast +0 -0
- {yara_x-0.13.0 → yara_x-0.14.0}/parser/src/parser/tests/testdata/rule-tags-error-2.cst +0 -0
- {yara_x-0.13.0 → yara_x-0.14.0}/parser/src/parser/tests/testdata/rule-tags-error-2.in +0 -0
- {yara_x-0.13.0 → yara_x-0.14.0}/parser/src/parser/tests/testdata/rule-tags-error-3.ast +0 -0
- {yara_x-0.13.0 → yara_x-0.14.0}/parser/src/parser/tests/testdata/rule-tags-error-3.cst +0 -0
- {yara_x-0.13.0 → yara_x-0.14.0}/parser/src/parser/tests/testdata/rule-tags-error-3.in +0 -0
- {yara_x-0.13.0 → yara_x-0.14.0}/parser/src/parser/tests/testdata/rule-tags.ast +0 -0
- {yara_x-0.13.0 → yara_x-0.14.0}/parser/src/parser/tests/testdata/rule-tags.cst +0 -0
- {yara_x-0.13.0 → yara_x-0.14.0}/parser/src/parser/tests/testdata/rule-tags.in +0 -0
- {yara_x-0.13.0 → yara_x-0.14.0}/parser/src/parser/tests/testdata/with-1.ast +0 -0
- {yara_x-0.13.0 → yara_x-0.14.0}/parser/src/parser/tests/testdata/with-1.cst +0 -0
- {yara_x-0.13.0 → yara_x-0.14.0}/parser/src/parser/tests/testdata/with-1.in +0 -0
- {yara_x-0.13.0 → yara_x-0.14.0}/parser/src/parser/tests/testdata/with-2.ast +0 -0
- {yara_x-0.13.0 → yara_x-0.14.0}/parser/src/parser/tests/testdata/with-2.cst +0 -0
- {yara_x-0.13.0 → yara_x-0.14.0}/parser/src/parser/tests/testdata/with-2.in +0 -0
- {yara_x-0.13.0 → yara_x-0.14.0}/parser/src/parser/tests/testdata/with-error-1.ast +0 -0
- {yara_x-0.13.0 → yara_x-0.14.0}/parser/src/parser/tests/testdata/with-error-1.cst +0 -0
- {yara_x-0.13.0 → yara_x-0.14.0}/parser/src/parser/tests/testdata/with-error-1.in +0 -0
- {yara_x-0.13.0 → yara_x-0.14.0}/parser/src/parser/tests/testdata/with-error-2.ast +0 -0
- {yara_x-0.13.0 → yara_x-0.14.0}/parser/src/parser/tests/testdata/with-error-2.cst +0 -0
- {yara_x-0.13.0 → yara_x-0.14.0}/parser/src/parser/tests/testdata/with-error-2.in +0 -0
- {yara_x-0.13.0 → yara_x-0.14.0}/parser/src/parser/tests/testdata/with-error-3.ast +0 -0
- {yara_x-0.13.0 → yara_x-0.14.0}/parser/src/parser/tests/testdata/with-error-3.cst +0 -0
- {yara_x-0.13.0 → yara_x-0.14.0}/parser/src/parser/tests/testdata/with-error-3.in +0 -0
- {yara_x-0.13.0 → yara_x-0.14.0}/parser/src/parser/token_stream.rs +0 -0
- {yara_x-0.13.0 → yara_x-0.14.0}/parser/src/tokenizer/mod.rs +0 -0
- {yara_x-0.13.0 → yara_x-0.14.0}/parser/src/tokenizer/tests.rs +0 -0
- {yara_x-0.13.0 → yara_x-0.14.0}/parser/src/tokenizer/tokens.rs +0 -0
- {yara_x-0.13.0 → yara_x-0.14.0}/proto/Cargo.lock +0 -0
- {yara_x-0.13.0 → yara_x-0.14.0}/proto/Cargo.toml +0 -0
- {yara_x-0.13.0 → yara_x-0.14.0}/proto/README.md +0 -0
- {yara_x-0.13.0 → yara_x-0.14.0}/proto/build.rs +0 -0
- {yara_x-0.13.0 → yara_x-0.14.0}/proto/src/lib.rs +0 -0
- {yara_x-0.13.0 → yara_x-0.14.0}/proto/src/yara.proto +0 -0
- {yara_x-0.13.0 → yara_x-0.14.0}/proto-yaml/Cargo.toml +0 -0
- {yara_x-0.13.0 → yara_x-0.14.0}/proto-yaml/README.md +0 -0
- {yara_x-0.13.0 → yara_x-0.14.0}/proto-yaml/build.rs +0 -0
- {yara_x-0.13.0 → yara_x-0.14.0}/proto-yaml/src/lib.rs +0 -0
- {yara_x-0.13.0 → yara_x-0.14.0}/proto-yaml/src/tests/mod.rs +0 -0
- {yara_x-0.13.0 → yara_x-0.14.0}/proto-yaml/src/tests/test.proto +0 -0
- {yara_x-0.13.0 → yara_x-0.14.0}/proto-yaml/src/tests/testdata/1.in +0 -0
- {yara_x-0.13.0 → yara_x-0.14.0}/proto-yaml/src/tests/testdata/1.out +0 -0
- {yara_x-0.13.0 → yara_x-0.14.0}/proto-yaml/src/yaml.proto +0 -0
- {yara_x-0.13.0 → yara_x-0.14.0}/py/Cargo.toml +0 -0
- {yara_x-0.13.0 → yara_x-0.14.0}/py/README.md +0 -0
- {yara_x-0.13.0 → yara_x-0.14.0}/py/build.rs +0 -0
- {yara_x-0.13.0 → yara_x-0.14.0}/py/src/lib.rs +0 -0
- {yara_x-0.13.0 → yara_x-0.14.0}/py/tests/test_api.py +0 -0
- {yara_x-0.13.0 → yara_x-0.14.0}/py/yara_x.pyi +0 -0
- {yara_x-0.13.0 → yara_x-0.14.0}/pyproject.toml +0 -0
|
@@ -2,6 +2,25 @@
|
|
|
2
2
|
# It is not intended for manual editing.
|
|
3
3
|
version = 3
|
|
4
4
|
|
|
5
|
+
[[package]]
|
|
6
|
+
name = "addr"
|
|
7
|
+
version = "0.15.6"
|
|
8
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
9
|
+
checksum = "a93b8a41dbe230ad5087cc721f8d41611de654542180586b315d9f4cf6b72bef"
|
|
10
|
+
dependencies = [
|
|
11
|
+
"psl",
|
|
12
|
+
"psl-types",
|
|
13
|
+
]
|
|
14
|
+
|
|
15
|
+
[[package]]
|
|
16
|
+
name = "addr2line"
|
|
17
|
+
version = "0.24.2"
|
|
18
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
19
|
+
checksum = "dfbe277e56a376000877090da837660b4427aad530e3028d44e0bffe4f89a1c1"
|
|
20
|
+
dependencies = [
|
|
21
|
+
"gimli 0.31.1",
|
|
22
|
+
]
|
|
23
|
+
|
|
5
24
|
[[package]]
|
|
6
25
|
name = "adler2"
|
|
7
26
|
version = "2.0.0"
|
|
@@ -27,10 +46,10 @@ checksum = "e89da841a80418a9b391ebaea17f5c112ffaaa96f621d2c285b5174da76b9011"
|
|
|
27
46
|
dependencies = [
|
|
28
47
|
"cfg-if",
|
|
29
48
|
"const-random",
|
|
30
|
-
"getrandom",
|
|
49
|
+
"getrandom 0.2.15",
|
|
31
50
|
"once_cell",
|
|
32
51
|
"version_check",
|
|
33
|
-
"zerocopy",
|
|
52
|
+
"zerocopy 0.7.35",
|
|
34
53
|
]
|
|
35
54
|
|
|
36
55
|
[[package]]
|
|
@@ -141,9 +160,9 @@ dependencies = [
|
|
|
141
160
|
|
|
142
161
|
[[package]]
|
|
143
162
|
name = "anyhow"
|
|
144
|
-
version = "1.0.
|
|
163
|
+
version = "1.0.97"
|
|
145
164
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
146
|
-
checksum = "
|
|
165
|
+
checksum = "dcfed56ad506cb2c684a14971b8861fdc3baaaae314b9e5f9bb532cbe3ba7a4f"
|
|
147
166
|
|
|
148
167
|
[[package]]
|
|
149
168
|
name = "arbitrary"
|
|
@@ -171,9 +190,9 @@ checksum = "ca6c635b3aa665c649ad1415f1573c85957dfa47690ec27aebe7ec17efe3c643"
|
|
|
171
190
|
|
|
172
191
|
[[package]]
|
|
173
192
|
name = "asn1-rs"
|
|
174
|
-
version = "0.7.
|
|
193
|
+
version = "0.7.1"
|
|
175
194
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
176
|
-
checksum = "
|
|
195
|
+
checksum = "56624a96882bb8c26d61312ae18cb45868e5a9992ea73c58e45c3101e56a1e60"
|
|
177
196
|
dependencies = [
|
|
178
197
|
"asn1-rs-derive",
|
|
179
198
|
"asn1-rs-impl",
|
|
@@ -181,7 +200,7 @@ dependencies = [
|
|
|
181
200
|
"nom 7.1.3",
|
|
182
201
|
"num-traits",
|
|
183
202
|
"rusticata-macros",
|
|
184
|
-
"thiserror 2.0.
|
|
203
|
+
"thiserror 2.0.12",
|
|
185
204
|
"time",
|
|
186
205
|
]
|
|
187
206
|
|
|
@@ -193,7 +212,7 @@ checksum = "3109e49b1e4909e9db6515a30c633684d68cdeaa252f215214cb4fa1a5bfee2c"
|
|
|
193
212
|
dependencies = [
|
|
194
213
|
"proc-macro2",
|
|
195
214
|
"quote",
|
|
196
|
-
"syn 2.0.
|
|
215
|
+
"syn 2.0.100",
|
|
197
216
|
"synstructure",
|
|
198
217
|
]
|
|
199
218
|
|
|
@@ -205,7 +224,7 @@ checksum = "7b18050c2cd6fe86c3a76584ef5e0baf286d038cda203eb6223df2cc413565f7"
|
|
|
205
224
|
dependencies = [
|
|
206
225
|
"proc-macro2",
|
|
207
226
|
"quote",
|
|
208
|
-
"syn 2.0.
|
|
227
|
+
"syn 2.0.100",
|
|
209
228
|
]
|
|
210
229
|
|
|
211
230
|
[[package]]
|
|
@@ -239,6 +258,23 @@ dependencies = [
|
|
|
239
258
|
"tempfile",
|
|
240
259
|
]
|
|
241
260
|
|
|
261
|
+
[[package]]
|
|
262
|
+
name = "async-smtp"
|
|
263
|
+
version = "0.9.2"
|
|
264
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
265
|
+
checksum = "00d1f1a16e5abad3ada9f1f23dbc2f354b138121b90533381be62dada6cbf40a"
|
|
266
|
+
dependencies = [
|
|
267
|
+
"anyhow",
|
|
268
|
+
"base64 0.13.1",
|
|
269
|
+
"futures",
|
|
270
|
+
"hostname",
|
|
271
|
+
"log",
|
|
272
|
+
"nom 7.1.3",
|
|
273
|
+
"pin-project",
|
|
274
|
+
"thiserror 1.0.69",
|
|
275
|
+
"tokio",
|
|
276
|
+
]
|
|
277
|
+
|
|
242
278
|
[[package]]
|
|
243
279
|
name = "atomic"
|
|
244
280
|
version = "0.6.0"
|
|
@@ -254,6 +290,21 @@ version = "1.4.0"
|
|
|
254
290
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
255
291
|
checksum = "ace50bade8e6234aa140d9a2f552bbee1db4d353f69b8217bc503490fc1a9f26"
|
|
256
292
|
|
|
293
|
+
[[package]]
|
|
294
|
+
name = "backtrace"
|
|
295
|
+
version = "0.3.74"
|
|
296
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
297
|
+
checksum = "8d82cb332cdfaed17ae235a638438ac4d4839913cc2af585c3c6746e8f8bee1a"
|
|
298
|
+
dependencies = [
|
|
299
|
+
"addr2line",
|
|
300
|
+
"cfg-if",
|
|
301
|
+
"libc",
|
|
302
|
+
"miniz_oxide",
|
|
303
|
+
"object",
|
|
304
|
+
"rustc-demangle",
|
|
305
|
+
"windows-targets 0.52.6",
|
|
306
|
+
]
|
|
307
|
+
|
|
257
308
|
[[package]]
|
|
258
309
|
name = "base16ct"
|
|
259
310
|
version = "0.2.0"
|
|
@@ -274,9 +325,9 @@ checksum = "72b3254f16251a8381aa12e40e3c4d2f0199f8c6508fbecb9d91f575e0fbb8c6"
|
|
|
274
325
|
|
|
275
326
|
[[package]]
|
|
276
327
|
name = "base64ct"
|
|
277
|
-
version = "1.
|
|
328
|
+
version = "1.7.3"
|
|
278
329
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
279
|
-
checksum = "
|
|
330
|
+
checksum = "89e25b6adfb930f02d1981565a6e5d9c547ac15a96606256d3b59040e5cd4ca3"
|
|
280
331
|
|
|
281
332
|
[[package]]
|
|
282
333
|
name = "beef"
|
|
@@ -301,9 +352,9 @@ checksum = "bef38d45163c2f1dde094a7dfd33ccf595c92905c8f8f4fdc18d06fb1037718a"
|
|
|
301
352
|
|
|
302
353
|
[[package]]
|
|
303
354
|
name = "bitflags"
|
|
304
|
-
version = "2.
|
|
355
|
+
version = "2.9.0"
|
|
305
356
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
306
|
-
checksum = "
|
|
357
|
+
checksum = "5c8214115b7bf84099f1309324e63141d4c5d7cc26862f97a0a857dbefe165bd"
|
|
307
358
|
dependencies = [
|
|
308
359
|
"serde",
|
|
309
360
|
]
|
|
@@ -340,9 +391,9 @@ dependencies = [
|
|
|
340
391
|
|
|
341
392
|
[[package]]
|
|
342
393
|
name = "brotli"
|
|
343
|
-
version = "
|
|
394
|
+
version = "7.0.0"
|
|
344
395
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
345
|
-
checksum = "
|
|
396
|
+
checksum = "cc97b8f16f944bba54f0433f07e30be199b6dc2bd25937444bbad560bcea29bd"
|
|
346
397
|
dependencies = [
|
|
347
398
|
"alloc-no-stdlib",
|
|
348
399
|
"alloc-stdlib",
|
|
@@ -351,9 +402,9 @@ dependencies = [
|
|
|
351
402
|
|
|
352
403
|
[[package]]
|
|
353
404
|
name = "brotli-decompressor"
|
|
354
|
-
version = "
|
|
405
|
+
version = "4.0.2"
|
|
355
406
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
356
|
-
checksum = "
|
|
407
|
+
checksum = "74fa05ad7d803d413eb8380983b092cbbaf9a85f151b871360e7b00cd7060b37"
|
|
357
408
|
dependencies = [
|
|
358
409
|
"alloc-no-stdlib",
|
|
359
410
|
"alloc-stdlib",
|
|
@@ -372,9 +423,9 @@ dependencies = [
|
|
|
372
423
|
|
|
373
424
|
[[package]]
|
|
374
425
|
name = "bumpalo"
|
|
375
|
-
version = "3.
|
|
426
|
+
version = "3.17.0"
|
|
376
427
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
377
|
-
checksum = "
|
|
428
|
+
checksum = "1628fb46dfa0b37568d12e5edd512553eccf6a22a78e8bde00bb4aed84d5bdbf"
|
|
378
429
|
dependencies = [
|
|
379
430
|
"allocator-api2",
|
|
380
431
|
]
|
|
@@ -387,9 +438,9 @@ checksum = "5ce89b21cab1437276d2650d57e971f9d548a2d9037cc231abdc0562b97498ce"
|
|
|
387
438
|
|
|
388
439
|
[[package]]
|
|
389
440
|
name = "bytemuck"
|
|
390
|
-
version = "1.
|
|
441
|
+
version = "1.22.0"
|
|
391
442
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
392
|
-
checksum = "
|
|
443
|
+
checksum = "b6b1fc10dbac614ebc03540c9dbd60e83887fda27794998c6528f1782047d540"
|
|
393
444
|
|
|
394
445
|
[[package]]
|
|
395
446
|
name = "byteorder"
|
|
@@ -399,28 +450,26 @@ checksum = "1fd0f2584146f6f2ef48085050886acf353beff7305ebd1ae69500e27c67f64b"
|
|
|
399
450
|
|
|
400
451
|
[[package]]
|
|
401
452
|
name = "bytes"
|
|
402
|
-
version = "1.
|
|
453
|
+
version = "1.10.1"
|
|
403
454
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
404
|
-
checksum = "
|
|
455
|
+
checksum = "d71b6127be86fdcfddb610f7182ac57211d4b18a3e9c82eb2d17662f2227ad6a"
|
|
405
456
|
|
|
406
457
|
[[package]]
|
|
407
458
|
name = "bzip2"
|
|
408
|
-
version = "0.
|
|
459
|
+
version = "0.5.2"
|
|
409
460
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
410
|
-
checksum = "
|
|
461
|
+
checksum = "49ecfb22d906f800d4fe833b6282cf4dc1c298f5057ca0b5445e5c209735ca47"
|
|
411
462
|
dependencies = [
|
|
412
463
|
"bzip2-sys",
|
|
413
|
-
"libc",
|
|
414
464
|
]
|
|
415
465
|
|
|
416
466
|
[[package]]
|
|
417
467
|
name = "bzip2-sys"
|
|
418
|
-
version = "0.1.
|
|
468
|
+
version = "0.1.13+1.0.8"
|
|
419
469
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
420
|
-
checksum = "
|
|
470
|
+
checksum = "225bff33b2141874fe80d71e07d6eec4f85c5c216453dd96388240f96e1acc14"
|
|
421
471
|
dependencies = [
|
|
422
472
|
"cc",
|
|
423
|
-
"libc",
|
|
424
473
|
"pkg-config",
|
|
425
474
|
]
|
|
426
475
|
|
|
@@ -450,7 +499,7 @@ checksum = "4acbb09d9ee8e23699b9634375c72795d095bf268439da88562cf9b501f181fa"
|
|
|
450
499
|
dependencies = [
|
|
451
500
|
"camino",
|
|
452
501
|
"cargo-platform",
|
|
453
|
-
"semver 1.0.
|
|
502
|
+
"semver 1.0.26",
|
|
454
503
|
"serde",
|
|
455
504
|
"serde_json",
|
|
456
505
|
]
|
|
@@ -472,22 +521,22 @@ checksum = "eadd868a2ce9ca38de7eeafdcec9c7065ef89b42b32f0839278d55f35c54d1ff"
|
|
|
472
521
|
dependencies = [
|
|
473
522
|
"clap",
|
|
474
523
|
"heck 0.4.1",
|
|
475
|
-
"indexmap 2.
|
|
524
|
+
"indexmap 2.8.0",
|
|
476
525
|
"log",
|
|
477
526
|
"proc-macro2",
|
|
478
527
|
"quote",
|
|
479
528
|
"serde",
|
|
480
529
|
"serde_json",
|
|
481
|
-
"syn 2.0.
|
|
530
|
+
"syn 2.0.100",
|
|
482
531
|
"tempfile",
|
|
483
532
|
"toml",
|
|
484
533
|
]
|
|
485
534
|
|
|
486
535
|
[[package]]
|
|
487
536
|
name = "cc"
|
|
488
|
-
version = "1.2.
|
|
537
|
+
version = "1.2.17"
|
|
489
538
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
490
|
-
checksum = "
|
|
539
|
+
checksum = "1fcb57c740ae1daf453ae85f16e37396f672b039e00d9d866e07ddb24e328e3a"
|
|
491
540
|
dependencies = [
|
|
492
541
|
"jobserver",
|
|
493
542
|
"libc",
|
|
@@ -513,16 +562,16 @@ dependencies = [
|
|
|
513
562
|
|
|
514
563
|
[[package]]
|
|
515
564
|
name = "chrono"
|
|
516
|
-
version = "0.4.
|
|
565
|
+
version = "0.4.40"
|
|
517
566
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
518
|
-
checksum = "
|
|
567
|
+
checksum = "1a7964611d71df112cb1730f2ee67324fcf4d0fc6606acbbe9bfe06df124637c"
|
|
519
568
|
dependencies = [
|
|
520
569
|
"android-tzdata",
|
|
521
570
|
"iana-time-zone",
|
|
522
571
|
"js-sys",
|
|
523
572
|
"num-traits",
|
|
524
573
|
"wasm-bindgen",
|
|
525
|
-
"windows-
|
|
574
|
+
"windows-link",
|
|
526
575
|
]
|
|
527
576
|
|
|
528
577
|
[[package]]
|
|
@@ -537,9 +586,9 @@ dependencies = [
|
|
|
537
586
|
|
|
538
587
|
[[package]]
|
|
539
588
|
name = "clap"
|
|
540
|
-
version = "4.5.
|
|
589
|
+
version = "4.5.34"
|
|
541
590
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
542
|
-
checksum = "
|
|
591
|
+
checksum = "e958897981290da2a852763fe9cdb89cd36977a5d729023127095fa94d95e2ff"
|
|
543
592
|
dependencies = [
|
|
544
593
|
"clap_builder",
|
|
545
594
|
"clap_derive",
|
|
@@ -547,9 +596,9 @@ dependencies = [
|
|
|
547
596
|
|
|
548
597
|
[[package]]
|
|
549
598
|
name = "clap_builder"
|
|
550
|
-
version = "4.5.
|
|
599
|
+
version = "4.5.34"
|
|
551
600
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
552
|
-
checksum = "
|
|
601
|
+
checksum = "83b0f35019843db2160b5bb19ae09b4e6411ac33fc6a712003c33e03090e2489"
|
|
553
602
|
dependencies = [
|
|
554
603
|
"anstream",
|
|
555
604
|
"anstyle",
|
|
@@ -559,23 +608,23 @@ dependencies = [
|
|
|
559
608
|
|
|
560
609
|
[[package]]
|
|
561
610
|
name = "clap_complete"
|
|
562
|
-
version = "4.5.
|
|
611
|
+
version = "4.5.47"
|
|
563
612
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
564
|
-
checksum = "
|
|
613
|
+
checksum = "c06f5378ea264ad4f82bbc826628b5aad714a75abf6ece087e923010eb937fb6"
|
|
565
614
|
dependencies = [
|
|
566
615
|
"clap",
|
|
567
616
|
]
|
|
568
617
|
|
|
569
618
|
[[package]]
|
|
570
619
|
name = "clap_derive"
|
|
571
|
-
version = "4.5.
|
|
620
|
+
version = "4.5.32"
|
|
572
621
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
573
|
-
checksum = "
|
|
622
|
+
checksum = "09176aae279615badda0765c0c0b3f6ed53f4709118af73cf4655d85d1530cd7"
|
|
574
623
|
dependencies = [
|
|
575
624
|
"heck 0.5.0",
|
|
576
625
|
"proc-macro2",
|
|
577
626
|
"quote",
|
|
578
|
-
"syn 2.0.
|
|
627
|
+
"syn 2.0.100",
|
|
579
628
|
]
|
|
580
629
|
|
|
581
630
|
[[package]]
|
|
@@ -609,22 +658,23 @@ dependencies = [
|
|
|
609
658
|
|
|
610
659
|
[[package]]
|
|
611
660
|
name = "compact_str"
|
|
612
|
-
version = "0.
|
|
661
|
+
version = "0.9.0"
|
|
613
662
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
614
|
-
checksum = "
|
|
663
|
+
checksum = "3fdb1325a1cece981e8a296ab8f0f9b63ae357bd0784a9faaf548cc7b480707a"
|
|
615
664
|
dependencies = [
|
|
616
665
|
"castaway",
|
|
617
666
|
"cfg-if",
|
|
618
667
|
"itoa",
|
|
668
|
+
"rustversion",
|
|
619
669
|
"ryu",
|
|
620
670
|
"static_assertions",
|
|
621
671
|
]
|
|
622
672
|
|
|
623
673
|
[[package]]
|
|
624
674
|
name = "console"
|
|
625
|
-
version = "0.15.
|
|
675
|
+
version = "0.15.11"
|
|
626
676
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
627
|
-
checksum = "
|
|
677
|
+
checksum = "054ccb5b10f9f2cbf51eb355ca1d05c2d279ce1804688d0db74b4733a5aeafd8"
|
|
628
678
|
dependencies = [
|
|
629
679
|
"encode_unicode",
|
|
630
680
|
"libc",
|
|
@@ -653,7 +703,7 @@ version = "0.1.16"
|
|
|
653
703
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
654
704
|
checksum = "f9d839f2a20b0aee515dc581a6172f2321f96cab76c1a38a4c584a194955390e"
|
|
655
705
|
dependencies = [
|
|
656
|
-
"getrandom",
|
|
706
|
+
"getrandom 0.2.15",
|
|
657
707
|
"once_cell",
|
|
658
708
|
"tiny-keccak",
|
|
659
709
|
]
|
|
@@ -678,27 +728,42 @@ checksum = "7704b5fdd17b18ae31c4c1da5a2e0305a2bf17b5249300a9ee9ed7b72114c636"
|
|
|
678
728
|
|
|
679
729
|
[[package]]
|
|
680
730
|
name = "cpufeatures"
|
|
681
|
-
version = "0.2.
|
|
731
|
+
version = "0.2.17"
|
|
682
732
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
683
|
-
checksum = "
|
|
733
|
+
checksum = "59ed5838eebb26a2bb2e58f6d5b5316989ae9d08bab10e0e6d103e656d1b0280"
|
|
684
734
|
dependencies = [
|
|
685
735
|
"libc",
|
|
686
736
|
]
|
|
687
737
|
|
|
738
|
+
[[package]]
|
|
739
|
+
name = "cranelift-assembler-x64"
|
|
740
|
+
version = "0.117.2"
|
|
741
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
742
|
+
checksum = "d2b83fcf2fc1c8954561490d02079b496fd0c757da88129981e15bfe3a548229"
|
|
743
|
+
dependencies = [
|
|
744
|
+
"cranelift-assembler-x64-meta",
|
|
745
|
+
]
|
|
746
|
+
|
|
747
|
+
[[package]]
|
|
748
|
+
name = "cranelift-assembler-x64-meta"
|
|
749
|
+
version = "0.117.2"
|
|
750
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
751
|
+
checksum = "c7496a6e92b5cee48c5d772b0443df58816dee30fed6ba19b2a28e78037ecedf"
|
|
752
|
+
|
|
688
753
|
[[package]]
|
|
689
754
|
name = "cranelift-bforest"
|
|
690
|
-
version = "0.
|
|
755
|
+
version = "0.117.2"
|
|
691
756
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
692
|
-
checksum = "
|
|
757
|
+
checksum = "73a9dc0a8d3d49ee772101924968830f1c1937d650c571d3c2dd69dc36a68f41"
|
|
693
758
|
dependencies = [
|
|
694
759
|
"cranelift-entity",
|
|
695
760
|
]
|
|
696
761
|
|
|
697
762
|
[[package]]
|
|
698
763
|
name = "cranelift-bitset"
|
|
699
|
-
version = "0.
|
|
764
|
+
version = "0.117.2"
|
|
700
765
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
701
|
-
checksum = "
|
|
766
|
+
checksum = "573c641174c40ef31021ae4a5a3ad78974e280633502d0dfc6e362385e0c100f"
|
|
702
767
|
dependencies = [
|
|
703
768
|
"serde",
|
|
704
769
|
"serde_derive",
|
|
@@ -706,11 +771,12 @@ dependencies = [
|
|
|
706
771
|
|
|
707
772
|
[[package]]
|
|
708
773
|
name = "cranelift-codegen"
|
|
709
|
-
version = "0.
|
|
774
|
+
version = "0.117.2"
|
|
710
775
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
711
|
-
checksum = "
|
|
776
|
+
checksum = "2d7c94d572615156f2db682181cadbd96342892c31e08cc26a757344319a9220"
|
|
712
777
|
dependencies = [
|
|
713
778
|
"bumpalo",
|
|
779
|
+
"cranelift-assembler-x64",
|
|
714
780
|
"cranelift-bforest",
|
|
715
781
|
"cranelift-bitset",
|
|
716
782
|
"cranelift-codegen-meta",
|
|
@@ -719,44 +785,47 @@ dependencies = [
|
|
|
719
785
|
"cranelift-entity",
|
|
720
786
|
"cranelift-isle",
|
|
721
787
|
"gimli 0.31.1",
|
|
722
|
-
"hashbrown 0.
|
|
788
|
+
"hashbrown 0.15.2",
|
|
723
789
|
"log",
|
|
790
|
+
"pulley-interpreter",
|
|
724
791
|
"regalloc2",
|
|
725
|
-
"rustc-hash 2.1.
|
|
792
|
+
"rustc-hash 2.1.1",
|
|
726
793
|
"serde",
|
|
727
794
|
"smallvec",
|
|
728
|
-
"target-lexicon 0.13.
|
|
795
|
+
"target-lexicon 0.13.2",
|
|
729
796
|
]
|
|
730
797
|
|
|
731
798
|
[[package]]
|
|
732
799
|
name = "cranelift-codegen-meta"
|
|
733
|
-
version = "0.
|
|
800
|
+
version = "0.117.2"
|
|
734
801
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
735
|
-
checksum = "
|
|
802
|
+
checksum = "beecd9fcf2c3e06da436d565de61a42676097ea6eb6b4499346ac6264b6bb9ce"
|
|
736
803
|
dependencies = [
|
|
804
|
+
"cranelift-assembler-x64",
|
|
737
805
|
"cranelift-codegen-shared",
|
|
806
|
+
"pulley-interpreter",
|
|
738
807
|
]
|
|
739
808
|
|
|
740
809
|
[[package]]
|
|
741
810
|
name = "cranelift-codegen-shared"
|
|
742
|
-
version = "0.
|
|
811
|
+
version = "0.117.2"
|
|
743
812
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
744
|
-
checksum = "
|
|
813
|
+
checksum = "0f4ff8d2e1235f2d6e7fc3c6738be6954ba972cd295f09079ebffeca2f864e22"
|
|
745
814
|
|
|
746
815
|
[[package]]
|
|
747
816
|
name = "cranelift-control"
|
|
748
|
-
version = "0.
|
|
817
|
+
version = "0.117.2"
|
|
749
818
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
750
|
-
checksum = "
|
|
819
|
+
checksum = "001312e9fbc7d9ca9517474d6fe71e29d07e52997fd7efe18f19e8836446ceb2"
|
|
751
820
|
dependencies = [
|
|
752
821
|
"arbitrary",
|
|
753
822
|
]
|
|
754
823
|
|
|
755
824
|
[[package]]
|
|
756
825
|
name = "cranelift-entity"
|
|
757
|
-
version = "0.
|
|
826
|
+
version = "0.117.2"
|
|
758
827
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
759
|
-
checksum = "
|
|
828
|
+
checksum = "eb0fd6d4aae680275fcbceb08683416b744e65c8b607352043d3f0951d72b3b2"
|
|
760
829
|
dependencies = [
|
|
761
830
|
"cranelift-bitset",
|
|
762
831
|
"serde",
|
|
@@ -765,31 +834,31 @@ dependencies = [
|
|
|
765
834
|
|
|
766
835
|
[[package]]
|
|
767
836
|
name = "cranelift-frontend"
|
|
768
|
-
version = "0.
|
|
837
|
+
version = "0.117.2"
|
|
769
838
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
770
|
-
checksum = "
|
|
839
|
+
checksum = "9fd44e7e5dcea20ca104d45894748205c51365ce4cdb18f4418e3ba955971d1b"
|
|
771
840
|
dependencies = [
|
|
772
841
|
"cranelift-codegen",
|
|
773
842
|
"log",
|
|
774
843
|
"smallvec",
|
|
775
|
-
"target-lexicon 0.13.
|
|
844
|
+
"target-lexicon 0.13.2",
|
|
776
845
|
]
|
|
777
846
|
|
|
778
847
|
[[package]]
|
|
779
848
|
name = "cranelift-isle"
|
|
780
|
-
version = "0.
|
|
849
|
+
version = "0.117.2"
|
|
781
850
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
782
|
-
checksum = "
|
|
851
|
+
checksum = "f900e0a3847d51eed0321f0777947fb852ccfce0da7fb070100357f69a2f37fc"
|
|
783
852
|
|
|
784
853
|
[[package]]
|
|
785
854
|
name = "cranelift-native"
|
|
786
|
-
version = "0.
|
|
855
|
+
version = "0.117.2"
|
|
787
856
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
788
|
-
checksum = "
|
|
857
|
+
checksum = "7617f13f392ebb63c5126258aca8b8eca739636ca7e4eeee301d3eff68489a6a"
|
|
789
858
|
dependencies = [
|
|
790
859
|
"cranelift-codegen",
|
|
791
860
|
"libc",
|
|
792
|
-
"target-lexicon 0.13.
|
|
861
|
+
"target-lexicon 0.13.2",
|
|
793
862
|
]
|
|
794
863
|
|
|
795
864
|
[[package]]
|
|
@@ -894,11 +963,11 @@ version = "0.28.1"
|
|
|
894
963
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
895
964
|
checksum = "829d955a0bb380ef178a640b91779e3987da38c9aea133b20614cfed8cdea9c6"
|
|
896
965
|
dependencies = [
|
|
897
|
-
"bitflags 2.
|
|
966
|
+
"bitflags 2.9.0",
|
|
898
967
|
"crossterm_winapi",
|
|
899
968
|
"mio 1.0.3",
|
|
900
969
|
"parking_lot",
|
|
901
|
-
"rustix",
|
|
970
|
+
"rustix 0.38.44",
|
|
902
971
|
"signal-hook 0.3.17",
|
|
903
972
|
"signal-hook-mio",
|
|
904
973
|
"winapi",
|
|
@@ -915,9 +984,9 @@ dependencies = [
|
|
|
915
984
|
|
|
916
985
|
[[package]]
|
|
917
986
|
name = "crunchy"
|
|
918
|
-
version = "0.2.
|
|
987
|
+
version = "0.2.3"
|
|
919
988
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
920
|
-
checksum = "
|
|
989
|
+
checksum = "43da5946c66ffcc7745f48db692ffbb10a83bfe0afd96235c5c2a4fb23994929"
|
|
921
990
|
|
|
922
991
|
[[package]]
|
|
923
992
|
name = "crypto-bigint"
|
|
@@ -972,7 +1041,7 @@ dependencies = [
|
|
|
972
1041
|
"proc-macro2",
|
|
973
1042
|
"quote",
|
|
974
1043
|
"strsim 0.11.1",
|
|
975
|
-
"syn 2.0.
|
|
1044
|
+
"syn 2.0.100",
|
|
976
1045
|
]
|
|
977
1046
|
|
|
978
1047
|
[[package]]
|
|
@@ -983,14 +1052,28 @@ checksum = "d336a2a514f6ccccaa3e09b02d41d35330c07ddf03a62165fcec10bb561c7806"
|
|
|
983
1052
|
dependencies = [
|
|
984
1053
|
"darling_core",
|
|
985
1054
|
"quote",
|
|
986
|
-
"syn 2.0.
|
|
1055
|
+
"syn 2.0.100",
|
|
1056
|
+
]
|
|
1057
|
+
|
|
1058
|
+
[[package]]
|
|
1059
|
+
name = "dashmap"
|
|
1060
|
+
version = "6.1.0"
|
|
1061
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1062
|
+
checksum = "5041cc499144891f3790297212f32a74fb938e5136a14943f338ef9e0ae276cf"
|
|
1063
|
+
dependencies = [
|
|
1064
|
+
"cfg-if",
|
|
1065
|
+
"crossbeam-utils",
|
|
1066
|
+
"hashbrown 0.14.5",
|
|
1067
|
+
"lock_api",
|
|
1068
|
+
"once_cell",
|
|
1069
|
+
"parking_lot_core",
|
|
987
1070
|
]
|
|
988
1071
|
|
|
989
1072
|
[[package]]
|
|
990
1073
|
name = "data-encoding"
|
|
991
|
-
version = "2.
|
|
1074
|
+
version = "2.8.0"
|
|
992
1075
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
993
|
-
checksum = "
|
|
1076
|
+
checksum = "575f75dfd25738df5b91b8e43e14d44bda14637a58fae779fd2b064f8bf3e010"
|
|
994
1077
|
|
|
995
1078
|
[[package]]
|
|
996
1079
|
name = "deflate64"
|
|
@@ -1031,9 +1114,9 @@ dependencies = [
|
|
|
1031
1114
|
|
|
1032
1115
|
[[package]]
|
|
1033
1116
|
name = "deranged"
|
|
1034
|
-
version = "0.
|
|
1117
|
+
version = "0.4.1"
|
|
1035
1118
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1036
|
-
checksum = "
|
|
1119
|
+
checksum = "28cfac68e08048ae1883171632c2aef3ebc555621ae56fbccce1cbf22dd7f058"
|
|
1037
1120
|
dependencies = [
|
|
1038
1121
|
"powerfmt",
|
|
1039
1122
|
]
|
|
@@ -1046,7 +1129,7 @@ checksum = "30542c1ad912e0e3d22a1935c290e12e8a29d704a420177a31faad4a601a0800"
|
|
|
1046
1129
|
dependencies = [
|
|
1047
1130
|
"proc-macro2",
|
|
1048
1131
|
"quote",
|
|
1049
|
-
"syn 2.0.
|
|
1132
|
+
"syn 2.0.100",
|
|
1050
1133
|
]
|
|
1051
1134
|
|
|
1052
1135
|
[[package]]
|
|
@@ -1110,7 +1193,7 @@ checksum = "97369cbbc041bc366949bc74d34658d6cda5621039731c6310521892a3a20ae0"
|
|
|
1110
1193
|
dependencies = [
|
|
1111
1194
|
"proc-macro2",
|
|
1112
1195
|
"quote",
|
|
1113
|
-
"syn 2.0.
|
|
1196
|
+
"syn 2.0.100",
|
|
1114
1197
|
]
|
|
1115
1198
|
|
|
1116
1199
|
[[package]]
|
|
@@ -1151,9 +1234,9 @@ dependencies = [
|
|
|
1151
1234
|
|
|
1152
1235
|
[[package]]
|
|
1153
1236
|
name = "either"
|
|
1154
|
-
version = "1.
|
|
1237
|
+
version = "1.15.0"
|
|
1155
1238
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1156
|
-
checksum = "
|
|
1239
|
+
checksum = "48c757948c5ede0e46177b7add2e67155f70e33c07fea8284df6576da70b3719"
|
|
1157
1240
|
|
|
1158
1241
|
[[package]]
|
|
1159
1242
|
name = "elliptic-curve"
|
|
@@ -1212,18 +1295,6 @@ dependencies = [
|
|
|
1212
1295
|
"cfg-if",
|
|
1213
1296
|
]
|
|
1214
1297
|
|
|
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
1298
|
[[package]]
|
|
1228
1299
|
name = "env_filter"
|
|
1229
1300
|
version = "0.1.3"
|
|
@@ -1236,22 +1307,22 @@ dependencies = [
|
|
|
1236
1307
|
|
|
1237
1308
|
[[package]]
|
|
1238
1309
|
name = "env_logger"
|
|
1239
|
-
version = "0.11.
|
|
1310
|
+
version = "0.11.7"
|
|
1240
1311
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1241
|
-
checksum = "
|
|
1312
|
+
checksum = "c3716d7a920fb4fac5d84e9d4bce8ceb321e9414b4409da61b07b75c1e3d0697"
|
|
1242
1313
|
dependencies = [
|
|
1243
1314
|
"anstream",
|
|
1244
1315
|
"anstyle",
|
|
1245
1316
|
"env_filter",
|
|
1246
|
-
"
|
|
1317
|
+
"jiff",
|
|
1247
1318
|
"log",
|
|
1248
1319
|
]
|
|
1249
1320
|
|
|
1250
1321
|
[[package]]
|
|
1251
1322
|
name = "equivalent"
|
|
1252
|
-
version = "1.0.
|
|
1323
|
+
version = "1.0.2"
|
|
1253
1324
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1254
|
-
checksum = "
|
|
1325
|
+
checksum = "877a4ace8713b0bcf2a4e7eec82529c029f1d0619886d18145fea96c3ffe5c0f"
|
|
1255
1326
|
|
|
1256
1327
|
[[package]]
|
|
1257
1328
|
name = "errno"
|
|
@@ -1292,9 +1363,9 @@ checksum = "37909eebbb50d72f9059c3b6d82c0463f2ff062c9e95845c43a6c9c0355411be"
|
|
|
1292
1363
|
|
|
1293
1364
|
[[package]]
|
|
1294
1365
|
name = "ff"
|
|
1295
|
-
version = "0.13.
|
|
1366
|
+
version = "0.13.1"
|
|
1296
1367
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1297
|
-
checksum = "
|
|
1368
|
+
checksum = "c0b50bfb653653f9ca9095b427bed08ab8d75a137839d9ad64eb11810d5b6393"
|
|
1298
1369
|
dependencies = [
|
|
1299
1370
|
"rand_core",
|
|
1300
1371
|
"subtle",
|
|
@@ -1315,9 +1386,9 @@ dependencies = [
|
|
|
1315
1386
|
|
|
1316
1387
|
[[package]]
|
|
1317
1388
|
name = "filedescriptor"
|
|
1318
|
-
version = "0.8.
|
|
1389
|
+
version = "0.8.3"
|
|
1319
1390
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1320
|
-
checksum = "
|
|
1391
|
+
checksum = "e40758ed24c9b2eeb76c35fb0aebc66c626084edd827e07e1552279814c6682d"
|
|
1321
1392
|
dependencies = [
|
|
1322
1393
|
"libc",
|
|
1323
1394
|
"thiserror 1.0.69",
|
|
@@ -1338,9 +1409,9 @@ checksum = "0ce7134b9999ecaf8bcd65542e436736ef32ddca1b3e06094cb6ec5755203b80"
|
|
|
1338
1409
|
|
|
1339
1410
|
[[package]]
|
|
1340
1411
|
name = "flate2"
|
|
1341
|
-
version = "1.0
|
|
1412
|
+
version = "1.1.0"
|
|
1342
1413
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1343
|
-
checksum = "
|
|
1414
|
+
checksum = "11faaf5a5236997af9848be0bef4db95824b1d534ebc64d0f0c6cf3e67bd38dc"
|
|
1344
1415
|
dependencies = [
|
|
1345
1416
|
"crc32fast",
|
|
1346
1417
|
"miniz_oxide",
|
|
@@ -1355,20 +1426,6 @@ dependencies = [
|
|
|
1355
1426
|
"num-traits",
|
|
1356
1427
|
]
|
|
1357
1428
|
|
|
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
1429
|
[[package]]
|
|
1373
1430
|
name = "fnv"
|
|
1374
1431
|
version = "1.0.7"
|
|
@@ -1377,35 +1434,114 @@ checksum = "3f9eec918d3f24069decb9af1554cad7c880e2da24a9afd88aca000531ab82c1"
|
|
|
1377
1434
|
|
|
1378
1435
|
[[package]]
|
|
1379
1436
|
name = "foldhash"
|
|
1380
|
-
version = "0.1.
|
|
1437
|
+
version = "0.1.5"
|
|
1381
1438
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1382
|
-
checksum = "
|
|
1439
|
+
checksum = "d9c4f5dac5e15c24eb999c26181a6ca40b39fe946cbe4c263c7209467bc83af2"
|
|
1383
1440
|
|
|
1384
1441
|
[[package]]
|
|
1385
1442
|
name = "fraction"
|
|
1386
|
-
version = "0.
|
|
1443
|
+
version = "0.15.3"
|
|
1387
1444
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1388
|
-
checksum = "
|
|
1445
|
+
checksum = "0f158e3ff0a1b334408dc9fb811cd99b446986f4d8b741bb08f9df1604085ae7"
|
|
1389
1446
|
dependencies = [
|
|
1390
1447
|
"lazy_static",
|
|
1391
1448
|
"num",
|
|
1392
1449
|
]
|
|
1393
1450
|
|
|
1394
1451
|
[[package]]
|
|
1395
|
-
name = "
|
|
1396
|
-
version = "0.
|
|
1452
|
+
name = "funty"
|
|
1453
|
+
version = "2.0.0"
|
|
1397
1454
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1398
|
-
checksum = "
|
|
1455
|
+
checksum = "e6d5a32815ae3f33302d95fdcb2ce17862f8c65363dcfd29360480ba1001fc9c"
|
|
1456
|
+
|
|
1457
|
+
[[package]]
|
|
1458
|
+
name = "futures"
|
|
1459
|
+
version = "0.3.31"
|
|
1460
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1461
|
+
checksum = "65bc07b1a8bc7c85c5f2e110c476c7389b4554ba72af57d8445ea63a576b0876"
|
|
1399
1462
|
dependencies = [
|
|
1400
|
-
"
|
|
1401
|
-
"
|
|
1463
|
+
"futures-channel",
|
|
1464
|
+
"futures-core",
|
|
1465
|
+
"futures-executor",
|
|
1466
|
+
"futures-io",
|
|
1467
|
+
"futures-sink",
|
|
1468
|
+
"futures-task",
|
|
1469
|
+
"futures-util",
|
|
1402
1470
|
]
|
|
1403
1471
|
|
|
1404
1472
|
[[package]]
|
|
1405
|
-
name = "
|
|
1406
|
-
version = "
|
|
1473
|
+
name = "futures-channel"
|
|
1474
|
+
version = "0.3.31"
|
|
1407
1475
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1408
|
-
checksum = "
|
|
1476
|
+
checksum = "2dff15bf788c671c1934e366d07e30c1814a8ef514e1af724a602e8a2fbe1b10"
|
|
1477
|
+
dependencies = [
|
|
1478
|
+
"futures-core",
|
|
1479
|
+
"futures-sink",
|
|
1480
|
+
]
|
|
1481
|
+
|
|
1482
|
+
[[package]]
|
|
1483
|
+
name = "futures-core"
|
|
1484
|
+
version = "0.3.31"
|
|
1485
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1486
|
+
checksum = "05f29059c0c2090612e8d742178b0580d2dc940c837851ad723096f87af6663e"
|
|
1487
|
+
|
|
1488
|
+
[[package]]
|
|
1489
|
+
name = "futures-executor"
|
|
1490
|
+
version = "0.3.31"
|
|
1491
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1492
|
+
checksum = "1e28d1d997f585e54aebc3f97d39e72338912123a67330d723fdbb564d646c9f"
|
|
1493
|
+
dependencies = [
|
|
1494
|
+
"futures-core",
|
|
1495
|
+
"futures-task",
|
|
1496
|
+
"futures-util",
|
|
1497
|
+
]
|
|
1498
|
+
|
|
1499
|
+
[[package]]
|
|
1500
|
+
name = "futures-io"
|
|
1501
|
+
version = "0.3.31"
|
|
1502
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1503
|
+
checksum = "9e5c1b78ca4aae1ac06c48a526a655760685149f0d465d21f37abfe57ce075c6"
|
|
1504
|
+
|
|
1505
|
+
[[package]]
|
|
1506
|
+
name = "futures-macro"
|
|
1507
|
+
version = "0.3.31"
|
|
1508
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1509
|
+
checksum = "162ee34ebcb7c64a8abebc059ce0fee27c2262618d7b60ed8faf72fef13c3650"
|
|
1510
|
+
dependencies = [
|
|
1511
|
+
"proc-macro2",
|
|
1512
|
+
"quote",
|
|
1513
|
+
"syn 2.0.100",
|
|
1514
|
+
]
|
|
1515
|
+
|
|
1516
|
+
[[package]]
|
|
1517
|
+
name = "futures-sink"
|
|
1518
|
+
version = "0.3.31"
|
|
1519
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1520
|
+
checksum = "e575fab7d1e0dcb8d0c7bcf9a63ee213816ab51902e6d244a95819acacf1d4f7"
|
|
1521
|
+
|
|
1522
|
+
[[package]]
|
|
1523
|
+
name = "futures-task"
|
|
1524
|
+
version = "0.3.31"
|
|
1525
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1526
|
+
checksum = "f90f7dce0722e95104fcb095585910c0977252f286e354b5e3bd38902cd99988"
|
|
1527
|
+
|
|
1528
|
+
[[package]]
|
|
1529
|
+
name = "futures-util"
|
|
1530
|
+
version = "0.3.31"
|
|
1531
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1532
|
+
checksum = "9fa08315bb612088cc391249efdc3bc77536f16c91f6cf495e6fbe85b20a4a81"
|
|
1533
|
+
dependencies = [
|
|
1534
|
+
"futures-channel",
|
|
1535
|
+
"futures-core",
|
|
1536
|
+
"futures-io",
|
|
1537
|
+
"futures-macro",
|
|
1538
|
+
"futures-sink",
|
|
1539
|
+
"futures-task",
|
|
1540
|
+
"memchr",
|
|
1541
|
+
"pin-project-lite",
|
|
1542
|
+
"pin-utils",
|
|
1543
|
+
"slab",
|
|
1544
|
+
]
|
|
1409
1545
|
|
|
1410
1546
|
[[package]]
|
|
1411
1547
|
name = "generic-array"
|
|
@@ -1426,7 +1562,21 @@ checksum = "c4567c8db10ae91089c99af84c68c38da3ec2f087c3f82960bcdbf3656b6f4d7"
|
|
|
1426
1562
|
dependencies = [
|
|
1427
1563
|
"cfg-if",
|
|
1428
1564
|
"libc",
|
|
1429
|
-
"wasi",
|
|
1565
|
+
"wasi 0.11.0+wasi-snapshot-preview1",
|
|
1566
|
+
]
|
|
1567
|
+
|
|
1568
|
+
[[package]]
|
|
1569
|
+
name = "getrandom"
|
|
1570
|
+
version = "0.3.2"
|
|
1571
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1572
|
+
checksum = "73fea8450eea4bac3940448fb7ae50d91f034f941199fcd9d909a5a07aa455f0"
|
|
1573
|
+
dependencies = [
|
|
1574
|
+
"cfg-if",
|
|
1575
|
+
"js-sys",
|
|
1576
|
+
"libc",
|
|
1577
|
+
"r-efi",
|
|
1578
|
+
"wasi 0.14.2+wasi-0.2.4",
|
|
1579
|
+
"wasm-bindgen",
|
|
1430
1580
|
]
|
|
1431
1581
|
|
|
1432
1582
|
[[package]]
|
|
@@ -1447,7 +1597,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
1447
1597
|
checksum = "07e28edb80900c19c28f1072f2e8aeca7fa06b23cd4169cefe1af5aa3260783f"
|
|
1448
1598
|
dependencies = [
|
|
1449
1599
|
"fallible-iterator 0.3.0",
|
|
1450
|
-
"indexmap 2.
|
|
1600
|
+
"indexmap 2.8.0",
|
|
1451
1601
|
"stable_deref_trait",
|
|
1452
1602
|
]
|
|
1453
1603
|
|
|
@@ -1459,15 +1609,15 @@ checksum = "a8d1add55171497b4705a648c6b583acafb01d58050a51727785f0b2c8e0a2b2"
|
|
|
1459
1609
|
|
|
1460
1610
|
[[package]]
|
|
1461
1611
|
name = "globset"
|
|
1462
|
-
version = "0.4.
|
|
1612
|
+
version = "0.4.16"
|
|
1463
1613
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1464
|
-
checksum = "
|
|
1614
|
+
checksum = "54a1028dfc5f5df5da8a56a73e6c153c9a9708ec57232470703592a3f18e49f5"
|
|
1465
1615
|
dependencies = [
|
|
1466
1616
|
"aho-corasick",
|
|
1467
1617
|
"bstr",
|
|
1468
1618
|
"log",
|
|
1469
1619
|
"regex-automata",
|
|
1470
|
-
"regex-syntax
|
|
1620
|
+
"regex-syntax",
|
|
1471
1621
|
]
|
|
1472
1622
|
|
|
1473
1623
|
[[package]]
|
|
@@ -1476,16 +1626,16 @@ version = "0.9.1"
|
|
|
1476
1626
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1477
1627
|
checksum = "0bf760ebf69878d9fd8f110c89703d90ce35095324d1f1edcb595c63945ee757"
|
|
1478
1628
|
dependencies = [
|
|
1479
|
-
"bitflags 2.
|
|
1629
|
+
"bitflags 2.9.0",
|
|
1480
1630
|
"ignore",
|
|
1481
1631
|
"walkdir",
|
|
1482
1632
|
]
|
|
1483
1633
|
|
|
1484
1634
|
[[package]]
|
|
1485
1635
|
name = "goldenfile"
|
|
1486
|
-
version = "1.
|
|
1636
|
+
version = "1.8.0"
|
|
1487
1637
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1488
|
-
checksum = "
|
|
1638
|
+
checksum = "cf39e208efa110ca273f7255aea02485103ffcb7e5dfa5e4196b05a02411618e"
|
|
1489
1639
|
dependencies = [
|
|
1490
1640
|
"scopeguard",
|
|
1491
1641
|
"similar-asserts",
|
|
@@ -1504,6 +1654,25 @@ dependencies = [
|
|
|
1504
1654
|
"subtle",
|
|
1505
1655
|
]
|
|
1506
1656
|
|
|
1657
|
+
[[package]]
|
|
1658
|
+
name = "h2"
|
|
1659
|
+
version = "0.3.26"
|
|
1660
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1661
|
+
checksum = "81fe527a889e1532da5c525686d96d4c2e74cdd345badf8dfef9f6b39dd5f5e8"
|
|
1662
|
+
dependencies = [
|
|
1663
|
+
"bytes",
|
|
1664
|
+
"fnv",
|
|
1665
|
+
"futures-core",
|
|
1666
|
+
"futures-sink",
|
|
1667
|
+
"futures-util",
|
|
1668
|
+
"http",
|
|
1669
|
+
"indexmap 2.8.0",
|
|
1670
|
+
"slab",
|
|
1671
|
+
"tokio",
|
|
1672
|
+
"tokio-util",
|
|
1673
|
+
"tracing",
|
|
1674
|
+
]
|
|
1675
|
+
|
|
1507
1676
|
[[package]]
|
|
1508
1677
|
name = "hashbrown"
|
|
1509
1678
|
version = "0.12.3"
|
|
@@ -1576,21 +1745,85 @@ dependencies = [
|
|
|
1576
1745
|
]
|
|
1577
1746
|
|
|
1578
1747
|
[[package]]
|
|
1579
|
-
name = "
|
|
1580
|
-
version = "
|
|
1748
|
+
name = "hostname"
|
|
1749
|
+
version = "0.3.1"
|
|
1581
1750
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1582
|
-
checksum = "
|
|
1751
|
+
checksum = "3c731c3e10504cc8ed35cfe2f1db4c9274c3d35fa486e3b31df46f068ef3e867"
|
|
1752
|
+
dependencies = [
|
|
1753
|
+
"libc",
|
|
1754
|
+
"match_cfg",
|
|
1755
|
+
"winapi",
|
|
1756
|
+
]
|
|
1757
|
+
|
|
1758
|
+
[[package]]
|
|
1759
|
+
name = "http"
|
|
1760
|
+
version = "0.2.12"
|
|
1761
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1762
|
+
checksum = "601cbb57e577e2f5ef5be8e7b83f0f63994f25aa94d673e54a92d5c516d101f1"
|
|
1763
|
+
dependencies = [
|
|
1764
|
+
"bytes",
|
|
1765
|
+
"fnv",
|
|
1766
|
+
"itoa",
|
|
1767
|
+
]
|
|
1768
|
+
|
|
1769
|
+
[[package]]
|
|
1770
|
+
name = "http-body"
|
|
1771
|
+
version = "0.4.6"
|
|
1772
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1773
|
+
checksum = "7ceab25649e9960c0311ea418d17bee82c0dcec1bd053b5f9a66e265a693bed2"
|
|
1774
|
+
dependencies = [
|
|
1775
|
+
"bytes",
|
|
1776
|
+
"http",
|
|
1777
|
+
"pin-project-lite",
|
|
1778
|
+
]
|
|
1779
|
+
|
|
1780
|
+
[[package]]
|
|
1781
|
+
name = "httparse"
|
|
1782
|
+
version = "1.10.1"
|
|
1783
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1784
|
+
checksum = "6dbf3de79e51f3d586ab4cb9d5c3e2c14aa28ed23d180cf89b4df0454a69cc87"
|
|
1785
|
+
|
|
1786
|
+
[[package]]
|
|
1787
|
+
name = "httpdate"
|
|
1788
|
+
version = "1.0.3"
|
|
1789
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1790
|
+
checksum = "df3b46402a9d5adb4c86a0cf463f42e19994e3ee891101b1841f30a545cb49a9"
|
|
1791
|
+
|
|
1792
|
+
[[package]]
|
|
1793
|
+
name = "hyper"
|
|
1794
|
+
version = "0.14.32"
|
|
1795
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1796
|
+
checksum = "41dfc780fdec9373c01bae43289ea34c972e40ee3c9f6b3c8801a35f35586ce7"
|
|
1797
|
+
dependencies = [
|
|
1798
|
+
"bytes",
|
|
1799
|
+
"futures-channel",
|
|
1800
|
+
"futures-core",
|
|
1801
|
+
"futures-util",
|
|
1802
|
+
"h2",
|
|
1803
|
+
"http",
|
|
1804
|
+
"http-body",
|
|
1805
|
+
"httparse",
|
|
1806
|
+
"httpdate",
|
|
1807
|
+
"itoa",
|
|
1808
|
+
"pin-project-lite",
|
|
1809
|
+
"socket2",
|
|
1810
|
+
"tokio",
|
|
1811
|
+
"tower-service",
|
|
1812
|
+
"tracing",
|
|
1813
|
+
"want",
|
|
1814
|
+
]
|
|
1583
1815
|
|
|
1584
1816
|
[[package]]
|
|
1585
1817
|
name = "iana-time-zone"
|
|
1586
|
-
version = "0.1.
|
|
1818
|
+
version = "0.1.62"
|
|
1587
1819
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1588
|
-
checksum = "
|
|
1820
|
+
checksum = "b2fd658b06e56721792c5df4475705b6cda790e9298d19d2f8af083457bcd127"
|
|
1589
1821
|
dependencies = [
|
|
1590
1822
|
"android_system_properties",
|
|
1591
1823
|
"core-foundation-sys",
|
|
1592
1824
|
"iana-time-zone-haiku",
|
|
1593
1825
|
"js-sys",
|
|
1826
|
+
"log",
|
|
1594
1827
|
"wasm-bindgen",
|
|
1595
1828
|
"windows-core",
|
|
1596
1829
|
]
|
|
@@ -1669,9 +1902,9 @@ dependencies = [
|
|
|
1669
1902
|
|
|
1670
1903
|
[[package]]
|
|
1671
1904
|
name = "indexmap"
|
|
1672
|
-
version = "2.
|
|
1905
|
+
version = "2.8.0"
|
|
1673
1906
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1674
|
-
checksum = "
|
|
1907
|
+
checksum = "3954d50fe15b02142bf25d3b8bdadb634ec3948f103d04ffe3031bc8fe9d7058"
|
|
1675
1908
|
dependencies = [
|
|
1676
1909
|
"equivalent",
|
|
1677
1910
|
"hashbrown 0.15.2",
|
|
@@ -1680,15 +1913,15 @@ dependencies = [
|
|
|
1680
1913
|
|
|
1681
1914
|
[[package]]
|
|
1682
1915
|
name = "indoc"
|
|
1683
|
-
version = "2.0.
|
|
1916
|
+
version = "2.0.6"
|
|
1684
1917
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1685
|
-
checksum = "
|
|
1918
|
+
checksum = "f4c7245a08504955605670dbf141fceab975f15ca21570696aebe9d2e71576bd"
|
|
1686
1919
|
|
|
1687
1920
|
[[package]]
|
|
1688
1921
|
name = "inout"
|
|
1689
|
-
version = "0.1.
|
|
1922
|
+
version = "0.1.4"
|
|
1690
1923
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1691
|
-
checksum = "
|
|
1924
|
+
checksum = "879f10e63c20629ecabbb64a8010319738c66a5cd0c29b02d63d272b03751d01"
|
|
1692
1925
|
dependencies = [
|
|
1693
1926
|
"generic-array",
|
|
1694
1927
|
]
|
|
@@ -1699,6 +1932,12 @@ version = "1.10.0"
|
|
|
1699
1932
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1700
1933
|
checksum = "7785e397d45f5a00bd35df6c293518c240c321b734b15a02718aa21103de1ce9"
|
|
1701
1934
|
|
|
1935
|
+
[[package]]
|
|
1936
|
+
name = "ipnet"
|
|
1937
|
+
version = "2.11.0"
|
|
1938
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1939
|
+
checksum = "469fb0b9cefa57e3ef31275ee7cacb78f2fdca44e4765491884a2b119d4eb130"
|
|
1940
|
+
|
|
1702
1941
|
[[package]]
|
|
1703
1942
|
name = "is_terminal_polyfill"
|
|
1704
1943
|
version = "1.70.1"
|
|
@@ -1714,6 +1953,15 @@ dependencies = [
|
|
|
1714
1953
|
"either",
|
|
1715
1954
|
]
|
|
1716
1955
|
|
|
1956
|
+
[[package]]
|
|
1957
|
+
name = "itertools"
|
|
1958
|
+
version = "0.11.0"
|
|
1959
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1960
|
+
checksum = "b1c173a5686ce8bfa551b3563d0c2170bf24ca44da99c7ca4bfdab5418c3fe57"
|
|
1961
|
+
dependencies = [
|
|
1962
|
+
"either",
|
|
1963
|
+
]
|
|
1964
|
+
|
|
1717
1965
|
[[package]]
|
|
1718
1966
|
name = "itertools"
|
|
1719
1967
|
version = "0.12.1"
|
|
@@ -1734,9 +1982,33 @@ dependencies = [
|
|
|
1734
1982
|
|
|
1735
1983
|
[[package]]
|
|
1736
1984
|
name = "itoa"
|
|
1737
|
-
version = "1.0.
|
|
1985
|
+
version = "1.0.15"
|
|
1738
1986
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1739
|
-
checksum = "
|
|
1987
|
+
checksum = "4a5f13b858c8d314ee3e8f639011f7ccefe71f97f96e50151fb991f267928e2c"
|
|
1988
|
+
|
|
1989
|
+
[[package]]
|
|
1990
|
+
name = "jiff"
|
|
1991
|
+
version = "0.2.5"
|
|
1992
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1993
|
+
checksum = "c102670231191d07d37a35af3eb77f1f0dbf7a71be51a962dcd57ea607be7260"
|
|
1994
|
+
dependencies = [
|
|
1995
|
+
"jiff-static",
|
|
1996
|
+
"log",
|
|
1997
|
+
"portable-atomic",
|
|
1998
|
+
"portable-atomic-util",
|
|
1999
|
+
"serde",
|
|
2000
|
+
]
|
|
2001
|
+
|
|
2002
|
+
[[package]]
|
|
2003
|
+
name = "jiff-static"
|
|
2004
|
+
version = "0.2.5"
|
|
2005
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2006
|
+
checksum = "4cdde31a9d349f1b1f51a0b3714a5940ac022976f4b49485fc04be052b183b4c"
|
|
2007
|
+
dependencies = [
|
|
2008
|
+
"proc-macro2",
|
|
2009
|
+
"quote",
|
|
2010
|
+
"syn 2.0.100",
|
|
2011
|
+
]
|
|
1740
2012
|
|
|
1741
2013
|
[[package]]
|
|
1742
2014
|
name = "jobserver"
|
|
@@ -1780,9 +2052,9 @@ checksum = "884e2677b40cc8c339eaefcb701c32ef1fd2493d71118dc0ca4b6a736c93bd67"
|
|
|
1780
2052
|
|
|
1781
2053
|
[[package]]
|
|
1782
2054
|
name = "libc"
|
|
1783
|
-
version = "0.2.
|
|
2055
|
+
version = "0.2.171"
|
|
1784
2056
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1785
|
-
checksum = "
|
|
2057
|
+
checksum = "c19937216e9d3aa9956d9bb8dfc0b0c8beb6058fc4f7a4dc4d850edf86a237d6"
|
|
1786
2058
|
|
|
1787
2059
|
[[package]]
|
|
1788
2060
|
name = "libm"
|
|
@@ -1796,92 +2068,92 @@ version = "0.1.3"
|
|
|
1796
2068
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1797
2069
|
checksum = "c0ff37bd590ca25063e35af745c343cb7a0271906fb7b37e4813e8f79f00268d"
|
|
1798
2070
|
dependencies = [
|
|
1799
|
-
"bitflags 2.
|
|
2071
|
+
"bitflags 2.9.0",
|
|
1800
2072
|
"libc",
|
|
1801
2073
|
]
|
|
1802
2074
|
|
|
1803
2075
|
[[package]]
|
|
1804
2076
|
name = "lingua"
|
|
1805
|
-
version = "1.
|
|
2077
|
+
version = "1.7.1"
|
|
1806
2078
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1807
|
-
checksum = "
|
|
2079
|
+
checksum = "a44d00c66a76c4c2782442de0726c86d74cd3f717b318842f6ff347439c3fbe5"
|
|
1808
2080
|
dependencies = [
|
|
1809
2081
|
"ahash",
|
|
1810
2082
|
"brotli",
|
|
1811
2083
|
"compact_str",
|
|
2084
|
+
"dashmap",
|
|
1812
2085
|
"fraction",
|
|
1813
2086
|
"include_dir",
|
|
1814
|
-
"itertools 0.
|
|
2087
|
+
"itertools 0.14.0",
|
|
1815
2088
|
"lingua-english-language-model",
|
|
1816
2089
|
"lingua-french-language-model",
|
|
1817
2090
|
"lingua-german-language-model",
|
|
1818
2091
|
"lingua-spanish-language-model",
|
|
1819
2092
|
"maplit",
|
|
1820
|
-
"once_cell",
|
|
1821
2093
|
"rayon",
|
|
1822
2094
|
"regex",
|
|
1823
2095
|
"serde",
|
|
1824
2096
|
"serde-wasm-bindgen",
|
|
1825
2097
|
"serde_json",
|
|
1826
|
-
"strum
|
|
1827
|
-
"strum_macros
|
|
2098
|
+
"strum",
|
|
2099
|
+
"strum_macros",
|
|
1828
2100
|
"wasm-bindgen",
|
|
1829
2101
|
]
|
|
1830
2102
|
|
|
1831
2103
|
[[package]]
|
|
1832
2104
|
name = "lingua-english-language-model"
|
|
1833
|
-
version = "1.
|
|
2105
|
+
version = "1.2.0"
|
|
1834
2106
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1835
|
-
checksum = "
|
|
2107
|
+
checksum = "8a4b2666c2dc3669b9cc2235f318184f3cc3426bf7075336bcf8f9ddba6f81c0"
|
|
1836
2108
|
dependencies = [
|
|
1837
2109
|
"include_dir",
|
|
1838
2110
|
]
|
|
1839
2111
|
|
|
1840
2112
|
[[package]]
|
|
1841
2113
|
name = "lingua-french-language-model"
|
|
1842
|
-
version = "1.
|
|
2114
|
+
version = "1.2.0"
|
|
1843
2115
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1844
|
-
checksum = "
|
|
2116
|
+
checksum = "e7fd27da82335b66738d137ee64221f479973467b9178d49d802acbe847de355"
|
|
1845
2117
|
dependencies = [
|
|
1846
2118
|
"include_dir",
|
|
1847
2119
|
]
|
|
1848
2120
|
|
|
1849
2121
|
[[package]]
|
|
1850
2122
|
name = "lingua-german-language-model"
|
|
1851
|
-
version = "1.
|
|
2123
|
+
version = "1.2.0"
|
|
1852
2124
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1853
|
-
checksum = "
|
|
2125
|
+
checksum = "bfa568bbca8beb3b0cfc691cf2e87d1d24cb457c8e19ed168dd22d739c24a15e"
|
|
1854
2126
|
dependencies = [
|
|
1855
2127
|
"include_dir",
|
|
1856
2128
|
]
|
|
1857
2129
|
|
|
1858
2130
|
[[package]]
|
|
1859
2131
|
name = "lingua-spanish-language-model"
|
|
1860
|
-
version = "1.
|
|
2132
|
+
version = "1.2.0"
|
|
1861
2133
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1862
|
-
checksum = "
|
|
2134
|
+
checksum = "05df7766652773b2292e7ad12221c0090954baed18ca2ff631a5f134ce08d91d"
|
|
1863
2135
|
dependencies = [
|
|
1864
2136
|
"include_dir",
|
|
1865
2137
|
]
|
|
1866
2138
|
|
|
1867
2139
|
[[package]]
|
|
1868
2140
|
name = "linkme"
|
|
1869
|
-
version = "0.3.
|
|
2141
|
+
version = "0.3.32"
|
|
1870
2142
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1871
|
-
checksum = "
|
|
2143
|
+
checksum = "22d227772b5999ddc0690e733f734f95ca05387e329c4084fe65678c51198ffe"
|
|
1872
2144
|
dependencies = [
|
|
1873
2145
|
"linkme-impl",
|
|
1874
2146
|
]
|
|
1875
2147
|
|
|
1876
2148
|
[[package]]
|
|
1877
2149
|
name = "linkme-impl"
|
|
1878
|
-
version = "0.3.
|
|
2150
|
+
version = "0.3.32"
|
|
1879
2151
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1880
|
-
checksum = "
|
|
2152
|
+
checksum = "71a98813fa0073a317ed6a8055dcd4722a49d9b862af828ee68449adb799b6be"
|
|
1881
2153
|
dependencies = [
|
|
1882
2154
|
"proc-macro2",
|
|
1883
2155
|
"quote",
|
|
1884
|
-
"syn 2.0.
|
|
2156
|
+
"syn 2.0.100",
|
|
1885
2157
|
]
|
|
1886
2158
|
|
|
1887
2159
|
[[package]]
|
|
@@ -1890,6 +2162,12 @@ version = "0.4.15"
|
|
|
1890
2162
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1891
2163
|
checksum = "d26c52dbd32dccf2d10cac7725f8eae5296885fb5703b261f7d0a0739ec807ab"
|
|
1892
2164
|
|
|
2165
|
+
[[package]]
|
|
2166
|
+
name = "linux-raw-sys"
|
|
2167
|
+
version = "0.9.3"
|
|
2168
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2169
|
+
checksum = "fe7db12097d22ec582439daf8618b8fdd1a7bef6270e9af3b1ebcd30893cf413"
|
|
2170
|
+
|
|
1893
2171
|
[[package]]
|
|
1894
2172
|
name = "lock_api"
|
|
1895
2173
|
version = "0.4.12"
|
|
@@ -1908,9 +2186,9 @@ checksum = "9374ef4228402d4b7e403e5838cb880d9ee663314b0a900d5a6aabf0c213552e"
|
|
|
1908
2186
|
|
|
1909
2187
|
[[package]]
|
|
1910
2188
|
name = "log"
|
|
1911
|
-
version = "0.4.
|
|
2189
|
+
version = "0.4.27"
|
|
1912
2190
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1913
|
-
checksum = "
|
|
2191
|
+
checksum = "13dc2df351e3202783a1fe0d44375f7295ffb4049267b0f3018346dc122a1d94"
|
|
1914
2192
|
|
|
1915
2193
|
[[package]]
|
|
1916
2194
|
name = "logos"
|
|
@@ -1932,9 +2210,9 @@ dependencies = [
|
|
|
1932
2210
|
"lazy_static",
|
|
1933
2211
|
"proc-macro2",
|
|
1934
2212
|
"quote",
|
|
1935
|
-
"regex-syntax
|
|
2213
|
+
"regex-syntax",
|
|
1936
2214
|
"rustc_version",
|
|
1937
|
-
"syn 2.0.
|
|
2215
|
+
"syn 2.0.100",
|
|
1938
2216
|
]
|
|
1939
2217
|
|
|
1940
2218
|
[[package]]
|
|
@@ -1956,6 +2234,17 @@ dependencies = [
|
|
|
1956
2234
|
"crc",
|
|
1957
2235
|
]
|
|
1958
2236
|
|
|
2237
|
+
[[package]]
|
|
2238
|
+
name = "lzma-sys"
|
|
2239
|
+
version = "0.1.20"
|
|
2240
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2241
|
+
checksum = "5fda04ab3764e6cde78b9974eec4f779acaba7c4e84b36eca3cf77c581b85d27"
|
|
2242
|
+
dependencies = [
|
|
2243
|
+
"cc",
|
|
2244
|
+
"libc",
|
|
2245
|
+
"pkg-config",
|
|
2246
|
+
]
|
|
2247
|
+
|
|
1959
2248
|
[[package]]
|
|
1960
2249
|
name = "mach2"
|
|
1961
2250
|
version = "0.4.2"
|
|
@@ -1971,7 +2260,7 @@ version = "0.16.2"
|
|
|
1971
2260
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1972
2261
|
checksum = "a200ae03df8c3dce7a963f6eeaac8feb41bf9001cb7e5ab22e3205aec2f0373d"
|
|
1973
2262
|
dependencies = [
|
|
1974
|
-
"bitflags 2.
|
|
2263
|
+
"bitflags 2.9.0",
|
|
1975
2264
|
"libc",
|
|
1976
2265
|
"magic-sys",
|
|
1977
2266
|
"thiserror 1.0.69",
|
|
@@ -1993,6 +2282,12 @@ version = "1.0.2"
|
|
|
1993
2282
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1994
2283
|
checksum = "3e2e65a1a2e43cfcb47a895c4c8b10d1f4a61097f9f254f183aee60cad9c651d"
|
|
1995
2284
|
|
|
2285
|
+
[[package]]
|
|
2286
|
+
name = "match_cfg"
|
|
2287
|
+
version = "0.1.0"
|
|
2288
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2289
|
+
checksum = "ffbee8634e0d45d258acb448e7eaab3fce7a0a467395d4d9f228e3c1f01fb2e4"
|
|
2290
|
+
|
|
1996
2291
|
[[package]]
|
|
1997
2292
|
name = "md-5"
|
|
1998
2293
|
version = "0.10.6"
|
|
@@ -2024,16 +2319,16 @@ version = "0.6.4"
|
|
|
2024
2319
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2025
2320
|
checksum = "b2cffa4ad52c6f791f4f8b15f0c05f9824b2ced1160e88cc393d64fff9a8ac64"
|
|
2026
2321
|
dependencies = [
|
|
2027
|
-
"rustix",
|
|
2322
|
+
"rustix 0.38.44",
|
|
2028
2323
|
]
|
|
2029
2324
|
|
|
2030
2325
|
[[package]]
|
|
2031
|
-
name = "
|
|
2032
|
-
version = "0.
|
|
2326
|
+
name = "memmap2"
|
|
2327
|
+
version = "0.9.5"
|
|
2033
2328
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2034
|
-
checksum = "
|
|
2329
|
+
checksum = "fd3f7eed9d3848f8b98834af67102b720745c4ec028fcd0aa0239277e7de374f"
|
|
2035
2330
|
dependencies = [
|
|
2036
|
-
"
|
|
2331
|
+
"libc",
|
|
2037
2332
|
]
|
|
2038
2333
|
|
|
2039
2334
|
[[package]]
|
|
@@ -2077,9 +2372,9 @@ checksum = "68354c5c6bd36d73ff3feceb05efa59b6acb7626617f4962be322a825e61f79a"
|
|
|
2077
2372
|
|
|
2078
2373
|
[[package]]
|
|
2079
2374
|
name = "miniz_oxide"
|
|
2080
|
-
version = "0.8.
|
|
2375
|
+
version = "0.8.5"
|
|
2081
2376
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2082
|
-
checksum = "
|
|
2377
|
+
checksum = "8e3e04debbb59698c15bacbb6d93584a8c0ca9cc3213cb423d31f760d8843ce5"
|
|
2083
2378
|
dependencies = [
|
|
2084
2379
|
"adler2",
|
|
2085
2380
|
]
|
|
@@ -2092,7 +2387,7 @@ checksum = "a4a650543ca06a924e8b371db273b2756685faae30f8487da1b56505a8f78b0c"
|
|
|
2092
2387
|
dependencies = [
|
|
2093
2388
|
"libc",
|
|
2094
2389
|
"log",
|
|
2095
|
-
"wasi",
|
|
2390
|
+
"wasi 0.11.0+wasi-snapshot-preview1",
|
|
2096
2391
|
"windows-sys 0.48.0",
|
|
2097
2392
|
]
|
|
2098
2393
|
|
|
@@ -2104,7 +2399,7 @@ checksum = "2886843bf800fba2e3377cff24abf6379b4c4d5c6681eaf9ea5b0d15090450bd"
|
|
|
2104
2399
|
dependencies = [
|
|
2105
2400
|
"libc",
|
|
2106
2401
|
"log",
|
|
2107
|
-
"wasi",
|
|
2402
|
+
"wasi 0.11.0+wasi-snapshot-preview1",
|
|
2108
2403
|
"windows-sys 0.52.0",
|
|
2109
2404
|
]
|
|
2110
2405
|
|
|
@@ -2140,6 +2435,15 @@ dependencies = [
|
|
|
2140
2435
|
"minimal-lexical",
|
|
2141
2436
|
]
|
|
2142
2437
|
|
|
2438
|
+
[[package]]
|
|
2439
|
+
name = "nom"
|
|
2440
|
+
version = "8.0.0"
|
|
2441
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2442
|
+
checksum = "df9761775871bdef83bee530e60050f7e54b1105350d6884eb0fb4f46c2f9405"
|
|
2443
|
+
dependencies = [
|
|
2444
|
+
"memchr",
|
|
2445
|
+
]
|
|
2446
|
+
|
|
2143
2447
|
[[package]]
|
|
2144
2448
|
name = "normalize-line-endings"
|
|
2145
2449
|
version = "0.3.0"
|
|
@@ -2221,7 +2525,7 @@ checksum = "ed3955f1a9c7c0c15e092f9c887db08b1fc683305fdf6eb6684f22555355e202"
|
|
|
2221
2525
|
dependencies = [
|
|
2222
2526
|
"proc-macro2",
|
|
2223
2527
|
"quote",
|
|
2224
|
-
"syn 2.0.
|
|
2528
|
+
"syn 2.0.100",
|
|
2225
2529
|
]
|
|
2226
2530
|
|
|
2227
2531
|
[[package]]
|
|
@@ -2273,24 +2577,24 @@ checksum = "62948e14d923ea95ea2c7c86c71013138b66525b86bdc08d2dcc262bdb497b87"
|
|
|
2273
2577
|
dependencies = [
|
|
2274
2578
|
"crc32fast",
|
|
2275
2579
|
"hashbrown 0.15.2",
|
|
2276
|
-
"indexmap 2.
|
|
2580
|
+
"indexmap 2.8.0",
|
|
2277
2581
|
"memchr",
|
|
2278
2582
|
]
|
|
2279
2583
|
|
|
2280
2584
|
[[package]]
|
|
2281
2585
|
name = "oid-registry"
|
|
2282
|
-
version = "0.8.
|
|
2586
|
+
version = "0.8.1"
|
|
2283
2587
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2284
|
-
checksum = "
|
|
2588
|
+
checksum = "12f40cff3dde1b6087cc5d5f5d4d65712f34016a03ed60e9c08dcc392736b5b7"
|
|
2285
2589
|
dependencies = [
|
|
2286
2590
|
"asn1-rs",
|
|
2287
2591
|
]
|
|
2288
2592
|
|
|
2289
2593
|
[[package]]
|
|
2290
2594
|
name = "once_cell"
|
|
2291
|
-
version = "1.
|
|
2595
|
+
version = "1.21.2"
|
|
2292
2596
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2293
|
-
checksum = "
|
|
2597
|
+
checksum = "c2806eaa3524762875e21c3dcd057bc4b7bfa01ce4da8d46be1cd43649e1cc6b"
|
|
2294
2598
|
|
|
2295
2599
|
[[package]]
|
|
2296
2600
|
name = "opaque-debug"
|
|
@@ -2330,9 +2634,9 @@ dependencies = [
|
|
|
2330
2634
|
|
|
2331
2635
|
[[package]]
|
|
2332
2636
|
name = "p384"
|
|
2333
|
-
version = "0.13.
|
|
2637
|
+
version = "0.13.1"
|
|
2334
2638
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2335
|
-
checksum = "
|
|
2639
|
+
checksum = "fe42f1670a52a47d448f14b6a5c61dd78fce51856e68edaa38f7ae3a46b8d6b6"
|
|
2336
2640
|
dependencies = [
|
|
2337
2641
|
"ecdsa",
|
|
2338
2642
|
"elliptic-curve",
|
|
@@ -2363,32 +2667,6 @@ dependencies = [
|
|
|
2363
2667
|
"windows-targets 0.52.6",
|
|
2364
2668
|
]
|
|
2365
2669
|
|
|
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
2670
|
[[package]]
|
|
2393
2671
|
name = "paste"
|
|
2394
2672
|
version = "1.0.15"
|
|
@@ -2416,20 +2694,20 @@ dependencies = [
|
|
|
2416
2694
|
|
|
2417
2695
|
[[package]]
|
|
2418
2696
|
name = "pest"
|
|
2419
|
-
version = "2.
|
|
2697
|
+
version = "2.8.0"
|
|
2420
2698
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2421
|
-
checksum = "
|
|
2699
|
+
checksum = "198db74531d58c70a361c42201efde7e2591e976d518caf7662a47dc5720e7b6"
|
|
2422
2700
|
dependencies = [
|
|
2423
2701
|
"memchr",
|
|
2424
|
-
"thiserror 2.0.
|
|
2702
|
+
"thiserror 2.0.12",
|
|
2425
2703
|
"ucd-trie",
|
|
2426
2704
|
]
|
|
2427
2705
|
|
|
2428
2706
|
[[package]]
|
|
2429
2707
|
name = "pest_derive"
|
|
2430
|
-
version = "2.
|
|
2708
|
+
version = "2.8.0"
|
|
2431
2709
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2432
|
-
checksum = "
|
|
2710
|
+
checksum = "d725d9cfd79e87dccc9341a2ef39d1b6f6353d68c4b33c177febbe1a402c97c5"
|
|
2433
2711
|
dependencies = [
|
|
2434
2712
|
"pest",
|
|
2435
2713
|
"pest_generator",
|
|
@@ -2437,22 +2715,22 @@ dependencies = [
|
|
|
2437
2715
|
|
|
2438
2716
|
[[package]]
|
|
2439
2717
|
name = "pest_generator"
|
|
2440
|
-
version = "2.
|
|
2718
|
+
version = "2.8.0"
|
|
2441
2719
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2442
|
-
checksum = "
|
|
2720
|
+
checksum = "db7d01726be8ab66ab32f9df467ae8b1148906685bbe75c82d1e65d7f5b3f841"
|
|
2443
2721
|
dependencies = [
|
|
2444
2722
|
"pest",
|
|
2445
2723
|
"pest_meta",
|
|
2446
2724
|
"proc-macro2",
|
|
2447
2725
|
"quote",
|
|
2448
|
-
"syn 2.0.
|
|
2726
|
+
"syn 2.0.100",
|
|
2449
2727
|
]
|
|
2450
2728
|
|
|
2451
2729
|
[[package]]
|
|
2452
2730
|
name = "pest_meta"
|
|
2453
|
-
version = "2.
|
|
2731
|
+
version = "2.8.0"
|
|
2454
2732
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2455
|
-
checksum = "
|
|
2733
|
+
checksum = "7f9f832470494906d1fca5329f8ab5791cc60beb230c74815dff541cbd2b5ca0"
|
|
2456
2734
|
dependencies = [
|
|
2457
2735
|
"once_cell",
|
|
2458
2736
|
"pest",
|
|
@@ -2508,7 +2786,7 @@ dependencies = [
|
|
|
2508
2786
|
"phf_shared 0.11.3",
|
|
2509
2787
|
"proc-macro2",
|
|
2510
2788
|
"quote",
|
|
2511
|
-
"syn 2.0.
|
|
2789
|
+
"syn 2.0.100",
|
|
2512
2790
|
]
|
|
2513
2791
|
|
|
2514
2792
|
[[package]]
|
|
@@ -2529,6 +2807,38 @@ dependencies = [
|
|
|
2529
2807
|
"siphasher 1.0.1",
|
|
2530
2808
|
]
|
|
2531
2809
|
|
|
2810
|
+
[[package]]
|
|
2811
|
+
name = "pin-project"
|
|
2812
|
+
version = "1.1.10"
|
|
2813
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2814
|
+
checksum = "677f1add503faace112b9f1373e43e9e054bfdd22ff1a63c1bc485eaec6a6a8a"
|
|
2815
|
+
dependencies = [
|
|
2816
|
+
"pin-project-internal",
|
|
2817
|
+
]
|
|
2818
|
+
|
|
2819
|
+
[[package]]
|
|
2820
|
+
name = "pin-project-internal"
|
|
2821
|
+
version = "1.1.10"
|
|
2822
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2823
|
+
checksum = "6e918e4ff8c4549eb882f14b3a4bc8c8bc93de829416eacf579f1207a8fbf861"
|
|
2824
|
+
dependencies = [
|
|
2825
|
+
"proc-macro2",
|
|
2826
|
+
"quote",
|
|
2827
|
+
"syn 2.0.100",
|
|
2828
|
+
]
|
|
2829
|
+
|
|
2830
|
+
[[package]]
|
|
2831
|
+
name = "pin-project-lite"
|
|
2832
|
+
version = "0.2.16"
|
|
2833
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2834
|
+
checksum = "3b3cff922bd51709b605d9ead9aa71031d81447142d828eb4a6eba76fe619f9b"
|
|
2835
|
+
|
|
2836
|
+
[[package]]
|
|
2837
|
+
name = "pin-utils"
|
|
2838
|
+
version = "0.1.0"
|
|
2839
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2840
|
+
checksum = "8b870d8c151b6f2fb93e84a13146138f05d02ed11c7e7c54f8826aaaf7c9f184"
|
|
2841
|
+
|
|
2532
2842
|
[[package]]
|
|
2533
2843
|
name = "pkcs1"
|
|
2534
2844
|
version = "0.7.5"
|
|
@@ -2552,15 +2862,24 @@ dependencies = [
|
|
|
2552
2862
|
|
|
2553
2863
|
[[package]]
|
|
2554
2864
|
name = "pkg-config"
|
|
2555
|
-
version = "0.3.
|
|
2865
|
+
version = "0.3.32"
|
|
2556
2866
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2557
|
-
checksum = "
|
|
2867
|
+
checksum = "7edddbd0b52d732b21ad9a5fab5c704c14cd949e5e9a1ec5929a24fded1b904c"
|
|
2558
2868
|
|
|
2559
2869
|
[[package]]
|
|
2560
2870
|
name = "portable-atomic"
|
|
2561
|
-
version = "1.
|
|
2871
|
+
version = "1.11.0"
|
|
2872
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2873
|
+
checksum = "350e9b48cbc6b0e028b0473b114454c6316e57336ee184ceab6e53f72c178b3e"
|
|
2874
|
+
|
|
2875
|
+
[[package]]
|
|
2876
|
+
name = "portable-atomic-util"
|
|
2877
|
+
version = "0.2.4"
|
|
2562
2878
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2563
|
-
checksum = "
|
|
2879
|
+
checksum = "d8a2f0d8d040d7848a709caf78912debcc3f33ee4b3cac47d73d1e1069e83507"
|
|
2880
|
+
dependencies = [
|
|
2881
|
+
"portable-atomic",
|
|
2882
|
+
]
|
|
2564
2883
|
|
|
2565
2884
|
[[package]]
|
|
2566
2885
|
name = "postcard"
|
|
@@ -2582,11 +2901,11 @@ checksum = "439ee305def115ba05938db6eb1644ff94165c5ab5e9420d1c1bcedbba909391"
|
|
|
2582
2901
|
|
|
2583
2902
|
[[package]]
|
|
2584
2903
|
name = "ppv-lite86"
|
|
2585
|
-
version = "0.2.
|
|
2904
|
+
version = "0.2.21"
|
|
2586
2905
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2587
|
-
checksum = "
|
|
2906
|
+
checksum = "85eae3c4ed2f50dcfe72643da4befc30deadb458a9b590d720cde2f2b1e97da9"
|
|
2588
2907
|
dependencies = [
|
|
2589
|
-
"zerocopy",
|
|
2908
|
+
"zerocopy 0.8.24",
|
|
2590
2909
|
]
|
|
2591
2910
|
|
|
2592
2911
|
[[package]]
|
|
@@ -2640,18 +2959,18 @@ dependencies = [
|
|
|
2640
2959
|
|
|
2641
2960
|
[[package]]
|
|
2642
2961
|
name = "proc-macro2"
|
|
2643
|
-
version = "1.0.
|
|
2962
|
+
version = "1.0.94"
|
|
2644
2963
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2645
|
-
checksum = "
|
|
2964
|
+
checksum = "a31971752e70b8b2686d7e46ec17fb38dad4051d94024c88df49b667caea9c84"
|
|
2646
2965
|
dependencies = [
|
|
2647
2966
|
"unicode-ident",
|
|
2648
2967
|
]
|
|
2649
2968
|
|
|
2650
2969
|
[[package]]
|
|
2651
2970
|
name = "protobuf"
|
|
2652
|
-
version = "3.7.
|
|
2971
|
+
version = "3.7.2"
|
|
2653
2972
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2654
|
-
checksum = "
|
|
2973
|
+
checksum = "d65a1d4ddae7d8b5de68153b48f6aa3bba8cb002b243dbdbc55a5afbc98f99f4"
|
|
2655
2974
|
dependencies = [
|
|
2656
2975
|
"once_cell",
|
|
2657
2976
|
"protobuf-support",
|
|
@@ -2660,9 +2979,9 @@ dependencies = [
|
|
|
2660
2979
|
|
|
2661
2980
|
[[package]]
|
|
2662
2981
|
name = "protobuf-codegen"
|
|
2663
|
-
version = "3.7.
|
|
2982
|
+
version = "3.7.2"
|
|
2664
2983
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2665
|
-
checksum = "
|
|
2984
|
+
checksum = "5d3976825c0014bbd2f3b34f0001876604fe87e0c86cd8fa54251530f1544ace"
|
|
2666
2985
|
dependencies = [
|
|
2667
2986
|
"anyhow",
|
|
2668
2987
|
"once_cell",
|
|
@@ -2675,9 +2994,9 @@ dependencies = [
|
|
|
2675
2994
|
|
|
2676
2995
|
[[package]]
|
|
2677
2996
|
name = "protobuf-json-mapping"
|
|
2678
|
-
version = "3.7.
|
|
2997
|
+
version = "3.7.2"
|
|
2679
2998
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2680
|
-
checksum = "
|
|
2999
|
+
checksum = "e0d6e4be637b310d8a5c02fa195243328e2d97fa7df1127a27281ef1187fcb1d"
|
|
2681
3000
|
dependencies = [
|
|
2682
3001
|
"protobuf",
|
|
2683
3002
|
"protobuf-support",
|
|
@@ -2686,12 +3005,12 @@ dependencies = [
|
|
|
2686
3005
|
|
|
2687
3006
|
[[package]]
|
|
2688
3007
|
name = "protobuf-parse"
|
|
2689
|
-
version = "3.7.
|
|
3008
|
+
version = "3.7.2"
|
|
2690
3009
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2691
|
-
checksum = "
|
|
3010
|
+
checksum = "b4aeaa1f2460f1d348eeaeed86aea999ce98c1bded6f089ff8514c9d9dbdc973"
|
|
2692
3011
|
dependencies = [
|
|
2693
3012
|
"anyhow",
|
|
2694
|
-
"indexmap 2.
|
|
3013
|
+
"indexmap 2.8.0",
|
|
2695
3014
|
"log",
|
|
2696
3015
|
"protobuf",
|
|
2697
3016
|
"protobuf-support",
|
|
@@ -2702,18 +3021,33 @@ dependencies = [
|
|
|
2702
3021
|
|
|
2703
3022
|
[[package]]
|
|
2704
3023
|
name = "protobuf-support"
|
|
2705
|
-
version = "3.7.
|
|
3024
|
+
version = "3.7.2"
|
|
2706
3025
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2707
|
-
checksum = "
|
|
3026
|
+
checksum = "3e36c2f31e0a47f9280fb347ef5e461ffcd2c52dd520d8e216b52f93b0b0d7d6"
|
|
2708
3027
|
dependencies = [
|
|
2709
3028
|
"thiserror 1.0.69",
|
|
2710
3029
|
]
|
|
2711
3030
|
|
|
3031
|
+
[[package]]
|
|
3032
|
+
name = "psl"
|
|
3033
|
+
version = "2.1.97"
|
|
3034
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3035
|
+
checksum = "512f3593cab3435fbdfdc3bde4355fb9e365b734e2ab8b86ece60a9f773ec9b1"
|
|
3036
|
+
dependencies = [
|
|
3037
|
+
"psl-types",
|
|
3038
|
+
]
|
|
3039
|
+
|
|
3040
|
+
[[package]]
|
|
3041
|
+
name = "psl-types"
|
|
3042
|
+
version = "2.0.11"
|
|
3043
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3044
|
+
checksum = "33cb294fe86a74cbcf50d4445b37da762029549ebeea341421c7c70370f86cac"
|
|
3045
|
+
|
|
2712
3046
|
[[package]]
|
|
2713
3047
|
name = "psm"
|
|
2714
|
-
version = "0.1.
|
|
3048
|
+
version = "0.1.25"
|
|
2715
3049
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2716
|
-
checksum = "
|
|
3050
|
+
checksum = "f58e5423e24c18cc840e1c98370b3993c6649cd1678b4d24318bcf0a083cbe88"
|
|
2717
3051
|
dependencies = [
|
|
2718
3052
|
"cc",
|
|
2719
3053
|
]
|
|
@@ -2724,28 +3058,33 @@ version = "0.9.6"
|
|
|
2724
3058
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2725
3059
|
checksum = "57206b407293d2bcd3af849ce869d52068623f19e1b5ff8e8778e3309439682b"
|
|
2726
3060
|
dependencies = [
|
|
2727
|
-
"bitflags 2.
|
|
3061
|
+
"bitflags 2.9.0",
|
|
2728
3062
|
"memchr",
|
|
2729
3063
|
"unicase",
|
|
2730
3064
|
]
|
|
2731
3065
|
|
|
2732
3066
|
[[package]]
|
|
2733
3067
|
name = "pulley-interpreter"
|
|
2734
|
-
version = "
|
|
3068
|
+
version = "30.0.2"
|
|
2735
3069
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2736
|
-
checksum = "
|
|
3070
|
+
checksum = "cb0ecb9823083f71df8735f21f6c44f2f2b55986d674802831df20f27e26c907"
|
|
2737
3071
|
dependencies = [
|
|
2738
3072
|
"cranelift-bitset",
|
|
2739
3073
|
"log",
|
|
2740
|
-
"sptr",
|
|
2741
3074
|
"wasmtime-math",
|
|
2742
3075
|
]
|
|
2743
3076
|
|
|
3077
|
+
[[package]]
|
|
3078
|
+
name = "punycode"
|
|
3079
|
+
version = "0.4.1"
|
|
3080
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3081
|
+
checksum = "e9e1dcb320d6839f6edb64f7a4a59d39b30480d4d1765b56873f7c858538a5fe"
|
|
3082
|
+
|
|
2744
3083
|
[[package]]
|
|
2745
3084
|
name = "pyo3"
|
|
2746
|
-
version = "0.23.
|
|
3085
|
+
version = "0.23.5"
|
|
2747
3086
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2748
|
-
checksum = "
|
|
3087
|
+
checksum = "7778bffd85cf38175ac1f545509665d0b9b92a198ca7941f131f85f7a4f9a872"
|
|
2749
3088
|
dependencies = [
|
|
2750
3089
|
"cfg-if",
|
|
2751
3090
|
"indoc",
|
|
@@ -2761,9 +3100,9 @@ dependencies = [
|
|
|
2761
3100
|
|
|
2762
3101
|
[[package]]
|
|
2763
3102
|
name = "pyo3-build-config"
|
|
2764
|
-
version = "0.23.
|
|
3103
|
+
version = "0.23.5"
|
|
2765
3104
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2766
|
-
checksum = "
|
|
3105
|
+
checksum = "94f6cbe86ef3bf18998d9df6e0f3fc1050a8c5efa409bf712e661a4366e010fb"
|
|
2767
3106
|
dependencies = [
|
|
2768
3107
|
"once_cell",
|
|
2769
3108
|
"target-lexicon 0.12.16",
|
|
@@ -2771,9 +3110,9 @@ dependencies = [
|
|
|
2771
3110
|
|
|
2772
3111
|
[[package]]
|
|
2773
3112
|
name = "pyo3-ffi"
|
|
2774
|
-
version = "0.23.
|
|
3113
|
+
version = "0.23.5"
|
|
2775
3114
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2776
|
-
checksum = "
|
|
3115
|
+
checksum = "e9f1b4c431c0bb1c8fb0a338709859eed0d030ff6daa34368d3b152a63dfdd8d"
|
|
2777
3116
|
dependencies = [
|
|
2778
3117
|
"libc",
|
|
2779
3118
|
"pyo3-build-config",
|
|
@@ -2791,27 +3130,27 @@ dependencies = [
|
|
|
2791
3130
|
|
|
2792
3131
|
[[package]]
|
|
2793
3132
|
name = "pyo3-macros"
|
|
2794
|
-
version = "0.23.
|
|
3133
|
+
version = "0.23.5"
|
|
2795
3134
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2796
|
-
checksum = "
|
|
3135
|
+
checksum = "fbc2201328f63c4710f68abdf653c89d8dbc2858b88c5d88b0ff38a75288a9da"
|
|
2797
3136
|
dependencies = [
|
|
2798
3137
|
"proc-macro2",
|
|
2799
3138
|
"pyo3-macros-backend",
|
|
2800
3139
|
"quote",
|
|
2801
|
-
"syn 2.0.
|
|
3140
|
+
"syn 2.0.100",
|
|
2802
3141
|
]
|
|
2803
3142
|
|
|
2804
3143
|
[[package]]
|
|
2805
3144
|
name = "pyo3-macros-backend"
|
|
2806
|
-
version = "0.23.
|
|
3145
|
+
version = "0.23.5"
|
|
2807
3146
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2808
|
-
checksum = "
|
|
3147
|
+
checksum = "fca6726ad0f3da9c9de093d6f116a93c1a38e417ed73bf138472cf4064f72028"
|
|
2809
3148
|
dependencies = [
|
|
2810
3149
|
"heck 0.5.0",
|
|
2811
3150
|
"proc-macro2",
|
|
2812
3151
|
"pyo3-build-config",
|
|
2813
3152
|
"quote",
|
|
2814
|
-
"syn 2.0.
|
|
3153
|
+
"syn 2.0.100",
|
|
2815
3154
|
]
|
|
2816
3155
|
|
|
2817
3156
|
[[package]]
|
|
@@ -2824,20 +3163,26 @@ dependencies = [
|
|
|
2824
3163
|
"libc",
|
|
2825
3164
|
"once_cell",
|
|
2826
3165
|
"raw-cpuid",
|
|
2827
|
-
"wasi",
|
|
3166
|
+
"wasi 0.11.0+wasi-snapshot-preview1",
|
|
2828
3167
|
"web-sys",
|
|
2829
3168
|
"winapi",
|
|
2830
3169
|
]
|
|
2831
3170
|
|
|
2832
3171
|
[[package]]
|
|
2833
3172
|
name = "quote"
|
|
2834
|
-
version = "1.0.
|
|
3173
|
+
version = "1.0.40"
|
|
2835
3174
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2836
|
-
checksum = "
|
|
3175
|
+
checksum = "1885c039570dc00dcb4ff087a89e185fd56bae234ddc7f056a945bf36467248d"
|
|
2837
3176
|
dependencies = [
|
|
2838
3177
|
"proc-macro2",
|
|
2839
3178
|
]
|
|
2840
3179
|
|
|
3180
|
+
[[package]]
|
|
3181
|
+
name = "r-efi"
|
|
3182
|
+
version = "5.2.0"
|
|
3183
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3184
|
+
checksum = "74765f6d916ee2faa39bc8e68e4f3ed8949b48cccdac59983d287a7cb71ce9c5"
|
|
3185
|
+
|
|
2841
3186
|
[[package]]
|
|
2842
3187
|
name = "radium"
|
|
2843
3188
|
version = "0.7.0"
|
|
@@ -2850,7 +3195,6 @@ version = "0.8.5"
|
|
|
2850
3195
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2851
3196
|
checksum = "34af8d1a0e25924bc5b7c43c079c942339d8f0a8b57c39049bef581b46327404"
|
|
2852
3197
|
dependencies = [
|
|
2853
|
-
"libc",
|
|
2854
3198
|
"rand_chacha",
|
|
2855
3199
|
"rand_core",
|
|
2856
3200
|
]
|
|
@@ -2871,16 +3215,16 @@ version = "0.6.4"
|
|
|
2871
3215
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2872
3216
|
checksum = "ec0be4795e2f6a28069bec0b5ff3e2ac9bafc99e6a9a7dc3547996c5c816922c"
|
|
2873
3217
|
dependencies = [
|
|
2874
|
-
"getrandom",
|
|
3218
|
+
"getrandom 0.2.15",
|
|
2875
3219
|
]
|
|
2876
3220
|
|
|
2877
3221
|
[[package]]
|
|
2878
3222
|
name = "raw-cpuid"
|
|
2879
|
-
version = "11.
|
|
3223
|
+
version = "11.5.0"
|
|
2880
3224
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2881
|
-
checksum = "
|
|
3225
|
+
checksum = "c6df7ab838ed27997ba19a4664507e6f82b41fe6e20be42929332156e5e85146"
|
|
2882
3226
|
dependencies = [
|
|
2883
|
-
"bitflags 2.
|
|
3227
|
+
"bitflags 2.9.0",
|
|
2884
3228
|
]
|
|
2885
3229
|
|
|
2886
3230
|
[[package]]
|
|
@@ -2905,11 +3249,11 @@ dependencies = [
|
|
|
2905
3249
|
|
|
2906
3250
|
[[package]]
|
|
2907
3251
|
name = "redox_syscall"
|
|
2908
|
-
version = "0.5.
|
|
3252
|
+
version = "0.5.10"
|
|
2909
3253
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2910
|
-
checksum = "
|
|
3254
|
+
checksum = "0b8c0c260b63a8219631167be35e6a988e9554dbd323f8bd08439c8ed1302bd1"
|
|
2911
3255
|
dependencies = [
|
|
2912
|
-
"bitflags 2.
|
|
3256
|
+
"bitflags 2.9.0",
|
|
2913
3257
|
]
|
|
2914
3258
|
|
|
2915
3259
|
[[package]]
|
|
@@ -2918,7 +3262,7 @@ version = "0.4.6"
|
|
|
2918
3262
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2919
3263
|
checksum = "ba009ff324d1fc1b900bd1fdb31564febe58a8ccc8a6fdbb93b543d33b13ca43"
|
|
2920
3264
|
dependencies = [
|
|
2921
|
-
"getrandom",
|
|
3265
|
+
"getrandom 0.2.15",
|
|
2922
3266
|
"libredox",
|
|
2923
3267
|
"thiserror 1.0.69",
|
|
2924
3268
|
]
|
|
@@ -2933,7 +3277,7 @@ dependencies = [
|
|
|
2933
3277
|
"bumpalo",
|
|
2934
3278
|
"hashbrown 0.15.2",
|
|
2935
3279
|
"log",
|
|
2936
|
-
"rustc-hash 2.1.
|
|
3280
|
+
"rustc-hash 2.1.1",
|
|
2937
3281
|
"smallvec",
|
|
2938
3282
|
]
|
|
2939
3283
|
|
|
@@ -2946,7 +3290,7 @@ dependencies = [
|
|
|
2946
3290
|
"aho-corasick",
|
|
2947
3291
|
"memchr",
|
|
2948
3292
|
"regex-automata",
|
|
2949
|
-
"regex-syntax
|
|
3293
|
+
"regex-syntax",
|
|
2950
3294
|
]
|
|
2951
3295
|
|
|
2952
3296
|
[[package]]
|
|
@@ -2957,15 +3301,9 @@ checksum = "809e8dc61f6de73b46c85f4c96486310fe304c434cfa43669d7b40f711150908"
|
|
|
2957
3301
|
dependencies = [
|
|
2958
3302
|
"aho-corasick",
|
|
2959
3303
|
"memchr",
|
|
2960
|
-
"regex-syntax
|
|
3304
|
+
"regex-syntax",
|
|
2961
3305
|
]
|
|
2962
3306
|
|
|
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
3307
|
[[package]]
|
|
2970
3308
|
name = "regex-syntax"
|
|
2971
3309
|
version = "0.8.5"
|
|
@@ -2984,15 +3322,14 @@ dependencies = [
|
|
|
2984
3322
|
|
|
2985
3323
|
[[package]]
|
|
2986
3324
|
name = "ring"
|
|
2987
|
-
version = "0.17.
|
|
3325
|
+
version = "0.17.14"
|
|
2988
3326
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2989
|
-
checksum = "
|
|
3327
|
+
checksum = "a4689e6c2294d81e88dc6261c768b63bc4fcdb852be6d1352498b114f61383b7"
|
|
2990
3328
|
dependencies = [
|
|
2991
3329
|
"cc",
|
|
2992
3330
|
"cfg-if",
|
|
2993
|
-
"getrandom",
|
|
3331
|
+
"getrandom 0.2.15",
|
|
2994
3332
|
"libc",
|
|
2995
|
-
"spin",
|
|
2996
3333
|
"untrusted",
|
|
2997
3334
|
"windows-sys 0.52.0",
|
|
2998
3335
|
]
|
|
@@ -3017,9 +3354,9 @@ checksum = "6c20b6793b5c2fa6553b250154b78d6d0db37e72700ae35fad9387a46f487c97"
|
|
|
3017
3354
|
|
|
3018
3355
|
[[package]]
|
|
3019
3356
|
name = "rsa"
|
|
3020
|
-
version = "0.9.
|
|
3357
|
+
version = "0.9.8"
|
|
3021
3358
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3022
|
-
checksum = "
|
|
3359
|
+
checksum = "78928ac1ed176a5ca1d17e578a1825f3d81ca54cf41053a592584b020cfd691b"
|
|
3023
3360
|
dependencies = [
|
|
3024
3361
|
"const-oid",
|
|
3025
3362
|
"digest 0.10.7",
|
|
@@ -3035,6 +3372,12 @@ dependencies = [
|
|
|
3035
3372
|
"zeroize",
|
|
3036
3373
|
]
|
|
3037
3374
|
|
|
3375
|
+
[[package]]
|
|
3376
|
+
name = "rustc-demangle"
|
|
3377
|
+
version = "0.1.24"
|
|
3378
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3379
|
+
checksum = "719b953e2095829ee67db738b3bfa9fa368c94900df327b3f07fe6e794d2fe1f"
|
|
3380
|
+
|
|
3038
3381
|
[[package]]
|
|
3039
3382
|
name = "rustc-hash"
|
|
3040
3383
|
version = "1.1.0"
|
|
@@ -3043,9 +3386,9 @@ checksum = "08d43f7aa6b08d49f382cde6a7982047c3426db949b1424bc4b7ec9ae12c6ce2"
|
|
|
3043
3386
|
|
|
3044
3387
|
[[package]]
|
|
3045
3388
|
name = "rustc-hash"
|
|
3046
|
-
version = "2.1.
|
|
3389
|
+
version = "2.1.1"
|
|
3047
3390
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3048
|
-
checksum = "
|
|
3391
|
+
checksum = "357703d41365b4b27c590e3ed91eabb1b663f07c4c084095e60cbed4362dff0d"
|
|
3049
3392
|
|
|
3050
3393
|
[[package]]
|
|
3051
3394
|
name = "rustc_version"
|
|
@@ -3053,7 +3396,7 @@ version = "0.4.1"
|
|
|
3053
3396
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3054
3397
|
checksum = "cfcb3a22ef46e85b45de6ee7e79d063319ebb6594faafcf1c225ea92ab6e9b92"
|
|
3055
3398
|
dependencies = [
|
|
3056
|
-
"semver 1.0.
|
|
3399
|
+
"semver 1.0.26",
|
|
3057
3400
|
]
|
|
3058
3401
|
|
|
3059
3402
|
[[package]]
|
|
@@ -3067,28 +3410,41 @@ dependencies = [
|
|
|
3067
3410
|
|
|
3068
3411
|
[[package]]
|
|
3069
3412
|
name = "rustix"
|
|
3070
|
-
version = "0.38.
|
|
3413
|
+
version = "0.38.44"
|
|
3071
3414
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3072
|
-
checksum = "
|
|
3415
|
+
checksum = "fdb5bc1ae2baa591800df16c9ca78619bf65c0488b41b96ccec5d11220d8c154"
|
|
3073
3416
|
dependencies = [
|
|
3074
|
-
"bitflags 2.
|
|
3417
|
+
"bitflags 2.9.0",
|
|
3075
3418
|
"errno",
|
|
3076
3419
|
"libc",
|
|
3077
|
-
"linux-raw-sys",
|
|
3420
|
+
"linux-raw-sys 0.4.15",
|
|
3421
|
+
"windows-sys 0.59.0",
|
|
3422
|
+
]
|
|
3423
|
+
|
|
3424
|
+
[[package]]
|
|
3425
|
+
name = "rustix"
|
|
3426
|
+
version = "1.0.3"
|
|
3427
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3428
|
+
checksum = "e56a18552996ac8d29ecc3b190b4fdbb2d91ca4ec396de7bbffaf43f3d637e96"
|
|
3429
|
+
dependencies = [
|
|
3430
|
+
"bitflags 2.9.0",
|
|
3431
|
+
"errno",
|
|
3432
|
+
"libc",
|
|
3433
|
+
"linux-raw-sys 0.9.3",
|
|
3078
3434
|
"windows-sys 0.59.0",
|
|
3079
3435
|
]
|
|
3080
3436
|
|
|
3081
3437
|
[[package]]
|
|
3082
3438
|
name = "rustversion"
|
|
3083
|
-
version = "1.0.
|
|
3439
|
+
version = "1.0.20"
|
|
3084
3440
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3085
|
-
checksum = "
|
|
3441
|
+
checksum = "eded382c5f5f786b989652c49544c4877d9f015cc22e145a5ea8ea66c2921cd2"
|
|
3086
3442
|
|
|
3087
3443
|
[[package]]
|
|
3088
3444
|
name = "ryu"
|
|
3089
|
-
version = "1.0.
|
|
3445
|
+
version = "1.0.20"
|
|
3090
3446
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3091
|
-
checksum = "
|
|
3447
|
+
checksum = "28d3b2b1366ec20994f1fd18c3c594f05c5dd4bc44d8bb0c1c632c8d6829481f"
|
|
3092
3448
|
|
|
3093
3449
|
[[package]]
|
|
3094
3450
|
name = "same-file"
|
|
@@ -3130,9 +3486,9 @@ dependencies = [
|
|
|
3130
3486
|
|
|
3131
3487
|
[[package]]
|
|
3132
3488
|
name = "semver"
|
|
3133
|
-
version = "1.0.
|
|
3489
|
+
version = "1.0.26"
|
|
3134
3490
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3135
|
-
checksum = "
|
|
3491
|
+
checksum = "56e6fa9c48d24d85fb3de5ad847117517440f6beceb7798af16b4a87d616b8d0"
|
|
3136
3492
|
dependencies = [
|
|
3137
3493
|
"serde",
|
|
3138
3494
|
]
|
|
@@ -3148,9 +3504,9 @@ dependencies = [
|
|
|
3148
3504
|
|
|
3149
3505
|
[[package]]
|
|
3150
3506
|
name = "serde"
|
|
3151
|
-
version = "1.0.
|
|
3507
|
+
version = "1.0.219"
|
|
3152
3508
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3153
|
-
checksum = "
|
|
3509
|
+
checksum = "5f0e2c6ed6606019b4e29e69dbaba95b11854410e5347d525002456dbbb786b6"
|
|
3154
3510
|
dependencies = [
|
|
3155
3511
|
"serde_derive",
|
|
3156
3512
|
]
|
|
@@ -3168,22 +3524,22 @@ dependencies = [
|
|
|
3168
3524
|
|
|
3169
3525
|
[[package]]
|
|
3170
3526
|
name = "serde_derive"
|
|
3171
|
-
version = "1.0.
|
|
3527
|
+
version = "1.0.219"
|
|
3172
3528
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3173
|
-
checksum = "
|
|
3529
|
+
checksum = "5b0276cf7f2c73365f7157c8123c21cd9a50fbbd844757af28ca1f5925fc2a00"
|
|
3174
3530
|
dependencies = [
|
|
3175
3531
|
"proc-macro2",
|
|
3176
3532
|
"quote",
|
|
3177
|
-
"syn 2.0.
|
|
3533
|
+
"syn 2.0.100",
|
|
3178
3534
|
]
|
|
3179
3535
|
|
|
3180
3536
|
[[package]]
|
|
3181
3537
|
name = "serde_json"
|
|
3182
|
-
version = "1.0.
|
|
3538
|
+
version = "1.0.140"
|
|
3183
3539
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3184
|
-
checksum = "
|
|
3540
|
+
checksum = "20068b6e96dc6c9bd23e01df8827e6c7e1f2fddd43c21810382803c136b99373"
|
|
3185
3541
|
dependencies = [
|
|
3186
|
-
"indexmap 2.
|
|
3542
|
+
"indexmap 2.8.0",
|
|
3187
3543
|
"itoa",
|
|
3188
3544
|
"memchr",
|
|
3189
3545
|
"ryu",
|
|
@@ -3299,9 +3655,9 @@ checksum = "d66dc143e6b11c1eddc06d5c423cfc97062865baf299914ab64caa38182078fe"
|
|
|
3299
3655
|
|
|
3300
3656
|
[[package]]
|
|
3301
3657
|
name = "similar"
|
|
3302
|
-
version = "2.
|
|
3658
|
+
version = "2.7.0"
|
|
3303
3659
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3304
|
-
checksum = "
|
|
3660
|
+
checksum = "bbbb5d9659141646ae647b42fe094daf6c6192d1620870b449d9557f748b2daa"
|
|
3305
3661
|
dependencies = [
|
|
3306
3662
|
"bstr",
|
|
3307
3663
|
"unicode-segmentation",
|
|
@@ -3309,9 +3665,9 @@ dependencies = [
|
|
|
3309
3665
|
|
|
3310
3666
|
[[package]]
|
|
3311
3667
|
name = "similar-asserts"
|
|
3312
|
-
version = "1.
|
|
3668
|
+
version = "1.7.0"
|
|
3313
3669
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3314
|
-
checksum = "
|
|
3670
|
+
checksum = "b5b441962c817e33508847a22bd82f03a30cff43642dc2fae8b050566121eb9a"
|
|
3315
3671
|
dependencies = [
|
|
3316
3672
|
"console",
|
|
3317
3673
|
"similar",
|
|
@@ -3344,15 +3700,34 @@ dependencies = [
|
|
|
3344
3700
|
"walkdir",
|
|
3345
3701
|
]
|
|
3346
3702
|
|
|
3703
|
+
[[package]]
|
|
3704
|
+
name = "slab"
|
|
3705
|
+
version = "0.4.9"
|
|
3706
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3707
|
+
checksum = "8f92a496fb766b417c996b9c5e57daf2f7ad3b0bebe1ccfca4856390e3d3bb67"
|
|
3708
|
+
dependencies = [
|
|
3709
|
+
"autocfg",
|
|
3710
|
+
]
|
|
3711
|
+
|
|
3347
3712
|
[[package]]
|
|
3348
3713
|
name = "smallvec"
|
|
3349
|
-
version = "1.
|
|
3714
|
+
version = "1.14.0"
|
|
3350
3715
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3351
|
-
checksum = "
|
|
3716
|
+
checksum = "7fcf8323ef1faaee30a44a340193b1ac6814fd9b7b4e88e9d4519a3e4abe1cfd"
|
|
3352
3717
|
dependencies = [
|
|
3353
3718
|
"serde",
|
|
3354
3719
|
]
|
|
3355
3720
|
|
|
3721
|
+
[[package]]
|
|
3722
|
+
name = "socket2"
|
|
3723
|
+
version = "0.5.8"
|
|
3724
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3725
|
+
checksum = "c970269d99b64e60ec3bd6ad27270092a5394c4e309314b18ae3fe575695fbe8"
|
|
3726
|
+
dependencies = [
|
|
3727
|
+
"libc",
|
|
3728
|
+
"windows-sys 0.52.0",
|
|
3729
|
+
]
|
|
3730
|
+
|
|
3356
3731
|
[[package]]
|
|
3357
3732
|
name = "spin"
|
|
3358
3733
|
version = "0.9.8"
|
|
@@ -3399,65 +3774,23 @@ version = "0.11.1"
|
|
|
3399
3774
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3400
3775
|
checksum = "7da8b5736845d9f2fcb837ea5d9e2628564b3b043a70948a3f0b778838c5fb4f"
|
|
3401
3776
|
|
|
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
3777
|
[[package]]
|
|
3432
3778
|
name = "strum"
|
|
3433
|
-
version = "0.
|
|
3434
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3435
|
-
checksum = "8fec0f0aef304996cf250b31b5a10dee7980c85da9d759361292b8bca5a18f06"
|
|
3436
|
-
|
|
3437
|
-
[[package]]
|
|
3438
|
-
name = "strum_macros"
|
|
3439
|
-
version = "0.25.3"
|
|
3779
|
+
version = "0.27.1"
|
|
3440
3780
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3441
|
-
checksum = "
|
|
3442
|
-
dependencies = [
|
|
3443
|
-
"heck 0.4.1",
|
|
3444
|
-
"proc-macro2",
|
|
3445
|
-
"quote",
|
|
3446
|
-
"rustversion",
|
|
3447
|
-
"syn 2.0.96",
|
|
3448
|
-
]
|
|
3781
|
+
checksum = "f64def088c51c9510a8579e3c5d67c65349dcf755e5479ad3d010aa6454e2c32"
|
|
3449
3782
|
|
|
3450
3783
|
[[package]]
|
|
3451
3784
|
name = "strum_macros"
|
|
3452
|
-
version = "0.
|
|
3785
|
+
version = "0.27.1"
|
|
3453
3786
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3454
|
-
checksum = "
|
|
3787
|
+
checksum = "c77a8c5abcaf0f9ce05d62342b7d298c346515365c36b673df4ebe3ced01fde8"
|
|
3455
3788
|
dependencies = [
|
|
3456
3789
|
"heck 0.5.0",
|
|
3457
3790
|
"proc-macro2",
|
|
3458
3791
|
"quote",
|
|
3459
3792
|
"rustversion",
|
|
3460
|
-
"syn 2.0.
|
|
3793
|
+
"syn 2.0.100",
|
|
3461
3794
|
]
|
|
3462
3795
|
|
|
3463
3796
|
[[package]]
|
|
@@ -3495,9 +3828,9 @@ dependencies = [
|
|
|
3495
3828
|
|
|
3496
3829
|
[[package]]
|
|
3497
3830
|
name = "syn"
|
|
3498
|
-
version = "2.0.
|
|
3831
|
+
version = "2.0.100"
|
|
3499
3832
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3500
|
-
checksum = "
|
|
3833
|
+
checksum = "b09a44accad81e1ba1cd74a32461ba89dee89095ba17b32f5d03683b1b1fc2a0"
|
|
3501
3834
|
dependencies = [
|
|
3502
3835
|
"proc-macro2",
|
|
3503
3836
|
"quote",
|
|
@@ -3512,7 +3845,7 @@ checksum = "c8af7666ab7b6390ab78131fb5b0fce11d6b7a6951602017c35fa82800708971"
|
|
|
3512
3845
|
dependencies = [
|
|
3513
3846
|
"proc-macro2",
|
|
3514
3847
|
"quote",
|
|
3515
|
-
"syn 2.0.
|
|
3848
|
+
"syn 2.0.100",
|
|
3516
3849
|
]
|
|
3517
3850
|
|
|
3518
3851
|
[[package]]
|
|
@@ -3529,21 +3862,20 @@ checksum = "61c41af27dd6d1e27b1b16b489db798443478cef1f06a660c96db617ba5de3b1"
|
|
|
3529
3862
|
|
|
3530
3863
|
[[package]]
|
|
3531
3864
|
name = "target-lexicon"
|
|
3532
|
-
version = "0.13.
|
|
3865
|
+
version = "0.13.2"
|
|
3533
3866
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3534
|
-
checksum = "
|
|
3867
|
+
checksum = "e502f78cdbb8ba4718f566c418c52bc729126ffd16baee5baa718cf25dd5a69a"
|
|
3535
3868
|
|
|
3536
3869
|
[[package]]
|
|
3537
3870
|
name = "tempfile"
|
|
3538
|
-
version = "3.
|
|
3871
|
+
version = "3.19.1"
|
|
3539
3872
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3540
|
-
checksum = "
|
|
3873
|
+
checksum = "7437ac7763b9b123ccf33c338a5cc1bac6f69b45a136c19bdd8a65e3916435bf"
|
|
3541
3874
|
dependencies = [
|
|
3542
|
-
"cfg-if",
|
|
3543
3875
|
"fastrand",
|
|
3544
|
-
"getrandom",
|
|
3876
|
+
"getrandom 0.3.2",
|
|
3545
3877
|
"once_cell",
|
|
3546
|
-
"rustix",
|
|
3878
|
+
"rustix 1.0.3",
|
|
3547
3879
|
"windows-sys 0.59.0",
|
|
3548
3880
|
]
|
|
3549
3881
|
|
|
@@ -3643,11 +3975,11 @@ dependencies = [
|
|
|
3643
3975
|
|
|
3644
3976
|
[[package]]
|
|
3645
3977
|
name = "thiserror"
|
|
3646
|
-
version = "2.0.
|
|
3978
|
+
version = "2.0.12"
|
|
3647
3979
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3648
|
-
checksum = "
|
|
3980
|
+
checksum = "567b8a2dae586314f7be2a752ec7474332959c6460e02bde30d702a66d488708"
|
|
3649
3981
|
dependencies = [
|
|
3650
|
-
"thiserror-impl 2.0.
|
|
3982
|
+
"thiserror-impl 2.0.12",
|
|
3651
3983
|
]
|
|
3652
3984
|
|
|
3653
3985
|
[[package]]
|
|
@@ -3658,25 +3990,25 @@ checksum = "4fee6c4efc90059e10f81e6d42c60a18f76588c3d74cb83a0b242a2b6c7504c1"
|
|
|
3658
3990
|
dependencies = [
|
|
3659
3991
|
"proc-macro2",
|
|
3660
3992
|
"quote",
|
|
3661
|
-
"syn 2.0.
|
|
3993
|
+
"syn 2.0.100",
|
|
3662
3994
|
]
|
|
3663
3995
|
|
|
3664
3996
|
[[package]]
|
|
3665
3997
|
name = "thiserror-impl"
|
|
3666
|
-
version = "2.0.
|
|
3998
|
+
version = "2.0.12"
|
|
3667
3999
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3668
|
-
checksum = "
|
|
4000
|
+
checksum = "7f7cf42b4507d8ea322120659672cf1b9dbb93f8f2d4ecfd6e51350ff5b17a1d"
|
|
3669
4001
|
dependencies = [
|
|
3670
4002
|
"proc-macro2",
|
|
3671
4003
|
"quote",
|
|
3672
|
-
"syn 2.0.
|
|
4004
|
+
"syn 2.0.100",
|
|
3673
4005
|
]
|
|
3674
4006
|
|
|
3675
4007
|
[[package]]
|
|
3676
4008
|
name = "time"
|
|
3677
|
-
version = "0.3.
|
|
4009
|
+
version = "0.3.41"
|
|
3678
4010
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3679
|
-
checksum = "
|
|
4011
|
+
checksum = "8a7619e19bc266e0f9c5e6686659d394bc57973859340060a69221e57dbc0c40"
|
|
3680
4012
|
dependencies = [
|
|
3681
4013
|
"deranged",
|
|
3682
4014
|
"itoa",
|
|
@@ -3689,15 +4021,15 @@ dependencies = [
|
|
|
3689
4021
|
|
|
3690
4022
|
[[package]]
|
|
3691
4023
|
name = "time-core"
|
|
3692
|
-
version = "0.1.
|
|
4024
|
+
version = "0.1.4"
|
|
3693
4025
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3694
|
-
checksum = "
|
|
4026
|
+
checksum = "c9e9a38711f559d9e3ce1cdb06dd7c5b8ea546bc90052da6d06bb76da74bb07c"
|
|
3695
4027
|
|
|
3696
4028
|
[[package]]
|
|
3697
4029
|
name = "time-macros"
|
|
3698
|
-
version = "0.2.
|
|
4030
|
+
version = "0.2.22"
|
|
3699
4031
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3700
|
-
checksum = "
|
|
4032
|
+
checksum = "3526739392ec93fd8b359c8e98514cb3e8e021beb4e5f597b00a0221f8ed8a49"
|
|
3701
4033
|
dependencies = [
|
|
3702
4034
|
"num-conv",
|
|
3703
4035
|
"time-core",
|
|
@@ -3718,11 +4050,53 @@ version = "0.1.1"
|
|
|
3718
4050
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3719
4051
|
checksum = "f762ca8308eda1e38512dc88a99f021e5214699ba133de157f588c8bfd0745c7"
|
|
3720
4052
|
|
|
4053
|
+
[[package]]
|
|
4054
|
+
name = "tokio"
|
|
4055
|
+
version = "1.44.1"
|
|
4056
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4057
|
+
checksum = "f382da615b842244d4b8738c82ed1275e6c5dd90c459a30941cd07080b06c91a"
|
|
4058
|
+
dependencies = [
|
|
4059
|
+
"backtrace",
|
|
4060
|
+
"bytes",
|
|
4061
|
+
"libc",
|
|
4062
|
+
"mio 1.0.3",
|
|
4063
|
+
"parking_lot",
|
|
4064
|
+
"pin-project-lite",
|
|
4065
|
+
"signal-hook-registry",
|
|
4066
|
+
"socket2",
|
|
4067
|
+
"tokio-macros",
|
|
4068
|
+
"windows-sys 0.52.0",
|
|
4069
|
+
]
|
|
4070
|
+
|
|
4071
|
+
[[package]]
|
|
4072
|
+
name = "tokio-macros"
|
|
4073
|
+
version = "2.5.0"
|
|
4074
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4075
|
+
checksum = "6e06d43f1345a3bcd39f6a56dbb7dcab2ba47e68e8ac134855e7e2bdbaf8cab8"
|
|
4076
|
+
dependencies = [
|
|
4077
|
+
"proc-macro2",
|
|
4078
|
+
"quote",
|
|
4079
|
+
"syn 2.0.100",
|
|
4080
|
+
]
|
|
4081
|
+
|
|
4082
|
+
[[package]]
|
|
4083
|
+
name = "tokio-util"
|
|
4084
|
+
version = "0.7.14"
|
|
4085
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4086
|
+
checksum = "6b9590b93e6fcc1739458317cccd391ad3955e2bde8913edf6f95f9e65a8f034"
|
|
4087
|
+
dependencies = [
|
|
4088
|
+
"bytes",
|
|
4089
|
+
"futures-core",
|
|
4090
|
+
"futures-sink",
|
|
4091
|
+
"pin-project-lite",
|
|
4092
|
+
"tokio",
|
|
4093
|
+
]
|
|
4094
|
+
|
|
3721
4095
|
[[package]]
|
|
3722
4096
|
name = "toml"
|
|
3723
|
-
version = "0.8.
|
|
4097
|
+
version = "0.8.20"
|
|
3724
4098
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3725
|
-
checksum = "
|
|
4099
|
+
checksum = "cd87a5cdd6ffab733b2f74bc4fd7ee5fff6634124999ac278c35fc78c6120148"
|
|
3726
4100
|
dependencies = [
|
|
3727
4101
|
"serde",
|
|
3728
4102
|
"serde_spanned",
|
|
@@ -3741,22 +4115,73 @@ dependencies = [
|
|
|
3741
4115
|
|
|
3742
4116
|
[[package]]
|
|
3743
4117
|
name = "toml_edit"
|
|
3744
|
-
version = "0.22.
|
|
4118
|
+
version = "0.22.24"
|
|
3745
4119
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3746
|
-
checksum = "
|
|
4120
|
+
checksum = "17b4795ff5edd201c7cd6dca065ae59972ce77d1b80fa0a84d94950ece7d1474"
|
|
3747
4121
|
dependencies = [
|
|
3748
|
-
"indexmap 2.
|
|
4122
|
+
"indexmap 2.8.0",
|
|
3749
4123
|
"serde",
|
|
3750
4124
|
"serde_spanned",
|
|
3751
4125
|
"toml_datetime",
|
|
3752
4126
|
"winnow",
|
|
3753
4127
|
]
|
|
3754
4128
|
|
|
4129
|
+
[[package]]
|
|
4130
|
+
name = "tower-service"
|
|
4131
|
+
version = "0.3.3"
|
|
4132
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4133
|
+
checksum = "8df9b6e13f2d32c91b9bd719c00d1958837bc7dec474d94952798cc8e69eeec3"
|
|
4134
|
+
|
|
4135
|
+
[[package]]
|
|
4136
|
+
name = "tracing"
|
|
4137
|
+
version = "0.1.41"
|
|
4138
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4139
|
+
checksum = "784e0ac535deb450455cbfa28a6f0df145ea1bb7ae51b821cf5e7927fdcfbdd0"
|
|
4140
|
+
dependencies = [
|
|
4141
|
+
"pin-project-lite",
|
|
4142
|
+
"tracing-core",
|
|
4143
|
+
]
|
|
4144
|
+
|
|
4145
|
+
[[package]]
|
|
4146
|
+
name = "tracing-core"
|
|
4147
|
+
version = "0.1.33"
|
|
4148
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4149
|
+
checksum = "e672c95779cf947c5311f83787af4fa8fffd12fb27e4993211a84bdfd9610f9c"
|
|
4150
|
+
dependencies = [
|
|
4151
|
+
"once_cell",
|
|
4152
|
+
]
|
|
4153
|
+
|
|
4154
|
+
[[package]]
|
|
4155
|
+
name = "try-lock"
|
|
4156
|
+
version = "0.2.5"
|
|
4157
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4158
|
+
checksum = "e421abadd41a4225275504ea4d6566923418b7f05506fbc9c0fe86ba7396114b"
|
|
4159
|
+
|
|
4160
|
+
[[package]]
|
|
4161
|
+
name = "twistrs"
|
|
4162
|
+
version = "0.7.5"
|
|
4163
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4164
|
+
checksum = "c4a5116a32888423d5781b900aeedc504d78c334e0f6dd8eaaed279cf6703c55"
|
|
4165
|
+
dependencies = [
|
|
4166
|
+
"addr",
|
|
4167
|
+
"anyhow",
|
|
4168
|
+
"async-smtp",
|
|
4169
|
+
"futures",
|
|
4170
|
+
"hyper",
|
|
4171
|
+
"itertools 0.11.0",
|
|
4172
|
+
"lazy_static",
|
|
4173
|
+
"phf 0.11.3",
|
|
4174
|
+
"punycode",
|
|
4175
|
+
"serde",
|
|
4176
|
+
"thiserror 1.0.69",
|
|
4177
|
+
"tokio",
|
|
4178
|
+
]
|
|
4179
|
+
|
|
3755
4180
|
[[package]]
|
|
3756
4181
|
name = "typenum"
|
|
3757
|
-
version = "1.
|
|
4182
|
+
version = "1.18.0"
|
|
3758
4183
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3759
|
-
checksum = "
|
|
4184
|
+
checksum = "1dccffe3ce07af9386bfd29e80c0ab1a8205a2fc34e4bcd40364df902cfa8f3f"
|
|
3760
4185
|
|
|
3761
4186
|
[[package]]
|
|
3762
4187
|
name = "ucd-trie"
|
|
@@ -3781,9 +4206,9 @@ checksum = "75b844d17643ee918803943289730bec8aac480150456169e647ed0b576ba539"
|
|
|
3781
4206
|
|
|
3782
4207
|
[[package]]
|
|
3783
4208
|
name = "unicode-ident"
|
|
3784
|
-
version = "1.0.
|
|
4209
|
+
version = "1.0.18"
|
|
3785
4210
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3786
|
-
checksum = "
|
|
4211
|
+
checksum = "5a5f39404a5da50712a4c1eecf25e90dd62b613502b7e925fd4e4d19b5c96512"
|
|
3787
4212
|
|
|
3788
4213
|
[[package]]
|
|
3789
4214
|
name = "unicode-segmentation"
|
|
@@ -3797,17 +4222,11 @@ version = "0.2.0"
|
|
|
3797
4222
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3798
4223
|
checksum = "1fc81956842c57dac11422a97c3b8195a1ff727f06e85c84ed2e8aa277c9a0fd"
|
|
3799
4224
|
|
|
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
4225
|
[[package]]
|
|
3807
4226
|
name = "unindent"
|
|
3808
|
-
version = "0.2.
|
|
4227
|
+
version = "0.2.4"
|
|
3809
4228
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3810
|
-
checksum = "
|
|
4229
|
+
checksum = "7264e107f553ccae879d21fbea1d6724ac785e8c3bfc762137959b5802826ef3"
|
|
3811
4230
|
|
|
3812
4231
|
[[package]]
|
|
3813
4232
|
name = "untrusted"
|
|
@@ -3823,11 +4242,11 @@ checksum = "06abde3611657adf66d383f00b093d7faecc7fa57071cce2578660c9f1010821"
|
|
|
3823
4242
|
|
|
3824
4243
|
[[package]]
|
|
3825
4244
|
name = "uuid"
|
|
3826
|
-
version = "1.
|
|
4245
|
+
version = "1.16.0"
|
|
3827
4246
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3828
|
-
checksum = "
|
|
4247
|
+
checksum = "458f7a779bf54acc9f347480ac654f68407d3aab21269a6e3c9f922acd9e2da9"
|
|
3829
4248
|
dependencies = [
|
|
3830
|
-
"getrandom",
|
|
4249
|
+
"getrandom 0.3.2",
|
|
3831
4250
|
]
|
|
3832
4251
|
|
|
3833
4252
|
[[package]]
|
|
@@ -3853,9 +4272,9 @@ dependencies = [
|
|
|
3853
4272
|
|
|
3854
4273
|
[[package]]
|
|
3855
4274
|
name = "wait-timeout"
|
|
3856
|
-
version = "0.2.
|
|
4275
|
+
version = "0.2.1"
|
|
3857
4276
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3858
|
-
checksum = "
|
|
4277
|
+
checksum = "09ac3b126d3914f9849036f826e054cbabdc8519970b8998ddaf3b5bd3c65f11"
|
|
3859
4278
|
dependencies = [
|
|
3860
4279
|
"libc",
|
|
3861
4280
|
]
|
|
@@ -3895,7 +4314,16 @@ dependencies = [
|
|
|
3895
4314
|
"heck 0.5.0",
|
|
3896
4315
|
"proc-macro2",
|
|
3897
4316
|
"quote",
|
|
3898
|
-
"syn 2.0.
|
|
4317
|
+
"syn 2.0.100",
|
|
4318
|
+
]
|
|
4319
|
+
|
|
4320
|
+
[[package]]
|
|
4321
|
+
name = "want"
|
|
4322
|
+
version = "0.3.1"
|
|
4323
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4324
|
+
checksum = "bfa7760aed19e106de2c7c0b581b509f2f25d3dacaf737cb82ac61bc6d760b0e"
|
|
4325
|
+
dependencies = [
|
|
4326
|
+
"try-lock",
|
|
3899
4327
|
]
|
|
3900
4328
|
|
|
3901
4329
|
[[package]]
|
|
@@ -3904,6 +4332,15 @@ version = "0.11.0+wasi-snapshot-preview1"
|
|
|
3904
4332
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3905
4333
|
checksum = "9c8d87e72b64a3b4db28d11ce29237c246188f4f51057d65a7eab63b7987e423"
|
|
3906
4334
|
|
|
4335
|
+
[[package]]
|
|
4336
|
+
name = "wasi"
|
|
4337
|
+
version = "0.14.2+wasi-0.2.4"
|
|
4338
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4339
|
+
checksum = "9683f9a5a998d873c0d21fcbe3c083009670149a8fab228644b8bd36b2c48cb3"
|
|
4340
|
+
dependencies = [
|
|
4341
|
+
"wit-bindgen-rt",
|
|
4342
|
+
]
|
|
4343
|
+
|
|
3907
4344
|
[[package]]
|
|
3908
4345
|
name = "wasm-bindgen"
|
|
3909
4346
|
version = "0.2.100"
|
|
@@ -3926,7 +4363,7 @@ dependencies = [
|
|
|
3926
4363
|
"log",
|
|
3927
4364
|
"proc-macro2",
|
|
3928
4365
|
"quote",
|
|
3929
|
-
"syn 2.0.
|
|
4366
|
+
"syn 2.0.100",
|
|
3930
4367
|
"wasm-bindgen-shared",
|
|
3931
4368
|
]
|
|
3932
4369
|
|
|
@@ -3948,7 +4385,7 @@ checksum = "8ae87ea40c9f689fc23f209965b6fb8a99ad69aeeb0231408be24920604395de"
|
|
|
3948
4385
|
dependencies = [
|
|
3949
4386
|
"proc-macro2",
|
|
3950
4387
|
"quote",
|
|
3951
|
-
"syn 2.0.
|
|
4388
|
+
"syn 2.0.100",
|
|
3952
4389
|
"wasm-bindgen-backend",
|
|
3953
4390
|
"wasm-bindgen-shared",
|
|
3954
4391
|
]
|
|
@@ -3973,12 +4410,12 @@ dependencies = [
|
|
|
3973
4410
|
|
|
3974
4411
|
[[package]]
|
|
3975
4412
|
name = "wasm-encoder"
|
|
3976
|
-
version = "0.
|
|
4413
|
+
version = "0.224.1"
|
|
3977
4414
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3978
|
-
checksum = "
|
|
4415
|
+
checksum = "1ab7a13a23790fe91ea4eb7526a1f3131001d874e3e00c2976c48861f2e82920"
|
|
3979
4416
|
dependencies = [
|
|
3980
4417
|
"leb128",
|
|
3981
|
-
"wasmparser 0.
|
|
4418
|
+
"wasmparser 0.224.1",
|
|
3982
4419
|
]
|
|
3983
4420
|
|
|
3984
4421
|
[[package]]
|
|
@@ -3988,50 +4425,51 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
3988
4425
|
checksum = "5309c1090e3e84dad0d382f42064e9933fdaedb87e468cc239f0eabea73ddcb6"
|
|
3989
4426
|
dependencies = [
|
|
3990
4427
|
"ahash",
|
|
3991
|
-
"bitflags 2.
|
|
4428
|
+
"bitflags 2.9.0",
|
|
3992
4429
|
"hashbrown 0.14.5",
|
|
3993
|
-
"indexmap 2.
|
|
3994
|
-
"semver 1.0.
|
|
4430
|
+
"indexmap 2.8.0",
|
|
4431
|
+
"semver 1.0.26",
|
|
3995
4432
|
"serde",
|
|
3996
4433
|
]
|
|
3997
4434
|
|
|
3998
4435
|
[[package]]
|
|
3999
4436
|
name = "wasmparser"
|
|
4000
|
-
version = "0.
|
|
4437
|
+
version = "0.224.1"
|
|
4001
4438
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4002
|
-
checksum = "
|
|
4439
|
+
checksum = "04f17a5917c2ddd3819e84c661fae0d6ba29d7b9c1f0e96c708c65a9c4188e11"
|
|
4003
4440
|
dependencies = [
|
|
4004
|
-
"bitflags 2.
|
|
4441
|
+
"bitflags 2.9.0",
|
|
4005
4442
|
"hashbrown 0.15.2",
|
|
4006
|
-
"indexmap 2.
|
|
4007
|
-
"semver 1.0.
|
|
4443
|
+
"indexmap 2.8.0",
|
|
4444
|
+
"semver 1.0.26",
|
|
4008
4445
|
"serde",
|
|
4009
4446
|
]
|
|
4010
4447
|
|
|
4011
4448
|
[[package]]
|
|
4012
4449
|
name = "wasmprinter"
|
|
4013
|
-
version = "0.
|
|
4450
|
+
version = "0.224.1"
|
|
4014
4451
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4015
|
-
checksum = "
|
|
4452
|
+
checksum = "0095b53a3b09cbc2f90f789ea44aa1b17ecc2dad8b267e657c7391f3ded6293d"
|
|
4016
4453
|
dependencies = [
|
|
4017
4454
|
"anyhow",
|
|
4018
4455
|
"termcolor",
|
|
4019
|
-
"wasmparser 0.
|
|
4456
|
+
"wasmparser 0.224.1",
|
|
4020
4457
|
]
|
|
4021
4458
|
|
|
4022
4459
|
[[package]]
|
|
4023
4460
|
name = "wasmtime"
|
|
4024
|
-
version = "
|
|
4461
|
+
version = "30.0.2"
|
|
4025
4462
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4026
|
-
checksum = "
|
|
4463
|
+
checksum = "809cc8780708f1deed0a7c3fcab46954f0e8c08a6fe0252772481fbc88fcf946"
|
|
4027
4464
|
dependencies = [
|
|
4465
|
+
"addr2line",
|
|
4028
4466
|
"anyhow",
|
|
4029
|
-
"bitflags 2.
|
|
4467
|
+
"bitflags 2.9.0",
|
|
4030
4468
|
"bumpalo",
|
|
4031
4469
|
"cc",
|
|
4032
4470
|
"cfg-if",
|
|
4033
|
-
"hashbrown 0.
|
|
4034
|
-
"indexmap 2.
|
|
4471
|
+
"hashbrown 0.15.2",
|
|
4472
|
+
"indexmap 2.8.0",
|
|
4035
4473
|
"libc",
|
|
4036
4474
|
"log",
|
|
4037
4475
|
"mach2",
|
|
@@ -4043,15 +4481,14 @@ dependencies = [
|
|
|
4043
4481
|
"psm",
|
|
4044
4482
|
"pulley-interpreter",
|
|
4045
4483
|
"rayon",
|
|
4046
|
-
"rustix",
|
|
4484
|
+
"rustix 0.38.44",
|
|
4047
4485
|
"serde",
|
|
4048
4486
|
"serde_derive",
|
|
4049
4487
|
"smallvec",
|
|
4050
4488
|
"sptr",
|
|
4051
|
-
"target-lexicon 0.13.
|
|
4052
|
-
"wasmparser 0.
|
|
4489
|
+
"target-lexicon 0.13.2",
|
|
4490
|
+
"wasmparser 0.224.1",
|
|
4053
4491
|
"wasmtime-asm-macros",
|
|
4054
|
-
"wasmtime-component-macro",
|
|
4055
4492
|
"wasmtime-cranelift",
|
|
4056
4493
|
"wasmtime-environ",
|
|
4057
4494
|
"wasmtime-fiber",
|
|
@@ -4064,39 +4501,18 @@ dependencies = [
|
|
|
4064
4501
|
|
|
4065
4502
|
[[package]]
|
|
4066
4503
|
name = "wasmtime-asm-macros"
|
|
4067
|
-
version = "
|
|
4504
|
+
version = "30.0.2"
|
|
4068
4505
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4069
|
-
checksum = "
|
|
4506
|
+
checksum = "236964b6b35af0f08879c9c56dbfbc5adc12e8d624672341a0121df31adaa3fa"
|
|
4070
4507
|
dependencies = [
|
|
4071
4508
|
"cfg-if",
|
|
4072
4509
|
]
|
|
4073
4510
|
|
|
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
4511
|
[[package]]
|
|
4096
4512
|
name = "wasmtime-cranelift"
|
|
4097
|
-
version = "
|
|
4513
|
+
version = "30.0.2"
|
|
4098
4514
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4099
|
-
checksum = "
|
|
4515
|
+
checksum = "abcc9179097235c91f299a8ff56b358ee921266b61adff7d14d6e48428954dd2"
|
|
4100
4516
|
dependencies = [
|
|
4101
4517
|
"anyhow",
|
|
4102
4518
|
"cfg-if",
|
|
@@ -4109,47 +4525,48 @@ dependencies = [
|
|
|
4109
4525
|
"itertools 0.12.1",
|
|
4110
4526
|
"log",
|
|
4111
4527
|
"object",
|
|
4528
|
+
"pulley-interpreter",
|
|
4112
4529
|
"smallvec",
|
|
4113
|
-
"target-lexicon 0.13.
|
|
4530
|
+
"target-lexicon 0.13.2",
|
|
4114
4531
|
"thiserror 1.0.69",
|
|
4115
|
-
"wasmparser 0.
|
|
4532
|
+
"wasmparser 0.224.1",
|
|
4116
4533
|
"wasmtime-environ",
|
|
4117
4534
|
"wasmtime-versioned-export-macros",
|
|
4118
4535
|
]
|
|
4119
4536
|
|
|
4120
4537
|
[[package]]
|
|
4121
4538
|
name = "wasmtime-environ"
|
|
4122
|
-
version = "
|
|
4539
|
+
version = "30.0.2"
|
|
4123
4540
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4124
|
-
checksum = "
|
|
4541
|
+
checksum = "8e90f6cba665939381839bbf2ddf12d732fca03278867910348ef1281b700954"
|
|
4125
4542
|
dependencies = [
|
|
4126
4543
|
"anyhow",
|
|
4127
4544
|
"cranelift-bitset",
|
|
4128
4545
|
"cranelift-entity",
|
|
4129
4546
|
"gimli 0.31.1",
|
|
4130
|
-
"indexmap 2.
|
|
4547
|
+
"indexmap 2.8.0",
|
|
4131
4548
|
"log",
|
|
4132
4549
|
"object",
|
|
4133
4550
|
"postcard",
|
|
4134
4551
|
"serde",
|
|
4135
4552
|
"serde_derive",
|
|
4136
4553
|
"smallvec",
|
|
4137
|
-
"target-lexicon 0.13.
|
|
4138
|
-
"wasm-encoder 0.
|
|
4139
|
-
"wasmparser 0.
|
|
4554
|
+
"target-lexicon 0.13.2",
|
|
4555
|
+
"wasm-encoder 0.224.1",
|
|
4556
|
+
"wasmparser 0.224.1",
|
|
4140
4557
|
"wasmprinter",
|
|
4141
4558
|
]
|
|
4142
4559
|
|
|
4143
4560
|
[[package]]
|
|
4144
4561
|
name = "wasmtime-fiber"
|
|
4145
|
-
version = "
|
|
4562
|
+
version = "30.0.2"
|
|
4146
4563
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4147
|
-
checksum = "
|
|
4564
|
+
checksum = "ba5c2ac21f0b39d72d2dac198218a12b3ddeb4ab388a8fa0d2e429855876783c"
|
|
4148
4565
|
dependencies = [
|
|
4149
4566
|
"anyhow",
|
|
4150
4567
|
"cc",
|
|
4151
4568
|
"cfg-if",
|
|
4152
|
-
"rustix",
|
|
4569
|
+
"rustix 0.38.44",
|
|
4153
4570
|
"wasmtime-asm-macros",
|
|
4154
4571
|
"wasmtime-versioned-export-macros",
|
|
4155
4572
|
"windows-sys 0.59.0",
|
|
@@ -4157,9 +4574,9 @@ dependencies = [
|
|
|
4157
4574
|
|
|
4158
4575
|
[[package]]
|
|
4159
4576
|
name = "wasmtime-jit-icache-coherence"
|
|
4160
|
-
version = "
|
|
4577
|
+
version = "30.0.2"
|
|
4161
4578
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4162
|
-
checksum = "
|
|
4579
|
+
checksum = "3f180cc0d2745e3a5df5d02231cd3046f49c75512eaa987b8202363b112e125d"
|
|
4163
4580
|
dependencies = [
|
|
4164
4581
|
"anyhow",
|
|
4165
4582
|
"cfg-if",
|
|
@@ -4169,40 +4586,28 @@ dependencies = [
|
|
|
4169
4586
|
|
|
4170
4587
|
[[package]]
|
|
4171
4588
|
name = "wasmtime-math"
|
|
4172
|
-
version = "
|
|
4589
|
+
version = "30.0.2"
|
|
4173
4590
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4174
|
-
checksum = "
|
|
4591
|
+
checksum = "f5f04c5dcf5b2f88f81cfb8d390294b2f67109dc4d0197ea7303c60a092df27c"
|
|
4175
4592
|
dependencies = [
|
|
4176
4593
|
"libm",
|
|
4177
4594
|
]
|
|
4178
4595
|
|
|
4179
4596
|
[[package]]
|
|
4180
4597
|
name = "wasmtime-slab"
|
|
4181
|
-
version = "
|
|
4598
|
+
version = "30.0.2"
|
|
4182
4599
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4183
|
-
checksum = "
|
|
4600
|
+
checksum = "fe9681707f1ae9a4708ca22058722fca5c135775c495ba9b9624fe3732b94c97"
|
|
4184
4601
|
|
|
4185
4602
|
[[package]]
|
|
4186
4603
|
name = "wasmtime-versioned-export-macros"
|
|
4187
|
-
version = "
|
|
4604
|
+
version = "30.0.2"
|
|
4188
4605
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4189
|
-
checksum = "
|
|
4606
|
+
checksum = "dd2fe69d04986a12fc759d2e79494100d600adcb3bb79e63dedfc8e6bb2ab03e"
|
|
4190
4607
|
dependencies = [
|
|
4191
4608
|
"proc-macro2",
|
|
4192
4609
|
"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",
|
|
4610
|
+
"syn 2.0.100",
|
|
4206
4611
|
]
|
|
4207
4612
|
|
|
4208
4613
|
[[package]]
|
|
@@ -4222,7 +4627,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
4222
4627
|
checksum = "0c0a6e355560527dd2d1cf7890652f4f09bb3433b6aadade4c9b5ed76de5f3ec"
|
|
4223
4628
|
dependencies = [
|
|
4224
4629
|
"log",
|
|
4225
|
-
"wezterm-dynamic 0.2.
|
|
4630
|
+
"wezterm-dynamic 0.2.1",
|
|
4226
4631
|
]
|
|
4227
4632
|
|
|
4228
4633
|
[[package]]
|
|
@@ -4252,22 +4657,22 @@ dependencies = [
|
|
|
4252
4657
|
|
|
4253
4658
|
[[package]]
|
|
4254
4659
|
name = "wezterm-dynamic"
|
|
4255
|
-
version = "0.2.
|
|
4660
|
+
version = "0.2.1"
|
|
4256
4661
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4257
|
-
checksum = "
|
|
4662
|
+
checksum = "5f2ab60e120fd6eaa68d9567f3226e876684639d22a4219b313ff69ec0ccd5ac"
|
|
4258
4663
|
dependencies = [
|
|
4259
4664
|
"log",
|
|
4260
4665
|
"ordered-float 4.6.0",
|
|
4261
|
-
"strsim 0.
|
|
4666
|
+
"strsim 0.11.1",
|
|
4262
4667
|
"thiserror 1.0.69",
|
|
4263
4668
|
"wezterm-dynamic-derive",
|
|
4264
4669
|
]
|
|
4265
4670
|
|
|
4266
4671
|
[[package]]
|
|
4267
4672
|
name = "wezterm-dynamic-derive"
|
|
4268
|
-
version = "0.1.
|
|
4673
|
+
version = "0.1.1"
|
|
4269
4674
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4270
|
-
checksum = "
|
|
4675
|
+
checksum = "46c0cf2d539c645b448eaffec9ec494b8b19bd5077d9e58cb1ae7efece8d575b"
|
|
4271
4676
|
dependencies = [
|
|
4272
4677
|
"proc-macro2",
|
|
4273
4678
|
"quote",
|
|
@@ -4283,7 +4688,7 @@ dependencies = [
|
|
|
4283
4688
|
"either",
|
|
4284
4689
|
"home",
|
|
4285
4690
|
"once_cell",
|
|
4286
|
-
"rustix",
|
|
4691
|
+
"rustix 0.38.44",
|
|
4287
4692
|
]
|
|
4288
4693
|
|
|
4289
4694
|
[[package]]
|
|
@@ -4335,6 +4740,12 @@ dependencies = [
|
|
|
4335
4740
|
"windows-targets 0.52.6",
|
|
4336
4741
|
]
|
|
4337
4742
|
|
|
4743
|
+
[[package]]
|
|
4744
|
+
name = "windows-link"
|
|
4745
|
+
version = "0.1.1"
|
|
4746
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4747
|
+
checksum = "76840935b766e1b0a05c0066835fb9ec80071d4c09a16f6bd5f7e655e3c14c38"
|
|
4748
|
+
|
|
4338
4749
|
[[package]]
|
|
4339
4750
|
name = "windows-sys"
|
|
4340
4751
|
version = "0.42.0"
|
|
@@ -4542,29 +4953,20 @@ checksum = "589f6da84c646204747d1270a2a5661ea66ed1cced2631d546fdfb155959f9ec"
|
|
|
4542
4953
|
|
|
4543
4954
|
[[package]]
|
|
4544
4955
|
name = "winnow"
|
|
4545
|
-
version = "0.
|
|
4956
|
+
version = "0.7.4"
|
|
4546
4957
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4547
|
-
checksum = "
|
|
4958
|
+
checksum = "0e97b544156e9bebe1a0ffbc03484fc1ffe3100cbce3ffb17eac35f7cdd7ab36"
|
|
4548
4959
|
dependencies = [
|
|
4549
4960
|
"memchr",
|
|
4550
4961
|
]
|
|
4551
4962
|
|
|
4552
4963
|
[[package]]
|
|
4553
|
-
name = "wit-
|
|
4554
|
-
version = "0.
|
|
4964
|
+
name = "wit-bindgen-rt"
|
|
4965
|
+
version = "0.39.0"
|
|
4555
4966
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4556
|
-
checksum = "
|
|
4967
|
+
checksum = "6f42320e61fe2cfd34354ecb597f86f413484a798ba44a8ca1165c58d42da6c1"
|
|
4557
4968
|
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",
|
|
4969
|
+
"bitflags 2.9.0",
|
|
4568
4970
|
]
|
|
4569
4971
|
|
|
4570
4972
|
[[package]]
|
|
@@ -4590,10 +4992,19 @@ dependencies = [
|
|
|
4590
4992
|
"oid-registry",
|
|
4591
4993
|
"ring",
|
|
4592
4994
|
"rusticata-macros",
|
|
4593
|
-
"thiserror 2.0.
|
|
4995
|
+
"thiserror 2.0.12",
|
|
4594
4996
|
"time",
|
|
4595
4997
|
]
|
|
4596
4998
|
|
|
4999
|
+
[[package]]
|
|
5000
|
+
name = "xz2"
|
|
5001
|
+
version = "0.1.7"
|
|
5002
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
5003
|
+
checksum = "388c44dc09d76f1536602ead6d325eb532f5c122f17782bd57fb47baeeb767e2"
|
|
5004
|
+
dependencies = [
|
|
5005
|
+
"lzma-sys",
|
|
5006
|
+
]
|
|
5007
|
+
|
|
4597
5008
|
[[package]]
|
|
4598
5009
|
name = "yansi"
|
|
4599
5010
|
version = "1.0.1"
|
|
@@ -4602,7 +5013,7 @@ checksum = "cfe53a6657fd280eaa890a3bc59152892ffa3e30101319d168b781ed6529b049"
|
|
|
4602
5013
|
|
|
4603
5014
|
[[package]]
|
|
4604
5015
|
name = "yara-x"
|
|
4605
|
-
version = "0.
|
|
5016
|
+
version = "0.14.0"
|
|
4606
5017
|
dependencies = [
|
|
4607
5018
|
"aho-corasick",
|
|
4608
5019
|
"annotate-snippets",
|
|
@@ -4611,7 +5022,7 @@ dependencies = [
|
|
|
4611
5022
|
"ascii_tree",
|
|
4612
5023
|
"base64 0.22.1",
|
|
4613
5024
|
"bincode",
|
|
4614
|
-
"bitflags 2.
|
|
5025
|
+
"bitflags 2.9.0",
|
|
4615
5026
|
"bitvec",
|
|
4616
5027
|
"bstr",
|
|
4617
5028
|
"const-oid",
|
|
@@ -4620,12 +5031,12 @@ dependencies = [
|
|
|
4620
5031
|
"digest 0.10.7",
|
|
4621
5032
|
"dsa",
|
|
4622
5033
|
"ecdsa",
|
|
4623
|
-
"fmmap",
|
|
4624
5034
|
"globwalk",
|
|
4625
5035
|
"goldenfile",
|
|
4626
5036
|
"ihex",
|
|
4627
|
-
"indexmap 2.
|
|
5037
|
+
"indexmap 2.8.0",
|
|
4628
5038
|
"intaglio",
|
|
5039
|
+
"ipnet",
|
|
4629
5040
|
"itertools 0.14.0",
|
|
4630
5041
|
"lazy_static",
|
|
4631
5042
|
"lingua",
|
|
@@ -4635,8 +5046,9 @@ dependencies = [
|
|
|
4635
5046
|
"md-5",
|
|
4636
5047
|
"md2",
|
|
4637
5048
|
"memchr",
|
|
5049
|
+
"memmap2",
|
|
4638
5050
|
"memx",
|
|
4639
|
-
"nom
|
|
5051
|
+
"nom 8.0.0",
|
|
4640
5052
|
"num-derive 0.4.2",
|
|
4641
5053
|
"num-traits",
|
|
4642
5054
|
"p256",
|
|
@@ -4649,18 +5061,19 @@ dependencies = [
|
|
|
4649
5061
|
"rayon",
|
|
4650
5062
|
"regex",
|
|
4651
5063
|
"regex-automata",
|
|
4652
|
-
"regex-syntax
|
|
5064
|
+
"regex-syntax",
|
|
4653
5065
|
"roxmltree",
|
|
4654
5066
|
"rsa",
|
|
4655
|
-
"rustc-hash 2.1.
|
|
5067
|
+
"rustc-hash 2.1.1",
|
|
4656
5068
|
"serde",
|
|
4657
5069
|
"serde_json",
|
|
4658
5070
|
"sha1",
|
|
4659
5071
|
"sha2 0.10.8",
|
|
4660
5072
|
"smallvec",
|
|
4661
|
-
"strum_macros
|
|
4662
|
-
"thiserror 2.0.
|
|
5073
|
+
"strum_macros",
|
|
5074
|
+
"thiserror 2.0.12",
|
|
4663
5075
|
"tlsh-fixed",
|
|
5076
|
+
"twistrs",
|
|
4664
5077
|
"uuid",
|
|
4665
5078
|
"walrus",
|
|
4666
5079
|
"wasmtime",
|
|
@@ -4675,7 +5088,7 @@ dependencies = [
|
|
|
4675
5088
|
|
|
4676
5089
|
[[package]]
|
|
4677
5090
|
name = "yara-x-capi"
|
|
4678
|
-
version = "0.
|
|
5091
|
+
version = "0.14.0"
|
|
4679
5092
|
dependencies = [
|
|
4680
5093
|
"cbindgen",
|
|
4681
5094
|
"serde_json",
|
|
@@ -4684,7 +5097,7 @@ dependencies = [
|
|
|
4684
5097
|
|
|
4685
5098
|
[[package]]
|
|
4686
5099
|
name = "yara-x-cli"
|
|
4687
|
-
version = "0.
|
|
5100
|
+
version = "0.14.0"
|
|
4688
5101
|
dependencies = [
|
|
4689
5102
|
"anyhow",
|
|
4690
5103
|
"ascii_tree",
|
|
@@ -4709,8 +5122,8 @@ dependencies = [
|
|
|
4709
5122
|
"protobuf-json-mapping",
|
|
4710
5123
|
"serde",
|
|
4711
5124
|
"serde_json",
|
|
4712
|
-
"strum
|
|
4713
|
-
"strum_macros
|
|
5125
|
+
"strum",
|
|
5126
|
+
"strum_macros",
|
|
4714
5127
|
"superconsole",
|
|
4715
5128
|
"wild",
|
|
4716
5129
|
"yansi",
|
|
@@ -4722,41 +5135,41 @@ dependencies = [
|
|
|
4722
5135
|
|
|
4723
5136
|
[[package]]
|
|
4724
5137
|
name = "yara-x-fmt"
|
|
4725
|
-
version = "0.
|
|
5138
|
+
version = "0.14.0"
|
|
4726
5139
|
dependencies = [
|
|
4727
|
-
"bitflags 2.
|
|
5140
|
+
"bitflags 2.9.0",
|
|
4728
5141
|
"bstr",
|
|
4729
5142
|
"globwalk",
|
|
4730
5143
|
"goldenfile",
|
|
4731
5144
|
"lazy_static",
|
|
4732
5145
|
"pretty_assertions",
|
|
4733
5146
|
"rayon",
|
|
4734
|
-
"thiserror 2.0.
|
|
5147
|
+
"thiserror 2.0.12",
|
|
4735
5148
|
"yara-x-parser",
|
|
4736
5149
|
]
|
|
4737
5150
|
|
|
4738
5151
|
[[package]]
|
|
4739
5152
|
name = "yara-x-macros"
|
|
4740
|
-
version = "0.
|
|
5153
|
+
version = "0.14.0"
|
|
4741
5154
|
dependencies = [
|
|
4742
5155
|
"darling",
|
|
4743
5156
|
"proc-macro2",
|
|
4744
5157
|
"quote",
|
|
4745
|
-
"syn 2.0.
|
|
5158
|
+
"syn 2.0.100",
|
|
4746
5159
|
]
|
|
4747
5160
|
|
|
4748
5161
|
[[package]]
|
|
4749
5162
|
name = "yara-x-parser"
|
|
4750
|
-
version = "0.
|
|
5163
|
+
version = "0.14.0"
|
|
4751
5164
|
dependencies = [
|
|
4752
5165
|
"anyhow",
|
|
4753
5166
|
"ascii_tree",
|
|
4754
|
-
"bitflags 2.
|
|
5167
|
+
"bitflags 2.9.0",
|
|
4755
5168
|
"bstr",
|
|
4756
5169
|
"env_logger",
|
|
4757
5170
|
"globwalk",
|
|
4758
5171
|
"goldenfile",
|
|
4759
|
-
"indexmap 2.
|
|
5172
|
+
"indexmap 2.8.0",
|
|
4760
5173
|
"itertools 0.14.0",
|
|
4761
5174
|
"log",
|
|
4762
5175
|
"logos",
|
|
@@ -4764,14 +5177,14 @@ dependencies = [
|
|
|
4764
5177
|
"pretty_assertions",
|
|
4765
5178
|
"rayon",
|
|
4766
5179
|
"rowan",
|
|
4767
|
-
"rustc-hash 2.1.
|
|
5180
|
+
"rustc-hash 2.1.1",
|
|
4768
5181
|
"serde",
|
|
4769
5182
|
"yansi",
|
|
4770
5183
|
]
|
|
4771
5184
|
|
|
4772
5185
|
[[package]]
|
|
4773
5186
|
name = "yara-x-proto"
|
|
4774
|
-
version = "0.
|
|
5187
|
+
version = "0.14.0"
|
|
4775
5188
|
dependencies = [
|
|
4776
5189
|
"protobuf",
|
|
4777
5190
|
"protobuf-codegen",
|
|
@@ -4780,7 +5193,7 @@ dependencies = [
|
|
|
4780
5193
|
|
|
4781
5194
|
[[package]]
|
|
4782
5195
|
name = "yara-x-proto-yaml"
|
|
4783
|
-
version = "0.
|
|
5196
|
+
version = "0.14.0"
|
|
4784
5197
|
dependencies = [
|
|
4785
5198
|
"chrono",
|
|
4786
5199
|
"globwalk",
|
|
@@ -4795,7 +5208,7 @@ dependencies = [
|
|
|
4795
5208
|
|
|
4796
5209
|
[[package]]
|
|
4797
5210
|
name = "yara-x-py"
|
|
4798
|
-
version = "0.
|
|
5211
|
+
version = "0.14.0"
|
|
4799
5212
|
dependencies = [
|
|
4800
5213
|
"protobuf-json-mapping",
|
|
4801
5214
|
"pyo3",
|
|
@@ -4812,8 +5225,16 @@ version = "0.7.35"
|
|
|
4812
5225
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4813
5226
|
checksum = "1b9b4fd18abc82b8136838da5d50bae7bdea537c574d8dc1a34ed098d6c166f0"
|
|
4814
5227
|
dependencies = [
|
|
4815
|
-
"
|
|
4816
|
-
|
|
5228
|
+
"zerocopy-derive 0.7.35",
|
|
5229
|
+
]
|
|
5230
|
+
|
|
5231
|
+
[[package]]
|
|
5232
|
+
name = "zerocopy"
|
|
5233
|
+
version = "0.8.24"
|
|
5234
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
5235
|
+
checksum = "2586fea28e186957ef732a5f8b3be2da217d65c5969d4b1e17f973ebbe876879"
|
|
5236
|
+
dependencies = [
|
|
5237
|
+
"zerocopy-derive 0.8.24",
|
|
4817
5238
|
]
|
|
4818
5239
|
|
|
4819
5240
|
[[package]]
|
|
@@ -4824,7 +5245,18 @@ checksum = "fa4f8080344d4671fb4e831a13ad1e68092748387dfc4f55e356242fae12ce3e"
|
|
|
4824
5245
|
dependencies = [
|
|
4825
5246
|
"proc-macro2",
|
|
4826
5247
|
"quote",
|
|
4827
|
-
"syn 2.0.
|
|
5248
|
+
"syn 2.0.100",
|
|
5249
|
+
]
|
|
5250
|
+
|
|
5251
|
+
[[package]]
|
|
5252
|
+
name = "zerocopy-derive"
|
|
5253
|
+
version = "0.8.24"
|
|
5254
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
5255
|
+
checksum = "a996a8f63c5c4448cd959ac1bab0aaa3306ccfd060472f85943ee0750f0169be"
|
|
5256
|
+
dependencies = [
|
|
5257
|
+
"proc-macro2",
|
|
5258
|
+
"quote",
|
|
5259
|
+
"syn 2.0.100",
|
|
4828
5260
|
]
|
|
4829
5261
|
|
|
4830
5262
|
[[package]]
|
|
@@ -4844,14 +5276,14 @@ checksum = "ce36e65b0d2999d2aafac989fb249189a141aee1f53c612c1f37d72631959f69"
|
|
|
4844
5276
|
dependencies = [
|
|
4845
5277
|
"proc-macro2",
|
|
4846
5278
|
"quote",
|
|
4847
|
-
"syn 2.0.
|
|
5279
|
+
"syn 2.0.100",
|
|
4848
5280
|
]
|
|
4849
5281
|
|
|
4850
5282
|
[[package]]
|
|
4851
5283
|
name = "zip"
|
|
4852
|
-
version = "2.
|
|
5284
|
+
version = "2.5.0"
|
|
4853
5285
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4854
|
-
checksum = "
|
|
5286
|
+
checksum = "27c03817464f64e23f6f37574b4fdc8cf65925b5bfd2b0f2aedf959791941f88"
|
|
4855
5287
|
dependencies = [
|
|
4856
5288
|
"aes",
|
|
4857
5289
|
"arbitrary",
|
|
@@ -4860,17 +5292,16 @@ dependencies = [
|
|
|
4860
5292
|
"crc32fast",
|
|
4861
5293
|
"crossbeam-utils",
|
|
4862
5294
|
"deflate64",
|
|
4863
|
-
"displaydoc",
|
|
4864
5295
|
"flate2",
|
|
5296
|
+
"getrandom 0.3.2",
|
|
4865
5297
|
"hmac",
|
|
4866
|
-
"indexmap 2.
|
|
5298
|
+
"indexmap 2.8.0",
|
|
4867
5299
|
"lzma-rs",
|
|
4868
5300
|
"memchr",
|
|
4869
5301
|
"pbkdf2",
|
|
4870
|
-
"rand",
|
|
4871
5302
|
"sha1",
|
|
4872
|
-
"thiserror 2.0.11",
|
|
4873
5303
|
"time",
|
|
5304
|
+
"xz2",
|
|
4874
5305
|
"zeroize",
|
|
4875
5306
|
"zopfli",
|
|
4876
5307
|
"zstd",
|
|
@@ -4892,27 +5323,27 @@ dependencies = [
|
|
|
4892
5323
|
|
|
4893
5324
|
[[package]]
|
|
4894
5325
|
name = "zstd"
|
|
4895
|
-
version = "0.13.
|
|
5326
|
+
version = "0.13.3"
|
|
4896
5327
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4897
|
-
checksum = "
|
|
5328
|
+
checksum = "e91ee311a569c327171651566e07972200e76fcfe2242a4fa446149a3881c08a"
|
|
4898
5329
|
dependencies = [
|
|
4899
5330
|
"zstd-safe",
|
|
4900
5331
|
]
|
|
4901
5332
|
|
|
4902
5333
|
[[package]]
|
|
4903
5334
|
name = "zstd-safe"
|
|
4904
|
-
version = "7.2.
|
|
5335
|
+
version = "7.2.4"
|
|
4905
5336
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4906
|
-
checksum = "
|
|
5337
|
+
checksum = "8f49c4d5f0abb602a93fb8736af2a4f4dd9512e36f7f570d66e65ff867ed3b9d"
|
|
4907
5338
|
dependencies = [
|
|
4908
5339
|
"zstd-sys",
|
|
4909
5340
|
]
|
|
4910
5341
|
|
|
4911
5342
|
[[package]]
|
|
4912
5343
|
name = "zstd-sys"
|
|
4913
|
-
version = "2.0.
|
|
5344
|
+
version = "2.0.15+zstd.1.5.7"
|
|
4914
5345
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4915
|
-
checksum = "
|
|
5346
|
+
checksum = "eb81183ddd97d0c74cedf1d50d85c8d08c1b8b68ee863bdee9e706eedba1a237"
|
|
4916
5347
|
dependencies = [
|
|
4917
5348
|
"cc",
|
|
4918
5349
|
"pkg-config",
|