texform 0.2.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.
- texform-0.2.0/Cargo.lock +1744 -0
- texform-0.2.0/Cargo.toml +40 -0
- texform-0.2.0/LICENSE +73 -0
- texform-0.2.0/PKG-INFO +64 -0
- texform-0.2.0/crates/texform/Cargo.toml +20 -0
- texform-0.2.0/crates/texform/README.md +46 -0
- texform-0.2.0/crates/texform/src/analysis.rs +70 -0
- texform-0.2.0/crates/texform/src/argspec.rs +233 -0
- texform-0.2.0/crates/texform/src/bindings.rs +947 -0
- texform-0.2.0/crates/texform/src/config.rs +40 -0
- texform-0.2.0/crates/texform/src/document.rs +501 -0
- texform-0.2.0/crates/texform/src/error.rs +151 -0
- texform-0.2.0/crates/texform/src/knowledge.rs +24 -0
- texform-0.2.0/crates/texform/src/lib.rs +97 -0
- texform-0.2.0/crates/texform/src/parse_result.rs +140 -0
- texform-0.2.0/crates/texform/src/parser.rs +254 -0
- texform-0.2.0/crates/texform/src/serialize.rs +9 -0
- texform-0.2.0/crates/texform/src/transform_engine.rs +265 -0
- texform-0.2.0/crates/texform/tests/analysis.rs +29 -0
- texform-0.2.0/crates/texform/tests/argspec.rs +24 -0
- texform-0.2.0/crates/texform/tests/binding_contract.rs +168 -0
- texform-0.2.0/crates/texform/tests/config.rs +27 -0
- texform-0.2.0/crates/texform/tests/document.rs +196 -0
- texform-0.2.0/crates/texform/tests/parse_states.rs +85 -0
- texform-0.2.0/crates/texform/tests/parser.rs +258 -0
- texform-0.2.0/crates/texform/tests/probing.rs +26 -0
- texform-0.2.0/crates/texform/tests/serialize.rs +43 -0
- texform-0.2.0/crates/texform/tests/transform_engine.rs +358 -0
- texform-0.2.0/crates/texform/tests/transform_gating.rs +157 -0
- texform-0.2.0/crates/texform-argspec/Cargo.toml +12 -0
- texform-0.2.0/crates/texform-argspec/README.md +7 -0
- texform-0.2.0/crates/texform-argspec/src/lib.rs +490 -0
- texform-0.2.0/crates/texform-argspec/tests/parser.rs +477 -0
- texform-0.2.0/crates/texform-core/Cargo.toml +28 -0
- texform-0.2.0/crates/texform-core/README.md +9 -0
- texform-0.2.0/crates/texform-core/examples/parse.rs +312 -0
- texform-0.2.0/crates/texform-core/examples/validate_argspec.rs +35 -0
- texform-0.2.0/crates/texform-core/src/ast.rs +2654 -0
- texform-0.2.0/crates/texform-core/src/column_parser.rs +625 -0
- texform-0.2.0/crates/texform-core/src/dimension.rs +6 -0
- texform-0.2.0/crates/texform-core/src/document.rs +2372 -0
- texform-0.2.0/crates/texform-core/src/knowledge/tests.rs +679 -0
- texform-0.2.0/crates/texform-core/src/knowledge.rs +974 -0
- texform-0.2.0/crates/texform-core/src/lexer.rs +172 -0
- texform-0.2.0/crates/texform-core/src/lib.rs +21 -0
- texform-0.2.0/crates/texform-core/src/parse/arguments.rs +1469 -0
- texform-0.2.0/crates/texform-core/src/parse/config.rs +69 -0
- texform-0.2.0/crates/texform-core/src/parse/context.rs +2086 -0
- texform-0.2.0/crates/texform-core/src/parse/grammar.rs +3214 -0
- texform-0.2.0/crates/texform-core/src/parse/mod.rs +18 -0
- texform-0.2.0/crates/texform-core/src/parse/state.rs +94 -0
- texform-0.2.0/crates/texform-core/src/serialize.rs +1165 -0
- texform-0.2.0/crates/texform-core/src/target_counter.rs +193 -0
- texform-0.2.0/crates/texform-core/tests/ast.rs +434 -0
- texform-0.2.0/crates/texform-core/tests/ast_conversion.rs +567 -0
- texform-0.2.0/crates/texform-core/tests/column_parser.rs +108 -0
- texform-0.2.0/crates/texform-core/tests/lexer.rs +137 -0
- texform-0.2.0/crates/texform-core/tests/node_spans.rs +199 -0
- texform-0.2.0/crates/texform-core/tests/parse_context_builder.rs +117 -0
- texform-0.2.0/crates/texform-core/tests/parse_context_lookup.rs +86 -0
- texform-0.2.0/crates/texform-core/tests/parse_context_modes.rs +74 -0
- texform-0.2.0/crates/texform-core/tests/parse_context_packages.rs +53 -0
- texform-0.2.0/crates/texform-core/tests/parser_argument_forms.rs +965 -0
- texform-0.2.0/crates/texform-core/tests/parser_arguments.rs +1292 -0
- texform-0.2.0/crates/texform-core/tests/parser_basic.rs +2253 -0
- texform-0.2.0/crates/texform-core/tests/parser_column_arg.rs +78 -0
- texform-0.2.0/crates/texform-core/tests/parser_context_isolation.rs +173 -0
- texform-0.2.0/crates/texform-core/tests/parser_diagnostics.rs +929 -0
- texform-0.2.0/crates/texform-core/tests/parser_linebreak.rs +211 -0
- texform-0.2.0/crates/texform-core/tests/parser_packages.rs +76 -0
- texform-0.2.0/crates/texform-core/tests/parser_prime.rs +160 -0
- texform-0.2.0/crates/texform-core/tests/parser_reparse.rs +254 -0
- texform-0.2.0/crates/texform-core/tests/serializer.rs +917 -0
- texform-0.2.0/crates/texform-core/tests/support/mod.rs +218 -0
- texform-0.2.0/crates/texform-core/tests/support/parser.rs +485 -0
- texform-0.2.0/crates/texform-core/tests/syntax_node.rs +181 -0
- texform-0.2.0/crates/texform-interface/Cargo.toml +20 -0
- texform-0.2.0/crates/texform-interface/README.md +7 -0
- texform-0.2.0/crates/texform-interface/src/column.rs +101 -0
- texform-0.2.0/crates/texform-interface/src/lib.rs +2 -0
- texform-0.2.0/crates/texform-interface/src/syntax_node.rs +570 -0
- texform-0.2.0/crates/texform-interface/tests/column_spec.rs +22 -0
- texform-0.2.0/crates/texform-knowledge/.gitignore +1 -0
- texform-0.2.0/crates/texform-knowledge/Cargo.toml +24 -0
- texform-0.2.0/crates/texform-knowledge/README.md +7 -0
- texform-0.2.0/crates/texform-knowledge/build.rs +824 -0
- texform-0.2.0/crates/texform-knowledge/codegen/command_symbol_facades.rs +23 -0
- texform-0.2.0/crates/texform-knowledge/resources/specs/ams.yaml +1391 -0
- texform-0.2.0/crates/texform-knowledge/resources/specs/base.yaml +2652 -0
- texform-0.2.0/crates/texform-knowledge/resources/specs/bboldx.yaml +914 -0
- texform-0.2.0/crates/texform-knowledge/resources/specs/boldsymbol.yaml +7 -0
- texform-0.2.0/crates/texform-knowledge/resources/specs/braket.yaml +45 -0
- texform-0.2.0/crates/texform-knowledge/resources/specs/physics.yaml +831 -0
- texform-0.2.0/crates/texform-knowledge/resources/specs/textmacros.yaml +455 -0
- texform-0.2.0/crates/texform-knowledge/src/builtin/mod.rs +29 -0
- texform-0.2.0/crates/texform-knowledge/src/lib.rs +6 -0
- texform-0.2.0/crates/texform-knowledge/src/specs.rs +411 -0
- texform-0.2.0/crates/texform-knowledge/src/specs_yaml.rs +89 -0
- texform-0.2.0/crates/texform-knowledge/tests/argspec_macro.rs +71 -0
- texform-0.2.0/crates/texform-knowledge/tests/argspec_macro_ui.rs +5 -0
- texform-0.2.0/crates/texform-knowledge/tests/specs.rs +281 -0
- texform-0.2.0/crates/texform-knowledge/tests/ui/argspec-invalid.rs +5 -0
- texform-0.2.0/crates/texform-knowledge/tests/ui/argspec-invalid.stderr +5 -0
- texform-0.2.0/crates/texform-knowledge-macros/Cargo.toml +18 -0
- texform-0.2.0/crates/texform-knowledge-macros/README.md +7 -0
- texform-0.2.0/crates/texform-knowledge-macros/src/lib.rs +122 -0
- texform-0.2.0/crates/texform-python/Cargo.toml +18 -0
- texform-0.2.0/crates/texform-python/README.md +16 -0
- texform-0.2.0/crates/texform-python/src/lib.rs +3067 -0
- texform-0.2.0/crates/texform-transform/Cargo.toml +20 -0
- texform-0.2.0/crates/texform-transform/README.md +356 -0
- texform-0.2.0/crates/texform-transform/build.rs +417 -0
- texform-0.2.0/crates/texform-transform/src/config.rs +133 -0
- texform-0.2.0/crates/texform-transform/src/context.rs +65 -0
- texform-0.2.0/crates/texform-transform/src/engine.rs +199 -0
- texform-0.2.0/crates/texform-transform/src/error.rs +34 -0
- texform-0.2.0/crates/texform-transform/src/finalize_ast/mod.rs +122 -0
- texform-0.2.0/crates/texform-transform/src/flatten_groups/mod.rs +577 -0
- texform-0.2.0/crates/texform-transform/src/lib.rs +52 -0
- texform-0.2.0/crates/texform-transform/src/lower_attributes/codegen.rs +914 -0
- texform-0.2.0/crates/texform-transform/src/lower_attributes/data.yaml +221 -0
- texform-0.2.0/crates/texform-transform/src/lower_attributes/mod.rs +1085 -0
- texform-0.2.0/crates/texform-transform/src/report.rs +26 -0
- texform-0.2.0/crates/texform-transform/src/rewrite/contract.rs +50 -0
- texform-0.2.0/crates/texform-transform/src/rewrite/helpers.rs +107 -0
- texform-0.2.0/crates/texform-transform/src/rewrite/level_set.rs +80 -0
- texform-0.2.0/crates/texform-transform/src/rewrite/macro_support.rs +156 -0
- texform-0.2.0/crates/texform-transform/src/rewrite/macros.rs +411 -0
- texform-0.2.0/crates/texform-transform/src/rewrite/mod.rs +165 -0
- texform-0.2.0/crates/texform-transform/src/rewrite/plan.rs +475 -0
- texform-0.2.0/crates/texform-transform/src/rewrite/registry.rs +27 -0
- texform-0.2.0/crates/texform-transform/src/rewrite/rule.rs +250 -0
- texform-0.2.0/crates/texform-transform/src/rewrite/rule_context.rs +546 -0
- texform-0.2.0/crates/texform-transform/src/rewrite/rules/README.md +334 -0
- texform-0.2.0/crates/texform-transform/src/rewrite/rules/ams/equiv/fenced_matrix_env/Bmatrix_env_to_brace_matrix.rs +81 -0
- texform-0.2.0/crates/texform-transform/src/rewrite/rules/ams/equiv/fenced_matrix_env/bmatrix_env_to_bracket_matrix.rs +81 -0
- texform-0.2.0/crates/texform-transform/src/rewrite/rules/ams/equiv/fenced_matrix_env/helpers.rs +29 -0
- texform-0.2.0/crates/texform-transform/src/rewrite/rules/ams/equiv/fenced_matrix_env/pmatrix_env_to_paren_matrix.rs +93 -0
- texform-0.2.0/crates/texform-transform/src/rewrite/rules/ams/equiv/fenced_matrix_env/vmatrix_env_to_vert_matrix.rs +81 -0
- texform-0.2.0/crates/texform-transform/src/rewrite/rules/ams/expand/ams_operator_alias/implies_to_Longrightarrow.rs +147 -0
- texform-0.2.0/crates/texform-transform/src/rewrite/rules/ams/expand/character_normalize/Join_to_bowtie.rs +73 -0
- texform-0.2.0/crates/texform-transform/src/rewrite/rules/ams/expand/character_normalize/centerdot_to_cdot.rs +79 -0
- texform-0.2.0/crates/texform-transform/src/rewrite/rules/ams/expand/character_normalize/doublecup_to_Cup.rs +72 -0
- texform-0.2.0/crates/texform-transform/src/rewrite/rules/ams/expand/character_normalize/leadsto_to_rightsquigarrow.rs +72 -0
- texform-0.2.0/crates/texform-transform/src/rewrite/rules/ams/expand/character_normalize/lozenge_to_Diamond.rs +72 -0
- texform-0.2.0/crates/texform-transform/src/rewrite/rules/ams/expand/character_normalize/restriction_to_upharpoonright.rs +72 -0
- texform-0.2.0/crates/texform-transform/src/rewrite/rules/ams/expand/character_normalize/square_to_Box.rs +72 -0
- texform-0.2.0/crates/texform-transform/src/rewrite/rules/ams/expand/character_normalize/vartriangle_to_bigtriangleup.rs +79 -0
- texform-0.2.0/crates/texform-transform/src/rewrite/rules/ams/expand/multi_integral/idotsint_expand.rs +243 -0
- texform-0.2.0/crates/texform-transform/src/rewrite/rules/ams/expand/substack/substack_expand.rs +103 -0
- texform-0.2.0/crates/texform-transform/src/rewrite/rules/ams/standard/character_alias/Doteq_to_doteqdot.rs +72 -0
- texform-0.2.0/crates/texform-transform/src/rewrite/rules/ams/standard/character_alias/doublecap_to_Cap.rs +72 -0
- texform-0.2.0/crates/texform-transform/src/rewrite/rules/ams/standard/character_alias/gggtr_to_ggg.rs +72 -0
- texform-0.2.0/crates/texform-transform/src/rewrite/rules/ams/standard/character_alias/llless_to_lll.rs +72 -0
- texform-0.2.0/crates/texform-transform/src/rewrite/rules/ams/standard/character_alias/trianglerighteq_to_unrhd.rs +72 -0
- texform-0.2.0/crates/texform-transform/src/rewrite/rules/ams/standard/character_alias/unlhd_to_trianglelefteq.rs +72 -0
- texform-0.2.0/crates/texform-transform/src/rewrite/rules/ams/standard/character_alias/vartriangleleft_to_lhd.rs +72 -0
- texform-0.2.0/crates/texform-transform/src/rewrite/rules/ams/standard/character_alias/vartriangleright_to_rhd.rs +72 -0
- texform-0.2.0/crates/texform-transform/src/rewrite/rules/base/drop/spacing_drop/goodbreak_drop.rs +72 -0
- texform-0.2.0/crates/texform-transform/src/rewrite/rules/base/expand/character_normalize/gets_to_leftarrow.rs +72 -0
- texform-0.2.0/crates/texform-transform/src/rewrite/rules/base/expand/character_normalize/land_to_wedge.rs +72 -0
- texform-0.2.0/crates/texform-transform/src/rewrite/rules/base/expand/character_normalize/lor_to_vee.rs +72 -0
- texform-0.2.0/crates/texform-transform/src/rewrite/rules/base/expand/character_normalize/rightarrow_to_to.rs +72 -0
- texform-0.2.0/crates/texform-transform/src/rewrite/rules/base/expand/character_normalize/semantic_dots_to_cdots.rs +88 -0
- texform-0.2.0/crates/texform-transform/src/rewrite/rules/base/expand/character_normalize/semantic_dots_to_ldots.rs +80 -0
- texform-0.2.0/crates/texform-transform/src/rewrite/rules/base/expand/stacked_operator/buildrel_expand.rs +379 -0
- texform-0.2.0/crates/texform-transform/src/rewrite/rules/base/expand/stacked_operator/helpers.rs +28 -0
- texform-0.2.0/crates/texform-transform/src/rewrite/rules/base/expand/stacked_operator/stackbin_expand.rs +88 -0
- texform-0.2.0/crates/texform-transform/src/rewrite/rules/base/expand/stacked_operator/stackrel_expand.rs +88 -0
- texform-0.2.0/crates/texform-transform/src/rewrite/rules/base/standard/character_alias/ge_to_geq.rs +72 -0
- texform-0.2.0/crates/texform-transform/src/rewrite/rules/base/standard/character_alias/le_to_leq.rs +72 -0
- texform-0.2.0/crates/texform-transform/src/rewrite/rules/base/standard/character_alias/lnot_to_neg.rs +72 -0
- texform-0.2.0/crates/texform-transform/src/rewrite/rules/base/standard/character_alias/ne_to_neq.rs +72 -0
- texform-0.2.0/crates/texform-transform/src/rewrite/rules/base/standard/character_alias/owns_to_ni.rs +72 -0
- texform-0.2.0/crates/texform-transform/src/rewrite/rules/base/standard/character_alias/prime_to_prime_node.rs +74 -0
- texform-0.2.0/crates/texform-transform/src/rewrite/rules/base/standard/linebreak_alias/break_to_linebreak.rs +99 -0
- texform-0.2.0/crates/texform-transform/src/rewrite/rules/base/standard/linebreak_alias/newline_to_linebreak.rs +103 -0
- texform-0.2.0/crates/texform-transform/src/rewrite/rules/base/standard/over_family/above_to_genfrac.rs +89 -0
- texform-0.2.0/crates/texform-transform/src/rewrite/rules/base/standard/over_family/abovewithdelims_to_genfrac.rs +93 -0
- texform-0.2.0/crates/texform-transform/src/rewrite/rules/base/standard/over_family/atop_to_genfrac.rs +88 -0
- texform-0.2.0/crates/texform-transform/src/rewrite/rules/base/standard/over_family/atopwithdelims_to_genfrac.rs +91 -0
- texform-0.2.0/crates/texform-transform/src/rewrite/rules/base/standard/over_family/brace_to_genfrac.rs +82 -0
- texform-0.2.0/crates/texform-transform/src/rewrite/rules/base/standard/over_family/brack_to_genfrac.rs +82 -0
- texform-0.2.0/crates/texform-transform/src/rewrite/rules/base/standard/over_family/choose_to_binom.rs +81 -0
- texform-0.2.0/crates/texform-transform/src/rewrite/rules/base/standard/over_family/helpers.rs +93 -0
- texform-0.2.0/crates/texform-transform/src/rewrite/rules/base/standard/over_family/over_to_frac.rs +135 -0
- texform-0.2.0/crates/texform-transform/src/rewrite/rules/base/standard/over_family/overwithdelims_to_genfrac.rs +91 -0
- texform-0.2.0/crates/texform-transform/src/rewrite/rules/base/standard/plain_tex_matrix/cases_to_cases_env.rs +75 -0
- texform-0.2.0/crates/texform-transform/src/rewrite/rules/base/standard/plain_tex_matrix/displaylines_to_gather_env.rs +97 -0
- texform-0.2.0/crates/texform-transform/src/rewrite/rules/base/standard/plain_tex_matrix/eqalign_to_aligned_env.rs +75 -0
- texform-0.2.0/crates/texform-transform/src/rewrite/rules/base/standard/plain_tex_matrix/eqalignno_to_align_env.rs +166 -0
- texform-0.2.0/crates/texform-transform/src/rewrite/rules/base/standard/plain_tex_matrix/helpers.rs +118 -0
- texform-0.2.0/crates/texform-transform/src/rewrite/rules/base/standard/plain_tex_matrix/matrix_to_matrix_env.rs +75 -0
- texform-0.2.0/crates/texform-transform/src/rewrite/rules/base/standard/plain_tex_matrix/pmatrix_to_pmatrix_env.rs +75 -0
- texform-0.2.0/crates/texform-transform/src/rewrite/rules/base/standard/root_family/root_of_to_sqrt.rs +218 -0
- texform-0.2.0/crates/texform-transform/src/rewrite/rules/generated.rs +325 -0
- texform-0.2.0/crates/texform-transform/src/rewrite/rules/mod.rs +14 -0
- texform-0.2.0/crates/texform-transform/src/rewrite/rules/physics/expand/bra_ket/expectation_expand.rs +129 -0
- texform-0.2.0/crates/texform-transform/src/rewrite/rules/physics/expand/bra_ket/helpers.rs +296 -0
- texform-0.2.0/crates/texform-transform/src/rewrite/rules/physics/expand/bra_ket/matrixel_expand.rs +102 -0
- texform-0.2.0/crates/texform-transform/src/rewrite/rules/physics/expand/bra_ket/physics_bra_expand.rs +86 -0
- texform-0.2.0/crates/texform-transform/src/rewrite/rules/physics/expand/bra_ket/physics_braket_expand.rs +100 -0
- texform-0.2.0/crates/texform-transform/src/rewrite/rules/physics/expand/bra_ket/physics_ket_expand.rs +86 -0
- texform-0.2.0/crates/texform-transform/src/rewrite/rules/physics/expand/character_normalize/cross_aliases_to_times.rs +89 -0
- texform-0.2.0/crates/texform-transform/src/rewrite/rules/physics/expand/commutator/commutator_expand.rs +119 -0
- texform-0.2.0/crates/texform-transform/src/rewrite/rules/physics/expand/commutator/helpers.rs +114 -0
- texform-0.2.0/crates/texform-transform/src/rewrite/rules/physics/expand/commutator/poisson_bracket_expand.rs +119 -0
- texform-0.2.0/crates/texform-transform/src/rewrite/rules/physics/expand/delimiter_shorthand/Bqty_to_brace_fence.rs +118 -0
- texform-0.2.0/crates/texform-transform/src/rewrite/rules/physics/expand/delimiter_shorthand/abs_to_vert_fence.rs +124 -0
- texform-0.2.0/crates/texform-transform/src/rewrite/rules/physics/expand/delimiter_shorthand/bqty_to_bracket_fence.rs +124 -0
- texform-0.2.0/crates/texform-transform/src/rewrite/rules/physics/expand/delimiter_shorthand/helpers.rs +59 -0
- texform-0.2.0/crates/texform-transform/src/rewrite/rules/physics/expand/delimiter_shorthand/norm_to_double_vert_fence.rs +124 -0
- texform-0.2.0/crates/texform-transform/src/rewrite/rules/physics/expand/delimiter_shorthand/pqty_to_paren_fence.rs +118 -0
- texform-0.2.0/crates/texform-transform/src/rewrite/rules/physics/expand/derivative_expand/dv_to_frac_d.rs +155 -0
- texform-0.2.0/crates/texform-transform/src/rewrite/rules/physics/expand/derivative_expand/fdv_to_frac_delta.rs +153 -0
- texform-0.2.0/crates/texform-transform/src/rewrite/rules/physics/expand/derivative_expand/helpers.rs +113 -0
- texform-0.2.0/crates/texform-transform/src/rewrite/rules/physics/expand/derivative_expand/pdv_to_frac_partial.rs +190 -0
- texform-0.2.0/crates/texform-transform/src/rewrite/rules/physics/expand/eval_fence/eval_expand.rs +160 -0
- texform-0.2.0/crates/texform-transform/src/rewrite/rules/physics/expand/eval_fence/helpers.rs +46 -0
- texform-0.2.0/crates/texform-transform/src/rewrite/rules/physics/expand/matrix_builder_expand/bmqty_to_mqty.rs +72 -0
- texform-0.2.0/crates/texform-transform/src/rewrite/rules/physics/expand/matrix_builder_expand/helpers.rs +21 -0
- texform-0.2.0/crates/texform-transform/src/rewrite/rules/physics/expand/matrix_builder_expand/mdet_to_vmqty.rs +72 -0
- texform-0.2.0/crates/texform-transform/src/rewrite/rules/physics/expand/matrix_builder_expand/pmqty_to_mqty.rs +72 -0
- texform-0.2.0/crates/texform-transform/src/rewrite/rules/physics/expand/matrix_builder_expand/zmat_to_xmat.rs +80 -0
- texform-0.2.0/crates/texform-transform/src/rewrite/rules/physics/expand/named_fn_expand/rank_to_operatorname_rank.rs +134 -0
- texform-0.2.0/crates/texform-transform/src/rewrite/rules/physics/expand/qqtext/qcomma_expand.rs +105 -0
- texform-0.2.0/crates/texform-transform/src/rewrite/rules/physics/expand/qqtext/qqtext_expand.rs +170 -0
- texform-0.2.0/crates/texform-transform/src/rewrite/rules/physics/expand/vector_expand/helpers.rs +57 -0
- texform-0.2.0/crates/texform-transform/src/rewrite/rules/physics/expand/vector_expand/va_to_vec_mathbf.rs +82 -0
- texform-0.2.0/crates/texform-transform/src/rewrite/rules/physics/expand/vector_expand/vb_to_mathbf.rs +81 -0
- texform-0.2.0/crates/texform-transform/src/rewrite/rules/physics/expand/vector_expand/vu_to_hat_mathbf.rs +82 -0
- texform-0.2.0/crates/texform-transform/src/rewrite/rules/physics/standard/character_alias/divsymbol_to_divisionsymbol.rs +72 -0
- texform-0.2.0/crates/texform-transform/src/rewrite/rules/physics/standard/character_alias/dotproduct_to_vdot.rs +72 -0
- texform-0.2.0/crates/texform-transform/src/rewrite/rules/physics/standard/derivative_to_short/derivative_to_dv.rs +77 -0
- texform-0.2.0/crates/texform-transform/src/rewrite/rules/physics/standard/derivative_to_short/functional_derivative_to_fdv.rs +103 -0
- texform-0.2.0/crates/texform-transform/src/rewrite/rules/physics/standard/derivative_to_short/partial_derivative_to_pdv.rs +118 -0
- texform-0.2.0/crates/texform-transform/src/rewrite/rules/physics/standard/matrix_alias/antidiagonalmatrix_to_admat.rs +57 -0
- texform-0.2.0/crates/texform-transform/src/rewrite/rules/physics/standard/matrix_alias/diagonalmatrix_to_dmat.rs +57 -0
- texform-0.2.0/crates/texform-transform/src/rewrite/rules/physics/standard/matrix_alias/matrixdeterminant_to_mdet.rs +51 -0
- texform-0.2.0/crates/texform-transform/src/rewrite/rules/physics/standard/named_fn_to_short/cosine_to_cos.rs +57 -0
- texform-0.2.0/crates/texform-transform/src/rewrite/rules/physics/standard/named_fn_to_short/naturallogarithm_to_ln.rs +85 -0
- texform-0.2.0/crates/texform-transform/src/rewrite/rules/physics/standard/named_fn_to_short/probability_to_pr.rs +51 -0
- texform-0.2.0/crates/texform-transform/src/rewrite/rules/physics/standard/named_fn_to_short/sine_to_sin.rs +51 -0
- texform-0.2.0/crates/texform-transform/src/rewrite/rules/physics/standard/quantity_alias/absolutevalue_to_abs.rs +57 -0
- texform-0.2.0/crates/texform-transform/src/rewrite/rules/physics/standard/quantity_alias/evaluated_to_eval.rs +71 -0
- texform-0.2.0/crates/texform-transform/src/rewrite/rules/physics/standard/quantity_alias/quantity_to_qty.rs +121 -0
- texform-0.2.0/crates/texform-transform/src/rewrite/rules/physics/standard/trace_alias/trace_capital_to_Tr.rs +72 -0
- texform-0.2.0/crates/texform-transform/src/rewrite/rules/physics/standard/trace_alias/trace_to_tr.rs +52 -0
- texform-0.2.0/crates/texform-transform/src/rewrite/rules/physics/standard/vector_to_short/vectorarrow_to_va.rs +58 -0
- texform-0.2.0/crates/texform-transform/src/rewrite/rules/physics/standard/vector_to_short/vectorbold_to_vb.rs +58 -0
- texform-0.2.0/crates/texform-transform/src/rewrite/rules/physics/standard/vector_to_short/vectorunit_to_vu.rs +58 -0
- texform-0.2.0/crates/texform-transform/src/rewrite/scheduler.rs +170 -0
- texform-0.2.0/crates/texform-transform/tests/config_model.rs +36 -0
- texform-0.2.0/crates/texform-transform/tests/finalize_ast.rs +242 -0
- texform-0.2.0/crates/texform-transform/tests/flatten_groups.rs +589 -0
- texform-0.2.0/crates/texform-transform/tests/lower_attributes.rs +233 -0
- texform-0.2.0/crates/texform-transform/tests/rewrite_context.rs +284 -0
- texform-0.2.0/crates/texform-transform/tests/rewrite_rule.rs +41 -0
- texform-0.2.0/crates/texform-transform/tests/transform_contract.rs +158 -0
- texform-0.2.0/pyproject.toml +55 -0
- texform-0.2.0/python/texform/README.md +45 -0
- texform-0.2.0/python/texform/__init__.py +45 -0
- texform-0.2.0/python/texform/__init__.pyi +2124 -0
- texform-0.2.0/python/texform/py.typed +0 -0
texform-0.2.0/Cargo.lock
ADDED
|
@@ -0,0 +1,1744 @@
|
|
|
1
|
+
# This file is automatically @generated by Cargo.
|
|
2
|
+
# It is not intended for manual editing.
|
|
3
|
+
version = 4
|
|
4
|
+
|
|
5
|
+
[[package]]
|
|
6
|
+
name = "adler2"
|
|
7
|
+
version = "2.0.1"
|
|
8
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
9
|
+
checksum = "320119579fcad9c21884f5c4861d16174d0e06250625266f50fe6898340abefa"
|
|
10
|
+
|
|
11
|
+
[[package]]
|
|
12
|
+
name = "ahash"
|
|
13
|
+
version = "0.8.12"
|
|
14
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
15
|
+
checksum = "5a15f179cd60c4584b8a8c596927aadc462e27f2ca70c04e0071964a73ba7a75"
|
|
16
|
+
dependencies = [
|
|
17
|
+
"cfg-if",
|
|
18
|
+
"const-random",
|
|
19
|
+
"getrandom 0.3.4",
|
|
20
|
+
"once_cell",
|
|
21
|
+
"version_check",
|
|
22
|
+
"zerocopy",
|
|
23
|
+
]
|
|
24
|
+
|
|
25
|
+
[[package]]
|
|
26
|
+
name = "aho-corasick"
|
|
27
|
+
version = "1.1.3"
|
|
28
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
29
|
+
checksum = "8e60d3430d3a69478ad0993f19238d2df97c507009a52b3c10addcd7f6bcb916"
|
|
30
|
+
dependencies = [
|
|
31
|
+
"memchr",
|
|
32
|
+
]
|
|
33
|
+
|
|
34
|
+
[[package]]
|
|
35
|
+
name = "alloc-no-stdlib"
|
|
36
|
+
version = "2.0.4"
|
|
37
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
38
|
+
checksum = "cc7bb162ec39d46ab1ca8c77bf72e890535becd1751bb45f64c597edb4c8c6b3"
|
|
39
|
+
|
|
40
|
+
[[package]]
|
|
41
|
+
name = "alloc-stdlib"
|
|
42
|
+
version = "0.2.2"
|
|
43
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
44
|
+
checksum = "94fb8275041c72129eb51b7d0322c29b8387a0386127718b096429201a5d6ece"
|
|
45
|
+
dependencies = [
|
|
46
|
+
"alloc-no-stdlib",
|
|
47
|
+
]
|
|
48
|
+
|
|
49
|
+
[[package]]
|
|
50
|
+
name = "allocator-api2"
|
|
51
|
+
version = "0.2.21"
|
|
52
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
53
|
+
checksum = "683d7910e743518b0e34f1186f92494becacb047c7b6bf616c96772180fef923"
|
|
54
|
+
|
|
55
|
+
[[package]]
|
|
56
|
+
name = "android_system_properties"
|
|
57
|
+
version = "0.1.5"
|
|
58
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
59
|
+
checksum = "819e7219dbd41043ac279b19830f2efc897156490d7fd6ea916720117ee66311"
|
|
60
|
+
dependencies = [
|
|
61
|
+
"libc",
|
|
62
|
+
]
|
|
63
|
+
|
|
64
|
+
[[package]]
|
|
65
|
+
name = "anstream"
|
|
66
|
+
version = "1.0.0"
|
|
67
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
68
|
+
checksum = "824a212faf96e9acacdbd09febd34438f8f711fb84e09a8916013cd7815ca28d"
|
|
69
|
+
dependencies = [
|
|
70
|
+
"anstyle",
|
|
71
|
+
"anstyle-parse",
|
|
72
|
+
"anstyle-query",
|
|
73
|
+
"anstyle-wincon",
|
|
74
|
+
"colorchoice",
|
|
75
|
+
"is_terminal_polyfill",
|
|
76
|
+
"utf8parse",
|
|
77
|
+
]
|
|
78
|
+
|
|
79
|
+
[[package]]
|
|
80
|
+
name = "anstyle"
|
|
81
|
+
version = "1.0.14"
|
|
82
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
83
|
+
checksum = "940b3a0ca603d1eade50a4846a2afffd5ef57a9feac2c0e2ec2e14f9ead76000"
|
|
84
|
+
|
|
85
|
+
[[package]]
|
|
86
|
+
name = "anstyle-parse"
|
|
87
|
+
version = "1.0.0"
|
|
88
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
89
|
+
checksum = "52ce7f38b242319f7cabaa6813055467063ecdc9d355bbb4ce0c68908cd8130e"
|
|
90
|
+
dependencies = [
|
|
91
|
+
"utf8parse",
|
|
92
|
+
]
|
|
93
|
+
|
|
94
|
+
[[package]]
|
|
95
|
+
name = "anstyle-query"
|
|
96
|
+
version = "1.1.5"
|
|
97
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
98
|
+
checksum = "40c48f72fd53cd289104fc64099abca73db4166ad86ea0b4341abe65af83dadc"
|
|
99
|
+
dependencies = [
|
|
100
|
+
"windows-sys 0.61.2",
|
|
101
|
+
]
|
|
102
|
+
|
|
103
|
+
[[package]]
|
|
104
|
+
name = "anstyle-wincon"
|
|
105
|
+
version = "3.0.11"
|
|
106
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
107
|
+
checksum = "291e6a250ff86cd4a820112fb8898808a366d8f9f58ce16d1f538353ad55747d"
|
|
108
|
+
dependencies = [
|
|
109
|
+
"anstyle",
|
|
110
|
+
"once_cell_polyfill",
|
|
111
|
+
"windows-sys 0.61.2",
|
|
112
|
+
]
|
|
113
|
+
|
|
114
|
+
[[package]]
|
|
115
|
+
name = "ariadne"
|
|
116
|
+
version = "0.5.1"
|
|
117
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
118
|
+
checksum = "36f5e3dca4e09a6f340a61a0e9c7b61e030c69fc27bf29d73218f7e5e3b7638f"
|
|
119
|
+
dependencies = [
|
|
120
|
+
"unicode-width",
|
|
121
|
+
"yansi",
|
|
122
|
+
]
|
|
123
|
+
|
|
124
|
+
[[package]]
|
|
125
|
+
name = "arrow-array"
|
|
126
|
+
version = "58.1.0"
|
|
127
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
128
|
+
checksum = "772bd34cacdda8baec9418d80d23d0fb4d50ef0735685bd45158b83dfeb6e62d"
|
|
129
|
+
dependencies = [
|
|
130
|
+
"ahash",
|
|
131
|
+
"arrow-buffer",
|
|
132
|
+
"arrow-data",
|
|
133
|
+
"arrow-schema",
|
|
134
|
+
"chrono",
|
|
135
|
+
"half",
|
|
136
|
+
"hashbrown 0.16.1",
|
|
137
|
+
"num-complex",
|
|
138
|
+
"num-integer",
|
|
139
|
+
"num-traits",
|
|
140
|
+
]
|
|
141
|
+
|
|
142
|
+
[[package]]
|
|
143
|
+
name = "arrow-buffer"
|
|
144
|
+
version = "58.1.0"
|
|
145
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
146
|
+
checksum = "898f4cf1e9598fdb77f356fdf2134feedfd0ee8d5a4e0a5f573e7d0aec16baa4"
|
|
147
|
+
dependencies = [
|
|
148
|
+
"bytes",
|
|
149
|
+
"half",
|
|
150
|
+
"num-bigint",
|
|
151
|
+
"num-traits",
|
|
152
|
+
]
|
|
153
|
+
|
|
154
|
+
[[package]]
|
|
155
|
+
name = "arrow-data"
|
|
156
|
+
version = "58.1.0"
|
|
157
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
158
|
+
checksum = "42d10beeab2b1c3bb0b53a00f7c944a178b622173a5c7bcabc3cb45d90238df4"
|
|
159
|
+
dependencies = [
|
|
160
|
+
"arrow-buffer",
|
|
161
|
+
"arrow-schema",
|
|
162
|
+
"half",
|
|
163
|
+
"num-integer",
|
|
164
|
+
"num-traits",
|
|
165
|
+
]
|
|
166
|
+
|
|
167
|
+
[[package]]
|
|
168
|
+
name = "arrow-ipc"
|
|
169
|
+
version = "58.1.0"
|
|
170
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
171
|
+
checksum = "609a441080e338147a84e8e6904b6da482cefb957c5cdc0f3398872f69a315d0"
|
|
172
|
+
dependencies = [
|
|
173
|
+
"arrow-array",
|
|
174
|
+
"arrow-buffer",
|
|
175
|
+
"arrow-data",
|
|
176
|
+
"arrow-schema",
|
|
177
|
+
"arrow-select",
|
|
178
|
+
"flatbuffers",
|
|
179
|
+
]
|
|
180
|
+
|
|
181
|
+
[[package]]
|
|
182
|
+
name = "arrow-schema"
|
|
183
|
+
version = "58.1.0"
|
|
184
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
185
|
+
checksum = "c30a1365d7a7dc50cc847e54154e6af49e4c4b0fddc9f607b687f29212082743"
|
|
186
|
+
|
|
187
|
+
[[package]]
|
|
188
|
+
name = "arrow-select"
|
|
189
|
+
version = "58.1.0"
|
|
190
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
191
|
+
checksum = "78694888660a9e8ac949853db393af2a8b8fc82c19ce333132dfa2e72cc1a7fe"
|
|
192
|
+
dependencies = [
|
|
193
|
+
"ahash",
|
|
194
|
+
"arrow-array",
|
|
195
|
+
"arrow-buffer",
|
|
196
|
+
"arrow-data",
|
|
197
|
+
"arrow-schema",
|
|
198
|
+
"num-traits",
|
|
199
|
+
]
|
|
200
|
+
|
|
201
|
+
[[package]]
|
|
202
|
+
name = "autocfg"
|
|
203
|
+
version = "1.5.0"
|
|
204
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
205
|
+
checksum = "c08606f8c3cbf4ce6ec8e28fb0014a2c086708fe954eaa885384a6165172e7e8"
|
|
206
|
+
|
|
207
|
+
[[package]]
|
|
208
|
+
name = "base64"
|
|
209
|
+
version = "0.22.1"
|
|
210
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
211
|
+
checksum = "72b3254f16251a8381aa12e40e3c4d2f0199f8c6508fbecb9d91f575e0fbb8c6"
|
|
212
|
+
|
|
213
|
+
[[package]]
|
|
214
|
+
name = "beef"
|
|
215
|
+
version = "0.5.2"
|
|
216
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
217
|
+
checksum = "3a8241f3ebb85c056b509d4327ad0358fbbba6ffb340bf388f26350aeda225b1"
|
|
218
|
+
|
|
219
|
+
[[package]]
|
|
220
|
+
name = "bitflags"
|
|
221
|
+
version = "2.11.1"
|
|
222
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
223
|
+
checksum = "c4512299f36f043ab09a583e57bceb5a5aab7a73db1805848e8fef3c9e8c78b3"
|
|
224
|
+
|
|
225
|
+
[[package]]
|
|
226
|
+
name = "brotli"
|
|
227
|
+
version = "8.0.2"
|
|
228
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
229
|
+
checksum = "4bd8b9603c7aa97359dbd97ecf258968c95f3adddd6db2f7e7a5bef101c84560"
|
|
230
|
+
dependencies = [
|
|
231
|
+
"alloc-no-stdlib",
|
|
232
|
+
"alloc-stdlib",
|
|
233
|
+
"brotli-decompressor",
|
|
234
|
+
]
|
|
235
|
+
|
|
236
|
+
[[package]]
|
|
237
|
+
name = "brotli-decompressor"
|
|
238
|
+
version = "5.0.0"
|
|
239
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
240
|
+
checksum = "874bb8112abecc98cbd6d81ea4fa7e94fb9449648c93cc89aa40c81c24d7de03"
|
|
241
|
+
dependencies = [
|
|
242
|
+
"alloc-no-stdlib",
|
|
243
|
+
"alloc-stdlib",
|
|
244
|
+
]
|
|
245
|
+
|
|
246
|
+
[[package]]
|
|
247
|
+
name = "bumpalo"
|
|
248
|
+
version = "3.19.1"
|
|
249
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
250
|
+
checksum = "5dd9dc738b7a8311c7ade152424974d8115f2cdad61e8dab8dac9f2362298510"
|
|
251
|
+
|
|
252
|
+
[[package]]
|
|
253
|
+
name = "byteorder"
|
|
254
|
+
version = "1.5.0"
|
|
255
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
256
|
+
checksum = "1fd0f2584146f6f2ef48085050886acf353beff7305ebd1ae69500e27c67f64b"
|
|
257
|
+
|
|
258
|
+
[[package]]
|
|
259
|
+
name = "bytes"
|
|
260
|
+
version = "1.11.1"
|
|
261
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
262
|
+
checksum = "1e748733b7cbc798e1434b6ac524f0c1ff2ab456fe201501e6497c8417a4fc33"
|
|
263
|
+
|
|
264
|
+
[[package]]
|
|
265
|
+
name = "cc"
|
|
266
|
+
version = "1.2.27"
|
|
267
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
268
|
+
checksum = "d487aa071b5f64da6f19a3e848e3578944b726ee5a4854b82172f02aa876bfdc"
|
|
269
|
+
dependencies = [
|
|
270
|
+
"jobserver",
|
|
271
|
+
"libc",
|
|
272
|
+
"shlex",
|
|
273
|
+
]
|
|
274
|
+
|
|
275
|
+
[[package]]
|
|
276
|
+
name = "cfg-if"
|
|
277
|
+
version = "1.0.1"
|
|
278
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
279
|
+
checksum = "9555578bc9e57714c812a1f84e4fc5b4d21fcb063490c624de019f7464c91268"
|
|
280
|
+
|
|
281
|
+
[[package]]
|
|
282
|
+
name = "chrono"
|
|
283
|
+
version = "0.4.44"
|
|
284
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
285
|
+
checksum = "c673075a2e0e5f4a1dde27ce9dee1ea4558c7ffe648f576438a20ca1d2acc4b0"
|
|
286
|
+
dependencies = [
|
|
287
|
+
"iana-time-zone",
|
|
288
|
+
"num-traits",
|
|
289
|
+
"windows-link",
|
|
290
|
+
]
|
|
291
|
+
|
|
292
|
+
[[package]]
|
|
293
|
+
name = "chumsky"
|
|
294
|
+
version = "0.11.1"
|
|
295
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
296
|
+
checksum = "6cd3ef0a728f561e3b4157213d178ae7523cbc405423f862da757447588ae103"
|
|
297
|
+
dependencies = [
|
|
298
|
+
"hashbrown 0.15.4",
|
|
299
|
+
"regex-automata",
|
|
300
|
+
"serde",
|
|
301
|
+
"stacker",
|
|
302
|
+
"unicode-ident",
|
|
303
|
+
"unicode-segmentation",
|
|
304
|
+
]
|
|
305
|
+
|
|
306
|
+
[[package]]
|
|
307
|
+
name = "clap"
|
|
308
|
+
version = "4.6.1"
|
|
309
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
310
|
+
checksum = "1ddb117e43bbf7dacf0a4190fef4d345b9bad68dfc649cb349e7d17d28428e51"
|
|
311
|
+
dependencies = [
|
|
312
|
+
"clap_builder",
|
|
313
|
+
"clap_derive",
|
|
314
|
+
]
|
|
315
|
+
|
|
316
|
+
[[package]]
|
|
317
|
+
name = "clap_builder"
|
|
318
|
+
version = "4.6.0"
|
|
319
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
320
|
+
checksum = "714a53001bf66416adb0e2ef5ac857140e7dc3a0c48fb28b2f10762fc4b5069f"
|
|
321
|
+
dependencies = [
|
|
322
|
+
"anstream",
|
|
323
|
+
"anstyle",
|
|
324
|
+
"clap_lex",
|
|
325
|
+
"strsim",
|
|
326
|
+
]
|
|
327
|
+
|
|
328
|
+
[[package]]
|
|
329
|
+
name = "clap_derive"
|
|
330
|
+
version = "4.6.1"
|
|
331
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
332
|
+
checksum = "f2ce8604710f6733aa641a2b3731eaa1e8b3d9973d5e3565da11800813f997a9"
|
|
333
|
+
dependencies = [
|
|
334
|
+
"heck",
|
|
335
|
+
"proc-macro2",
|
|
336
|
+
"quote",
|
|
337
|
+
"syn",
|
|
338
|
+
]
|
|
339
|
+
|
|
340
|
+
[[package]]
|
|
341
|
+
name = "clap_lex"
|
|
342
|
+
version = "1.1.0"
|
|
343
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
344
|
+
checksum = "c8d4a3bb8b1e0c1050499d1815f5ab16d04f0959b233085fb31653fbfc9d98f9"
|
|
345
|
+
|
|
346
|
+
[[package]]
|
|
347
|
+
name = "colorchoice"
|
|
348
|
+
version = "1.0.5"
|
|
349
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
350
|
+
checksum = "1d07550c9036bf2ae0c684c4297d503f838287c83c53686d05370d0e139ae570"
|
|
351
|
+
|
|
352
|
+
[[package]]
|
|
353
|
+
name = "const-random"
|
|
354
|
+
version = "0.1.18"
|
|
355
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
356
|
+
checksum = "87e00182fe74b066627d63b85fd550ac2998d4b0bd86bfed477a0ae4c7c71359"
|
|
357
|
+
dependencies = [
|
|
358
|
+
"const-random-macro",
|
|
359
|
+
]
|
|
360
|
+
|
|
361
|
+
[[package]]
|
|
362
|
+
name = "const-random-macro"
|
|
363
|
+
version = "0.1.16"
|
|
364
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
365
|
+
checksum = "f9d839f2a20b0aee515dc581a6172f2321f96cab76c1a38a4c584a194955390e"
|
|
366
|
+
dependencies = [
|
|
367
|
+
"getrandom 0.2.17",
|
|
368
|
+
"once_cell",
|
|
369
|
+
"tiny-keccak",
|
|
370
|
+
]
|
|
371
|
+
|
|
372
|
+
[[package]]
|
|
373
|
+
name = "core-foundation-sys"
|
|
374
|
+
version = "0.8.7"
|
|
375
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
376
|
+
checksum = "773648b94d0e5d620f64f280777445740e61fe701025087ec8b57f45c791888b"
|
|
377
|
+
|
|
378
|
+
[[package]]
|
|
379
|
+
name = "crossbeam-deque"
|
|
380
|
+
version = "0.8.6"
|
|
381
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
382
|
+
checksum = "9dd111b7b7f7d55b72c0a6ae361660ee5853c9af73f70c3c2ef6858b950e2e51"
|
|
383
|
+
dependencies = [
|
|
384
|
+
"crossbeam-epoch",
|
|
385
|
+
"crossbeam-utils",
|
|
386
|
+
]
|
|
387
|
+
|
|
388
|
+
[[package]]
|
|
389
|
+
name = "crossbeam-epoch"
|
|
390
|
+
version = "0.9.18"
|
|
391
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
392
|
+
checksum = "5b82ac4a3c2ca9c3460964f020e1402edd5753411d7737aa39c3714ad1b5420e"
|
|
393
|
+
dependencies = [
|
|
394
|
+
"crossbeam-utils",
|
|
395
|
+
]
|
|
396
|
+
|
|
397
|
+
[[package]]
|
|
398
|
+
name = "crossbeam-utils"
|
|
399
|
+
version = "0.8.21"
|
|
400
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
401
|
+
checksum = "d0a5c400df2834b80a4c3327b3aad3a4c4cd4de0629063962b03235697506a28"
|
|
402
|
+
|
|
403
|
+
[[package]]
|
|
404
|
+
name = "crunchy"
|
|
405
|
+
version = "0.2.4"
|
|
406
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
407
|
+
checksum = "460fbee9c2c2f33933d720630a6a0bac33ba7053db5344fac858d4b8952d77d5"
|
|
408
|
+
|
|
409
|
+
[[package]]
|
|
410
|
+
name = "either"
|
|
411
|
+
version = "1.15.0"
|
|
412
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
413
|
+
checksum = "48c757948c5ede0e46177b7add2e67155f70e33c07fea8284df6576da70b3719"
|
|
414
|
+
|
|
415
|
+
[[package]]
|
|
416
|
+
name = "equivalent"
|
|
417
|
+
version = "1.0.2"
|
|
418
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
419
|
+
checksum = "877a4ace8713b0bcf2a4e7eec82529c029f1d0619886d18145fea96c3ffe5c0f"
|
|
420
|
+
|
|
421
|
+
[[package]]
|
|
422
|
+
name = "errno"
|
|
423
|
+
version = "0.3.14"
|
|
424
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
425
|
+
checksum = "39cab71617ae0d63f51a36d69f866391735b51691dbda63cf6f96d042b63efeb"
|
|
426
|
+
dependencies = [
|
|
427
|
+
"libc",
|
|
428
|
+
"windows-sys 0.61.2",
|
|
429
|
+
]
|
|
430
|
+
|
|
431
|
+
[[package]]
|
|
432
|
+
name = "fastrand"
|
|
433
|
+
version = "2.4.1"
|
|
434
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
435
|
+
checksum = "9f1f227452a390804cdb637b74a86990f2a7d7ba4b7d5693aac9b4dd6defd8d6"
|
|
436
|
+
|
|
437
|
+
[[package]]
|
|
438
|
+
name = "flatbuffers"
|
|
439
|
+
version = "25.12.19"
|
|
440
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
441
|
+
checksum = "35f6839d7b3b98adde531effaf34f0c2badc6f4735d26fe74709d8e513a96ef3"
|
|
442
|
+
dependencies = [
|
|
443
|
+
"bitflags",
|
|
444
|
+
"rustc_version",
|
|
445
|
+
]
|
|
446
|
+
|
|
447
|
+
[[package]]
|
|
448
|
+
name = "flate2"
|
|
449
|
+
version = "1.1.9"
|
|
450
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
451
|
+
checksum = "843fba2746e448b37e26a819579957415c8cef339bf08564fe8b7ddbd959573c"
|
|
452
|
+
dependencies = [
|
|
453
|
+
"miniz_oxide",
|
|
454
|
+
"zlib-rs",
|
|
455
|
+
]
|
|
456
|
+
|
|
457
|
+
[[package]]
|
|
458
|
+
name = "fnv"
|
|
459
|
+
version = "1.0.7"
|
|
460
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
461
|
+
checksum = "3f9eec918d3f24069decb9af1554cad7c880e2da24a9afd88aca000531ab82c1"
|
|
462
|
+
|
|
463
|
+
[[package]]
|
|
464
|
+
name = "foldhash"
|
|
465
|
+
version = "0.1.5"
|
|
466
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
467
|
+
checksum = "d9c4f5dac5e15c24eb999c26181a6ca40b39fe946cbe4c263c7209467bc83af2"
|
|
468
|
+
|
|
469
|
+
[[package]]
|
|
470
|
+
name = "getrandom"
|
|
471
|
+
version = "0.2.17"
|
|
472
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
473
|
+
checksum = "ff2abc00be7fca6ebc474524697ae276ad847ad0a6b3faa4bcb027e9a4614ad0"
|
|
474
|
+
dependencies = [
|
|
475
|
+
"cfg-if",
|
|
476
|
+
"libc",
|
|
477
|
+
"wasi",
|
|
478
|
+
]
|
|
479
|
+
|
|
480
|
+
[[package]]
|
|
481
|
+
name = "getrandom"
|
|
482
|
+
version = "0.3.4"
|
|
483
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
484
|
+
checksum = "899def5c37c4fd7b2664648c28120ecec138e4d395b459e5ca34f9cce2dd77fd"
|
|
485
|
+
dependencies = [
|
|
486
|
+
"cfg-if",
|
|
487
|
+
"libc",
|
|
488
|
+
"r-efi",
|
|
489
|
+
"wasip2",
|
|
490
|
+
]
|
|
491
|
+
|
|
492
|
+
[[package]]
|
|
493
|
+
name = "glob"
|
|
494
|
+
version = "0.3.3"
|
|
495
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
496
|
+
checksum = "0cc23270f6e1808e30a928bdc84dea0b9b4136a8bc82338574f23baf47bbd280"
|
|
497
|
+
|
|
498
|
+
[[package]]
|
|
499
|
+
name = "half"
|
|
500
|
+
version = "2.7.1"
|
|
501
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
502
|
+
checksum = "6ea2d84b969582b4b1864a92dc5d27cd2b77b622a8d79306834f1be5ba20d84b"
|
|
503
|
+
dependencies = [
|
|
504
|
+
"cfg-if",
|
|
505
|
+
"crunchy",
|
|
506
|
+
"num-traits",
|
|
507
|
+
"zerocopy",
|
|
508
|
+
]
|
|
509
|
+
|
|
510
|
+
[[package]]
|
|
511
|
+
name = "hashbrown"
|
|
512
|
+
version = "0.15.4"
|
|
513
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
514
|
+
checksum = "5971ac85611da7067dbfcabef3c70ebb5606018acd9e2a3903a0da507521e0d5"
|
|
515
|
+
dependencies = [
|
|
516
|
+
"allocator-api2",
|
|
517
|
+
"equivalent",
|
|
518
|
+
"foldhash",
|
|
519
|
+
]
|
|
520
|
+
|
|
521
|
+
[[package]]
|
|
522
|
+
name = "hashbrown"
|
|
523
|
+
version = "0.16.1"
|
|
524
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
525
|
+
checksum = "841d1cc9bed7f9236f321df977030373f4a4163ae1a7dbfe1a51a2c1a51d9100"
|
|
526
|
+
|
|
527
|
+
[[package]]
|
|
528
|
+
name = "heck"
|
|
529
|
+
version = "0.5.0"
|
|
530
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
531
|
+
checksum = "2304e00983f87ffb38b55b444b5e3b60a884b5d30c0fca7d82fe33449bbe55ea"
|
|
532
|
+
|
|
533
|
+
[[package]]
|
|
534
|
+
name = "iana-time-zone"
|
|
535
|
+
version = "0.1.65"
|
|
536
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
537
|
+
checksum = "e31bc9ad994ba00e440a8aa5c9ef0ec67d5cb5e5cb0cc7f8b744a35b389cc470"
|
|
538
|
+
dependencies = [
|
|
539
|
+
"android_system_properties",
|
|
540
|
+
"core-foundation-sys",
|
|
541
|
+
"iana-time-zone-haiku",
|
|
542
|
+
"js-sys",
|
|
543
|
+
"log",
|
|
544
|
+
"wasm-bindgen",
|
|
545
|
+
"windows-core",
|
|
546
|
+
]
|
|
547
|
+
|
|
548
|
+
[[package]]
|
|
549
|
+
name = "iana-time-zone-haiku"
|
|
550
|
+
version = "0.1.2"
|
|
551
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
552
|
+
checksum = "f31827a206f56af32e590ba56d5d2d085f558508192593743f16b2306495269f"
|
|
553
|
+
dependencies = [
|
|
554
|
+
"cc",
|
|
555
|
+
]
|
|
556
|
+
|
|
557
|
+
[[package]]
|
|
558
|
+
name = "indexmap"
|
|
559
|
+
version = "2.12.1"
|
|
560
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
561
|
+
checksum = "0ad4bb2b565bca0645f4d68c5c9af97fba094e9791da685bf83cb5f3ce74acf2"
|
|
562
|
+
dependencies = [
|
|
563
|
+
"equivalent",
|
|
564
|
+
"hashbrown 0.16.1",
|
|
565
|
+
]
|
|
566
|
+
|
|
567
|
+
[[package]]
|
|
568
|
+
name = "indoc"
|
|
569
|
+
version = "2.0.7"
|
|
570
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
571
|
+
checksum = "79cf5c93f93228cf8efb3ba362535fb11199ac548a09ce117c9b1adc3030d706"
|
|
572
|
+
dependencies = [
|
|
573
|
+
"rustversion",
|
|
574
|
+
]
|
|
575
|
+
|
|
576
|
+
[[package]]
|
|
577
|
+
name = "integer-encoding"
|
|
578
|
+
version = "3.0.4"
|
|
579
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
580
|
+
checksum = "8bb03732005da905c88227371639bf1ad885cc712789c011c31c5fb3ab3ccf02"
|
|
581
|
+
|
|
582
|
+
[[package]]
|
|
583
|
+
name = "is_terminal_polyfill"
|
|
584
|
+
version = "1.70.2"
|
|
585
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
586
|
+
checksum = "a6cb138bb79a146c1bd460005623e142ef0181e3d0219cb493e02f7d08a35695"
|
|
587
|
+
|
|
588
|
+
[[package]]
|
|
589
|
+
name = "itoa"
|
|
590
|
+
version = "1.0.15"
|
|
591
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
592
|
+
checksum = "4a5f13b858c8d314ee3e8f639011f7ccefe71f97f96e50151fb991f267928e2c"
|
|
593
|
+
|
|
594
|
+
[[package]]
|
|
595
|
+
name = "jobserver"
|
|
596
|
+
version = "0.1.34"
|
|
597
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
598
|
+
checksum = "9afb3de4395d6b3e67a780b6de64b51c978ecf11cb9a462c66be7d4ca9039d33"
|
|
599
|
+
dependencies = [
|
|
600
|
+
"getrandom 0.3.4",
|
|
601
|
+
"libc",
|
|
602
|
+
]
|
|
603
|
+
|
|
604
|
+
[[package]]
|
|
605
|
+
name = "js-sys"
|
|
606
|
+
version = "0.3.85"
|
|
607
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
608
|
+
checksum = "8c942ebf8e95485ca0d52d97da7c5a2c387d0e7f0ba4c35e93bfcaee045955b3"
|
|
609
|
+
dependencies = [
|
|
610
|
+
"once_cell",
|
|
611
|
+
"wasm-bindgen",
|
|
612
|
+
]
|
|
613
|
+
|
|
614
|
+
[[package]]
|
|
615
|
+
name = "lazy_static"
|
|
616
|
+
version = "1.5.0"
|
|
617
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
618
|
+
checksum = "bbd2bcb4c963f2ddae06a2efc7e9f3591312473c50c6685e1f298068316e66fe"
|
|
619
|
+
|
|
620
|
+
[[package]]
|
|
621
|
+
name = "libc"
|
|
622
|
+
version = "0.2.173"
|
|
623
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
624
|
+
checksum = "d8cfeafaffdbc32176b64fb251369d52ea9f0a8fbc6f8759edffef7b525d64bb"
|
|
625
|
+
|
|
626
|
+
[[package]]
|
|
627
|
+
name = "libm"
|
|
628
|
+
version = "0.2.16"
|
|
629
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
630
|
+
checksum = "b6d2cec3eae94f9f509c767b45932f1ada8350c4bdb85af2fcab4a3c14807981"
|
|
631
|
+
|
|
632
|
+
[[package]]
|
|
633
|
+
name = "linux-raw-sys"
|
|
634
|
+
version = "0.11.0"
|
|
635
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
636
|
+
checksum = "df1d3c3b53da64cf5760482273a98e575c651a67eec7f77df96b5b642de8f039"
|
|
637
|
+
|
|
638
|
+
[[package]]
|
|
639
|
+
name = "log"
|
|
640
|
+
version = "0.4.29"
|
|
641
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
642
|
+
checksum = "5e5032e24019045c762d3c0f28f5b6b8bbf38563a65908389bf7978758920897"
|
|
643
|
+
|
|
644
|
+
[[package]]
|
|
645
|
+
name = "logos"
|
|
646
|
+
version = "0.15.1"
|
|
647
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
648
|
+
checksum = "ff472f899b4ec2d99161c51f60ff7075eeb3097069a36050d8037a6325eb8154"
|
|
649
|
+
dependencies = [
|
|
650
|
+
"logos-derive",
|
|
651
|
+
]
|
|
652
|
+
|
|
653
|
+
[[package]]
|
|
654
|
+
name = "logos-codegen"
|
|
655
|
+
version = "0.15.1"
|
|
656
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
657
|
+
checksum = "192a3a2b90b0c05b27a0b2c43eecdb7c415e29243acc3f89cc8247a5b693045c"
|
|
658
|
+
dependencies = [
|
|
659
|
+
"beef",
|
|
660
|
+
"fnv",
|
|
661
|
+
"lazy_static",
|
|
662
|
+
"proc-macro2",
|
|
663
|
+
"quote",
|
|
664
|
+
"regex-syntax 0.8.8",
|
|
665
|
+
"rustc_version",
|
|
666
|
+
"syn",
|
|
667
|
+
]
|
|
668
|
+
|
|
669
|
+
[[package]]
|
|
670
|
+
name = "logos-derive"
|
|
671
|
+
version = "0.15.1"
|
|
672
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
673
|
+
checksum = "605d9697bcd5ef3a42d38efc51541aa3d6a4a25f7ab6d1ed0da5ac632a26b470"
|
|
674
|
+
dependencies = [
|
|
675
|
+
"logos-codegen",
|
|
676
|
+
]
|
|
677
|
+
|
|
678
|
+
[[package]]
|
|
679
|
+
name = "lz4_flex"
|
|
680
|
+
version = "0.13.0"
|
|
681
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
682
|
+
checksum = "db9a0d582c2874f68138a16ce1867e0ffde6c0bb0a0df85e1f36d04146db488a"
|
|
683
|
+
dependencies = [
|
|
684
|
+
"twox-hash",
|
|
685
|
+
]
|
|
686
|
+
|
|
687
|
+
[[package]]
|
|
688
|
+
name = "memchr"
|
|
689
|
+
version = "2.7.5"
|
|
690
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
691
|
+
checksum = "32a282da65faaf38286cf3be983213fcf1d2e2a58700e808f83f4ea9a4804bc0"
|
|
692
|
+
|
|
693
|
+
[[package]]
|
|
694
|
+
name = "memoffset"
|
|
695
|
+
version = "0.9.1"
|
|
696
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
697
|
+
checksum = "488016bfae457b036d996092f6cb448677611ce4449e970ceaf42695203f218a"
|
|
698
|
+
dependencies = [
|
|
699
|
+
"autocfg",
|
|
700
|
+
]
|
|
701
|
+
|
|
702
|
+
[[package]]
|
|
703
|
+
name = "miniz_oxide"
|
|
704
|
+
version = "0.8.9"
|
|
705
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
706
|
+
checksum = "1fa76a2c86f704bdb222d66965fb3d63269ce38518b83cb0575fca855ebb6316"
|
|
707
|
+
dependencies = [
|
|
708
|
+
"adler2",
|
|
709
|
+
"simd-adler32",
|
|
710
|
+
]
|
|
711
|
+
|
|
712
|
+
[[package]]
|
|
713
|
+
name = "num-bigint"
|
|
714
|
+
version = "0.4.6"
|
|
715
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
716
|
+
checksum = "a5e44f723f1133c9deac646763579fdb3ac745e418f2a7af9cd0c431da1f20b9"
|
|
717
|
+
dependencies = [
|
|
718
|
+
"num-integer",
|
|
719
|
+
"num-traits",
|
|
720
|
+
]
|
|
721
|
+
|
|
722
|
+
[[package]]
|
|
723
|
+
name = "num-complex"
|
|
724
|
+
version = "0.4.6"
|
|
725
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
726
|
+
checksum = "73f88a1307638156682bada9d7604135552957b7818057dcef22705b4d509495"
|
|
727
|
+
dependencies = [
|
|
728
|
+
"num-traits",
|
|
729
|
+
]
|
|
730
|
+
|
|
731
|
+
[[package]]
|
|
732
|
+
name = "num-integer"
|
|
733
|
+
version = "0.1.46"
|
|
734
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
735
|
+
checksum = "7969661fd2958a5cb096e56c8e1ad0444ac2bbcd0061bd28660485a44879858f"
|
|
736
|
+
dependencies = [
|
|
737
|
+
"num-traits",
|
|
738
|
+
]
|
|
739
|
+
|
|
740
|
+
[[package]]
|
|
741
|
+
name = "num-traits"
|
|
742
|
+
version = "0.2.19"
|
|
743
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
744
|
+
checksum = "071dfc062690e90b734c0b2273ce72ad0ffa95f0c74596bc250dcfd960262841"
|
|
745
|
+
dependencies = [
|
|
746
|
+
"autocfg",
|
|
747
|
+
"libm",
|
|
748
|
+
]
|
|
749
|
+
|
|
750
|
+
[[package]]
|
|
751
|
+
name = "once_cell"
|
|
752
|
+
version = "1.21.3"
|
|
753
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
754
|
+
checksum = "42f5e15c9953c5e4ccceeb2e7382a716482c34515315f7b03532b8b4e8393d2d"
|
|
755
|
+
|
|
756
|
+
[[package]]
|
|
757
|
+
name = "once_cell_polyfill"
|
|
758
|
+
version = "1.70.2"
|
|
759
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
760
|
+
checksum = "384b8ab6d37215f3c5301a95a4accb5d64aa607f1fcb26a11b5303878451b4fe"
|
|
761
|
+
|
|
762
|
+
[[package]]
|
|
763
|
+
name = "ordered-float"
|
|
764
|
+
version = "2.10.1"
|
|
765
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
766
|
+
checksum = "68f19d67e5a2795c94e73e0bb1cc1a7edeb2e28efd39e2e1c9b7a40c1108b11c"
|
|
767
|
+
dependencies = [
|
|
768
|
+
"num-traits",
|
|
769
|
+
]
|
|
770
|
+
|
|
771
|
+
[[package]]
|
|
772
|
+
name = "parquet"
|
|
773
|
+
version = "58.1.0"
|
|
774
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
775
|
+
checksum = "7d3f9f2205199603564127932b89695f52b62322f541d0fc7179d57c2e1c9877"
|
|
776
|
+
dependencies = [
|
|
777
|
+
"ahash",
|
|
778
|
+
"arrow-array",
|
|
779
|
+
"arrow-buffer",
|
|
780
|
+
"arrow-data",
|
|
781
|
+
"arrow-ipc",
|
|
782
|
+
"arrow-schema",
|
|
783
|
+
"arrow-select",
|
|
784
|
+
"base64",
|
|
785
|
+
"brotli",
|
|
786
|
+
"bytes",
|
|
787
|
+
"chrono",
|
|
788
|
+
"flate2",
|
|
789
|
+
"half",
|
|
790
|
+
"hashbrown 0.16.1",
|
|
791
|
+
"lz4_flex",
|
|
792
|
+
"num-bigint",
|
|
793
|
+
"num-integer",
|
|
794
|
+
"num-traits",
|
|
795
|
+
"paste",
|
|
796
|
+
"seq-macro",
|
|
797
|
+
"simdutf8",
|
|
798
|
+
"snap",
|
|
799
|
+
"thrift",
|
|
800
|
+
"twox-hash",
|
|
801
|
+
"zstd",
|
|
802
|
+
]
|
|
803
|
+
|
|
804
|
+
[[package]]
|
|
805
|
+
name = "paste"
|
|
806
|
+
version = "1.0.15"
|
|
807
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
808
|
+
checksum = "57c0d7b74b563b49d38dae00a0c37d4d6de9b432382b2892f0574ddcae73fd0a"
|
|
809
|
+
|
|
810
|
+
[[package]]
|
|
811
|
+
name = "pkg-config"
|
|
812
|
+
version = "0.3.33"
|
|
813
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
814
|
+
checksum = "19f132c84eca552bf34cab8ec81f1c1dcc229b811638f9d283dceabe58c5569e"
|
|
815
|
+
|
|
816
|
+
[[package]]
|
|
817
|
+
name = "portable-atomic"
|
|
818
|
+
version = "1.13.1"
|
|
819
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
820
|
+
checksum = "c33a9471896f1c69cecef8d20cbe2f7accd12527ce60845ff44c153bb2a21b49"
|
|
821
|
+
|
|
822
|
+
[[package]]
|
|
823
|
+
name = "proc-macro2"
|
|
824
|
+
version = "1.0.106"
|
|
825
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
826
|
+
checksum = "8fd00f0bb2e90d81d1044c2b32617f68fcb9fa3bb7640c23e9c748e53fb30934"
|
|
827
|
+
dependencies = [
|
|
828
|
+
"unicode-ident",
|
|
829
|
+
]
|
|
830
|
+
|
|
831
|
+
[[package]]
|
|
832
|
+
name = "psm"
|
|
833
|
+
version = "0.1.26"
|
|
834
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
835
|
+
checksum = "6e944464ec8536cd1beb0bbfd96987eb5e3b72f2ecdafdc5c769a37f1fa2ae1f"
|
|
836
|
+
dependencies = [
|
|
837
|
+
"cc",
|
|
838
|
+
]
|
|
839
|
+
|
|
840
|
+
[[package]]
|
|
841
|
+
name = "pyo3"
|
|
842
|
+
version = "0.27.2"
|
|
843
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
844
|
+
checksum = "ab53c047fcd1a1d2a8820fe84f05d6be69e9526be40cb03b73f86b6b03e6d87d"
|
|
845
|
+
dependencies = [
|
|
846
|
+
"indoc",
|
|
847
|
+
"libc",
|
|
848
|
+
"memoffset",
|
|
849
|
+
"once_cell",
|
|
850
|
+
"portable-atomic",
|
|
851
|
+
"pyo3-build-config",
|
|
852
|
+
"pyo3-ffi",
|
|
853
|
+
"pyo3-macros",
|
|
854
|
+
"unindent",
|
|
855
|
+
]
|
|
856
|
+
|
|
857
|
+
[[package]]
|
|
858
|
+
name = "pyo3-build-config"
|
|
859
|
+
version = "0.27.2"
|
|
860
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
861
|
+
checksum = "b455933107de8642b4487ed26d912c2d899dec6114884214a0b3bb3be9261ea6"
|
|
862
|
+
dependencies = [
|
|
863
|
+
"target-lexicon",
|
|
864
|
+
]
|
|
865
|
+
|
|
866
|
+
[[package]]
|
|
867
|
+
name = "pyo3-ffi"
|
|
868
|
+
version = "0.27.2"
|
|
869
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
870
|
+
checksum = "1c85c9cbfaddf651b1221594209aed57e9e5cff63c4d11d1feead529b872a089"
|
|
871
|
+
dependencies = [
|
|
872
|
+
"libc",
|
|
873
|
+
"pyo3-build-config",
|
|
874
|
+
]
|
|
875
|
+
|
|
876
|
+
[[package]]
|
|
877
|
+
name = "pyo3-macros"
|
|
878
|
+
version = "0.27.2"
|
|
879
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
880
|
+
checksum = "0a5b10c9bf9888125d917fb4d2ca2d25c8df94c7ab5a52e13313a07e050a3b02"
|
|
881
|
+
dependencies = [
|
|
882
|
+
"proc-macro2",
|
|
883
|
+
"pyo3-macros-backend",
|
|
884
|
+
"quote",
|
|
885
|
+
"syn",
|
|
886
|
+
]
|
|
887
|
+
|
|
888
|
+
[[package]]
|
|
889
|
+
name = "pyo3-macros-backend"
|
|
890
|
+
version = "0.27.2"
|
|
891
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
892
|
+
checksum = "03b51720d314836e53327f5871d4c0cfb4fb37cc2c4a11cc71907a86342c40f9"
|
|
893
|
+
dependencies = [
|
|
894
|
+
"heck",
|
|
895
|
+
"proc-macro2",
|
|
896
|
+
"pyo3-build-config",
|
|
897
|
+
"quote",
|
|
898
|
+
"syn",
|
|
899
|
+
]
|
|
900
|
+
|
|
901
|
+
[[package]]
|
|
902
|
+
name = "pythonize"
|
|
903
|
+
version = "0.27.0"
|
|
904
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
905
|
+
checksum = "a3a8f29db331e28c332c63496cfcbb822aca3d7320bc08b655d7fd0c29c50ede"
|
|
906
|
+
dependencies = [
|
|
907
|
+
"pyo3",
|
|
908
|
+
"serde",
|
|
909
|
+
]
|
|
910
|
+
|
|
911
|
+
[[package]]
|
|
912
|
+
name = "quote"
|
|
913
|
+
version = "1.0.45"
|
|
914
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
915
|
+
checksum = "41f2619966050689382d2b44f664f4bc593e129785a36d6ee376ddf37259b924"
|
|
916
|
+
dependencies = [
|
|
917
|
+
"proc-macro2",
|
|
918
|
+
]
|
|
919
|
+
|
|
920
|
+
[[package]]
|
|
921
|
+
name = "r-efi"
|
|
922
|
+
version = "5.3.0"
|
|
923
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
924
|
+
checksum = "69cdb34c158ceb288df11e18b4bd39de994f6657d83847bdffdbd7f346754b0f"
|
|
925
|
+
|
|
926
|
+
[[package]]
|
|
927
|
+
name = "rayon"
|
|
928
|
+
version = "1.12.0"
|
|
929
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
930
|
+
checksum = "fb39b166781f92d482534ef4b4b1b2568f42613b53e5b6c160e24cfbfa30926d"
|
|
931
|
+
dependencies = [
|
|
932
|
+
"either",
|
|
933
|
+
"rayon-core",
|
|
934
|
+
]
|
|
935
|
+
|
|
936
|
+
[[package]]
|
|
937
|
+
name = "rayon-core"
|
|
938
|
+
version = "1.13.0"
|
|
939
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
940
|
+
checksum = "22e18b0f0062d30d4230b2e85ff77fdfe4326feb054b9783a3460d8435c8ab91"
|
|
941
|
+
dependencies = [
|
|
942
|
+
"crossbeam-deque",
|
|
943
|
+
"crossbeam-utils",
|
|
944
|
+
]
|
|
945
|
+
|
|
946
|
+
[[package]]
|
|
947
|
+
name = "regex-automata"
|
|
948
|
+
version = "0.3.9"
|
|
949
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
950
|
+
checksum = "59b23e92ee4318893fa3fe3e6fb365258efbfe6ac6ab30f090cdcbb7aa37efa9"
|
|
951
|
+
dependencies = [
|
|
952
|
+
"aho-corasick",
|
|
953
|
+
"memchr",
|
|
954
|
+
"regex-syntax 0.7.5",
|
|
955
|
+
]
|
|
956
|
+
|
|
957
|
+
[[package]]
|
|
958
|
+
name = "regex-syntax"
|
|
959
|
+
version = "0.7.5"
|
|
960
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
961
|
+
checksum = "dbb5fb1acd8a1a18b3dd5be62d25485eb770e05afb408a9627d14d451bae12da"
|
|
962
|
+
|
|
963
|
+
[[package]]
|
|
964
|
+
name = "regex-syntax"
|
|
965
|
+
version = "0.8.8"
|
|
966
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
967
|
+
checksum = "7a2d987857b319362043e95f5353c0535c1f58eec5336fdfcf626430af7def58"
|
|
968
|
+
|
|
969
|
+
[[package]]
|
|
970
|
+
name = "rustc_version"
|
|
971
|
+
version = "0.4.1"
|
|
972
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
973
|
+
checksum = "cfcb3a22ef46e85b45de6ee7e79d063319ebb6594faafcf1c225ea92ab6e9b92"
|
|
974
|
+
dependencies = [
|
|
975
|
+
"semver",
|
|
976
|
+
]
|
|
977
|
+
|
|
978
|
+
[[package]]
|
|
979
|
+
name = "rustix"
|
|
980
|
+
version = "1.1.2"
|
|
981
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
982
|
+
checksum = "cd15f8a2c5551a84d56efdc1cd049089e409ac19a3072d5037a17fd70719ff3e"
|
|
983
|
+
dependencies = [
|
|
984
|
+
"bitflags",
|
|
985
|
+
"errno",
|
|
986
|
+
"libc",
|
|
987
|
+
"linux-raw-sys",
|
|
988
|
+
"windows-sys 0.61.2",
|
|
989
|
+
]
|
|
990
|
+
|
|
991
|
+
[[package]]
|
|
992
|
+
name = "rustversion"
|
|
993
|
+
version = "1.0.22"
|
|
994
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
995
|
+
checksum = "b39cdef0fa800fc44525c84ccb54a029961a8215f9619753635a9c0d2538d46d"
|
|
996
|
+
|
|
997
|
+
[[package]]
|
|
998
|
+
name = "ryu"
|
|
999
|
+
version = "1.0.20"
|
|
1000
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1001
|
+
checksum = "28d3b2b1366ec20994f1fd18c3c594f05c5dd4bc44d8bb0c1c632c8d6829481f"
|
|
1002
|
+
|
|
1003
|
+
[[package]]
|
|
1004
|
+
name = "semver"
|
|
1005
|
+
version = "1.0.27"
|
|
1006
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1007
|
+
checksum = "d767eb0aabc880b29956c35734170f26ed551a859dbd361d140cdbeca61ab1e2"
|
|
1008
|
+
|
|
1009
|
+
[[package]]
|
|
1010
|
+
name = "seq-macro"
|
|
1011
|
+
version = "0.3.6"
|
|
1012
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1013
|
+
checksum = "1bc711410fbe7399f390ca1c3b60ad0f53f80e95c5eb935e52268a0e2cd49acc"
|
|
1014
|
+
|
|
1015
|
+
[[package]]
|
|
1016
|
+
name = "serde"
|
|
1017
|
+
version = "1.0.219"
|
|
1018
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1019
|
+
checksum = "5f0e2c6ed6606019b4e29e69dbaba95b11854410e5347d525002456dbbb786b6"
|
|
1020
|
+
dependencies = [
|
|
1021
|
+
"serde_derive",
|
|
1022
|
+
]
|
|
1023
|
+
|
|
1024
|
+
[[package]]
|
|
1025
|
+
name = "serde-wasm-bindgen"
|
|
1026
|
+
version = "0.6.5"
|
|
1027
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1028
|
+
checksum = "8302e169f0eddcc139c70f139d19d6467353af16f9fce27e8c30158036a1e16b"
|
|
1029
|
+
dependencies = [
|
|
1030
|
+
"js-sys",
|
|
1031
|
+
"serde",
|
|
1032
|
+
"wasm-bindgen",
|
|
1033
|
+
]
|
|
1034
|
+
|
|
1035
|
+
[[package]]
|
|
1036
|
+
name = "serde_derive"
|
|
1037
|
+
version = "1.0.219"
|
|
1038
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1039
|
+
checksum = "5b0276cf7f2c73365f7157c8123c21cd9a50fbbd844757af28ca1f5925fc2a00"
|
|
1040
|
+
dependencies = [
|
|
1041
|
+
"proc-macro2",
|
|
1042
|
+
"quote",
|
|
1043
|
+
"syn",
|
|
1044
|
+
]
|
|
1045
|
+
|
|
1046
|
+
[[package]]
|
|
1047
|
+
name = "serde_derive_internals"
|
|
1048
|
+
version = "0.29.1"
|
|
1049
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1050
|
+
checksum = "18d26a20a969b9e3fdf2fc2d9f21eda6c40e2de84c9408bb5d3b05d499aae711"
|
|
1051
|
+
dependencies = [
|
|
1052
|
+
"proc-macro2",
|
|
1053
|
+
"quote",
|
|
1054
|
+
"syn",
|
|
1055
|
+
]
|
|
1056
|
+
|
|
1057
|
+
[[package]]
|
|
1058
|
+
name = "serde_json"
|
|
1059
|
+
version = "1.0.143"
|
|
1060
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1061
|
+
checksum = "d401abef1d108fbd9cbaebc3e46611f4b1021f714a0597a71f41ee463f5f4a5a"
|
|
1062
|
+
dependencies = [
|
|
1063
|
+
"itoa",
|
|
1064
|
+
"memchr",
|
|
1065
|
+
"ryu",
|
|
1066
|
+
"serde",
|
|
1067
|
+
]
|
|
1068
|
+
|
|
1069
|
+
[[package]]
|
|
1070
|
+
name = "serde_spanned"
|
|
1071
|
+
version = "1.0.0"
|
|
1072
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1073
|
+
checksum = "40734c41988f7306bb04f0ecf60ec0f3f1caa34290e4e8ea471dcd3346483b83"
|
|
1074
|
+
dependencies = [
|
|
1075
|
+
"serde",
|
|
1076
|
+
]
|
|
1077
|
+
|
|
1078
|
+
[[package]]
|
|
1079
|
+
name = "serde_yaml"
|
|
1080
|
+
version = "0.9.34+deprecated"
|
|
1081
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1082
|
+
checksum = "6a8b1a1a2ebf674015cc02edccce75287f1a0130d394307b36743c2f5d504b47"
|
|
1083
|
+
dependencies = [
|
|
1084
|
+
"indexmap",
|
|
1085
|
+
"itoa",
|
|
1086
|
+
"ryu",
|
|
1087
|
+
"serde",
|
|
1088
|
+
"unsafe-libyaml",
|
|
1089
|
+
]
|
|
1090
|
+
|
|
1091
|
+
[[package]]
|
|
1092
|
+
name = "shlex"
|
|
1093
|
+
version = "1.3.0"
|
|
1094
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1095
|
+
checksum = "0fda2ff0d084019ba4d7c6f371c95d8fd75ce3524c3cb8fb653a3023f6323e64"
|
|
1096
|
+
|
|
1097
|
+
[[package]]
|
|
1098
|
+
name = "simd-adler32"
|
|
1099
|
+
version = "0.3.9"
|
|
1100
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1101
|
+
checksum = "703d5c7ef118737c72f1af64ad2f6f8c5e1921f818cdcb97b8fe6fc69bf66214"
|
|
1102
|
+
|
|
1103
|
+
[[package]]
|
|
1104
|
+
name = "simdutf8"
|
|
1105
|
+
version = "0.1.5"
|
|
1106
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1107
|
+
checksum = "e3a9fe34e3e7a50316060351f37187a3f546bce95496156754b601a5fa71b76e"
|
|
1108
|
+
|
|
1109
|
+
[[package]]
|
|
1110
|
+
name = "slotmap"
|
|
1111
|
+
version = "1.0.7"
|
|
1112
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1113
|
+
checksum = "dbff4acf519f630b3a3ddcfaea6c06b42174d9a44bc70c620e9ed1649d58b82a"
|
|
1114
|
+
dependencies = [
|
|
1115
|
+
"version_check",
|
|
1116
|
+
]
|
|
1117
|
+
|
|
1118
|
+
[[package]]
|
|
1119
|
+
name = "snap"
|
|
1120
|
+
version = "1.1.1"
|
|
1121
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1122
|
+
checksum = "1b6b67fb9a61334225b5b790716f609cd58395f895b3fe8b328786812a40bc3b"
|
|
1123
|
+
|
|
1124
|
+
[[package]]
|
|
1125
|
+
name = "stacker"
|
|
1126
|
+
version = "0.1.21"
|
|
1127
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1128
|
+
checksum = "cddb07e32ddb770749da91081d8d0ac3a16f1a569a18b20348cd371f5dead06b"
|
|
1129
|
+
dependencies = [
|
|
1130
|
+
"cc",
|
|
1131
|
+
"cfg-if",
|
|
1132
|
+
"libc",
|
|
1133
|
+
"psm",
|
|
1134
|
+
"windows-sys 0.59.0",
|
|
1135
|
+
]
|
|
1136
|
+
|
|
1137
|
+
[[package]]
|
|
1138
|
+
name = "strsim"
|
|
1139
|
+
version = "0.11.1"
|
|
1140
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1141
|
+
checksum = "7da8b5736845d9f2fcb837ea5d9e2628564b3b043a70948a3f0b778838c5fb4f"
|
|
1142
|
+
|
|
1143
|
+
[[package]]
|
|
1144
|
+
name = "syn"
|
|
1145
|
+
version = "2.0.117"
|
|
1146
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1147
|
+
checksum = "e665b8803e7b1d2a727f4023456bbbbe74da67099c585258af0ad9c5013b9b99"
|
|
1148
|
+
dependencies = [
|
|
1149
|
+
"proc-macro2",
|
|
1150
|
+
"quote",
|
|
1151
|
+
"unicode-ident",
|
|
1152
|
+
]
|
|
1153
|
+
|
|
1154
|
+
[[package]]
|
|
1155
|
+
name = "target-lexicon"
|
|
1156
|
+
version = "0.13.4"
|
|
1157
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1158
|
+
checksum = "b1dd07eb858a2067e2f3c7155d54e929265c264e6f37efe3ee7a8d1b5a1dd0ba"
|
|
1159
|
+
|
|
1160
|
+
[[package]]
|
|
1161
|
+
name = "target-triple"
|
|
1162
|
+
version = "1.0.0"
|
|
1163
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1164
|
+
checksum = "591ef38edfb78ca4771ee32cf494cb8771944bee237a9b91fc9c1424ac4b777b"
|
|
1165
|
+
|
|
1166
|
+
[[package]]
|
|
1167
|
+
name = "tempfile"
|
|
1168
|
+
version = "3.23.0"
|
|
1169
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1170
|
+
checksum = "2d31c77bdf42a745371d260a26ca7163f1e0924b64afa0b688e61b5a9fa02f16"
|
|
1171
|
+
dependencies = [
|
|
1172
|
+
"fastrand",
|
|
1173
|
+
"getrandom 0.3.4",
|
|
1174
|
+
"once_cell",
|
|
1175
|
+
"rustix",
|
|
1176
|
+
"windows-sys 0.61.2",
|
|
1177
|
+
]
|
|
1178
|
+
|
|
1179
|
+
[[package]]
|
|
1180
|
+
name = "termcolor"
|
|
1181
|
+
version = "1.4.1"
|
|
1182
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1183
|
+
checksum = "06794f8f6c5c898b3275aebefa6b8a1cb24cd2c6c79397ab15774837a0bc5755"
|
|
1184
|
+
dependencies = [
|
|
1185
|
+
"winapi-util",
|
|
1186
|
+
]
|
|
1187
|
+
|
|
1188
|
+
[[package]]
|
|
1189
|
+
name = "texform"
|
|
1190
|
+
version = "0.2.0"
|
|
1191
|
+
dependencies = [
|
|
1192
|
+
"serde",
|
|
1193
|
+
"serde_json",
|
|
1194
|
+
"texform-argspec",
|
|
1195
|
+
"texform-core",
|
|
1196
|
+
"texform-interface",
|
|
1197
|
+
"texform-knowledge",
|
|
1198
|
+
"texform-transform",
|
|
1199
|
+
]
|
|
1200
|
+
|
|
1201
|
+
[[package]]
|
|
1202
|
+
name = "texform-argspec"
|
|
1203
|
+
version = "0.2.0"
|
|
1204
|
+
dependencies = [
|
|
1205
|
+
"texform-interface",
|
|
1206
|
+
]
|
|
1207
|
+
|
|
1208
|
+
[[package]]
|
|
1209
|
+
name = "texform-core"
|
|
1210
|
+
version = "0.2.0"
|
|
1211
|
+
dependencies = [
|
|
1212
|
+
"ariadne",
|
|
1213
|
+
"chumsky",
|
|
1214
|
+
"logos",
|
|
1215
|
+
"serde",
|
|
1216
|
+
"serde_json",
|
|
1217
|
+
"slotmap",
|
|
1218
|
+
"texform-argspec",
|
|
1219
|
+
"texform-interface",
|
|
1220
|
+
"texform-knowledge",
|
|
1221
|
+
"tsify-next",
|
|
1222
|
+
"wasm-bindgen",
|
|
1223
|
+
]
|
|
1224
|
+
|
|
1225
|
+
[[package]]
|
|
1226
|
+
name = "texform-interface"
|
|
1227
|
+
version = "0.2.0"
|
|
1228
|
+
dependencies = [
|
|
1229
|
+
"serde",
|
|
1230
|
+
"serde_json",
|
|
1231
|
+
"tsify-next",
|
|
1232
|
+
"wasm-bindgen",
|
|
1233
|
+
]
|
|
1234
|
+
|
|
1235
|
+
[[package]]
|
|
1236
|
+
name = "texform-knowledge"
|
|
1237
|
+
version = "0.2.0"
|
|
1238
|
+
dependencies = [
|
|
1239
|
+
"serde",
|
|
1240
|
+
"serde_yaml",
|
|
1241
|
+
"texform-argspec",
|
|
1242
|
+
"texform-knowledge-macros",
|
|
1243
|
+
"trybuild",
|
|
1244
|
+
]
|
|
1245
|
+
|
|
1246
|
+
[[package]]
|
|
1247
|
+
name = "texform-knowledge-macros"
|
|
1248
|
+
version = "0.2.0"
|
|
1249
|
+
dependencies = [
|
|
1250
|
+
"proc-macro2",
|
|
1251
|
+
"quote",
|
|
1252
|
+
"syn",
|
|
1253
|
+
"texform-argspec",
|
|
1254
|
+
]
|
|
1255
|
+
|
|
1256
|
+
[[package]]
|
|
1257
|
+
name = "texform-python"
|
|
1258
|
+
version = "0.2.0"
|
|
1259
|
+
dependencies = [
|
|
1260
|
+
"pyo3",
|
|
1261
|
+
"pythonize",
|
|
1262
|
+
"serde_json",
|
|
1263
|
+
"texform",
|
|
1264
|
+
]
|
|
1265
|
+
|
|
1266
|
+
[[package]]
|
|
1267
|
+
name = "texform-regression"
|
|
1268
|
+
version = "0.2.0"
|
|
1269
|
+
dependencies = [
|
|
1270
|
+
"arrow-array",
|
|
1271
|
+
"arrow-schema",
|
|
1272
|
+
"clap",
|
|
1273
|
+
"parquet",
|
|
1274
|
+
"rayon",
|
|
1275
|
+
"serde",
|
|
1276
|
+
"serde_json",
|
|
1277
|
+
"serde_yaml",
|
|
1278
|
+
"tempfile",
|
|
1279
|
+
"texform",
|
|
1280
|
+
"texform-core",
|
|
1281
|
+
"texform-interface",
|
|
1282
|
+
"texform-knowledge",
|
|
1283
|
+
"texform-transform",
|
|
1284
|
+
]
|
|
1285
|
+
|
|
1286
|
+
[[package]]
|
|
1287
|
+
name = "texform-transform"
|
|
1288
|
+
version = "0.2.0"
|
|
1289
|
+
dependencies = [
|
|
1290
|
+
"serde",
|
|
1291
|
+
"serde_yaml",
|
|
1292
|
+
"texform-core",
|
|
1293
|
+
"texform-interface",
|
|
1294
|
+
"texform-knowledge",
|
|
1295
|
+
]
|
|
1296
|
+
|
|
1297
|
+
[[package]]
|
|
1298
|
+
name = "texform-wasm"
|
|
1299
|
+
version = "0.2.0"
|
|
1300
|
+
dependencies = [
|
|
1301
|
+
"js-sys",
|
|
1302
|
+
"serde",
|
|
1303
|
+
"serde-wasm-bindgen",
|
|
1304
|
+
"serde_json",
|
|
1305
|
+
"texform",
|
|
1306
|
+
"texform-argspec",
|
|
1307
|
+
"texform-core",
|
|
1308
|
+
"tsify-next",
|
|
1309
|
+
"wasm-bindgen",
|
|
1310
|
+
]
|
|
1311
|
+
|
|
1312
|
+
[[package]]
|
|
1313
|
+
name = "thrift"
|
|
1314
|
+
version = "0.17.0"
|
|
1315
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1316
|
+
checksum = "7e54bc85fc7faa8bc175c4bab5b92ba8d9a3ce893d0e9f42cc455c8ab16a9e09"
|
|
1317
|
+
dependencies = [
|
|
1318
|
+
"byteorder",
|
|
1319
|
+
"integer-encoding",
|
|
1320
|
+
"ordered-float",
|
|
1321
|
+
]
|
|
1322
|
+
|
|
1323
|
+
[[package]]
|
|
1324
|
+
name = "tiny-keccak"
|
|
1325
|
+
version = "2.0.2"
|
|
1326
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1327
|
+
checksum = "2c9d3793400a45f954c52e73d068316d76b6f4e36977e3fcebb13a2721e80237"
|
|
1328
|
+
dependencies = [
|
|
1329
|
+
"crunchy",
|
|
1330
|
+
]
|
|
1331
|
+
|
|
1332
|
+
[[package]]
|
|
1333
|
+
name = "toml"
|
|
1334
|
+
version = "0.9.5"
|
|
1335
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1336
|
+
checksum = "75129e1dc5000bfbaa9fee9d1b21f974f9fbad9daec557a521ee6e080825f6e8"
|
|
1337
|
+
dependencies = [
|
|
1338
|
+
"indexmap",
|
|
1339
|
+
"serde",
|
|
1340
|
+
"serde_spanned",
|
|
1341
|
+
"toml_datetime",
|
|
1342
|
+
"toml_parser",
|
|
1343
|
+
"toml_writer",
|
|
1344
|
+
"winnow 0.7.15",
|
|
1345
|
+
]
|
|
1346
|
+
|
|
1347
|
+
[[package]]
|
|
1348
|
+
name = "toml_datetime"
|
|
1349
|
+
version = "0.7.0"
|
|
1350
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1351
|
+
checksum = "bade1c3e902f58d73d3f294cd7f20391c1cb2fbcb643b73566bc773971df91e3"
|
|
1352
|
+
dependencies = [
|
|
1353
|
+
"serde",
|
|
1354
|
+
]
|
|
1355
|
+
|
|
1356
|
+
[[package]]
|
|
1357
|
+
name = "toml_parser"
|
|
1358
|
+
version = "1.1.1+spec-1.1.0"
|
|
1359
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1360
|
+
checksum = "39ca317ebc49f06bd748bfba29533eac9485569dc9bf80b849024b025e814fb9"
|
|
1361
|
+
dependencies = [
|
|
1362
|
+
"winnow 1.0.1",
|
|
1363
|
+
]
|
|
1364
|
+
|
|
1365
|
+
[[package]]
|
|
1366
|
+
name = "toml_writer"
|
|
1367
|
+
version = "1.1.1+spec-1.1.0"
|
|
1368
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1369
|
+
checksum = "756daf9b1013ebe47a8776667b466417e2d4c5679d441c26230efd9ef78692db"
|
|
1370
|
+
|
|
1371
|
+
[[package]]
|
|
1372
|
+
name = "trybuild"
|
|
1373
|
+
version = "1.0.115"
|
|
1374
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1375
|
+
checksum = "5f614c21bd3a61bad9501d75cbb7686f00386c806d7f456778432c25cf86948a"
|
|
1376
|
+
dependencies = [
|
|
1377
|
+
"glob",
|
|
1378
|
+
"serde",
|
|
1379
|
+
"serde_derive",
|
|
1380
|
+
"serde_json",
|
|
1381
|
+
"target-triple",
|
|
1382
|
+
"termcolor",
|
|
1383
|
+
"toml",
|
|
1384
|
+
]
|
|
1385
|
+
|
|
1386
|
+
[[package]]
|
|
1387
|
+
name = "tsify-next"
|
|
1388
|
+
version = "0.5.6"
|
|
1389
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1390
|
+
checksum = "7d0f2208feeb5f7a6edb15a2389c14cd42480ef6417318316bb866da5806a61d"
|
|
1391
|
+
dependencies = [
|
|
1392
|
+
"serde",
|
|
1393
|
+
"serde-wasm-bindgen",
|
|
1394
|
+
"tsify-next-macros",
|
|
1395
|
+
"wasm-bindgen",
|
|
1396
|
+
]
|
|
1397
|
+
|
|
1398
|
+
[[package]]
|
|
1399
|
+
name = "tsify-next-macros"
|
|
1400
|
+
version = "0.5.6"
|
|
1401
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1402
|
+
checksum = "f81253930d0d388a3ab8fa4ae56da9973ab171ef833d1be2e9080fc3ce502bd6"
|
|
1403
|
+
dependencies = [
|
|
1404
|
+
"proc-macro2",
|
|
1405
|
+
"quote",
|
|
1406
|
+
"serde_derive_internals",
|
|
1407
|
+
"syn",
|
|
1408
|
+
]
|
|
1409
|
+
|
|
1410
|
+
[[package]]
|
|
1411
|
+
name = "twox-hash"
|
|
1412
|
+
version = "2.1.2"
|
|
1413
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1414
|
+
checksum = "9ea3136b675547379c4bd395ca6b938e5ad3c3d20fad76e7fe85f9e0d011419c"
|
|
1415
|
+
|
|
1416
|
+
[[package]]
|
|
1417
|
+
name = "unicode-ident"
|
|
1418
|
+
version = "1.0.18"
|
|
1419
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1420
|
+
checksum = "5a5f39404a5da50712a4c1eecf25e90dd62b613502b7e925fd4e4d19b5c96512"
|
|
1421
|
+
|
|
1422
|
+
[[package]]
|
|
1423
|
+
name = "unicode-segmentation"
|
|
1424
|
+
version = "1.12.0"
|
|
1425
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1426
|
+
checksum = "f6ccf251212114b54433ec949fd6a7841275f9ada20dddd2f29e9ceea4501493"
|
|
1427
|
+
|
|
1428
|
+
[[package]]
|
|
1429
|
+
name = "unicode-width"
|
|
1430
|
+
version = "0.1.14"
|
|
1431
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1432
|
+
checksum = "7dd6e30e90baa6f72411720665d41d89b9a3d039dc45b8faea1ddd07f617f6af"
|
|
1433
|
+
|
|
1434
|
+
[[package]]
|
|
1435
|
+
name = "unindent"
|
|
1436
|
+
version = "0.2.4"
|
|
1437
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1438
|
+
checksum = "7264e107f553ccae879d21fbea1d6724ac785e8c3bfc762137959b5802826ef3"
|
|
1439
|
+
|
|
1440
|
+
[[package]]
|
|
1441
|
+
name = "unsafe-libyaml"
|
|
1442
|
+
version = "0.2.11"
|
|
1443
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1444
|
+
checksum = "673aac59facbab8a9007c7f6108d11f63b603f7cabff99fabf650fea5c32b861"
|
|
1445
|
+
|
|
1446
|
+
[[package]]
|
|
1447
|
+
name = "utf8parse"
|
|
1448
|
+
version = "0.2.2"
|
|
1449
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1450
|
+
checksum = "06abde3611657adf66d383f00b093d7faecc7fa57071cce2578660c9f1010821"
|
|
1451
|
+
|
|
1452
|
+
[[package]]
|
|
1453
|
+
name = "version_check"
|
|
1454
|
+
version = "0.9.5"
|
|
1455
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1456
|
+
checksum = "0b928f33d975fc6ad9f86c8f283853ad26bdd5b10b7f1542aa2fa15e2289105a"
|
|
1457
|
+
|
|
1458
|
+
[[package]]
|
|
1459
|
+
name = "wasi"
|
|
1460
|
+
version = "0.11.1+wasi-snapshot-preview1"
|
|
1461
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1462
|
+
checksum = "ccf3ec651a847eb01de73ccad15eb7d99f80485de043efb2f370cd654f4ea44b"
|
|
1463
|
+
|
|
1464
|
+
[[package]]
|
|
1465
|
+
name = "wasip2"
|
|
1466
|
+
version = "1.0.2+wasi-0.2.9"
|
|
1467
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1468
|
+
checksum = "9517f9239f02c069db75e65f174b3da828fe5f5b945c4dd26bd25d89c03ebcf5"
|
|
1469
|
+
dependencies = [
|
|
1470
|
+
"wit-bindgen",
|
|
1471
|
+
]
|
|
1472
|
+
|
|
1473
|
+
[[package]]
|
|
1474
|
+
name = "wasm-bindgen"
|
|
1475
|
+
version = "0.2.108"
|
|
1476
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1477
|
+
checksum = "64024a30ec1e37399cf85a7ffefebdb72205ca1c972291c51512360d90bd8566"
|
|
1478
|
+
dependencies = [
|
|
1479
|
+
"cfg-if",
|
|
1480
|
+
"once_cell",
|
|
1481
|
+
"rustversion",
|
|
1482
|
+
"wasm-bindgen-macro",
|
|
1483
|
+
"wasm-bindgen-shared",
|
|
1484
|
+
]
|
|
1485
|
+
|
|
1486
|
+
[[package]]
|
|
1487
|
+
name = "wasm-bindgen-macro"
|
|
1488
|
+
version = "0.2.108"
|
|
1489
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1490
|
+
checksum = "008b239d9c740232e71bd39e8ef6429d27097518b6b30bdf9086833bd5b6d608"
|
|
1491
|
+
dependencies = [
|
|
1492
|
+
"quote",
|
|
1493
|
+
"wasm-bindgen-macro-support",
|
|
1494
|
+
]
|
|
1495
|
+
|
|
1496
|
+
[[package]]
|
|
1497
|
+
name = "wasm-bindgen-macro-support"
|
|
1498
|
+
version = "0.2.108"
|
|
1499
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1500
|
+
checksum = "5256bae2d58f54820e6490f9839c49780dff84c65aeab9e772f15d5f0e913a55"
|
|
1501
|
+
dependencies = [
|
|
1502
|
+
"bumpalo",
|
|
1503
|
+
"proc-macro2",
|
|
1504
|
+
"quote",
|
|
1505
|
+
"syn",
|
|
1506
|
+
"wasm-bindgen-shared",
|
|
1507
|
+
]
|
|
1508
|
+
|
|
1509
|
+
[[package]]
|
|
1510
|
+
name = "wasm-bindgen-shared"
|
|
1511
|
+
version = "0.2.108"
|
|
1512
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1513
|
+
checksum = "1f01b580c9ac74c8d8f0c0e4afb04eeef2acf145458e52c03845ee9cd23e3d12"
|
|
1514
|
+
dependencies = [
|
|
1515
|
+
"unicode-ident",
|
|
1516
|
+
]
|
|
1517
|
+
|
|
1518
|
+
[[package]]
|
|
1519
|
+
name = "winapi-util"
|
|
1520
|
+
version = "0.1.11"
|
|
1521
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1522
|
+
checksum = "c2a7b1c03c876122aa43f3020e6c3c3ee5c05081c9a00739faf7503aeba10d22"
|
|
1523
|
+
dependencies = [
|
|
1524
|
+
"windows-sys 0.61.2",
|
|
1525
|
+
]
|
|
1526
|
+
|
|
1527
|
+
[[package]]
|
|
1528
|
+
name = "windows-core"
|
|
1529
|
+
version = "0.62.2"
|
|
1530
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1531
|
+
checksum = "b8e83a14d34d0623b51dce9581199302a221863196a1dde71a7663a4c2be9deb"
|
|
1532
|
+
dependencies = [
|
|
1533
|
+
"windows-implement",
|
|
1534
|
+
"windows-interface",
|
|
1535
|
+
"windows-link",
|
|
1536
|
+
"windows-result",
|
|
1537
|
+
"windows-strings",
|
|
1538
|
+
]
|
|
1539
|
+
|
|
1540
|
+
[[package]]
|
|
1541
|
+
name = "windows-implement"
|
|
1542
|
+
version = "0.60.2"
|
|
1543
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1544
|
+
checksum = "053e2e040ab57b9dc951b72c264860db7eb3b0200ba345b4e4c3b14f67855ddf"
|
|
1545
|
+
dependencies = [
|
|
1546
|
+
"proc-macro2",
|
|
1547
|
+
"quote",
|
|
1548
|
+
"syn",
|
|
1549
|
+
]
|
|
1550
|
+
|
|
1551
|
+
[[package]]
|
|
1552
|
+
name = "windows-interface"
|
|
1553
|
+
version = "0.59.3"
|
|
1554
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1555
|
+
checksum = "3f316c4a2570ba26bbec722032c4099d8c8bc095efccdc15688708623367e358"
|
|
1556
|
+
dependencies = [
|
|
1557
|
+
"proc-macro2",
|
|
1558
|
+
"quote",
|
|
1559
|
+
"syn",
|
|
1560
|
+
]
|
|
1561
|
+
|
|
1562
|
+
[[package]]
|
|
1563
|
+
name = "windows-link"
|
|
1564
|
+
version = "0.2.1"
|
|
1565
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1566
|
+
checksum = "f0805222e57f7521d6a62e36fa9163bc891acd422f971defe97d64e70d0a4fe5"
|
|
1567
|
+
|
|
1568
|
+
[[package]]
|
|
1569
|
+
name = "windows-result"
|
|
1570
|
+
version = "0.4.1"
|
|
1571
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1572
|
+
checksum = "7781fa89eaf60850ac3d2da7af8e5242a5ea78d1a11c49bf2910bb5a73853eb5"
|
|
1573
|
+
dependencies = [
|
|
1574
|
+
"windows-link",
|
|
1575
|
+
]
|
|
1576
|
+
|
|
1577
|
+
[[package]]
|
|
1578
|
+
name = "windows-strings"
|
|
1579
|
+
version = "0.5.1"
|
|
1580
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1581
|
+
checksum = "7837d08f69c77cf6b07689544538e017c1bfcf57e34b4c0ff58e6c2cd3b37091"
|
|
1582
|
+
dependencies = [
|
|
1583
|
+
"windows-link",
|
|
1584
|
+
]
|
|
1585
|
+
|
|
1586
|
+
[[package]]
|
|
1587
|
+
name = "windows-sys"
|
|
1588
|
+
version = "0.59.0"
|
|
1589
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1590
|
+
checksum = "1e38bc4d79ed67fd075bcc251a1c39b32a1776bbe92e5bef1f0bf1f8c531853b"
|
|
1591
|
+
dependencies = [
|
|
1592
|
+
"windows-targets",
|
|
1593
|
+
]
|
|
1594
|
+
|
|
1595
|
+
[[package]]
|
|
1596
|
+
name = "windows-sys"
|
|
1597
|
+
version = "0.61.2"
|
|
1598
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1599
|
+
checksum = "ae137229bcbd6cdf0f7b80a31df61766145077ddf49416a728b02cb3921ff3fc"
|
|
1600
|
+
dependencies = [
|
|
1601
|
+
"windows-link",
|
|
1602
|
+
]
|
|
1603
|
+
|
|
1604
|
+
[[package]]
|
|
1605
|
+
name = "windows-targets"
|
|
1606
|
+
version = "0.52.6"
|
|
1607
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1608
|
+
checksum = "9b724f72796e036ab90c1021d4780d4d3d648aca59e491e6b98e725b84e99973"
|
|
1609
|
+
dependencies = [
|
|
1610
|
+
"windows_aarch64_gnullvm",
|
|
1611
|
+
"windows_aarch64_msvc",
|
|
1612
|
+
"windows_i686_gnu",
|
|
1613
|
+
"windows_i686_gnullvm",
|
|
1614
|
+
"windows_i686_msvc",
|
|
1615
|
+
"windows_x86_64_gnu",
|
|
1616
|
+
"windows_x86_64_gnullvm",
|
|
1617
|
+
"windows_x86_64_msvc",
|
|
1618
|
+
]
|
|
1619
|
+
|
|
1620
|
+
[[package]]
|
|
1621
|
+
name = "windows_aarch64_gnullvm"
|
|
1622
|
+
version = "0.52.6"
|
|
1623
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1624
|
+
checksum = "32a4622180e7a0ec044bb555404c800bc9fd9ec262ec147edd5989ccd0c02cd3"
|
|
1625
|
+
|
|
1626
|
+
[[package]]
|
|
1627
|
+
name = "windows_aarch64_msvc"
|
|
1628
|
+
version = "0.52.6"
|
|
1629
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1630
|
+
checksum = "09ec2a7bb152e2252b53fa7803150007879548bc709c039df7627cabbd05d469"
|
|
1631
|
+
|
|
1632
|
+
[[package]]
|
|
1633
|
+
name = "windows_i686_gnu"
|
|
1634
|
+
version = "0.52.6"
|
|
1635
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1636
|
+
checksum = "8e9b5ad5ab802e97eb8e295ac6720e509ee4c243f69d781394014ebfe8bbfa0b"
|
|
1637
|
+
|
|
1638
|
+
[[package]]
|
|
1639
|
+
name = "windows_i686_gnullvm"
|
|
1640
|
+
version = "0.52.6"
|
|
1641
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1642
|
+
checksum = "0eee52d38c090b3caa76c563b86c3a4bd71ef1a819287c19d586d7334ae8ed66"
|
|
1643
|
+
|
|
1644
|
+
[[package]]
|
|
1645
|
+
name = "windows_i686_msvc"
|
|
1646
|
+
version = "0.52.6"
|
|
1647
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1648
|
+
checksum = "240948bc05c5e7c6dabba28bf89d89ffce3e303022809e73deaefe4f6ec56c66"
|
|
1649
|
+
|
|
1650
|
+
[[package]]
|
|
1651
|
+
name = "windows_x86_64_gnu"
|
|
1652
|
+
version = "0.52.6"
|
|
1653
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1654
|
+
checksum = "147a5c80aabfbf0c7d901cb5895d1de30ef2907eb21fbbab29ca94c5b08b1a78"
|
|
1655
|
+
|
|
1656
|
+
[[package]]
|
|
1657
|
+
name = "windows_x86_64_gnullvm"
|
|
1658
|
+
version = "0.52.6"
|
|
1659
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1660
|
+
checksum = "24d5b23dc417412679681396f2b49f3de8c1473deb516bd34410872eff51ed0d"
|
|
1661
|
+
|
|
1662
|
+
[[package]]
|
|
1663
|
+
name = "windows_x86_64_msvc"
|
|
1664
|
+
version = "0.52.6"
|
|
1665
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1666
|
+
checksum = "589f6da84c646204747d1270a2a5661ea66ed1cced2631d546fdfb155959f9ec"
|
|
1667
|
+
|
|
1668
|
+
[[package]]
|
|
1669
|
+
name = "winnow"
|
|
1670
|
+
version = "0.7.15"
|
|
1671
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1672
|
+
checksum = "df79d97927682d2fd8adb29682d1140b343be4ac0f08fd68b7765d9c059d3945"
|
|
1673
|
+
|
|
1674
|
+
[[package]]
|
|
1675
|
+
name = "winnow"
|
|
1676
|
+
version = "1.0.1"
|
|
1677
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1678
|
+
checksum = "09dac053f1cd375980747450bfc7250c264eaae0583872e845c0c7cd578872b5"
|
|
1679
|
+
|
|
1680
|
+
[[package]]
|
|
1681
|
+
name = "wit-bindgen"
|
|
1682
|
+
version = "0.51.0"
|
|
1683
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1684
|
+
checksum = "d7249219f66ced02969388cf2bb044a09756a083d0fab1e566056b04d9fbcaa5"
|
|
1685
|
+
|
|
1686
|
+
[[package]]
|
|
1687
|
+
name = "yansi"
|
|
1688
|
+
version = "1.0.1"
|
|
1689
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1690
|
+
checksum = "cfe53a6657fd280eaa890a3bc59152892ffa3e30101319d168b781ed6529b049"
|
|
1691
|
+
|
|
1692
|
+
[[package]]
|
|
1693
|
+
name = "zerocopy"
|
|
1694
|
+
version = "0.8.48"
|
|
1695
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1696
|
+
checksum = "eed437bf9d6692032087e337407a86f04cd8d6a16a37199ed57949d415bd68e9"
|
|
1697
|
+
dependencies = [
|
|
1698
|
+
"zerocopy-derive",
|
|
1699
|
+
]
|
|
1700
|
+
|
|
1701
|
+
[[package]]
|
|
1702
|
+
name = "zerocopy-derive"
|
|
1703
|
+
version = "0.8.48"
|
|
1704
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1705
|
+
checksum = "70e3cd084b1788766f53af483dd21f93881ff30d7320490ec3ef7526d203bad4"
|
|
1706
|
+
dependencies = [
|
|
1707
|
+
"proc-macro2",
|
|
1708
|
+
"quote",
|
|
1709
|
+
"syn",
|
|
1710
|
+
]
|
|
1711
|
+
|
|
1712
|
+
[[package]]
|
|
1713
|
+
name = "zlib-rs"
|
|
1714
|
+
version = "0.6.3"
|
|
1715
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1716
|
+
checksum = "3be3d40e40a133f9c916ee3f9f4fa2d9d63435b5fbe1bfc6d9dae0aa0ada1513"
|
|
1717
|
+
|
|
1718
|
+
[[package]]
|
|
1719
|
+
name = "zstd"
|
|
1720
|
+
version = "0.13.3"
|
|
1721
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1722
|
+
checksum = "e91ee311a569c327171651566e07972200e76fcfe2242a4fa446149a3881c08a"
|
|
1723
|
+
dependencies = [
|
|
1724
|
+
"zstd-safe",
|
|
1725
|
+
]
|
|
1726
|
+
|
|
1727
|
+
[[package]]
|
|
1728
|
+
name = "zstd-safe"
|
|
1729
|
+
version = "7.2.4"
|
|
1730
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1731
|
+
checksum = "8f49c4d5f0abb602a93fb8736af2a4f4dd9512e36f7f570d66e65ff867ed3b9d"
|
|
1732
|
+
dependencies = [
|
|
1733
|
+
"zstd-sys",
|
|
1734
|
+
]
|
|
1735
|
+
|
|
1736
|
+
[[package]]
|
|
1737
|
+
name = "zstd-sys"
|
|
1738
|
+
version = "2.0.16+zstd.1.5.7"
|
|
1739
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1740
|
+
checksum = "91e19ebc2adc8f83e43039e79776e3fda8ca919132d68a1fed6a5faca2683748"
|
|
1741
|
+
dependencies = [
|
|
1742
|
+
"cc",
|
|
1743
|
+
"pkg-config",
|
|
1744
|
+
]
|