yara-x 0.12.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.12.0 → yara_x-0.14.0}/Cargo.lock +1250 -653
- {yara_x-0.12.0 → yara_x-0.14.0}/Cargo.toml +54 -48
- {yara_x-0.12.0 → yara_x-0.14.0}/PKG-INFO +1 -1
- yara_x-0.14.0/fmt/Cargo.lock +7 -0
- yara_x-0.14.0/fmt/Cargo.toml +25 -0
- yara_x-0.14.0/fmt/src/align.rs +123 -0
- yara_x-0.14.0/fmt/src/bubble.rs +254 -0
- yara_x-0.14.0/fmt/src/comments.rs +510 -0
- yara_x-0.14.0/fmt/src/format_hex_patterns.rs +117 -0
- yara_x-0.14.0/fmt/src/indentation.rs +83 -0
- yara_x-0.14.0/fmt/src/lib.rs +1379 -0
- yara_x-0.14.0/fmt/src/processor/mod.rs +508 -0
- yara_x-0.14.0/fmt/src/processor/tests.rs +262 -0
- yara_x-0.14.0/fmt/src/testdata/config_tests/align_metadata_false.formatted +12 -0
- yara_x-0.14.0/fmt/src/testdata/config_tests/align_patterns_false.formatted +12 -0
- yara_x-0.14.0/fmt/src/testdata/config_tests/align_rule.unformatted +1 -0
- yara_x-0.14.0/fmt/src/testdata/config_tests/empty_line_after_section_header_true.formatted +13 -0
- yara_x-0.14.0/fmt/src/testdata/config_tests/empty_line_before_section_header_false.formatted +8 -0
- yara_x-0.14.0/fmt/src/testdata/config_tests/generic_rule.unformatted +2 -0
- yara_x-0.14.0/fmt/src/testdata/config_tests/indent_section_contents_false.formatted +10 -0
- yara_x-0.14.0/fmt/src/testdata/config_tests/indent_section_headers_false.formatted +10 -0
- yara_x-0.14.0/fmt/src/testdata/config_tests/indent_spaces_one.formatted +10 -0
- yara_x-0.14.0/fmt/src/testdata/config_tests/indent_spaces_zero.formatted +10 -0
- yara_x-0.14.0/fmt/src/testdata/config_tests/newline_before_curly_brace_true.formatted +11 -0
- yara_x-0.14.0/fmt/src/testdata/default_tests/test1.formatted +4 -0
- yara_x-0.14.0/fmt/src/testdata/default_tests/test1.unformatted +1 -0
- yara_x-0.14.0/fmt/src/testdata/default_tests/test10.formatted +10 -0
- yara_x-0.14.0/fmt/src/testdata/default_tests/test10.unformatted +11 -0
- yara_x-0.14.0/fmt/src/testdata/default_tests/test11.formatted +4 -0
- yara_x-0.14.0/fmt/src/testdata/default_tests/test11.unformatted +6 -0
- yara_x-0.14.0/fmt/src/testdata/default_tests/test12.formatted +5 -0
- yara_x-0.14.0/fmt/src/testdata/default_tests/test12.unformatted +6 -0
- yara_x-0.14.0/fmt/src/testdata/default_tests/test13.formatted +4 -0
- yara_x-0.14.0/fmt/src/testdata/default_tests/test13.unformatted +7 -0
- yara_x-0.14.0/fmt/src/testdata/default_tests/test14.formatted +5 -0
- yara_x-0.14.0/fmt/src/testdata/default_tests/test14.unformatted +7 -0
- yara_x-0.14.0/fmt/src/testdata/default_tests/test15.formatted +6 -0
- yara_x-0.14.0/fmt/src/testdata/default_tests/test15.unformatted +7 -0
- yara_x-0.14.0/fmt/src/testdata/default_tests/test16.formatted +13 -0
- yara_x-0.14.0/fmt/src/testdata/default_tests/test16.unformatted +9 -0
- yara_x-0.14.0/fmt/src/testdata/default_tests/test17.formatted +14 -0
- yara_x-0.14.0/fmt/src/testdata/default_tests/test17.unformatted +12 -0
- yara_x-0.14.0/fmt/src/testdata/default_tests/test18.formatted +7 -0
- yara_x-0.14.0/fmt/src/testdata/default_tests/test18.unformatted +6 -0
- yara_x-0.14.0/fmt/src/testdata/default_tests/test19.formatted +12 -0
- yara_x-0.14.0/fmt/src/testdata/default_tests/test19.unformatted +9 -0
- yara_x-0.14.0/fmt/src/testdata/default_tests/test2.formatted +4 -0
- yara_x-0.14.0/fmt/src/testdata/default_tests/test2.unformatted +2 -0
- yara_x-0.14.0/fmt/src/testdata/default_tests/test20.formatted +24 -0
- yara_x-0.14.0/fmt/src/testdata/default_tests/test20.unformatted +22 -0
- yara_x-0.14.0/fmt/src/testdata/default_tests/test21.formatted +4 -0
- yara_x-0.14.0/fmt/src/testdata/default_tests/test21.unformatted +4 -0
- yara_x-0.14.0/fmt/src/testdata/default_tests/test22.formatted +4 -0
- yara_x-0.14.0/fmt/src/testdata/default_tests/test22.unformatted +4 -0
- yara_x-0.14.0/fmt/src/testdata/default_tests/test23.formatted +7 -0
- yara_x-0.14.0/fmt/src/testdata/default_tests/test23.unformatted +6 -0
- yara_x-0.14.0/fmt/src/testdata/default_tests/test24.formatted +7 -0
- yara_x-0.14.0/fmt/src/testdata/default_tests/test24.unformatted +6 -0
- yara_x-0.14.0/fmt/src/testdata/default_tests/test25.formatted +11 -0
- yara_x-0.14.0/fmt/src/testdata/default_tests/test25.unformatted +10 -0
- yara_x-0.14.0/fmt/src/testdata/default_tests/test26.formatted +3 -0
- yara_x-0.14.0/fmt/src/testdata/default_tests/test26.unformatted +3 -0
- yara_x-0.14.0/fmt/src/testdata/default_tests/test27.formatted +7 -0
- yara_x-0.14.0/fmt/src/testdata/default_tests/test27.unformatted +6 -0
- yara_x-0.14.0/fmt/src/testdata/default_tests/test28.formatted +11 -0
- yara_x-0.14.0/fmt/src/testdata/default_tests/test28.unformatted +10 -0
- yara_x-0.14.0/fmt/src/testdata/default_tests/test29.formatted +16 -0
- yara_x-0.14.0/fmt/src/testdata/default_tests/test29.unformatted +15 -0
- yara_x-0.14.0/fmt/src/testdata/default_tests/test3.formatted +5 -0
- yara_x-0.14.0/fmt/src/testdata/default_tests/test3.unformatted +6 -0
- yara_x-0.14.0/fmt/src/testdata/default_tests/test30.formatted +7 -0
- yara_x-0.14.0/fmt/src/testdata/default_tests/test30.unformatted +6 -0
- yara_x-0.14.0/fmt/src/testdata/default_tests/test31.formatted +8 -0
- yara_x-0.14.0/fmt/src/testdata/default_tests/test31.unformatted +6 -0
- yara_x-0.14.0/fmt/src/testdata/default_tests/test32.formatted +11 -0
- yara_x-0.14.0/fmt/src/testdata/default_tests/test32.unformatted +16 -0
- yara_x-0.14.0/fmt/src/testdata/default_tests/test33.formatted +6 -0
- yara_x-0.14.0/fmt/src/testdata/default_tests/test33.unformatted +6 -0
- yara_x-0.14.0/fmt/src/testdata/default_tests/test34.formatted +16 -0
- yara_x-0.14.0/fmt/src/testdata/default_tests/test34.unformatted +13 -0
- yara_x-0.14.0/fmt/src/testdata/default_tests/test4.formatted +9 -0
- yara_x-0.14.0/fmt/src/testdata/default_tests/test4.unformatted +1 -0
- yara_x-0.14.0/fmt/src/testdata/default_tests/test5.formatted +12 -0
- yara_x-0.14.0/fmt/src/testdata/default_tests/test5.unformatted +1 -0
- yara_x-0.14.0/fmt/src/testdata/default_tests/test6.formatted +12 -0
- yara_x-0.14.0/fmt/src/testdata/default_tests/test6.unformatted +4 -0
- yara_x-0.14.0/fmt/src/testdata/default_tests/test7.formatted +11 -0
- yara_x-0.14.0/fmt/src/testdata/default_tests/test7.unformatted +1 -0
- yara_x-0.14.0/fmt/src/testdata/default_tests/test8.formatted +8 -0
- yara_x-0.14.0/fmt/src/testdata/default_tests/test8.unformatted +6 -0
- yara_x-0.14.0/fmt/src/testdata/default_tests/test9.formatted +9 -0
- yara_x-0.14.0/fmt/src/testdata/default_tests/test9.unformatted +4 -0
- yara_x-0.14.0/fmt/src/tests.rs +155 -0
- yara_x-0.14.0/fmt/src/tokens/mod.rs +542 -0
- yara_x-0.14.0/fmt/src/tokens/tests.rs +168 -0
- yara_x-0.14.0/fmt/src/trailing_spaces.rs +101 -0
- {yara_x-0.12.0 → yara_x-0.14.0}/lib/Cargo.toml +20 -2
- {yara_x-0.12.0 → yara_x-0.14.0}/lib/build.rs +21 -12
- {yara_x-0.12.0 → yara_x-0.14.0}/lib/src/compiler/atoms/mod.rs +3 -3
- {yara_x-0.12.0 → yara_x-0.14.0}/lib/src/compiler/atoms/quality.rs +2 -2
- {yara_x-0.12.0 → yara_x-0.14.0}/lib/src/compiler/context.rs +1 -1
- {yara_x-0.12.0 → yara_x-0.14.0}/lib/src/compiler/emit.rs +7 -6
- {yara_x-0.12.0 → yara_x-0.14.0}/lib/src/compiler/errors.rs +155 -0
- {yara_x-0.12.0 → yara_x-0.14.0}/lib/src/compiler/ir/ast2ir.rs +31 -23
- {yara_x-0.12.0 → yara_x-0.14.0}/lib/src/compiler/ir/dfs.rs +1 -1
- {yara_x-0.12.0 → yara_x-0.14.0}/lib/src/compiler/ir/mod.rs +21 -21
- {yara_x-0.12.0 → yara_x-0.14.0}/lib/src/compiler/ir/tests/mod.rs +13 -3
- {yara_x-0.12.0 → yara_x-0.14.0}/lib/src/compiler/ir/tests/testdata/1.cse.ir +29 -29
- {yara_x-0.12.0 → yara_x-0.14.0}/lib/src/compiler/ir/tests/testdata/1.hoisting.ir +29 -29
- {yara_x-0.12.0 → yara_x-0.14.0}/lib/src/compiler/ir/tests/testdata/1.ir +29 -29
- {yara_x-0.12.0 → yara_x-0.14.0}/lib/src/compiler/ir/tests/testdata/1.no-folding.ir +36 -36
- {yara_x-0.12.0 → yara_x-0.14.0}/lib/src/compiler/ir/tests/testdata/2.cse.ir +21 -21
- {yara_x-0.12.0 → yara_x-0.14.0}/lib/src/compiler/ir/tests/testdata/2.hoisting.ir +29 -29
- {yara_x-0.12.0 → yara_x-0.14.0}/lib/src/compiler/ir/tests/testdata/2.ir +23 -23
- {yara_x-0.12.0 → yara_x-0.14.0}/lib/src/compiler/ir/tests/testdata/2.no-folding.ir +23 -23
- {yara_x-0.12.0 → yara_x-0.14.0}/lib/src/compiler/ir/tests/testdata/3.cse.ir +5 -5
- {yara_x-0.12.0 → yara_x-0.14.0}/lib/src/compiler/ir/tests/testdata/3.hoisting.ir +5 -5
- {yara_x-0.12.0 → yara_x-0.14.0}/lib/src/compiler/ir/tests/testdata/3.ir +5 -5
- {yara_x-0.12.0 → yara_x-0.14.0}/lib/src/compiler/ir/tests/testdata/3.no-folding.ir +5 -5
- {yara_x-0.12.0 → yara_x-0.14.0}/lib/src/compiler/ir/tests/testdata/4.cse.ir +18 -18
- {yara_x-0.12.0 → yara_x-0.14.0}/lib/src/compiler/ir/tests/testdata/4.hoisting.ir +29 -29
- {yara_x-0.12.0 → yara_x-0.14.0}/lib/src/compiler/ir/tests/testdata/4.ir +18 -18
- {yara_x-0.12.0 → yara_x-0.14.0}/lib/src/compiler/ir/tests/testdata/4.no-folding.ir +18 -18
- {yara_x-0.12.0 → yara_x-0.14.0}/lib/src/compiler/ir/tests/testdata/5.cse.ir +48 -48
- {yara_x-0.12.0 → yara_x-0.14.0}/lib/src/compiler/ir/tests/testdata/5.hoisting.ir +58 -58
- {yara_x-0.12.0 → yara_x-0.14.0}/lib/src/compiler/ir/tests/testdata/5.ir +58 -58
- {yara_x-0.12.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.12.0 → yara_x-0.14.0}/lib/src/compiler/ir/tests/testdata/7.cse.ir +18 -18
- {yara_x-0.12.0 → yara_x-0.14.0}/lib/src/compiler/ir/tests/testdata/7.hoisting.ir +24 -24
- {yara_x-0.12.0 → yara_x-0.14.0}/lib/src/compiler/ir/tests/testdata/7.ir +21 -21
- {yara_x-0.12.0 → yara_x-0.14.0}/lib/src/compiler/ir/tests/testdata/7.no-folding.ir +21 -21
- {yara_x-0.12.0 → yara_x-0.14.0}/lib/src/compiler/ir/tests/testdata/8.cse.ir +9 -9
- {yara_x-0.12.0 → yara_x-0.14.0}/lib/src/compiler/ir/tests/testdata/8.hoisting.ir +10 -10
- {yara_x-0.12.0 → yara_x-0.14.0}/lib/src/compiler/ir/tests/testdata/8.ir +9 -9
- {yara_x-0.12.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.14.0/lib/src/compiler/linters.rs +453 -0
- {yara_x-0.12.0 → yara_x-0.14.0}/lib/src/compiler/mod.rs +105 -67
- {yara_x-0.12.0 → yara_x-0.14.0}/lib/src/compiler/tests/mod.rs +219 -5
- yara_x-0.14.0/lib/src/compiler/tests/testdata/errors/140.in +5 -0
- yara_x-0.14.0/lib/src/compiler/tests/testdata/errors/140.out +6 -0
- 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.12.0 → yara_x-0.14.0}/lib/src/compiler/warnings.rs +158 -0
- {yara_x-0.12.0 → yara_x-0.14.0}/lib/src/lib.rs +9 -0
- {yara_x-0.12.0 → yara_x-0.14.0}/lib/src/models.rs +8 -8
- {yara_x-0.12.0 → yara_x-0.14.0}/lib/src/modules/add_modules.rs +2 -0
- {yara_x-0.12.0 → yara_x-0.14.0}/lib/src/modules/dotnet/parser.rs +294 -267
- {yara_x-0.12.0 → yara_x-0.14.0}/lib/src/modules/elf/mod.rs +43 -6
- {yara_x-0.12.0 → yara_x-0.14.0}/lib/src/modules/elf/parser.rs +24 -21
- {yara_x-0.12.0 → yara_x-0.14.0}/lib/src/modules/lnk/mod.rs +5 -8
- {yara_x-0.12.0 → yara_x-0.14.0}/lib/src/modules/lnk/parser.rs +44 -31
- {yara_x-0.12.0 → yara_x-0.14.0}/lib/src/modules/macho/mod.rs +102 -0
- {yara_x-0.12.0 → yara_x-0.14.0}/lib/src/modules/macho/parser.rs +637 -407
- {yara_x-0.12.0 → yara_x-0.14.0}/lib/src/modules/magic/mod.rs +2 -8
- {yara_x-0.12.0 → yara_x-0.14.0}/lib/src/modules/mod.rs +3 -0
- {yara_x-0.12.0 → yara_x-0.14.0}/lib/src/modules/modules.rs +3 -1
- {yara_x-0.12.0 → yara_x-0.14.0}/lib/src/modules/pe/authenticode.rs +55 -23
- {yara_x-0.12.0 → yara_x-0.14.0}/lib/src/modules/pe/mod.rs +38 -1
- {yara_x-0.12.0 → yara_x-0.14.0}/lib/src/modules/pe/parser.rs +120 -94
- {yara_x-0.12.0 → yara_x-0.14.0}/lib/src/modules/protos/macho.proto +7 -6
- {yara_x-0.12.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.12.0 → yara_x-0.14.0}/lib/src/modules/test_proto2/mod.rs +40 -16
- {yara_x-0.12.0 → yara_x-0.14.0}/lib/src/modules/test_proto2/tests/mod.rs +14 -0
- {yara_x-0.12.0/lib/src/modules/pe → yara_x-0.14.0/lib/src/modules/utils}/asn1.rs +3 -3
- yara_x-0.14.0/lib/src/modules/utils/mod.rs +1 -0
- yara_x-0.14.0/lib/src/modules/vt/mod.rs +523 -0
- {yara_x-0.12.0 → yara_x-0.14.0}/lib/src/re/fast/compiler.rs +2 -2
- {yara_x-0.12.0 → yara_x-0.14.0}/lib/src/re/fast/fastvm.rs +14 -14
- {yara_x-0.12.0 → yara_x-0.14.0}/lib/src/re/fast/instr.rs +1 -1
- {yara_x-0.12.0 → yara_x-0.14.0}/lib/src/re/hir.rs +28 -9
- {yara_x-0.12.0 → yara_x-0.14.0}/lib/src/re/mod.rs +1 -1
- {yara_x-0.12.0 → yara_x-0.14.0}/lib/src/re/thompson/compiler.rs +12 -5
- {yara_x-0.12.0 → yara_x-0.14.0}/lib/src/re/thompson/instr.rs +27 -5
- {yara_x-0.12.0 → yara_x-0.14.0}/lib/src/re/thompson/pikevm.rs +118 -17
- {yara_x-0.12.0 → yara_x-0.14.0}/lib/src/re/thompson/tests.rs +95 -0
- {yara_x-0.12.0 → yara_x-0.14.0}/lib/src/scanner/context.rs +40 -24
- {yara_x-0.12.0 → yara_x-0.14.0}/lib/src/scanner/mod.rs +21 -16
- {yara_x-0.12.0 → yara_x-0.14.0}/lib/src/symbols/mod.rs +6 -5
- {yara_x-0.12.0 → yara_x-0.14.0}/lib/src/tests/mod.rs +62 -4
- {yara_x-0.12.0 → yara_x-0.14.0}/lib/src/types/structure.rs +15 -1
- {yara_x-0.12.0 → yara_x-0.14.0}/lib/src/wasm/mod.rs +23 -1
- yara_x-0.14.0/macros/Cargo.lock +63 -0
- {yara_x-0.12.0 → yara_x-0.14.0}/parser/Cargo.toml +1 -1
- {yara_x-0.12.0 → yara_x-0.14.0}/parser/src/ast/ascii_tree.rs +2 -2
- {yara_x-0.12.0 → yara_x-0.14.0}/parser/src/ast/cst2ast.rs +15 -16
- {yara_x-0.12.0 → yara_x-0.14.0}/parser/src/ast/mod.rs +31 -18
- {yara_x-0.12.0 → yara_x-0.14.0}/parser/src/cst/mod.rs +23 -14
- {yara_x-0.12.0 → yara_x-0.14.0}/parser/src/cst/tests.rs +8 -4
- {yara_x-0.12.0 → yara_x-0.14.0}/parser/src/parser/mod.rs +7 -9
- {yara_x-0.12.0 → yara_x-0.14.0}/parser/src/parser/tests/mod.rs +1 -1
- {yara_x-0.12.0 → yara_x-0.14.0}/parser/src/parser/token_stream.rs +1 -1
- {yara_x-0.12.0 → yara_x-0.14.0}/parser/src/tokenizer/mod.rs +49 -77
- yara_x-0.14.0/proto/Cargo.lock +300 -0
- yara_x-0.14.0/proto/README.md +75 -0
- {yara_x-0.12.0 → yara_x-0.14.0}/py/Cargo.toml +6 -1
- {yara_x-0.12.0 → yara_x-0.14.0}/py/src/lib.rs +89 -0
- {yara_x-0.12.0 → yara_x-0.14.0}/py/tests/test_api.py +26 -0
- yara_x-0.14.0/py/yara_x.pyi +300 -0
- {yara_x-0.12.0 → yara_x-0.14.0}/pyproject.toml +1 -0
- yara_x-0.12.0/lib/src/compiler/ir/tests/testdata/6.cse.ir +0 -23
- yara_x-0.12.0/lib/src/compiler/ir/tests/testdata/6.hoisting.ir +0 -22
- yara_x-0.12.0/lib/src/compiler/ir/tests/testdata/6.ir +0 -22
- yara_x-0.12.0/lib/src/compiler/ir/tests/testdata/6.no-folding.ir +0 -22
- yara_x-0.12.0/lib/src/compiler/ir/tests/testdata/9.cse.ir +0 -23
- yara_x-0.12.0/lib/src/compiler/ir/tests/testdata/9.hoisting.ir +0 -23
- yara_x-0.12.0/lib/src/compiler/ir/tests/testdata/9.ir +0 -23
- yara_x-0.12.0/lib/src/compiler/ir/tests/testdata/9.no-folding.ir +0 -23
- yara_x-0.12.0/py/yara_x.pyi +0 -188
- {yara_x-0.12.0 → yara_x-0.14.0}/README.md +0 -0
- {yara_x-0.12.0/lib → yara_x-0.14.0/fmt}/README.md +0 -0
- {yara_x-0.12.0/parser → yara_x-0.14.0/lib}/README.md +0 -0
- {yara_x-0.12.0 → yara_x-0.14.0}/lib/src/compiler/atoms/mask.rs +0 -0
- {yara_x-0.12.0 → yara_x-0.14.0}/lib/src/compiler/base64.rs +0 -0
- {yara_x-0.12.0 → yara_x-0.14.0}/lib/src/compiler/ir/hex2hir.rs +0 -0
- {yara_x-0.12.0 → yara_x-0.14.0}/lib/src/compiler/ir/tests/testdata/1.in +0 -0
- {yara_x-0.12.0 → yara_x-0.14.0}/lib/src/compiler/ir/tests/testdata/2.in +0 -0
- {yara_x-0.12.0 → yara_x-0.14.0}/lib/src/compiler/ir/tests/testdata/3.in +0 -0
- {yara_x-0.12.0 → yara_x-0.14.0}/lib/src/compiler/ir/tests/testdata/4.in +0 -0
- {yara_x-0.12.0 → yara_x-0.14.0}/lib/src/compiler/ir/tests/testdata/5.in +0 -0
- {yara_x-0.12.0 → yara_x-0.14.0}/lib/src/compiler/ir/tests/testdata/6.in +0 -0
- {yara_x-0.12.0 → yara_x-0.14.0}/lib/src/compiler/ir/tests/testdata/7.in +0 -0
- {yara_x-0.12.0 → yara_x-0.14.0}/lib/src/compiler/ir/tests/testdata/8.in +0 -0
- {yara_x-0.12.0 → yara_x-0.14.0}/lib/src/compiler/ir/tests/testdata/9.in +0 -0
- {yara_x-0.12.0 → yara_x-0.14.0}/lib/src/compiler/report.rs +0 -0
- {yara_x-0.12.0 → yara_x-0.14.0}/lib/src/compiler/rules.rs +0 -0
- {yara_x-0.12.0 → yara_x-0.14.0}/lib/src/compiler/tests/testdata/errors/1.in +0 -0
- {yara_x-0.12.0 → yara_x-0.14.0}/lib/src/compiler/tests/testdata/errors/1.out +0 -0
- {yara_x-0.12.0 → yara_x-0.14.0}/lib/src/compiler/tests/testdata/errors/10.in +0 -0
- {yara_x-0.12.0 → yara_x-0.14.0}/lib/src/compiler/tests/testdata/errors/10.out +0 -0
- {yara_x-0.12.0 → yara_x-0.14.0}/lib/src/compiler/tests/testdata/errors/100.in +0 -0
- {yara_x-0.12.0 → yara_x-0.14.0}/lib/src/compiler/tests/testdata/errors/100.out +0 -0
- {yara_x-0.12.0 → yara_x-0.14.0}/lib/src/compiler/tests/testdata/errors/101.in +0 -0
- {yara_x-0.12.0 → yara_x-0.14.0}/lib/src/compiler/tests/testdata/errors/101.out +0 -0
- {yara_x-0.12.0 → yara_x-0.14.0}/lib/src/compiler/tests/testdata/errors/102.in +0 -0
- {yara_x-0.12.0 → yara_x-0.14.0}/lib/src/compiler/tests/testdata/errors/102.out +0 -0
- {yara_x-0.12.0 → yara_x-0.14.0}/lib/src/compiler/tests/testdata/errors/103.in +0 -0
- {yara_x-0.12.0 → yara_x-0.14.0}/lib/src/compiler/tests/testdata/errors/103.out +0 -0
- {yara_x-0.12.0 → yara_x-0.14.0}/lib/src/compiler/tests/testdata/errors/104.in +0 -0
- {yara_x-0.12.0 → yara_x-0.14.0}/lib/src/compiler/tests/testdata/errors/104.out +0 -0
- {yara_x-0.12.0 → yara_x-0.14.0}/lib/src/compiler/tests/testdata/errors/105.in +0 -0
- {yara_x-0.12.0 → yara_x-0.14.0}/lib/src/compiler/tests/testdata/errors/105.out +0 -0
- {yara_x-0.12.0 → yara_x-0.14.0}/lib/src/compiler/tests/testdata/errors/106.in +0 -0
- {yara_x-0.12.0 → yara_x-0.14.0}/lib/src/compiler/tests/testdata/errors/106.out +0 -0
- {yara_x-0.12.0 → yara_x-0.14.0}/lib/src/compiler/tests/testdata/errors/107.in +0 -0
- {yara_x-0.12.0 → yara_x-0.14.0}/lib/src/compiler/tests/testdata/errors/107.out +0 -0
- {yara_x-0.12.0 → yara_x-0.14.0}/lib/src/compiler/tests/testdata/errors/108.in +0 -0
- {yara_x-0.12.0 → yara_x-0.14.0}/lib/src/compiler/tests/testdata/errors/108.out +0 -0
- {yara_x-0.12.0 → yara_x-0.14.0}/lib/src/compiler/tests/testdata/errors/109.in +0 -0
- {yara_x-0.12.0 → yara_x-0.14.0}/lib/src/compiler/tests/testdata/errors/109.out +0 -0
- {yara_x-0.12.0 → yara_x-0.14.0}/lib/src/compiler/tests/testdata/errors/11.in +0 -0
- {yara_x-0.12.0 → yara_x-0.14.0}/lib/src/compiler/tests/testdata/errors/11.out +0 -0
- {yara_x-0.12.0 → yara_x-0.14.0}/lib/src/compiler/tests/testdata/errors/110.in +0 -0
- {yara_x-0.12.0 → yara_x-0.14.0}/lib/src/compiler/tests/testdata/errors/110.out +0 -0
- {yara_x-0.12.0 → yara_x-0.14.0}/lib/src/compiler/tests/testdata/errors/111.in +0 -0
- {yara_x-0.12.0 → yara_x-0.14.0}/lib/src/compiler/tests/testdata/errors/111.out +0 -0
- {yara_x-0.12.0 → yara_x-0.14.0}/lib/src/compiler/tests/testdata/errors/112.in +0 -0
- {yara_x-0.12.0 → yara_x-0.14.0}/lib/src/compiler/tests/testdata/errors/112.out +0 -0
- {yara_x-0.12.0 → yara_x-0.14.0}/lib/src/compiler/tests/testdata/errors/113.in +0 -0
- {yara_x-0.12.0 → yara_x-0.14.0}/lib/src/compiler/tests/testdata/errors/113.out +0 -0
- {yara_x-0.12.0 → yara_x-0.14.0}/lib/src/compiler/tests/testdata/errors/114.in +0 -0
- {yara_x-0.12.0 → yara_x-0.14.0}/lib/src/compiler/tests/testdata/errors/114.out +0 -0
- {yara_x-0.12.0 → yara_x-0.14.0}/lib/src/compiler/tests/testdata/errors/115.in +0 -0
- {yara_x-0.12.0 → yara_x-0.14.0}/lib/src/compiler/tests/testdata/errors/115.out +0 -0
- {yara_x-0.12.0 → yara_x-0.14.0}/lib/src/compiler/tests/testdata/errors/116.in +0 -0
- {yara_x-0.12.0 → yara_x-0.14.0}/lib/src/compiler/tests/testdata/errors/116.out +0 -0
- {yara_x-0.12.0 → yara_x-0.14.0}/lib/src/compiler/tests/testdata/errors/117.in +0 -0
- {yara_x-0.12.0 → yara_x-0.14.0}/lib/src/compiler/tests/testdata/errors/117.out +0 -0
- {yara_x-0.12.0 → yara_x-0.14.0}/lib/src/compiler/tests/testdata/errors/118.in +0 -0
- {yara_x-0.12.0 → yara_x-0.14.0}/lib/src/compiler/tests/testdata/errors/118.out +0 -0
- {yara_x-0.12.0 → yara_x-0.14.0}/lib/src/compiler/tests/testdata/errors/119.in +0 -0
- {yara_x-0.12.0 → yara_x-0.14.0}/lib/src/compiler/tests/testdata/errors/119.out +0 -0
- {yara_x-0.12.0 → yara_x-0.14.0}/lib/src/compiler/tests/testdata/errors/12.in +0 -0
- {yara_x-0.12.0 → yara_x-0.14.0}/lib/src/compiler/tests/testdata/errors/12.out +0 -0
- {yara_x-0.12.0 → yara_x-0.14.0}/lib/src/compiler/tests/testdata/errors/120.in +0 -0
- {yara_x-0.12.0 → yara_x-0.14.0}/lib/src/compiler/tests/testdata/errors/120.out +0 -0
- {yara_x-0.12.0 → yara_x-0.14.0}/lib/src/compiler/tests/testdata/errors/121.in +0 -0
- {yara_x-0.12.0 → yara_x-0.14.0}/lib/src/compiler/tests/testdata/errors/121.out +0 -0
- {yara_x-0.12.0 → yara_x-0.14.0}/lib/src/compiler/tests/testdata/errors/122.in +0 -0
- {yara_x-0.12.0 → yara_x-0.14.0}/lib/src/compiler/tests/testdata/errors/122.out +0 -0
- {yara_x-0.12.0 → yara_x-0.14.0}/lib/src/compiler/tests/testdata/errors/123.in +0 -0
- {yara_x-0.12.0 → yara_x-0.14.0}/lib/src/compiler/tests/testdata/errors/123.out +0 -0
- {yara_x-0.12.0 → yara_x-0.14.0}/lib/src/compiler/tests/testdata/errors/124.in +0 -0
- {yara_x-0.12.0 → yara_x-0.14.0}/lib/src/compiler/tests/testdata/errors/124.out +0 -0
- {yara_x-0.12.0 → yara_x-0.14.0}/lib/src/compiler/tests/testdata/errors/125.in +0 -0
- {yara_x-0.12.0 → yara_x-0.14.0}/lib/src/compiler/tests/testdata/errors/125.out +0 -0
- {yara_x-0.12.0 → yara_x-0.14.0}/lib/src/compiler/tests/testdata/errors/126.in +0 -0
- {yara_x-0.12.0 → yara_x-0.14.0}/lib/src/compiler/tests/testdata/errors/126.out +0 -0
- {yara_x-0.12.0 → yara_x-0.14.0}/lib/src/compiler/tests/testdata/errors/127.in +0 -0
- {yara_x-0.12.0 → yara_x-0.14.0}/lib/src/compiler/tests/testdata/errors/127.out +0 -0
- {yara_x-0.12.0 → yara_x-0.14.0}/lib/src/compiler/tests/testdata/errors/128.in +0 -0
- {yara_x-0.12.0 → yara_x-0.14.0}/lib/src/compiler/tests/testdata/errors/128.out +0 -0
- {yara_x-0.12.0 → yara_x-0.14.0}/lib/src/compiler/tests/testdata/errors/129.in +0 -0
- {yara_x-0.12.0 → yara_x-0.14.0}/lib/src/compiler/tests/testdata/errors/129.out +0 -0
- {yara_x-0.12.0 → yara_x-0.14.0}/lib/src/compiler/tests/testdata/errors/13.in +0 -0
- {yara_x-0.12.0 → yara_x-0.14.0}/lib/src/compiler/tests/testdata/errors/13.out +0 -0
- {yara_x-0.12.0 → yara_x-0.14.0}/lib/src/compiler/tests/testdata/errors/131.in +0 -0
- {yara_x-0.12.0 → yara_x-0.14.0}/lib/src/compiler/tests/testdata/errors/131.out +0 -0
- {yara_x-0.12.0 → yara_x-0.14.0}/lib/src/compiler/tests/testdata/errors/132.in +0 -0
- {yara_x-0.12.0 → yara_x-0.14.0}/lib/src/compiler/tests/testdata/errors/132.out +0 -0
- {yara_x-0.12.0 → yara_x-0.14.0}/lib/src/compiler/tests/testdata/errors/133.in +0 -0
- {yara_x-0.12.0 → yara_x-0.14.0}/lib/src/compiler/tests/testdata/errors/133.out +0 -0
- {yara_x-0.12.0 → yara_x-0.14.0}/lib/src/compiler/tests/testdata/errors/134.in +0 -0
- {yara_x-0.12.0 → yara_x-0.14.0}/lib/src/compiler/tests/testdata/errors/134.out +0 -0
- {yara_x-0.12.0 → yara_x-0.14.0}/lib/src/compiler/tests/testdata/errors/135.in +0 -0
- {yara_x-0.12.0 → yara_x-0.14.0}/lib/src/compiler/tests/testdata/errors/135.out +0 -0
- {yara_x-0.12.0 → yara_x-0.14.0}/lib/src/compiler/tests/testdata/errors/136.in +0 -0
- {yara_x-0.12.0 → yara_x-0.14.0}/lib/src/compiler/tests/testdata/errors/136.out +0 -0
- {yara_x-0.12.0 → yara_x-0.14.0}/lib/src/compiler/tests/testdata/errors/137.in +0 -0
- {yara_x-0.12.0 → yara_x-0.14.0}/lib/src/compiler/tests/testdata/errors/137.out +0 -0
- {yara_x-0.12.0 → yara_x-0.14.0}/lib/src/compiler/tests/testdata/errors/138.in +0 -0
- {yara_x-0.12.0 → yara_x-0.14.0}/lib/src/compiler/tests/testdata/errors/138.out +0 -0
- {yara_x-0.12.0 → yara_x-0.14.0}/lib/src/compiler/tests/testdata/errors/139.in +0 -0
- {yara_x-0.12.0 → yara_x-0.14.0}/lib/src/compiler/tests/testdata/errors/139.out +0 -0
- {yara_x-0.12.0 → yara_x-0.14.0}/lib/src/compiler/tests/testdata/errors/14.in +0 -0
- {yara_x-0.12.0 → yara_x-0.14.0}/lib/src/compiler/tests/testdata/errors/14.out +0 -0
- {yara_x-0.12.0 → yara_x-0.14.0}/lib/src/compiler/tests/testdata/errors/15.in +0 -0
- {yara_x-0.12.0 → yara_x-0.14.0}/lib/src/compiler/tests/testdata/errors/15.out +0 -0
- {yara_x-0.12.0 → yara_x-0.14.0}/lib/src/compiler/tests/testdata/errors/16.in +0 -0
- {yara_x-0.12.0 → yara_x-0.14.0}/lib/src/compiler/tests/testdata/errors/16.out +0 -0
- {yara_x-0.12.0 → yara_x-0.14.0}/lib/src/compiler/tests/testdata/errors/17.in +0 -0
- {yara_x-0.12.0 → yara_x-0.14.0}/lib/src/compiler/tests/testdata/errors/17.out +0 -0
- {yara_x-0.12.0 → yara_x-0.14.0}/lib/src/compiler/tests/testdata/errors/18.in +0 -0
- {yara_x-0.12.0 → yara_x-0.14.0}/lib/src/compiler/tests/testdata/errors/18.out +0 -0
- {yara_x-0.12.0 → yara_x-0.14.0}/lib/src/compiler/tests/testdata/errors/19.in +0 -0
- {yara_x-0.12.0 → yara_x-0.14.0}/lib/src/compiler/tests/testdata/errors/19.out +0 -0
- {yara_x-0.12.0 → yara_x-0.14.0}/lib/src/compiler/tests/testdata/errors/2.in +0 -0
- {yara_x-0.12.0 → yara_x-0.14.0}/lib/src/compiler/tests/testdata/errors/2.out +0 -0
- {yara_x-0.12.0 → yara_x-0.14.0}/lib/src/compiler/tests/testdata/errors/20.in +0 -0
- {yara_x-0.12.0 → yara_x-0.14.0}/lib/src/compiler/tests/testdata/errors/20.out +0 -0
- {yara_x-0.12.0 → yara_x-0.14.0}/lib/src/compiler/tests/testdata/errors/21.in +0 -0
- {yara_x-0.12.0 → yara_x-0.14.0}/lib/src/compiler/tests/testdata/errors/21.out +0 -0
- {yara_x-0.12.0 → yara_x-0.14.0}/lib/src/compiler/tests/testdata/errors/22.in +0 -0
- {yara_x-0.12.0 → yara_x-0.14.0}/lib/src/compiler/tests/testdata/errors/22.out +0 -0
- {yara_x-0.12.0 → yara_x-0.14.0}/lib/src/compiler/tests/testdata/errors/23.in +0 -0
- {yara_x-0.12.0 → yara_x-0.14.0}/lib/src/compiler/tests/testdata/errors/23.out +0 -0
- {yara_x-0.12.0 → yara_x-0.14.0}/lib/src/compiler/tests/testdata/errors/24.in +0 -0
- {yara_x-0.12.0 → yara_x-0.14.0}/lib/src/compiler/tests/testdata/errors/24.out +0 -0
- {yara_x-0.12.0 → yara_x-0.14.0}/lib/src/compiler/tests/testdata/errors/25.in +0 -0
- {yara_x-0.12.0 → yara_x-0.14.0}/lib/src/compiler/tests/testdata/errors/25.out +0 -0
- {yara_x-0.12.0 → yara_x-0.14.0}/lib/src/compiler/tests/testdata/errors/26.in +0 -0
- {yara_x-0.12.0 → yara_x-0.14.0}/lib/src/compiler/tests/testdata/errors/26.out +0 -0
- {yara_x-0.12.0 → yara_x-0.14.0}/lib/src/compiler/tests/testdata/errors/28.in +0 -0
- {yara_x-0.12.0 → yara_x-0.14.0}/lib/src/compiler/tests/testdata/errors/28.out +0 -0
- {yara_x-0.12.0 → yara_x-0.14.0}/lib/src/compiler/tests/testdata/errors/29.in +0 -0
- {yara_x-0.12.0 → yara_x-0.14.0}/lib/src/compiler/tests/testdata/errors/29.out +0 -0
- {yara_x-0.12.0 → yara_x-0.14.0}/lib/src/compiler/tests/testdata/errors/3.in +0 -0
- {yara_x-0.12.0 → yara_x-0.14.0}/lib/src/compiler/tests/testdata/errors/3.out +0 -0
- {yara_x-0.12.0 → yara_x-0.14.0}/lib/src/compiler/tests/testdata/errors/30.in +0 -0
- {yara_x-0.12.0 → yara_x-0.14.0}/lib/src/compiler/tests/testdata/errors/30.out +0 -0
- {yara_x-0.12.0 → yara_x-0.14.0}/lib/src/compiler/tests/testdata/errors/31.in +0 -0
- {yara_x-0.12.0 → yara_x-0.14.0}/lib/src/compiler/tests/testdata/errors/31.out +0 -0
- {yara_x-0.12.0 → yara_x-0.14.0}/lib/src/compiler/tests/testdata/errors/32.in +0 -0
- {yara_x-0.12.0 → yara_x-0.14.0}/lib/src/compiler/tests/testdata/errors/32.out +0 -0
- {yara_x-0.12.0 → yara_x-0.14.0}/lib/src/compiler/tests/testdata/errors/33.in +0 -0
- {yara_x-0.12.0 → yara_x-0.14.0}/lib/src/compiler/tests/testdata/errors/33.out +0 -0
- {yara_x-0.12.0 → yara_x-0.14.0}/lib/src/compiler/tests/testdata/errors/34.in +0 -0
- {yara_x-0.12.0 → yara_x-0.14.0}/lib/src/compiler/tests/testdata/errors/34.out +0 -0
- {yara_x-0.12.0 → yara_x-0.14.0}/lib/src/compiler/tests/testdata/errors/35.in +0 -0
- {yara_x-0.12.0 → yara_x-0.14.0}/lib/src/compiler/tests/testdata/errors/35.out +0 -0
- {yara_x-0.12.0 → yara_x-0.14.0}/lib/src/compiler/tests/testdata/errors/37.in +0 -0
- {yara_x-0.12.0 → yara_x-0.14.0}/lib/src/compiler/tests/testdata/errors/37.out +0 -0
- {yara_x-0.12.0 → yara_x-0.14.0}/lib/src/compiler/tests/testdata/errors/38.in +0 -0
- {yara_x-0.12.0 → yara_x-0.14.0}/lib/src/compiler/tests/testdata/errors/38.out +0 -0
- {yara_x-0.12.0 → yara_x-0.14.0}/lib/src/compiler/tests/testdata/errors/39.in +0 -0
- {yara_x-0.12.0 → yara_x-0.14.0}/lib/src/compiler/tests/testdata/errors/39.out +0 -0
- {yara_x-0.12.0 → yara_x-0.14.0}/lib/src/compiler/tests/testdata/errors/4.in +0 -0
- {yara_x-0.12.0 → yara_x-0.14.0}/lib/src/compiler/tests/testdata/errors/4.out +0 -0
- {yara_x-0.12.0 → yara_x-0.14.0}/lib/src/compiler/tests/testdata/errors/40.in +0 -0
- {yara_x-0.12.0 → yara_x-0.14.0}/lib/src/compiler/tests/testdata/errors/40.out +0 -0
- {yara_x-0.12.0 → yara_x-0.14.0}/lib/src/compiler/tests/testdata/errors/41.in +0 -0
- {yara_x-0.12.0 → yara_x-0.14.0}/lib/src/compiler/tests/testdata/errors/41.out +0 -0
- {yara_x-0.12.0 → yara_x-0.14.0}/lib/src/compiler/tests/testdata/errors/42.in +0 -0
- {yara_x-0.12.0 → yara_x-0.14.0}/lib/src/compiler/tests/testdata/errors/42.out +0 -0
- {yara_x-0.12.0 → yara_x-0.14.0}/lib/src/compiler/tests/testdata/errors/43.in +0 -0
- {yara_x-0.12.0 → yara_x-0.14.0}/lib/src/compiler/tests/testdata/errors/43.out +0 -0
- {yara_x-0.12.0 → yara_x-0.14.0}/lib/src/compiler/tests/testdata/errors/44.in +0 -0
- {yara_x-0.12.0 → yara_x-0.14.0}/lib/src/compiler/tests/testdata/errors/44.out +0 -0
- {yara_x-0.12.0 → yara_x-0.14.0}/lib/src/compiler/tests/testdata/errors/45.in +0 -0
- {yara_x-0.12.0 → yara_x-0.14.0}/lib/src/compiler/tests/testdata/errors/45.out +0 -0
- {yara_x-0.12.0 → yara_x-0.14.0}/lib/src/compiler/tests/testdata/errors/46.in +0 -0
- {yara_x-0.12.0 → yara_x-0.14.0}/lib/src/compiler/tests/testdata/errors/46.out +0 -0
- {yara_x-0.12.0 → yara_x-0.14.0}/lib/src/compiler/tests/testdata/errors/47.in +0 -0
- {yara_x-0.12.0 → yara_x-0.14.0}/lib/src/compiler/tests/testdata/errors/47.out +0 -0
- {yara_x-0.12.0 → yara_x-0.14.0}/lib/src/compiler/tests/testdata/errors/48.in +0 -0
- {yara_x-0.12.0 → yara_x-0.14.0}/lib/src/compiler/tests/testdata/errors/48.out +0 -0
- {yara_x-0.12.0 → yara_x-0.14.0}/lib/src/compiler/tests/testdata/errors/49.in +0 -0
- {yara_x-0.12.0 → yara_x-0.14.0}/lib/src/compiler/tests/testdata/errors/49.out +0 -0
- {yara_x-0.12.0 → yara_x-0.14.0}/lib/src/compiler/tests/testdata/errors/5.in +0 -0
- {yara_x-0.12.0 → yara_x-0.14.0}/lib/src/compiler/tests/testdata/errors/5.out +0 -0
- {yara_x-0.12.0 → yara_x-0.14.0}/lib/src/compiler/tests/testdata/errors/50.in +0 -0
- {yara_x-0.12.0 → yara_x-0.14.0}/lib/src/compiler/tests/testdata/errors/50.out +0 -0
- {yara_x-0.12.0 → yara_x-0.14.0}/lib/src/compiler/tests/testdata/errors/51.in +0 -0
- {yara_x-0.12.0 → yara_x-0.14.0}/lib/src/compiler/tests/testdata/errors/51.out +0 -0
- {yara_x-0.12.0 → yara_x-0.14.0}/lib/src/compiler/tests/testdata/errors/52.in +0 -0
- {yara_x-0.12.0 → yara_x-0.14.0}/lib/src/compiler/tests/testdata/errors/52.out +0 -0
- {yara_x-0.12.0 → yara_x-0.14.0}/lib/src/compiler/tests/testdata/errors/53.in +0 -0
- {yara_x-0.12.0 → yara_x-0.14.0}/lib/src/compiler/tests/testdata/errors/53.out +0 -0
- {yara_x-0.12.0 → yara_x-0.14.0}/lib/src/compiler/tests/testdata/errors/54.in +0 -0
- {yara_x-0.12.0 → yara_x-0.14.0}/lib/src/compiler/tests/testdata/errors/54.out +0 -0
- {yara_x-0.12.0 → yara_x-0.14.0}/lib/src/compiler/tests/testdata/errors/55.in +0 -0
- {yara_x-0.12.0 → yara_x-0.14.0}/lib/src/compiler/tests/testdata/errors/55.out +0 -0
- {yara_x-0.12.0 → yara_x-0.14.0}/lib/src/compiler/tests/testdata/errors/56.in +0 -0
- {yara_x-0.12.0 → yara_x-0.14.0}/lib/src/compiler/tests/testdata/errors/56.out +0 -0
- {yara_x-0.12.0 → yara_x-0.14.0}/lib/src/compiler/tests/testdata/errors/57.in +0 -0
- {yara_x-0.12.0 → yara_x-0.14.0}/lib/src/compiler/tests/testdata/errors/57.out +0 -0
- {yara_x-0.12.0 → yara_x-0.14.0}/lib/src/compiler/tests/testdata/errors/58.in +0 -0
- {yara_x-0.12.0 → yara_x-0.14.0}/lib/src/compiler/tests/testdata/errors/58.out +0 -0
- {yara_x-0.12.0 → yara_x-0.14.0}/lib/src/compiler/tests/testdata/errors/59.in +0 -0
- {yara_x-0.12.0 → yara_x-0.14.0}/lib/src/compiler/tests/testdata/errors/59.out +0 -0
- {yara_x-0.12.0 → yara_x-0.14.0}/lib/src/compiler/tests/testdata/errors/6.in +0 -0
- {yara_x-0.12.0 → yara_x-0.14.0}/lib/src/compiler/tests/testdata/errors/6.out +0 -0
- {yara_x-0.12.0 → yara_x-0.14.0}/lib/src/compiler/tests/testdata/errors/60.in +0 -0
- {yara_x-0.12.0 → yara_x-0.14.0}/lib/src/compiler/tests/testdata/errors/60.out +0 -0
- {yara_x-0.12.0 → yara_x-0.14.0}/lib/src/compiler/tests/testdata/errors/61.in +0 -0
- {yara_x-0.12.0 → yara_x-0.14.0}/lib/src/compiler/tests/testdata/errors/61.out +0 -0
- {yara_x-0.12.0 → yara_x-0.14.0}/lib/src/compiler/tests/testdata/errors/62.in +0 -0
- {yara_x-0.12.0 → yara_x-0.14.0}/lib/src/compiler/tests/testdata/errors/62.out +0 -0
- {yara_x-0.12.0 → yara_x-0.14.0}/lib/src/compiler/tests/testdata/errors/63.in +0 -0
- {yara_x-0.12.0 → yara_x-0.14.0}/lib/src/compiler/tests/testdata/errors/63.out +0 -0
- {yara_x-0.12.0 → yara_x-0.14.0}/lib/src/compiler/tests/testdata/errors/64.in +0 -0
- {yara_x-0.12.0 → yara_x-0.14.0}/lib/src/compiler/tests/testdata/errors/64.out +0 -0
- {yara_x-0.12.0 → yara_x-0.14.0}/lib/src/compiler/tests/testdata/errors/65.in +0 -0
- {yara_x-0.12.0 → yara_x-0.14.0}/lib/src/compiler/tests/testdata/errors/65.out +0 -0
- {yara_x-0.12.0 → yara_x-0.14.0}/lib/src/compiler/tests/testdata/errors/66.in +0 -0
- {yara_x-0.12.0 → yara_x-0.14.0}/lib/src/compiler/tests/testdata/errors/66.out +0 -0
- {yara_x-0.12.0 → yara_x-0.14.0}/lib/src/compiler/tests/testdata/errors/67.in +0 -0
- {yara_x-0.12.0 → yara_x-0.14.0}/lib/src/compiler/tests/testdata/errors/67.out +0 -0
- {yara_x-0.12.0 → yara_x-0.14.0}/lib/src/compiler/tests/testdata/errors/68.in +0 -0
- {yara_x-0.12.0 → yara_x-0.14.0}/lib/src/compiler/tests/testdata/errors/68.out +0 -0
- {yara_x-0.12.0 → yara_x-0.14.0}/lib/src/compiler/tests/testdata/errors/69.in +0 -0
- {yara_x-0.12.0 → yara_x-0.14.0}/lib/src/compiler/tests/testdata/errors/69.out +0 -0
- {yara_x-0.12.0 → yara_x-0.14.0}/lib/src/compiler/tests/testdata/errors/7.in +0 -0
- {yara_x-0.12.0 → yara_x-0.14.0}/lib/src/compiler/tests/testdata/errors/7.out +0 -0
- {yara_x-0.12.0 → yara_x-0.14.0}/lib/src/compiler/tests/testdata/errors/70.in +0 -0
- {yara_x-0.12.0 → yara_x-0.14.0}/lib/src/compiler/tests/testdata/errors/70.out +0 -0
- {yara_x-0.12.0 → yara_x-0.14.0}/lib/src/compiler/tests/testdata/errors/71.in +0 -0
- {yara_x-0.12.0 → yara_x-0.14.0}/lib/src/compiler/tests/testdata/errors/71.out +0 -0
- {yara_x-0.12.0 → yara_x-0.14.0}/lib/src/compiler/tests/testdata/errors/72.in +0 -0
- {yara_x-0.12.0 → yara_x-0.14.0}/lib/src/compiler/tests/testdata/errors/72.out +0 -0
- {yara_x-0.12.0 → yara_x-0.14.0}/lib/src/compiler/tests/testdata/errors/73.in +0 -0
- {yara_x-0.12.0 → yara_x-0.14.0}/lib/src/compiler/tests/testdata/errors/73.out +0 -0
- {yara_x-0.12.0 → yara_x-0.14.0}/lib/src/compiler/tests/testdata/errors/74.in +0 -0
- {yara_x-0.12.0 → yara_x-0.14.0}/lib/src/compiler/tests/testdata/errors/74.out +0 -0
- {yara_x-0.12.0 → yara_x-0.14.0}/lib/src/compiler/tests/testdata/errors/75.in +0 -0
- {yara_x-0.12.0 → yara_x-0.14.0}/lib/src/compiler/tests/testdata/errors/75.out +0 -0
- {yara_x-0.12.0 → yara_x-0.14.0}/lib/src/compiler/tests/testdata/errors/76.in +0 -0
- {yara_x-0.12.0 → yara_x-0.14.0}/lib/src/compiler/tests/testdata/errors/76.out +0 -0
- {yara_x-0.12.0 → yara_x-0.14.0}/lib/src/compiler/tests/testdata/errors/77.in +0 -0
- {yara_x-0.12.0 → yara_x-0.14.0}/lib/src/compiler/tests/testdata/errors/77.out +0 -0
- {yara_x-0.12.0 → yara_x-0.14.0}/lib/src/compiler/tests/testdata/errors/78.in +0 -0
- {yara_x-0.12.0 → yara_x-0.14.0}/lib/src/compiler/tests/testdata/errors/78.out +0 -0
- {yara_x-0.12.0 → yara_x-0.14.0}/lib/src/compiler/tests/testdata/errors/79.in +0 -0
- {yara_x-0.12.0 → yara_x-0.14.0}/lib/src/compiler/tests/testdata/errors/79.out +0 -0
- {yara_x-0.12.0 → yara_x-0.14.0}/lib/src/compiler/tests/testdata/errors/8.in +0 -0
- {yara_x-0.12.0 → yara_x-0.14.0}/lib/src/compiler/tests/testdata/errors/8.out +0 -0
- {yara_x-0.12.0 → yara_x-0.14.0}/lib/src/compiler/tests/testdata/errors/80.in +0 -0
- {yara_x-0.12.0 → yara_x-0.14.0}/lib/src/compiler/tests/testdata/errors/80.out +0 -0
- {yara_x-0.12.0 → yara_x-0.14.0}/lib/src/compiler/tests/testdata/errors/81.in +0 -0
- {yara_x-0.12.0 → yara_x-0.14.0}/lib/src/compiler/tests/testdata/errors/81.out +0 -0
- {yara_x-0.12.0 → yara_x-0.14.0}/lib/src/compiler/tests/testdata/errors/82.in +0 -0
- {yara_x-0.12.0 → yara_x-0.14.0}/lib/src/compiler/tests/testdata/errors/82.out +0 -0
- {yara_x-0.12.0 → yara_x-0.14.0}/lib/src/compiler/tests/testdata/errors/83.in +0 -0
- {yara_x-0.12.0 → yara_x-0.14.0}/lib/src/compiler/tests/testdata/errors/83.out +0 -0
- {yara_x-0.12.0 → yara_x-0.14.0}/lib/src/compiler/tests/testdata/errors/84.in +0 -0
- {yara_x-0.12.0 → yara_x-0.14.0}/lib/src/compiler/tests/testdata/errors/84.out +0 -0
- {yara_x-0.12.0 → yara_x-0.14.0}/lib/src/compiler/tests/testdata/errors/85.in +0 -0
- {yara_x-0.12.0 → yara_x-0.14.0}/lib/src/compiler/tests/testdata/errors/85.out +0 -0
- {yara_x-0.12.0 → yara_x-0.14.0}/lib/src/compiler/tests/testdata/errors/86.in +0 -0
- {yara_x-0.12.0 → yara_x-0.14.0}/lib/src/compiler/tests/testdata/errors/86.out +0 -0
- {yara_x-0.12.0 → yara_x-0.14.0}/lib/src/compiler/tests/testdata/errors/87.in +0 -0
- {yara_x-0.12.0 → yara_x-0.14.0}/lib/src/compiler/tests/testdata/errors/87.out +0 -0
- {yara_x-0.12.0 → yara_x-0.14.0}/lib/src/compiler/tests/testdata/errors/88.in +0 -0
- {yara_x-0.12.0 → yara_x-0.14.0}/lib/src/compiler/tests/testdata/errors/88.out +0 -0
- {yara_x-0.12.0 → yara_x-0.14.0}/lib/src/compiler/tests/testdata/errors/89.in +0 -0
- {yara_x-0.12.0 → yara_x-0.14.0}/lib/src/compiler/tests/testdata/errors/89.out +0 -0
- {yara_x-0.12.0 → yara_x-0.14.0}/lib/src/compiler/tests/testdata/errors/9.in +0 -0
- {yara_x-0.12.0 → yara_x-0.14.0}/lib/src/compiler/tests/testdata/errors/9.out +0 -0
- {yara_x-0.12.0 → yara_x-0.14.0}/lib/src/compiler/tests/testdata/errors/90.in +0 -0
- {yara_x-0.12.0 → yara_x-0.14.0}/lib/src/compiler/tests/testdata/errors/90.out +0 -0
- {yara_x-0.12.0 → yara_x-0.14.0}/lib/src/compiler/tests/testdata/errors/91.in +0 -0
- {yara_x-0.12.0 → yara_x-0.14.0}/lib/src/compiler/tests/testdata/errors/91.out +0 -0
- {yara_x-0.12.0 → yara_x-0.14.0}/lib/src/compiler/tests/testdata/errors/92.in +0 -0
- {yara_x-0.12.0 → yara_x-0.14.0}/lib/src/compiler/tests/testdata/errors/92.out +0 -0
- {yara_x-0.12.0 → yara_x-0.14.0}/lib/src/compiler/tests/testdata/errors/93.in +0 -0
- {yara_x-0.12.0 → yara_x-0.14.0}/lib/src/compiler/tests/testdata/errors/93.out +0 -0
- {yara_x-0.12.0 → yara_x-0.14.0}/lib/src/compiler/tests/testdata/errors/94.in +0 -0
- {yara_x-0.12.0 → yara_x-0.14.0}/lib/src/compiler/tests/testdata/errors/94.out +0 -0
- {yara_x-0.12.0 → yara_x-0.14.0}/lib/src/compiler/tests/testdata/errors/95.in +0 -0
- {yara_x-0.12.0 → yara_x-0.14.0}/lib/src/compiler/tests/testdata/errors/95.out +0 -0
- {yara_x-0.12.0 → yara_x-0.14.0}/lib/src/compiler/tests/testdata/errors/96.in +0 -0
- {yara_x-0.12.0 → yara_x-0.14.0}/lib/src/compiler/tests/testdata/errors/96.out +0 -0
- {yara_x-0.12.0 → yara_x-0.14.0}/lib/src/compiler/tests/testdata/errors/97.in +0 -0
- {yara_x-0.12.0 → yara_x-0.14.0}/lib/src/compiler/tests/testdata/errors/97.out +0 -0
- {yara_x-0.12.0 → yara_x-0.14.0}/lib/src/compiler/tests/testdata/errors/98.in +0 -0
- {yara_x-0.12.0 → yara_x-0.14.0}/lib/src/compiler/tests/testdata/errors/98.out +0 -0
- {yara_x-0.12.0 → yara_x-0.14.0}/lib/src/compiler/tests/testdata/errors/99.in +0 -0
- {yara_x-0.12.0 → yara_x-0.14.0}/lib/src/compiler/tests/testdata/errors/99.out +0 -0
- {yara_x-0.12.0 → yara_x-0.14.0}/lib/src/compiler/tests/testdata/warnings/1.in +0 -0
- {yara_x-0.12.0 → yara_x-0.14.0}/lib/src/compiler/tests/testdata/warnings/1.out +0 -0
- {yara_x-0.12.0 → yara_x-0.14.0}/lib/src/compiler/tests/testdata/warnings/10.in +0 -0
- {yara_x-0.12.0 → yara_x-0.14.0}/lib/src/compiler/tests/testdata/warnings/10.out +0 -0
- {yara_x-0.12.0 → yara_x-0.14.0}/lib/src/compiler/tests/testdata/warnings/11.in +0 -0
- {yara_x-0.12.0 → yara_x-0.14.0}/lib/src/compiler/tests/testdata/warnings/11.out +0 -0
- {yara_x-0.12.0 → yara_x-0.14.0}/lib/src/compiler/tests/testdata/warnings/12.in +0 -0
- {yara_x-0.12.0 → yara_x-0.14.0}/lib/src/compiler/tests/testdata/warnings/12.out +0 -0
- {yara_x-0.12.0 → yara_x-0.14.0}/lib/src/compiler/tests/testdata/warnings/13.in +0 -0
- {yara_x-0.12.0 → yara_x-0.14.0}/lib/src/compiler/tests/testdata/warnings/13.out +0 -0
- {yara_x-0.12.0 → yara_x-0.14.0}/lib/src/compiler/tests/testdata/warnings/14.in +0 -0
- {yara_x-0.12.0 → yara_x-0.14.0}/lib/src/compiler/tests/testdata/warnings/14.out +0 -0
- {yara_x-0.12.0 → yara_x-0.14.0}/lib/src/compiler/tests/testdata/warnings/15.in +0 -0
- {yara_x-0.12.0 → yara_x-0.14.0}/lib/src/compiler/tests/testdata/warnings/15.out +0 -0
- {yara_x-0.12.0 → yara_x-0.14.0}/lib/src/compiler/tests/testdata/warnings/16.in +0 -0
- {yara_x-0.12.0 → yara_x-0.14.0}/lib/src/compiler/tests/testdata/warnings/16.out +0 -0
- {yara_x-0.12.0 → yara_x-0.14.0}/lib/src/compiler/tests/testdata/warnings/17.in +0 -0
- {yara_x-0.12.0 → yara_x-0.14.0}/lib/src/compiler/tests/testdata/warnings/17.out +0 -0
- {yara_x-0.12.0 → yara_x-0.14.0}/lib/src/compiler/tests/testdata/warnings/18.in +0 -0
- {yara_x-0.12.0 → yara_x-0.14.0}/lib/src/compiler/tests/testdata/warnings/18.out +0 -0
- {yara_x-0.12.0 → yara_x-0.14.0}/lib/src/compiler/tests/testdata/warnings/19.in +0 -0
- {yara_x-0.12.0 → yara_x-0.14.0}/lib/src/compiler/tests/testdata/warnings/19.out +0 -0
- {yara_x-0.12.0 → yara_x-0.14.0}/lib/src/compiler/tests/testdata/warnings/2.in +0 -0
- {yara_x-0.12.0 → yara_x-0.14.0}/lib/src/compiler/tests/testdata/warnings/2.out +0 -0
- {yara_x-0.12.0 → yara_x-0.14.0}/lib/src/compiler/tests/testdata/warnings/20.in +0 -0
- {yara_x-0.12.0 → yara_x-0.14.0}/lib/src/compiler/tests/testdata/warnings/20.out +0 -0
- {yara_x-0.12.0 → yara_x-0.14.0}/lib/src/compiler/tests/testdata/warnings/21.in +0 -0
- {yara_x-0.12.0 → yara_x-0.14.0}/lib/src/compiler/tests/testdata/warnings/21.out +0 -0
- {yara_x-0.12.0 → yara_x-0.14.0}/lib/src/compiler/tests/testdata/warnings/22.in +0 -0
- {yara_x-0.12.0 → yara_x-0.14.0}/lib/src/compiler/tests/testdata/warnings/22.out +0 -0
- {yara_x-0.12.0 → yara_x-0.14.0}/lib/src/compiler/tests/testdata/warnings/23.in +0 -0
- {yara_x-0.12.0 → yara_x-0.14.0}/lib/src/compiler/tests/testdata/warnings/23.out +0 -0
- {yara_x-0.12.0 → yara_x-0.14.0}/lib/src/compiler/tests/testdata/warnings/24.in +0 -0
- {yara_x-0.12.0 → yara_x-0.14.0}/lib/src/compiler/tests/testdata/warnings/24.out +0 -0
- {yara_x-0.12.0 → yara_x-0.14.0}/lib/src/compiler/tests/testdata/warnings/25.in +0 -0
- {yara_x-0.12.0 → yara_x-0.14.0}/lib/src/compiler/tests/testdata/warnings/25.out +0 -0
- {yara_x-0.12.0 → yara_x-0.14.0}/lib/src/compiler/tests/testdata/warnings/26.in +0 -0
- {yara_x-0.12.0 → yara_x-0.14.0}/lib/src/compiler/tests/testdata/warnings/26.out +0 -0
- {yara_x-0.12.0 → yara_x-0.14.0}/lib/src/compiler/tests/testdata/warnings/27.in +0 -0
- {yara_x-0.12.0 → yara_x-0.14.0}/lib/src/compiler/tests/testdata/warnings/27.out +0 -0
- {yara_x-0.12.0 → yara_x-0.14.0}/lib/src/compiler/tests/testdata/warnings/28.in +0 -0
- {yara_x-0.12.0 → yara_x-0.14.0}/lib/src/compiler/tests/testdata/warnings/28.out +0 -0
- {yara_x-0.12.0 → yara_x-0.14.0}/lib/src/compiler/tests/testdata/warnings/29.in +0 -0
- {yara_x-0.12.0 → yara_x-0.14.0}/lib/src/compiler/tests/testdata/warnings/29.out +0 -0
- {yara_x-0.12.0 → yara_x-0.14.0}/lib/src/compiler/tests/testdata/warnings/3.in +0 -0
- {yara_x-0.12.0 → yara_x-0.14.0}/lib/src/compiler/tests/testdata/warnings/3.out +0 -0
- {yara_x-0.12.0 → yara_x-0.14.0}/lib/src/compiler/tests/testdata/warnings/30.in +0 -0
- {yara_x-0.12.0 → yara_x-0.14.0}/lib/src/compiler/tests/testdata/warnings/30.out +0 -0
- {yara_x-0.12.0 → yara_x-0.14.0}/lib/src/compiler/tests/testdata/warnings/31.in +0 -0
- {yara_x-0.12.0 → yara_x-0.14.0}/lib/src/compiler/tests/testdata/warnings/31.out +0 -0
- {yara_x-0.12.0 → yara_x-0.14.0}/lib/src/compiler/tests/testdata/warnings/32.in +0 -0
- {yara_x-0.12.0 → yara_x-0.14.0}/lib/src/compiler/tests/testdata/warnings/32.out +0 -0
- {yara_x-0.12.0 → yara_x-0.14.0}/lib/src/compiler/tests/testdata/warnings/33.in +0 -0
- {yara_x-0.12.0 → yara_x-0.14.0}/lib/src/compiler/tests/testdata/warnings/33.out +0 -0
- {yara_x-0.12.0 → yara_x-0.14.0}/lib/src/compiler/tests/testdata/warnings/34.in +0 -0
- {yara_x-0.12.0 → yara_x-0.14.0}/lib/src/compiler/tests/testdata/warnings/34.out +0 -0
- {yara_x-0.12.0 → yara_x-0.14.0}/lib/src/compiler/tests/testdata/warnings/35.in +0 -0
- {yara_x-0.12.0 → yara_x-0.14.0}/lib/src/compiler/tests/testdata/warnings/35.out +0 -0
- {yara_x-0.12.0 → yara_x-0.14.0}/lib/src/compiler/tests/testdata/warnings/4.in +0 -0
- {yara_x-0.12.0 → yara_x-0.14.0}/lib/src/compiler/tests/testdata/warnings/4.out +0 -0
- {yara_x-0.12.0 → yara_x-0.14.0}/lib/src/compiler/tests/testdata/warnings/5.in +0 -0
- {yara_x-0.12.0 → yara_x-0.14.0}/lib/src/compiler/tests/testdata/warnings/5.out +0 -0
- {yara_x-0.12.0 → yara_x-0.14.0}/lib/src/compiler/tests/testdata/warnings/6.in +0 -0
- {yara_x-0.12.0 → yara_x-0.14.0}/lib/src/compiler/tests/testdata/warnings/6.out +0 -0
- {yara_x-0.12.0 → yara_x-0.14.0}/lib/src/compiler/tests/testdata/warnings/7.in +0 -0
- {yara_x-0.12.0 → yara_x-0.14.0}/lib/src/compiler/tests/testdata/warnings/7.out +0 -0
- {yara_x-0.12.0 → yara_x-0.14.0}/lib/src/compiler/tests/testdata/warnings/8.in +0 -0
- {yara_x-0.12.0 → yara_x-0.14.0}/lib/src/compiler/tests/testdata/warnings/8.out +0 -0
- {yara_x-0.12.0 → yara_x-0.14.0}/lib/src/compiler/tests/testdata/warnings/9.in +0 -0
- {yara_x-0.12.0 → yara_x-0.14.0}/lib/src/compiler/tests/testdata/warnings/9.out +0 -0
- {yara_x-0.12.0 → yara_x-0.14.0}/lib/src/compiler/tests/testdata/warnings/no_warnings.in +0 -0
- {yara_x-0.12.0 → yara_x-0.14.0}/lib/src/compiler/tests/testdata/warnings/no_warnings.out +0 -0
- {yara_x-0.12.0 → yara_x-0.14.0}/lib/src/modules/console.rs +0 -0
- {yara_x-0.12.0 → yara_x-0.14.0}/lib/src/modules/cuckoo/mod.rs +0 -0
- {yara_x-0.12.0 → yara_x-0.14.0}/lib/src/modules/cuckoo/schema.rs +0 -0
- {yara_x-0.12.0 → yara_x-0.14.0}/lib/src/modules/cuckoo/tests/mod.rs +0 -0
- {yara_x-0.12.0 → yara_x-0.14.0}/lib/src/modules/cuckoo/tests/testdata/1.json +0 -0
- {yara_x-0.12.0 → yara_x-0.14.0}/lib/src/modules/cuckoo/tests/testdata/1.yar +0 -0
- {yara_x-0.12.0 → yara_x-0.14.0}/lib/src/modules/cuckoo/tests/testdata/2.json +0 -0
- {yara_x-0.12.0 → yara_x-0.14.0}/lib/src/modules/cuckoo/tests/testdata/2.yar +0 -0
- {yara_x-0.12.0 → yara_x-0.14.0}/lib/src/modules/dotnet/mod.rs +0 -0
- {yara_x-0.12.0 → yara_x-0.14.0}/lib/src/modules/dotnet/tests/testdata/605ebe5b5f4b94e1a73e0ad1162bd542e5cb948d1a4ea5a575a14d6b9d6ee849.in +0 -0
- {yara_x-0.12.0 → yara_x-0.14.0}/lib/src/modules/dotnet/tests/testdata/86a1e48cfc843eabfe1b468ef9358c1068950f849c612ab808225b359db0bb8c.in +0 -0
- {yara_x-0.12.0 → yara_x-0.14.0}/lib/src/modules/elf/tests/mod.rs +0 -0
- {yara_x-0.12.0 → yara_x-0.14.0}/lib/src/modules/hash/mod.rs +0 -0
- {yara_x-0.12.0 → yara_x-0.14.0}/lib/src/modules/hash/tests/mod.rs +0 -0
- {yara_x-0.12.0 → yara_x-0.14.0}/lib/src/modules/macho/tests/mod.rs +0 -0
- {yara_x-0.12.0 → yara_x-0.14.0}/lib/src/modules/magic/tests/mod.rs +0 -0
- {yara_x-0.12.0 → yara_x-0.14.0}/lib/src/modules/math.rs +0 -0
- {yara_x-0.12.0 → yara_x-0.14.0}/lib/src/modules/pe/rva2off.rs +0 -0
- {yara_x-0.12.0 → yara_x-0.14.0}/lib/src/modules/pe/tests/mod.rs +0 -0
- {yara_x-0.12.0 → yara_x-0.14.0}/lib/src/modules/protos/console.proto +0 -0
- {yara_x-0.12.0 → yara_x-0.14.0}/lib/src/modules/protos/cuckoo.proto +0 -0
- {yara_x-0.12.0 → yara_x-0.14.0}/lib/src/modules/protos/dotnet.proto +0 -0
- {yara_x-0.12.0 → yara_x-0.14.0}/lib/src/modules/protos/elf.proto +0 -0
- {yara_x-0.12.0 → yara_x-0.14.0}/lib/src/modules/protos/hash.proto +0 -0
- {yara_x-0.12.0 → yara_x-0.14.0}/lib/src/modules/protos/lnk.proto +0 -0
- {yara_x-0.12.0 → yara_x-0.14.0}/lib/src/modules/protos/magic.proto +0 -0
- {yara_x-0.12.0 → yara_x-0.14.0}/lib/src/modules/protos/math.proto +0 -0
- {yara_x-0.12.0 → yara_x-0.14.0}/lib/src/modules/protos/mods.proto +0 -0
- {yara_x-0.12.0 → yara_x-0.14.0}/lib/src/modules/protos/pe.proto +0 -0
- {yara_x-0.12.0 → yara_x-0.14.0}/lib/src/modules/protos/string.proto +0 -0
- {yara_x-0.12.0 → yara_x-0.14.0}/lib/src/modules/protos/test_proto3.proto +0 -0
- {yara_x-0.12.0 → yara_x-0.14.0}/lib/src/modules/protos/text.proto +0 -0
- {yara_x-0.12.0 → yara_x-0.14.0}/lib/src/modules/protos/time.proto +0 -0
- {yara_x-0.12.0 → yara_x-0.14.0}/lib/src/modules/protos/yaml.proto +0 -0
- {yara_x-0.12.0 → yara_x-0.14.0}/lib/src/modules/protos/yara.proto +0 -0
- {yara_x-0.12.0 → yara_x-0.14.0}/lib/src/modules/string.rs +0 -0
- {yara_x-0.12.0 → yara_x-0.14.0}/lib/src/modules/test_proto3/mod.rs +0 -0
- {yara_x-0.12.0 → yara_x-0.14.0}/lib/src/modules/tests.rs +0 -0
- {yara_x-0.12.0 → yara_x-0.14.0}/lib/src/modules/text.rs +0 -0
- {yara_x-0.12.0 → yara_x-0.14.0}/lib/src/modules/time.rs +0 -0
- {yara_x-0.12.0 → yara_x-0.14.0}/lib/src/re/bitmapset.rs +0 -0
- {yara_x-0.12.0 → yara_x-0.14.0}/lib/src/re/fast/mod.rs +0 -0
- {yara_x-0.12.0 → yara_x-0.14.0}/lib/src/re/parser.rs +0 -0
- {yara_x-0.12.0 → yara_x-0.14.0}/lib/src/re/thompson/mod.rs +0 -0
- {yara_x-0.12.0 → yara_x-0.14.0}/lib/src/scanner/matches.rs +0 -0
- {yara_x-0.12.0 → yara_x-0.14.0}/lib/src/scanner/tests.rs +0 -0
- {yara_x-0.12.0 → yara_x-0.14.0}/lib/src/string_pool.rs +0 -0
- {yara_x-0.12.0 → yara_x-0.14.0}/lib/src/tests/testdata/jumps.bin +0 -0
- {yara_x-0.12.0 → yara_x-0.14.0}/lib/src/types/array.rs +0 -0
- {yara_x-0.12.0 → yara_x-0.14.0}/lib/src/types/func.rs +0 -0
- {yara_x-0.12.0 → yara_x-0.14.0}/lib/src/types/map.rs +0 -0
- {yara_x-0.12.0 → yara_x-0.14.0}/lib/src/types/mod.rs +0 -0
- {yara_x-0.12.0 → yara_x-0.14.0}/lib/src/variables.rs +0 -0
- {yara_x-0.12.0 → yara_x-0.14.0}/lib/src/wasm/builder.rs +0 -0
- {yara_x-0.12.0 → yara_x-0.14.0}/lib/src/wasm/string.rs +0 -0
- {yara_x-0.12.0 → yara_x-0.14.0}/macros/Cargo.toml +0 -0
- {yara_x-0.12.0 → yara_x-0.14.0}/macros/src/error.rs +0 -0
- {yara_x-0.12.0 → yara_x-0.14.0}/macros/src/lib.rs +0 -0
- {yara_x-0.12.0 → yara_x-0.14.0}/macros/src/module_export.rs +0 -0
- {yara_x-0.12.0 → yara_x-0.14.0}/macros/src/module_main.rs +0 -0
- {yara_x-0.12.0 → yara_x-0.14.0}/macros/src/wasm_export.rs +0 -0
- {yara_x-0.12.0/proto-yaml → yara_x-0.14.0/parser}/README.md +0 -0
- {yara_x-0.12.0 → yara_x-0.14.0}/parser/src/ast/errors.rs +0 -0
- {yara_x-0.12.0 → yara_x-0.14.0}/parser/src/cst/syntax_kind.rs +0 -0
- {yara_x-0.12.0 → yara_x-0.14.0}/parser/src/cst/syntax_stream.rs +0 -0
- {yara_x-0.12.0 → yara_x-0.14.0}/parser/src/lib.rs +0 -0
- {yara_x-0.12.0 → yara_x-0.14.0}/parser/src/parser/tests/testdata/arithmetic-ops.ast +0 -0
- {yara_x-0.12.0 → yara_x-0.14.0}/parser/src/parser/tests/testdata/arithmetic-ops.cst +0 -0
- {yara_x-0.12.0 → yara_x-0.14.0}/parser/src/parser/tests/testdata/arithmetic-ops.in +0 -0
- {yara_x-0.12.0 → yara_x-0.14.0}/parser/src/parser/tests/testdata/basic-1.ast +0 -0
- {yara_x-0.12.0 → yara_x-0.14.0}/parser/src/parser/tests/testdata/basic-1.cst +0 -0
- {yara_x-0.12.0 → yara_x-0.14.0}/parser/src/parser/tests/testdata/basic-1.in +0 -0
- {yara_x-0.12.0 → yara_x-0.14.0}/parser/src/parser/tests/testdata/basic-2.ast +0 -0
- {yara_x-0.12.0 → yara_x-0.14.0}/parser/src/parser/tests/testdata/basic-2.cst +0 -0
- {yara_x-0.12.0 → yara_x-0.14.0}/parser/src/parser/tests/testdata/basic-2.in +0 -0
- {yara_x-0.12.0 → yara_x-0.14.0}/parser/src/parser/tests/testdata/basic-3.ast +0 -0
- {yara_x-0.12.0 → yara_x-0.14.0}/parser/src/parser/tests/testdata/basic-3.cst +0 -0
- {yara_x-0.12.0 → yara_x-0.14.0}/parser/src/parser/tests/testdata/basic-3.in +0 -0
- {yara_x-0.12.0 → yara_x-0.14.0}/parser/src/parser/tests/testdata/basic-4.ast +0 -0
- {yara_x-0.12.0 → yara_x-0.14.0}/parser/src/parser/tests/testdata/basic-4.cst +0 -0
- {yara_x-0.12.0 → yara_x-0.14.0}/parser/src/parser/tests/testdata/basic-4.in +0 -0
- {yara_x-0.12.0 → yara_x-0.14.0}/parser/src/parser/tests/testdata/basic-error-1.ast +0 -0
- {yara_x-0.12.0 → yara_x-0.14.0}/parser/src/parser/tests/testdata/basic-error-1.cst +0 -0
- {yara_x-0.12.0 → yara_x-0.14.0}/parser/src/parser/tests/testdata/basic-error-1.in +0 -0
- {yara_x-0.12.0 → yara_x-0.14.0}/parser/src/parser/tests/testdata/basic-error-2.ast +0 -0
- {yara_x-0.12.0 → yara_x-0.14.0}/parser/src/parser/tests/testdata/basic-error-2.cst +0 -0
- {yara_x-0.12.0 → yara_x-0.14.0}/parser/src/parser/tests/testdata/basic-error-2.in +0 -0
- {yara_x-0.12.0 → yara_x-0.14.0}/parser/src/parser/tests/testdata/basic-error-3.ast +0 -0
- {yara_x-0.12.0 → yara_x-0.14.0}/parser/src/parser/tests/testdata/basic-error-3.cst +0 -0
- {yara_x-0.12.0 → yara_x-0.14.0}/parser/src/parser/tests/testdata/basic-error-3.in +0 -0
- {yara_x-0.12.0 → yara_x-0.14.0}/parser/src/parser/tests/testdata/basic-error-4.ast +0 -0
- {yara_x-0.12.0 → yara_x-0.14.0}/parser/src/parser/tests/testdata/basic-error-4.cst +0 -0
- {yara_x-0.12.0 → yara_x-0.14.0}/parser/src/parser/tests/testdata/basic-error-4.in +0 -0
- {yara_x-0.12.0 → yara_x-0.14.0}/parser/src/parser/tests/testdata/basic-error-5.ast +0 -0
- {yara_x-0.12.0 → yara_x-0.14.0}/parser/src/parser/tests/testdata/basic-error-5.cst +0 -0
- {yara_x-0.12.0 → yara_x-0.14.0}/parser/src/parser/tests/testdata/basic-error-5.in +0 -0
- {yara_x-0.12.0 → yara_x-0.14.0}/parser/src/parser/tests/testdata/bitwise-ops-error-1.ast +0 -0
- {yara_x-0.12.0 → yara_x-0.14.0}/parser/src/parser/tests/testdata/bitwise-ops-error-1.cst +0 -0
- {yara_x-0.12.0 → yara_x-0.14.0}/parser/src/parser/tests/testdata/bitwise-ops-error-1.in +0 -0
- {yara_x-0.12.0 → yara_x-0.14.0}/parser/src/parser/tests/testdata/bitwise-ops.ast +0 -0
- {yara_x-0.12.0 → yara_x-0.14.0}/parser/src/parser/tests/testdata/bitwise-ops.cst +0 -0
- {yara_x-0.12.0 → yara_x-0.14.0}/parser/src/parser/tests/testdata/bitwise-ops.in +0 -0
- {yara_x-0.12.0 → yara_x-0.14.0}/parser/src/parser/tests/testdata/comments.ast +0 -0
- {yara_x-0.12.0 → yara_x-0.14.0}/parser/src/parser/tests/testdata/comments.cst +0 -0
- {yara_x-0.12.0 → yara_x-0.14.0}/parser/src/parser/tests/testdata/comments.in +0 -0
- {yara_x-0.12.0 → yara_x-0.14.0}/parser/src/parser/tests/testdata/expr-1.ast +0 -0
- {yara_x-0.12.0 → yara_x-0.14.0}/parser/src/parser/tests/testdata/expr-1.cst +0 -0
- {yara_x-0.12.0 → yara_x-0.14.0}/parser/src/parser/tests/testdata/expr-1.in +0 -0
- {yara_x-0.12.0 → yara_x-0.14.0}/parser/src/parser/tests/testdata/expr-2.ast +0 -0
- {yara_x-0.12.0 → yara_x-0.14.0}/parser/src/parser/tests/testdata/expr-2.cst +0 -0
- {yara_x-0.12.0 → yara_x-0.14.0}/parser/src/parser/tests/testdata/expr-2.in +0 -0
- {yara_x-0.12.0 → yara_x-0.14.0}/parser/src/parser/tests/testdata/expr-3.ast +0 -0
- {yara_x-0.12.0 → yara_x-0.14.0}/parser/src/parser/tests/testdata/expr-3.cst +0 -0
- {yara_x-0.12.0 → yara_x-0.14.0}/parser/src/parser/tests/testdata/expr-3.in +0 -0
- {yara_x-0.12.0 → yara_x-0.14.0}/parser/src/parser/tests/testdata/expr-4.ast +0 -0
- {yara_x-0.12.0 → yara_x-0.14.0}/parser/src/parser/tests/testdata/expr-4.cst +0 -0
- {yara_x-0.12.0 → yara_x-0.14.0}/parser/src/parser/tests/testdata/expr-4.in +0 -0
- {yara_x-0.12.0 → yara_x-0.14.0}/parser/src/parser/tests/testdata/expr-5.ast +0 -0
- {yara_x-0.12.0 → yara_x-0.14.0}/parser/src/parser/tests/testdata/expr-5.cst +0 -0
- {yara_x-0.12.0 → yara_x-0.14.0}/parser/src/parser/tests/testdata/expr-5.in +0 -0
- {yara_x-0.12.0 → yara_x-0.14.0}/parser/src/parser/tests/testdata/expr-6.ast +0 -0
- {yara_x-0.12.0 → yara_x-0.14.0}/parser/src/parser/tests/testdata/expr-6.cst +0 -0
- {yara_x-0.12.0 → yara_x-0.14.0}/parser/src/parser/tests/testdata/expr-6.in +0 -0
- {yara_x-0.12.0 → yara_x-0.14.0}/parser/src/parser/tests/testdata/expr-error-1.ast +0 -0
- {yara_x-0.12.0 → yara_x-0.14.0}/parser/src/parser/tests/testdata/expr-error-1.cst +0 -0
- {yara_x-0.12.0 → yara_x-0.14.0}/parser/src/parser/tests/testdata/expr-error-1.in +0 -0
- {yara_x-0.12.0 → yara_x-0.14.0}/parser/src/parser/tests/testdata/for-1.ast +0 -0
- {yara_x-0.12.0 → yara_x-0.14.0}/parser/src/parser/tests/testdata/for-1.cst +0 -0
- {yara_x-0.12.0 → yara_x-0.14.0}/parser/src/parser/tests/testdata/for-1.in +0 -0
- {yara_x-0.12.0 → yara_x-0.14.0}/parser/src/parser/tests/testdata/for-2.ast +0 -0
- {yara_x-0.12.0 → yara_x-0.14.0}/parser/src/parser/tests/testdata/for-2.cst +0 -0
- {yara_x-0.12.0 → yara_x-0.14.0}/parser/src/parser/tests/testdata/for-2.in +0 -0
- {yara_x-0.12.0 → yara_x-0.14.0}/parser/src/parser/tests/testdata/for-3.ast +0 -0
- {yara_x-0.12.0 → yara_x-0.14.0}/parser/src/parser/tests/testdata/for-3.cst +0 -0
- {yara_x-0.12.0 → yara_x-0.14.0}/parser/src/parser/tests/testdata/for-3.in +0 -0
- {yara_x-0.12.0 → yara_x-0.14.0}/parser/src/parser/tests/testdata/for-4.ast +0 -0
- {yara_x-0.12.0 → yara_x-0.14.0}/parser/src/parser/tests/testdata/for-4.cst +0 -0
- {yara_x-0.12.0 → yara_x-0.14.0}/parser/src/parser/tests/testdata/for-4.in +0 -0
- {yara_x-0.12.0 → yara_x-0.14.0}/parser/src/parser/tests/testdata/for-5.ast +0 -0
- {yara_x-0.12.0 → yara_x-0.14.0}/parser/src/parser/tests/testdata/for-5.cst +0 -0
- {yara_x-0.12.0 → yara_x-0.14.0}/parser/src/parser/tests/testdata/for-5.in +0 -0
- {yara_x-0.12.0 → yara_x-0.14.0}/parser/src/parser/tests/testdata/for-error-1.ast +0 -0
- {yara_x-0.12.0 → yara_x-0.14.0}/parser/src/parser/tests/testdata/for-error-1.cst +0 -0
- {yara_x-0.12.0 → yara_x-0.14.0}/parser/src/parser/tests/testdata/for-error-1.in +0 -0
- {yara_x-0.12.0 → yara_x-0.14.0}/parser/src/parser/tests/testdata/func-call.ast +0 -0
- {yara_x-0.12.0 → yara_x-0.14.0}/parser/src/parser/tests/testdata/func-call.cst +0 -0
- {yara_x-0.12.0 → yara_x-0.14.0}/parser/src/parser/tests/testdata/func-call.in +0 -0
- {yara_x-0.12.0 → yara_x-0.14.0}/parser/src/parser/tests/testdata/hex-patterns-1.ast +0 -0
- {yara_x-0.12.0 → yara_x-0.14.0}/parser/src/parser/tests/testdata/hex-patterns-1.cst +0 -0
- {yara_x-0.12.0 → yara_x-0.14.0}/parser/src/parser/tests/testdata/hex-patterns-1.in +0 -0
- {yara_x-0.12.0 → yara_x-0.14.0}/parser/src/parser/tests/testdata/hex-patterns-2.ast +0 -0
- {yara_x-0.12.0 → yara_x-0.14.0}/parser/src/parser/tests/testdata/hex-patterns-2.cst +0 -0
- {yara_x-0.12.0 → yara_x-0.14.0}/parser/src/parser/tests/testdata/hex-patterns-2.in +0 -0
- {yara_x-0.12.0 → yara_x-0.14.0}/parser/src/parser/tests/testdata/hex-patterns-3.ast +0 -0
- {yara_x-0.12.0 → yara_x-0.14.0}/parser/src/parser/tests/testdata/hex-patterns-3.cst +0 -0
- {yara_x-0.12.0 → yara_x-0.14.0}/parser/src/parser/tests/testdata/hex-patterns-3.in +0 -0
- {yara_x-0.12.0 → yara_x-0.14.0}/parser/src/parser/tests/testdata/hex-patterns-error-1.ast +0 -0
- {yara_x-0.12.0 → yara_x-0.14.0}/parser/src/parser/tests/testdata/hex-patterns-error-1.cst +0 -0
- {yara_x-0.12.0 → yara_x-0.14.0}/parser/src/parser/tests/testdata/hex-patterns-error-1.in +0 -0
- {yara_x-0.12.0 → yara_x-0.14.0}/parser/src/parser/tests/testdata/hex-patterns-error-2.ast +0 -0
- {yara_x-0.12.0 → yara_x-0.14.0}/parser/src/parser/tests/testdata/hex-patterns-error-2.cst +0 -0
- {yara_x-0.12.0 → yara_x-0.14.0}/parser/src/parser/tests/testdata/hex-patterns-error-2.in +0 -0
- {yara_x-0.12.0 → yara_x-0.14.0}/parser/src/parser/tests/testdata/meta-error-1.ast +0 -0
- {yara_x-0.12.0 → yara_x-0.14.0}/parser/src/parser/tests/testdata/meta-error-1.cst +0 -0
- {yara_x-0.12.0 → yara_x-0.14.0}/parser/src/parser/tests/testdata/meta-error-1.in +0 -0
- {yara_x-0.12.0 → yara_x-0.14.0}/parser/src/parser/tests/testdata/meta-error-2.ast +0 -0
- {yara_x-0.12.0 → yara_x-0.14.0}/parser/src/parser/tests/testdata/meta-error-2.cst +0 -0
- {yara_x-0.12.0 → yara_x-0.14.0}/parser/src/parser/tests/testdata/meta-error-2.in +0 -0
- {yara_x-0.12.0 → yara_x-0.14.0}/parser/src/parser/tests/testdata/meta-error-3.ast +0 -0
- {yara_x-0.12.0 → yara_x-0.14.0}/parser/src/parser/tests/testdata/meta-error-3.cst +0 -0
- {yara_x-0.12.0 → yara_x-0.14.0}/parser/src/parser/tests/testdata/meta-error-3.in +0 -0
- {yara_x-0.12.0 → yara_x-0.14.0}/parser/src/parser/tests/testdata/meta-error-4.ast +0 -0
- {yara_x-0.12.0 → yara_x-0.14.0}/parser/src/parser/tests/testdata/meta-error-4.cst +0 -0
- {yara_x-0.12.0 → yara_x-0.14.0}/parser/src/parser/tests/testdata/meta-error-4.in +0 -0
- {yara_x-0.12.0 → yara_x-0.14.0}/parser/src/parser/tests/testdata/meta-error-5.ast +0 -0
- {yara_x-0.12.0 → yara_x-0.14.0}/parser/src/parser/tests/testdata/meta-error-5.cst +0 -0
- {yara_x-0.12.0 → yara_x-0.14.0}/parser/src/parser/tests/testdata/meta-error-5.in +0 -0
- {yara_x-0.12.0 → yara_x-0.14.0}/parser/src/parser/tests/testdata/meta-error-6.ast +0 -0
- {yara_x-0.12.0 → yara_x-0.14.0}/parser/src/parser/tests/testdata/meta-error-6.cst +0 -0
- {yara_x-0.12.0 → yara_x-0.14.0}/parser/src/parser/tests/testdata/meta-error-6.in +0 -0
- {yara_x-0.12.0 → yara_x-0.14.0}/parser/src/parser/tests/testdata/meta.ast +0 -0
- {yara_x-0.12.0 → yara_x-0.14.0}/parser/src/parser/tests/testdata/meta.cst +0 -0
- {yara_x-0.12.0 → yara_x-0.14.0}/parser/src/parser/tests/testdata/meta.in +0 -0
- {yara_x-0.12.0 → yara_x-0.14.0}/parser/src/parser/tests/testdata/of-1.ast +0 -0
- {yara_x-0.12.0 → yara_x-0.14.0}/parser/src/parser/tests/testdata/of-1.cst +0 -0
- {yara_x-0.12.0 → yara_x-0.14.0}/parser/src/parser/tests/testdata/of-1.in +0 -0
- {yara_x-0.12.0 → yara_x-0.14.0}/parser/src/parser/tests/testdata/of-error-1.ast +0 -0
- {yara_x-0.12.0 → yara_x-0.14.0}/parser/src/parser/tests/testdata/of-error-1.cst +0 -0
- {yara_x-0.12.0 → yara_x-0.14.0}/parser/src/parser/tests/testdata/of-error-1.in +0 -0
- {yara_x-0.12.0 → yara_x-0.14.0}/parser/src/parser/tests/testdata/pattern-mods-1.ast +0 -0
- {yara_x-0.12.0 → yara_x-0.14.0}/parser/src/parser/tests/testdata/pattern-mods-1.cst +0 -0
- {yara_x-0.12.0 → yara_x-0.14.0}/parser/src/parser/tests/testdata/pattern-mods-1.in +0 -0
- {yara_x-0.12.0 → yara_x-0.14.0}/parser/src/parser/tests/testdata/pattern-mods-error-1.ast +0 -0
- {yara_x-0.12.0 → yara_x-0.14.0}/parser/src/parser/tests/testdata/pattern-mods-error-1.cst +0 -0
- {yara_x-0.12.0 → yara_x-0.14.0}/parser/src/parser/tests/testdata/pattern-mods-error-1.in +0 -0
- {yara_x-0.12.0 → yara_x-0.14.0}/parser/src/parser/tests/testdata/patterns-1.ast +0 -0
- {yara_x-0.12.0 → yara_x-0.14.0}/parser/src/parser/tests/testdata/patterns-1.cst +0 -0
- {yara_x-0.12.0 → yara_x-0.14.0}/parser/src/parser/tests/testdata/patterns-1.in +0 -0
- {yara_x-0.12.0 → yara_x-0.14.0}/parser/src/parser/tests/testdata/patterns-2.ast +0 -0
- {yara_x-0.12.0 → yara_x-0.14.0}/parser/src/parser/tests/testdata/patterns-2.cst +0 -0
- {yara_x-0.12.0 → yara_x-0.14.0}/parser/src/parser/tests/testdata/patterns-2.in +0 -0
- {yara_x-0.12.0 → yara_x-0.14.0}/parser/src/parser/tests/testdata/patterns-3.ast +0 -0
- {yara_x-0.12.0 → yara_x-0.14.0}/parser/src/parser/tests/testdata/patterns-3.cst +0 -0
- {yara_x-0.12.0 → yara_x-0.14.0}/parser/src/parser/tests/testdata/patterns-3.in +0 -0
- {yara_x-0.12.0 → yara_x-0.14.0}/parser/src/parser/tests/testdata/patterns-error-1.ast +0 -0
- {yara_x-0.12.0 → yara_x-0.14.0}/parser/src/parser/tests/testdata/patterns-error-1.cst +0 -0
- {yara_x-0.12.0 → yara_x-0.14.0}/parser/src/parser/tests/testdata/patterns-error-1.in +0 -0
- {yara_x-0.12.0 → yara_x-0.14.0}/parser/src/parser/tests/testdata/patterns-error-2.ast +0 -0
- {yara_x-0.12.0 → yara_x-0.14.0}/parser/src/parser/tests/testdata/patterns-error-2.cst +0 -0
- {yara_x-0.12.0 → yara_x-0.14.0}/parser/src/parser/tests/testdata/patterns-error-2.in +0 -0
- {yara_x-0.12.0 → yara_x-0.14.0}/parser/src/parser/tests/testdata/patterns-error-3.ast +0 -0
- {yara_x-0.12.0 → yara_x-0.14.0}/parser/src/parser/tests/testdata/patterns-error-3.cst +0 -0
- {yara_x-0.12.0 → yara_x-0.14.0}/parser/src/parser/tests/testdata/patterns-error-3.in +0 -0
- {yara_x-0.12.0 → yara_x-0.14.0}/parser/src/parser/tests/testdata/patterns-error-4.ast +0 -0
- {yara_x-0.12.0 → yara_x-0.14.0}/parser/src/parser/tests/testdata/patterns-error-4.cst +0 -0
- {yara_x-0.12.0 → yara_x-0.14.0}/parser/src/parser/tests/testdata/patterns-error-4.in +0 -0
- {yara_x-0.12.0 → yara_x-0.14.0}/parser/src/parser/tests/testdata/patterns-error-5.ast +0 -0
- {yara_x-0.12.0 → yara_x-0.14.0}/parser/src/parser/tests/testdata/patterns-error-5.cst +0 -0
- {yara_x-0.12.0 → yara_x-0.14.0}/parser/src/parser/tests/testdata/patterns-error-5.in +0 -0
- {yara_x-0.12.0 → yara_x-0.14.0}/parser/src/parser/tests/testdata/patterns-error-6.ast +0 -0
- {yara_x-0.12.0 → yara_x-0.14.0}/parser/src/parser/tests/testdata/patterns-error-6.cst +0 -0
- {yara_x-0.12.0 → yara_x-0.14.0}/parser/src/parser/tests/testdata/patterns-error-6.in +0 -0
- {yara_x-0.12.0 → yara_x-0.14.0}/parser/src/parser/tests/testdata/patterns-error-7.ast +0 -0
- {yara_x-0.12.0 → yara_x-0.14.0}/parser/src/parser/tests/testdata/patterns-error-7.cst +0 -0
- {yara_x-0.12.0 → yara_x-0.14.0}/parser/src/parser/tests/testdata/patterns-error-7.in +0 -0
- {yara_x-0.12.0 → yara_x-0.14.0}/parser/src/parser/tests/testdata/rule-mods-1.ast +0 -0
- {yara_x-0.12.0 → yara_x-0.14.0}/parser/src/parser/tests/testdata/rule-mods-1.cst +0 -0
- {yara_x-0.12.0 → yara_x-0.14.0}/parser/src/parser/tests/testdata/rule-mods-1.in +0 -0
- {yara_x-0.12.0 → yara_x-0.14.0}/parser/src/parser/tests/testdata/rule-tags-error-1.ast +0 -0
- {yara_x-0.12.0 → yara_x-0.14.0}/parser/src/parser/tests/testdata/rule-tags-error-1.cst +0 -0
- {yara_x-0.12.0 → yara_x-0.14.0}/parser/src/parser/tests/testdata/rule-tags-error-1.in +0 -0
- {yara_x-0.12.0 → yara_x-0.14.0}/parser/src/parser/tests/testdata/rule-tags-error-2.ast +0 -0
- {yara_x-0.12.0 → yara_x-0.14.0}/parser/src/parser/tests/testdata/rule-tags-error-2.cst +0 -0
- {yara_x-0.12.0 → yara_x-0.14.0}/parser/src/parser/tests/testdata/rule-tags-error-2.in +0 -0
- {yara_x-0.12.0 → yara_x-0.14.0}/parser/src/parser/tests/testdata/rule-tags-error-3.ast +0 -0
- {yara_x-0.12.0 → yara_x-0.14.0}/parser/src/parser/tests/testdata/rule-tags-error-3.cst +0 -0
- {yara_x-0.12.0 → yara_x-0.14.0}/parser/src/parser/tests/testdata/rule-tags-error-3.in +0 -0
- {yara_x-0.12.0 → yara_x-0.14.0}/parser/src/parser/tests/testdata/rule-tags.ast +0 -0
- {yara_x-0.12.0 → yara_x-0.14.0}/parser/src/parser/tests/testdata/rule-tags.cst +0 -0
- {yara_x-0.12.0 → yara_x-0.14.0}/parser/src/parser/tests/testdata/rule-tags.in +0 -0
- {yara_x-0.12.0 → yara_x-0.14.0}/parser/src/parser/tests/testdata/with-1.ast +0 -0
- {yara_x-0.12.0 → yara_x-0.14.0}/parser/src/parser/tests/testdata/with-1.cst +0 -0
- {yara_x-0.12.0 → yara_x-0.14.0}/parser/src/parser/tests/testdata/with-1.in +0 -0
- {yara_x-0.12.0 → yara_x-0.14.0}/parser/src/parser/tests/testdata/with-2.ast +0 -0
- {yara_x-0.12.0 → yara_x-0.14.0}/parser/src/parser/tests/testdata/with-2.cst +0 -0
- {yara_x-0.12.0 → yara_x-0.14.0}/parser/src/parser/tests/testdata/with-2.in +0 -0
- {yara_x-0.12.0 → yara_x-0.14.0}/parser/src/parser/tests/testdata/with-error-1.ast +0 -0
- {yara_x-0.12.0 → yara_x-0.14.0}/parser/src/parser/tests/testdata/with-error-1.cst +0 -0
- {yara_x-0.12.0 → yara_x-0.14.0}/parser/src/parser/tests/testdata/with-error-1.in +0 -0
- {yara_x-0.12.0 → yara_x-0.14.0}/parser/src/parser/tests/testdata/with-error-2.ast +0 -0
- {yara_x-0.12.0 → yara_x-0.14.0}/parser/src/parser/tests/testdata/with-error-2.cst +0 -0
- {yara_x-0.12.0 → yara_x-0.14.0}/parser/src/parser/tests/testdata/with-error-2.in +0 -0
- {yara_x-0.12.0 → yara_x-0.14.0}/parser/src/parser/tests/testdata/with-error-3.ast +0 -0
- {yara_x-0.12.0 → yara_x-0.14.0}/parser/src/parser/tests/testdata/with-error-3.cst +0 -0
- {yara_x-0.12.0 → yara_x-0.14.0}/parser/src/parser/tests/testdata/with-error-3.in +0 -0
- {yara_x-0.12.0 → yara_x-0.14.0}/parser/src/tokenizer/tests.rs +0 -0
- {yara_x-0.12.0 → yara_x-0.14.0}/parser/src/tokenizer/tokens.rs +0 -0
- {yara_x-0.12.0 → yara_x-0.14.0}/proto/Cargo.toml +0 -0
- {yara_x-0.12.0 → yara_x-0.14.0}/proto/build.rs +0 -0
- {yara_x-0.12.0 → yara_x-0.14.0}/proto/src/lib.rs +0 -0
- {yara_x-0.12.0 → yara_x-0.14.0}/proto/src/yara.proto +0 -0
- {yara_x-0.12.0 → yara_x-0.14.0}/proto-yaml/Cargo.toml +0 -0
- {yara_x-0.12.0/proto → yara_x-0.14.0/proto-yaml}/README.md +0 -0
- {yara_x-0.12.0 → yara_x-0.14.0}/proto-yaml/build.rs +0 -0
- {yara_x-0.12.0 → yara_x-0.14.0}/proto-yaml/src/lib.rs +0 -0
- {yara_x-0.12.0 → yara_x-0.14.0}/proto-yaml/src/tests/mod.rs +0 -0
- {yara_x-0.12.0 → yara_x-0.14.0}/proto-yaml/src/tests/test.proto +0 -0
- {yara_x-0.12.0 → yara_x-0.14.0}/proto-yaml/src/tests/testdata/1.in +0 -0
- {yara_x-0.12.0 → yara_x-0.14.0}/proto-yaml/src/tests/testdata/1.out +0 -0
- {yara_x-0.12.0 → yara_x-0.14.0}/proto-yaml/src/yaml.proto +0 -0
- {yara_x-0.12.0 → yara_x-0.14.0}/py/README.md +0 -0
- {yara_x-0.12.0 → yara_x-0.14.0}/py/build.rs +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]]
|
|
@@ -58,6 +77,12 @@ dependencies = [
|
|
|
58
77
|
"alloc-no-stdlib",
|
|
59
78
|
]
|
|
60
79
|
|
|
80
|
+
[[package]]
|
|
81
|
+
name = "allocator-api2"
|
|
82
|
+
version = "0.2.21"
|
|
83
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
84
|
+
checksum = "683d7910e743518b0e34f1186f92494becacb047c7b6bf616c96772180fef923"
|
|
85
|
+
|
|
61
86
|
[[package]]
|
|
62
87
|
name = "android-tzdata"
|
|
63
88
|
version = "0.1.1"
|
|
@@ -124,19 +149,20 @@ dependencies = [
|
|
|
124
149
|
|
|
125
150
|
[[package]]
|
|
126
151
|
name = "anstyle-wincon"
|
|
127
|
-
version = "3.0.
|
|
152
|
+
version = "3.0.7"
|
|
128
153
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
129
|
-
checksum = "
|
|
154
|
+
checksum = "ca3534e77181a9cc07539ad51f2141fe32f6c3ffd4df76db8ad92346b003ae4e"
|
|
130
155
|
dependencies = [
|
|
131
156
|
"anstyle",
|
|
157
|
+
"once_cell",
|
|
132
158
|
"windows-sys 0.59.0",
|
|
133
159
|
]
|
|
134
160
|
|
|
135
161
|
[[package]]
|
|
136
162
|
name = "anyhow"
|
|
137
|
-
version = "1.0.
|
|
163
|
+
version = "1.0.97"
|
|
138
164
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
139
|
-
checksum = "
|
|
165
|
+
checksum = "dcfed56ad506cb2c684a14971b8861fdc3baaaae314b9e5f9bb532cbe3ba7a4f"
|
|
140
166
|
|
|
141
167
|
[[package]]
|
|
142
168
|
name = "arbitrary"
|
|
@@ -149,9 +175,12 @@ dependencies = [
|
|
|
149
175
|
|
|
150
176
|
[[package]]
|
|
151
177
|
name = "array-bytes"
|
|
152
|
-
version = "
|
|
178
|
+
version = "9.1.2"
|
|
153
179
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
154
|
-
checksum = "
|
|
180
|
+
checksum = "4449507daf4f07a8c8309e122d32a53d15c9f33e77eaf01c839fea42ccd4d673"
|
|
181
|
+
dependencies = [
|
|
182
|
+
"smallvec",
|
|
183
|
+
]
|
|
155
184
|
|
|
156
185
|
[[package]]
|
|
157
186
|
name = "ascii_tree"
|
|
@@ -161,9 +190,9 @@ checksum = "ca6c635b3aa665c649ad1415f1573c85957dfa47690ec27aebe7ec17efe3c643"
|
|
|
161
190
|
|
|
162
191
|
[[package]]
|
|
163
192
|
name = "asn1-rs"
|
|
164
|
-
version = "0.
|
|
193
|
+
version = "0.7.1"
|
|
165
194
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
166
|
-
checksum = "
|
|
195
|
+
checksum = "56624a96882bb8c26d61312ae18cb45868e5a9992ea73c58e45c3101e56a1e60"
|
|
167
196
|
dependencies = [
|
|
168
197
|
"asn1-rs-derive",
|
|
169
198
|
"asn1-rs-impl",
|
|
@@ -171,19 +200,19 @@ dependencies = [
|
|
|
171
200
|
"nom 7.1.3",
|
|
172
201
|
"num-traits",
|
|
173
202
|
"rusticata-macros",
|
|
174
|
-
"thiserror
|
|
203
|
+
"thiserror 2.0.12",
|
|
175
204
|
"time",
|
|
176
205
|
]
|
|
177
206
|
|
|
178
207
|
[[package]]
|
|
179
208
|
name = "asn1-rs-derive"
|
|
180
|
-
version = "0.
|
|
209
|
+
version = "0.6.0"
|
|
181
210
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
182
|
-
checksum = "
|
|
211
|
+
checksum = "3109e49b1e4909e9db6515a30c633684d68cdeaa252f215214cb4fa1a5bfee2c"
|
|
183
212
|
dependencies = [
|
|
184
213
|
"proc-macro2",
|
|
185
214
|
"quote",
|
|
186
|
-
"syn 2.0.
|
|
215
|
+
"syn 2.0.100",
|
|
187
216
|
"synstructure",
|
|
188
217
|
]
|
|
189
218
|
|
|
@@ -195,7 +224,55 @@ checksum = "7b18050c2cd6fe86c3a76584ef5e0baf286d038cda203eb6223df2cc413565f7"
|
|
|
195
224
|
dependencies = [
|
|
196
225
|
"proc-macro2",
|
|
197
226
|
"quote",
|
|
198
|
-
"syn 2.0.
|
|
227
|
+
"syn 2.0.100",
|
|
228
|
+
]
|
|
229
|
+
|
|
230
|
+
[[package]]
|
|
231
|
+
name = "assert_cmd"
|
|
232
|
+
version = "2.0.16"
|
|
233
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
234
|
+
checksum = "dc1835b7f27878de8525dc71410b5a31cdcc5f230aed5ba5df968e09c201b23d"
|
|
235
|
+
dependencies = [
|
|
236
|
+
"anstyle",
|
|
237
|
+
"bstr",
|
|
238
|
+
"doc-comment",
|
|
239
|
+
"libc",
|
|
240
|
+
"predicates",
|
|
241
|
+
"predicates-core",
|
|
242
|
+
"predicates-tree",
|
|
243
|
+
"wait-timeout",
|
|
244
|
+
]
|
|
245
|
+
|
|
246
|
+
[[package]]
|
|
247
|
+
name = "assert_fs"
|
|
248
|
+
version = "1.1.2"
|
|
249
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
250
|
+
checksum = "7efdb1fdb47602827a342857666feb372712cbc64b414172bd6b167a02927674"
|
|
251
|
+
dependencies = [
|
|
252
|
+
"anstyle",
|
|
253
|
+
"doc-comment",
|
|
254
|
+
"globwalk",
|
|
255
|
+
"predicates",
|
|
256
|
+
"predicates-core",
|
|
257
|
+
"predicates-tree",
|
|
258
|
+
"tempfile",
|
|
259
|
+
]
|
|
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",
|
|
199
276
|
]
|
|
200
277
|
|
|
201
278
|
[[package]]
|
|
@@ -213,6 +290,21 @@ version = "1.4.0"
|
|
|
213
290
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
214
291
|
checksum = "ace50bade8e6234aa140d9a2f552bbee1db4d353f69b8217bc503490fc1a9f26"
|
|
215
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
|
+
|
|
216
308
|
[[package]]
|
|
217
309
|
name = "base16ct"
|
|
218
310
|
version = "0.2.0"
|
|
@@ -233,9 +325,9 @@ checksum = "72b3254f16251a8381aa12e40e3c4d2f0199f8c6508fbecb9d91f575e0fbb8c6"
|
|
|
233
325
|
|
|
234
326
|
[[package]]
|
|
235
327
|
name = "base64ct"
|
|
236
|
-
version = "1.
|
|
328
|
+
version = "1.7.3"
|
|
237
329
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
238
|
-
checksum = "
|
|
330
|
+
checksum = "89e25b6adfb930f02d1981565a6e5d9c547ac15a96606256d3b59040e5cd4ca3"
|
|
239
331
|
|
|
240
332
|
[[package]]
|
|
241
333
|
name = "beef"
|
|
@@ -260,15 +352,12 @@ checksum = "bef38d45163c2f1dde094a7dfd33ccf595c92905c8f8f4fdc18d06fb1037718a"
|
|
|
260
352
|
|
|
261
353
|
[[package]]
|
|
262
354
|
name = "bitflags"
|
|
263
|
-
version = "2.
|
|
355
|
+
version = "2.9.0"
|
|
264
356
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
265
|
-
checksum = "
|
|
266
|
-
|
|
267
|
-
|
|
268
|
-
|
|
269
|
-
version = "0.5.0"
|
|
270
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
271
|
-
checksum = "5da9b3d9f6f585199287a473f4f8dfab6566cf827d15c00c219f53c645687ead"
|
|
357
|
+
checksum = "5c8214115b7bf84099f1309324e63141d4c5d7cc26862f97a0a857dbefe165bd"
|
|
358
|
+
dependencies = [
|
|
359
|
+
"serde",
|
|
360
|
+
]
|
|
272
361
|
|
|
273
362
|
[[package]]
|
|
274
363
|
name = "bitvec"
|
|
@@ -302,9 +391,9 @@ dependencies = [
|
|
|
302
391
|
|
|
303
392
|
[[package]]
|
|
304
393
|
name = "brotli"
|
|
305
|
-
version = "
|
|
394
|
+
version = "7.0.0"
|
|
306
395
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
307
|
-
checksum = "
|
|
396
|
+
checksum = "cc97b8f16f944bba54f0433f07e30be199b6dc2bd25937444bbad560bcea29bd"
|
|
308
397
|
dependencies = [
|
|
309
398
|
"alloc-no-stdlib",
|
|
310
399
|
"alloc-stdlib",
|
|
@@ -313,9 +402,9 @@ dependencies = [
|
|
|
313
402
|
|
|
314
403
|
[[package]]
|
|
315
404
|
name = "brotli-decompressor"
|
|
316
|
-
version = "
|
|
405
|
+
version = "4.0.2"
|
|
317
406
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
318
|
-
checksum = "
|
|
407
|
+
checksum = "74fa05ad7d803d413eb8380983b092cbbaf9a85f151b871360e7b00cd7060b37"
|
|
319
408
|
dependencies = [
|
|
320
409
|
"alloc-no-stdlib",
|
|
321
410
|
"alloc-stdlib",
|
|
@@ -323,9 +412,9 @@ dependencies = [
|
|
|
323
412
|
|
|
324
413
|
[[package]]
|
|
325
414
|
name = "bstr"
|
|
326
|
-
version = "1.11.
|
|
415
|
+
version = "1.11.3"
|
|
327
416
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
328
|
-
checksum = "
|
|
417
|
+
checksum = "531a9155a481e2ee699d4f98f43c0ca4ff8ee1bfd55c31e9e98fb29d2b176fe0"
|
|
329
418
|
dependencies = [
|
|
330
419
|
"memchr",
|
|
331
420
|
"regex-automata",
|
|
@@ -334,9 +423,12 @@ dependencies = [
|
|
|
334
423
|
|
|
335
424
|
[[package]]
|
|
336
425
|
name = "bumpalo"
|
|
337
|
-
version = "3.
|
|
426
|
+
version = "3.17.0"
|
|
338
427
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
339
|
-
checksum = "
|
|
428
|
+
checksum = "1628fb46dfa0b37568d12e5edd512553eccf6a22a78e8bde00bb4aed84d5bdbf"
|
|
429
|
+
dependencies = [
|
|
430
|
+
"allocator-api2",
|
|
431
|
+
]
|
|
340
432
|
|
|
341
433
|
[[package]]
|
|
342
434
|
name = "bytecount"
|
|
@@ -346,9 +438,9 @@ checksum = "5ce89b21cab1437276d2650d57e971f9d548a2d9037cc231abdc0562b97498ce"
|
|
|
346
438
|
|
|
347
439
|
[[package]]
|
|
348
440
|
name = "bytemuck"
|
|
349
|
-
version = "1.
|
|
441
|
+
version = "1.22.0"
|
|
350
442
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
351
|
-
checksum = "
|
|
443
|
+
checksum = "b6b1fc10dbac614ebc03540c9dbd60e83887fda27794998c6528f1782047d540"
|
|
352
444
|
|
|
353
445
|
[[package]]
|
|
354
446
|
name = "byteorder"
|
|
@@ -358,28 +450,26 @@ checksum = "1fd0f2584146f6f2ef48085050886acf353beff7305ebd1ae69500e27c67f64b"
|
|
|
358
450
|
|
|
359
451
|
[[package]]
|
|
360
452
|
name = "bytes"
|
|
361
|
-
version = "1.
|
|
453
|
+
version = "1.10.1"
|
|
362
454
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
363
|
-
checksum = "
|
|
455
|
+
checksum = "d71b6127be86fdcfddb610f7182ac57211d4b18a3e9c82eb2d17662f2227ad6a"
|
|
364
456
|
|
|
365
457
|
[[package]]
|
|
366
458
|
name = "bzip2"
|
|
367
|
-
version = "0.
|
|
459
|
+
version = "0.5.2"
|
|
368
460
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
369
|
-
checksum = "
|
|
461
|
+
checksum = "49ecfb22d906f800d4fe833b6282cf4dc1c298f5057ca0b5445e5c209735ca47"
|
|
370
462
|
dependencies = [
|
|
371
463
|
"bzip2-sys",
|
|
372
|
-
"libc",
|
|
373
464
|
]
|
|
374
465
|
|
|
375
466
|
[[package]]
|
|
376
467
|
name = "bzip2-sys"
|
|
377
|
-
version = "0.1.
|
|
468
|
+
version = "0.1.13+1.0.8"
|
|
378
469
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
379
|
-
checksum = "
|
|
470
|
+
checksum = "225bff33b2141874fe80d71e07d6eec4f85c5c216453dd96388240f96e1acc14"
|
|
380
471
|
dependencies = [
|
|
381
472
|
"cc",
|
|
382
|
-
"libc",
|
|
383
473
|
"pkg-config",
|
|
384
474
|
]
|
|
385
475
|
|
|
@@ -409,7 +499,7 @@ checksum = "4acbb09d9ee8e23699b9634375c72795d095bf268439da88562cf9b501f181fa"
|
|
|
409
499
|
dependencies = [
|
|
410
500
|
"camino",
|
|
411
501
|
"cargo-platform",
|
|
412
|
-
"semver 1.0.
|
|
502
|
+
"semver 1.0.26",
|
|
413
503
|
"serde",
|
|
414
504
|
"serde_json",
|
|
415
505
|
]
|
|
@@ -425,28 +515,28 @@ dependencies = [
|
|
|
425
515
|
|
|
426
516
|
[[package]]
|
|
427
517
|
name = "cbindgen"
|
|
428
|
-
version = "0.
|
|
518
|
+
version = "0.28.0"
|
|
429
519
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
430
|
-
checksum = "
|
|
520
|
+
checksum = "eadd868a2ce9ca38de7eeafdcec9c7065ef89b42b32f0839278d55f35c54d1ff"
|
|
431
521
|
dependencies = [
|
|
432
522
|
"clap",
|
|
433
523
|
"heck 0.4.1",
|
|
434
|
-
"indexmap 2.
|
|
524
|
+
"indexmap 2.8.0",
|
|
435
525
|
"log",
|
|
436
526
|
"proc-macro2",
|
|
437
527
|
"quote",
|
|
438
528
|
"serde",
|
|
439
529
|
"serde_json",
|
|
440
|
-
"syn 2.0.
|
|
530
|
+
"syn 2.0.100",
|
|
441
531
|
"tempfile",
|
|
442
532
|
"toml",
|
|
443
533
|
]
|
|
444
534
|
|
|
445
535
|
[[package]]
|
|
446
536
|
name = "cc"
|
|
447
|
-
version = "1.2.
|
|
537
|
+
version = "1.2.17"
|
|
448
538
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
449
|
-
checksum = "
|
|
539
|
+
checksum = "1fcb57c740ae1daf453ae85f16e37396f672b039e00d9d866e07ddb24e328e3a"
|
|
450
540
|
dependencies = [
|
|
451
541
|
"jobserver",
|
|
452
542
|
"libc",
|
|
@@ -472,16 +562,16 @@ dependencies = [
|
|
|
472
562
|
|
|
473
563
|
[[package]]
|
|
474
564
|
name = "chrono"
|
|
475
|
-
version = "0.4.
|
|
565
|
+
version = "0.4.40"
|
|
476
566
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
477
|
-
checksum = "
|
|
567
|
+
checksum = "1a7964611d71df112cb1730f2ee67324fcf4d0fc6606acbbe9bfe06df124637c"
|
|
478
568
|
dependencies = [
|
|
479
569
|
"android-tzdata",
|
|
480
570
|
"iana-time-zone",
|
|
481
571
|
"js-sys",
|
|
482
572
|
"num-traits",
|
|
483
573
|
"wasm-bindgen",
|
|
484
|
-
"windows-
|
|
574
|
+
"windows-link",
|
|
485
575
|
]
|
|
486
576
|
|
|
487
577
|
[[package]]
|
|
@@ -496,9 +586,9 @@ dependencies = [
|
|
|
496
586
|
|
|
497
587
|
[[package]]
|
|
498
588
|
name = "clap"
|
|
499
|
-
version = "4.5.
|
|
589
|
+
version = "4.5.34"
|
|
500
590
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
501
|
-
checksum = "
|
|
591
|
+
checksum = "e958897981290da2a852763fe9cdb89cd36977a5d729023127095fa94d95e2ff"
|
|
502
592
|
dependencies = [
|
|
503
593
|
"clap_builder",
|
|
504
594
|
"clap_derive",
|
|
@@ -506,9 +596,9 @@ dependencies = [
|
|
|
506
596
|
|
|
507
597
|
[[package]]
|
|
508
598
|
name = "clap_builder"
|
|
509
|
-
version = "4.5.
|
|
599
|
+
version = "4.5.34"
|
|
510
600
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
511
|
-
checksum = "
|
|
601
|
+
checksum = "83b0f35019843db2160b5bb19ae09b4e6411ac33fc6a712003c33e03090e2489"
|
|
512
602
|
dependencies = [
|
|
513
603
|
"anstream",
|
|
514
604
|
"anstyle",
|
|
@@ -518,23 +608,23 @@ dependencies = [
|
|
|
518
608
|
|
|
519
609
|
[[package]]
|
|
520
610
|
name = "clap_complete"
|
|
521
|
-
version = "4.5.
|
|
611
|
+
version = "4.5.47"
|
|
522
612
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
523
|
-
checksum = "
|
|
613
|
+
checksum = "c06f5378ea264ad4f82bbc826628b5aad714a75abf6ece087e923010eb937fb6"
|
|
524
614
|
dependencies = [
|
|
525
615
|
"clap",
|
|
526
616
|
]
|
|
527
617
|
|
|
528
618
|
[[package]]
|
|
529
619
|
name = "clap_derive"
|
|
530
|
-
version = "4.5.
|
|
620
|
+
version = "4.5.32"
|
|
531
621
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
532
|
-
checksum = "
|
|
622
|
+
checksum = "09176aae279615badda0765c0c0b3f6ed53f4709118af73cf4655d85d1530cd7"
|
|
533
623
|
dependencies = [
|
|
534
624
|
"heck 0.5.0",
|
|
535
625
|
"proc-macro2",
|
|
536
626
|
"quote",
|
|
537
|
-
"syn 2.0.
|
|
627
|
+
"syn 2.0.100",
|
|
538
628
|
]
|
|
539
629
|
|
|
540
630
|
[[package]]
|
|
@@ -568,27 +658,28 @@ dependencies = [
|
|
|
568
658
|
|
|
569
659
|
[[package]]
|
|
570
660
|
name = "compact_str"
|
|
571
|
-
version = "0.
|
|
661
|
+
version = "0.9.0"
|
|
572
662
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
573
|
-
checksum = "
|
|
663
|
+
checksum = "3fdb1325a1cece981e8a296ab8f0f9b63ae357bd0784a9faaf548cc7b480707a"
|
|
574
664
|
dependencies = [
|
|
575
665
|
"castaway",
|
|
576
666
|
"cfg-if",
|
|
577
667
|
"itoa",
|
|
668
|
+
"rustversion",
|
|
578
669
|
"ryu",
|
|
579
670
|
"static_assertions",
|
|
580
671
|
]
|
|
581
672
|
|
|
582
673
|
[[package]]
|
|
583
674
|
name = "console"
|
|
584
|
-
version = "0.15.
|
|
675
|
+
version = "0.15.11"
|
|
585
676
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
586
|
-
checksum = "
|
|
677
|
+
checksum = "054ccb5b10f9f2cbf51eb355ca1d05c2d279ce1804688d0db74b4733a5aeafd8"
|
|
587
678
|
dependencies = [
|
|
588
679
|
"encode_unicode",
|
|
589
|
-
"lazy_static",
|
|
590
680
|
"libc",
|
|
591
|
-
"
|
|
681
|
+
"once_cell",
|
|
682
|
+
"windows-sys 0.59.0",
|
|
592
683
|
]
|
|
593
684
|
|
|
594
685
|
[[package]]
|
|
@@ -612,7 +703,7 @@ version = "0.1.16"
|
|
|
612
703
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
613
704
|
checksum = "f9d839f2a20b0aee515dc581a6172f2321f96cab76c1a38a4c584a194955390e"
|
|
614
705
|
dependencies = [
|
|
615
|
-
"getrandom",
|
|
706
|
+
"getrandom 0.2.15",
|
|
616
707
|
"once_cell",
|
|
617
708
|
"tiny-keccak",
|
|
618
709
|
]
|
|
@@ -637,27 +728,42 @@ checksum = "7704b5fdd17b18ae31c4c1da5a2e0305a2bf17b5249300a9ee9ed7b72114c636"
|
|
|
637
728
|
|
|
638
729
|
[[package]]
|
|
639
730
|
name = "cpufeatures"
|
|
640
|
-
version = "0.2.
|
|
731
|
+
version = "0.2.17"
|
|
641
732
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
642
|
-
checksum = "
|
|
733
|
+
checksum = "59ed5838eebb26a2bb2e58f6d5b5316989ae9d08bab10e0e6d103e656d1b0280"
|
|
643
734
|
dependencies = [
|
|
644
735
|
"libc",
|
|
645
736
|
]
|
|
646
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
|
+
|
|
647
753
|
[[package]]
|
|
648
754
|
name = "cranelift-bforest"
|
|
649
|
-
version = "0.
|
|
755
|
+
version = "0.117.2"
|
|
650
756
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
651
|
-
checksum = "
|
|
757
|
+
checksum = "73a9dc0a8d3d49ee772101924968830f1c1937d650c571d3c2dd69dc36a68f41"
|
|
652
758
|
dependencies = [
|
|
653
759
|
"cranelift-entity",
|
|
654
760
|
]
|
|
655
761
|
|
|
656
762
|
[[package]]
|
|
657
763
|
name = "cranelift-bitset"
|
|
658
|
-
version = "0.
|
|
764
|
+
version = "0.117.2"
|
|
659
765
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
660
|
-
checksum = "
|
|
766
|
+
checksum = "573c641174c40ef31021ae4a5a3ad78974e280633502d0dfc6e362385e0c100f"
|
|
661
767
|
dependencies = [
|
|
662
768
|
"serde",
|
|
663
769
|
"serde_derive",
|
|
@@ -665,11 +771,12 @@ dependencies = [
|
|
|
665
771
|
|
|
666
772
|
[[package]]
|
|
667
773
|
name = "cranelift-codegen"
|
|
668
|
-
version = "0.
|
|
774
|
+
version = "0.117.2"
|
|
669
775
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
670
|
-
checksum = "
|
|
776
|
+
checksum = "2d7c94d572615156f2db682181cadbd96342892c31e08cc26a757344319a9220"
|
|
671
777
|
dependencies = [
|
|
672
778
|
"bumpalo",
|
|
779
|
+
"cranelift-assembler-x64",
|
|
673
780
|
"cranelift-bforest",
|
|
674
781
|
"cranelift-bitset",
|
|
675
782
|
"cranelift-codegen-meta",
|
|
@@ -678,43 +785,47 @@ dependencies = [
|
|
|
678
785
|
"cranelift-entity",
|
|
679
786
|
"cranelift-isle",
|
|
680
787
|
"gimli 0.31.1",
|
|
681
|
-
"hashbrown 0.
|
|
788
|
+
"hashbrown 0.15.2",
|
|
682
789
|
"log",
|
|
790
|
+
"pulley-interpreter",
|
|
683
791
|
"regalloc2",
|
|
684
|
-
"rustc-hash 2.1.
|
|
792
|
+
"rustc-hash 2.1.1",
|
|
793
|
+
"serde",
|
|
685
794
|
"smallvec",
|
|
686
|
-
"target-lexicon",
|
|
795
|
+
"target-lexicon 0.13.2",
|
|
687
796
|
]
|
|
688
797
|
|
|
689
798
|
[[package]]
|
|
690
799
|
name = "cranelift-codegen-meta"
|
|
691
|
-
version = "0.
|
|
800
|
+
version = "0.117.2"
|
|
692
801
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
693
|
-
checksum = "
|
|
802
|
+
checksum = "beecd9fcf2c3e06da436d565de61a42676097ea6eb6b4499346ac6264b6bb9ce"
|
|
694
803
|
dependencies = [
|
|
804
|
+
"cranelift-assembler-x64",
|
|
695
805
|
"cranelift-codegen-shared",
|
|
806
|
+
"pulley-interpreter",
|
|
696
807
|
]
|
|
697
808
|
|
|
698
809
|
[[package]]
|
|
699
810
|
name = "cranelift-codegen-shared"
|
|
700
|
-
version = "0.
|
|
811
|
+
version = "0.117.2"
|
|
701
812
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
702
|
-
checksum = "
|
|
813
|
+
checksum = "0f4ff8d2e1235f2d6e7fc3c6738be6954ba972cd295f09079ebffeca2f864e22"
|
|
703
814
|
|
|
704
815
|
[[package]]
|
|
705
816
|
name = "cranelift-control"
|
|
706
|
-
version = "0.
|
|
817
|
+
version = "0.117.2"
|
|
707
818
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
708
|
-
checksum = "
|
|
819
|
+
checksum = "001312e9fbc7d9ca9517474d6fe71e29d07e52997fd7efe18f19e8836446ceb2"
|
|
709
820
|
dependencies = [
|
|
710
821
|
"arbitrary",
|
|
711
822
|
]
|
|
712
823
|
|
|
713
824
|
[[package]]
|
|
714
825
|
name = "cranelift-entity"
|
|
715
|
-
version = "0.
|
|
826
|
+
version = "0.117.2"
|
|
716
827
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
717
|
-
checksum = "
|
|
828
|
+
checksum = "eb0fd6d4aae680275fcbceb08683416b744e65c8b607352043d3f0951d72b3b2"
|
|
718
829
|
dependencies = [
|
|
719
830
|
"cranelift-bitset",
|
|
720
831
|
"serde",
|
|
@@ -723,31 +834,31 @@ dependencies = [
|
|
|
723
834
|
|
|
724
835
|
[[package]]
|
|
725
836
|
name = "cranelift-frontend"
|
|
726
|
-
version = "0.
|
|
837
|
+
version = "0.117.2"
|
|
727
838
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
728
|
-
checksum = "
|
|
839
|
+
checksum = "9fd44e7e5dcea20ca104d45894748205c51365ce4cdb18f4418e3ba955971d1b"
|
|
729
840
|
dependencies = [
|
|
730
841
|
"cranelift-codegen",
|
|
731
842
|
"log",
|
|
732
843
|
"smallvec",
|
|
733
|
-
"target-lexicon",
|
|
844
|
+
"target-lexicon 0.13.2",
|
|
734
845
|
]
|
|
735
846
|
|
|
736
847
|
[[package]]
|
|
737
848
|
name = "cranelift-isle"
|
|
738
|
-
version = "0.
|
|
849
|
+
version = "0.117.2"
|
|
739
850
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
740
|
-
checksum = "
|
|
851
|
+
checksum = "f900e0a3847d51eed0321f0777947fb852ccfce0da7fb070100357f69a2f37fc"
|
|
741
852
|
|
|
742
853
|
[[package]]
|
|
743
854
|
name = "cranelift-native"
|
|
744
|
-
version = "0.
|
|
855
|
+
version = "0.117.2"
|
|
745
856
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
746
|
-
checksum = "
|
|
857
|
+
checksum = "7617f13f392ebb63c5126258aca8b8eca739636ca7e4eeee301d3eff68489a6a"
|
|
747
858
|
dependencies = [
|
|
748
859
|
"cranelift-codegen",
|
|
749
860
|
"libc",
|
|
750
|
-
"target-lexicon",
|
|
861
|
+
"target-lexicon 0.13.2",
|
|
751
862
|
]
|
|
752
863
|
|
|
753
864
|
[[package]]
|
|
@@ -789,18 +900,18 @@ dependencies = [
|
|
|
789
900
|
|
|
790
901
|
[[package]]
|
|
791
902
|
name = "crossbeam-channel"
|
|
792
|
-
version = "0.5.
|
|
903
|
+
version = "0.5.14"
|
|
793
904
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
794
|
-
checksum = "
|
|
905
|
+
checksum = "06ba6d68e24814cb8de6bb986db8222d3a027d15872cabc0d18817bc3c0e4471"
|
|
795
906
|
dependencies = [
|
|
796
907
|
"crossbeam-utils",
|
|
797
908
|
]
|
|
798
909
|
|
|
799
910
|
[[package]]
|
|
800
911
|
name = "crossbeam-deque"
|
|
801
|
-
version = "0.8.
|
|
912
|
+
version = "0.8.6"
|
|
802
913
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
803
|
-
checksum = "
|
|
914
|
+
checksum = "9dd111b7b7f7d55b72c0a6ae361660ee5853c9af73f70c3c2ef6858b950e2e51"
|
|
804
915
|
dependencies = [
|
|
805
916
|
"crossbeam-epoch",
|
|
806
917
|
"crossbeam-utils",
|
|
@@ -817,18 +928,18 @@ dependencies = [
|
|
|
817
928
|
|
|
818
929
|
[[package]]
|
|
819
930
|
name = "crossbeam-queue"
|
|
820
|
-
version = "0.3.
|
|
931
|
+
version = "0.3.12"
|
|
821
932
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
822
|
-
checksum = "
|
|
933
|
+
checksum = "0f58bbc28f91df819d0aa2a2c00cd19754769c2fad90579b3592b1c9ba7a3115"
|
|
823
934
|
dependencies = [
|
|
824
935
|
"crossbeam-utils",
|
|
825
936
|
]
|
|
826
937
|
|
|
827
938
|
[[package]]
|
|
828
939
|
name = "crossbeam-utils"
|
|
829
|
-
version = "0.8.
|
|
940
|
+
version = "0.8.21"
|
|
830
941
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
831
|
-
checksum = "
|
|
942
|
+
checksum = "d0a5c400df2834b80a4c3327b3aad3a4c4cd4de0629063962b03235697506a28"
|
|
832
943
|
|
|
833
944
|
[[package]]
|
|
834
945
|
name = "crossterm"
|
|
@@ -852,11 +963,11 @@ version = "0.28.1"
|
|
|
852
963
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
853
964
|
checksum = "829d955a0bb380ef178a640b91779e3987da38c9aea133b20614cfed8cdea9c6"
|
|
854
965
|
dependencies = [
|
|
855
|
-
"bitflags 2.
|
|
966
|
+
"bitflags 2.9.0",
|
|
856
967
|
"crossterm_winapi",
|
|
857
968
|
"mio 1.0.3",
|
|
858
969
|
"parking_lot",
|
|
859
|
-
"rustix",
|
|
970
|
+
"rustix 0.38.44",
|
|
860
971
|
"signal-hook 0.3.17",
|
|
861
972
|
"signal-hook-mio",
|
|
862
973
|
"winapi",
|
|
@@ -873,9 +984,9 @@ dependencies = [
|
|
|
873
984
|
|
|
874
985
|
[[package]]
|
|
875
986
|
name = "crunchy"
|
|
876
|
-
version = "0.2.
|
|
987
|
+
version = "0.2.3"
|
|
877
988
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
878
|
-
checksum = "
|
|
989
|
+
checksum = "43da5946c66ffcc7745f48db692ffbb10a83bfe0afd96235c5c2a4fb23994929"
|
|
879
990
|
|
|
880
991
|
[[package]]
|
|
881
992
|
name = "crypto-bigint"
|
|
@@ -906,7 +1017,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
906
1017
|
checksum = "eb2a7d3066da2de787b7f032c736763eb7ae5d355f81a68bab2675a96008b0bf"
|
|
907
1018
|
dependencies = [
|
|
908
1019
|
"lab",
|
|
909
|
-
"phf 0.11.
|
|
1020
|
+
"phf 0.11.3",
|
|
910
1021
|
]
|
|
911
1022
|
|
|
912
1023
|
[[package]]
|
|
@@ -930,7 +1041,7 @@ dependencies = [
|
|
|
930
1041
|
"proc-macro2",
|
|
931
1042
|
"quote",
|
|
932
1043
|
"strsim 0.11.1",
|
|
933
|
-
"syn 2.0.
|
|
1044
|
+
"syn 2.0.100",
|
|
934
1045
|
]
|
|
935
1046
|
|
|
936
1047
|
[[package]]
|
|
@@ -941,14 +1052,28 @@ checksum = "d336a2a514f6ccccaa3e09b02d41d35330c07ddf03a62165fcec10bb561c7806"
|
|
|
941
1052
|
dependencies = [
|
|
942
1053
|
"darling_core",
|
|
943
1054
|
"quote",
|
|
944
|
-
"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",
|
|
945
1070
|
]
|
|
946
1071
|
|
|
947
1072
|
[[package]]
|
|
948
1073
|
name = "data-encoding"
|
|
949
|
-
version = "2.
|
|
1074
|
+
version = "2.8.0"
|
|
950
1075
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
951
|
-
checksum = "
|
|
1076
|
+
checksum = "575f75dfd25738df5b91b8e43e14d44bda14637a58fae779fd2b064f8bf3e010"
|
|
952
1077
|
|
|
953
1078
|
[[package]]
|
|
954
1079
|
name = "deflate64"
|
|
@@ -975,9 +1100,9 @@ dependencies = [
|
|
|
975
1100
|
|
|
976
1101
|
[[package]]
|
|
977
1102
|
name = "der-parser"
|
|
978
|
-
version = "
|
|
1103
|
+
version = "10.0.0"
|
|
979
1104
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
980
|
-
checksum = "
|
|
1105
|
+
checksum = "07da5016415d5a3c4dd39b11ed26f915f52fc4e0dc197d87908bc916e51bc1a6"
|
|
981
1106
|
dependencies = [
|
|
982
1107
|
"asn1-rs",
|
|
983
1108
|
"displaydoc",
|
|
@@ -989,9 +1114,9 @@ dependencies = [
|
|
|
989
1114
|
|
|
990
1115
|
[[package]]
|
|
991
1116
|
name = "deranged"
|
|
992
|
-
version = "0.
|
|
1117
|
+
version = "0.4.1"
|
|
993
1118
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
994
|
-
checksum = "
|
|
1119
|
+
checksum = "28cfac68e08048ae1883171632c2aef3ebc555621ae56fbccce1cbf22dd7f058"
|
|
995
1120
|
dependencies = [
|
|
996
1121
|
"powerfmt",
|
|
997
1122
|
]
|
|
@@ -1004,7 +1129,7 @@ checksum = "30542c1ad912e0e3d22a1935c290e12e8a29d704a420177a31faad4a601a0800"
|
|
|
1004
1129
|
dependencies = [
|
|
1005
1130
|
"proc-macro2",
|
|
1006
1131
|
"quote",
|
|
1007
|
-
"syn 2.0.
|
|
1132
|
+
"syn 2.0.100",
|
|
1008
1133
|
]
|
|
1009
1134
|
|
|
1010
1135
|
[[package]]
|
|
@@ -1013,6 +1138,12 @@ version = "0.1.13"
|
|
|
1013
1138
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1014
1139
|
checksum = "56254986775e3233ffa9c4d7d3faaf6d36a2c09d30b20687e9f88bc8bafc16c8"
|
|
1015
1140
|
|
|
1141
|
+
[[package]]
|
|
1142
|
+
name = "difflib"
|
|
1143
|
+
version = "0.4.0"
|
|
1144
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1145
|
+
checksum = "6184e33543162437515c2e2b48714794e37845ec9851711914eec9d308f6ebe8"
|
|
1146
|
+
|
|
1016
1147
|
[[package]]
|
|
1017
1148
|
name = "digest"
|
|
1018
1149
|
version = "0.9.0"
|
|
@@ -1062,9 +1193,15 @@ checksum = "97369cbbc041bc366949bc74d34658d6cda5621039731c6310521892a3a20ae0"
|
|
|
1062
1193
|
dependencies = [
|
|
1063
1194
|
"proc-macro2",
|
|
1064
1195
|
"quote",
|
|
1065
|
-
"syn 2.0.
|
|
1196
|
+
"syn 2.0.100",
|
|
1066
1197
|
]
|
|
1067
1198
|
|
|
1199
|
+
[[package]]
|
|
1200
|
+
name = "doc-comment"
|
|
1201
|
+
version = "0.3.3"
|
|
1202
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1203
|
+
checksum = "fea41bba32d969b513997752735605054bc0dfa92b4c56bf1189f2e174be7a10"
|
|
1204
|
+
|
|
1068
1205
|
[[package]]
|
|
1069
1206
|
name = "dsa"
|
|
1070
1207
|
version = "0.6.3"
|
|
@@ -1097,9 +1234,9 @@ dependencies = [
|
|
|
1097
1234
|
|
|
1098
1235
|
[[package]]
|
|
1099
1236
|
name = "either"
|
|
1100
|
-
version = "1.
|
|
1237
|
+
version = "1.15.0"
|
|
1101
1238
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1102
|
-
checksum = "
|
|
1239
|
+
checksum = "48c757948c5ede0e46177b7add2e67155f70e33c07fea8284df6576da70b3719"
|
|
1103
1240
|
|
|
1104
1241
|
[[package]]
|
|
1105
1242
|
name = "elliptic-curve"
|
|
@@ -1145,9 +1282,9 @@ dependencies = [
|
|
|
1145
1282
|
|
|
1146
1283
|
[[package]]
|
|
1147
1284
|
name = "encode_unicode"
|
|
1148
|
-
version = "0.
|
|
1285
|
+
version = "1.0.0"
|
|
1149
1286
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1150
|
-
checksum = "
|
|
1287
|
+
checksum = "34aa73646ffb006b8f5147f3dc182bd4bcb190227ce861fc4a4844bf8e3cb2c0"
|
|
1151
1288
|
|
|
1152
1289
|
[[package]]
|
|
1153
1290
|
name = "encoding_rs"
|
|
@@ -1158,23 +1295,11 @@ dependencies = [
|
|
|
1158
1295
|
"cfg-if",
|
|
1159
1296
|
]
|
|
1160
1297
|
|
|
1161
|
-
[[package]]
|
|
1162
|
-
name = "enum_dispatch"
|
|
1163
|
-
version = "0.3.13"
|
|
1164
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1165
|
-
checksum = "aa18ce2bc66555b3218614519ac839ddb759a7d6720732f979ef8d13be147ecd"
|
|
1166
|
-
dependencies = [
|
|
1167
|
-
"once_cell",
|
|
1168
|
-
"proc-macro2",
|
|
1169
|
-
"quote",
|
|
1170
|
-
"syn 2.0.90",
|
|
1171
|
-
]
|
|
1172
|
-
|
|
1173
1298
|
[[package]]
|
|
1174
1299
|
name = "env_filter"
|
|
1175
|
-
version = "0.1.
|
|
1300
|
+
version = "0.1.3"
|
|
1176
1301
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1177
|
-
checksum = "
|
|
1302
|
+
checksum = "186e05a59d4c50738528153b83b0b0194d3a29507dfec16eccd4b342903397d0"
|
|
1178
1303
|
dependencies = [
|
|
1179
1304
|
"log",
|
|
1180
1305
|
"regex",
|
|
@@ -1182,22 +1307,22 @@ dependencies = [
|
|
|
1182
1307
|
|
|
1183
1308
|
[[package]]
|
|
1184
1309
|
name = "env_logger"
|
|
1185
|
-
version = "0.11.
|
|
1310
|
+
version = "0.11.7"
|
|
1186
1311
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1187
|
-
checksum = "
|
|
1312
|
+
checksum = "c3716d7a920fb4fac5d84e9d4bce8ceb321e9414b4409da61b07b75c1e3d0697"
|
|
1188
1313
|
dependencies = [
|
|
1189
1314
|
"anstream",
|
|
1190
1315
|
"anstyle",
|
|
1191
1316
|
"env_filter",
|
|
1192
|
-
"
|
|
1317
|
+
"jiff",
|
|
1193
1318
|
"log",
|
|
1194
1319
|
]
|
|
1195
1320
|
|
|
1196
1321
|
[[package]]
|
|
1197
1322
|
name = "equivalent"
|
|
1198
|
-
version = "1.0.
|
|
1323
|
+
version = "1.0.2"
|
|
1199
1324
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1200
|
-
checksum = "
|
|
1325
|
+
checksum = "877a4ace8713b0bcf2a4e7eec82529c029f1d0619886d18145fea96c3ffe5c0f"
|
|
1201
1326
|
|
|
1202
1327
|
[[package]]
|
|
1203
1328
|
name = "errno"
|
|
@@ -1238,9 +1363,9 @@ checksum = "37909eebbb50d72f9059c3b6d82c0463f2ff062c9e95845c43a6c9c0355411be"
|
|
|
1238
1363
|
|
|
1239
1364
|
[[package]]
|
|
1240
1365
|
name = "ff"
|
|
1241
|
-
version = "0.13.
|
|
1366
|
+
version = "0.13.1"
|
|
1242
1367
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1243
|
-
checksum = "
|
|
1368
|
+
checksum = "c0b50bfb653653f9ca9095b427bed08ab8d75a137839d9ad64eb11810d5b6393"
|
|
1244
1369
|
dependencies = [
|
|
1245
1370
|
"rand_core",
|
|
1246
1371
|
"subtle",
|
|
@@ -1261,9 +1386,9 @@ dependencies = [
|
|
|
1261
1386
|
|
|
1262
1387
|
[[package]]
|
|
1263
1388
|
name = "filedescriptor"
|
|
1264
|
-
version = "0.8.
|
|
1389
|
+
version = "0.8.3"
|
|
1265
1390
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1266
|
-
checksum = "
|
|
1391
|
+
checksum = "e40758ed24c9b2eeb76c35fb0aebc66c626084edd827e07e1552279814c6682d"
|
|
1267
1392
|
dependencies = [
|
|
1268
1393
|
"libc",
|
|
1269
1394
|
"thiserror 1.0.69",
|
|
@@ -1284,26 +1409,21 @@ checksum = "0ce7134b9999ecaf8bcd65542e436736ef32ddca1b3e06094cb6ec5755203b80"
|
|
|
1284
1409
|
|
|
1285
1410
|
[[package]]
|
|
1286
1411
|
name = "flate2"
|
|
1287
|
-
version = "1.0
|
|
1412
|
+
version = "1.1.0"
|
|
1288
1413
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1289
|
-
checksum = "
|
|
1414
|
+
checksum = "11faaf5a5236997af9848be0bef4db95824b1d534ebc64d0f0c6cf3e67bd38dc"
|
|
1290
1415
|
dependencies = [
|
|
1291
1416
|
"crc32fast",
|
|
1292
1417
|
"miniz_oxide",
|
|
1293
1418
|
]
|
|
1294
1419
|
|
|
1295
1420
|
[[package]]
|
|
1296
|
-
name = "
|
|
1297
|
-
version = "0.
|
|
1421
|
+
name = "float-cmp"
|
|
1422
|
+
version = "0.10.0"
|
|
1298
1423
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1299
|
-
checksum = "
|
|
1424
|
+
checksum = "b09cf3155332e944990140d967ff5eceb70df778b34f77d8075db46e4704e6d8"
|
|
1300
1425
|
dependencies = [
|
|
1301
|
-
"
|
|
1302
|
-
"bytes",
|
|
1303
|
-
"enum_dispatch",
|
|
1304
|
-
"fs4",
|
|
1305
|
-
"memmapix",
|
|
1306
|
-
"parse-display",
|
|
1426
|
+
"num-traits",
|
|
1307
1427
|
]
|
|
1308
1428
|
|
|
1309
1429
|
[[package]]
|
|
@@ -1314,35 +1434,114 @@ checksum = "3f9eec918d3f24069decb9af1554cad7c880e2da24a9afd88aca000531ab82c1"
|
|
|
1314
1434
|
|
|
1315
1435
|
[[package]]
|
|
1316
1436
|
name = "foldhash"
|
|
1317
|
-
version = "0.1.
|
|
1437
|
+
version = "0.1.5"
|
|
1318
1438
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1319
|
-
checksum = "
|
|
1439
|
+
checksum = "d9c4f5dac5e15c24eb999c26181a6ca40b39fe946cbe4c263c7209467bc83af2"
|
|
1320
1440
|
|
|
1321
1441
|
[[package]]
|
|
1322
1442
|
name = "fraction"
|
|
1323
|
-
version = "0.
|
|
1443
|
+
version = "0.15.3"
|
|
1324
1444
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1325
|
-
checksum = "
|
|
1445
|
+
checksum = "0f158e3ff0a1b334408dc9fb811cd99b446986f4d8b741bb08f9df1604085ae7"
|
|
1326
1446
|
dependencies = [
|
|
1327
1447
|
"lazy_static",
|
|
1328
1448
|
"num",
|
|
1329
1449
|
]
|
|
1330
1450
|
|
|
1331
1451
|
[[package]]
|
|
1332
|
-
name = "
|
|
1333
|
-
version = "0.
|
|
1452
|
+
name = "funty"
|
|
1453
|
+
version = "2.0.0"
|
|
1454
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
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"
|
|
1462
|
+
dependencies = [
|
|
1463
|
+
"futures-channel",
|
|
1464
|
+
"futures-core",
|
|
1465
|
+
"futures-executor",
|
|
1466
|
+
"futures-io",
|
|
1467
|
+
"futures-sink",
|
|
1468
|
+
"futures-task",
|
|
1469
|
+
"futures-util",
|
|
1470
|
+
]
|
|
1471
|
+
|
|
1472
|
+
[[package]]
|
|
1473
|
+
name = "futures-channel"
|
|
1474
|
+
version = "0.3.31"
|
|
1334
1475
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1335
|
-
checksum = "
|
|
1476
|
+
checksum = "2dff15bf788c671c1934e366d07e30c1814a8ef514e1af724a602e8a2fbe1b10"
|
|
1336
1477
|
dependencies = [
|
|
1337
|
-
"
|
|
1338
|
-
"
|
|
1478
|
+
"futures-core",
|
|
1479
|
+
"futures-sink",
|
|
1339
1480
|
]
|
|
1340
1481
|
|
|
1341
1482
|
[[package]]
|
|
1342
|
-
name = "
|
|
1343
|
-
version = "
|
|
1483
|
+
name = "futures-core"
|
|
1484
|
+
version = "0.3.31"
|
|
1344
1485
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1345
|
-
checksum = "
|
|
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
|
+
]
|
|
1346
1545
|
|
|
1347
1546
|
[[package]]
|
|
1348
1547
|
name = "generic-array"
|
|
@@ -1363,7 +1562,21 @@ checksum = "c4567c8db10ae91089c99af84c68c38da3ec2f087c3f82960bcdbf3656b6f4d7"
|
|
|
1363
1562
|
dependencies = [
|
|
1364
1563
|
"cfg-if",
|
|
1365
1564
|
"libc",
|
|
1366
|
-
"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",
|
|
1367
1580
|
]
|
|
1368
1581
|
|
|
1369
1582
|
[[package]]
|
|
@@ -1384,27 +1597,27 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
1384
1597
|
checksum = "07e28edb80900c19c28f1072f2e8aeca7fa06b23cd4169cefe1af5aa3260783f"
|
|
1385
1598
|
dependencies = [
|
|
1386
1599
|
"fallible-iterator 0.3.0",
|
|
1387
|
-
"indexmap 2.
|
|
1600
|
+
"indexmap 2.8.0",
|
|
1388
1601
|
"stable_deref_trait",
|
|
1389
1602
|
]
|
|
1390
1603
|
|
|
1391
1604
|
[[package]]
|
|
1392
1605
|
name = "glob"
|
|
1393
|
-
version = "0.3.
|
|
1606
|
+
version = "0.3.2"
|
|
1394
1607
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1395
|
-
checksum = "
|
|
1608
|
+
checksum = "a8d1add55171497b4705a648c6b583acafb01d58050a51727785f0b2c8e0a2b2"
|
|
1396
1609
|
|
|
1397
1610
|
[[package]]
|
|
1398
1611
|
name = "globset"
|
|
1399
|
-
version = "0.4.
|
|
1612
|
+
version = "0.4.16"
|
|
1400
1613
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1401
|
-
checksum = "
|
|
1614
|
+
checksum = "54a1028dfc5f5df5da8a56a73e6c153c9a9708ec57232470703592a3f18e49f5"
|
|
1402
1615
|
dependencies = [
|
|
1403
1616
|
"aho-corasick",
|
|
1404
1617
|
"bstr",
|
|
1405
1618
|
"log",
|
|
1406
1619
|
"regex-automata",
|
|
1407
|
-
"regex-syntax
|
|
1620
|
+
"regex-syntax",
|
|
1408
1621
|
]
|
|
1409
1622
|
|
|
1410
1623
|
[[package]]
|
|
@@ -1413,16 +1626,16 @@ version = "0.9.1"
|
|
|
1413
1626
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1414
1627
|
checksum = "0bf760ebf69878d9fd8f110c89703d90ce35095324d1f1edcb595c63945ee757"
|
|
1415
1628
|
dependencies = [
|
|
1416
|
-
"bitflags 2.
|
|
1629
|
+
"bitflags 2.9.0",
|
|
1417
1630
|
"ignore",
|
|
1418
1631
|
"walkdir",
|
|
1419
1632
|
]
|
|
1420
1633
|
|
|
1421
1634
|
[[package]]
|
|
1422
1635
|
name = "goldenfile"
|
|
1423
|
-
version = "1.
|
|
1636
|
+
version = "1.8.0"
|
|
1424
1637
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1425
|
-
checksum = "
|
|
1638
|
+
checksum = "cf39e208efa110ca273f7255aea02485103ffcb7e5dfa5e4196b05a02411618e"
|
|
1426
1639
|
dependencies = [
|
|
1427
1640
|
"scopeguard",
|
|
1428
1641
|
"similar-asserts",
|
|
@@ -1441,6 +1654,25 @@ dependencies = [
|
|
|
1441
1654
|
"subtle",
|
|
1442
1655
|
]
|
|
1443
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
|
+
|
|
1444
1676
|
[[package]]
|
|
1445
1677
|
name = "hashbrown"
|
|
1446
1678
|
version = "0.12.3"
|
|
@@ -1464,6 +1696,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
1464
1696
|
checksum = "bf151400ff0baff5465007dd2f3e717f3fe502074ca563069ce3a6629d07b289"
|
|
1465
1697
|
dependencies = [
|
|
1466
1698
|
"foldhash",
|
|
1699
|
+
"serde",
|
|
1467
1700
|
]
|
|
1468
1701
|
|
|
1469
1702
|
[[package]]
|
|
@@ -1504,29 +1737,93 @@ dependencies = [
|
|
|
1504
1737
|
|
|
1505
1738
|
[[package]]
|
|
1506
1739
|
name = "home"
|
|
1507
|
-
version = "0.5.
|
|
1740
|
+
version = "0.5.11"
|
|
1508
1741
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1509
|
-
checksum = "
|
|
1742
|
+
checksum = "589533453244b0995c858700322199b2becb13b627df2851f64a2775d024abcf"
|
|
1510
1743
|
dependencies = [
|
|
1511
|
-
"windows-sys 0.
|
|
1744
|
+
"windows-sys 0.59.0",
|
|
1512
1745
|
]
|
|
1513
1746
|
|
|
1514
1747
|
[[package]]
|
|
1515
|
-
name = "
|
|
1516
|
-
version = "
|
|
1748
|
+
name = "hostname"
|
|
1749
|
+
version = "0.3.1"
|
|
1517
1750
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1518
|
-
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
|
+
]
|
|
1519
1815
|
|
|
1520
1816
|
[[package]]
|
|
1521
1817
|
name = "iana-time-zone"
|
|
1522
|
-
version = "0.1.
|
|
1818
|
+
version = "0.1.62"
|
|
1523
1819
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1524
|
-
checksum = "
|
|
1820
|
+
checksum = "b2fd658b06e56721792c5df4475705b6cda790e9298d19d2f8af083457bcd127"
|
|
1525
1821
|
dependencies = [
|
|
1526
1822
|
"android_system_properties",
|
|
1527
1823
|
"core-foundation-sys",
|
|
1528
1824
|
"iana-time-zone-haiku",
|
|
1529
1825
|
"js-sys",
|
|
1826
|
+
"log",
|
|
1530
1827
|
"wasm-bindgen",
|
|
1531
1828
|
"windows-core",
|
|
1532
1829
|
]
|
|
@@ -1605,9 +1902,9 @@ dependencies = [
|
|
|
1605
1902
|
|
|
1606
1903
|
[[package]]
|
|
1607
1904
|
name = "indexmap"
|
|
1608
|
-
version = "2.
|
|
1905
|
+
version = "2.8.0"
|
|
1609
1906
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1610
|
-
checksum = "
|
|
1907
|
+
checksum = "3954d50fe15b02142bf25d3b8bdadb634ec3948f103d04ffe3031bc8fe9d7058"
|
|
1611
1908
|
dependencies = [
|
|
1612
1909
|
"equivalent",
|
|
1613
1910
|
"hashbrown 0.15.2",
|
|
@@ -1616,15 +1913,15 @@ dependencies = [
|
|
|
1616
1913
|
|
|
1617
1914
|
[[package]]
|
|
1618
1915
|
name = "indoc"
|
|
1619
|
-
version = "2.0.
|
|
1916
|
+
version = "2.0.6"
|
|
1620
1917
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1621
|
-
checksum = "
|
|
1918
|
+
checksum = "f4c7245a08504955605670dbf141fceab975f15ca21570696aebe9d2e71576bd"
|
|
1622
1919
|
|
|
1623
1920
|
[[package]]
|
|
1624
1921
|
name = "inout"
|
|
1625
|
-
version = "0.1.
|
|
1922
|
+
version = "0.1.4"
|
|
1626
1923
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1627
|
-
checksum = "
|
|
1924
|
+
checksum = "879f10e63c20629ecabbb64a8010319738c66a5cd0c29b02d63d272b03751d01"
|
|
1628
1925
|
dependencies = [
|
|
1629
1926
|
"generic-array",
|
|
1630
1927
|
]
|
|
@@ -1635,6 +1932,12 @@ version = "1.10.0"
|
|
|
1635
1932
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1636
1933
|
checksum = "7785e397d45f5a00bd35df6c293518c240c321b734b15a02718aa21103de1ce9"
|
|
1637
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
|
+
|
|
1638
1941
|
[[package]]
|
|
1639
1942
|
name = "is_terminal_polyfill"
|
|
1640
1943
|
version = "1.70.1"
|
|
@@ -1650,6 +1953,15 @@ dependencies = [
|
|
|
1650
1953
|
"either",
|
|
1651
1954
|
]
|
|
1652
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
|
+
|
|
1653
1965
|
[[package]]
|
|
1654
1966
|
name = "itertools"
|
|
1655
1967
|
version = "0.12.1"
|
|
@@ -1661,18 +1973,42 @@ dependencies = [
|
|
|
1661
1973
|
|
|
1662
1974
|
[[package]]
|
|
1663
1975
|
name = "itertools"
|
|
1664
|
-
version = "0.
|
|
1976
|
+
version = "0.14.0"
|
|
1665
1977
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1666
|
-
checksum = "
|
|
1978
|
+
checksum = "2b192c782037fadd9cfa75548310488aabdbf3d2da73885b31bd0abd03351285"
|
|
1667
1979
|
dependencies = [
|
|
1668
1980
|
"either",
|
|
1669
1981
|
]
|
|
1670
1982
|
|
|
1671
1983
|
[[package]]
|
|
1672
1984
|
name = "itoa"
|
|
1673
|
-
version = "1.0.
|
|
1985
|
+
version = "1.0.15"
|
|
1986
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
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"
|
|
1674
2005
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1675
|
-
checksum = "
|
|
2006
|
+
checksum = "4cdde31a9d349f1b1f51a0b3714a5940ac022976f4b49485fc04be052b183b4c"
|
|
2007
|
+
dependencies = [
|
|
2008
|
+
"proc-macro2",
|
|
2009
|
+
"quote",
|
|
2010
|
+
"syn 2.0.100",
|
|
2011
|
+
]
|
|
1676
2012
|
|
|
1677
2013
|
[[package]]
|
|
1678
2014
|
name = "jobserver"
|
|
@@ -1685,9 +2021,9 @@ dependencies = [
|
|
|
1685
2021
|
|
|
1686
2022
|
[[package]]
|
|
1687
2023
|
name = "js-sys"
|
|
1688
|
-
version = "0.3.
|
|
2024
|
+
version = "0.3.77"
|
|
1689
2025
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1690
|
-
checksum = "
|
|
2026
|
+
checksum = "1cfaf33c695fc6e08064efbc1f72ec937429614f25eef83af942d0e227c3a28f"
|
|
1691
2027
|
dependencies = [
|
|
1692
2028
|
"once_cell",
|
|
1693
2029
|
"wasm-bindgen",
|
|
@@ -1716,9 +2052,9 @@ checksum = "884e2677b40cc8c339eaefcb701c32ef1fd2493d71118dc0ca4b6a736c93bd67"
|
|
|
1716
2052
|
|
|
1717
2053
|
[[package]]
|
|
1718
2054
|
name = "libc"
|
|
1719
|
-
version = "0.2.
|
|
2055
|
+
version = "0.2.171"
|
|
1720
2056
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1721
|
-
checksum = "
|
|
2057
|
+
checksum = "c19937216e9d3aa9956d9bb8dfc0b0c8beb6058fc4f7a4dc4d850edf86a237d6"
|
|
1722
2058
|
|
|
1723
2059
|
[[package]]
|
|
1724
2060
|
name = "libm"
|
|
@@ -1732,99 +2068,105 @@ version = "0.1.3"
|
|
|
1732
2068
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1733
2069
|
checksum = "c0ff37bd590ca25063e35af745c343cb7a0271906fb7b37e4813e8f79f00268d"
|
|
1734
2070
|
dependencies = [
|
|
1735
|
-
"bitflags 2.
|
|
2071
|
+
"bitflags 2.9.0",
|
|
1736
2072
|
"libc",
|
|
1737
2073
|
]
|
|
1738
2074
|
|
|
1739
2075
|
[[package]]
|
|
1740
2076
|
name = "lingua"
|
|
1741
|
-
version = "1.
|
|
2077
|
+
version = "1.7.1"
|
|
1742
2078
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1743
|
-
checksum = "
|
|
2079
|
+
checksum = "a44d00c66a76c4c2782442de0726c86d74cd3f717b318842f6ff347439c3fbe5"
|
|
1744
2080
|
dependencies = [
|
|
1745
2081
|
"ahash",
|
|
1746
2082
|
"brotli",
|
|
1747
2083
|
"compact_str",
|
|
2084
|
+
"dashmap",
|
|
1748
2085
|
"fraction",
|
|
1749
2086
|
"include_dir",
|
|
1750
|
-
"itertools 0.
|
|
2087
|
+
"itertools 0.14.0",
|
|
1751
2088
|
"lingua-english-language-model",
|
|
1752
2089
|
"lingua-french-language-model",
|
|
1753
2090
|
"lingua-german-language-model",
|
|
1754
2091
|
"lingua-spanish-language-model",
|
|
1755
2092
|
"maplit",
|
|
1756
|
-
"once_cell",
|
|
1757
2093
|
"rayon",
|
|
1758
2094
|
"regex",
|
|
1759
2095
|
"serde",
|
|
1760
2096
|
"serde-wasm-bindgen",
|
|
1761
2097
|
"serde_json",
|
|
1762
2098
|
"strum",
|
|
1763
|
-
"strum_macros
|
|
2099
|
+
"strum_macros",
|
|
1764
2100
|
"wasm-bindgen",
|
|
1765
2101
|
]
|
|
1766
2102
|
|
|
1767
2103
|
[[package]]
|
|
1768
2104
|
name = "lingua-english-language-model"
|
|
1769
|
-
version = "1.
|
|
2105
|
+
version = "1.2.0"
|
|
1770
2106
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1771
|
-
checksum = "
|
|
2107
|
+
checksum = "8a4b2666c2dc3669b9cc2235f318184f3cc3426bf7075336bcf8f9ddba6f81c0"
|
|
1772
2108
|
dependencies = [
|
|
1773
2109
|
"include_dir",
|
|
1774
2110
|
]
|
|
1775
2111
|
|
|
1776
2112
|
[[package]]
|
|
1777
2113
|
name = "lingua-french-language-model"
|
|
1778
|
-
version = "1.
|
|
2114
|
+
version = "1.2.0"
|
|
1779
2115
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1780
|
-
checksum = "
|
|
2116
|
+
checksum = "e7fd27da82335b66738d137ee64221f479973467b9178d49d802acbe847de355"
|
|
1781
2117
|
dependencies = [
|
|
1782
2118
|
"include_dir",
|
|
1783
2119
|
]
|
|
1784
2120
|
|
|
1785
2121
|
[[package]]
|
|
1786
2122
|
name = "lingua-german-language-model"
|
|
1787
|
-
version = "1.
|
|
2123
|
+
version = "1.2.0"
|
|
1788
2124
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1789
|
-
checksum = "
|
|
2125
|
+
checksum = "bfa568bbca8beb3b0cfc691cf2e87d1d24cb457c8e19ed168dd22d739c24a15e"
|
|
1790
2126
|
dependencies = [
|
|
1791
2127
|
"include_dir",
|
|
1792
2128
|
]
|
|
1793
2129
|
|
|
1794
2130
|
[[package]]
|
|
1795
2131
|
name = "lingua-spanish-language-model"
|
|
1796
|
-
version = "1.
|
|
2132
|
+
version = "1.2.0"
|
|
1797
2133
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1798
|
-
checksum = "
|
|
2134
|
+
checksum = "05df7766652773b2292e7ad12221c0090954baed18ca2ff631a5f134ce08d91d"
|
|
1799
2135
|
dependencies = [
|
|
1800
2136
|
"include_dir",
|
|
1801
2137
|
]
|
|
1802
2138
|
|
|
1803
2139
|
[[package]]
|
|
1804
2140
|
name = "linkme"
|
|
1805
|
-
version = "0.3.
|
|
2141
|
+
version = "0.3.32"
|
|
1806
2142
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1807
|
-
checksum = "
|
|
2143
|
+
checksum = "22d227772b5999ddc0690e733f734f95ca05387e329c4084fe65678c51198ffe"
|
|
1808
2144
|
dependencies = [
|
|
1809
2145
|
"linkme-impl",
|
|
1810
2146
|
]
|
|
1811
2147
|
|
|
1812
2148
|
[[package]]
|
|
1813
2149
|
name = "linkme-impl"
|
|
1814
|
-
version = "0.3.
|
|
2150
|
+
version = "0.3.32"
|
|
1815
2151
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1816
|
-
checksum = "
|
|
2152
|
+
checksum = "71a98813fa0073a317ed6a8055dcd4722a49d9b862af828ee68449adb799b6be"
|
|
1817
2153
|
dependencies = [
|
|
1818
2154
|
"proc-macro2",
|
|
1819
2155
|
"quote",
|
|
1820
|
-
"syn 2.0.
|
|
2156
|
+
"syn 2.0.100",
|
|
1821
2157
|
]
|
|
1822
2158
|
|
|
1823
2159
|
[[package]]
|
|
1824
2160
|
name = "linux-raw-sys"
|
|
1825
|
-
version = "0.4.
|
|
2161
|
+
version = "0.4.15"
|
|
1826
2162
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1827
|
-
checksum = "
|
|
2163
|
+
checksum = "d26c52dbd32dccf2d10cac7725f8eae5296885fb5703b261f7d0a0739ec807ab"
|
|
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"
|
|
1828
2170
|
|
|
1829
2171
|
[[package]]
|
|
1830
2172
|
name = "lock_api"
|
|
@@ -1844,9 +2186,9 @@ checksum = "9374ef4228402d4b7e403e5838cb880d9ee663314b0a900d5a6aabf0c213552e"
|
|
|
1844
2186
|
|
|
1845
2187
|
[[package]]
|
|
1846
2188
|
name = "log"
|
|
1847
|
-
version = "0.4.
|
|
2189
|
+
version = "0.4.27"
|
|
1848
2190
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1849
|
-
checksum = "
|
|
2191
|
+
checksum = "13dc2df351e3202783a1fe0d44375f7295ffb4049267b0f3018346dc122a1d94"
|
|
1850
2192
|
|
|
1851
2193
|
[[package]]
|
|
1852
2194
|
name = "logos"
|
|
@@ -1868,9 +2210,9 @@ dependencies = [
|
|
|
1868
2210
|
"lazy_static",
|
|
1869
2211
|
"proc-macro2",
|
|
1870
2212
|
"quote",
|
|
1871
|
-
"regex-syntax
|
|
2213
|
+
"regex-syntax",
|
|
1872
2214
|
"rustc_version",
|
|
1873
|
-
"syn 2.0.
|
|
2215
|
+
"syn 2.0.100",
|
|
1874
2216
|
]
|
|
1875
2217
|
|
|
1876
2218
|
[[package]]
|
|
@@ -1892,6 +2234,17 @@ dependencies = [
|
|
|
1892
2234
|
"crc",
|
|
1893
2235
|
]
|
|
1894
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
|
+
|
|
1895
2248
|
[[package]]
|
|
1896
2249
|
name = "mach2"
|
|
1897
2250
|
version = "0.4.2"
|
|
@@ -1907,7 +2260,7 @@ version = "0.16.2"
|
|
|
1907
2260
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1908
2261
|
checksum = "a200ae03df8c3dce7a963f6eeaac8feb41bf9001cb7e5ab22e3205aec2f0373d"
|
|
1909
2262
|
dependencies = [
|
|
1910
|
-
"bitflags 2.
|
|
2263
|
+
"bitflags 2.9.0",
|
|
1911
2264
|
"libc",
|
|
1912
2265
|
"magic-sys",
|
|
1913
2266
|
"thiserror 1.0.69",
|
|
@@ -1929,6 +2282,12 @@ version = "1.0.2"
|
|
|
1929
2282
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1930
2283
|
checksum = "3e2e65a1a2e43cfcb47a895c4c8b10d1f4a61097f9f254f183aee60cad9c651d"
|
|
1931
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
|
+
|
|
1932
2291
|
[[package]]
|
|
1933
2292
|
name = "md-5"
|
|
1934
2293
|
version = "0.10.6"
|
|
@@ -1960,16 +2319,16 @@ version = "0.6.4"
|
|
|
1960
2319
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1961
2320
|
checksum = "b2cffa4ad52c6f791f4f8b15f0c05f9824b2ced1160e88cc393d64fff9a8ac64"
|
|
1962
2321
|
dependencies = [
|
|
1963
|
-
"rustix",
|
|
2322
|
+
"rustix 0.38.44",
|
|
1964
2323
|
]
|
|
1965
2324
|
|
|
1966
2325
|
[[package]]
|
|
1967
|
-
name = "
|
|
1968
|
-
version = "0.
|
|
2326
|
+
name = "memmap2"
|
|
2327
|
+
version = "0.9.5"
|
|
1969
2328
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1970
|
-
checksum = "
|
|
2329
|
+
checksum = "fd3f7eed9d3848f8b98834af67102b720745c4ec028fcd0aa0239277e7de374f"
|
|
1971
2330
|
dependencies = [
|
|
1972
|
-
"
|
|
2331
|
+
"libc",
|
|
1973
2332
|
]
|
|
1974
2333
|
|
|
1975
2334
|
[[package]]
|
|
@@ -2013,9 +2372,9 @@ checksum = "68354c5c6bd36d73ff3feceb05efa59b6acb7626617f4962be322a825e61f79a"
|
|
|
2013
2372
|
|
|
2014
2373
|
[[package]]
|
|
2015
2374
|
name = "miniz_oxide"
|
|
2016
|
-
version = "0.8.
|
|
2375
|
+
version = "0.8.5"
|
|
2017
2376
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2018
|
-
checksum = "
|
|
2377
|
+
checksum = "8e3e04debbb59698c15bacbb6d93584a8c0ca9cc3213cb423d31f760d8843ce5"
|
|
2019
2378
|
dependencies = [
|
|
2020
2379
|
"adler2",
|
|
2021
2380
|
]
|
|
@@ -2028,7 +2387,7 @@ checksum = "a4a650543ca06a924e8b371db273b2756685faae30f8487da1b56505a8f78b0c"
|
|
|
2028
2387
|
dependencies = [
|
|
2029
2388
|
"libc",
|
|
2030
2389
|
"log",
|
|
2031
|
-
"wasi",
|
|
2390
|
+
"wasi 0.11.0+wasi-snapshot-preview1",
|
|
2032
2391
|
"windows-sys 0.48.0",
|
|
2033
2392
|
]
|
|
2034
2393
|
|
|
@@ -2040,7 +2399,7 @@ checksum = "2886843bf800fba2e3377cff24abf6379b4c4d5c6681eaf9ea5b0d15090450bd"
|
|
|
2040
2399
|
dependencies = [
|
|
2041
2400
|
"libc",
|
|
2042
2401
|
"log",
|
|
2043
|
-
"wasi",
|
|
2402
|
+
"wasi 0.11.0+wasi-snapshot-preview1",
|
|
2044
2403
|
"windows-sys 0.52.0",
|
|
2045
2404
|
]
|
|
2046
2405
|
|
|
@@ -2076,6 +2435,21 @@ dependencies = [
|
|
|
2076
2435
|
"minimal-lexical",
|
|
2077
2436
|
]
|
|
2078
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
|
+
|
|
2447
|
+
[[package]]
|
|
2448
|
+
name = "normalize-line-endings"
|
|
2449
|
+
version = "0.3.0"
|
|
2450
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2451
|
+
checksum = "61807f77802ff30975e01f4f071c8ba10c022052f98b3294119f3e615d13e5be"
|
|
2452
|
+
|
|
2079
2453
|
[[package]]
|
|
2080
2454
|
name = "num"
|
|
2081
2455
|
version = "0.4.3"
|
|
@@ -2151,7 +2525,7 @@ checksum = "ed3955f1a9c7c0c15e092f9c887db08b1fc683305fdf6eb6684f22555355e202"
|
|
|
2151
2525
|
dependencies = [
|
|
2152
2526
|
"proc-macro2",
|
|
2153
2527
|
"quote",
|
|
2154
|
-
"syn 2.0.
|
|
2528
|
+
"syn 2.0.100",
|
|
2155
2529
|
]
|
|
2156
2530
|
|
|
2157
2531
|
[[package]]
|
|
@@ -2197,30 +2571,30 @@ dependencies = [
|
|
|
2197
2571
|
|
|
2198
2572
|
[[package]]
|
|
2199
2573
|
name = "object"
|
|
2200
|
-
version = "0.36.
|
|
2574
|
+
version = "0.36.7"
|
|
2201
2575
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2202
|
-
checksum = "
|
|
2576
|
+
checksum = "62948e14d923ea95ea2c7c86c71013138b66525b86bdc08d2dcc262bdb497b87"
|
|
2203
2577
|
dependencies = [
|
|
2204
2578
|
"crc32fast",
|
|
2205
2579
|
"hashbrown 0.15.2",
|
|
2206
|
-
"indexmap 2.
|
|
2580
|
+
"indexmap 2.8.0",
|
|
2207
2581
|
"memchr",
|
|
2208
2582
|
]
|
|
2209
2583
|
|
|
2210
2584
|
[[package]]
|
|
2211
2585
|
name = "oid-registry"
|
|
2212
|
-
version = "0.
|
|
2586
|
+
version = "0.8.1"
|
|
2213
2587
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2214
|
-
checksum = "
|
|
2588
|
+
checksum = "12f40cff3dde1b6087cc5d5f5d4d65712f34016a03ed60e9c08dcc392736b5b7"
|
|
2215
2589
|
dependencies = [
|
|
2216
2590
|
"asn1-rs",
|
|
2217
2591
|
]
|
|
2218
2592
|
|
|
2219
2593
|
[[package]]
|
|
2220
2594
|
name = "once_cell"
|
|
2221
|
-
version = "1.
|
|
2595
|
+
version = "1.21.2"
|
|
2222
2596
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2223
|
-
checksum = "
|
|
2597
|
+
checksum = "c2806eaa3524762875e21c3dcd057bc4b7bfa01ce4da8d46be1cd43649e1cc6b"
|
|
2224
2598
|
|
|
2225
2599
|
[[package]]
|
|
2226
2600
|
name = "opaque-debug"
|
|
@@ -2239,9 +2613,9 @@ dependencies = [
|
|
|
2239
2613
|
|
|
2240
2614
|
[[package]]
|
|
2241
2615
|
name = "ordered-float"
|
|
2242
|
-
version = "4.
|
|
2616
|
+
version = "4.6.0"
|
|
2243
2617
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2244
|
-
checksum = "
|
|
2618
|
+
checksum = "7bb71e1b3fa6ca1c61f383464aaf2bb0e2f8e772a1f01d486832464de363b951"
|
|
2245
2619
|
dependencies = [
|
|
2246
2620
|
"num-traits",
|
|
2247
2621
|
]
|
|
@@ -2260,9 +2634,9 @@ dependencies = [
|
|
|
2260
2634
|
|
|
2261
2635
|
[[package]]
|
|
2262
2636
|
name = "p384"
|
|
2263
|
-
version = "0.13.
|
|
2637
|
+
version = "0.13.1"
|
|
2264
2638
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2265
|
-
checksum = "
|
|
2639
|
+
checksum = "fe42f1670a52a47d448f14b6a5c61dd78fce51856e68edaa38f7ae3a46b8d6b6"
|
|
2266
2640
|
dependencies = [
|
|
2267
2641
|
"ecdsa",
|
|
2268
2642
|
"elliptic-curve",
|
|
@@ -2293,32 +2667,6 @@ dependencies = [
|
|
|
2293
2667
|
"windows-targets 0.52.6",
|
|
2294
2668
|
]
|
|
2295
2669
|
|
|
2296
|
-
[[package]]
|
|
2297
|
-
name = "parse-display"
|
|
2298
|
-
version = "0.8.2"
|
|
2299
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2300
|
-
checksum = "c6509d08722b53e8dafe97f2027b22ccbe3a5db83cb352931e9716b0aa44bc5c"
|
|
2301
|
-
dependencies = [
|
|
2302
|
-
"once_cell",
|
|
2303
|
-
"parse-display-derive",
|
|
2304
|
-
"regex",
|
|
2305
|
-
]
|
|
2306
|
-
|
|
2307
|
-
[[package]]
|
|
2308
|
-
name = "parse-display-derive"
|
|
2309
|
-
version = "0.8.2"
|
|
2310
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2311
|
-
checksum = "68517892c8daf78da08c0db777fcc17e07f2f63ef70041718f8a7630ad84f341"
|
|
2312
|
-
dependencies = [
|
|
2313
|
-
"once_cell",
|
|
2314
|
-
"proc-macro2",
|
|
2315
|
-
"quote",
|
|
2316
|
-
"regex",
|
|
2317
|
-
"regex-syntax 0.7.5",
|
|
2318
|
-
"structmeta",
|
|
2319
|
-
"syn 2.0.90",
|
|
2320
|
-
]
|
|
2321
|
-
|
|
2322
2670
|
[[package]]
|
|
2323
2671
|
name = "paste"
|
|
2324
2672
|
version = "1.0.15"
|
|
@@ -2346,20 +2694,20 @@ dependencies = [
|
|
|
2346
2694
|
|
|
2347
2695
|
[[package]]
|
|
2348
2696
|
name = "pest"
|
|
2349
|
-
version = "2.
|
|
2697
|
+
version = "2.8.0"
|
|
2350
2698
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2351
|
-
checksum = "
|
|
2699
|
+
checksum = "198db74531d58c70a361c42201efde7e2591e976d518caf7662a47dc5720e7b6"
|
|
2352
2700
|
dependencies = [
|
|
2353
2701
|
"memchr",
|
|
2354
|
-
"thiserror 2.0.
|
|
2702
|
+
"thiserror 2.0.12",
|
|
2355
2703
|
"ucd-trie",
|
|
2356
2704
|
]
|
|
2357
2705
|
|
|
2358
2706
|
[[package]]
|
|
2359
2707
|
name = "pest_derive"
|
|
2360
|
-
version = "2.
|
|
2708
|
+
version = "2.8.0"
|
|
2361
2709
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2362
|
-
checksum = "
|
|
2710
|
+
checksum = "d725d9cfd79e87dccc9341a2ef39d1b6f6353d68c4b33c177febbe1a402c97c5"
|
|
2363
2711
|
dependencies = [
|
|
2364
2712
|
"pest",
|
|
2365
2713
|
"pest_generator",
|
|
@@ -2367,22 +2715,22 @@ dependencies = [
|
|
|
2367
2715
|
|
|
2368
2716
|
[[package]]
|
|
2369
2717
|
name = "pest_generator"
|
|
2370
|
-
version = "2.
|
|
2718
|
+
version = "2.8.0"
|
|
2371
2719
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2372
|
-
checksum = "
|
|
2720
|
+
checksum = "db7d01726be8ab66ab32f9df467ae8b1148906685bbe75c82d1e65d7f5b3f841"
|
|
2373
2721
|
dependencies = [
|
|
2374
2722
|
"pest",
|
|
2375
2723
|
"pest_meta",
|
|
2376
2724
|
"proc-macro2",
|
|
2377
2725
|
"quote",
|
|
2378
|
-
"syn 2.0.
|
|
2726
|
+
"syn 2.0.100",
|
|
2379
2727
|
]
|
|
2380
2728
|
|
|
2381
2729
|
[[package]]
|
|
2382
2730
|
name = "pest_meta"
|
|
2383
|
-
version = "2.
|
|
2731
|
+
version = "2.8.0"
|
|
2384
2732
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2385
|
-
checksum = "
|
|
2733
|
+
checksum = "7f9f832470494906d1fca5329f8ab5791cc60beb230c74815dff541cbd2b5ca0"
|
|
2386
2734
|
dependencies = [
|
|
2387
2735
|
"once_cell",
|
|
2388
2736
|
"pest",
|
|
@@ -2400,45 +2748,45 @@ dependencies = [
|
|
|
2400
2748
|
|
|
2401
2749
|
[[package]]
|
|
2402
2750
|
name = "phf"
|
|
2403
|
-
version = "0.11.
|
|
2751
|
+
version = "0.11.3"
|
|
2404
2752
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2405
|
-
checksum = "
|
|
2753
|
+
checksum = "1fd6780a80ae0c52cc120a26a1a42c1ae51b247a253e4e06113d23d2c2edd078"
|
|
2406
2754
|
dependencies = [
|
|
2407
2755
|
"phf_macros",
|
|
2408
|
-
"phf_shared 0.11.
|
|
2756
|
+
"phf_shared 0.11.3",
|
|
2409
2757
|
]
|
|
2410
2758
|
|
|
2411
2759
|
[[package]]
|
|
2412
2760
|
name = "phf_codegen"
|
|
2413
|
-
version = "0.11.
|
|
2761
|
+
version = "0.11.3"
|
|
2414
2762
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2415
|
-
checksum = "
|
|
2763
|
+
checksum = "aef8048c789fa5e851558d709946d6d79a8ff88c0440c587967f8e94bfb1216a"
|
|
2416
2764
|
dependencies = [
|
|
2417
2765
|
"phf_generator",
|
|
2418
|
-
"phf_shared 0.11.
|
|
2766
|
+
"phf_shared 0.11.3",
|
|
2419
2767
|
]
|
|
2420
2768
|
|
|
2421
2769
|
[[package]]
|
|
2422
2770
|
name = "phf_generator"
|
|
2423
|
-
version = "0.11.
|
|
2771
|
+
version = "0.11.3"
|
|
2424
2772
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2425
|
-
checksum = "
|
|
2773
|
+
checksum = "3c80231409c20246a13fddb31776fb942c38553c51e871f8cbd687a4cfb5843d"
|
|
2426
2774
|
dependencies = [
|
|
2427
|
-
"phf_shared 0.11.
|
|
2775
|
+
"phf_shared 0.11.3",
|
|
2428
2776
|
"rand",
|
|
2429
2777
|
]
|
|
2430
2778
|
|
|
2431
2779
|
[[package]]
|
|
2432
2780
|
name = "phf_macros"
|
|
2433
|
-
version = "0.11.
|
|
2781
|
+
version = "0.11.3"
|
|
2434
2782
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2435
|
-
checksum = "
|
|
2783
|
+
checksum = "f84ac04429c13a7ff43785d75ad27569f2951ce0ffd30a3321230db2fc727216"
|
|
2436
2784
|
dependencies = [
|
|
2437
2785
|
"phf_generator",
|
|
2438
|
-
"phf_shared 0.11.
|
|
2786
|
+
"phf_shared 0.11.3",
|
|
2439
2787
|
"proc-macro2",
|
|
2440
2788
|
"quote",
|
|
2441
|
-
"syn 2.0.
|
|
2789
|
+
"syn 2.0.100",
|
|
2442
2790
|
]
|
|
2443
2791
|
|
|
2444
2792
|
[[package]]
|
|
@@ -2447,18 +2795,50 @@ version = "0.10.0"
|
|
|
2447
2795
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2448
2796
|
checksum = "b6796ad771acdc0123d2a88dc428b5e38ef24456743ddb1744ed628f9815c096"
|
|
2449
2797
|
dependencies = [
|
|
2450
|
-
"siphasher",
|
|
2798
|
+
"siphasher 0.3.11",
|
|
2451
2799
|
]
|
|
2452
2800
|
|
|
2453
2801
|
[[package]]
|
|
2454
2802
|
name = "phf_shared"
|
|
2455
|
-
version = "0.11.
|
|
2803
|
+
version = "0.11.3"
|
|
2804
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2805
|
+
checksum = "67eabc2ef2a60eb7faa00097bd1ffdb5bd28e62bf39990626a582201b7a754e5"
|
|
2806
|
+
dependencies = [
|
|
2807
|
+
"siphasher 1.0.1",
|
|
2808
|
+
]
|
|
2809
|
+
|
|
2810
|
+
[[package]]
|
|
2811
|
+
name = "pin-project"
|
|
2812
|
+
version = "1.1.10"
|
|
2456
2813
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2457
|
-
checksum = "
|
|
2814
|
+
checksum = "677f1add503faace112b9f1373e43e9e054bfdd22ff1a63c1bc485eaec6a6a8a"
|
|
2458
2815
|
dependencies = [
|
|
2459
|
-
"
|
|
2816
|
+
"pin-project-internal",
|
|
2460
2817
|
]
|
|
2461
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
|
+
|
|
2462
2842
|
[[package]]
|
|
2463
2843
|
name = "pkcs1"
|
|
2464
2844
|
version = "0.7.5"
|
|
@@ -2482,15 +2862,24 @@ dependencies = [
|
|
|
2482
2862
|
|
|
2483
2863
|
[[package]]
|
|
2484
2864
|
name = "pkg-config"
|
|
2485
|
-
version = "0.3.
|
|
2865
|
+
version = "0.3.32"
|
|
2486
2866
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2487
|
-
checksum = "
|
|
2867
|
+
checksum = "7edddbd0b52d732b21ad9a5fab5c704c14cd949e5e9a1ec5929a24fded1b904c"
|
|
2488
2868
|
|
|
2489
2869
|
[[package]]
|
|
2490
2870
|
name = "portable-atomic"
|
|
2491
|
-
version = "1.
|
|
2871
|
+
version = "1.11.0"
|
|
2492
2872
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2493
|
-
checksum = "
|
|
2873
|
+
checksum = "350e9b48cbc6b0e028b0473b114454c6316e57336ee184ceab6e53f72c178b3e"
|
|
2874
|
+
|
|
2875
|
+
[[package]]
|
|
2876
|
+
name = "portable-atomic-util"
|
|
2877
|
+
version = "0.2.4"
|
|
2878
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2879
|
+
checksum = "d8a2f0d8d040d7848a709caf78912debcc3f33ee4b3cac47d73d1e1069e83507"
|
|
2880
|
+
dependencies = [
|
|
2881
|
+
"portable-atomic",
|
|
2882
|
+
]
|
|
2494
2883
|
|
|
2495
2884
|
[[package]]
|
|
2496
2885
|
name = "postcard"
|
|
@@ -2512,11 +2901,41 @@ checksum = "439ee305def115ba05938db6eb1644ff94165c5ab5e9420d1c1bcedbba909391"
|
|
|
2512
2901
|
|
|
2513
2902
|
[[package]]
|
|
2514
2903
|
name = "ppv-lite86"
|
|
2515
|
-
version = "0.2.
|
|
2904
|
+
version = "0.2.21"
|
|
2516
2905
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2517
|
-
checksum = "
|
|
2906
|
+
checksum = "85eae3c4ed2f50dcfe72643da4befc30deadb458a9b590d720cde2f2b1e97da9"
|
|
2518
2907
|
dependencies = [
|
|
2519
|
-
"zerocopy",
|
|
2908
|
+
"zerocopy 0.8.24",
|
|
2909
|
+
]
|
|
2910
|
+
|
|
2911
|
+
[[package]]
|
|
2912
|
+
name = "predicates"
|
|
2913
|
+
version = "3.1.3"
|
|
2914
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2915
|
+
checksum = "a5d19ee57562043d37e82899fade9a22ebab7be9cef5026b07fda9cdd4293573"
|
|
2916
|
+
dependencies = [
|
|
2917
|
+
"anstyle",
|
|
2918
|
+
"difflib",
|
|
2919
|
+
"float-cmp",
|
|
2920
|
+
"normalize-line-endings",
|
|
2921
|
+
"predicates-core",
|
|
2922
|
+
"regex",
|
|
2923
|
+
]
|
|
2924
|
+
|
|
2925
|
+
[[package]]
|
|
2926
|
+
name = "predicates-core"
|
|
2927
|
+
version = "1.0.9"
|
|
2928
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2929
|
+
checksum = "727e462b119fe9c93fd0eb1429a5f7647394014cf3c04ab2c0350eeb09095ffa"
|
|
2930
|
+
|
|
2931
|
+
[[package]]
|
|
2932
|
+
name = "predicates-tree"
|
|
2933
|
+
version = "1.0.12"
|
|
2934
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2935
|
+
checksum = "72dd2d6d381dfb73a193c7fca536518d7caee39fc8503f74e7dc0be0531b425c"
|
|
2936
|
+
dependencies = [
|
|
2937
|
+
"predicates-core",
|
|
2938
|
+
"termtree",
|
|
2520
2939
|
]
|
|
2521
2940
|
|
|
2522
2941
|
[[package]]
|
|
@@ -2540,18 +2959,18 @@ dependencies = [
|
|
|
2540
2959
|
|
|
2541
2960
|
[[package]]
|
|
2542
2961
|
name = "proc-macro2"
|
|
2543
|
-
version = "1.0.
|
|
2962
|
+
version = "1.0.94"
|
|
2544
2963
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2545
|
-
checksum = "
|
|
2964
|
+
checksum = "a31971752e70b8b2686d7e46ec17fb38dad4051d94024c88df49b667caea9c84"
|
|
2546
2965
|
dependencies = [
|
|
2547
2966
|
"unicode-ident",
|
|
2548
2967
|
]
|
|
2549
2968
|
|
|
2550
2969
|
[[package]]
|
|
2551
2970
|
name = "protobuf"
|
|
2552
|
-
version = "3.7.
|
|
2971
|
+
version = "3.7.2"
|
|
2553
2972
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2554
|
-
checksum = "
|
|
2973
|
+
checksum = "d65a1d4ddae7d8b5de68153b48f6aa3bba8cb002b243dbdbc55a5afbc98f99f4"
|
|
2555
2974
|
dependencies = [
|
|
2556
2975
|
"once_cell",
|
|
2557
2976
|
"protobuf-support",
|
|
@@ -2560,9 +2979,9 @@ dependencies = [
|
|
|
2560
2979
|
|
|
2561
2980
|
[[package]]
|
|
2562
2981
|
name = "protobuf-codegen"
|
|
2563
|
-
version = "3.7.
|
|
2982
|
+
version = "3.7.2"
|
|
2564
2983
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2565
|
-
checksum = "
|
|
2984
|
+
checksum = "5d3976825c0014bbd2f3b34f0001876604fe87e0c86cd8fa54251530f1544ace"
|
|
2566
2985
|
dependencies = [
|
|
2567
2986
|
"anyhow",
|
|
2568
2987
|
"once_cell",
|
|
@@ -2575,9 +2994,9 @@ dependencies = [
|
|
|
2575
2994
|
|
|
2576
2995
|
[[package]]
|
|
2577
2996
|
name = "protobuf-json-mapping"
|
|
2578
|
-
version = "3.7.
|
|
2997
|
+
version = "3.7.2"
|
|
2579
2998
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2580
|
-
checksum = "
|
|
2999
|
+
checksum = "e0d6e4be637b310d8a5c02fa195243328e2d97fa7df1127a27281ef1187fcb1d"
|
|
2581
3000
|
dependencies = [
|
|
2582
3001
|
"protobuf",
|
|
2583
3002
|
"protobuf-support",
|
|
@@ -2586,12 +3005,12 @@ dependencies = [
|
|
|
2586
3005
|
|
|
2587
3006
|
[[package]]
|
|
2588
3007
|
name = "protobuf-parse"
|
|
2589
|
-
version = "3.7.
|
|
3008
|
+
version = "3.7.2"
|
|
2590
3009
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2591
|
-
checksum = "
|
|
3010
|
+
checksum = "b4aeaa1f2460f1d348eeaeed86aea999ce98c1bded6f089ff8514c9d9dbdc973"
|
|
2592
3011
|
dependencies = [
|
|
2593
3012
|
"anyhow",
|
|
2594
|
-
"indexmap 2.
|
|
3013
|
+
"indexmap 2.8.0",
|
|
2595
3014
|
"log",
|
|
2596
3015
|
"protobuf",
|
|
2597
3016
|
"protobuf-support",
|
|
@@ -2602,18 +3021,33 @@ dependencies = [
|
|
|
2602
3021
|
|
|
2603
3022
|
[[package]]
|
|
2604
3023
|
name = "protobuf-support"
|
|
2605
|
-
version = "3.7.
|
|
3024
|
+
version = "3.7.2"
|
|
2606
3025
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2607
|
-
checksum = "
|
|
3026
|
+
checksum = "3e36c2f31e0a47f9280fb347ef5e461ffcd2c52dd520d8e216b52f93b0b0d7d6"
|
|
2608
3027
|
dependencies = [
|
|
2609
3028
|
"thiserror 1.0.69",
|
|
2610
3029
|
]
|
|
2611
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
|
+
|
|
2612
3046
|
[[package]]
|
|
2613
3047
|
name = "psm"
|
|
2614
|
-
version = "0.1.
|
|
3048
|
+
version = "0.1.25"
|
|
2615
3049
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2616
|
-
checksum = "
|
|
3050
|
+
checksum = "f58e5423e24c18cc840e1c98370b3993c6649cd1678b4d24318bcf0a083cbe88"
|
|
2617
3051
|
dependencies = [
|
|
2618
3052
|
"cc",
|
|
2619
3053
|
]
|
|
@@ -2624,27 +3058,33 @@ version = "0.9.6"
|
|
|
2624
3058
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2625
3059
|
checksum = "57206b407293d2bcd3af849ce869d52068623f19e1b5ff8e8778e3309439682b"
|
|
2626
3060
|
dependencies = [
|
|
2627
|
-
"bitflags 2.
|
|
3061
|
+
"bitflags 2.9.0",
|
|
2628
3062
|
"memchr",
|
|
2629
3063
|
"unicase",
|
|
2630
3064
|
]
|
|
2631
3065
|
|
|
2632
3066
|
[[package]]
|
|
2633
3067
|
name = "pulley-interpreter"
|
|
2634
|
-
version = "
|
|
3068
|
+
version = "30.0.2"
|
|
2635
3069
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2636
|
-
checksum = "
|
|
3070
|
+
checksum = "cb0ecb9823083f71df8735f21f6c44f2f2b55986d674802831df20f27e26c907"
|
|
2637
3071
|
dependencies = [
|
|
2638
3072
|
"cranelift-bitset",
|
|
2639
3073
|
"log",
|
|
2640
|
-
"
|
|
3074
|
+
"wasmtime-math",
|
|
2641
3075
|
]
|
|
2642
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
|
+
|
|
2643
3083
|
[[package]]
|
|
2644
3084
|
name = "pyo3"
|
|
2645
|
-
version = "0.23.
|
|
3085
|
+
version = "0.23.5"
|
|
2646
3086
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2647
|
-
checksum = "
|
|
3087
|
+
checksum = "7778bffd85cf38175ac1f545509665d0b9b92a198ca7941f131f85f7a4f9a872"
|
|
2648
3088
|
dependencies = [
|
|
2649
3089
|
"cfg-if",
|
|
2650
3090
|
"indoc",
|
|
@@ -2660,19 +3100,19 @@ dependencies = [
|
|
|
2660
3100
|
|
|
2661
3101
|
[[package]]
|
|
2662
3102
|
name = "pyo3-build-config"
|
|
2663
|
-
version = "0.23.
|
|
3103
|
+
version = "0.23.5"
|
|
2664
3104
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2665
|
-
checksum = "
|
|
3105
|
+
checksum = "94f6cbe86ef3bf18998d9df6e0f3fc1050a8c5efa409bf712e661a4366e010fb"
|
|
2666
3106
|
dependencies = [
|
|
2667
3107
|
"once_cell",
|
|
2668
|
-
"target-lexicon",
|
|
3108
|
+
"target-lexicon 0.12.16",
|
|
2669
3109
|
]
|
|
2670
3110
|
|
|
2671
3111
|
[[package]]
|
|
2672
3112
|
name = "pyo3-ffi"
|
|
2673
|
-
version = "0.23.
|
|
3113
|
+
version = "0.23.5"
|
|
2674
3114
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2675
|
-
checksum = "
|
|
3115
|
+
checksum = "e9f1b4c431c0bb1c8fb0a338709859eed0d030ff6daa34368d3b152a63dfdd8d"
|
|
2676
3116
|
dependencies = [
|
|
2677
3117
|
"libc",
|
|
2678
3118
|
"pyo3-build-config",
|
|
@@ -2690,53 +3130,59 @@ dependencies = [
|
|
|
2690
3130
|
|
|
2691
3131
|
[[package]]
|
|
2692
3132
|
name = "pyo3-macros"
|
|
2693
|
-
version = "0.23.
|
|
3133
|
+
version = "0.23.5"
|
|
2694
3134
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2695
|
-
checksum = "
|
|
3135
|
+
checksum = "fbc2201328f63c4710f68abdf653c89d8dbc2858b88c5d88b0ff38a75288a9da"
|
|
2696
3136
|
dependencies = [
|
|
2697
3137
|
"proc-macro2",
|
|
2698
3138
|
"pyo3-macros-backend",
|
|
2699
3139
|
"quote",
|
|
2700
|
-
"syn 2.0.
|
|
3140
|
+
"syn 2.0.100",
|
|
2701
3141
|
]
|
|
2702
3142
|
|
|
2703
3143
|
[[package]]
|
|
2704
3144
|
name = "pyo3-macros-backend"
|
|
2705
|
-
version = "0.23.
|
|
3145
|
+
version = "0.23.5"
|
|
2706
3146
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2707
|
-
checksum = "
|
|
3147
|
+
checksum = "fca6726ad0f3da9c9de093d6f116a93c1a38e417ed73bf138472cf4064f72028"
|
|
2708
3148
|
dependencies = [
|
|
2709
3149
|
"heck 0.5.0",
|
|
2710
3150
|
"proc-macro2",
|
|
2711
3151
|
"pyo3-build-config",
|
|
2712
3152
|
"quote",
|
|
2713
|
-
"syn 2.0.
|
|
3153
|
+
"syn 2.0.100",
|
|
2714
3154
|
]
|
|
2715
3155
|
|
|
2716
3156
|
[[package]]
|
|
2717
3157
|
name = "quanta"
|
|
2718
|
-
version = "0.12.
|
|
3158
|
+
version = "0.12.5"
|
|
2719
3159
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2720
|
-
checksum = "
|
|
3160
|
+
checksum = "3bd1fe6824cea6538803de3ff1bc0cf3949024db3d43c9643024bfb33a807c0e"
|
|
2721
3161
|
dependencies = [
|
|
2722
3162
|
"crossbeam-utils",
|
|
2723
3163
|
"libc",
|
|
2724
3164
|
"once_cell",
|
|
2725
3165
|
"raw-cpuid",
|
|
2726
|
-
"wasi",
|
|
3166
|
+
"wasi 0.11.0+wasi-snapshot-preview1",
|
|
2727
3167
|
"web-sys",
|
|
2728
3168
|
"winapi",
|
|
2729
3169
|
]
|
|
2730
3170
|
|
|
2731
3171
|
[[package]]
|
|
2732
3172
|
name = "quote"
|
|
2733
|
-
version = "1.0.
|
|
3173
|
+
version = "1.0.40"
|
|
2734
3174
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2735
|
-
checksum = "
|
|
3175
|
+
checksum = "1885c039570dc00dcb4ff087a89e185fd56bae234ddc7f056a945bf36467248d"
|
|
2736
3176
|
dependencies = [
|
|
2737
3177
|
"proc-macro2",
|
|
2738
3178
|
]
|
|
2739
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
|
+
|
|
2740
3186
|
[[package]]
|
|
2741
3187
|
name = "radium"
|
|
2742
3188
|
version = "0.7.0"
|
|
@@ -2749,7 +3195,6 @@ version = "0.8.5"
|
|
|
2749
3195
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2750
3196
|
checksum = "34af8d1a0e25924bc5b7c43c079c942339d8f0a8b57c39049bef581b46327404"
|
|
2751
3197
|
dependencies = [
|
|
2752
|
-
"libc",
|
|
2753
3198
|
"rand_chacha",
|
|
2754
3199
|
"rand_core",
|
|
2755
3200
|
]
|
|
@@ -2770,16 +3215,16 @@ version = "0.6.4"
|
|
|
2770
3215
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2771
3216
|
checksum = "ec0be4795e2f6a28069bec0b5ff3e2ac9bafc99e6a9a7dc3547996c5c816922c"
|
|
2772
3217
|
dependencies = [
|
|
2773
|
-
"getrandom",
|
|
3218
|
+
"getrandom 0.2.15",
|
|
2774
3219
|
]
|
|
2775
3220
|
|
|
2776
3221
|
[[package]]
|
|
2777
3222
|
name = "raw-cpuid"
|
|
2778
|
-
version = "11.
|
|
3223
|
+
version = "11.5.0"
|
|
2779
3224
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2780
|
-
checksum = "
|
|
3225
|
+
checksum = "c6df7ab838ed27997ba19a4664507e6f82b41fe6e20be42929332156e5e85146"
|
|
2781
3226
|
dependencies = [
|
|
2782
|
-
"bitflags 2.
|
|
3227
|
+
"bitflags 2.9.0",
|
|
2783
3228
|
]
|
|
2784
3229
|
|
|
2785
3230
|
[[package]]
|
|
@@ -2804,11 +3249,11 @@ dependencies = [
|
|
|
2804
3249
|
|
|
2805
3250
|
[[package]]
|
|
2806
3251
|
name = "redox_syscall"
|
|
2807
|
-
version = "0.5.
|
|
3252
|
+
version = "0.5.10"
|
|
2808
3253
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2809
|
-
checksum = "
|
|
3254
|
+
checksum = "0b8c0c260b63a8219631167be35e6a988e9554dbd323f8bd08439c8ed1302bd1"
|
|
2810
3255
|
dependencies = [
|
|
2811
|
-
"bitflags 2.
|
|
3256
|
+
"bitflags 2.9.0",
|
|
2812
3257
|
]
|
|
2813
3258
|
|
|
2814
3259
|
[[package]]
|
|
@@ -2817,21 +3262,22 @@ version = "0.4.6"
|
|
|
2817
3262
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2818
3263
|
checksum = "ba009ff324d1fc1b900bd1fdb31564febe58a8ccc8a6fdbb93b543d33b13ca43"
|
|
2819
3264
|
dependencies = [
|
|
2820
|
-
"getrandom",
|
|
3265
|
+
"getrandom 0.2.15",
|
|
2821
3266
|
"libredox",
|
|
2822
3267
|
"thiserror 1.0.69",
|
|
2823
3268
|
]
|
|
2824
3269
|
|
|
2825
3270
|
[[package]]
|
|
2826
3271
|
name = "regalloc2"
|
|
2827
|
-
version = "0.
|
|
3272
|
+
version = "0.11.1"
|
|
2828
3273
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2829
|
-
checksum = "
|
|
3274
|
+
checksum = "145c1c267e14f20fb0f88aa76a1c5ffec42d592c1d28b3cd9148ae35916158d3"
|
|
2830
3275
|
dependencies = [
|
|
2831
|
-
"
|
|
3276
|
+
"allocator-api2",
|
|
3277
|
+
"bumpalo",
|
|
3278
|
+
"hashbrown 0.15.2",
|
|
2832
3279
|
"log",
|
|
2833
|
-
"rustc-hash 2.1.
|
|
2834
|
-
"slice-group-by",
|
|
3280
|
+
"rustc-hash 2.1.1",
|
|
2835
3281
|
"smallvec",
|
|
2836
3282
|
]
|
|
2837
3283
|
|
|
@@ -2844,7 +3290,7 @@ dependencies = [
|
|
|
2844
3290
|
"aho-corasick",
|
|
2845
3291
|
"memchr",
|
|
2846
3292
|
"regex-automata",
|
|
2847
|
-
"regex-syntax
|
|
3293
|
+
"regex-syntax",
|
|
2848
3294
|
]
|
|
2849
3295
|
|
|
2850
3296
|
[[package]]
|
|
@@ -2855,15 +3301,9 @@ checksum = "809e8dc61f6de73b46c85f4c96486310fe304c434cfa43669d7b40f711150908"
|
|
|
2855
3301
|
dependencies = [
|
|
2856
3302
|
"aho-corasick",
|
|
2857
3303
|
"memchr",
|
|
2858
|
-
"regex-syntax
|
|
3304
|
+
"regex-syntax",
|
|
2859
3305
|
]
|
|
2860
3306
|
|
|
2861
|
-
[[package]]
|
|
2862
|
-
name = "regex-syntax"
|
|
2863
|
-
version = "0.7.5"
|
|
2864
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2865
|
-
checksum = "dbb5fb1acd8a1a18b3dd5be62d25485eb770e05afb408a9627d14d451bae12da"
|
|
2866
|
-
|
|
2867
3307
|
[[package]]
|
|
2868
3308
|
name = "regex-syntax"
|
|
2869
3309
|
version = "0.8.5"
|
|
@@ -2882,15 +3322,14 @@ dependencies = [
|
|
|
2882
3322
|
|
|
2883
3323
|
[[package]]
|
|
2884
3324
|
name = "ring"
|
|
2885
|
-
version = "0.17.
|
|
3325
|
+
version = "0.17.14"
|
|
2886
3326
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2887
|
-
checksum = "
|
|
3327
|
+
checksum = "a4689e6c2294d81e88dc6261c768b63bc4fcdb852be6d1352498b114f61383b7"
|
|
2888
3328
|
dependencies = [
|
|
2889
3329
|
"cc",
|
|
2890
3330
|
"cfg-if",
|
|
2891
|
-
"getrandom",
|
|
3331
|
+
"getrandom 0.2.15",
|
|
2892
3332
|
"libc",
|
|
2893
|
-
"spin",
|
|
2894
3333
|
"untrusted",
|
|
2895
3334
|
"windows-sys 0.52.0",
|
|
2896
3335
|
]
|
|
@@ -2915,9 +3354,9 @@ checksum = "6c20b6793b5c2fa6553b250154b78d6d0db37e72700ae35fad9387a46f487c97"
|
|
|
2915
3354
|
|
|
2916
3355
|
[[package]]
|
|
2917
3356
|
name = "rsa"
|
|
2918
|
-
version = "0.9.
|
|
3357
|
+
version = "0.9.8"
|
|
2919
3358
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2920
|
-
checksum = "
|
|
3359
|
+
checksum = "78928ac1ed176a5ca1d17e578a1825f3d81ca54cf41053a592584b020cfd691b"
|
|
2921
3360
|
dependencies = [
|
|
2922
3361
|
"const-oid",
|
|
2923
3362
|
"digest 0.10.7",
|
|
@@ -2933,6 +3372,12 @@ dependencies = [
|
|
|
2933
3372
|
"zeroize",
|
|
2934
3373
|
]
|
|
2935
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
|
+
|
|
2936
3381
|
[[package]]
|
|
2937
3382
|
name = "rustc-hash"
|
|
2938
3383
|
version = "1.1.0"
|
|
@@ -2941,9 +3386,9 @@ checksum = "08d43f7aa6b08d49f382cde6a7982047c3426db949b1424bc4b7ec9ae12c6ce2"
|
|
|
2941
3386
|
|
|
2942
3387
|
[[package]]
|
|
2943
3388
|
name = "rustc-hash"
|
|
2944
|
-
version = "2.1.
|
|
3389
|
+
version = "2.1.1"
|
|
2945
3390
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2946
|
-
checksum = "
|
|
3391
|
+
checksum = "357703d41365b4b27c590e3ed91eabb1b663f07c4c084095e60cbed4362dff0d"
|
|
2947
3392
|
|
|
2948
3393
|
[[package]]
|
|
2949
3394
|
name = "rustc_version"
|
|
@@ -2951,42 +3396,55 @@ version = "0.4.1"
|
|
|
2951
3396
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2952
3397
|
checksum = "cfcb3a22ef46e85b45de6ee7e79d063319ebb6594faafcf1c225ea92ab6e9b92"
|
|
2953
3398
|
dependencies = [
|
|
2954
|
-
"semver 1.0.
|
|
3399
|
+
"semver 1.0.26",
|
|
2955
3400
|
]
|
|
2956
3401
|
|
|
2957
3402
|
[[package]]
|
|
2958
3403
|
name = "rusticata-macros"
|
|
2959
3404
|
version = "4.1.0"
|
|
2960
3405
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2961
|
-
checksum = "faf0c4a6ece9950b9abdb62b1cfcf2a68b3b67a10ba445b3bb85be2a293d0632"
|
|
3406
|
+
checksum = "faf0c4a6ece9950b9abdb62b1cfcf2a68b3b67a10ba445b3bb85be2a293d0632"
|
|
3407
|
+
dependencies = [
|
|
3408
|
+
"nom 7.1.3",
|
|
3409
|
+
]
|
|
3410
|
+
|
|
3411
|
+
[[package]]
|
|
3412
|
+
name = "rustix"
|
|
3413
|
+
version = "0.38.44"
|
|
3414
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3415
|
+
checksum = "fdb5bc1ae2baa591800df16c9ca78619bf65c0488b41b96ccec5d11220d8c154"
|
|
2962
3416
|
dependencies = [
|
|
2963
|
-
"
|
|
3417
|
+
"bitflags 2.9.0",
|
|
3418
|
+
"errno",
|
|
3419
|
+
"libc",
|
|
3420
|
+
"linux-raw-sys 0.4.15",
|
|
3421
|
+
"windows-sys 0.59.0",
|
|
2964
3422
|
]
|
|
2965
3423
|
|
|
2966
3424
|
[[package]]
|
|
2967
3425
|
name = "rustix"
|
|
2968
|
-
version = "0.
|
|
3426
|
+
version = "1.0.3"
|
|
2969
3427
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2970
|
-
checksum = "
|
|
3428
|
+
checksum = "e56a18552996ac8d29ecc3b190b4fdbb2d91ca4ec396de7bbffaf43f3d637e96"
|
|
2971
3429
|
dependencies = [
|
|
2972
|
-
"bitflags 2.
|
|
3430
|
+
"bitflags 2.9.0",
|
|
2973
3431
|
"errno",
|
|
2974
3432
|
"libc",
|
|
2975
|
-
"linux-raw-sys",
|
|
3433
|
+
"linux-raw-sys 0.9.3",
|
|
2976
3434
|
"windows-sys 0.59.0",
|
|
2977
3435
|
]
|
|
2978
3436
|
|
|
2979
3437
|
[[package]]
|
|
2980
3438
|
name = "rustversion"
|
|
2981
|
-
version = "1.0.
|
|
3439
|
+
version = "1.0.20"
|
|
2982
3440
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2983
|
-
checksum = "
|
|
3441
|
+
checksum = "eded382c5f5f786b989652c49544c4877d9f015cc22e145a5ea8ea66c2921cd2"
|
|
2984
3442
|
|
|
2985
3443
|
[[package]]
|
|
2986
3444
|
name = "ryu"
|
|
2987
|
-
version = "1.0.
|
|
3445
|
+
version = "1.0.20"
|
|
2988
3446
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2989
|
-
checksum = "
|
|
3447
|
+
checksum = "28d3b2b1366ec20994f1fd18c3c594f05c5dd4bc44d8bb0c1c632c8d6829481f"
|
|
2990
3448
|
|
|
2991
3449
|
[[package]]
|
|
2992
3450
|
name = "same-file"
|
|
@@ -3028,9 +3486,9 @@ dependencies = [
|
|
|
3028
3486
|
|
|
3029
3487
|
[[package]]
|
|
3030
3488
|
name = "semver"
|
|
3031
|
-
version = "1.0.
|
|
3489
|
+
version = "1.0.26"
|
|
3032
3490
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3033
|
-
checksum = "
|
|
3491
|
+
checksum = "56e6fa9c48d24d85fb3de5ad847117517440f6beceb7798af16b4a87d616b8d0"
|
|
3034
3492
|
dependencies = [
|
|
3035
3493
|
"serde",
|
|
3036
3494
|
]
|
|
@@ -3046,9 +3504,9 @@ dependencies = [
|
|
|
3046
3504
|
|
|
3047
3505
|
[[package]]
|
|
3048
3506
|
name = "serde"
|
|
3049
|
-
version = "1.0.
|
|
3507
|
+
version = "1.0.219"
|
|
3050
3508
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3051
|
-
checksum = "
|
|
3509
|
+
checksum = "5f0e2c6ed6606019b4e29e69dbaba95b11854410e5347d525002456dbbb786b6"
|
|
3052
3510
|
dependencies = [
|
|
3053
3511
|
"serde_derive",
|
|
3054
3512
|
]
|
|
@@ -3066,22 +3524,22 @@ dependencies = [
|
|
|
3066
3524
|
|
|
3067
3525
|
[[package]]
|
|
3068
3526
|
name = "serde_derive"
|
|
3069
|
-
version = "1.0.
|
|
3527
|
+
version = "1.0.219"
|
|
3070
3528
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3071
|
-
checksum = "
|
|
3529
|
+
checksum = "5b0276cf7f2c73365f7157c8123c21cd9a50fbbd844757af28ca1f5925fc2a00"
|
|
3072
3530
|
dependencies = [
|
|
3073
3531
|
"proc-macro2",
|
|
3074
3532
|
"quote",
|
|
3075
|
-
"syn 2.0.
|
|
3533
|
+
"syn 2.0.100",
|
|
3076
3534
|
]
|
|
3077
3535
|
|
|
3078
3536
|
[[package]]
|
|
3079
3537
|
name = "serde_json"
|
|
3080
|
-
version = "1.0.
|
|
3538
|
+
version = "1.0.140"
|
|
3081
3539
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3082
|
-
checksum = "
|
|
3540
|
+
checksum = "20068b6e96dc6c9bd23e01df8827e6c7e1f2fddd43c21810382803c136b99373"
|
|
3083
3541
|
dependencies = [
|
|
3084
|
-
"indexmap 2.
|
|
3542
|
+
"indexmap 2.8.0",
|
|
3085
3543
|
"itoa",
|
|
3086
3544
|
"memchr",
|
|
3087
3545
|
"ryu",
|
|
@@ -3197,9 +3655,9 @@ checksum = "d66dc143e6b11c1eddc06d5c423cfc97062865baf299914ab64caa38182078fe"
|
|
|
3197
3655
|
|
|
3198
3656
|
[[package]]
|
|
3199
3657
|
name = "similar"
|
|
3200
|
-
version = "2.
|
|
3658
|
+
version = "2.7.0"
|
|
3201
3659
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3202
|
-
checksum = "
|
|
3660
|
+
checksum = "bbbb5d9659141646ae647b42fe094daf6c6192d1620870b449d9557f748b2daa"
|
|
3203
3661
|
dependencies = [
|
|
3204
3662
|
"bstr",
|
|
3205
3663
|
"unicode-segmentation",
|
|
@@ -3207,9 +3665,9 @@ dependencies = [
|
|
|
3207
3665
|
|
|
3208
3666
|
[[package]]
|
|
3209
3667
|
name = "similar-asserts"
|
|
3210
|
-
version = "1.
|
|
3668
|
+
version = "1.7.0"
|
|
3211
3669
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3212
|
-
checksum = "
|
|
3670
|
+
checksum = "b5b441962c817e33508847a22bd82f03a30cff43642dc2fae8b050566121eb9a"
|
|
3213
3671
|
dependencies = [
|
|
3214
3672
|
"console",
|
|
3215
3673
|
"similar",
|
|
@@ -3221,6 +3679,12 @@ version = "0.3.11"
|
|
|
3221
3679
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3222
3680
|
checksum = "38b58827f4464d87d377d175e90bf58eb00fd8716ff0a62f80356b5e61555d0d"
|
|
3223
3681
|
|
|
3682
|
+
[[package]]
|
|
3683
|
+
name = "siphasher"
|
|
3684
|
+
version = "1.0.1"
|
|
3685
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3686
|
+
checksum = "56199f7ddabf13fe5074ce809e7d3f42b42ae711800501b5b16ea82ad029c39d"
|
|
3687
|
+
|
|
3224
3688
|
[[package]]
|
|
3225
3689
|
name = "skeptic"
|
|
3226
3690
|
version = "0.13.7"
|
|
@@ -3237,20 +3701,33 @@ dependencies = [
|
|
|
3237
3701
|
]
|
|
3238
3702
|
|
|
3239
3703
|
[[package]]
|
|
3240
|
-
name = "
|
|
3241
|
-
version = "0.
|
|
3704
|
+
name = "slab"
|
|
3705
|
+
version = "0.4.9"
|
|
3242
3706
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3243
|
-
checksum = "
|
|
3707
|
+
checksum = "8f92a496fb766b417c996b9c5e57daf2f7ad3b0bebe1ccfca4856390e3d3bb67"
|
|
3708
|
+
dependencies = [
|
|
3709
|
+
"autocfg",
|
|
3710
|
+
]
|
|
3244
3711
|
|
|
3245
3712
|
[[package]]
|
|
3246
3713
|
name = "smallvec"
|
|
3247
|
-
version = "1.
|
|
3714
|
+
version = "1.14.0"
|
|
3248
3715
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3249
|
-
checksum = "
|
|
3716
|
+
checksum = "7fcf8323ef1faaee30a44a340193b1ac6814fd9b7b4e88e9d4519a3e4abe1cfd"
|
|
3250
3717
|
dependencies = [
|
|
3251
3718
|
"serde",
|
|
3252
3719
|
]
|
|
3253
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
|
+
|
|
3254
3731
|
[[package]]
|
|
3255
3732
|
name = "spin"
|
|
3256
3733
|
version = "0.9.8"
|
|
@@ -3297,59 +3774,23 @@ version = "0.11.1"
|
|
|
3297
3774
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3298
3775
|
checksum = "7da8b5736845d9f2fcb837ea5d9e2628564b3b043a70948a3f0b778838c5fb4f"
|
|
3299
3776
|
|
|
3300
|
-
[[package]]
|
|
3301
|
-
name = "structmeta"
|
|
3302
|
-
version = "0.2.0"
|
|
3303
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3304
|
-
checksum = "78ad9e09554f0456d67a69c1584c9798ba733a5b50349a6c0d0948710523922d"
|
|
3305
|
-
dependencies = [
|
|
3306
|
-
"proc-macro2",
|
|
3307
|
-
"quote",
|
|
3308
|
-
"structmeta-derive",
|
|
3309
|
-
"syn 2.0.90",
|
|
3310
|
-
]
|
|
3311
|
-
|
|
3312
|
-
[[package]]
|
|
3313
|
-
name = "structmeta-derive"
|
|
3314
|
-
version = "0.2.0"
|
|
3315
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3316
|
-
checksum = "a60bcaff7397072dca0017d1db428e30d5002e00b6847703e2e42005c95fbe00"
|
|
3317
|
-
dependencies = [
|
|
3318
|
-
"proc-macro2",
|
|
3319
|
-
"quote",
|
|
3320
|
-
"syn 2.0.90",
|
|
3321
|
-
]
|
|
3322
|
-
|
|
3323
3777
|
[[package]]
|
|
3324
3778
|
name = "strum"
|
|
3325
|
-
version = "0.
|
|
3326
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3327
|
-
checksum = "290d54ea6f91c969195bdbcd7442c8c2a2ba87da8bf60a7ee86a235d4bc1e125"
|
|
3328
|
-
|
|
3329
|
-
[[package]]
|
|
3330
|
-
name = "strum_macros"
|
|
3331
|
-
version = "0.25.3"
|
|
3779
|
+
version = "0.27.1"
|
|
3332
3780
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3333
|
-
checksum = "
|
|
3334
|
-
dependencies = [
|
|
3335
|
-
"heck 0.4.1",
|
|
3336
|
-
"proc-macro2",
|
|
3337
|
-
"quote",
|
|
3338
|
-
"rustversion",
|
|
3339
|
-
"syn 2.0.90",
|
|
3340
|
-
]
|
|
3781
|
+
checksum = "f64def088c51c9510a8579e3c5d67c65349dcf755e5479ad3d010aa6454e2c32"
|
|
3341
3782
|
|
|
3342
3783
|
[[package]]
|
|
3343
3784
|
name = "strum_macros"
|
|
3344
|
-
version = "0.
|
|
3785
|
+
version = "0.27.1"
|
|
3345
3786
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3346
|
-
checksum = "
|
|
3787
|
+
checksum = "c77a8c5abcaf0f9ce05d62342b7d298c346515365c36b673df4ebe3ced01fde8"
|
|
3347
3788
|
dependencies = [
|
|
3348
3789
|
"heck 0.5.0",
|
|
3349
3790
|
"proc-macro2",
|
|
3350
3791
|
"quote",
|
|
3351
3792
|
"rustversion",
|
|
3352
|
-
"syn 2.0.
|
|
3793
|
+
"syn 2.0.100",
|
|
3353
3794
|
]
|
|
3354
3795
|
|
|
3355
3796
|
[[package]]
|
|
@@ -3387,9 +3828,9 @@ dependencies = [
|
|
|
3387
3828
|
|
|
3388
3829
|
[[package]]
|
|
3389
3830
|
name = "syn"
|
|
3390
|
-
version = "2.0.
|
|
3831
|
+
version = "2.0.100"
|
|
3391
3832
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3392
|
-
checksum = "
|
|
3833
|
+
checksum = "b09a44accad81e1ba1cd74a32461ba89dee89095ba17b32f5d03683b1b1fc2a0"
|
|
3393
3834
|
dependencies = [
|
|
3394
3835
|
"proc-macro2",
|
|
3395
3836
|
"quote",
|
|
@@ -3404,7 +3845,7 @@ checksum = "c8af7666ab7b6390ab78131fb5b0fce11d6b7a6951602017c35fa82800708971"
|
|
|
3404
3845
|
dependencies = [
|
|
3405
3846
|
"proc-macro2",
|
|
3406
3847
|
"quote",
|
|
3407
|
-
"syn 2.0.
|
|
3848
|
+
"syn 2.0.100",
|
|
3408
3849
|
]
|
|
3409
3850
|
|
|
3410
3851
|
[[package]]
|
|
@@ -3419,16 +3860,22 @@ version = "0.12.16"
|
|
|
3419
3860
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3420
3861
|
checksum = "61c41af27dd6d1e27b1b16b489db798443478cef1f06a660c96db617ba5de3b1"
|
|
3421
3862
|
|
|
3863
|
+
[[package]]
|
|
3864
|
+
name = "target-lexicon"
|
|
3865
|
+
version = "0.13.2"
|
|
3866
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3867
|
+
checksum = "e502f78cdbb8ba4718f566c418c52bc729126ffd16baee5baa718cf25dd5a69a"
|
|
3868
|
+
|
|
3422
3869
|
[[package]]
|
|
3423
3870
|
name = "tempfile"
|
|
3424
|
-
version = "3.
|
|
3871
|
+
version = "3.19.1"
|
|
3425
3872
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3426
|
-
checksum = "
|
|
3873
|
+
checksum = "7437ac7763b9b123ccf33c338a5cc1bac6f69b45a136c19bdd8a65e3916435bf"
|
|
3427
3874
|
dependencies = [
|
|
3428
|
-
"cfg-if",
|
|
3429
3875
|
"fastrand",
|
|
3876
|
+
"getrandom 0.3.2",
|
|
3430
3877
|
"once_cell",
|
|
3431
|
-
"rustix",
|
|
3878
|
+
"rustix 1.0.3",
|
|
3432
3879
|
"windows-sys 0.59.0",
|
|
3433
3880
|
]
|
|
3434
3881
|
|
|
@@ -3450,7 +3897,7 @@ dependencies = [
|
|
|
3450
3897
|
"dirs",
|
|
3451
3898
|
"fnv",
|
|
3452
3899
|
"nom 5.1.3",
|
|
3453
|
-
"phf 0.11.
|
|
3900
|
+
"phf 0.11.3",
|
|
3454
3901
|
"phf_codegen",
|
|
3455
3902
|
]
|
|
3456
3903
|
|
|
@@ -3463,6 +3910,12 @@ dependencies = [
|
|
|
3463
3910
|
"libc",
|
|
3464
3911
|
]
|
|
3465
3912
|
|
|
3913
|
+
[[package]]
|
|
3914
|
+
name = "termtree"
|
|
3915
|
+
version = "0.5.1"
|
|
3916
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3917
|
+
checksum = "8f50febec83f5ee1df3015341d8bd429f2d1cc62bcba7ea2076759d315084683"
|
|
3918
|
+
|
|
3466
3919
|
[[package]]
|
|
3467
3920
|
name = "termwiz"
|
|
3468
3921
|
version = "0.18.0"
|
|
@@ -3492,7 +3945,7 @@ dependencies = [
|
|
|
3492
3945
|
"semver 0.11.0",
|
|
3493
3946
|
"sha2 0.9.9",
|
|
3494
3947
|
"signal-hook 0.1.17",
|
|
3495
|
-
"siphasher",
|
|
3948
|
+
"siphasher 0.3.11",
|
|
3496
3949
|
"terminfo",
|
|
3497
3950
|
"termios",
|
|
3498
3951
|
"thiserror 1.0.69",
|
|
@@ -3522,11 +3975,11 @@ dependencies = [
|
|
|
3522
3975
|
|
|
3523
3976
|
[[package]]
|
|
3524
3977
|
name = "thiserror"
|
|
3525
|
-
version = "2.0.
|
|
3978
|
+
version = "2.0.12"
|
|
3526
3979
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3527
|
-
checksum = "
|
|
3980
|
+
checksum = "567b8a2dae586314f7be2a752ec7474332959c6460e02bde30d702a66d488708"
|
|
3528
3981
|
dependencies = [
|
|
3529
|
-
"thiserror-impl 2.0.
|
|
3982
|
+
"thiserror-impl 2.0.12",
|
|
3530
3983
|
]
|
|
3531
3984
|
|
|
3532
3985
|
[[package]]
|
|
@@ -3537,25 +3990,25 @@ checksum = "4fee6c4efc90059e10f81e6d42c60a18f76588c3d74cb83a0b242a2b6c7504c1"
|
|
|
3537
3990
|
dependencies = [
|
|
3538
3991
|
"proc-macro2",
|
|
3539
3992
|
"quote",
|
|
3540
|
-
"syn 2.0.
|
|
3993
|
+
"syn 2.0.100",
|
|
3541
3994
|
]
|
|
3542
3995
|
|
|
3543
3996
|
[[package]]
|
|
3544
3997
|
name = "thiserror-impl"
|
|
3545
|
-
version = "2.0.
|
|
3998
|
+
version = "2.0.12"
|
|
3546
3999
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3547
|
-
checksum = "
|
|
4000
|
+
checksum = "7f7cf42b4507d8ea322120659672cf1b9dbb93f8f2d4ecfd6e51350ff5b17a1d"
|
|
3548
4001
|
dependencies = [
|
|
3549
4002
|
"proc-macro2",
|
|
3550
4003
|
"quote",
|
|
3551
|
-
"syn 2.0.
|
|
4004
|
+
"syn 2.0.100",
|
|
3552
4005
|
]
|
|
3553
4006
|
|
|
3554
4007
|
[[package]]
|
|
3555
4008
|
name = "time"
|
|
3556
|
-
version = "0.3.
|
|
4009
|
+
version = "0.3.41"
|
|
3557
4010
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3558
|
-
checksum = "
|
|
4011
|
+
checksum = "8a7619e19bc266e0f9c5e6686659d394bc57973859340060a69221e57dbc0c40"
|
|
3559
4012
|
dependencies = [
|
|
3560
4013
|
"deranged",
|
|
3561
4014
|
"itoa",
|
|
@@ -3568,15 +4021,15 @@ dependencies = [
|
|
|
3568
4021
|
|
|
3569
4022
|
[[package]]
|
|
3570
4023
|
name = "time-core"
|
|
3571
|
-
version = "0.1.
|
|
4024
|
+
version = "0.1.4"
|
|
3572
4025
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3573
|
-
checksum = "
|
|
4026
|
+
checksum = "c9e9a38711f559d9e3ce1cdb06dd7c5b8ea546bc90052da6d06bb76da74bb07c"
|
|
3574
4027
|
|
|
3575
4028
|
[[package]]
|
|
3576
4029
|
name = "time-macros"
|
|
3577
|
-
version = "0.2.
|
|
4030
|
+
version = "0.2.22"
|
|
3578
4031
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3579
|
-
checksum = "
|
|
4032
|
+
checksum = "3526739392ec93fd8b359c8e98514cb3e8e021beb4e5f597b00a0221f8ed8a49"
|
|
3580
4033
|
dependencies = [
|
|
3581
4034
|
"num-conv",
|
|
3582
4035
|
"time-core",
|
|
@@ -3597,11 +4050,53 @@ version = "0.1.1"
|
|
|
3597
4050
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3598
4051
|
checksum = "f762ca8308eda1e38512dc88a99f021e5214699ba133de157f588c8bfd0745c7"
|
|
3599
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
|
+
|
|
3600
4095
|
[[package]]
|
|
3601
4096
|
name = "toml"
|
|
3602
|
-
version = "0.8.
|
|
4097
|
+
version = "0.8.20"
|
|
3603
4098
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3604
|
-
checksum = "
|
|
4099
|
+
checksum = "cd87a5cdd6ffab733b2f74bc4fd7ee5fff6634124999ac278c35fc78c6120148"
|
|
3605
4100
|
dependencies = [
|
|
3606
4101
|
"serde",
|
|
3607
4102
|
"serde_spanned",
|
|
@@ -3620,22 +4115,73 @@ dependencies = [
|
|
|
3620
4115
|
|
|
3621
4116
|
[[package]]
|
|
3622
4117
|
name = "toml_edit"
|
|
3623
|
-
version = "0.22.
|
|
4118
|
+
version = "0.22.24"
|
|
3624
4119
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3625
|
-
checksum = "
|
|
4120
|
+
checksum = "17b4795ff5edd201c7cd6dca065ae59972ce77d1b80fa0a84d94950ece7d1474"
|
|
3626
4121
|
dependencies = [
|
|
3627
|
-
"indexmap 2.
|
|
4122
|
+
"indexmap 2.8.0",
|
|
3628
4123
|
"serde",
|
|
3629
4124
|
"serde_spanned",
|
|
3630
4125
|
"toml_datetime",
|
|
3631
4126
|
"winnow",
|
|
3632
4127
|
]
|
|
3633
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
|
+
|
|
3634
4180
|
[[package]]
|
|
3635
4181
|
name = "typenum"
|
|
3636
|
-
version = "1.
|
|
4182
|
+
version = "1.18.0"
|
|
3637
4183
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3638
|
-
checksum = "
|
|
4184
|
+
checksum = "1dccffe3ce07af9386bfd29e80c0ab1a8205a2fc34e4bcd40364df902cfa8f3f"
|
|
3639
4185
|
|
|
3640
4186
|
[[package]]
|
|
3641
4187
|
name = "ucd-trie"
|
|
@@ -3654,15 +4200,15 @@ dependencies = [
|
|
|
3654
4200
|
|
|
3655
4201
|
[[package]]
|
|
3656
4202
|
name = "unicase"
|
|
3657
|
-
version = "2.8.
|
|
4203
|
+
version = "2.8.1"
|
|
3658
4204
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3659
|
-
checksum = "
|
|
4205
|
+
checksum = "75b844d17643ee918803943289730bec8aac480150456169e647ed0b576ba539"
|
|
3660
4206
|
|
|
3661
4207
|
[[package]]
|
|
3662
4208
|
name = "unicode-ident"
|
|
3663
|
-
version = "1.0.
|
|
4209
|
+
version = "1.0.18"
|
|
3664
4210
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3665
|
-
checksum = "
|
|
4211
|
+
checksum = "5a5f39404a5da50712a4c1eecf25e90dd62b613502b7e925fd4e4d19b5c96512"
|
|
3666
4212
|
|
|
3667
4213
|
[[package]]
|
|
3668
4214
|
name = "unicode-segmentation"
|
|
@@ -3676,17 +4222,11 @@ version = "0.2.0"
|
|
|
3676
4222
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3677
4223
|
checksum = "1fc81956842c57dac11422a97c3b8195a1ff727f06e85c84ed2e8aa277c9a0fd"
|
|
3678
4224
|
|
|
3679
|
-
[[package]]
|
|
3680
|
-
name = "unicode-xid"
|
|
3681
|
-
version = "0.2.6"
|
|
3682
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3683
|
-
checksum = "ebc1c04c71510c7f702b52b7c350734c9ff1295c464a03335b00bb84fc54f853"
|
|
3684
|
-
|
|
3685
4225
|
[[package]]
|
|
3686
4226
|
name = "unindent"
|
|
3687
|
-
version = "0.2.
|
|
4227
|
+
version = "0.2.4"
|
|
3688
4228
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3689
|
-
checksum = "
|
|
4229
|
+
checksum = "7264e107f553ccae879d21fbea1d6724ac785e8c3bfc762137959b5802826ef3"
|
|
3690
4230
|
|
|
3691
4231
|
[[package]]
|
|
3692
4232
|
name = "untrusted"
|
|
@@ -3702,11 +4242,11 @@ checksum = "06abde3611657adf66d383f00b093d7faecc7fa57071cce2578660c9f1010821"
|
|
|
3702
4242
|
|
|
3703
4243
|
[[package]]
|
|
3704
4244
|
name = "uuid"
|
|
3705
|
-
version = "1.
|
|
4245
|
+
version = "1.16.0"
|
|
3706
4246
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3707
|
-
checksum = "
|
|
4247
|
+
checksum = "458f7a779bf54acc9f347480ac654f68407d3aab21269a6e3c9f922acd9e2da9"
|
|
3708
4248
|
dependencies = [
|
|
3709
|
-
"getrandom",
|
|
4249
|
+
"getrandom 0.3.2",
|
|
3710
4250
|
]
|
|
3711
4251
|
|
|
3712
4252
|
[[package]]
|
|
@@ -3730,6 +4270,15 @@ dependencies = [
|
|
|
3730
4270
|
"utf8parse",
|
|
3731
4271
|
]
|
|
3732
4272
|
|
|
4273
|
+
[[package]]
|
|
4274
|
+
name = "wait-timeout"
|
|
4275
|
+
version = "0.2.1"
|
|
4276
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4277
|
+
checksum = "09ac3b126d3914f9849036f826e054cbabdc8519970b8998ddaf3b5bd3c65f11"
|
|
4278
|
+
dependencies = [
|
|
4279
|
+
"libc",
|
|
4280
|
+
]
|
|
4281
|
+
|
|
3733
4282
|
[[package]]
|
|
3734
4283
|
name = "walkdir"
|
|
3735
4284
|
version = "2.5.0"
|
|
@@ -3742,9 +4291,9 @@ dependencies = [
|
|
|
3742
4291
|
|
|
3743
4292
|
[[package]]
|
|
3744
4293
|
name = "walrus"
|
|
3745
|
-
version = "0.23.
|
|
4294
|
+
version = "0.23.3"
|
|
3746
4295
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3747
|
-
checksum = "
|
|
4296
|
+
checksum = "6481311b98508f4bc2d0abbfa5d42172e7a54b4b24d8f15e28b0dc650be0c59f"
|
|
3748
4297
|
dependencies = [
|
|
3749
4298
|
"anyhow",
|
|
3750
4299
|
"gimli 0.26.2",
|
|
@@ -3765,7 +4314,16 @@ dependencies = [
|
|
|
3765
4314
|
"heck 0.5.0",
|
|
3766
4315
|
"proc-macro2",
|
|
3767
4316
|
"quote",
|
|
3768
|
-
"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",
|
|
3769
4327
|
]
|
|
3770
4328
|
|
|
3771
4329
|
[[package]]
|
|
@@ -3774,36 +4332,46 @@ version = "0.11.0+wasi-snapshot-preview1"
|
|
|
3774
4332
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3775
4333
|
checksum = "9c8d87e72b64a3b4db28d11ce29237c246188f4f51057d65a7eab63b7987e423"
|
|
3776
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
|
+
|
|
3777
4344
|
[[package]]
|
|
3778
4345
|
name = "wasm-bindgen"
|
|
3779
|
-
version = "0.2.
|
|
4346
|
+
version = "0.2.100"
|
|
3780
4347
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3781
|
-
checksum = "
|
|
4348
|
+
checksum = "1edc8929d7499fc4e8f0be2262a241556cfc54a0bea223790e71446f2aab1ef5"
|
|
3782
4349
|
dependencies = [
|
|
3783
4350
|
"cfg-if",
|
|
3784
4351
|
"once_cell",
|
|
4352
|
+
"rustversion",
|
|
3785
4353
|
"wasm-bindgen-macro",
|
|
3786
4354
|
]
|
|
3787
4355
|
|
|
3788
4356
|
[[package]]
|
|
3789
4357
|
name = "wasm-bindgen-backend"
|
|
3790
|
-
version = "0.2.
|
|
4358
|
+
version = "0.2.100"
|
|
3791
4359
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3792
|
-
checksum = "
|
|
4360
|
+
checksum = "2f0a0651a5c2bc21487bde11ee802ccaf4c51935d0d3d42a6101f98161700bc6"
|
|
3793
4361
|
dependencies = [
|
|
3794
4362
|
"bumpalo",
|
|
3795
4363
|
"log",
|
|
3796
4364
|
"proc-macro2",
|
|
3797
4365
|
"quote",
|
|
3798
|
-
"syn 2.0.
|
|
4366
|
+
"syn 2.0.100",
|
|
3799
4367
|
"wasm-bindgen-shared",
|
|
3800
4368
|
]
|
|
3801
4369
|
|
|
3802
4370
|
[[package]]
|
|
3803
4371
|
name = "wasm-bindgen-macro"
|
|
3804
|
-
version = "0.2.
|
|
4372
|
+
version = "0.2.100"
|
|
3805
4373
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3806
|
-
checksum = "
|
|
4374
|
+
checksum = "7fe63fc6d09ed3792bd0897b314f53de8e16568c2b3f7982f468c0bf9bd0b407"
|
|
3807
4375
|
dependencies = [
|
|
3808
4376
|
"quote",
|
|
3809
4377
|
"wasm-bindgen-macro-support",
|
|
@@ -3811,22 +4379,25 @@ dependencies = [
|
|
|
3811
4379
|
|
|
3812
4380
|
[[package]]
|
|
3813
4381
|
name = "wasm-bindgen-macro-support"
|
|
3814
|
-
version = "0.2.
|
|
4382
|
+
version = "0.2.100"
|
|
3815
4383
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3816
|
-
checksum = "
|
|
4384
|
+
checksum = "8ae87ea40c9f689fc23f209965b6fb8a99ad69aeeb0231408be24920604395de"
|
|
3817
4385
|
dependencies = [
|
|
3818
4386
|
"proc-macro2",
|
|
3819
4387
|
"quote",
|
|
3820
|
-
"syn 2.0.
|
|
4388
|
+
"syn 2.0.100",
|
|
3821
4389
|
"wasm-bindgen-backend",
|
|
3822
4390
|
"wasm-bindgen-shared",
|
|
3823
4391
|
]
|
|
3824
4392
|
|
|
3825
4393
|
[[package]]
|
|
3826
4394
|
name = "wasm-bindgen-shared"
|
|
3827
|
-
version = "0.2.
|
|
4395
|
+
version = "0.2.100"
|
|
3828
4396
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3829
|
-
checksum = "
|
|
4397
|
+
checksum = "1a05d73b933a847d6cccdda8f838a22ff101ad9bf93e33684f39c1f5f0eece3d"
|
|
4398
|
+
dependencies = [
|
|
4399
|
+
"unicode-ident",
|
|
4400
|
+
]
|
|
3830
4401
|
|
|
3831
4402
|
[[package]]
|
|
3832
4403
|
name = "wasm-encoder"
|
|
@@ -3839,11 +4410,12 @@ dependencies = [
|
|
|
3839
4410
|
|
|
3840
4411
|
[[package]]
|
|
3841
4412
|
name = "wasm-encoder"
|
|
3842
|
-
version = "0.
|
|
4413
|
+
version = "0.224.1"
|
|
3843
4414
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3844
|
-
checksum = "
|
|
4415
|
+
checksum = "1ab7a13a23790fe91ea4eb7526a1f3131001d874e3e00c2976c48861f2e82920"
|
|
3845
4416
|
dependencies = [
|
|
3846
4417
|
"leb128",
|
|
4418
|
+
"wasmparser 0.224.1",
|
|
3847
4419
|
]
|
|
3848
4420
|
|
|
3849
4421
|
[[package]]
|
|
@@ -3853,53 +4425,52 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
3853
4425
|
checksum = "5309c1090e3e84dad0d382f42064e9933fdaedb87e468cc239f0eabea73ddcb6"
|
|
3854
4426
|
dependencies = [
|
|
3855
4427
|
"ahash",
|
|
3856
|
-
"bitflags 2.
|
|
4428
|
+
"bitflags 2.9.0",
|
|
3857
4429
|
"hashbrown 0.14.5",
|
|
3858
|
-
"indexmap 2.
|
|
3859
|
-
"semver 1.0.
|
|
4430
|
+
"indexmap 2.8.0",
|
|
4431
|
+
"semver 1.0.26",
|
|
3860
4432
|
"serde",
|
|
3861
4433
|
]
|
|
3862
4434
|
|
|
3863
4435
|
[[package]]
|
|
3864
4436
|
name = "wasmparser"
|
|
3865
|
-
version = "0.
|
|
4437
|
+
version = "0.224.1"
|
|
3866
4438
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3867
|
-
checksum = "
|
|
4439
|
+
checksum = "04f17a5917c2ddd3819e84c661fae0d6ba29d7b9c1f0e96c708c65a9c4188e11"
|
|
3868
4440
|
dependencies = [
|
|
3869
|
-
"
|
|
3870
|
-
"
|
|
3871
|
-
"
|
|
3872
|
-
"
|
|
3873
|
-
"semver 1.0.23",
|
|
4441
|
+
"bitflags 2.9.0",
|
|
4442
|
+
"hashbrown 0.15.2",
|
|
4443
|
+
"indexmap 2.8.0",
|
|
4444
|
+
"semver 1.0.26",
|
|
3874
4445
|
"serde",
|
|
3875
4446
|
]
|
|
3876
4447
|
|
|
3877
4448
|
[[package]]
|
|
3878
4449
|
name = "wasmprinter"
|
|
3879
|
-
version = "0.
|
|
4450
|
+
version = "0.224.1"
|
|
3880
4451
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3881
|
-
checksum = "
|
|
4452
|
+
checksum = "0095b53a3b09cbc2f90f789ea44aa1b17ecc2dad8b267e657c7391f3ded6293d"
|
|
3882
4453
|
dependencies = [
|
|
3883
4454
|
"anyhow",
|
|
3884
4455
|
"termcolor",
|
|
3885
|
-
"wasmparser 0.
|
|
4456
|
+
"wasmparser 0.224.1",
|
|
3886
4457
|
]
|
|
3887
4458
|
|
|
3888
4459
|
[[package]]
|
|
3889
4460
|
name = "wasmtime"
|
|
3890
|
-
version = "
|
|
4461
|
+
version = "30.0.2"
|
|
3891
4462
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3892
|
-
checksum = "
|
|
4463
|
+
checksum = "809cc8780708f1deed0a7c3fcab46954f0e8c08a6fe0252772481fbc88fcf946"
|
|
3893
4464
|
dependencies = [
|
|
4465
|
+
"addr2line",
|
|
3894
4466
|
"anyhow",
|
|
3895
|
-
"bitflags 2.
|
|
4467
|
+
"bitflags 2.9.0",
|
|
3896
4468
|
"bumpalo",
|
|
3897
4469
|
"cc",
|
|
3898
4470
|
"cfg-if",
|
|
3899
|
-
"hashbrown 0.
|
|
3900
|
-
"indexmap 2.
|
|
4471
|
+
"hashbrown 0.15.2",
|
|
4472
|
+
"indexmap 2.8.0",
|
|
3901
4473
|
"libc",
|
|
3902
|
-
"libm",
|
|
3903
4474
|
"log",
|
|
3904
4475
|
"mach2",
|
|
3905
4476
|
"memfd",
|
|
@@ -3910,18 +4481,19 @@ dependencies = [
|
|
|
3910
4481
|
"psm",
|
|
3911
4482
|
"pulley-interpreter",
|
|
3912
4483
|
"rayon",
|
|
3913
|
-
"rustix",
|
|
4484
|
+
"rustix 0.38.44",
|
|
3914
4485
|
"serde",
|
|
3915
4486
|
"serde_derive",
|
|
3916
4487
|
"smallvec",
|
|
3917
4488
|
"sptr",
|
|
3918
|
-
"target-lexicon",
|
|
3919
|
-
"wasmparser 0.
|
|
4489
|
+
"target-lexicon 0.13.2",
|
|
4490
|
+
"wasmparser 0.224.1",
|
|
3920
4491
|
"wasmtime-asm-macros",
|
|
3921
|
-
"wasmtime-component-macro",
|
|
3922
4492
|
"wasmtime-cranelift",
|
|
3923
4493
|
"wasmtime-environ",
|
|
4494
|
+
"wasmtime-fiber",
|
|
3924
4495
|
"wasmtime-jit-icache-coherence",
|
|
4496
|
+
"wasmtime-math",
|
|
3925
4497
|
"wasmtime-slab",
|
|
3926
4498
|
"wasmtime-versioned-export-macros",
|
|
3927
4499
|
"windows-sys 0.59.0",
|
|
@@ -3929,39 +4501,18 @@ dependencies = [
|
|
|
3929
4501
|
|
|
3930
4502
|
[[package]]
|
|
3931
4503
|
name = "wasmtime-asm-macros"
|
|
3932
|
-
version = "
|
|
4504
|
+
version = "30.0.2"
|
|
3933
4505
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3934
|
-
checksum = "
|
|
4506
|
+
checksum = "236964b6b35af0f08879c9c56dbfbc5adc12e8d624672341a0121df31adaa3fa"
|
|
3935
4507
|
dependencies = [
|
|
3936
4508
|
"cfg-if",
|
|
3937
4509
|
]
|
|
3938
4510
|
|
|
3939
|
-
[[package]]
|
|
3940
|
-
name = "wasmtime-component-macro"
|
|
3941
|
-
version = "26.0.1"
|
|
3942
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3943
|
-
checksum = "d61a4b5ce2ad9c15655e830f0eac0c38b8def30c74ecac71f452d3901e491b68"
|
|
3944
|
-
dependencies = [
|
|
3945
|
-
"anyhow",
|
|
3946
|
-
"proc-macro2",
|
|
3947
|
-
"quote",
|
|
3948
|
-
"syn 2.0.90",
|
|
3949
|
-
"wasmtime-component-util",
|
|
3950
|
-
"wasmtime-wit-bindgen",
|
|
3951
|
-
"wit-parser",
|
|
3952
|
-
]
|
|
3953
|
-
|
|
3954
|
-
[[package]]
|
|
3955
|
-
name = "wasmtime-component-util"
|
|
3956
|
-
version = "26.0.1"
|
|
3957
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3958
|
-
checksum = "35e87a1212270dbb84a49af13d82594e00a92769d6952b0ea7fc4366c949f6ad"
|
|
3959
|
-
|
|
3960
4511
|
[[package]]
|
|
3961
4512
|
name = "wasmtime-cranelift"
|
|
3962
|
-
version = "
|
|
4513
|
+
version = "30.0.2"
|
|
3963
4514
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3964
|
-
checksum = "
|
|
4515
|
+
checksum = "abcc9179097235c91f299a8ff56b358ee921266b61adff7d14d6e48428954dd2"
|
|
3965
4516
|
dependencies = [
|
|
3966
4517
|
"anyhow",
|
|
3967
4518
|
"cfg-if",
|
|
@@ -3974,42 +4525,58 @@ dependencies = [
|
|
|
3974
4525
|
"itertools 0.12.1",
|
|
3975
4526
|
"log",
|
|
3976
4527
|
"object",
|
|
4528
|
+
"pulley-interpreter",
|
|
3977
4529
|
"smallvec",
|
|
3978
|
-
"target-lexicon",
|
|
4530
|
+
"target-lexicon 0.13.2",
|
|
3979
4531
|
"thiserror 1.0.69",
|
|
3980
|
-
"wasmparser 0.
|
|
4532
|
+
"wasmparser 0.224.1",
|
|
3981
4533
|
"wasmtime-environ",
|
|
3982
4534
|
"wasmtime-versioned-export-macros",
|
|
3983
4535
|
]
|
|
3984
4536
|
|
|
3985
4537
|
[[package]]
|
|
3986
4538
|
name = "wasmtime-environ"
|
|
3987
|
-
version = "
|
|
4539
|
+
version = "30.0.2"
|
|
3988
4540
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3989
|
-
checksum = "
|
|
4541
|
+
checksum = "8e90f6cba665939381839bbf2ddf12d732fca03278867910348ef1281b700954"
|
|
3990
4542
|
dependencies = [
|
|
3991
4543
|
"anyhow",
|
|
3992
4544
|
"cranelift-bitset",
|
|
3993
4545
|
"cranelift-entity",
|
|
3994
4546
|
"gimli 0.31.1",
|
|
3995
|
-
"indexmap 2.
|
|
4547
|
+
"indexmap 2.8.0",
|
|
3996
4548
|
"log",
|
|
3997
4549
|
"object",
|
|
3998
4550
|
"postcard",
|
|
3999
4551
|
"serde",
|
|
4000
4552
|
"serde_derive",
|
|
4001
4553
|
"smallvec",
|
|
4002
|
-
"target-lexicon",
|
|
4003
|
-
"wasm-encoder 0.
|
|
4004
|
-
"wasmparser 0.
|
|
4554
|
+
"target-lexicon 0.13.2",
|
|
4555
|
+
"wasm-encoder 0.224.1",
|
|
4556
|
+
"wasmparser 0.224.1",
|
|
4005
4557
|
"wasmprinter",
|
|
4006
4558
|
]
|
|
4007
4559
|
|
|
4560
|
+
[[package]]
|
|
4561
|
+
name = "wasmtime-fiber"
|
|
4562
|
+
version = "30.0.2"
|
|
4563
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4564
|
+
checksum = "ba5c2ac21f0b39d72d2dac198218a12b3ddeb4ab388a8fa0d2e429855876783c"
|
|
4565
|
+
dependencies = [
|
|
4566
|
+
"anyhow",
|
|
4567
|
+
"cc",
|
|
4568
|
+
"cfg-if",
|
|
4569
|
+
"rustix 0.38.44",
|
|
4570
|
+
"wasmtime-asm-macros",
|
|
4571
|
+
"wasmtime-versioned-export-macros",
|
|
4572
|
+
"windows-sys 0.59.0",
|
|
4573
|
+
]
|
|
4574
|
+
|
|
4008
4575
|
[[package]]
|
|
4009
4576
|
name = "wasmtime-jit-icache-coherence"
|
|
4010
|
-
version = "
|
|
4577
|
+
version = "30.0.2"
|
|
4011
4578
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4012
|
-
checksum = "
|
|
4579
|
+
checksum = "3f180cc0d2745e3a5df5d02231cd3046f49c75512eaa987b8202363b112e125d"
|
|
4013
4580
|
dependencies = [
|
|
4014
4581
|
"anyhow",
|
|
4015
4582
|
"cfg-if",
|
|
@@ -4017,40 +4584,37 @@ dependencies = [
|
|
|
4017
4584
|
"windows-sys 0.59.0",
|
|
4018
4585
|
]
|
|
4019
4586
|
|
|
4587
|
+
[[package]]
|
|
4588
|
+
name = "wasmtime-math"
|
|
4589
|
+
version = "30.0.2"
|
|
4590
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4591
|
+
checksum = "f5f04c5dcf5b2f88f81cfb8d390294b2f67109dc4d0197ea7303c60a092df27c"
|
|
4592
|
+
dependencies = [
|
|
4593
|
+
"libm",
|
|
4594
|
+
]
|
|
4595
|
+
|
|
4020
4596
|
[[package]]
|
|
4021
4597
|
name = "wasmtime-slab"
|
|
4022
|
-
version = "
|
|
4598
|
+
version = "30.0.2"
|
|
4023
4599
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4024
|
-
checksum = "
|
|
4600
|
+
checksum = "fe9681707f1ae9a4708ca22058722fca5c135775c495ba9b9624fe3732b94c97"
|
|
4025
4601
|
|
|
4026
4602
|
[[package]]
|
|
4027
4603
|
name = "wasmtime-versioned-export-macros"
|
|
4028
|
-
version = "
|
|
4604
|
+
version = "30.0.2"
|
|
4029
4605
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4030
|
-
checksum = "
|
|
4606
|
+
checksum = "dd2fe69d04986a12fc759d2e79494100d600adcb3bb79e63dedfc8e6bb2ab03e"
|
|
4031
4607
|
dependencies = [
|
|
4032
4608
|
"proc-macro2",
|
|
4033
4609
|
"quote",
|
|
4034
|
-
"syn 2.0.
|
|
4035
|
-
]
|
|
4036
|
-
|
|
4037
|
-
[[package]]
|
|
4038
|
-
name = "wasmtime-wit-bindgen"
|
|
4039
|
-
version = "26.0.1"
|
|
4040
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4041
|
-
checksum = "4bef2a726fd8d1ee9b0144655e16c492dc32eb4c7c9f7e3309fcffe637870933"
|
|
4042
|
-
dependencies = [
|
|
4043
|
-
"anyhow",
|
|
4044
|
-
"heck 0.5.0",
|
|
4045
|
-
"indexmap 2.7.0",
|
|
4046
|
-
"wit-parser",
|
|
4610
|
+
"syn 2.0.100",
|
|
4047
4611
|
]
|
|
4048
4612
|
|
|
4049
4613
|
[[package]]
|
|
4050
4614
|
name = "web-sys"
|
|
4051
|
-
version = "0.3.
|
|
4615
|
+
version = "0.3.77"
|
|
4052
4616
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4053
|
-
checksum = "
|
|
4617
|
+
checksum = "33b6dd2ef9186f1f2072e409e99cd22a975331a6b3591b12c764e0e55c60d5d2"
|
|
4054
4618
|
dependencies = [
|
|
4055
4619
|
"js-sys",
|
|
4056
4620
|
"wasm-bindgen",
|
|
@@ -4063,7 +4627,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
4063
4627
|
checksum = "0c0a6e355560527dd2d1cf7890652f4f09bb3433b6aadade4c9b5ed76de5f3ec"
|
|
4064
4628
|
dependencies = [
|
|
4065
4629
|
"log",
|
|
4066
|
-
"wezterm-dynamic 0.2.
|
|
4630
|
+
"wezterm-dynamic 0.2.1",
|
|
4067
4631
|
]
|
|
4068
4632
|
|
|
4069
4633
|
[[package]]
|
|
@@ -4093,22 +4657,22 @@ dependencies = [
|
|
|
4093
4657
|
|
|
4094
4658
|
[[package]]
|
|
4095
4659
|
name = "wezterm-dynamic"
|
|
4096
|
-
version = "0.2.
|
|
4660
|
+
version = "0.2.1"
|
|
4097
4661
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4098
|
-
checksum = "
|
|
4662
|
+
checksum = "5f2ab60e120fd6eaa68d9567f3226e876684639d22a4219b313ff69ec0ccd5ac"
|
|
4099
4663
|
dependencies = [
|
|
4100
4664
|
"log",
|
|
4101
|
-
"ordered-float 4.
|
|
4102
|
-
"strsim 0.
|
|
4665
|
+
"ordered-float 4.6.0",
|
|
4666
|
+
"strsim 0.11.1",
|
|
4103
4667
|
"thiserror 1.0.69",
|
|
4104
4668
|
"wezterm-dynamic-derive",
|
|
4105
4669
|
]
|
|
4106
4670
|
|
|
4107
4671
|
[[package]]
|
|
4108
4672
|
name = "wezterm-dynamic-derive"
|
|
4109
|
-
version = "0.1.
|
|
4673
|
+
version = "0.1.1"
|
|
4110
4674
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4111
|
-
checksum = "
|
|
4675
|
+
checksum = "46c0cf2d539c645b448eaffec9ec494b8b19bd5077d9e58cb1ae7efece8d575b"
|
|
4112
4676
|
dependencies = [
|
|
4113
4677
|
"proc-macro2",
|
|
4114
4678
|
"quote",
|
|
@@ -4124,7 +4688,7 @@ dependencies = [
|
|
|
4124
4688
|
"either",
|
|
4125
4689
|
"home",
|
|
4126
4690
|
"once_cell",
|
|
4127
|
-
"rustix",
|
|
4691
|
+
"rustix 0.38.44",
|
|
4128
4692
|
]
|
|
4129
4693
|
|
|
4130
4694
|
[[package]]
|
|
@@ -4176,6 +4740,12 @@ dependencies = [
|
|
|
4176
4740
|
"windows-targets 0.52.6",
|
|
4177
4741
|
]
|
|
4178
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
|
+
|
|
4179
4749
|
[[package]]
|
|
4180
4750
|
name = "windows-sys"
|
|
4181
4751
|
version = "0.42.0"
|
|
@@ -4383,29 +4953,20 @@ checksum = "589f6da84c646204747d1270a2a5661ea66ed1cced2631d546fdfb155959f9ec"
|
|
|
4383
4953
|
|
|
4384
4954
|
[[package]]
|
|
4385
4955
|
name = "winnow"
|
|
4386
|
-
version = "0.
|
|
4956
|
+
version = "0.7.4"
|
|
4387
4957
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4388
|
-
checksum = "
|
|
4958
|
+
checksum = "0e97b544156e9bebe1a0ffbc03484fc1ffe3100cbce3ffb17eac35f7cdd7ab36"
|
|
4389
4959
|
dependencies = [
|
|
4390
4960
|
"memchr",
|
|
4391
4961
|
]
|
|
4392
4962
|
|
|
4393
4963
|
[[package]]
|
|
4394
|
-
name = "wit-
|
|
4395
|
-
version = "0.
|
|
4964
|
+
name = "wit-bindgen-rt"
|
|
4965
|
+
version = "0.39.0"
|
|
4396
4966
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4397
|
-
checksum = "
|
|
4967
|
+
checksum = "6f42320e61fe2cfd34354ecb597f86f413484a798ba44a8ca1165c58d42da6c1"
|
|
4398
4968
|
dependencies = [
|
|
4399
|
-
"
|
|
4400
|
-
"id-arena",
|
|
4401
|
-
"indexmap 2.7.0",
|
|
4402
|
-
"log",
|
|
4403
|
-
"semver 1.0.23",
|
|
4404
|
-
"serde",
|
|
4405
|
-
"serde_derive",
|
|
4406
|
-
"serde_json",
|
|
4407
|
-
"unicode-xid",
|
|
4408
|
-
"wasmparser 0.218.0",
|
|
4969
|
+
"bitflags 2.9.0",
|
|
4409
4970
|
]
|
|
4410
4971
|
|
|
4411
4972
|
[[package]]
|
|
@@ -4419,9 +4980,9 @@ dependencies = [
|
|
|
4419
4980
|
|
|
4420
4981
|
[[package]]
|
|
4421
4982
|
name = "x509-parser"
|
|
4422
|
-
version = "0.
|
|
4983
|
+
version = "0.17.0"
|
|
4423
4984
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4424
|
-
checksum = "
|
|
4985
|
+
checksum = "4569f339c0c402346d4a75a9e39cf8dad310e287eef1ff56d4c68e5067f53460"
|
|
4425
4986
|
dependencies = [
|
|
4426
4987
|
"asn1-rs",
|
|
4427
4988
|
"data-encoding",
|
|
@@ -4431,10 +4992,19 @@ dependencies = [
|
|
|
4431
4992
|
"oid-registry",
|
|
4432
4993
|
"ring",
|
|
4433
4994
|
"rusticata-macros",
|
|
4434
|
-
"thiserror
|
|
4995
|
+
"thiserror 2.0.12",
|
|
4435
4996
|
"time",
|
|
4436
4997
|
]
|
|
4437
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
|
+
|
|
4438
5008
|
[[package]]
|
|
4439
5009
|
name = "yansi"
|
|
4440
5010
|
version = "1.0.1"
|
|
@@ -4443,7 +5013,7 @@ checksum = "cfe53a6657fd280eaa890a3bc59152892ffa3e30101319d168b781ed6529b049"
|
|
|
4443
5013
|
|
|
4444
5014
|
[[package]]
|
|
4445
5015
|
name = "yara-x"
|
|
4446
|
-
version = "0.
|
|
5016
|
+
version = "0.14.0"
|
|
4447
5017
|
dependencies = [
|
|
4448
5018
|
"aho-corasick",
|
|
4449
5019
|
"annotate-snippets",
|
|
@@ -4452,7 +5022,7 @@ dependencies = [
|
|
|
4452
5022
|
"ascii_tree",
|
|
4453
5023
|
"base64 0.22.1",
|
|
4454
5024
|
"bincode",
|
|
4455
|
-
"
|
|
5025
|
+
"bitflags 2.9.0",
|
|
4456
5026
|
"bitvec",
|
|
4457
5027
|
"bstr",
|
|
4458
5028
|
"const-oid",
|
|
@@ -4461,13 +5031,13 @@ dependencies = [
|
|
|
4461
5031
|
"digest 0.10.7",
|
|
4462
5032
|
"dsa",
|
|
4463
5033
|
"ecdsa",
|
|
4464
|
-
"fmmap",
|
|
4465
5034
|
"globwalk",
|
|
4466
5035
|
"goldenfile",
|
|
4467
5036
|
"ihex",
|
|
4468
|
-
"indexmap 2.
|
|
5037
|
+
"indexmap 2.8.0",
|
|
4469
5038
|
"intaglio",
|
|
4470
|
-
"
|
|
5039
|
+
"ipnet",
|
|
5040
|
+
"itertools 0.14.0",
|
|
4471
5041
|
"lazy_static",
|
|
4472
5042
|
"lingua",
|
|
4473
5043
|
"linkme",
|
|
@@ -4476,8 +5046,9 @@ dependencies = [
|
|
|
4476
5046
|
"md-5",
|
|
4477
5047
|
"md2",
|
|
4478
5048
|
"memchr",
|
|
5049
|
+
"memmap2",
|
|
4479
5050
|
"memx",
|
|
4480
|
-
"nom
|
|
5051
|
+
"nom 8.0.0",
|
|
4481
5052
|
"num-derive 0.4.2",
|
|
4482
5053
|
"num-traits",
|
|
4483
5054
|
"p256",
|
|
@@ -4488,18 +5059,21 @@ dependencies = [
|
|
|
4488
5059
|
"protobuf-parse",
|
|
4489
5060
|
"quanta",
|
|
4490
5061
|
"rayon",
|
|
5062
|
+
"regex",
|
|
4491
5063
|
"regex-automata",
|
|
4492
|
-
"regex-syntax
|
|
5064
|
+
"regex-syntax",
|
|
4493
5065
|
"roxmltree",
|
|
4494
5066
|
"rsa",
|
|
4495
|
-
"rustc-hash 2.1.
|
|
5067
|
+
"rustc-hash 2.1.1",
|
|
4496
5068
|
"serde",
|
|
4497
5069
|
"serde_json",
|
|
4498
5070
|
"sha1",
|
|
4499
5071
|
"sha2 0.10.8",
|
|
4500
5072
|
"smallvec",
|
|
4501
|
-
"
|
|
5073
|
+
"strum_macros",
|
|
5074
|
+
"thiserror 2.0.12",
|
|
4502
5075
|
"tlsh-fixed",
|
|
5076
|
+
"twistrs",
|
|
4503
5077
|
"uuid",
|
|
4504
5078
|
"walrus",
|
|
4505
5079
|
"wasmtime",
|
|
@@ -4514,7 +5088,7 @@ dependencies = [
|
|
|
4514
5088
|
|
|
4515
5089
|
[[package]]
|
|
4516
5090
|
name = "yara-x-capi"
|
|
4517
|
-
version = "0.
|
|
5091
|
+
version = "0.14.0"
|
|
4518
5092
|
dependencies = [
|
|
4519
5093
|
"cbindgen",
|
|
4520
5094
|
"serde_json",
|
|
@@ -4523,10 +5097,12 @@ dependencies = [
|
|
|
4523
5097
|
|
|
4524
5098
|
[[package]]
|
|
4525
5099
|
name = "yara-x-cli"
|
|
4526
|
-
version = "0.
|
|
5100
|
+
version = "0.14.0"
|
|
4527
5101
|
dependencies = [
|
|
4528
5102
|
"anyhow",
|
|
4529
5103
|
"ascii_tree",
|
|
5104
|
+
"assert_cmd",
|
|
5105
|
+
"assert_fs",
|
|
4530
5106
|
"chardetng",
|
|
4531
5107
|
"clap",
|
|
4532
5108
|
"clap_complete",
|
|
@@ -4539,13 +5115,15 @@ dependencies = [
|
|
|
4539
5115
|
"figment",
|
|
4540
5116
|
"globwalk",
|
|
4541
5117
|
"home",
|
|
4542
|
-
"itertools 0.
|
|
5118
|
+
"itertools 0.14.0",
|
|
4543
5119
|
"log",
|
|
5120
|
+
"predicates",
|
|
4544
5121
|
"protobuf",
|
|
4545
5122
|
"protobuf-json-mapping",
|
|
4546
5123
|
"serde",
|
|
4547
5124
|
"serde_json",
|
|
4548
|
-
"
|
|
5125
|
+
"strum",
|
|
5126
|
+
"strum_macros",
|
|
4549
5127
|
"superconsole",
|
|
4550
5128
|
"wild",
|
|
4551
5129
|
"yansi",
|
|
@@ -4557,56 +5135,56 @@ dependencies = [
|
|
|
4557
5135
|
|
|
4558
5136
|
[[package]]
|
|
4559
5137
|
name = "yara-x-fmt"
|
|
4560
|
-
version = "0.
|
|
5138
|
+
version = "0.14.0"
|
|
4561
5139
|
dependencies = [
|
|
4562
|
-
"
|
|
5140
|
+
"bitflags 2.9.0",
|
|
4563
5141
|
"bstr",
|
|
4564
5142
|
"globwalk",
|
|
4565
5143
|
"goldenfile",
|
|
4566
5144
|
"lazy_static",
|
|
4567
5145
|
"pretty_assertions",
|
|
4568
5146
|
"rayon",
|
|
4569
|
-
"thiserror 2.0.
|
|
5147
|
+
"thiserror 2.0.12",
|
|
4570
5148
|
"yara-x-parser",
|
|
4571
5149
|
]
|
|
4572
5150
|
|
|
4573
5151
|
[[package]]
|
|
4574
5152
|
name = "yara-x-macros"
|
|
4575
|
-
version = "0.
|
|
5153
|
+
version = "0.14.0"
|
|
4576
5154
|
dependencies = [
|
|
4577
5155
|
"darling",
|
|
4578
5156
|
"proc-macro2",
|
|
4579
5157
|
"quote",
|
|
4580
|
-
"syn 2.0.
|
|
5158
|
+
"syn 2.0.100",
|
|
4581
5159
|
]
|
|
4582
5160
|
|
|
4583
5161
|
[[package]]
|
|
4584
5162
|
name = "yara-x-parser"
|
|
4585
|
-
version = "0.
|
|
5163
|
+
version = "0.14.0"
|
|
4586
5164
|
dependencies = [
|
|
4587
5165
|
"anyhow",
|
|
4588
5166
|
"ascii_tree",
|
|
4589
|
-
"
|
|
5167
|
+
"bitflags 2.9.0",
|
|
4590
5168
|
"bstr",
|
|
4591
5169
|
"env_logger",
|
|
4592
5170
|
"globwalk",
|
|
4593
5171
|
"goldenfile",
|
|
4594
|
-
"indexmap 2.
|
|
4595
|
-
"itertools 0.
|
|
5172
|
+
"indexmap 2.8.0",
|
|
5173
|
+
"itertools 0.14.0",
|
|
4596
5174
|
"log",
|
|
4597
5175
|
"logos",
|
|
4598
5176
|
"num-traits",
|
|
4599
5177
|
"pretty_assertions",
|
|
4600
5178
|
"rayon",
|
|
4601
5179
|
"rowan",
|
|
4602
|
-
"rustc-hash 2.1.
|
|
5180
|
+
"rustc-hash 2.1.1",
|
|
4603
5181
|
"serde",
|
|
4604
5182
|
"yansi",
|
|
4605
5183
|
]
|
|
4606
5184
|
|
|
4607
5185
|
[[package]]
|
|
4608
5186
|
name = "yara-x-proto"
|
|
4609
|
-
version = "0.
|
|
5187
|
+
version = "0.14.0"
|
|
4610
5188
|
dependencies = [
|
|
4611
5189
|
"protobuf",
|
|
4612
5190
|
"protobuf-codegen",
|
|
@@ -4615,12 +5193,12 @@ dependencies = [
|
|
|
4615
5193
|
|
|
4616
5194
|
[[package]]
|
|
4617
5195
|
name = "yara-x-proto-yaml"
|
|
4618
|
-
version = "0.
|
|
5196
|
+
version = "0.14.0"
|
|
4619
5197
|
dependencies = [
|
|
4620
5198
|
"chrono",
|
|
4621
5199
|
"globwalk",
|
|
4622
5200
|
"goldenfile",
|
|
4623
|
-
"itertools 0.
|
|
5201
|
+
"itertools 0.14.0",
|
|
4624
5202
|
"protobuf",
|
|
4625
5203
|
"protobuf-codegen",
|
|
4626
5204
|
"protobuf-parse",
|
|
@@ -4630,7 +5208,7 @@ dependencies = [
|
|
|
4630
5208
|
|
|
4631
5209
|
[[package]]
|
|
4632
5210
|
name = "yara-x-py"
|
|
4633
|
-
version = "0.
|
|
5211
|
+
version = "0.14.0"
|
|
4634
5212
|
dependencies = [
|
|
4635
5213
|
"protobuf-json-mapping",
|
|
4636
5214
|
"pyo3",
|
|
@@ -4638,6 +5216,7 @@ dependencies = [
|
|
|
4638
5216
|
"pyo3-file",
|
|
4639
5217
|
"serde_json",
|
|
4640
5218
|
"yara-x",
|
|
5219
|
+
"yara-x-fmt",
|
|
4641
5220
|
]
|
|
4642
5221
|
|
|
4643
5222
|
[[package]]
|
|
@@ -4646,8 +5225,16 @@ version = "0.7.35"
|
|
|
4646
5225
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4647
5226
|
checksum = "1b9b4fd18abc82b8136838da5d50bae7bdea537c574d8dc1a34ed098d6c166f0"
|
|
4648
5227
|
dependencies = [
|
|
4649
|
-
"
|
|
4650
|
-
|
|
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",
|
|
4651
5238
|
]
|
|
4652
5239
|
|
|
4653
5240
|
[[package]]
|
|
@@ -4658,7 +5245,18 @@ checksum = "fa4f8080344d4671fb4e831a13ad1e68092748387dfc4f55e356242fae12ce3e"
|
|
|
4658
5245
|
dependencies = [
|
|
4659
5246
|
"proc-macro2",
|
|
4660
5247
|
"quote",
|
|
4661
|
-
"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",
|
|
4662
5260
|
]
|
|
4663
5261
|
|
|
4664
5262
|
[[package]]
|
|
@@ -4678,14 +5276,14 @@ checksum = "ce36e65b0d2999d2aafac989fb249189a141aee1f53c612c1f37d72631959f69"
|
|
|
4678
5276
|
dependencies = [
|
|
4679
5277
|
"proc-macro2",
|
|
4680
5278
|
"quote",
|
|
4681
|
-
"syn 2.0.
|
|
5279
|
+
"syn 2.0.100",
|
|
4682
5280
|
]
|
|
4683
5281
|
|
|
4684
5282
|
[[package]]
|
|
4685
5283
|
name = "zip"
|
|
4686
|
-
version = "2.
|
|
5284
|
+
version = "2.5.0"
|
|
4687
5285
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4688
|
-
checksum = "
|
|
5286
|
+
checksum = "27c03817464f64e23f6f37574b4fdc8cf65925b5bfd2b0f2aedf959791941f88"
|
|
4689
5287
|
dependencies = [
|
|
4690
5288
|
"aes",
|
|
4691
5289
|
"arbitrary",
|
|
@@ -4694,17 +5292,16 @@ dependencies = [
|
|
|
4694
5292
|
"crc32fast",
|
|
4695
5293
|
"crossbeam-utils",
|
|
4696
5294
|
"deflate64",
|
|
4697
|
-
"displaydoc",
|
|
4698
5295
|
"flate2",
|
|
5296
|
+
"getrandom 0.3.2",
|
|
4699
5297
|
"hmac",
|
|
4700
|
-
"indexmap 2.
|
|
5298
|
+
"indexmap 2.8.0",
|
|
4701
5299
|
"lzma-rs",
|
|
4702
5300
|
"memchr",
|
|
4703
5301
|
"pbkdf2",
|
|
4704
|
-
"rand",
|
|
4705
5302
|
"sha1",
|
|
4706
|
-
"thiserror 2.0.6",
|
|
4707
5303
|
"time",
|
|
5304
|
+
"xz2",
|
|
4708
5305
|
"zeroize",
|
|
4709
5306
|
"zopfli",
|
|
4710
5307
|
"zstd",
|
|
@@ -4726,27 +5323,27 @@ dependencies = [
|
|
|
4726
5323
|
|
|
4727
5324
|
[[package]]
|
|
4728
5325
|
name = "zstd"
|
|
4729
|
-
version = "0.13.
|
|
5326
|
+
version = "0.13.3"
|
|
4730
5327
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4731
|
-
checksum = "
|
|
5328
|
+
checksum = "e91ee311a569c327171651566e07972200e76fcfe2242a4fa446149a3881c08a"
|
|
4732
5329
|
dependencies = [
|
|
4733
5330
|
"zstd-safe",
|
|
4734
5331
|
]
|
|
4735
5332
|
|
|
4736
5333
|
[[package]]
|
|
4737
5334
|
name = "zstd-safe"
|
|
4738
|
-
version = "7.2.
|
|
5335
|
+
version = "7.2.4"
|
|
4739
5336
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4740
|
-
checksum = "
|
|
5337
|
+
checksum = "8f49c4d5f0abb602a93fb8736af2a4f4dd9512e36f7f570d66e65ff867ed3b9d"
|
|
4741
5338
|
dependencies = [
|
|
4742
5339
|
"zstd-sys",
|
|
4743
5340
|
]
|
|
4744
5341
|
|
|
4745
5342
|
[[package]]
|
|
4746
5343
|
name = "zstd-sys"
|
|
4747
|
-
version = "2.0.
|
|
5344
|
+
version = "2.0.15+zstd.1.5.7"
|
|
4748
5345
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4749
|
-
checksum = "
|
|
5346
|
+
checksum = "eb81183ddd97d0c74cedf1d50d85c8d08c1b8b68ee863bdee9e706eedba1a237"
|
|
4750
5347
|
dependencies = [
|
|
4751
5348
|
"cc",
|
|
4752
5349
|
"pkg-config",
|