fprime-fpp-python 3.3.14__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.
- fprime_fpp_python-3.3.14/Cargo.lock +2185 -0
- fprime_fpp_python-3.3.14/Cargo.toml +20 -0
- fprime_fpp_python-3.3.14/PKG-INFO +248 -0
- fprime_fpp_python-3.3.14/README.md +231 -0
- fprime_fpp_python-3.3.14/fpp_analysis/Cargo.toml +26 -0
- fprime_fpp_python-3.3.14/fpp_analysis/src/analysis.rs +416 -0
- fprime_fpp_python-3.3.14/fpp_analysis/src/analyzers/analyzer.rs +7 -0
- fprime_fpp_python-3.3.14/fpp_analysis/src/analyzers/basic_use_analyzer.rs +301 -0
- fprime_fpp_python-3.3.14/fpp_analysis/src/analyzers/nested_analyzer.rs +96 -0
- fprime_fpp_python-3.3.14/fpp_analysis/src/analyzers/state_machine/mod.rs +11 -0
- fprime_fpp_python-3.3.14/fpp_analysis/src/analyzers/state_machine/sm_typed_element_analyzer.rs +138 -0
- fprime_fpp_python-3.3.14/fpp_analysis/src/analyzers/state_machine/state_machine_analysis_visitor.rs +146 -0
- fprime_fpp_python-3.3.14/fpp_analysis/src/analyzers/state_machine/state_machine_use_analyzer.rs +107 -0
- fprime_fpp_python-3.3.14/fpp_analysis/src/analyzers/state_machine/transition_expr_analyzer.rs +90 -0
- fprime_fpp_python-3.3.14/fpp_analysis/src/analyzers/use_analyzer.rs +58 -0
- fprime_fpp_python-3.3.14/fpp_analysis/src/errors.rs +1174 -0
- fprime_fpp_python-3.3.14/fpp_analysis/src/lib.rs +240 -0
- fprime_fpp_python-3.3.14/fpp_analysis/src/passes/build_spec_loc_map.rs +67 -0
- fprime_fpp_python-3.3.14/fpp_analysis/src/passes/check_component_defs.rs +225 -0
- fprime_fpp_python-3.3.14/fpp_analysis/src/passes/check_component_instance_defs.rs +107 -0
- fprime_fpp_python-3.3.14/fpp_analysis/src/passes/check_dictionary_defs.rs +124 -0
- fprime_fpp_python-3.3.14/fpp_analysis/src/passes/check_expr_types.rs +715 -0
- fprime_fpp_python-3.3.14/fpp_analysis/src/passes/check_framework_constant_values.rs +117 -0
- fprime_fpp_python-3.3.14/fpp_analysis/src/passes/check_framework_defs.rs +285 -0
- fprime_fpp_python-3.3.14/fpp_analysis/src/passes/check_interface_defs.rs +138 -0
- fprime_fpp_python-3.3.14/fpp_analysis/src/passes/check_port_defs.rs +36 -0
- fprime_fpp_python-3.3.14/fpp_analysis/src/passes/check_spec_locs.rs +187 -0
- fprime_fpp_python-3.3.14/fpp_analysis/src/passes/check_state_machine_defs.rs +48 -0
- fprime_fpp_python-3.3.14/fpp_analysis/src/passes/check_system_defs.rs +93 -0
- fprime_fpp_python-3.3.14/fpp_analysis/src/passes/check_tlm_packet_sets.rs +72 -0
- fprime_fpp_python-3.3.14/fpp_analysis/src/passes/check_topology_defs.rs +75 -0
- fprime_fpp_python-3.3.14/fpp_analysis/src/passes/check_topology_instances.rs +122 -0
- fprime_fpp_python-3.3.14/fpp_analysis/src/passes/check_type_uses.rs +293 -0
- fprime_fpp_python-3.3.14/fpp_analysis/src/passes/check_use_def_cycles.rs +237 -0
- fprime_fpp_python-3.3.14/fpp_analysis/src/passes/check_uses.rs +341 -0
- fprime_fpp_python-3.3.14/fpp_analysis/src/passes/construct_implied_use_map.rs +47 -0
- fprime_fpp_python-3.3.14/fpp_analysis/src/passes/enter_symbols.rs +305 -0
- fprime_fpp_python-3.3.14/fpp_analysis/src/passes/eval_constant_exprs.rs +567 -0
- fprime_fpp_python-3.3.14/fpp_analysis/src/passes/eval_implied_enum_consts.rs +86 -0
- fprime_fpp_python-3.3.14/fpp_analysis/src/passes/finalize_type_defs.rs +413 -0
- fprime_fpp_python-3.3.14/fpp_analysis/src/passes/state_machine/check_initial_transitions.rs +220 -0
- fprime_fpp_python-3.3.14/fpp_analysis/src/passes/state_machine/check_signal_uses.rs +46 -0
- fprime_fpp_python-3.3.14/fpp_analysis/src/passes/state_machine/check_state_machine_semantics.rs +54 -0
- fprime_fpp_python-3.3.14/fpp_analysis/src/passes/state_machine/check_state_machine_uses.rs +194 -0
- fprime_fpp_python-3.3.14/fpp_analysis/src/passes/state_machine/check_transition_graph/check_choice_cycles.rs +88 -0
- fprime_fpp_python-3.3.14/fpp_analysis/src/passes/state_machine/check_transition_graph/check_tg_reachability.rs +50 -0
- fprime_fpp_python-3.3.14/fpp_analysis/src/passes/state_machine/check_transition_graph/construct_transition_graph.rs +136 -0
- fprime_fpp_python-3.3.14/fpp_analysis/src/passes/state_machine/check_transition_graph/mod.rs +28 -0
- fprime_fpp_python-3.3.14/fpp_analysis/src/passes/state_machine/check_typed_elements/check_action_and_guard_types.rs +215 -0
- fprime_fpp_python-3.3.14/fpp_analysis/src/passes/state_machine/check_typed_elements/compute_type_option_map.rs +170 -0
- fprime_fpp_python-3.3.14/fpp_analysis/src/passes/state_machine/check_typed_elements/mod.rs +27 -0
- fprime_fpp_python-3.3.14/fpp_analysis/src/passes/state_machine/compute_flattened_choice_transition_map.rs +85 -0
- fprime_fpp_python-3.3.14/fpp_analysis/src/passes/state_machine/compute_flattened_state_transition_map.rs +121 -0
- fprime_fpp_python-3.3.14/fpp_analysis/src/passes/state_machine/construct_flattened_transition.rs +105 -0
- fprime_fpp_python-3.3.14/fpp_analysis/src/passes/state_machine/enter_state_machine_symbols.rs +83 -0
- fprime_fpp_python-3.3.14/fpp_analysis/src/passes/state_machine/mod.rs +29 -0
- fprime_fpp_python-3.3.14/fpp_analysis/src/semantics/component.rs +1301 -0
- fprime_fpp_python-3.3.14/fpp_analysis/src/semantics/component_instance.rs +391 -0
- fprime_fpp_python-3.3.14/fpp_analysis/src/semantics/connection.rs +596 -0
- fprime_fpp_python-3.3.14/fpp_analysis/src/semantics/format.rs +420 -0
- fprime_fpp_python-3.3.14/fpp_analysis/src/semantics/format_spec.rs +356 -0
- fprime_fpp_python-3.3.14/fpp_analysis/src/semantics/framework_definitions.rs +21 -0
- fprime_fpp_python-3.3.14/fpp_analysis/src/semantics/generic_name_symbol_map.rs +39 -0
- fprime_fpp_python-3.3.14/fpp_analysis/src/semantics/generic_nested_scope.rs +43 -0
- fprime_fpp_python-3.3.14/fpp_analysis/src/semantics/generic_scope.rs +39 -0
- fprime_fpp_python-3.3.14/fpp_analysis/src/semantics/implied_use.rs +112 -0
- fprime_fpp_python-3.3.14/fpp_analysis/src/semantics/interface.rs +1287 -0
- fprime_fpp_python-3.3.14/fpp_analysis/src/semantics/interned_def.rs +39 -0
- fprime_fpp_python-3.3.14/fpp_analysis/src/semantics/name.rs +98 -0
- fprime_fpp_python-3.3.14/fpp_analysis/src/semantics/name_groups.rs +34 -0
- fprime_fpp_python-3.3.14/fpp_analysis/src/semantics/resolve_topology/check_topology_interface.rs +24 -0
- fprime_fpp_python-3.3.14/fpp_analysis/src/semantics/resolve_topology/general_port_numbering.rs +47 -0
- fprime_fpp_python-3.3.14/fpp_analysis/src/semantics/resolve_topology/matched_port_numbering.rs +351 -0
- fprime_fpp_python-3.3.14/fpp_analysis/src/semantics/resolve_topology/mod.rs +61 -0
- fprime_fpp_python-3.3.14/fpp_analysis/src/semantics/resolve_topology/pattern_resolver.rs +344 -0
- fprime_fpp_python-3.3.14/fpp_analysis/src/semantics/resolve_topology/port_numbering_state.rs +102 -0
- fprime_fpp_python-3.3.14/fpp_analysis/src/semantics/resolve_topology/resolve_partially_numbered.rs +169 -0
- fprime_fpp_python-3.3.14/fpp_analysis/src/semantics/resolve_topology/resolve_port_numbers.rs +72 -0
- fprime_fpp_python-3.3.14/fpp_analysis/src/semantics/resolve_topology/resolve_topology_instances.rs +34 -0
- fprime_fpp_python-3.3.14/fpp_analysis/src/semantics/resolve_topology/resolve_topology_port_interface.rs +14 -0
- fprime_fpp_python-3.3.14/fpp_analysis/src/semantics/resolve_topology/resolve_unconnected_ports.rs +17 -0
- fprime_fpp_python-3.3.14/fpp_analysis/src/semantics/scope.rs +11 -0
- fprime_fpp_python-3.3.14/fpp_analysis/src/semantics/spec_loc.rs +14 -0
- fprime_fpp_python-3.3.14/fpp_analysis/src/semantics/state_machine/analysis.rs +211 -0
- fprime_fpp_python-3.3.14/fpp_analysis/src/semantics/state_machine/mod.rs +201 -0
- fprime_fpp_python-3.3.14/fpp_analysis/src/semantics/state_machine/name_group.rs +33 -0
- fprime_fpp_python-3.3.14/fpp_analysis/src/semantics/state_machine/scope.rs +66 -0
- fprime_fpp_python-3.3.14/fpp_analysis/src/semantics/state_machine/state.rs +75 -0
- fprime_fpp_python-3.3.14/fpp_analysis/src/semantics/state_machine/state_or_choice.rs +24 -0
- fprime_fpp_python-3.3.14/fpp_analysis/src/semantics/state_machine/symbol.rs +53 -0
- fprime_fpp_python-3.3.14/fpp_analysis/src/semantics/state_machine/transition.rs +36 -0
- fprime_fpp_python-3.3.14/fpp_analysis/src/semantics/state_machine/transition_graph.rs +156 -0
- fprime_fpp_python-3.3.14/fpp_analysis/src/semantics/state_machine/type_option.rs +320 -0
- fprime_fpp_python-3.3.14/fpp_analysis/src/semantics/state_machine/typed_element.rs +44 -0
- fprime_fpp_python-3.3.14/fpp_analysis/src/semantics/symbol.rs +122 -0
- fprime_fpp_python-3.3.14/fpp_analysis/src/semantics/system.rs +27 -0
- fprime_fpp_python-3.3.14/fpp_analysis/src/semantics/test_helpers.rs +454 -0
- fprime_fpp_python-3.3.14/fpp_analysis/src/semantics/tlm_channel_identifier.rs +69 -0
- fprime_fpp_python-3.3.14/fpp_analysis/src/semantics/tlm_packet.rs +66 -0
- fprime_fpp_python-3.3.14/fpp_analysis/src/semantics/tlm_packet_set.rs +220 -0
- fprime_fpp_python-3.3.14/fpp_analysis/src/semantics/topology.rs +745 -0
- fprime_fpp_python-3.3.14/fpp_analysis/src/semantics/type_spec.rs +913 -0
- fprime_fpp_python-3.3.14/fpp_analysis/src/semantics/types.rs +1084 -0
- fprime_fpp_python-3.3.14/fpp_analysis/src/semantics/use_def_matching.rs +23 -0
- fprime_fpp_python-3.3.14/fpp_analysis/src/semantics/value.rs +866 -0
- fprime_fpp_python-3.3.14/fpp_analysis/src/semantics/value_spec.rs +883 -0
- fprime_fpp_python-3.3.14/fpp_analysis/src/transform/add_state_enums.rs +171 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/array/array_default_ok.fpp +2 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/array/array_default_ok.ref.txt +0 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/array/array_no_default_ok.fpp +2 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/array/array_no_default_ok.ref.txt +0 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/array/default_error.fpp +2 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/array/default_error.ref.txt +12 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/array/default_ok.fpp +18 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/array/default_ok.ref.txt +0 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/array/dictionary_not_displayable.fpp +2 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/array/dictionary_not_displayable.ref.txt +5 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/array/dictionary_ok.fpp +1 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/array/dictionary_ok.ref.txt +0 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/array/enum_default_error.fpp +2 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/array/enum_default_error.ref.txt +8 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/array/enum_default_ok.fpp +2 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/array/enum_default_ok.ref.txt +0 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/array/enum_no_default_ok.fpp +2 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/array/enum_no_default_ok.ref.txt +0 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/array/format_alias_float_not_int.fpp +2 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/array/format_alias_float_not_int.ref.txt +10 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/array/format_alias_int_not_rational.fpp +2 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/array/format_alias_int_not_rational.ref.txt +10 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/array/format_alias_not_numeric.fpp +5 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/array/format_alias_not_numeric.ref.txt +10 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/array/format_alias_ok.fpp +2 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/array/format_alias_ok.ref.txt +0 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/array/format_bad_syntax.fpp +1 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/array/format_bad_syntax.ref.txt +12 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/array/format_float_not_int.fpp +1 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/array/format_float_not_int.ref.txt +10 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/array/format_int_not_rational.fpp +1 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/array/format_int_not_rational.ref.txt +10 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/array/format_missing_repl.fpp +1 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/array/format_missing_repl.ref.txt +5 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/array/format_not_numeric.fpp +4 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/array/format_not_numeric.ref.txt +10 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/array/format_numeric.fpp +1 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/array/format_numeric.ref.txt +0 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/array/format_ok.fpp +1 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/array/format_ok.ref.txt +0 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/array/format_precision_too_large.fpp +1 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/array/format_precision_too_large.ref.txt +5 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/array/format_too_many_repls.fpp +1 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/array/format_too_many_repls.ref.txt +10 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/array/invalid_size.fpp +1 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/array/invalid_size.ref.txt +7 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/array/large_size.fpp +303 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/array/large_size.ref.txt +0 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/array/nested_default_large_ok.fpp +10 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/array/nested_default_large_ok.ref.txt +0 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/array/nested_default_ok.fpp +19 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/array/nested_default_ok.ref.txt +0 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/array/no_default_ok.fpp +2 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/array/no_default_ok.ref.txt +0 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/array/size_out_of_range.fpp +1 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/array/size_out_of_range.ref.txt +7 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/array/string_size_default_ok.fpp +3 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/array/string_size_default_ok.ref.txt +0 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/array/struct_default_ok.fpp +4 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/array/struct_default_ok.ref.txt +0 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/array/struct_no_default_ok.fpp +2 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/array/struct_no_default_ok.ref.txt +0 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/array/test.rs +156 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/command/async_passive.fpp +5 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/command/async_passive.ref.txt +5 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/command/bad_opcode.fpp +5 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/command/bad_opcode.ref.txt +16 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/command/bad_priority.fpp +5 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/command/bad_priority.ref.txt +16 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/command/duplicate_name.fpp +6 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/command/duplicate_name.ref.txt +10 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/command/duplicate_name_param_save.fpp +7 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/command/duplicate_name_param_save.ref.txt +10 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/command/duplicate_name_param_set.fpp +7 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/command/duplicate_name_param_set.ref.txt +10 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/command/duplicate_opcode_explicit.fpp +7 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/command/duplicate_opcode_explicit.ref.txt +10 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/command/duplicate_opcode_implicit.fpp +9 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/command/duplicate_opcode_implicit.ref.txt +10 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/command/duplicate_param.fpp +5 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/command/duplicate_param.ref.txt +10 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/command/guarded_queue_full.fpp +5 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/command/guarded_queue_full.ref.txt +5 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/command/missing_ports.fpp +5 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/command/missing_ports.ref.txt +9 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/command/negative_opcode.fpp +5 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/command/negative_opcode.ref.txt +7 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/command/not_displayable.fpp +22 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/command/not_displayable.ref.txt +5 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/command/ok.fpp +48 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/command/ok.ref.txt +0 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/command/ref_params.fpp +5 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/command/ref_params.ref.txt +5 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/command/sync_priority.fpp +5 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/command/sync_priority.ref.txt +5 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/command/sync_queue_full.fpp +5 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/command/sync_queue_full.ref.txt +5 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/command/test.rs +86 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/component/abs_type_ok.fpp +5 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/component/abs_type_ok.ref.txt +0 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/component/active_no_async_input.fpp +3 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/component/active_no_async_input.ref.txt +7 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/component/array_alias_format_not_numeric.fpp +6 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/component/array_alias_format_not_numeric.ref.txt +10 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/component/array_default_error.fpp +3 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/component/array_default_error.ref.txt +8 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/component/array_format_not_numeric.fpp +5 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/component/array_format_not_numeric.ref.txt +10 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/component/array_ok.fpp +6 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/component/array_ok.ref.txt +0 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/component/array_undef_constant.fpp +3 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/component/array_undef_constant.ref.txt +5 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/component/array_undef_type.fpp +3 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/component/array_undef_type.ref.txt +5 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/component/enum_default_error.fpp +3 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/component/enum_default_error.ref.txt +7 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/component/enum_ok.fpp +6 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/component/enum_ok.ref.txt +0 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/component/enum_undef_constant.fpp +3 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/component/enum_undef_constant.ref.txt +5 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/component/enum_undef_type.fpp +3 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/component/enum_undef_type.ref.txt +10 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/component/ok.fpp +45 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/component/ok.ref.txt +0 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/component/queued_no_async_input.fpp +3 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/component/queued_no_async_input.ref.txt +7 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/component/struct_alias_format_not_numeric.fpp +6 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/component/struct_alias_format_not_numeric.ref.txt +10 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/component/struct_default_error.fpp +6 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/component/struct_default_error.ref.txt +7 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/component/struct_format_not_numeric.fpp +5 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/component/struct_format_not_numeric.ref.txt +10 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/component/struct_ok.fpp +6 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/component/struct_ok.ref.txt +0 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/component/struct_undef_constant.fpp +3 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/component/struct_undef_constant.ref.txt +5 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/component/struct_undef_type.fpp +3 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/component/struct_undef_type.ref.txt +5 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/component/test.rs +106 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/component/undef_constant.fpp +3 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/component/undef_constant.ref.txt +5 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/component_instance_def/active_no_priority.fpp +11 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/component_instance_def/active_no_priority.ref.txt +0 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/component_instance_def/active_no_queue_size.fpp +12 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/component_instance_def/active_no_queue_size.ref.txt +7 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/component_instance_def/active_no_stack_size.fpp +11 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/component_instance_def/active_no_stack_size.ref.txt +0 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/component_instance_def/conflicting_ids.fpp +13 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/component_instance_def/conflicting_ids.ref.txt +10 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/component_instance_def/conflicting_ids_empty_range_first.fpp +17 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/component_instance_def/conflicting_ids_empty_range_first.ref.txt +10 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/component_instance_def/conflicting_ids_empty_range_second.fpp +17 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/component_instance_def/conflicting_ids_empty_range_second.ref.txt +10 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/component_instance_def/invalid_negative_int.fpp +5 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/component_instance_def/invalid_negative_int.ref.txt +7 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/component_instance_def/large_int.fpp +5 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/component_instance_def/large_int.ref.txt +0 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/component_instance_def/ok.fpp +14 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/component_instance_def/ok.ref.txt +0 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/component_instance_def/passive_cpu.fpp +5 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/component_instance_def/passive_cpu.ref.txt +5 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/component_instance_def/passive_priority.fpp +5 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/component_instance_def/passive_priority.ref.txt +5 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/component_instance_def/passive_queue_size.fpp +5 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/component_instance_def/passive_queue_size.ref.txt +5 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/component_instance_def/passive_stack_size.fpp +5 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/component_instance_def/passive_stack_size.ref.txt +5 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/component_instance_def/queued_cpu.fpp +11 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/component_instance_def/queued_cpu.ref.txt +5 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/component_instance_def/queued_no_queue_size.fpp +9 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/component_instance_def/queued_no_queue_size.ref.txt +5 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/component_instance_def/queued_priority.fpp +11 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/component_instance_def/queued_priority.ref.txt +5 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/component_instance_def/queued_stack_size.fpp +11 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/component_instance_def/queued_stack_size.ref.txt +5 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/component_instance_def/test.rs +96 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/component_instance_def/two_empty_ranges.fpp +6 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/component_instance_def/two_empty_ranges.ref.txt +0 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/component_instance_def/undef_component.fpp +1 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/component_instance_def/undef_component.ref.txt +5 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/connection_direct/instance_not_in_topology.fpp +15 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/connection_direct/instance_not_in_topology.ref.txt +5 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/connection_direct/internal_port.fpp +14 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/connection_direct/internal_port.ref.txt +10 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/connection_direct/invalid_directions.fpp +11 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/connection_direct/invalid_directions.ref.txt +15 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/connection_direct/invalid_port_instance.fpp +8 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/connection_direct/invalid_port_instance.ref.txt +5 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/connection_direct/invalid_port_number.fpp +11 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/connection_direct/invalid_port_number.ref.txt +10 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/connection_direct/invalid_unmatched_connection.fpp +29 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/connection_direct/invalid_unmatched_connection.ref.txt +5 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/connection_direct/mismatched_port_types.fpp +17 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/connection_direct/mismatched_port_types.ref.txt +15 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/connection_direct/ok.fpp +57 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/connection_direct/ok.ref.txt +0 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/connection_direct/serial_to_typed_with_return.fpp +16 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/connection_direct/serial_to_typed_with_return.ref.txt +20 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/connection_direct/test.rs +56 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/connection_direct/typed_to_serial_with_return.fpp +16 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/connection_direct/typed_to_serial_with_return.ref.txt +20 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/connection_direct/undef_instance.fpp +5 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/connection_direct/undef_instance.ref.txt +10 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/connection_pattern/command_missing_source_port.fpp +23 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/connection_pattern/command_missing_source_port.ref.txt +5 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/connection_pattern/command_missing_target_port.fpp +23 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/connection_pattern/command_missing_target_port.ref.txt +5 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/connection_pattern/command_ok.fpp +24 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/connection_pattern/command_ok.ref.txt +0 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/connection_pattern/command_two_source_ports.fpp +25 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/connection_pattern/command_two_source_ports.ref.txt +5 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/connection_pattern/duplicate_pattern.fpp +8 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/connection_pattern/duplicate_pattern.ref.txt +15 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/connection_pattern/event_missing_source_port.fpp +20 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/connection_pattern/event_missing_source_port.ref.txt +5 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/connection_pattern/event_missing_target_port.fpp +19 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/connection_pattern/event_missing_target_port.ref.txt +5 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/connection_pattern/event_ok.fpp +20 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/connection_pattern/event_ok.ref.txt +0 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/connection_pattern/event_two_source_ports.fpp +21 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/connection_pattern/event_two_source_ports.ref.txt +5 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/connection_pattern/health_duplicate_port.fpp +21 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/connection_pattern/health_duplicate_port.ref.txt +5 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/connection_pattern/health_missing_port.fpp +19 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/connection_pattern/health_missing_port.ref.txt +5 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/connection_pattern/health_ok.fpp +20 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/connection_pattern/health_ok.ref.txt +0 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/connection_pattern/param_missing_source_port.fpp +20 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/connection_pattern/param_missing_source_port.ref.txt +5 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/connection_pattern/param_missing_target_port.fpp +20 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/connection_pattern/param_missing_target_port.ref.txt +5 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/connection_pattern/param_ok.fpp +21 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/connection_pattern/param_ok.ref.txt +0 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/connection_pattern/param_two_source_ports.fpp +22 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/connection_pattern/param_two_source_ports.ref.txt +5 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/connection_pattern/source_not_component_instance.fpp +25 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/connection_pattern/source_not_component_instance.ref.txt +14 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/connection_pattern/target_not_component_instance.fpp +29 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/connection_pattern/target_not_component_instance.ref.txt +14 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/connection_pattern/telemetry_missing_source_port.fpp +20 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/connection_pattern/telemetry_missing_source_port.ref.txt +5 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/connection_pattern/telemetry_missing_target_port.fpp +19 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/connection_pattern/telemetry_missing_target_port.ref.txt +5 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/connection_pattern/telemetry_ok.fpp +20 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/connection_pattern/telemetry_ok.ref.txt +0 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/connection_pattern/telemetry_two_source_ports.fpp +21 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/connection_pattern/telemetry_two_source_ports.ref.txt +5 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/connection_pattern/test.rs +161 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/connection_pattern/text_event_missing_source_port.fpp +20 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/connection_pattern/text_event_missing_source_port.ref.txt +5 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/connection_pattern/text_event_missing_target_port.fpp +20 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/connection_pattern/text_event_missing_target_port.ref.txt +5 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/connection_pattern/text_event_ok.fpp +20 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/connection_pattern/text_event_ok.ref.txt +0 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/connection_pattern/text_event_two_source_ports.fpp +21 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/connection_pattern/text_event_two_source_ports.ref.txt +5 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/connection_pattern/time_missing_source_port.fpp +18 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/connection_pattern/time_missing_source_port.ref.txt +5 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/connection_pattern/time_missing_target_port.fpp +18 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/connection_pattern/time_missing_target_port.ref.txt +5 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/connection_pattern/time_no_time_get_port.fpp +18 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/connection_pattern/time_ok.fpp +18 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/connection_pattern/time_ok.ref.txt +0 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/connection_pattern/time_two_source_ports.fpp +19 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/connection_pattern/time_two_source_ports.ref.txt +5 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/connection_pattern/undef_source.fpp +3 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/connection_pattern/undef_source.ref.txt +5 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/connection_pattern/undef_target.fpp +12 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/connection_pattern/undef_target.ref.txt +5 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/constant/array_common_type_conversion.fpp +2 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/constant/array_common_type_conversion.ref.txt +0 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/constant/array_index_negative.fpp +1 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/constant/array_index_negative.ref.txt +7 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/constant/array_index_out_of_bounds.fpp +1 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/constant/array_index_out_of_bounds.ref.txt +7 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/constant/dictionary_error.fpp +1 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/constant/dictionary_error.ref.txt +5 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/constant/dictionary_ok.fpp +1 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/constant/dictionary_ok.ref.txt +0 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/constant/invalid_array_index_type.fpp +1 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/constant/invalid_array_index_type.ref.txt +7 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/constant/invalid_array_type.fpp +2 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/constant/invalid_array_type.ref.txt +5 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/constant/test.rs +56 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/constant/undef_1.fpp +1 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/constant/undef_1.ref.txt +5 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/constant/undef_2.fpp +1 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/constant/undef_2.ref.txt +5 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/constant/undef_3.fpp +2 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/constant/undef_3.ref.txt +15 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/constant/uses_ok.fpp +40 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/constant/uses_ok.ref.txt +0 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/container/duplicate_id_explicit.fpp +7 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/container/duplicate_id_explicit.ref.txt +10 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/container/duplicate_id_implicit.fpp +9 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/container/duplicate_id_implicit.ref.txt +10 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/container/duplicate_name.fpp +6 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/container/duplicate_name.ref.txt +10 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/container/id_negative.fpp +5 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/container/id_negative.ref.txt +7 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/container/id_not_numeric.fpp +5 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/container/id_not_numeric.ref.txt +16 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/container/missing_ports.fpp +5 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/container/missing_ports.ref.txt +9 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/container/missing_product_recv_port.fpp +18 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/container/missing_product_recv_port.ref.txt +9 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/container/missing_product_send_port.fpp +11 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/container/missing_product_send_port.ref.txt +9 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/container/missing_record.fpp +18 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/container/missing_record.ref.txt +5 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/container/ok.fpp +32 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/container/ok.ref.txt +0 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/container/priority_negative.fpp +5 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/container/priority_negative.ref.txt +7 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/container/priority_not_numeric.fpp +5 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/container/priority_not_numeric.ref.txt +16 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/container/test.rs +61 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/cycles/alias.fpp +11 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/cycles/alias.ref.txt +15 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/cycles/array.fpp +3 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/cycles/array.ref.txt +25 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/cycles/constant_1.fpp +3 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/cycles/constant_1.ref.txt +25 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/cycles/constant_2.fpp +7 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/cycles/constant_2.ref.txt +15 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/cycles/enum.fpp +3 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/cycles/enum.ref.txt +25 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/cycles/enum_constant.fpp +1 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/cycles/enum_constant.ref.txt +25 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/cycles/interface.fpp +3 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/cycles/interface.ref.txt +25 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/cycles/sizeof_string_1.fpp +2 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/cycles/sizeof_string_1.ref.txt +10 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/cycles/sizeof_string_2.fpp +2 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/cycles/sizeof_string_2.ref.txt +10 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/cycles/struct.fpp +3 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/cycles/struct.ref.txt +25 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/cycles/test.rs +56 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/cycles/topology.fpp +3 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/cycles/topology.ref.txt +25 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/defs/ok.fpp +41 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/defs/ok.ref.txt +0 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/defs/test.rs +6 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/enums/alias_rep_type_ok.fpp +2 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/enums/alias_rep_type_ok.ref.txt +0 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/enums/bad_alias_rep_type.fpp +5 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/enums/bad_alias_rep_type.ref.txt +5 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/enums/bad_constant.fpp +1 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/enums/bad_constant.ref.txt +7 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/enums/bad_default.fpp +1 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/enums/bad_default.ref.txt +7 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/enums/bad_rep_type.fpp +2 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/enums/bad_rep_type.ref.txt +5 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/enums/default_ok.fpp +9 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/enums/default_ok.ref.txt +0 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/enums/dictionary_ok.fpp +1 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/enums/dictionary_ok.ref.txt +0 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/enums/duplicate_value.fpp +3 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/enums/duplicate_value.ref.txt +10 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/enums/explicit.fpp +1 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/enums/explicit.ref.txt +0 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/enums/implied.fpp +1 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/enums/implied.ref.txt +0 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/enums/invalid_constants.fpp +1 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/enums/invalid_constants.ref.txt +7 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/enums/invalid_symbol.fpp +2 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/enums/invalid_symbol.ref.txt +10 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/enums/missing_constant.fpp +1 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/enums/missing_constant.ref.txt +5 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/enums/test.rs +76 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/enums/undef_constant_1.fpp +1 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/enums/undef_constant_1.ref.txt +5 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/enums/undef_constant_2.fpp +2 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/enums/undef_constant_2.ref.txt +20 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/event/bad_id.fpp +5 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/event/bad_id.ref.txt +16 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/event/bad_throttle.fpp +5 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/event/bad_throttle.ref.txt +12 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/event/bad_throttle_interval.fpp +5 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/event/bad_throttle_interval.ref.txt +17 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/event/bad_throttle_interval_extra_member.fpp +7 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/event/bad_throttle_interval_extra_member.ref.txt +17 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/event/bad_throttle_interval_seconds.fpp +7 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/event/bad_throttle_interval_seconds.ref.txt +7 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/event/bad_throttle_interval_useconds.fpp +7 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/event/bad_throttle_interval_useconds.ref.txt +7 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/event/bad_throttle_seconds.fpp +7 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/event/bad_throttle_seconds.ref.txt +7 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/event/duplicate_id_explicit.fpp +7 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/event/duplicate_id_explicit.ref.txt +10 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/event/duplicate_id_implicit.fpp +9 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/event/duplicate_id_implicit.ref.txt +10 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/event/duplicate_name.fpp +6 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/event/duplicate_name.ref.txt +10 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/event/format_alias_not_numeric.fpp +7 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/event/format_alias_not_numeric.ref.txt +19 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/event/format_missing_repl.fpp +5 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/event/format_missing_repl.ref.txt +14 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/event/format_not_numeric.fpp +5 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/event/format_not_numeric.ref.txt +19 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/event/format_too_many_repls.fpp +5 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/event/format_too_many_repls.ref.txt +14 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/event/missing_ports.fpp +5 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/event/missing_ports.ref.txt +9 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/event/negative_id.fpp +5 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/event/negative_id.ref.txt +7 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/event/negative_throttle.fpp +5 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/event/negative_throttle.ref.txt +7 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/event/not_displayable.fpp +17 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/event/not_displayable.ref.txt +5 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/event/ok.fpp +61 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/event/ok.ref.txt +0 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/event/ref_params.fpp +5 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/event/ref_params.ref.txt +5 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/event/test.rs +111 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/event/throttle_too_large.fpp +5 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/event/throttle_too_large.ref.txt +7 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/event/zero_throttle_count.fpp +6 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/event/zero_throttle_count.ref.txt +6 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/expr/add_error.fpp +1 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/expr/add_error.ref.txt +5 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/expr/add_ok.fpp +1 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/expr/add_ok.ref.txt +0 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/expr/arith_overflow_add.fpp +3 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/expr/arith_overflow_add.ref.txt +5 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/expr/arith_overflow_div.fpp +3 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/expr/arith_overflow_div.ref.txt +5 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/expr/arith_overflow_mul.fpp +3 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/expr/arith_overflow_mul.ref.txt +5 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/expr/arith_overflow_neg.fpp +3 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/expr/arith_overflow_neg.ref.txt +5 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/expr/arith_overflow_sub.fpp +3 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/expr/arith_overflow_sub.ref.txt +5 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/expr/arith_overflow_typed_context.fpp +5 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/expr/arith_overflow_typed_context.ref.txt +5 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/expr/arith_overflow_use_chain.fpp +7 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/expr/arith_overflow_use_chain.ref.txt +5 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/expr/array_empty.fpp +1 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/expr/array_empty.ref.txt +5 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/expr/array_error.fpp +3 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/expr/array_error.ref.txt +5 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/expr/array_ok.fpp +9 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/expr/array_ok.ref.txt +0 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/expr/binop_numeric_error.fpp +1 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/expr/binop_numeric_error.ref.txt +5 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/expr/binop_type_use_chain.fpp +7 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/expr/binop_type_use_chain.ref.txt +5 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/expr/div_by_near_zero_float.fpp +1 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/expr/div_by_near_zero_float.ref.txt +5 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/expr/div_by_zero.fpp +3 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/expr/div_by_zero.ref.txt +5 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/expr/div_by_zero_use_chain.fpp +8 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/expr/div_by_zero_use_chain.ref.txt +5 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/expr/dot_bad_expr.fpp +1 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/expr/dot_bad_expr.ref.txt +5 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/expr/literal_ok.fpp +19 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/expr/literal_ok.ref.txt +0 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/expr/neg_error.fpp +1 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/expr/neg_error.ref.txt +7 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/expr/neg_ok.fpp +1 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/expr/neg_ok.ref.txt +0 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/expr/paren_ok.fpp +3 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/expr/paren_ok.ref.txt +0 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/expr/shift_amount_use_chain.fpp +6 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/expr/shift_amount_use_chain.ref.txt +7 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/expr/sizeof_error.fpp +3 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/expr/sizeof_error.ref.txt +5 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/expr/sizeof_not_displayable.fpp +9 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/expr/sizeof_not_displayable.ref.txt +5 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/expr/sizeof_ok.fpp +61 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/expr/sizeof_ok.ref.txt +0 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/expr/sizeof_propagation.fpp +9 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/expr/sizeof_propagation.ref.txt +10 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/expr/sizeof_string.fpp +7 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/expr/sizeof_string.ref.txt +0 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/expr/sizeof_string_fw_store_type_not_defined.fpp +1 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/expr/sizeof_string_fw_store_type_not_defined.ref.txt +5 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/expr/sizeof_too_large.fpp +132 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/expr/sizeof_too_large.ref.txt +5 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/expr/sizeof_types.fpp +9 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/expr/sizeof_types.ref.txt +0 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/expr/string_concat_error.fpp +1 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/expr/string_concat_error.ref.txt +5 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/expr/string_concat_ok.fpp +1 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/expr/string_concat_ok.ref.txt +0 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/expr/string_size_sizeof_ok.fpp +16 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/expr/string_size_sizeof_ok.ref.txt +0 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/expr/string_size_sizeof_undefined.fpp +4 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/expr/string_size_sizeof_undefined.ref.txt +5 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/expr/struct_duplicate.fpp +1 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/expr/struct_duplicate.ref.txt +10 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/expr/subscript_index_too_large.fpp +1 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/expr/subscript_index_too_large.ref.txt +7 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/expr/subscript_order_error.fpp +1 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/expr/subscript_order_error.ref.txt +5 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/expr/subscript_use_chain.fpp +8 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/expr/subscript_use_chain.ref.txt +7 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/expr/test.rs +196 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/framework_defs/dp_state_not_enum.fpp +5 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/framework_defs/dp_state_not_enum.ref.txt +7 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/framework_defs/fw_assert_arg_type_not_integer.fpp +4 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/framework_defs/fw_assert_arg_type_not_integer.ref.txt +5 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/framework_defs/fw_event_id_type_not_alias_type.fpp +1 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/framework_defs/fw_event_id_type_not_alias_type.ref.txt +5 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/framework_defs/fw_index_type_not_signed.fpp +1 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/framework_defs/fw_index_type_not_signed.ref.txt +5 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/framework_defs/fw_log_string_max_size_not_integer.fpp +1 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/framework_defs/fw_log_string_max_size_not_integer.ref.txt +5 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/framework_defs/fw_obj_simple_reg_buff_size_not_integer.fpp +1 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/framework_defs/fw_obj_simple_reg_buff_size_not_integer.ref.txt +5 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/framework_defs/fw_opcode_type_not_alias_type.fpp +3 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/framework_defs/fw_opcode_type_not_alias_type.ref.txt +7 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/framework_defs/fw_size_type_not_unsigned.fpp +1 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/framework_defs/fw_size_type_not_unsigned.ref.txt +5 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/framework_defs/invalid_nonnegative_integer_constant.fpp +1 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/framework_defs/invalid_nonnegative_integer_constant.ref.txt +7 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/framework_defs/invalid_positive_integer_constant.fpp +1 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/framework_defs/invalid_positive_integer_constant.ref.txt +7 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/framework_defs/invalid_string_size.fpp +1 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/framework_defs/invalid_string_size.ref.txt +7 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/framework_defs/proc_type_not_module_qualified.fpp +9 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/framework_defs/proc_type_not_module_qualified.ref.txt +10 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/framework_defs/test.rs +71 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/framework_defs/user_data_size_not_integer.fpp +6 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/framework_defs/user_data_size_not_integer.ref.txt +5 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/framework_defs/user_data_size_not_module_qualified.fpp +9 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/framework_defs/user_data_size_not_module_qualified.ref.txt +10 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/instance_spec/duplicate_instance.fpp +12 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/instance_spec/duplicate_instance.ref.txt +10 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/instance_spec/ok.fpp +13 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/instance_spec/ok.ref.txt +0 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/instance_spec/test.rs +21 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/instance_spec/topology_instance.fpp +17 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/instance_spec/topology_instance.ref.txt +0 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/instance_spec/undef_instance.fpp +5 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/instance_spec/undef_instance.ref.txt +5 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/integration.rs +269 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/interface/async_port_in_passive.fpp +17 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/interface/async_port_in_passive.ref.txt +20 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/interface/conflict_name.fpp +10 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/interface/conflict_name.ref.txt +20 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/interface/cycles.fpp +3 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/interface/cycles.ref.txt +12 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/interface/diamond_import.fpp +18 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/interface/diamond_import.ref.txt +35 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/interface/duplicate_import.fpp +7 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/interface/duplicate_import.ref.txt +10 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/interface/duplicate_name.fpp +6 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/interface/duplicate_name.ref.txt +10 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/interface/empty_ok.fpp +5 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/interface/empty_ok.ref.txt +0 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/interface/failed_import_keeps_merged_ports.fpp +38 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/interface/failed_import_keeps_merged_ports.ref.txt +25 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/interface/import_conflict_order.fpp +15 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/interface/import_conflict_order.ref.txt +20 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/interface/import_cycle.fpp +7 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/interface/import_cycle.ref.txt +17 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/interface/import_duplicate_port_import_order.fpp +16 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/interface/import_duplicate_port_import_order.ref.txt +20 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/interface/import_duplicate_port_order.fpp +16 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/interface/import_duplicate_port_order.ref.txt +20 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/interface/import_duplicate_special_port_order.fpp +15 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/interface/import_duplicate_special_port_order.ref.txt +20 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/interface/import_of_broken_interface.fpp +10 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/interface/import_of_broken_interface.ref.txt +10 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/interface/ok.fpp +42 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/interface/ok.ref.txt +0 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/interface/test.rs +81 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/interface/undefined_import.fpp +3 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/interface/undefined_import.ref.txt +5 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/internal_port/bad_priority.fpp +5 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/internal_port/bad_priority.ref.txt +7 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/internal_port/duplicate.fpp +7 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/internal_port/duplicate.ref.txt +10 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/internal_port/duplicate_general.fpp +9 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/internal_port/duplicate_general.ref.txt +10 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/internal_port/duplicate_param.fpp +5 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/internal_port/duplicate_param.ref.txt +10 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/internal_port/ok.fpp +5 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/internal_port/ok.ref.txt +0 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/internal_port/passive.fpp +5 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/internal_port/passive.ref.txt +5 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/internal_port/ref_params.fpp +5 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/internal_port/ref_params.ref.txt +5 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/internal_port/test.rs +36 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/invalid_symbols/constant_as_type.fpp +2 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/invalid_symbols/constant_as_type.ref.txt +5 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/invalid_symbols/constant_integer_as_qualifier.fpp +2 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/invalid_symbols/constant_integer_as_qualifier.ref.txt +5 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/invalid_symbols/module_as_component.fpp +5 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/invalid_symbols/module_as_component.ref.txt +0 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/invalid_symbols/module_as_component_instance.fpp +9 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/invalid_symbols/module_as_component_instance.ref.txt +0 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/invalid_symbols/module_as_constant.fpp +5 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/invalid_symbols/module_as_constant.ref.txt +10 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/invalid_symbols/module_as_port.fpp +9 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/invalid_symbols/module_as_port.ref.txt +10 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/invalid_symbols/module_as_state_machine.fpp +5 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/invalid_symbols/module_as_state_machine.ref.txt +10 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/invalid_symbols/module_as_topology.fpp +9 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/invalid_symbols/module_as_topology.ref.txt +0 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/invalid_symbols/module_as_type.fpp +5 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/invalid_symbols/module_as_type.ref.txt +10 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/invalid_symbols/module_hides_constant.fpp +8 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/invalid_symbols/module_hides_constant.ref.txt +10 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/invalid_symbols/state_machine_as_qualifier.fpp +4 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/invalid_symbols/state_machine_as_qualifier.ref.txt +12 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/invalid_symbols/test.rs +66 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/invalid_symbols/topology_as_qualifier.fpp +6 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/invalid_symbols/topology_as_qualifier.ref.txt +14 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/invalid_symbols/type_as_constant.fpp +2 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/invalid_symbols/type_as_constant.ref.txt +5 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/numeric_shift/shift_amount_too_large_error.fpp +1 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/numeric_shift/shift_amount_too_large_error.ref.txt +7 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/numeric_shift/shift_boolean_value_error.fpp +1 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/numeric_shift/shift_boolean_value_error.ref.txt +5 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/numeric_shift/shift_float_amount_error.fpp +1 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/numeric_shift/shift_float_amount_error.ref.txt +5 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/numeric_shift/shift_float_value_error.fpp +1 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/numeric_shift/shift_float_value_error.ref.txt +5 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/numeric_shift/shift_invalid_type_error.fpp +1 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/numeric_shift/shift_invalid_type_error.ref.txt +5 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/numeric_shift/shift_negative_amount_error.fpp +1 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/numeric_shift/shift_negative_amount_error.ref.txt +7 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/numeric_shift/shift_negative_rshift_error.fpp +1 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/numeric_shift/shift_negative_rshift_error.ref.txt +7 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/numeric_shift/shift_ok.fpp +19 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/numeric_shift/shift_ok.ref.txt +0 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/numeric_shift/shift_overflow_error.fpp +1 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/numeric_shift/shift_overflow_error.ref.txt +5 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/numeric_shift/shift_wide_amount_negative_error.fpp +3 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/numeric_shift/shift_wide_amount_negative_error.ref.txt +7 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/numeric_shift/shift_wide_amount_positive_error.fpp +3 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/numeric_shift/shift_wide_amount_positive_error.ref.txt +7 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/numeric_shift/test.rs +56 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/param/bad_default.fpp +7 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/param/bad_default.ref.txt +7 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/param/bad_id.fpp +5 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/param/bad_id.ref.txt +16 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/param/bad_save_opcode.fpp +5 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/param/bad_save_opcode.ref.txt +17 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/param/bad_set_opcode.fpp +5 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/param/bad_set_opcode.ref.txt +17 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/param/duplicate_id_explicit.fpp +7 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/param/duplicate_id_explicit.ref.txt +10 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/param/duplicate_id_implicit.fpp +9 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/param/duplicate_id_implicit.ref.txt +10 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/param/duplicate_name.fpp +6 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/param/duplicate_name.ref.txt +10 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/param/duplicate_save_opcode_explicit.fpp +7 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/param/duplicate_save_opcode_explicit.ref.txt +10 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/param/duplicate_save_opcode_implicit.fpp +9 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/param/duplicate_save_opcode_implicit.ref.txt +10 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/param/duplicate_set_opcode_explicit.fpp +7 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/param/duplicate_set_opcode_explicit.ref.txt +10 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/param/duplicate_set_opcode_implicit.fpp +9 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/param/duplicate_set_opcode_implicit.ref.txt +10 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/param/missing_ports.fpp +5 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/param/missing_ports.ref.txt +9 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/param/negative_id.fpp +5 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/param/negative_id.ref.txt +7 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/param/negative_save_opcode.fpp +5 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/param/negative_save_opcode.ref.txt +7 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/param/negative_set_opcode.fpp +5 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/param/negative_set_opcode.ref.txt +7 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/param/not_displayable.fpp +16 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/param/not_displayable.ref.txt +5 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/param/ok.fpp +49 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/param/ok.ref.txt +0 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/param/test.rs +86 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/port/duplicate_param.fpp +4 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/port/duplicate_param.ref.txt +10 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/port/ok.fpp +10 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/port/ok.ref.txt +0 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/port/test.rs +11 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/port_instance/async_input_active.fpp +7 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/port_instance/async_input_active.ref.txt +0 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/port_instance/async_input_passive.fpp +7 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/port_instance/async_input_passive.ref.txt +5 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/port_instance/async_input_ref_params.fpp +7 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/port_instance/async_input_ref_params.ref.txt +0 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/port_instance/async_input_return_value.fpp +7 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/port_instance/async_input_return_value.ref.txt +10 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/port_instance/async_product_recv_active.fpp +11 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/port_instance/async_product_recv_active.ref.txt +0 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/port_instance/async_product_recv_passive.fpp +11 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/port_instance/async_product_recv_passive.ref.txt +5 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/port_instance/bad_array_size.fpp +7 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/port_instance/bad_array_size.ref.txt +7 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/port_instance/bad_priority.fpp +7 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/port_instance/bad_priority.ref.txt +7 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/port_instance/bad_priority_product_recv.fpp +11 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/port_instance/bad_priority_product_recv.ref.txt +7 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/port_instance/duplicate_command_recv.fpp +12 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/port_instance/duplicate_command_recv.ref.txt +10 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/port_instance/duplicate_general.fpp +8 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/port_instance/duplicate_general.ref.txt +10 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/port_instance/ok.fpp +44 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/port_instance/ok.ref.txt +0 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/port_instance/output_queue_full.fpp +7 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/port_instance/output_queue_full.ref.txt +5 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/port_instance/shadowed_time_get.fpp +15 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/port_instance/shadowed_time_get.ref.txt +10 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/port_instance/special_input_kind_command.fpp +12 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/port_instance/special_input_kind_command.ref.txt +5 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/port_instance/special_input_kind_missing_product_recv.fpp +12 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/port_instance/special_input_kind_missing_product_recv.ref.txt +5 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/port_instance/sync_input_priority.fpp +7 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/port_instance/sync_input_priority.ref.txt +5 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/port_instance/sync_input_queue_full.fpp +7 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/port_instance/sync_input_queue_full.ref.txt +5 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/port_instance/sync_product_recv_priority.fpp +11 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/port_instance/sync_product_recv_priority.ref.txt +5 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/port_instance/sync_product_recv_queue_full.fpp +11 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/port_instance/sync_product_recv_queue_full.ref.txt +5 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/port_instance/test.rs +166 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/port_instance/undef_command_recv.fpp +5 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/port_instance/undef_command_recv.ref.txt +10 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/port_instance/undef_command_reg.fpp +5 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/port_instance/undef_command_reg.ref.txt +10 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/port_instance/undef_command_resp.fpp +5 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/port_instance/undef_command_resp.ref.txt +10 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/port_instance/undef_event.fpp +5 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/port_instance/undef_event.ref.txt +10 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/port_instance/undef_general.fpp +5 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/port_instance/undef_general.ref.txt +5 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/port_instance/undef_param_get.fpp +5 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/port_instance/undef_param_get.ref.txt +10 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/port_instance/undef_param_set.fpp +5 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/port_instance/undef_param_set.ref.txt +10 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/port_instance/undef_product_recv.fpp +5 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/port_instance/undef_product_recv.ref.txt +10 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/port_instance/undef_product_request.fpp +5 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/port_instance/undef_product_request.ref.txt +10 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/port_instance/undef_product_send.fpp +5 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/port_instance/undef_product_send.ref.txt +10 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/port_instance/undef_telemetry.fpp +5 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/port_instance/undef_telemetry.ref.txt +10 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/port_instance/undef_text_event.fpp +5 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/port_instance/undef_text_event.ref.txt +10 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/port_instance/undef_time_get.fpp +5 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/port_instance/undef_time_get.ref.txt +10 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/port_matching/mismatched_sizes.fpp +9 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/port_matching/mismatched_sizes.ref.txt +5 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/port_matching/ok.fpp +9 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/port_matching/ok.ref.txt +0 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/port_matching/p1_not_port_instance.fpp +8 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/port_matching/p1_not_port_instance.ref.txt +5 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/port_matching/p1_not_valid.fpp +9 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/port_matching/p1_not_valid.ref.txt +5 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/port_matching/p2_not_port_instance.fpp +8 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/port_matching/p2_not_port_instance.ref.txt +5 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/port_matching/p2_not_valid.fpp +9 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/port_matching/p2_not_valid.ref.txt +5 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/port_matching/repeated_name.fpp +8 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/port_matching/repeated_name.ref.txt +5 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/port_matching/test.rs +36 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/port_numbering/duplicate_connection_at_matched_port.fpp +38 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/port_numbering/duplicate_connection_at_matched_port.ref.txt +15 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/port_numbering/duplicate_instance_name.fpp +37 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/port_numbering/duplicate_instance_name.ref.txt +10 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/port_numbering/duplicate_matched_connection.fpp +33 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/port_numbering/duplicate_matched_connection.ref.txt +17 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/port_numbering/duplicate_output_connection.fpp +28 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/port_numbering/duplicate_output_connection.ref.txt +10 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/port_numbering/implicit_duplicate_connection_at_matched_input_port.fpp +39 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/port_numbering/implicit_duplicate_connection_at_matched_input_port.ref.txt +20 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/port_numbering/implicit_duplicate_connection_at_matched_output_port.fpp +41 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/port_numbering/implicit_duplicate_connection_at_matched_output_port.ref.txt +20 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/port_numbering/matched_through_alias.fpp +55 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/port_numbering/matched_through_alias.ref.txt +22 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/port_numbering/mismatched_port_numbers.fpp +32 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/port_numbering/mismatched_port_numbers.ref.txt +15 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/port_numbering/missing_connection.fpp +31 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/port_numbering/missing_connection.ref.txt +10 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/port_numbering/negative_port_number.fpp +36 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/port_numbering/negative_port_number.ref.txt +7 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/port_numbering/no_port_available_for_matched_numbering.fpp +50 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/port_numbering/no_port_available_for_matched_numbering.ref.txt +22 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/port_numbering/ok.fpp +41 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/port_numbering/ok.ref.txt +0 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/port_numbering/test.rs +66 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/port_numbering/too_many_output_ports.fpp +28 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/port_numbering/too_many_output_ports.ref.txt +10 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/record/duplicate_id_explicit.fpp +7 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/record/duplicate_id_explicit.ref.txt +10 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/record/duplicate_id_implicit.fpp +9 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/record/duplicate_id_implicit.ref.txt +10 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/record/duplicate_name.fpp +6 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/record/duplicate_name.ref.txt +10 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/record/id_negative.fpp +5 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/record/id_negative.ref.txt +7 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/record/id_not_numeric.fpp +5 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/record/id_not_numeric.ref.txt +16 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/record/missing_container.fpp +18 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/record/missing_container.ref.txt +5 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/record/missing_ports.fpp +5 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/record/missing_ports.ref.txt +9 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/record/missing_product_recv_port.fpp +18 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/record/missing_product_recv_port.ref.txt +9 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/record/missing_product_send_port.fpp +11 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/record/missing_product_send_port.ref.txt +9 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/record/not_displayable.fpp +21 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/record/not_displayable.ref.txt +5 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/record/ok.fpp +29 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/record/ok.ref.txt +0 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/record/test.rs +56 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/redef/array.fpp +2 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/redef/array.ref.txt +10 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/redef/component.fpp +2 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/redef/component.ref.txt +10 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/redef/component_array.fpp +3 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/redef/component_array.ref.txt +10 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/redef/component_enum.fpp +3 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/redef/component_enum.ref.txt +10 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/redef/component_instance.fpp +6 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/redef/component_instance.ref.txt +10 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/redef/component_instance_module.fpp +2 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/redef/component_instance_module.ref.txt +15 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/redef/component_state_machine.fpp +3 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/redef/component_state_machine.ref.txt +10 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/redef/component_struct.fpp +3 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/redef/component_struct.ref.txt +10 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/redef/constant.fpp +2 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/redef/constant.ref.txt +10 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/redef/constant_in_module.fpp +4 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/redef/constant_in_module.ref.txt +10 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/redef/constant_module.fpp +2 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/redef/constant_module.ref.txt +10 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/redef/constant_state_machine.fpp +3 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/redef/constant_state_machine.ref.txt +10 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/redef/enum.fpp +2 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/redef/enum.ref.txt +10 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/redef/enum_constant.fpp +4 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/redef/enum_constant.ref.txt +10 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/redef/enum_module.fpp +2 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/redef/enum_module.ref.txt +10 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/redef/module_component.fpp +2 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/redef/module_component.ref.txt +15 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/redef/module_component_instance.fpp +3 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/redef/module_component_instance.ref.txt +10 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/redef/module_constant.fpp +2 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/redef/module_constant.ref.txt +10 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/redef/module_enum.fpp +2 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/redef/module_enum.ref.txt +10 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/redef/module_members_after_collision.fpp +16 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/redef/module_members_after_collision.ref.txt +10 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/redef/module_port.fpp +2 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/redef/module_port.ref.txt +10 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/redef/module_scope_after_collision.fpp +7 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/redef/module_scope_after_collision.ref.txt +10 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/redef/module_state_machine.fpp +4 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/redef/module_state_machine.ref.txt +10 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/redef/module_topology.fpp +2 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/redef/module_topology.ref.txt +10 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/redef/module_type.fpp +2 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/redef/module_type.ref.txt +10 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/redef/port.fpp +2 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/redef/port.ref.txt +20 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/redef/port_module.fpp +2 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/redef/port_module.ref.txt +10 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/redef/state_machine.fpp +2 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/redef/state_machine.ref.txt +10 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/redef/struct.fpp +2 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/redef/struct.ref.txt +10 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/redef/test.rs +166 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/redef/topology.fpp +2 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/redef/topology.ref.txt +10 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/redef/topology_module.fpp +2 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/redef/topology_module.ref.txt +10 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/redef/type.fpp +2 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/redef/type.ref.txt +10 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/redef/type_module.fpp +2 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/redef/type_module.ref.txt +10 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/semantics.rs +737 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/spec_init/duplicate_phase.fpp +14 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/spec_init/duplicate_phase.ref.txt +14 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/spec_init/ok.fpp +29 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/spec_init/ok.ref.txt +0 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/spec_init/phase_out_of_range.fpp +11 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/spec_init/phase_out_of_range.ref.txt +7 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/spec_init/test.rs +21 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/spec_init/undef_phase.fpp +9 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/spec_init/undef_phase.ref.txt +5 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/spec_loc/a.fppi +1 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/spec_loc/abs_type_dictionary_error.fpp +2 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/spec_loc/abs_type_dictionary_error.ref.txt +12 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/spec_loc/abs_type_ok.fpp +2 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/spec_loc/abs_type_ok.ref.txt +0 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/spec_loc/abs_type_path_error.fpp +2 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/spec_loc/abs_type_path_error.ref.txt +10 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/spec_loc/alias_type_dictionary_error.fpp +2 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/spec_loc/alias_type_dictionary_error.ref.txt +12 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/spec_loc/alias_type_ok.fpp +2 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/spec_loc/alias_type_ok.ref.txt +0 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/spec_loc/alias_type_path_error.fpp +2 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/spec_loc/alias_type_path_error.ref.txt +10 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/spec_loc/array_dictionary_error.fpp +2 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/spec_loc/array_dictionary_error.ref.txt +12 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/spec_loc/array_ok.fpp +2 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/spec_loc/array_ok.ref.txt +0 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/spec_loc/array_path_error.fpp +2 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/spec_loc/array_path_error.ref.txt +10 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/spec_loc/component_instance_ok.fpp +7 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/spec_loc/component_instance_ok.ref.txt +0 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/spec_loc/component_instance_path_error.fpp +7 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/spec_loc/component_instance_path_error.ref.txt +10 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/spec_loc/component_ok.fpp +4 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/spec_loc/component_ok.ref.txt +0 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/spec_loc/component_path_error.fpp +4 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/spec_loc/component_path_error.ref.txt +12 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/spec_loc/constant_dictionary_error.fpp +2 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/spec_loc/constant_dictionary_error.ref.txt +12 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/spec_loc/constant_ok.fpp +13 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/spec_loc/constant_ok.ref.txt +0 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/spec_loc/constant_path_error.fpp +2 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/spec_loc/constant_path_error.ref.txt +10 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/spec_loc/enum_dictionary_error.fpp +2 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/spec_loc/enum_dictionary_error.ref.txt +12 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/spec_loc/enum_ok.fpp +2 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/spec_loc/enum_ok.ref.txt +0 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/spec_loc/enum_path_error.fpp +2 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/spec_loc/enum_path_error.ref.txt +10 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/spec_loc/include_ok.fpp +2 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/spec_loc/include_ok.ref.txt +0 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/spec_loc/interface_ok.fpp +5 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/spec_loc/interface_ok.ref.txt +0 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/spec_loc/interface_path_error.fpp +5 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/spec_loc/interface_path_error.ref.txt +12 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/spec_loc/nested_ok.fpp +15 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/spec_loc/nested_ok.ref.txt +0 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/spec_loc/nested_path_error.fpp +6 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/spec_loc/nested_path_error.ref.txt +10 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/spec_loc/port_ok.fpp +2 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/spec_loc/port_ok.ref.txt +0 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/spec_loc/port_path_error.fpp +3 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/spec_loc/port_path_error.ref.txt +10 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/spec_loc/state_machine_ok.fpp +13 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/spec_loc/state_machine_ok.ref.txt +0 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/spec_loc/state_machine_path_error.fpp +2 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/spec_loc/state_machine_path_error.ref.txt +10 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/spec_loc/struct_dictionary_error.fpp +3 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/spec_loc/struct_dictionary_error.ref.txt +12 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/spec_loc/struct_ok.fpp +3 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/spec_loc/struct_ok.ref.txt +0 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/spec_loc/struct_path_error.fpp +3 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/spec_loc/struct_path_error.ref.txt +10 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/spec_loc/system_ok.fpp +3 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/spec_loc/system_ok.ref.txt +0 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/spec_loc/system_path_error.fpp +4 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/spec_loc/system_path_error.ref.txt +10 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/spec_loc/test.rs +179 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/spec_loc/topology_ok.fpp +5 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/spec_loc/topology_ok.ref.txt +0 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/spec_loc/topology_path_error.fpp +5 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/spec_loc/topology_path_error.ref.txt +12 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/state_machine/constants/constant_ok.fpp +11 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/state_machine/constants/constant_ok.ref.txt +0 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/state_machine/constants/test.rs +6 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/state_machine/initial_transitions/choice_cycle.fpp +5 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/state_machine/initial_transitions/choice_cycle.ref.txt +6 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/state_machine/initial_transitions/external_state_machine.fpp +1 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/state_machine/initial_transitions/external_state_machine.ref.txt +0 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/state_machine/initial_transitions/no_substates.fpp +6 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/state_machine/initial_transitions/no_substates.ref.txt +12 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/state_machine/initial_transitions/ok.fpp +10 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/state_machine/initial_transitions/ok.ref.txt +0 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/state_machine/initial_transitions/sm_choice_bad_parent_else.fpp +10 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/state_machine/initial_transitions/sm_choice_bad_parent_else.ref.txt +20 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/state_machine/initial_transitions/sm_choice_bad_parent_if.fpp +10 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/state_machine/initial_transitions/sm_choice_bad_parent_if.ref.txt +20 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/state_machine/initial_transitions/sm_choice_ok.fpp +6 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/state_machine/initial_transitions/sm_choice_ok.ref.txt +0 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/state_machine/initial_transitions/sm_mismatched_parents.fpp +7 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/state_machine/initial_transitions/sm_mismatched_parents.ref.txt +18 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/state_machine/initial_transitions/sm_multiple_transitions.fpp +6 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/state_machine/initial_transitions/sm_multiple_transitions.ref.txt +15 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/state_machine/initial_transitions/sm_no_transition.fpp +2 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/state_machine/initial_transitions/sm_no_transition.ref.txt +5 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/state_machine/initial_transitions/state_choice_bad_parent_else.fpp +13 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/state_machine/initial_transitions/state_choice_bad_parent_else.ref.txt +26 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/state_machine/initial_transitions/state_choice_bad_parent_if.fpp +13 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/state_machine/initial_transitions/state_choice_bad_parent_if.ref.txt +20 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/state_machine/initial_transitions/state_mismatched_parents.fpp +7 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/state_machine/initial_transitions/state_mismatched_parents.ref.txt +18 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/state_machine/initial_transitions/state_multiple_transitions.fpp +9 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/state_machine/initial_transitions/state_multiple_transitions.ref.txt +15 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/state_machine/initial_transitions/state_no_transition.fpp +6 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/state_machine/initial_transitions/state_no_transition.ref.txt +5 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/state_machine/initial_transitions/test.rs +76 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/state_machine/ok.ref.txt +0 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/state_machine/redef/action.fpp +4 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/state_machine/redef/action.ref.txt +15 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/state_machine/redef/choice.fpp +6 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/state_machine/redef/choice.ref.txt +15 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/state_machine/redef/constant.fpp +4 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/state_machine/redef/constant.ref.txt +15 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/state_machine/redef/guard.fpp +4 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/state_machine/redef/guard.ref.txt +15 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/state_machine/redef/nested_choice.fpp +8 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/state_machine/redef/nested_choice.ref.txt +20 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/state_machine/redef/nested_state.fpp +6 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/state_machine/redef/nested_state.ref.txt +20 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/state_machine/redef/ok.fpp +7 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/state_machine/redef/ok.ref.txt +0 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/state_machine/redef/signal.fpp +4 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/state_machine/redef/signal.ref.txt +15 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/state_machine/redef/state.fpp +4 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/state_machine/redef/state.ref.txt +15 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/state_machine/redef/state_choice.fpp +5 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/state_machine/redef/state_choice.ref.txt +15 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/state_machine/redef/state_enum.fpp +10 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/state_machine/redef/state_enum.ref.txt +10 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/state_machine/redef/state_shadow_ok.fpp +7 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/state_machine/redef/state_shadow_ok.ref.txt +0 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/state_machine/redef/test.rs +66 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/state_machine/redef/type.fpp +4 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/state_machine/redef/type.ref.txt +15 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/state_machine/signal_uses/duplicate.fpp +8 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/state_machine/signal_uses/duplicate.ref.txt +10 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/state_machine/signal_uses/duplicate_nested.fpp +11 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/state_machine/signal_uses/duplicate_nested.ref.txt +10 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/state_machine/signal_uses/ok.fpp +7 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/state_machine/signal_uses/ok.ref.txt +0 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/state_machine/signal_uses/test.rs +16 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/state_machine/test.rs +6 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/state_machine/transition_graph/choice_cycle.fpp +7 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/state_machine/transition_graph/choice_cycle.ref.txt +14 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/state_machine/transition_graph/choice_cycle_ok.fpp +33 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/state_machine/transition_graph/choice_cycle_ok.ref.txt +0 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/state_machine/transition_graph/cycle_and_types.fpp +7 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/state_machine/transition_graph/cycle_and_types.ref.txt +14 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/state_machine/transition_graph/cycle_ok.fpp +13 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/state_machine/transition_graph/cycle_ok.ref.txt +0 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/state_machine/transition_graph/test.rs +31 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/state_machine/transition_graph/unreachable_choice.fpp +7 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/state_machine/transition_graph/unreachable_choice.ref.txt +5 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/state_machine/transition_graph/unreachable_state.fpp +6 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/state_machine/transition_graph/unreachable_state.ref.txt +5 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/state_machine/typed_elements/choice_f32_f64.fpp +13 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/state_machine/typed_elements/choice_f32_f64.ref.txt +0 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/state_machine/typed_elements/choice_i16_i32.fpp +13 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/state_machine/typed_elements/choice_i16_i32.ref.txt +0 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/state_machine/typed_elements/choice_i32_f32.fpp +13 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/state_machine/typed_elements/choice_i32_f32.ref.txt +15 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/state_machine/typed_elements/choice_u32_bool.fpp +13 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/state_machine/typed_elements/choice_u32_bool.ref.txt +15 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/state_machine/typed_elements/choice_u32_bool_transitive.fpp +14 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/state_machine/typed_elements/choice_u32_bool_transitive.ref.txt +15 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/state_machine/typed_elements/choice_u32_none.fpp +13 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/state_machine/typed_elements/choice_u32_none.ref.txt +0 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/state_machine/typed_elements/sm_choice_bad_else_action_type.fpp +7 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/state_machine/typed_elements/sm_choice_bad_else_action_type.ref.txt +8 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/state_machine/typed_elements/sm_choice_bad_guard_type.fpp +6 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/state_machine/typed_elements/sm_choice_bad_guard_type.ref.txt +8 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/state_machine/typed_elements/sm_choice_bad_if_action_type.fpp +7 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/state_machine/typed_elements/sm_choice_bad_if_action_type.ref.txt +8 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/state_machine/typed_elements/sm_initial_bad_action_type.fpp +5 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/state_machine/typed_elements/sm_initial_bad_action_type.ref.txt +8 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/state_machine/typed_elements/state_choice_bad_else_action_type.fpp +10 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/state_machine/typed_elements/state_choice_bad_else_action_type.ref.txt +8 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/state_machine/typed_elements/state_choice_bad_guard_type.fpp +9 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/state_machine/typed_elements/state_choice_bad_guard_type.ref.txt +8 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/state_machine/typed_elements/state_choice_bad_if_action_type.fpp +10 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/state_machine/typed_elements/state_choice_bad_if_action_type.ref.txt +8 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/state_machine/typed_elements/state_choice_bad_if_action_type_f32_f64.fpp +14 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/state_machine/typed_elements/state_choice_bad_if_action_type_f32_f64.ref.txt +8 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/state_machine/typed_elements/state_choice_bad_if_action_type_i16_i32.fpp +14 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/state_machine/typed_elements/state_choice_bad_if_action_type_i16_i32.ref.txt +8 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/state_machine/typed_elements/state_entry_bad_action_type.fpp +7 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/state_machine/typed_elements/state_entry_bad_action_type.ref.txt +8 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/state_machine/typed_elements/state_exit_bad_action_type.fpp +7 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/state_machine/typed_elements/state_exit_bad_action_type.ref.txt +8 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/state_machine/typed_elements/state_external_transition_bad_action_type.fpp +9 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/state_machine/typed_elements/state_external_transition_bad_action_type.ref.txt +8 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/state_machine/typed_elements/state_initial_bad_action_type.fpp +8 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/state_machine/typed_elements/state_initial_bad_action_type.ref.txt +8 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/state_machine/typed_elements/state_self_transition_bad_action_type.fpp +9 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/state_machine/typed_elements/state_self_transition_bad_action_type.ref.txt +8 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/state_machine/typed_elements/state_transition_bad_guard_type.fpp +8 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/state_machine/typed_elements/state_transition_bad_guard_type.ref.txt +8 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/state_machine/typed_elements/test.rs +106 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/state_machine/types/abs_type_ok.fpp +7 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/state_machine/types/abs_type_ok.ref.txt +0 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/state_machine/types/action_undef_type.fpp +5 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/state_machine/types/action_undef_type.ref.txt +10 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/state_machine/types/array_alias_format_not_numeric.fpp +8 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/state_machine/types/array_alias_format_not_numeric.ref.txt +15 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/state_machine/types/array_default_error.fpp +3 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/state_machine/types/array_default_error.ref.txt +13 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/state_machine/types/array_format_not_numeric.fpp +7 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/state_machine/types/array_format_not_numeric.ref.txt +15 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/state_machine/types/array_ok.fpp +8 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/state_machine/types/array_ok.ref.txt +0 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/state_machine/types/array_undef_constant.fpp +3 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/state_machine/types/array_undef_constant.ref.txt +5 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/state_machine/types/array_undef_type.fpp +3 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/state_machine/types/array_undef_type.ref.txt +10 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/state_machine/types/enum_default_error.fpp +3 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/state_machine/types/enum_default_error.ref.txt +12 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/state_machine/types/enum_ok.fpp +8 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/state_machine/types/enum_ok.ref.txt +0 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/state_machine/types/enum_undef_constant.fpp +3 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/state_machine/types/enum_undef_constant.ref.txt +5 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/state_machine/types/enum_undef_type.fpp +3 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/state_machine/types/enum_undef_type.ref.txt +15 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/state_machine/types/guard_undef_type.fpp +5 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/state_machine/types/guard_undef_type.ref.txt +10 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/state_machine/types/signal_undef_type.fpp +5 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/state_machine/types/signal_undef_type.ref.txt +10 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/state_machine/types/state_enum_ok.fpp +16 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/state_machine/types/state_enum_ok.ref.txt +0 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/state_machine/types/struct_alias_format_not_numeric.fpp +8 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/state_machine/types/struct_alias_format_not_numeric.ref.txt +15 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/state_machine/types/struct_default_error.fpp +6 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/state_machine/types/struct_default_error.ref.txt +12 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/state_machine/types/struct_format_not_numeric.fpp +7 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/state_machine/types/struct_format_not_numeric.ref.txt +15 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/state_machine/types/struct_ok.fpp +8 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/state_machine/types/struct_ok.ref.txt +0 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/state_machine/types/struct_undef_constant.fpp +3 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/state_machine/types/struct_undef_constant.ref.txt +5 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/state_machine/types/struct_undef_type.fpp +3 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/state_machine/types/struct_undef_type.ref.txt +10 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/state_machine/types/test.rs +106 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/state_machine/undef/action_error.fpp +4 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/state_machine/undef/action_error.ref.txt +5 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/state_machine/undef/action_ok.fpp +5 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/state_machine/undef/action_ok.ref.txt +0 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/state_machine/undef/choice_error.fpp +4 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/state_machine/undef/choice_error.ref.txt +5 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/state_machine/undef/choice_ok.fpp +6 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/state_machine/undef/choice_ok.ref.txt +0 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/state_machine/undef/constant_error.fpp +3 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/state_machine/undef/constant_error.ref.txt +5 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/state_machine/undef/guard_error.fpp +5 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/state_machine/undef/guard_error.ref.txt +5 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/state_machine/undef/guard_ok.fpp +6 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/state_machine/undef/guard_ok.ref.txt +0 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/state_machine/undef/multiple_uses.fpp +7 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/state_machine/undef/multiple_uses.ref.txt +20 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/state_machine/undef/nested_action_error.fpp +7 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/state_machine/undef/nested_action_error.ref.txt +5 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/state_machine/undef/nested_action_ok.fpp +8 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/state_machine/undef/nested_action_ok.ref.txt +0 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/state_machine/undef/nested_choice_error.fpp +8 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/state_machine/undef/nested_choice_error.ref.txt +5 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/state_machine/undef/nested_choice_ok.fpp +9 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/state_machine/undef/nested_choice_ok.ref.txt +0 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/state_machine/undef/nested_guard_error.fpp +7 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/state_machine/undef/nested_guard_error.ref.txt +5 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/state_machine/undef/nested_guard_ok.fpp +9 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/state_machine/undef/nested_guard_ok.ref.txt +0 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/state_machine/undef/nested_state_error.fpp +6 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/state_machine/undef/nested_state_error.ref.txt +5 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/state_machine/undef/nested_state_ok.fpp +7 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/state_machine/undef/nested_state_ok.ref.txt +0 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/state_machine/undef/qualified_target.fpp +7 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/state_machine/undef/qualified_target.ref.txt +5 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/state_machine/undef/signal_error.fpp +4 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/state_machine/undef/signal_error.ref.txt +5 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/state_machine/undef/signal_ok.fpp +5 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/state_machine/undef/signal_ok.ref.txt +0 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/state_machine/undef/state_error.fpp +3 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/state_machine/undef/state_error.ref.txt +5 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/state_machine/undef/state_ok.fpp +4 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/state_machine/undef/state_ok.ref.txt +0 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/state_machine/undef/stress_multi.fpp +7 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/state_machine/undef/stress_multi.ref.txt +25 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/state_machine/undef/test.rs +118 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/state_machine_defs/nested_ok.fpp +19 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/state_machine_defs/nested_ok.ref.txt +0 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/state_machine_defs/nested_redef.fpp +4 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/state_machine_defs/nested_redef.ref.txt +15 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/state_machine_defs/nested_type_undef.fpp +3 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/state_machine_defs/nested_type_undef.ref.txt +10 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/state_machine_defs/test.rs +16 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/state_machine_instance/bad_priority.fpp +7 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/state_machine_instance/bad_priority.ref.txt +7 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/state_machine_instance/inside_active.fpp +7 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/state_machine_instance/inside_active.ref.txt +0 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/state_machine_instance/inside_passive.fpp +7 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/state_machine_instance/inside_passive.ref.txt +5 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/state_machine_instance/ok.fpp +18 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/state_machine_instance/ok.ref.txt +0 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/state_machine_instance/outside_active.fpp +8 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/state_machine_instance/outside_active.ref.txt +0 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/state_machine_instance/outside_passive.fpp +7 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/state_machine_instance/outside_passive.ref.txt +5 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/state_machine_instance/test.rs +36 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/state_machine_instance/undef_state_machine.fpp +5 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/state_machine_instance/undef_state_machine.ref.txt +14 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/structs/default_error.fpp +4 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/structs/default_error.ref.txt +7 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/structs/default_ok.fpp +19 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/structs/default_ok.ref.txt +0 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/structs/dictionary_not_displayable.fpp +2 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/structs/dictionary_not_displayable.ref.txt +5 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/structs/dictionary_ok.fpp +1 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/structs/dictionary_ok.ref.txt +0 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/structs/duplicate_names.fpp +5 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/structs/duplicate_names.ref.txt +10 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/structs/format_alias_not_numeric.fpp +6 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/structs/format_alias_not_numeric.ref.txt +10 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/structs/format_alias_numeric.fpp +2 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/structs/format_alias_numeric.ref.txt +0 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/structs/format_alias_ok.fpp +2 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/structs/format_alias_ok.ref.txt +0 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/structs/format_bad_syntax.fpp +1 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/structs/format_bad_syntax.ref.txt +12 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/structs/format_missing_repl.fpp +1 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/structs/format_missing_repl.ref.txt +5 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/structs/format_not_numeric.fpp +5 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/structs/format_not_numeric.ref.txt +10 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/structs/format_numeric.fpp +1 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/structs/format_numeric.ref.txt +0 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/structs/format_ok.fpp +1 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/structs/format_ok.ref.txt +0 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/structs/format_too_many_repls.fpp +1 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/structs/format_too_many_repls.ref.txt +10 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/structs/invalid_size.fpp +1 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/structs/invalid_size.ref.txt +7 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/structs/no_default_ok.fpp +1 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/structs/no_default_ok.ref.txt +0 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/structs/size_not_numeric.fpp +1 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/structs/size_not_numeric.ref.txt +7 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/structs/test.rs +86 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/system/duplicate.fpp +3 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/system/duplicate.ref.txt +12 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/system/invalid_component_instance.fpp +3 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/system/invalid_component_instance.ref.txt +10 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/system/invalid_module.fpp +2 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/system/invalid_module.ref.txt +10 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/system/not_deployment_topology.fpp +2 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/system/not_deployment_topology.ref.txt +10 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/system/ok.fpp +2 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/system/ok.ref.txt +0 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/system/test.rs +31 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/system/undefined.fpp +1 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/system/undefined.ref.txt +5 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/template/basic_constant.fpp +7 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/template/basic_constant.ref.txt +8 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/template/composition_invalid.fpp +11 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/template/composition_invalid.ref.txt +8 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/template/constant_with_default.fpp +21 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/template/constant_with_default.ref.txt +13 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/template/duplicate_def.fpp +8 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/template/duplicate_def.ref.txt +13 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/template/interfaces.fpp +48 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/template/interfaces.ref.txt +32 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/template/interfaces_basic.fpp +15 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/template/interfaces_basic.ref.txt +8 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/template/interfaces_invalid_port_instance.fpp +56 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/template/interfaces_invalid_port_instance.ref.txt +32 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/template/interfaces_invalid_port_instance_name.fpp +59 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/template/interfaces_invalid_port_instance_name.ref.txt +63 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/template/interfaces_invalid_port_instance_name_aliased.fpp +59 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/template/interfaces_invalid_port_instance_name_aliased.ref.txt +53 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/template/interfaces_valid_port_instance_name_aliased.fpp +59 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/template/interfaces_valid_port_instance_name_aliased.ref.txt +53 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/template/invalid_nested.fpp +22 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/template/invalid_nested.ref.txt +8 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/template/self_reference.fpp +7 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/template/self_reference.ref.txt +23 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/template/struct_parameter_anon_array_promote.fpp +10 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/template/struct_parameter_anon_array_promote.ref.txt +8 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/template/struct_parameter_bad_arg.fpp +10 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/template/struct_parameter_bad_arg.ref.txt +8 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/template/struct_parameter_bad_concat.fpp +10 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/template/struct_parameter_bad_concat.ref.txt +8 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/template/struct_parameter_concat_primitives_promote.fpp +13 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/template/struct_parameter_concat_primitives_promote.ref.txt +8 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/template/struct_parameter_ok.fpp +10 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/template/struct_parameter_ok.ref.txt +8 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/template/test.rs +101 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/template/types.fpp +26 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/template/types.ref.txt +18 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/template/undef_constant_param_type.fpp +1 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/template/undef_constant_param_type.ref.txt +8 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/template/undef_interface_param_type.fpp +1 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/template/undef_interface_param_type.ref.txt +8 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/tlm_channel/bad_id.fpp +5 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/tlm_channel/bad_id.ref.txt +16 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/tlm_channel/bad_limit_type.fpp +5 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/tlm_channel/bad_limit_type.ref.txt +16 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/tlm_channel/duplicate_id_explicit.fpp +7 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/tlm_channel/duplicate_id_explicit.ref.txt +10 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/tlm_channel/duplicate_id_implicit.fpp +9 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/tlm_channel/duplicate_id_implicit.ref.txt +10 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/tlm_channel/duplicate_limit_high.fpp +5 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/tlm_channel/duplicate_limit_high.ref.txt +10 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/tlm_channel/duplicate_limit_low.fpp +5 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/tlm_channel/duplicate_limit_low.ref.txt +10 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/tlm_channel/duplicate_name.fpp +6 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/tlm_channel/duplicate_name.ref.txt +10 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/tlm_channel/format_alias_not_numeric.fpp +7 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/tlm_channel/format_alias_not_numeric.ref.txt +19 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/tlm_channel/format_missing_repl.fpp +5 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/tlm_channel/format_missing_repl.ref.txt +14 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/tlm_channel/format_not_numeric.fpp +5 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/tlm_channel/format_not_numeric.ref.txt +19 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/tlm_channel/format_too_many_repls.fpp +5 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/tlm_channel/format_too_many_repls.ref.txt +14 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/tlm_channel/limit_not_numeric.fpp +5 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/tlm_channel/limit_not_numeric.ref.txt +23 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/tlm_channel/missing_ports.fpp +5 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/tlm_channel/missing_ports.ref.txt +9 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/tlm_channel/negative_id.fpp +5 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/tlm_channel/negative_id.ref.txt +7 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/tlm_channel/not_displayable.fpp +20 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/tlm_channel/not_displayable.ref.txt +5 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/tlm_channel/ok.fpp +35 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/tlm_channel/ok.ref.txt +0 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/tlm_channel/test.rs +81 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/tlm_packets/bad_channel.fpp +13 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/tlm_packets/bad_channel.ref.txt +5 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/tlm_packets/bad_omit_channel.fpp +11 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/tlm_packets/bad_omit_channel.ref.txt +5 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/tlm_packets/channel_instance_not_component_instance.fpp +23 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/tlm_packets/channel_instance_not_component_instance.ref.txt +14 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/tlm_packets/channel_neither_used_nor_omitted.fpp +13 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/tlm_packets/channel_neither_used_nor_omitted.ref.txt +21 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/tlm_packets/channel_used_and_omitted.fpp +15 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/tlm_packets/channel_used_and_omitted.ref.txt +23 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/tlm_packets/duplicate_id_explicit.fpp +18 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/tlm_packets/duplicate_id_explicit.ref.txt +14 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/tlm_packets/duplicate_id_implicit.fpp +18 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/tlm_packets/duplicate_id_implicit.ref.txt +14 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/tlm_packets/duplicate_packet_name.fpp +17 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/tlm_packets/duplicate_packet_name.ref.txt +14 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/tlm_packets/duplicate_set_name.fpp +11 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/tlm_packets/duplicate_set_name.ref.txt +14 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/tlm_packets/id_not_numeric.fpp +11 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/tlm_packets/id_not_numeric.ref.txt +7 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/tlm_packets/instance_not_defined.fpp +11 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/tlm_packets/instance_not_defined.ref.txt +5 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/tlm_packets/instance_not_in_topology.fpp +11 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/tlm_packets/instance_not_in_topology.ref.txt +5 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/tlm_packets/instances.fpp +25 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/tlm_packets/level_not_numeric.fpp +11 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/tlm_packets/level_not_numeric.ref.txt +7 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/tlm_packets/level_out_of_range.fpp +11 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/tlm_packets/level_out_of_range.ref.txt +7 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/tlm_packets/negative_id.fpp +11 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/tlm_packets/negative_id.ref.txt +7 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/tlm_packets/negative_level.fpp +11 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/tlm_packets/negative_level.ref.txt +7 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/tlm_packets/not_deployment_topology.fpp +5 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/tlm_packets/not_deployment_topology.ref.txt +9 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/tlm_packets/ok.fpp +40 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/tlm_packets/ok.ref.txt +0 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/tlm_packets/omit_instance_not_defined.fpp +9 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/tlm_packets/omit_instance_not_defined.ref.txt +5 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/tlm_packets/omit_instance_not_in_topology.fpp +9 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/tlm_packets/omit_instance_not_in_topology.ref.txt +5 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/tlm_packets/test.rs +134 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/top_import/basic.fpp +9 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/top_import/basic.ref.txt +0 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/top_import/deployment_topology.fpp +2 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/top_import/deployment_topology.ref.txt +10 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/top_import/duplicate_topology.fpp +10 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/top_import/duplicate_topology.ref.txt +10 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/top_import/instance_public.fpp +15 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/top_import/instance_public.ref.txt +0 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/top_import/test.rs +26 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/top_import/undef_topology.fpp +5 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/top_import/undef_topology.ref.txt +5 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/top_ports/basic.fpp +34 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/top_ports/basic.ref.txt +0 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/top_ports/implements.fpp +38 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/top_ports/implements.ref.txt +0 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/top_ports/implements_first_missing_port.fpp +21 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/top_ports/implements_first_missing_port.ref.txt +10 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/top_ports/implements_missing_port_beyond_four.fpp +23 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/top_ports/implements_missing_port_beyond_four.ref.txt +10 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/top_ports/implements_missing_port_import_order.fpp +26 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/top_ports/implements_missing_port_import_order.ref.txt +10 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/top_ports/implements_port_mismatch_1.fpp +38 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/top_ports/implements_port_mismatch_1.ref.txt +15 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/top_ports/implements_port_mismatch_2.fpp +29 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/top_ports/implements_port_mismatch_2.ref.txt +15 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/top_ports/implements_port_missing.fpp +39 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/top_ports/implements_port_missing.ref.txt +10 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/top_ports/interface_instance_not_member.fpp +35 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/top_ports/interface_instance_not_member.ref.txt +5 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/top_ports/internal_port.fpp +37 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/top_ports/internal_port.ref.txt +10 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/top_ports/nested.fpp +42 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/top_ports/nested.ref.txt +0 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/top_ports/out_to_out.fpp +34 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/top_ports/out_to_out.ref.txt +15 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/top_ports/test.rs +76 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/top_ports/top_to_top.fpp +40 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/top_ports/top_to_top.ref.txt +0 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/top_ports/unmatched_through_alias.fpp +42 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/top_ports/unmatched_through_alias.ref.txt +0 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/top_ports/unmatched_types.fpp +35 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/top_ports/unmatched_types.ref.txt +15 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/types/alias_dictionary_not_displayable.fpp +2 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/types/alias_dictionary_not_displayable.ref.txt +5 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/types/alias_dictionary_ok.fpp +1 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/types/alias_dictionary_ok.ref.txt +0 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/types/alias_type_ok.fpp +36 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/types/alias_type_ok.ref.txt +0 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/types/string_length_shadowed.fpp +9 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/types/string_length_shadowed.ref.txt +10 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/types/string_missing_default_size_constant.fpp +3 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/types/string_missing_default_size_constant.ref.txt +5 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/types/string_missing_fw_size_store_type.fpp +1 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/types/string_missing_fw_size_store_type.ref.txt +5 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/types/string_size_negative.fpp +3 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/types/string_size_negative.ref.txt +7 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/types/string_size_not_numeric.fpp +3 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/types/string_size_not_numeric.ref.txt +7 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/types/string_size_too_large.fpp +3 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/types/string_size_too_large.ref.txt +7 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/types/string_size_type_shadowed.fpp +7 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/types/string_size_type_shadowed.ref.txt +10 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/types/string_size_zero_ok.fpp +3 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/types/string_size_zero_ok.ref.txt +0 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/types/test.rs +61 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/types/uses_ok.fpp +24 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/types/uses_ok.ref.txt +0 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/unconnected/basic-unconnected.ref.txt +8 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/unconnected/basic.fpp +35 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/unconnected/basic.ref.txt +0 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/unconnected/internal-unconnected.ref.txt +0 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/unconnected/internal.fpp +17 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/unconnected/internal.ref.txt +0 -0
- fprime_fpp_python-3.3.14/fpp_analysis/tests/unconnected/test.rs +25 -0
- fprime_fpp_python-3.3.14/fpp_ast/Cargo.toml +13 -0
- fprime_fpp_python-3.3.14/fpp_ast/src/component.rs +245 -0
- fprime_fpp_python-3.3.14/fpp_ast/src/lib.rs +476 -0
- fprime_fpp_python-3.3.14/fpp_ast/src/node.rs +80 -0
- fprime_fpp_python-3.3.14/fpp_ast/src/state_machine.rs +134 -0
- fprime_fpp_python-3.3.14/fpp_ast/src/topology.rs +139 -0
- fprime_fpp_python-3.3.14/fpp_ast/src/visit.rs +436 -0
- fprime_fpp_python-3.3.14/fpp_core/Cargo.lock +7 -0
- fprime_fpp_python-3.3.14/fpp_core/Cargo.toml +14 -0
- fprime_fpp_python-3.3.14/fpp_core/src/context.rs +357 -0
- fprime_fpp_python-3.3.14/fpp_core/src/diagnostic.rs +93 -0
- fprime_fpp_python-3.3.14/fpp_core/src/error.rs +32 -0
- fprime_fpp_python-3.3.14/fpp_core/src/file.rs +125 -0
- fprime_fpp_python-3.3.14/fpp_core/src/interface.rs +361 -0
- fprime_fpp_python-3.3.14/fpp_core/src/lib.rs +18 -0
- fprime_fpp_python-3.3.14/fpp_core/src/map.rs +122 -0
- fprime_fpp_python-3.3.14/fpp_core/src/node.rs +49 -0
- fprime_fpp_python-3.3.14/fpp_core/src/span.rs +128 -0
- fprime_fpp_python-3.3.14/fpp_errors/Cargo.toml +14 -0
- fprime_fpp_python-3.3.14/fpp_errors/src/console.rs +40 -0
- fprime_fpp_python-3.3.14/fpp_errors/src/lib.rs +6 -0
- fprime_fpp_python-3.3.14/fpp_errors/src/snippet.rs +74 -0
- fprime_fpp_python-3.3.14/fpp_errors/src/write.rs +31 -0
- fprime_fpp_python-3.3.14/fpp_fs/Cargo.toml +12 -0
- fprime_fpp_python-3.3.14/fpp_fs/src/lib.rs +17 -0
- fprime_fpp_python-3.3.14/fpp_lexer/Cargo.toml +16 -0
- fprime_fpp_python-3.3.14/fpp_lexer/src/lexer.rs +606 -0
- fprime_fpp_python-3.3.14/fpp_lexer/src/lib.rs +8 -0
- fprime_fpp_python-3.3.14/fpp_lexer/src/tests.rs +229 -0
- fprime_fpp_python-3.3.14/fpp_lexer/src/token.rs +218 -0
- fprime_fpp_python-3.3.14/fpp_macros/Cargo.toml +20 -0
- fprime_fpp_python-3.3.14/fpp_macros/src/annotated.rs +136 -0
- fprime_fpp_python-3.3.14/fpp_macros/src/enum_map.rs +73 -0
- fprime_fpp_python-3.3.14/fpp_macros/src/lib.rs +177 -0
- fprime_fpp_python-3.3.14/fpp_macros/src/node.rs +157 -0
- fprime_fpp_python-3.3.14/fpp_macros/src/util.rs +30 -0
- fprime_fpp_python-3.3.14/fpp_macros/src/visitable.rs +219 -0
- fprime_fpp_python-3.3.14/fpp_parser/Cargo.lock +21 -0
- fprime_fpp_python-3.3.14/fpp_parser/Cargo.toml +21 -0
- fprime_fpp_python-3.3.14/fpp_parser/README.md +41 -0
- fprime_fpp_python-3.3.14/fpp_parser/src/cursor.rs +641 -0
- fprime_fpp_python-3.3.14/fpp_parser/src/error.rs +89 -0
- fprime_fpp_python-3.3.14/fpp_parser/src/include.rs +316 -0
- fprime_fpp_python-3.3.14/fpp_parser/src/lib.rs +9 -0
- fprime_fpp_python-3.3.14/fpp_parser/src/parser.rs +2793 -0
- fprime_fpp_python-3.3.14/fpp_parser/src/token.rs +44 -0
- fprime_fpp_python-3.3.14/fpp_parser/tests/channel.fppi +1 -0
- fprime_fpp_python-3.3.14/fpp_parser/tests/comments.fpp +19 -0
- fprime_fpp_python-3.3.14/fpp_parser/tests/comments.ref.txt +122 -0
- fprime_fpp_python-3.3.14/fpp_parser/tests/constant.fppi +3 -0
- fprime_fpp_python-3.3.14/fpp_parser/tests/cycle-1.fpp +1 -0
- fprime_fpp_python-3.3.14/fpp_parser/tests/cycle-1.ref.txt +9 -0
- fprime_fpp_python-3.3.14/fpp_parser/tests/cycle-2.fpp +1 -0
- fprime_fpp_python-3.3.14/fpp_parser/tests/cycle-2.ref.txt +9 -0
- fprime_fpp_python-3.3.14/fpp_parser/tests/cycle-3.fpp +1 -0
- fprime_fpp_python-3.3.14/fpp_parser/tests/cycle-3.ref.txt +9 -0
- fprime_fpp_python-3.3.14/fpp_parser/tests/embedded-tab.fpp +1 -0
- fprime_fpp_python-3.3.14/fpp_parser/tests/embedded-tab.ref.txt +5 -0
- fprime_fpp_python-3.3.14/fpp_parser/tests/empty.fpp +0 -0
- fprime_fpp_python-3.3.14/fpp_parser/tests/empty.ref.txt +3 -0
- fprime_fpp_python-3.3.14/fpp_parser/tests/escaped-strings.fpp +4 -0
- fprime_fpp_python-3.3.14/fpp_parser/tests/escaped-strings.ref.txt +96 -0
- fprime_fpp_python-3.3.14/fpp_parser/tests/expr-shift-sizeof.fpp +7 -0
- fprime_fpp_python-3.3.14/fpp_parser/tests/expr-shift-sizeof.ref.txt +240 -0
- fprime_fpp_python-3.3.14/fpp_parser/tests/illegal-character.fpp +4 -0
- fprime_fpp_python-3.3.14/fpp_parser/tests/illegal-character.ref.txt +25 -0
- fprime_fpp_python-3.3.14/fpp_parser/tests/include-component.fpp +5 -0
- fprime_fpp_python-3.3.14/fpp_parser/tests/include-component.ref.txt +49 -0
- fprime_fpp_python-3.3.14/fpp_parser/tests/include-constant-1.fpp +3 -0
- fprime_fpp_python-3.3.14/fpp_parser/tests/include-constant-1.ref.txt +73 -0
- fprime_fpp_python-3.3.14/fpp_parser/tests/include-constant-2.fppi +3 -0
- fprime_fpp_python-3.3.14/fpp_parser/tests/include-constant-3.fppi +1 -0
- fprime_fpp_python-3.3.14/fpp_parser/tests/include-missing-file.fpp +1 -0
- fprime_fpp_python-3.3.14/fpp_parser/tests/include-missing-file.ref.txt +5 -0
- fprime_fpp_python-3.3.14/fpp_parser/tests/include-module.fpp +5 -0
- fprime_fpp_python-3.3.14/fpp_parser/tests/include-module.ref.txt +48 -0
- fprime_fpp_python-3.3.14/fpp_parser/tests/include-parse-error.fpp +1 -0
- fprime_fpp_python-3.3.14/fpp_parser/tests/include-parse-error.ref.txt +34 -0
- fprime_fpp_python-3.3.14/fpp_parser/tests/include-subdir.fpp +1 -0
- fprime_fpp_python-3.3.14/fpp_parser/tests/include-subdir.ref.txt +33 -0
- fprime_fpp_python-3.3.14/fpp_parser/tests/include-topology.fpp +5 -0
- fprime_fpp_python-3.3.14/fpp_parser/tests/include-topology.ref.txt +40 -0
- fprime_fpp_python-3.3.14/fpp_parser/tests/instance.fppi +3 -0
- fprime_fpp_python-3.3.14/fpp_parser/tests/integration.rs +179 -0
- fprime_fpp_python-3.3.14/fpp_parser/tests/packet.fppi +6 -0
- fprime_fpp_python-3.3.14/fpp_parser/tests/parse-error.fpp +19 -0
- fprime_fpp_python-3.3.14/fpp_parser/tests/parse-error.ref.txt +34 -0
- fprime_fpp_python-3.3.14/fpp_parser/tests/state-machine-defs.fpp +25 -0
- fprime_fpp_python-3.3.14/fpp_parser/tests/state-machine-defs.ref.txt +412 -0
- fprime_fpp_python-3.3.14/fpp_parser/tests/state-machine.fpp +82 -0
- fprime_fpp_python-3.3.14/fpp_parser/tests/state-machine.ref.txt +857 -0
- fprime_fpp_python-3.3.14/fpp_parser/tests/subdir/constant.fppi +3 -0
- fprime_fpp_python-3.3.14/fpp_parser/tests/subdir/include-parent-dir.diff.txt +0 -0
- fprime_fpp_python-3.3.14/fpp_parser/tests/subdir/include-parent-dir.fpp +1 -0
- fprime_fpp_python-3.3.14/fpp_parser/tests/subdir/include-parent-dir.out.txt +5 -0
- fprime_fpp_python-3.3.14/fpp_parser/tests/subdir/include-parent-dir.ref.txt +5 -0
- fprime_fpp_python-3.3.14/fpp_parser/tests/syntax-kwd-names.fpp +5 -0
- fprime_fpp_python-3.3.14/fpp_parser/tests/syntax-kwd-names.ref.txt +191 -0
- fprime_fpp_python-3.3.14/fpp_parser/tests/syntax.fpp +314 -0
- fprime_fpp_python-3.3.14/fpp_parser/tests/syntax.ref.txt +3922 -0
- fprime_fpp_python-3.3.14/fpp_parser/tests/system.fpp +16 -0
- fprime_fpp_python-3.3.14/fpp_parser/tests/system.ref.txt +274 -0
- fprime_fpp_python-3.3.14/fpp_parser/tests/topology-ports.fpp +5 -0
- fprime_fpp_python-3.3.14/fpp_parser/tests/topology-ports.ref.txt +67 -0
- fprime_fpp_python-3.3.14/fpp_parser/tests/topology.fpp +180 -0
- fprime_fpp_python-3.3.14/fpp_parser/tests/topology.ref.txt +4389 -0
- fprime_fpp_python-3.3.14/fpp_python/Cargo.toml +54 -0
- fprime_fpp_python-3.3.14/fpp_python/Makefile +121 -0
- fprime_fpp_python-3.3.14/fpp_python/README.md +231 -0
- fprime_fpp_python-3.3.14/fpp_python/fpp.pyi +2819 -0
- fprime_fpp_python-3.3.14/fpp_python/src/ast/defs.rs +521 -0
- fprime_fpp_python-3.3.14/fpp_python/src/ast/mod.rs +13 -0
- fprime_fpp_python-3.3.14/fpp_python/src/bin/stub_gen.rs +114 -0
- fprime_fpp_python-3.3.14/fpp_python/src/diagnostics.rs +118 -0
- fprime_fpp_python-3.3.14/fpp_python/src/ir_core.rs +322 -0
- fprime_fpp_python-3.3.14/fpp_python/src/lib.rs +67 -0
- fprime_fpp_python-3.3.14/fpp_python/src/lower_core.rs +117 -0
- fprime_fpp_python-3.3.14/fpp_python/src/model.rs +273 -0
- fprime_fpp_python-3.3.14/fpp_python/src/noderef.rs +70 -0
- fprime_fpp_python-3.3.14/fpp_python/src/pipeline.rs +219 -0
- fprime_fpp_python-3.3.14/fpp_python/src/sem/defs.rs +1010 -0
- fprime_fpp_python-3.3.14/fpp_python/src/sem/hand.rs +87 -0
- fprime_fpp_python-3.3.14/fpp_python/src/sem/mod.rs +40 -0
- fprime_fpp_python-3.3.14/fpp_python/src/visitor.rs +158 -0
- fprime_fpp_python-3.3.14/fpp_python/tests/__init__.py +0 -0
- fprime_fpp_python-3.3.14/fpp_python/tests/commands/commands.fpp +47 -0
- fprime_fpp_python-3.3.14/fpp_python/tests/events/events.fpp +101 -0
- fprime_fpp_python-3.3.14/fpp_python/tests/includes/host.fpp +3 -0
- fprime_fpp_python-3.3.14/fpp_python/tests/includes/inc.fppi +1 -0
- fprime_fpp_python-3.3.14/fpp_python/tests/parameters/parameters.fpp +63 -0
- fprime_fpp_python-3.3.14/fpp_python/tests/ports/ports.fpp +73 -0
- fprime_fpp_python-3.3.14/fpp_python/tests/test_entities.py +120 -0
- fprime_fpp_python-3.3.14/fpp_python/tests/test_entrypoints.py +169 -0
- fprime_fpp_python-3.3.14/fpp_python/tests/test_method_params.py +278 -0
- fprime_fpp_python-3.3.14/fpp_python/tests/test_model_detail.py +197 -0
- fprime_fpp_python-3.3.14/fpp_python/tests/test_semantics_types.py +118 -0
- fprime_fpp_python-3.3.14/fpp_python/tests/test_semantics_values.py +100 -0
- fprime_fpp_python-3.3.14/fpp_python/tests/test_smoke.py +49 -0
- fprime_fpp_python-3.3.14/fpp_python/tests/test_transition_graph_choice.py +50 -0
- fprime_fpp_python-3.3.14/fpp_python/tests/test_visitor.py +378 -0
- fprime_fpp_python-3.3.14/fpp_python/tests/typing_check.py +217 -0
- fprime_fpp_python-3.3.14/fpp_python_macros/Cargo.toml +21 -0
- fprime_fpp_python-3.3.14/fpp_python_macros/src/ast_bindings.rs +1463 -0
- fprime_fpp_python-3.3.14/fpp_python_macros/src/lib.rs +38 -0
- fprime_fpp_python-3.3.14/fpp_python_macros/src/sem_bindings.rs +2880 -0
- fprime_fpp_python-3.3.14/fpp_util/Cargo.toml +11 -0
- fprime_fpp_python-3.3.14/fpp_util/src/lib.rs +13 -0
- fprime_fpp_python-3.3.14/pyproject.toml +32 -0
|
@@ -0,0 +1,2185 @@
|
|
|
1
|
+
# This file is automatically @generated by Cargo.
|
|
2
|
+
# It is not intended for manual editing.
|
|
3
|
+
version = 4
|
|
4
|
+
|
|
5
|
+
[[package]]
|
|
6
|
+
name = "aho-corasick"
|
|
7
|
+
version = "1.1.4"
|
|
8
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
9
|
+
checksum = "ddd31a130427c27518df266943a5308ed92d4b226cc639f5a8f1002816174301"
|
|
10
|
+
dependencies = [
|
|
11
|
+
"memchr",
|
|
12
|
+
]
|
|
13
|
+
|
|
14
|
+
[[package]]
|
|
15
|
+
name = "android_system_properties"
|
|
16
|
+
version = "0.1.5"
|
|
17
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
18
|
+
checksum = "819e7219dbd41043ac279b19830f2efc897156490d7fd6ea916720117ee66311"
|
|
19
|
+
dependencies = [
|
|
20
|
+
"libc",
|
|
21
|
+
]
|
|
22
|
+
|
|
23
|
+
[[package]]
|
|
24
|
+
name = "annotate-snippets"
|
|
25
|
+
version = "0.12.8"
|
|
26
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
27
|
+
checksum = "025c7edcdffa4ccc5c0905f472a0ae3759378cfbef88ef518a3575e19ae3aebd"
|
|
28
|
+
dependencies = [
|
|
29
|
+
"anstyle",
|
|
30
|
+
"unicode-width",
|
|
31
|
+
]
|
|
32
|
+
|
|
33
|
+
[[package]]
|
|
34
|
+
name = "anstream"
|
|
35
|
+
version = "0.6.21"
|
|
36
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
37
|
+
checksum = "43d5b281e737544384e969a5ccad3f1cdd24b48086a0fc1b2a5262a26b8f4f4a"
|
|
38
|
+
dependencies = [
|
|
39
|
+
"anstyle",
|
|
40
|
+
"anstyle-parse",
|
|
41
|
+
"anstyle-query",
|
|
42
|
+
"anstyle-wincon",
|
|
43
|
+
"colorchoice",
|
|
44
|
+
"is_terminal_polyfill",
|
|
45
|
+
"utf8parse",
|
|
46
|
+
]
|
|
47
|
+
|
|
48
|
+
[[package]]
|
|
49
|
+
name = "anstyle"
|
|
50
|
+
version = "1.0.13"
|
|
51
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
52
|
+
checksum = "5192cca8006f1fd4f7237516f40fa183bb07f8fbdfedaa0036de5ea9b0b45e78"
|
|
53
|
+
|
|
54
|
+
[[package]]
|
|
55
|
+
name = "anstyle-parse"
|
|
56
|
+
version = "0.2.7"
|
|
57
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
58
|
+
checksum = "4e7644824f0aa2c7b9384579234ef10eb7efb6a0deb83f9630a49594dd9c15c2"
|
|
59
|
+
dependencies = [
|
|
60
|
+
"utf8parse",
|
|
61
|
+
]
|
|
62
|
+
|
|
63
|
+
[[package]]
|
|
64
|
+
name = "anstyle-query"
|
|
65
|
+
version = "1.1.4"
|
|
66
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
67
|
+
checksum = "9e231f6134f61b71076a3eab506c379d4f36122f2af15a9ff04415ea4c3339e2"
|
|
68
|
+
dependencies = [
|
|
69
|
+
"windows-sys",
|
|
70
|
+
]
|
|
71
|
+
|
|
72
|
+
[[package]]
|
|
73
|
+
name = "anstyle-wincon"
|
|
74
|
+
version = "3.0.10"
|
|
75
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
76
|
+
checksum = "3e0633414522a32ffaac8ac6cc8f748e090c5717661fddeea04219e2344f5f2a"
|
|
77
|
+
dependencies = [
|
|
78
|
+
"anstyle",
|
|
79
|
+
"once_cell_polyfill",
|
|
80
|
+
"windows-sys",
|
|
81
|
+
]
|
|
82
|
+
|
|
83
|
+
[[package]]
|
|
84
|
+
name = "anyhow"
|
|
85
|
+
version = "1.0.104"
|
|
86
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
87
|
+
checksum = "330a5ed07fa54e4702c9d6c4174f74427fc0ef6e214bbd677ae50a5099946470"
|
|
88
|
+
|
|
89
|
+
[[package]]
|
|
90
|
+
name = "autocfg"
|
|
91
|
+
version = "1.5.0"
|
|
92
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
93
|
+
checksum = "c08606f8c3cbf4ce6ec8e28fb0014a2c086708fe954eaa885384a6165172e7e8"
|
|
94
|
+
|
|
95
|
+
[[package]]
|
|
96
|
+
name = "bitflags"
|
|
97
|
+
version = "1.3.2"
|
|
98
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
99
|
+
checksum = "bef38d45163c2f1dde094a7dfd33ccf595c92905c8f8f4fdc18d06fb1037718a"
|
|
100
|
+
|
|
101
|
+
[[package]]
|
|
102
|
+
name = "bstr"
|
|
103
|
+
version = "1.12.1"
|
|
104
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
105
|
+
checksum = "63044e1ae8e69f3b5a92c736ca6269b8d12fa7efe39bf34ddb06d102cf0e2cab"
|
|
106
|
+
dependencies = [
|
|
107
|
+
"memchr",
|
|
108
|
+
"serde",
|
|
109
|
+
]
|
|
110
|
+
|
|
111
|
+
[[package]]
|
|
112
|
+
name = "bumpalo"
|
|
113
|
+
version = "3.19.0"
|
|
114
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
115
|
+
checksum = "46c5e41b57b8bba42a04676d81cb89e9ee8e859a1a66f80a5a72e1cb76b34d43"
|
|
116
|
+
|
|
117
|
+
[[package]]
|
|
118
|
+
name = "camino"
|
|
119
|
+
version = "1.2.5"
|
|
120
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
121
|
+
checksum = "bb1307f12aa967b5a58416e87b3653360e0fd614a016b6e970db08fecbb1b80d"
|
|
122
|
+
dependencies = [
|
|
123
|
+
"serde_core",
|
|
124
|
+
]
|
|
125
|
+
|
|
126
|
+
[[package]]
|
|
127
|
+
name = "cargo-manifest"
|
|
128
|
+
version = "0.20.0"
|
|
129
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
130
|
+
checksum = "99c6f1c3eb197d17dde4f1a1170fbe7ce3e5f23f1166ae480875a9f4a9c11c40"
|
|
131
|
+
dependencies = [
|
|
132
|
+
"serde",
|
|
133
|
+
"thiserror",
|
|
134
|
+
"toml 0.8.23",
|
|
135
|
+
]
|
|
136
|
+
|
|
137
|
+
[[package]]
|
|
138
|
+
name = "cargo-platform"
|
|
139
|
+
version = "0.3.3"
|
|
140
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
141
|
+
checksum = "dd0061da739915fae12ea00e16397555ed4371a6bb285431aab930f61b0aa4ba"
|
|
142
|
+
dependencies = [
|
|
143
|
+
"serde",
|
|
144
|
+
"serde_core",
|
|
145
|
+
]
|
|
146
|
+
|
|
147
|
+
[[package]]
|
|
148
|
+
name = "cargo_metadata"
|
|
149
|
+
version = "0.23.1"
|
|
150
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
151
|
+
checksum = "ef987d17b0a113becdd19d3d0022d04d7ef41f9efe4f3fb63ac44ba61df3ade9"
|
|
152
|
+
dependencies = [
|
|
153
|
+
"camino",
|
|
154
|
+
"cargo-platform",
|
|
155
|
+
"semver",
|
|
156
|
+
"serde",
|
|
157
|
+
"serde_json",
|
|
158
|
+
"thiserror",
|
|
159
|
+
]
|
|
160
|
+
|
|
161
|
+
[[package]]
|
|
162
|
+
name = "cc"
|
|
163
|
+
version = "1.2.49"
|
|
164
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
165
|
+
checksum = "90583009037521a116abf44494efecd645ba48b6622457080f080b85544e2215"
|
|
166
|
+
dependencies = [
|
|
167
|
+
"find-msvc-tools",
|
|
168
|
+
"shlex",
|
|
169
|
+
]
|
|
170
|
+
|
|
171
|
+
[[package]]
|
|
172
|
+
name = "cfg-if"
|
|
173
|
+
version = "1.0.4"
|
|
174
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
175
|
+
checksum = "9330f8b2ff13f34540b44e946ef35111825727b38d33286ef986142615121801"
|
|
176
|
+
|
|
177
|
+
[[package]]
|
|
178
|
+
name = "chrono"
|
|
179
|
+
version = "0.4.45"
|
|
180
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
181
|
+
checksum = "1aa79e62e7697b8e29b513a68abacf485adcd1fe8284a4316c5ae868e6633327"
|
|
182
|
+
dependencies = [
|
|
183
|
+
"iana-time-zone",
|
|
184
|
+
"js-sys",
|
|
185
|
+
"num-traits",
|
|
186
|
+
"wasm-bindgen",
|
|
187
|
+
"windows-link",
|
|
188
|
+
]
|
|
189
|
+
|
|
190
|
+
[[package]]
|
|
191
|
+
name = "clap"
|
|
192
|
+
version = "4.5.60"
|
|
193
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
194
|
+
checksum = "2797f34da339ce31042b27d23607e051786132987f595b02ba4f6a6dffb7030a"
|
|
195
|
+
dependencies = [
|
|
196
|
+
"clap_builder",
|
|
197
|
+
"clap_derive",
|
|
198
|
+
]
|
|
199
|
+
|
|
200
|
+
[[package]]
|
|
201
|
+
name = "clap_builder"
|
|
202
|
+
version = "4.5.60"
|
|
203
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
204
|
+
checksum = "24a241312cea5059b13574bb9b3861cabf758b879c15190b37b6d6fd63ab6876"
|
|
205
|
+
dependencies = [
|
|
206
|
+
"anstream",
|
|
207
|
+
"anstyle",
|
|
208
|
+
"clap_lex",
|
|
209
|
+
"strsim",
|
|
210
|
+
]
|
|
211
|
+
|
|
212
|
+
[[package]]
|
|
213
|
+
name = "clap_derive"
|
|
214
|
+
version = "4.5.55"
|
|
215
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
216
|
+
checksum = "a92793da1a46a5f2a02a6f4c46c6496b28c43638adea8306fcb0caa1634f24e5"
|
|
217
|
+
dependencies = [
|
|
218
|
+
"heck",
|
|
219
|
+
"proc-macro2",
|
|
220
|
+
"quote",
|
|
221
|
+
"syn 2.0.119",
|
|
222
|
+
]
|
|
223
|
+
|
|
224
|
+
[[package]]
|
|
225
|
+
name = "clap_lex"
|
|
226
|
+
version = "1.0.0"
|
|
227
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
228
|
+
checksum = "3a822ea5bc7590f9d40f1ba12c0dc3c2760f3482c6984db1573ad11031420831"
|
|
229
|
+
|
|
230
|
+
[[package]]
|
|
231
|
+
name = "colorchoice"
|
|
232
|
+
version = "1.0.4"
|
|
233
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
234
|
+
checksum = "b05b61dc5112cbb17e4b6cd61790d9845d13888356391624cbe7e41efeac1e75"
|
|
235
|
+
|
|
236
|
+
[[package]]
|
|
237
|
+
name = "core-foundation-sys"
|
|
238
|
+
version = "0.8.7"
|
|
239
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
240
|
+
checksum = "773648b94d0e5d620f64f280777445740e61fe701025087ec8b57f45c791888b"
|
|
241
|
+
|
|
242
|
+
[[package]]
|
|
243
|
+
name = "countme"
|
|
244
|
+
version = "3.0.1"
|
|
245
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
246
|
+
checksum = "7704b5fdd17b18ae31c4c1da5a2e0305a2bf17b5249300a9ee9ed7b72114c636"
|
|
247
|
+
|
|
248
|
+
[[package]]
|
|
249
|
+
name = "crossbeam-channel"
|
|
250
|
+
version = "0.5.15"
|
|
251
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
252
|
+
checksum = "82b8f8f868b36967f9606790d1903570de9ceaf870a7bf9fbbd3016d636a2cb2"
|
|
253
|
+
dependencies = [
|
|
254
|
+
"crossbeam-utils",
|
|
255
|
+
]
|
|
256
|
+
|
|
257
|
+
[[package]]
|
|
258
|
+
name = "crossbeam-deque"
|
|
259
|
+
version = "0.8.6"
|
|
260
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
261
|
+
checksum = "9dd111b7b7f7d55b72c0a6ae361660ee5853c9af73f70c3c2ef6858b950e2e51"
|
|
262
|
+
dependencies = [
|
|
263
|
+
"crossbeam-epoch",
|
|
264
|
+
"crossbeam-utils",
|
|
265
|
+
]
|
|
266
|
+
|
|
267
|
+
[[package]]
|
|
268
|
+
name = "crossbeam-epoch"
|
|
269
|
+
version = "0.9.18"
|
|
270
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
271
|
+
checksum = "5b82ac4a3c2ca9c3460964f020e1402edd5753411d7737aa39c3714ad1b5420e"
|
|
272
|
+
dependencies = [
|
|
273
|
+
"crossbeam-utils",
|
|
274
|
+
]
|
|
275
|
+
|
|
276
|
+
[[package]]
|
|
277
|
+
name = "crossbeam-utils"
|
|
278
|
+
version = "0.8.21"
|
|
279
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
280
|
+
checksum = "d0a5c400df2834b80a4c3327b3aad3a4c4cd4de0629063962b03235697506a28"
|
|
281
|
+
|
|
282
|
+
[[package]]
|
|
283
|
+
name = "crunchy"
|
|
284
|
+
version = "0.2.4"
|
|
285
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
286
|
+
checksum = "460fbee9c2c2f33933d720630a6a0bac33ba7053db5344fac858d4b8952d77d5"
|
|
287
|
+
|
|
288
|
+
[[package]]
|
|
289
|
+
name = "deranged"
|
|
290
|
+
version = "0.5.8"
|
|
291
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
292
|
+
checksum = "7cd812cc2bc1d69d4764bd80df88b4317eaef9e773c75226407d9bc0876b211c"
|
|
293
|
+
|
|
294
|
+
[[package]]
|
|
295
|
+
name = "diff"
|
|
296
|
+
version = "0.1.13"
|
|
297
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
298
|
+
checksum = "56254986775e3233ffa9c4d7d3faaf6d36a2c09d30b20687e9f88bc8bafc16c8"
|
|
299
|
+
|
|
300
|
+
[[package]]
|
|
301
|
+
name = "displaydoc"
|
|
302
|
+
version = "0.2.7"
|
|
303
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
304
|
+
checksum = "c6232dd377dcc64799954cbd3a9bb882e9cdc1308ccd87b1c098f1fb2eaf82a8"
|
|
305
|
+
dependencies = [
|
|
306
|
+
"proc-macro2",
|
|
307
|
+
"quote",
|
|
308
|
+
"syn 3.0.3",
|
|
309
|
+
]
|
|
310
|
+
|
|
311
|
+
[[package]]
|
|
312
|
+
name = "drop_bomb"
|
|
313
|
+
version = "0.1.5"
|
|
314
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
315
|
+
checksum = "9bda8e21c04aca2ae33ffc2fd8c23134f3cac46db123ba97bd9d3f3b8a4a85e1"
|
|
316
|
+
|
|
317
|
+
[[package]]
|
|
318
|
+
name = "either"
|
|
319
|
+
version = "1.18.0"
|
|
320
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
321
|
+
checksum = "252afb9ae5eaa683babdc6a068b3f5726eb19e05070c731f9b2a23a7c3e8ed34"
|
|
322
|
+
|
|
323
|
+
[[package]]
|
|
324
|
+
name = "equivalent"
|
|
325
|
+
version = "1.0.2"
|
|
326
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
327
|
+
checksum = "877a4ace8713b0bcf2a4e7eec82529c029f1d0619886d18145fea96c3ffe5c0f"
|
|
328
|
+
|
|
329
|
+
[[package]]
|
|
330
|
+
name = "find-msvc-tools"
|
|
331
|
+
version = "0.1.5"
|
|
332
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
333
|
+
checksum = "3a3076410a55c90011c298b04d0cfa770b00fa04e1e3c97d3f6c9de105a03844"
|
|
334
|
+
|
|
335
|
+
[[package]]
|
|
336
|
+
name = "fluent-uri"
|
|
337
|
+
version = "0.1.4"
|
|
338
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
339
|
+
checksum = "17c704e9dbe1ddd863da1e6ff3567795087b1eb201ce80d8fa81162e1516500d"
|
|
340
|
+
dependencies = [
|
|
341
|
+
"bitflags",
|
|
342
|
+
]
|
|
343
|
+
|
|
344
|
+
[[package]]
|
|
345
|
+
name = "form_urlencoded"
|
|
346
|
+
version = "1.2.2"
|
|
347
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
348
|
+
checksum = "cb4cb245038516f5f85277875cdaa4f7d2c9a0fa0468de06ed190163b1581fcf"
|
|
349
|
+
dependencies = [
|
|
350
|
+
"percent-encoding",
|
|
351
|
+
]
|
|
352
|
+
|
|
353
|
+
[[package]]
|
|
354
|
+
name = "fpp"
|
|
355
|
+
version = "3.3.14"
|
|
356
|
+
dependencies = [
|
|
357
|
+
"fpp_analysis",
|
|
358
|
+
"fpp_core",
|
|
359
|
+
"fpp_errors",
|
|
360
|
+
"fpp_fs",
|
|
361
|
+
"fpp_parser",
|
|
362
|
+
]
|
|
363
|
+
|
|
364
|
+
[[package]]
|
|
365
|
+
name = "fpp_analysis"
|
|
366
|
+
version = "3.3.14"
|
|
367
|
+
dependencies = [
|
|
368
|
+
"fpp_ast",
|
|
369
|
+
"fpp_core",
|
|
370
|
+
"fpp_errors",
|
|
371
|
+
"fpp_fs",
|
|
372
|
+
"fpp_macros",
|
|
373
|
+
"fpp_parser",
|
|
374
|
+
"fpp_util",
|
|
375
|
+
"pretty_assertions",
|
|
376
|
+
"rustc-hash 2.1.1",
|
|
377
|
+
]
|
|
378
|
+
|
|
379
|
+
[[package]]
|
|
380
|
+
name = "fpp_ast"
|
|
381
|
+
version = "3.3.14"
|
|
382
|
+
dependencies = [
|
|
383
|
+
"fpp_core",
|
|
384
|
+
"fpp_macros",
|
|
385
|
+
]
|
|
386
|
+
|
|
387
|
+
[[package]]
|
|
388
|
+
name = "fpp_core"
|
|
389
|
+
version = "3.3.14"
|
|
390
|
+
dependencies = [
|
|
391
|
+
"line-index",
|
|
392
|
+
"rustc-hash 2.1.1",
|
|
393
|
+
"scoped-tls",
|
|
394
|
+
]
|
|
395
|
+
|
|
396
|
+
[[package]]
|
|
397
|
+
name = "fpp_diagram"
|
|
398
|
+
version = "3.3.14"
|
|
399
|
+
dependencies = [
|
|
400
|
+
"clap",
|
|
401
|
+
"fpp_analysis",
|
|
402
|
+
"fpp_ast",
|
|
403
|
+
"fpp_core",
|
|
404
|
+
"fpp_errors",
|
|
405
|
+
"fpp_fs",
|
|
406
|
+
"fpp_parser",
|
|
407
|
+
"pretty_assertions",
|
|
408
|
+
"rustc-hash 2.1.1",
|
|
409
|
+
"serde",
|
|
410
|
+
"serde_json",
|
|
411
|
+
]
|
|
412
|
+
|
|
413
|
+
[[package]]
|
|
414
|
+
name = "fpp_errors"
|
|
415
|
+
version = "3.3.14"
|
|
416
|
+
dependencies = [
|
|
417
|
+
"annotate-snippets",
|
|
418
|
+
"anstream",
|
|
419
|
+
"fpp_core",
|
|
420
|
+
]
|
|
421
|
+
|
|
422
|
+
[[package]]
|
|
423
|
+
name = "fpp_format"
|
|
424
|
+
version = "3.3.14"
|
|
425
|
+
dependencies = [
|
|
426
|
+
"clap",
|
|
427
|
+
"fpp_lsp_parser",
|
|
428
|
+
"pretty_assertions",
|
|
429
|
+
]
|
|
430
|
+
|
|
431
|
+
[[package]]
|
|
432
|
+
name = "fpp_fs"
|
|
433
|
+
version = "3.3.14"
|
|
434
|
+
dependencies = [
|
|
435
|
+
"fpp_core",
|
|
436
|
+
]
|
|
437
|
+
|
|
438
|
+
[[package]]
|
|
439
|
+
name = "fpp_lexer"
|
|
440
|
+
version = "3.3.14"
|
|
441
|
+
dependencies = [
|
|
442
|
+
"memchr",
|
|
443
|
+
"pretty_assertions",
|
|
444
|
+
"unicode-ident",
|
|
445
|
+
]
|
|
446
|
+
|
|
447
|
+
[[package]]
|
|
448
|
+
name = "fpp_lsp_parser"
|
|
449
|
+
version = "3.3.14"
|
|
450
|
+
dependencies = [
|
|
451
|
+
"drop_bomb",
|
|
452
|
+
"fpp_lexer",
|
|
453
|
+
"pretty_assertions",
|
|
454
|
+
"rowan",
|
|
455
|
+
]
|
|
456
|
+
|
|
457
|
+
[[package]]
|
|
458
|
+
name = "fpp_lsp_server"
|
|
459
|
+
version = "3.3.14"
|
|
460
|
+
dependencies = [
|
|
461
|
+
"anyhow",
|
|
462
|
+
"clap",
|
|
463
|
+
"crossbeam-channel",
|
|
464
|
+
"fpp_analysis",
|
|
465
|
+
"fpp_ast",
|
|
466
|
+
"fpp_core",
|
|
467
|
+
"fpp_diagram",
|
|
468
|
+
"fpp_errors",
|
|
469
|
+
"fpp_format",
|
|
470
|
+
"fpp_fs",
|
|
471
|
+
"fpp_lsp_parser",
|
|
472
|
+
"fpp_parser",
|
|
473
|
+
"ignore",
|
|
474
|
+
"lsp-server",
|
|
475
|
+
"lsp-types",
|
|
476
|
+
"percent-encoding",
|
|
477
|
+
"rustc-hash 2.1.1",
|
|
478
|
+
"serde",
|
|
479
|
+
"serde_json",
|
|
480
|
+
"serde_yaml_ng",
|
|
481
|
+
"tracing",
|
|
482
|
+
"tracing-subscriber",
|
|
483
|
+
"url",
|
|
484
|
+
]
|
|
485
|
+
|
|
486
|
+
[[package]]
|
|
487
|
+
name = "fpp_macros"
|
|
488
|
+
version = "3.3.14"
|
|
489
|
+
dependencies = [
|
|
490
|
+
"proc-macro2",
|
|
491
|
+
"quote",
|
|
492
|
+
"syn 2.0.119",
|
|
493
|
+
"synstructure",
|
|
494
|
+
]
|
|
495
|
+
|
|
496
|
+
[[package]]
|
|
497
|
+
name = "fpp_parser"
|
|
498
|
+
version = "3.3.14"
|
|
499
|
+
dependencies = [
|
|
500
|
+
"fpp_ast",
|
|
501
|
+
"fpp_core",
|
|
502
|
+
"fpp_errors",
|
|
503
|
+
"fpp_fs",
|
|
504
|
+
"fpp_lexer",
|
|
505
|
+
"pretty_assertions",
|
|
506
|
+
"rustc-hash 2.1.1",
|
|
507
|
+
]
|
|
508
|
+
|
|
509
|
+
[[package]]
|
|
510
|
+
name = "fpp_python"
|
|
511
|
+
version = "3.3.14"
|
|
512
|
+
dependencies = [
|
|
513
|
+
"fpp_analysis",
|
|
514
|
+
"fpp_ast",
|
|
515
|
+
"fpp_core",
|
|
516
|
+
"fpp_fs",
|
|
517
|
+
"fpp_parser",
|
|
518
|
+
"fpp_python_macros",
|
|
519
|
+
"pyo3",
|
|
520
|
+
"pyo3-stub-gen",
|
|
521
|
+
"rustc-hash 2.1.1",
|
|
522
|
+
]
|
|
523
|
+
|
|
524
|
+
[[package]]
|
|
525
|
+
name = "fpp_python_bindgen"
|
|
526
|
+
version = "3.3.14"
|
|
527
|
+
dependencies = [
|
|
528
|
+
"rustdoc-json",
|
|
529
|
+
"rustdoc-types",
|
|
530
|
+
"serde_json",
|
|
531
|
+
"syn 2.0.119",
|
|
532
|
+
]
|
|
533
|
+
|
|
534
|
+
[[package]]
|
|
535
|
+
name = "fpp_python_macros"
|
|
536
|
+
version = "3.3.14"
|
|
537
|
+
dependencies = [
|
|
538
|
+
"proc-macro2",
|
|
539
|
+
"quote",
|
|
540
|
+
"syn 2.0.119",
|
|
541
|
+
]
|
|
542
|
+
|
|
543
|
+
[[package]]
|
|
544
|
+
name = "fpp_util"
|
|
545
|
+
version = "3.3.14"
|
|
546
|
+
|
|
547
|
+
[[package]]
|
|
548
|
+
name = "getopts"
|
|
549
|
+
version = "0.2.24"
|
|
550
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
551
|
+
checksum = "cfe4fbac503b8d1f88e6676011885f34b7174f46e59956bba534ba83abded4df"
|
|
552
|
+
dependencies = [
|
|
553
|
+
"unicode-width",
|
|
554
|
+
]
|
|
555
|
+
|
|
556
|
+
[[package]]
|
|
557
|
+
name = "getrandom"
|
|
558
|
+
version = "0.2.17"
|
|
559
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
560
|
+
checksum = "ff2abc00be7fca6ebc474524697ae276ad847ad0a6b3faa4bcb027e9a4614ad0"
|
|
561
|
+
dependencies = [
|
|
562
|
+
"cfg-if",
|
|
563
|
+
"libc",
|
|
564
|
+
"wasi",
|
|
565
|
+
]
|
|
566
|
+
|
|
567
|
+
[[package]]
|
|
568
|
+
name = "globset"
|
|
569
|
+
version = "0.4.18"
|
|
570
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
571
|
+
checksum = "52dfc19153a48bde0cbd630453615c8151bce3a5adfac7a0aebfbf0a1e1f57e3"
|
|
572
|
+
dependencies = [
|
|
573
|
+
"aho-corasick",
|
|
574
|
+
"bstr",
|
|
575
|
+
"log",
|
|
576
|
+
"regex-automata",
|
|
577
|
+
"regex-syntax",
|
|
578
|
+
]
|
|
579
|
+
|
|
580
|
+
[[package]]
|
|
581
|
+
name = "hashbrown"
|
|
582
|
+
version = "0.14.5"
|
|
583
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
584
|
+
checksum = "e5274423e17b7c9fc20b6e7e208532f9b19825d82dfd615708b70edd83df41f1"
|
|
585
|
+
|
|
586
|
+
[[package]]
|
|
587
|
+
name = "hashbrown"
|
|
588
|
+
version = "0.17.1"
|
|
589
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
590
|
+
checksum = "ed5909b6e89a2db4456e54cd5f673791d7eca6732202bbf2a9cc504fe2f9b84a"
|
|
591
|
+
|
|
592
|
+
[[package]]
|
|
593
|
+
name = "heck"
|
|
594
|
+
version = "0.5.0"
|
|
595
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
596
|
+
checksum = "2304e00983f87ffb38b55b444b5e3b60a884b5d30c0fca7d82fe33449bbe55ea"
|
|
597
|
+
|
|
598
|
+
[[package]]
|
|
599
|
+
name = "iana-time-zone"
|
|
600
|
+
version = "0.1.64"
|
|
601
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
602
|
+
checksum = "33e57f83510bb73707521ebaffa789ec8caf86f9657cad665b092b581d40e9fb"
|
|
603
|
+
dependencies = [
|
|
604
|
+
"android_system_properties",
|
|
605
|
+
"core-foundation-sys",
|
|
606
|
+
"iana-time-zone-haiku",
|
|
607
|
+
"js-sys",
|
|
608
|
+
"log",
|
|
609
|
+
"wasm-bindgen",
|
|
610
|
+
"windows-core",
|
|
611
|
+
]
|
|
612
|
+
|
|
613
|
+
[[package]]
|
|
614
|
+
name = "iana-time-zone-haiku"
|
|
615
|
+
version = "0.1.2"
|
|
616
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
617
|
+
checksum = "f31827a206f56af32e590ba56d5d2d085f558508192593743f16b2306495269f"
|
|
618
|
+
dependencies = [
|
|
619
|
+
"cc",
|
|
620
|
+
]
|
|
621
|
+
|
|
622
|
+
[[package]]
|
|
623
|
+
name = "icu_collections"
|
|
624
|
+
version = "2.1.1"
|
|
625
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
626
|
+
checksum = "4c6b649701667bbe825c3b7e6388cb521c23d88644678e83c0c4d0a621a34b43"
|
|
627
|
+
dependencies = [
|
|
628
|
+
"displaydoc",
|
|
629
|
+
"potential_utf",
|
|
630
|
+
"yoke",
|
|
631
|
+
"zerofrom",
|
|
632
|
+
"zerovec",
|
|
633
|
+
]
|
|
634
|
+
|
|
635
|
+
[[package]]
|
|
636
|
+
name = "icu_locale_core"
|
|
637
|
+
version = "2.1.1"
|
|
638
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
639
|
+
checksum = "edba7861004dd3714265b4db54a3c390e880ab658fec5f7db895fae2046b5bb6"
|
|
640
|
+
dependencies = [
|
|
641
|
+
"displaydoc",
|
|
642
|
+
"litemap",
|
|
643
|
+
"tinystr",
|
|
644
|
+
"writeable",
|
|
645
|
+
"zerovec",
|
|
646
|
+
]
|
|
647
|
+
|
|
648
|
+
[[package]]
|
|
649
|
+
name = "icu_normalizer"
|
|
650
|
+
version = "2.1.1"
|
|
651
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
652
|
+
checksum = "5f6c8828b67bf8908d82127b2054ea1b4427ff0230ee9141c54251934ab1b599"
|
|
653
|
+
dependencies = [
|
|
654
|
+
"icu_collections",
|
|
655
|
+
"icu_normalizer_data",
|
|
656
|
+
"icu_properties",
|
|
657
|
+
"icu_provider",
|
|
658
|
+
"smallvec",
|
|
659
|
+
"zerovec",
|
|
660
|
+
]
|
|
661
|
+
|
|
662
|
+
[[package]]
|
|
663
|
+
name = "icu_normalizer_data"
|
|
664
|
+
version = "2.1.1"
|
|
665
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
666
|
+
checksum = "7aedcccd01fc5fe81e6b489c15b247b8b0690feb23304303a9e560f37efc560a"
|
|
667
|
+
|
|
668
|
+
[[package]]
|
|
669
|
+
name = "icu_properties"
|
|
670
|
+
version = "2.1.2"
|
|
671
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
672
|
+
checksum = "020bfc02fe870ec3a66d93e677ccca0562506e5872c650f893269e08615d74ec"
|
|
673
|
+
dependencies = [
|
|
674
|
+
"icu_collections",
|
|
675
|
+
"icu_locale_core",
|
|
676
|
+
"icu_properties_data",
|
|
677
|
+
"icu_provider",
|
|
678
|
+
"zerotrie",
|
|
679
|
+
"zerovec",
|
|
680
|
+
]
|
|
681
|
+
|
|
682
|
+
[[package]]
|
|
683
|
+
name = "icu_properties_data"
|
|
684
|
+
version = "2.1.2"
|
|
685
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
686
|
+
checksum = "616c294cf8d725c6afcd8f55abc17c56464ef6211f9ed59cccffe534129c77af"
|
|
687
|
+
|
|
688
|
+
[[package]]
|
|
689
|
+
name = "icu_provider"
|
|
690
|
+
version = "2.1.1"
|
|
691
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
692
|
+
checksum = "85962cf0ce02e1e0a629cc34e7ca3e373ce20dda4c4d7294bbd0bf1fdb59e614"
|
|
693
|
+
dependencies = [
|
|
694
|
+
"displaydoc",
|
|
695
|
+
"icu_locale_core",
|
|
696
|
+
"writeable",
|
|
697
|
+
"yoke",
|
|
698
|
+
"zerofrom",
|
|
699
|
+
"zerotrie",
|
|
700
|
+
"zerovec",
|
|
701
|
+
]
|
|
702
|
+
|
|
703
|
+
[[package]]
|
|
704
|
+
name = "idna"
|
|
705
|
+
version = "1.1.0"
|
|
706
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
707
|
+
checksum = "3b0875f23caa03898994f6ddc501886a45c7d3d62d04d2d90788d47be1b1e4de"
|
|
708
|
+
dependencies = [
|
|
709
|
+
"idna_adapter",
|
|
710
|
+
"smallvec",
|
|
711
|
+
"utf8_iter",
|
|
712
|
+
]
|
|
713
|
+
|
|
714
|
+
[[package]]
|
|
715
|
+
name = "idna_adapter"
|
|
716
|
+
version = "1.2.1"
|
|
717
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
718
|
+
checksum = "3acae9609540aa318d1bc588455225fb2085b9ed0c4f6bd0d9d5bcd86f1a0344"
|
|
719
|
+
dependencies = [
|
|
720
|
+
"icu_normalizer",
|
|
721
|
+
"icu_properties",
|
|
722
|
+
]
|
|
723
|
+
|
|
724
|
+
[[package]]
|
|
725
|
+
name = "ignore"
|
|
726
|
+
version = "0.4.25"
|
|
727
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
728
|
+
checksum = "d3d782a365a015e0f5c04902246139249abf769125006fbe7649e2ee88169b4a"
|
|
729
|
+
dependencies = [
|
|
730
|
+
"crossbeam-deque",
|
|
731
|
+
"globset",
|
|
732
|
+
"log",
|
|
733
|
+
"memchr",
|
|
734
|
+
"regex-automata",
|
|
735
|
+
"same-file",
|
|
736
|
+
"walkdir",
|
|
737
|
+
"winapi-util",
|
|
738
|
+
]
|
|
739
|
+
|
|
740
|
+
[[package]]
|
|
741
|
+
name = "indexmap"
|
|
742
|
+
version = "2.14.0"
|
|
743
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
744
|
+
checksum = "d466e9454f08e4a911e14806c24e16fba1b4c121d1ea474396f396069cf949d9"
|
|
745
|
+
dependencies = [
|
|
746
|
+
"equivalent",
|
|
747
|
+
"hashbrown 0.17.1",
|
|
748
|
+
]
|
|
749
|
+
|
|
750
|
+
[[package]]
|
|
751
|
+
name = "inventory"
|
|
752
|
+
version = "0.3.24"
|
|
753
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
754
|
+
checksum = "a4f0c30c76f2f4ccee3fe55a2435f691ca00c0e4bd87abe4f4a851b1d4dac39b"
|
|
755
|
+
dependencies = [
|
|
756
|
+
"rustversion",
|
|
757
|
+
]
|
|
758
|
+
|
|
759
|
+
[[package]]
|
|
760
|
+
name = "is-macro"
|
|
761
|
+
version = "0.3.8"
|
|
762
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
763
|
+
checksum = "8267aa6001e25494f3015f9663bbd88a18240c74483afa5f0934a1b3e4c388e9"
|
|
764
|
+
dependencies = [
|
|
765
|
+
"heck",
|
|
766
|
+
"proc-macro2",
|
|
767
|
+
"quote",
|
|
768
|
+
"syn 2.0.119",
|
|
769
|
+
]
|
|
770
|
+
|
|
771
|
+
[[package]]
|
|
772
|
+
name = "is_terminal_polyfill"
|
|
773
|
+
version = "1.70.2"
|
|
774
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
775
|
+
checksum = "a6cb138bb79a146c1bd460005623e142ef0181e3d0219cb493e02f7d08a35695"
|
|
776
|
+
|
|
777
|
+
[[package]]
|
|
778
|
+
name = "itertools"
|
|
779
|
+
version = "0.11.0"
|
|
780
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
781
|
+
checksum = "b1c173a5686ce8bfa551b3563d0c2170bf24ca44da99c7ca4bfdab5418c3fe57"
|
|
782
|
+
dependencies = [
|
|
783
|
+
"either",
|
|
784
|
+
]
|
|
785
|
+
|
|
786
|
+
[[package]]
|
|
787
|
+
name = "itertools"
|
|
788
|
+
version = "0.14.0"
|
|
789
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
790
|
+
checksum = "2b192c782037fadd9cfa75548310488aabdbf3d2da73885b31bd0abd03351285"
|
|
791
|
+
dependencies = [
|
|
792
|
+
"either",
|
|
793
|
+
]
|
|
794
|
+
|
|
795
|
+
[[package]]
|
|
796
|
+
name = "itoa"
|
|
797
|
+
version = "1.0.15"
|
|
798
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
799
|
+
checksum = "4a5f13b858c8d314ee3e8f639011f7ccefe71f97f96e50151fb991f267928e2c"
|
|
800
|
+
|
|
801
|
+
[[package]]
|
|
802
|
+
name = "js-sys"
|
|
803
|
+
version = "0.3.83"
|
|
804
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
805
|
+
checksum = "464a3709c7f55f1f721e5389aa6ea4e3bc6aba669353300af094b29ffbdde1d8"
|
|
806
|
+
dependencies = [
|
|
807
|
+
"once_cell",
|
|
808
|
+
"wasm-bindgen",
|
|
809
|
+
]
|
|
810
|
+
|
|
811
|
+
[[package]]
|
|
812
|
+
name = "lalrpop-util"
|
|
813
|
+
version = "0.20.2"
|
|
814
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
815
|
+
checksum = "507460a910eb7b32ee961886ff48539633b788a36b65692b95f225b844c82553"
|
|
816
|
+
|
|
817
|
+
[[package]]
|
|
818
|
+
name = "lazy_static"
|
|
819
|
+
version = "1.5.0"
|
|
820
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
821
|
+
checksum = "bbd2bcb4c963f2ddae06a2efc7e9f3591312473c50c6685e1f298068316e66fe"
|
|
822
|
+
|
|
823
|
+
[[package]]
|
|
824
|
+
name = "libc"
|
|
825
|
+
version = "0.2.178"
|
|
826
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
827
|
+
checksum = "37c93d8daa9d8a012fd8ab92f088405fb202ea0b6ab73ee2482ae66af4f42091"
|
|
828
|
+
|
|
829
|
+
[[package]]
|
|
830
|
+
name = "line-index"
|
|
831
|
+
version = "0.1.2"
|
|
832
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
833
|
+
checksum = "3e27e0ed5a392a7f5ba0b3808a2afccff16c64933312c84b57618b49d1209bd2"
|
|
834
|
+
dependencies = [
|
|
835
|
+
"nohash-hasher",
|
|
836
|
+
"text-size",
|
|
837
|
+
]
|
|
838
|
+
|
|
839
|
+
[[package]]
|
|
840
|
+
name = "litemap"
|
|
841
|
+
version = "0.8.3"
|
|
842
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
843
|
+
checksum = "47d9d19d1d6efa0109d2f65ff4c85cddd50bd572e5a00127ab10987290bcefae"
|
|
844
|
+
|
|
845
|
+
[[package]]
|
|
846
|
+
name = "log"
|
|
847
|
+
version = "0.4.34"
|
|
848
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
849
|
+
checksum = "f9f8bd3e56ce4dfc153cf470fffbfa98c7620958b312ca5c3a4b8d5181fd13c6"
|
|
850
|
+
|
|
851
|
+
[[package]]
|
|
852
|
+
name = "lsp-server"
|
|
853
|
+
version = "0.7.9"
|
|
854
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
855
|
+
checksum = "7d6ada348dbc2703cbe7637b2dda05cff84d3da2819c24abcb305dd613e0ba2e"
|
|
856
|
+
dependencies = [
|
|
857
|
+
"crossbeam-channel",
|
|
858
|
+
"log",
|
|
859
|
+
"serde",
|
|
860
|
+
"serde_derive",
|
|
861
|
+
"serde_json",
|
|
862
|
+
]
|
|
863
|
+
|
|
864
|
+
[[package]]
|
|
865
|
+
name = "lsp-types"
|
|
866
|
+
version = "0.97.0"
|
|
867
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
868
|
+
checksum = "53353550a17c04ac46c585feb189c2db82154fc84b79c7a66c96c2c644f66071"
|
|
869
|
+
dependencies = [
|
|
870
|
+
"bitflags",
|
|
871
|
+
"fluent-uri",
|
|
872
|
+
"serde",
|
|
873
|
+
"serde_json",
|
|
874
|
+
"serde_repr",
|
|
875
|
+
]
|
|
876
|
+
|
|
877
|
+
[[package]]
|
|
878
|
+
name = "maplit"
|
|
879
|
+
version = "1.0.2"
|
|
880
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
881
|
+
checksum = "3e2e65a1a2e43cfcb47a895c4c8b10d1f4a61097f9f254f183aee60cad9c651d"
|
|
882
|
+
|
|
883
|
+
[[package]]
|
|
884
|
+
name = "matchers"
|
|
885
|
+
version = "0.2.0"
|
|
886
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
887
|
+
checksum = "d1525a2a28c7f4fa0fc98bb91ae755d1e2d1505079e05539e35bc876b5d65ae9"
|
|
888
|
+
dependencies = [
|
|
889
|
+
"regex-automata",
|
|
890
|
+
]
|
|
891
|
+
|
|
892
|
+
[[package]]
|
|
893
|
+
name = "memchr"
|
|
894
|
+
version = "2.7.6"
|
|
895
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
896
|
+
checksum = "f52b00d39961fc5b2736ea853c9cc86238e165017a493d1d5c8eac6bdc4cc273"
|
|
897
|
+
|
|
898
|
+
[[package]]
|
|
899
|
+
name = "nohash-hasher"
|
|
900
|
+
version = "0.2.0"
|
|
901
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
902
|
+
checksum = "2bf50223579dc7cdcfb3bfcacf7069ff68243f8c363f62ffa99cf000a6b9c451"
|
|
903
|
+
|
|
904
|
+
[[package]]
|
|
905
|
+
name = "nu-ansi-term"
|
|
906
|
+
version = "0.50.3"
|
|
907
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
908
|
+
checksum = "7957b9740744892f114936ab4a57b3f487491bbeafaf8083688b16841a4240e5"
|
|
909
|
+
dependencies = [
|
|
910
|
+
"windows-sys",
|
|
911
|
+
]
|
|
912
|
+
|
|
913
|
+
[[package]]
|
|
914
|
+
name = "num-bigint"
|
|
915
|
+
version = "0.4.8"
|
|
916
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
917
|
+
checksum = "c89e69e7e0f03bea5ef08013795c25018e101932225a656383bd384495ecc367"
|
|
918
|
+
dependencies = [
|
|
919
|
+
"num-integer",
|
|
920
|
+
"num-traits",
|
|
921
|
+
]
|
|
922
|
+
|
|
923
|
+
[[package]]
|
|
924
|
+
name = "num-complex"
|
|
925
|
+
version = "0.4.6"
|
|
926
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
927
|
+
checksum = "73f88a1307638156682bada9d7604135552957b7818057dcef22705b4d509495"
|
|
928
|
+
dependencies = [
|
|
929
|
+
"num-traits",
|
|
930
|
+
]
|
|
931
|
+
|
|
932
|
+
[[package]]
|
|
933
|
+
name = "num-conv"
|
|
934
|
+
version = "0.2.2"
|
|
935
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
936
|
+
checksum = "521739c6d2bac4aa25192232afe6841231376b2b26d4d9fae5ecf8ca5772e441"
|
|
937
|
+
|
|
938
|
+
[[package]]
|
|
939
|
+
name = "num-integer"
|
|
940
|
+
version = "0.1.47"
|
|
941
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
942
|
+
checksum = "7ce2d95d4b3734dc35aa2f45e1aa22cd416814592a4f9d9205e11affd5b8e10b"
|
|
943
|
+
dependencies = [
|
|
944
|
+
"num-traits",
|
|
945
|
+
]
|
|
946
|
+
|
|
947
|
+
[[package]]
|
|
948
|
+
name = "num-traits"
|
|
949
|
+
version = "0.2.19"
|
|
950
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
951
|
+
checksum = "071dfc062690e90b734c0b2273ce72ad0ffa95f0c74596bc250dcfd960262841"
|
|
952
|
+
dependencies = [
|
|
953
|
+
"autocfg",
|
|
954
|
+
]
|
|
955
|
+
|
|
956
|
+
[[package]]
|
|
957
|
+
name = "once_cell"
|
|
958
|
+
version = "1.21.3"
|
|
959
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
960
|
+
checksum = "42f5e15c9953c5e4ccceeb2e7382a716482c34515315f7b03532b8b4e8393d2d"
|
|
961
|
+
|
|
962
|
+
[[package]]
|
|
963
|
+
name = "once_cell_polyfill"
|
|
964
|
+
version = "1.70.2"
|
|
965
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
966
|
+
checksum = "384b8ab6d37215f3c5301a95a4accb5d64aa607f1fcb26a11b5303878451b4fe"
|
|
967
|
+
|
|
968
|
+
[[package]]
|
|
969
|
+
name = "percent-encoding"
|
|
970
|
+
version = "2.3.2"
|
|
971
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
972
|
+
checksum = "9b4f627cb1b25917193a259e49bdad08f671f8d9708acfd5fe0a8c1455d87220"
|
|
973
|
+
|
|
974
|
+
[[package]]
|
|
975
|
+
name = "phf"
|
|
976
|
+
version = "0.11.3"
|
|
977
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
978
|
+
checksum = "1fd6780a80ae0c52cc120a26a1a42c1ae51b247a253e4e06113d23d2c2edd078"
|
|
979
|
+
dependencies = [
|
|
980
|
+
"phf_shared",
|
|
981
|
+
]
|
|
982
|
+
|
|
983
|
+
[[package]]
|
|
984
|
+
name = "phf_codegen"
|
|
985
|
+
version = "0.11.3"
|
|
986
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
987
|
+
checksum = "aef8048c789fa5e851558d709946d6d79a8ff88c0440c587967f8e94bfb1216a"
|
|
988
|
+
dependencies = [
|
|
989
|
+
"phf_generator",
|
|
990
|
+
"phf_shared",
|
|
991
|
+
]
|
|
992
|
+
|
|
993
|
+
[[package]]
|
|
994
|
+
name = "phf_generator"
|
|
995
|
+
version = "0.11.3"
|
|
996
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
997
|
+
checksum = "3c80231409c20246a13fddb31776fb942c38553c51e871f8cbd687a4cfb5843d"
|
|
998
|
+
dependencies = [
|
|
999
|
+
"phf_shared",
|
|
1000
|
+
"rand",
|
|
1001
|
+
]
|
|
1002
|
+
|
|
1003
|
+
[[package]]
|
|
1004
|
+
name = "phf_shared"
|
|
1005
|
+
version = "0.11.3"
|
|
1006
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1007
|
+
checksum = "67eabc2ef2a60eb7faa00097bd1ffdb5bd28e62bf39990626a582201b7a754e5"
|
|
1008
|
+
dependencies = [
|
|
1009
|
+
"siphasher",
|
|
1010
|
+
]
|
|
1011
|
+
|
|
1012
|
+
[[package]]
|
|
1013
|
+
name = "pin-project-lite"
|
|
1014
|
+
version = "0.2.16"
|
|
1015
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1016
|
+
checksum = "3b3cff922bd51709b605d9ead9aa71031d81447142d828eb4a6eba76fe619f9b"
|
|
1017
|
+
|
|
1018
|
+
[[package]]
|
|
1019
|
+
name = "portable-atomic"
|
|
1020
|
+
version = "1.15.0"
|
|
1021
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1022
|
+
checksum = "05c8b63e8d9609db387f0324918f81d68fe27748f084ef092fb35954d0539a85"
|
|
1023
|
+
|
|
1024
|
+
[[package]]
|
|
1025
|
+
name = "potential_utf"
|
|
1026
|
+
version = "0.1.4"
|
|
1027
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1028
|
+
checksum = "b73949432f5e2a09657003c25bca5e19a0e9c84f8058ca374f49e0ebe605af77"
|
|
1029
|
+
dependencies = [
|
|
1030
|
+
"zerovec",
|
|
1031
|
+
]
|
|
1032
|
+
|
|
1033
|
+
[[package]]
|
|
1034
|
+
name = "powerfmt"
|
|
1035
|
+
version = "0.2.0"
|
|
1036
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1037
|
+
checksum = "439ee305def115ba05938db6eb1644ff94165c5ab5e9420d1c1bcedbba909391"
|
|
1038
|
+
|
|
1039
|
+
[[package]]
|
|
1040
|
+
name = "ppv-lite86"
|
|
1041
|
+
version = "0.2.21"
|
|
1042
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1043
|
+
checksum = "85eae3c4ed2f50dcfe72643da4befc30deadb458a9b590d720cde2f2b1e97da9"
|
|
1044
|
+
dependencies = [
|
|
1045
|
+
"zerocopy",
|
|
1046
|
+
]
|
|
1047
|
+
|
|
1048
|
+
[[package]]
|
|
1049
|
+
name = "pretty_assertions"
|
|
1050
|
+
version = "1.4.1"
|
|
1051
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1052
|
+
checksum = "3ae130e2f271fbc2ac3a40fb1d07180839cdbbe443c7a27e1e3c13c5cac0116d"
|
|
1053
|
+
dependencies = [
|
|
1054
|
+
"diff",
|
|
1055
|
+
"yansi",
|
|
1056
|
+
]
|
|
1057
|
+
|
|
1058
|
+
[[package]]
|
|
1059
|
+
name = "proc-macro2"
|
|
1060
|
+
version = "1.0.107"
|
|
1061
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1062
|
+
checksum = "985e7ec9bb745e6ce6535b544d84d6cd6f7ad8bd711c398938ae983b91a766d9"
|
|
1063
|
+
dependencies = [
|
|
1064
|
+
"unicode-ident",
|
|
1065
|
+
]
|
|
1066
|
+
|
|
1067
|
+
[[package]]
|
|
1068
|
+
name = "pyo3"
|
|
1069
|
+
version = "0.29.2"
|
|
1070
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1071
|
+
checksum = "4688ddedf473e32662b9b067670129a8afb8c18e351482c70d62ba4a88171e8b"
|
|
1072
|
+
dependencies = [
|
|
1073
|
+
"inventory",
|
|
1074
|
+
"libc",
|
|
1075
|
+
"once_cell",
|
|
1076
|
+
"portable-atomic",
|
|
1077
|
+
"pyo3-build-config",
|
|
1078
|
+
"pyo3-ffi",
|
|
1079
|
+
"pyo3-macros",
|
|
1080
|
+
]
|
|
1081
|
+
|
|
1082
|
+
[[package]]
|
|
1083
|
+
name = "pyo3-build-config"
|
|
1084
|
+
version = "0.29.2"
|
|
1085
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1086
|
+
checksum = "f41027e41b4bd03f6e60f9f417fe24a6341a6bb744edd62b6f709f2a52ea30e9"
|
|
1087
|
+
dependencies = [
|
|
1088
|
+
"target-lexicon",
|
|
1089
|
+
]
|
|
1090
|
+
|
|
1091
|
+
[[package]]
|
|
1092
|
+
name = "pyo3-ffi"
|
|
1093
|
+
version = "0.29.2"
|
|
1094
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1095
|
+
checksum = "e591a95526fead067432c3b3a33fc74770b87b1e04e73671090d9c2055a2b327"
|
|
1096
|
+
dependencies = [
|
|
1097
|
+
"libc",
|
|
1098
|
+
"pyo3-build-config",
|
|
1099
|
+
]
|
|
1100
|
+
|
|
1101
|
+
[[package]]
|
|
1102
|
+
name = "pyo3-macros"
|
|
1103
|
+
version = "0.29.2"
|
|
1104
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1105
|
+
checksum = "73225868fc1cd84eef2c3c230ddb91273bf1de46aeb8a4248da76d32a0924a1c"
|
|
1106
|
+
dependencies = [
|
|
1107
|
+
"proc-macro2",
|
|
1108
|
+
"pyo3-macros-backend",
|
|
1109
|
+
"quote",
|
|
1110
|
+
"syn 2.0.119",
|
|
1111
|
+
]
|
|
1112
|
+
|
|
1113
|
+
[[package]]
|
|
1114
|
+
name = "pyo3-macros-backend"
|
|
1115
|
+
version = "0.29.2"
|
|
1116
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1117
|
+
checksum = "571575aa3749fa6216757dd47d2a3e7ef360f329a40f0666a9fbd14889024952"
|
|
1118
|
+
dependencies = [
|
|
1119
|
+
"heck",
|
|
1120
|
+
"proc-macro2",
|
|
1121
|
+
"quote",
|
|
1122
|
+
"syn 2.0.119",
|
|
1123
|
+
]
|
|
1124
|
+
|
|
1125
|
+
[[package]]
|
|
1126
|
+
name = "pyo3-stub-gen"
|
|
1127
|
+
version = "0.23.0"
|
|
1128
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1129
|
+
checksum = "a267ea4da9a831f534def7f1d8e14f581d5640d3e5af6527072724f216f4dbbf"
|
|
1130
|
+
dependencies = [
|
|
1131
|
+
"anyhow",
|
|
1132
|
+
"chrono",
|
|
1133
|
+
"indexmap",
|
|
1134
|
+
"inventory",
|
|
1135
|
+
"itertools 0.14.0",
|
|
1136
|
+
"log",
|
|
1137
|
+
"maplit",
|
|
1138
|
+
"num-complex",
|
|
1139
|
+
"pyo3",
|
|
1140
|
+
"pyo3-stub-gen-derive",
|
|
1141
|
+
"rustpython-parser",
|
|
1142
|
+
"serde",
|
|
1143
|
+
"serde_json",
|
|
1144
|
+
"time",
|
|
1145
|
+
"toml 1.1.4+spec-1.1.0",
|
|
1146
|
+
]
|
|
1147
|
+
|
|
1148
|
+
[[package]]
|
|
1149
|
+
name = "pyo3-stub-gen-derive"
|
|
1150
|
+
version = "0.23.0"
|
|
1151
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1152
|
+
checksum = "6573423a5e8cc43ec7565eccccbc2dd35e1fc9032d9ca404afab875429eb8cf0"
|
|
1153
|
+
dependencies = [
|
|
1154
|
+
"heck",
|
|
1155
|
+
"indexmap",
|
|
1156
|
+
"proc-macro2",
|
|
1157
|
+
"quote",
|
|
1158
|
+
"rustpython-parser",
|
|
1159
|
+
"syn 2.0.119",
|
|
1160
|
+
]
|
|
1161
|
+
|
|
1162
|
+
[[package]]
|
|
1163
|
+
name = "quote"
|
|
1164
|
+
version = "1.0.47"
|
|
1165
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1166
|
+
checksum = "1fbf4db142a473a8d80c26bbf18454ed458bf8d26c8219c331daecfdbd079001"
|
|
1167
|
+
dependencies = [
|
|
1168
|
+
"proc-macro2",
|
|
1169
|
+
]
|
|
1170
|
+
|
|
1171
|
+
[[package]]
|
|
1172
|
+
name = "rand"
|
|
1173
|
+
version = "0.8.8"
|
|
1174
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1175
|
+
checksum = "e058c7de0b26af77780c769414d6257830bb240f3c38477dbc2c16e5f54d6d4c"
|
|
1176
|
+
dependencies = [
|
|
1177
|
+
"libc",
|
|
1178
|
+
"rand_chacha",
|
|
1179
|
+
"rand_core",
|
|
1180
|
+
]
|
|
1181
|
+
|
|
1182
|
+
[[package]]
|
|
1183
|
+
name = "rand_chacha"
|
|
1184
|
+
version = "0.3.1"
|
|
1185
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1186
|
+
checksum = "e6c10a63a0fa32252be49d21e7709d4d4baf8d231c2dbce1eaa8141b9b127d88"
|
|
1187
|
+
dependencies = [
|
|
1188
|
+
"ppv-lite86",
|
|
1189
|
+
"rand_core",
|
|
1190
|
+
]
|
|
1191
|
+
|
|
1192
|
+
[[package]]
|
|
1193
|
+
name = "rand_core"
|
|
1194
|
+
version = "0.6.4"
|
|
1195
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1196
|
+
checksum = "ec0be4795e2f6a28069bec0b5ff3e2ac9bafc99e6a9a7dc3547996c5c816922c"
|
|
1197
|
+
dependencies = [
|
|
1198
|
+
"getrandom",
|
|
1199
|
+
]
|
|
1200
|
+
|
|
1201
|
+
[[package]]
|
|
1202
|
+
name = "regex-automata"
|
|
1203
|
+
version = "0.4.14"
|
|
1204
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1205
|
+
checksum = "6e1dd4122fc1595e8162618945476892eefca7b88c52820e74af6262213cae8f"
|
|
1206
|
+
dependencies = [
|
|
1207
|
+
"aho-corasick",
|
|
1208
|
+
"memchr",
|
|
1209
|
+
"regex-syntax",
|
|
1210
|
+
]
|
|
1211
|
+
|
|
1212
|
+
[[package]]
|
|
1213
|
+
name = "regex-syntax"
|
|
1214
|
+
version = "0.8.9"
|
|
1215
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1216
|
+
checksum = "a96887878f22d7bad8a3b6dc5b7440e0ada9a245242924394987b21cf2210a4c"
|
|
1217
|
+
|
|
1218
|
+
[[package]]
|
|
1219
|
+
name = "rowan"
|
|
1220
|
+
version = "0.16.1"
|
|
1221
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1222
|
+
checksum = "417a3a9f582e349834051b8a10c8d71ca88da4211e4093528e36b9845f6b5f21"
|
|
1223
|
+
dependencies = [
|
|
1224
|
+
"countme",
|
|
1225
|
+
"hashbrown 0.14.5",
|
|
1226
|
+
"rustc-hash 1.1.0",
|
|
1227
|
+
"text-size",
|
|
1228
|
+
]
|
|
1229
|
+
|
|
1230
|
+
[[package]]
|
|
1231
|
+
name = "rustc-hash"
|
|
1232
|
+
version = "1.1.0"
|
|
1233
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1234
|
+
checksum = "08d43f7aa6b08d49f382cde6a7982047c3426db949b1424bc4b7ec9ae12c6ce2"
|
|
1235
|
+
|
|
1236
|
+
[[package]]
|
|
1237
|
+
name = "rustc-hash"
|
|
1238
|
+
version = "2.1.1"
|
|
1239
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1240
|
+
checksum = "357703d41365b4b27c590e3ed91eabb1b663f07c4c084095e60cbed4362dff0d"
|
|
1241
|
+
|
|
1242
|
+
[[package]]
|
|
1243
|
+
name = "rustdoc-json"
|
|
1244
|
+
version = "0.9.10"
|
|
1245
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1246
|
+
checksum = "a9b2c5783825e93b4e3df439f1f98b8803f5912b2c2ce396a4c70eac909e558c"
|
|
1247
|
+
dependencies = [
|
|
1248
|
+
"cargo-manifest",
|
|
1249
|
+
"cargo_metadata",
|
|
1250
|
+
"serde",
|
|
1251
|
+
"thiserror",
|
|
1252
|
+
"toml 1.1.4+spec-1.1.0",
|
|
1253
|
+
"tracing",
|
|
1254
|
+
]
|
|
1255
|
+
|
|
1256
|
+
[[package]]
|
|
1257
|
+
name = "rustdoc-types"
|
|
1258
|
+
version = "0.57.0"
|
|
1259
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1260
|
+
checksum = "97a32214c8a67cec971ddea507040fb3d8ac485a2cbf29ecb0a502264ab3a873"
|
|
1261
|
+
dependencies = [
|
|
1262
|
+
"serde",
|
|
1263
|
+
"serde_derive",
|
|
1264
|
+
]
|
|
1265
|
+
|
|
1266
|
+
[[package]]
|
|
1267
|
+
name = "rustpython-ast"
|
|
1268
|
+
version = "0.4.0"
|
|
1269
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1270
|
+
checksum = "4cdaf8ee5c1473b993b398c174641d3aa9da847af36e8d5eb8291930b72f31a5"
|
|
1271
|
+
dependencies = [
|
|
1272
|
+
"is-macro",
|
|
1273
|
+
"num-bigint",
|
|
1274
|
+
"rustpython-parser-core",
|
|
1275
|
+
"static_assertions",
|
|
1276
|
+
]
|
|
1277
|
+
|
|
1278
|
+
[[package]]
|
|
1279
|
+
name = "rustpython-parser"
|
|
1280
|
+
version = "0.4.0"
|
|
1281
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1282
|
+
checksum = "868f724daac0caf9bd36d38caf45819905193a901e8f1c983345a68e18fb2abb"
|
|
1283
|
+
dependencies = [
|
|
1284
|
+
"anyhow",
|
|
1285
|
+
"is-macro",
|
|
1286
|
+
"itertools 0.11.0",
|
|
1287
|
+
"lalrpop-util",
|
|
1288
|
+
"log",
|
|
1289
|
+
"num-bigint",
|
|
1290
|
+
"num-traits",
|
|
1291
|
+
"phf",
|
|
1292
|
+
"phf_codegen",
|
|
1293
|
+
"rustc-hash 1.1.0",
|
|
1294
|
+
"rustpython-ast",
|
|
1295
|
+
"rustpython-parser-core",
|
|
1296
|
+
"tiny-keccak",
|
|
1297
|
+
"unic-emoji-char",
|
|
1298
|
+
"unic-ucd-ident",
|
|
1299
|
+
"unicode_names2",
|
|
1300
|
+
]
|
|
1301
|
+
|
|
1302
|
+
[[package]]
|
|
1303
|
+
name = "rustpython-parser-core"
|
|
1304
|
+
version = "0.4.0"
|
|
1305
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1306
|
+
checksum = "b4b6c12fa273825edc7bccd9a734f0ad5ba4b8a2f4da5ff7efe946f066d0f4ad"
|
|
1307
|
+
dependencies = [
|
|
1308
|
+
"is-macro",
|
|
1309
|
+
"memchr",
|
|
1310
|
+
"rustpython-parser-vendored",
|
|
1311
|
+
]
|
|
1312
|
+
|
|
1313
|
+
[[package]]
|
|
1314
|
+
name = "rustpython-parser-vendored"
|
|
1315
|
+
version = "0.4.0"
|
|
1316
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1317
|
+
checksum = "04fcea49a4630a3a5d940f4d514dc4f575ed63c14c3e3ed07146634aed7f67a6"
|
|
1318
|
+
dependencies = [
|
|
1319
|
+
"memchr",
|
|
1320
|
+
"once_cell",
|
|
1321
|
+
]
|
|
1322
|
+
|
|
1323
|
+
[[package]]
|
|
1324
|
+
name = "rustversion"
|
|
1325
|
+
version = "1.0.22"
|
|
1326
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1327
|
+
checksum = "b39cdef0fa800fc44525c84ccb54a029961a8215f9619753635a9c0d2538d46d"
|
|
1328
|
+
|
|
1329
|
+
[[package]]
|
|
1330
|
+
name = "ryu"
|
|
1331
|
+
version = "1.0.20"
|
|
1332
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1333
|
+
checksum = "28d3b2b1366ec20994f1fd18c3c594f05c5dd4bc44d8bb0c1c632c8d6829481f"
|
|
1334
|
+
|
|
1335
|
+
[[package]]
|
|
1336
|
+
name = "same-file"
|
|
1337
|
+
version = "1.0.6"
|
|
1338
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1339
|
+
checksum = "93fc1dc3aaa9bfed95e02e6eadabb4baf7e3078b0bd1b4d7b6b0b68378900502"
|
|
1340
|
+
dependencies = [
|
|
1341
|
+
"winapi-util",
|
|
1342
|
+
]
|
|
1343
|
+
|
|
1344
|
+
[[package]]
|
|
1345
|
+
name = "scoped-tls"
|
|
1346
|
+
version = "1.0.1"
|
|
1347
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1348
|
+
checksum = "e1cf6437eb19a8f4a6cc0f7dca544973b0b78843adbfeb3683d1a94a0024a294"
|
|
1349
|
+
|
|
1350
|
+
[[package]]
|
|
1351
|
+
name = "semver"
|
|
1352
|
+
version = "1.0.28"
|
|
1353
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1354
|
+
checksum = "8a7852d02fc848982e0c167ef163aaff9cd91dc640ba85e263cb1ce46fae51cd"
|
|
1355
|
+
dependencies = [
|
|
1356
|
+
"serde",
|
|
1357
|
+
"serde_core",
|
|
1358
|
+
]
|
|
1359
|
+
|
|
1360
|
+
[[package]]
|
|
1361
|
+
name = "serde"
|
|
1362
|
+
version = "1.0.228"
|
|
1363
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1364
|
+
checksum = "9a8e94ea7f378bd32cbbd37198a4a91436180c5bb472411e48b5ec2e2124ae9e"
|
|
1365
|
+
dependencies = [
|
|
1366
|
+
"serde_core",
|
|
1367
|
+
"serde_derive",
|
|
1368
|
+
]
|
|
1369
|
+
|
|
1370
|
+
[[package]]
|
|
1371
|
+
name = "serde_core"
|
|
1372
|
+
version = "1.0.228"
|
|
1373
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1374
|
+
checksum = "41d385c7d4ca58e59fc732af25c3983b67ac852c1a25000afe1175de458b67ad"
|
|
1375
|
+
dependencies = [
|
|
1376
|
+
"serde_derive",
|
|
1377
|
+
]
|
|
1378
|
+
|
|
1379
|
+
[[package]]
|
|
1380
|
+
name = "serde_derive"
|
|
1381
|
+
version = "1.0.228"
|
|
1382
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1383
|
+
checksum = "d540f220d3187173da220f885ab66608367b6574e925011a9353e4badda91d79"
|
|
1384
|
+
dependencies = [
|
|
1385
|
+
"proc-macro2",
|
|
1386
|
+
"quote",
|
|
1387
|
+
"syn 2.0.119",
|
|
1388
|
+
]
|
|
1389
|
+
|
|
1390
|
+
[[package]]
|
|
1391
|
+
name = "serde_json"
|
|
1392
|
+
version = "1.0.145"
|
|
1393
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1394
|
+
checksum = "402a6f66d8c709116cf22f558eab210f5a50187f702eb4d7e5ef38d9a7f1c79c"
|
|
1395
|
+
dependencies = [
|
|
1396
|
+
"itoa",
|
|
1397
|
+
"memchr",
|
|
1398
|
+
"ryu",
|
|
1399
|
+
"serde",
|
|
1400
|
+
"serde_core",
|
|
1401
|
+
]
|
|
1402
|
+
|
|
1403
|
+
[[package]]
|
|
1404
|
+
name = "serde_repr"
|
|
1405
|
+
version = "0.1.20"
|
|
1406
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1407
|
+
checksum = "175ee3e80ae9982737ca543e96133087cbd9a485eecc3bc4de9c1a37b47ea59c"
|
|
1408
|
+
dependencies = [
|
|
1409
|
+
"proc-macro2",
|
|
1410
|
+
"quote",
|
|
1411
|
+
"syn 2.0.119",
|
|
1412
|
+
]
|
|
1413
|
+
|
|
1414
|
+
[[package]]
|
|
1415
|
+
name = "serde_spanned"
|
|
1416
|
+
version = "0.6.9"
|
|
1417
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1418
|
+
checksum = "bf41e0cfaf7226dca15e8197172c295a782857fcb97fad1808a166870dee75a3"
|
|
1419
|
+
dependencies = [
|
|
1420
|
+
"serde",
|
|
1421
|
+
]
|
|
1422
|
+
|
|
1423
|
+
[[package]]
|
|
1424
|
+
name = "serde_spanned"
|
|
1425
|
+
version = "1.1.1"
|
|
1426
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1427
|
+
checksum = "6662b5879511e06e8999a8a235d848113e942c9124f211511b16466ee2995f26"
|
|
1428
|
+
dependencies = [
|
|
1429
|
+
"serde_core",
|
|
1430
|
+
]
|
|
1431
|
+
|
|
1432
|
+
[[package]]
|
|
1433
|
+
name = "serde_yaml_ng"
|
|
1434
|
+
version = "0.10.0"
|
|
1435
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1436
|
+
checksum = "7b4db627b98b36d4203a7b458cf3573730f2bb591b28871d916dfa9efabfd41f"
|
|
1437
|
+
dependencies = [
|
|
1438
|
+
"indexmap",
|
|
1439
|
+
"itoa",
|
|
1440
|
+
"ryu",
|
|
1441
|
+
"serde",
|
|
1442
|
+
"unsafe-libyaml",
|
|
1443
|
+
]
|
|
1444
|
+
|
|
1445
|
+
[[package]]
|
|
1446
|
+
name = "sharded-slab"
|
|
1447
|
+
version = "0.1.7"
|
|
1448
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1449
|
+
checksum = "f40ca3c46823713e0d4209592e8d6e826aa57e928f09752619fc696c499637f6"
|
|
1450
|
+
dependencies = [
|
|
1451
|
+
"lazy_static",
|
|
1452
|
+
]
|
|
1453
|
+
|
|
1454
|
+
[[package]]
|
|
1455
|
+
name = "shlex"
|
|
1456
|
+
version = "1.3.0"
|
|
1457
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1458
|
+
checksum = "0fda2ff0d084019ba4d7c6f371c95d8fd75ce3524c3cb8fb653a3023f6323e64"
|
|
1459
|
+
|
|
1460
|
+
[[package]]
|
|
1461
|
+
name = "siphasher"
|
|
1462
|
+
version = "1.0.3"
|
|
1463
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1464
|
+
checksum = "8ee5873ec9cce0195efcb7a4e9507a04cd49aec9c83d0389df45b1ef7ba2e649"
|
|
1465
|
+
|
|
1466
|
+
[[package]]
|
|
1467
|
+
name = "smallvec"
|
|
1468
|
+
version = "1.15.1"
|
|
1469
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1470
|
+
checksum = "67b1b7a3b5fe4f1376887184045fcf45c69e92af734b7aaddc05fb777b6fbd03"
|
|
1471
|
+
|
|
1472
|
+
[[package]]
|
|
1473
|
+
name = "stable_deref_trait"
|
|
1474
|
+
version = "1.2.1"
|
|
1475
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1476
|
+
checksum = "6ce2be8dc25455e1f91df71bfa12ad37d7af1092ae736f3a6cd0e37bc7810596"
|
|
1477
|
+
|
|
1478
|
+
[[package]]
|
|
1479
|
+
name = "static_assertions"
|
|
1480
|
+
version = "1.1.0"
|
|
1481
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1482
|
+
checksum = "a2eb9349b6444b326872e140eb1cf5e7c522154d69e7a0ffb0fb81c06b37543f"
|
|
1483
|
+
|
|
1484
|
+
[[package]]
|
|
1485
|
+
name = "strsim"
|
|
1486
|
+
version = "0.11.1"
|
|
1487
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1488
|
+
checksum = "7da8b5736845d9f2fcb837ea5d9e2628564b3b043a70948a3f0b778838c5fb4f"
|
|
1489
|
+
|
|
1490
|
+
[[package]]
|
|
1491
|
+
name = "syn"
|
|
1492
|
+
version = "2.0.119"
|
|
1493
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1494
|
+
checksum = "872831b642d1a07999a962a351ed35b955ea2cfc8f3862091e2a240a84f17297"
|
|
1495
|
+
dependencies = [
|
|
1496
|
+
"proc-macro2",
|
|
1497
|
+
"quote",
|
|
1498
|
+
"unicode-ident",
|
|
1499
|
+
]
|
|
1500
|
+
|
|
1501
|
+
[[package]]
|
|
1502
|
+
name = "syn"
|
|
1503
|
+
version = "3.0.3"
|
|
1504
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1505
|
+
checksum = "53e9bae58849f64dfa4f5d5ae372c8341f7305f82a3868709269343628b659a3"
|
|
1506
|
+
dependencies = [
|
|
1507
|
+
"proc-macro2",
|
|
1508
|
+
"quote",
|
|
1509
|
+
"unicode-ident",
|
|
1510
|
+
]
|
|
1511
|
+
|
|
1512
|
+
[[package]]
|
|
1513
|
+
name = "synstructure"
|
|
1514
|
+
version = "0.13.2"
|
|
1515
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1516
|
+
checksum = "728a70f3dbaf5bab7f0c4b1ac8d7ae5ea60a4b5549c8a5914361c99147a709d2"
|
|
1517
|
+
dependencies = [
|
|
1518
|
+
"proc-macro2",
|
|
1519
|
+
"quote",
|
|
1520
|
+
"syn 2.0.119",
|
|
1521
|
+
]
|
|
1522
|
+
|
|
1523
|
+
[[package]]
|
|
1524
|
+
name = "target-lexicon"
|
|
1525
|
+
version = "0.13.5"
|
|
1526
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1527
|
+
checksum = "adb6935a6f5c20170eeceb1a3835a49e12e19d792f6dd344ccc76a985ca5a6ca"
|
|
1528
|
+
|
|
1529
|
+
[[package]]
|
|
1530
|
+
name = "text-size"
|
|
1531
|
+
version = "1.1.1"
|
|
1532
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1533
|
+
checksum = "f18aa187839b2bdb1ad2fa35ead8c4c2976b64e4363c386d45ac0f7ee85c9233"
|
|
1534
|
+
|
|
1535
|
+
[[package]]
|
|
1536
|
+
name = "thiserror"
|
|
1537
|
+
version = "2.0.20"
|
|
1538
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1539
|
+
checksum = "ec86235f5fcc2a73650310756d2ac5b138a5780bbbdfae3eeccec992c435ba4f"
|
|
1540
|
+
dependencies = [
|
|
1541
|
+
"thiserror-impl",
|
|
1542
|
+
]
|
|
1543
|
+
|
|
1544
|
+
[[package]]
|
|
1545
|
+
name = "thiserror-impl"
|
|
1546
|
+
version = "2.0.20"
|
|
1547
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1548
|
+
checksum = "bc04cd3e1236dd4a98afca4569f2deb3f120e5422a4023be2cb683f8486292af"
|
|
1549
|
+
dependencies = [
|
|
1550
|
+
"proc-macro2",
|
|
1551
|
+
"quote",
|
|
1552
|
+
"syn 3.0.3",
|
|
1553
|
+
]
|
|
1554
|
+
|
|
1555
|
+
[[package]]
|
|
1556
|
+
name = "thread_local"
|
|
1557
|
+
version = "1.1.9"
|
|
1558
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1559
|
+
checksum = "f60246a4944f24f6e018aa17cdeffb7818b76356965d03b07d6a9886e8962185"
|
|
1560
|
+
dependencies = [
|
|
1561
|
+
"cfg-if",
|
|
1562
|
+
]
|
|
1563
|
+
|
|
1564
|
+
[[package]]
|
|
1565
|
+
name = "time"
|
|
1566
|
+
version = "0.3.55"
|
|
1567
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1568
|
+
checksum = "cdb87b95ec50ddfa440816d227a17b2ccbdda963a316a727fda0fc4334f7d134"
|
|
1569
|
+
dependencies = [
|
|
1570
|
+
"deranged",
|
|
1571
|
+
"num-conv",
|
|
1572
|
+
"powerfmt",
|
|
1573
|
+
"serde_core",
|
|
1574
|
+
"time-core",
|
|
1575
|
+
]
|
|
1576
|
+
|
|
1577
|
+
[[package]]
|
|
1578
|
+
name = "time-core"
|
|
1579
|
+
version = "0.1.9"
|
|
1580
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1581
|
+
checksum = "9e1c906769ad99c88eaa54e728060edef082f8e358ff32030cb7c7d315e81109"
|
|
1582
|
+
|
|
1583
|
+
[[package]]
|
|
1584
|
+
name = "tiny-keccak"
|
|
1585
|
+
version = "2.0.2"
|
|
1586
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1587
|
+
checksum = "2c9d3793400a45f954c52e73d068316d76b6f4e36977e3fcebb13a2721e80237"
|
|
1588
|
+
dependencies = [
|
|
1589
|
+
"crunchy",
|
|
1590
|
+
]
|
|
1591
|
+
|
|
1592
|
+
[[package]]
|
|
1593
|
+
name = "tinystr"
|
|
1594
|
+
version = "0.8.2"
|
|
1595
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1596
|
+
checksum = "42d3e9c45c09de15d06dd8acf5f4e0e399e85927b7f00711024eb7ae10fa4869"
|
|
1597
|
+
dependencies = [
|
|
1598
|
+
"displaydoc",
|
|
1599
|
+
"zerovec",
|
|
1600
|
+
]
|
|
1601
|
+
|
|
1602
|
+
[[package]]
|
|
1603
|
+
name = "toml"
|
|
1604
|
+
version = "0.8.23"
|
|
1605
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1606
|
+
checksum = "dc1beb996b9d83529a9e75c17a1686767d148d70663143c7854d8b4a09ced362"
|
|
1607
|
+
dependencies = [
|
|
1608
|
+
"indexmap",
|
|
1609
|
+
"serde",
|
|
1610
|
+
"serde_spanned 0.6.9",
|
|
1611
|
+
"toml_datetime 0.6.11",
|
|
1612
|
+
"toml_edit",
|
|
1613
|
+
]
|
|
1614
|
+
|
|
1615
|
+
[[package]]
|
|
1616
|
+
name = "toml"
|
|
1617
|
+
version = "1.1.4+spec-1.1.0"
|
|
1618
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1619
|
+
checksum = "3aace63f4bbcdfc2c965b059de67119c89c4017a70d633be6c104910f67056f5"
|
|
1620
|
+
dependencies = [
|
|
1621
|
+
"indexmap",
|
|
1622
|
+
"serde_core",
|
|
1623
|
+
"serde_spanned 1.1.1",
|
|
1624
|
+
"toml_datetime 1.1.1+spec-1.1.0",
|
|
1625
|
+
"toml_parser",
|
|
1626
|
+
"toml_writer",
|
|
1627
|
+
"winnow 1.0.4",
|
|
1628
|
+
]
|
|
1629
|
+
|
|
1630
|
+
[[package]]
|
|
1631
|
+
name = "toml_datetime"
|
|
1632
|
+
version = "0.6.11"
|
|
1633
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1634
|
+
checksum = "22cddaf88f4fbc13c51aebbf5f8eceb5c7c5a9da2ac40a13519eb5b0a0e8f11c"
|
|
1635
|
+
dependencies = [
|
|
1636
|
+
"serde",
|
|
1637
|
+
]
|
|
1638
|
+
|
|
1639
|
+
[[package]]
|
|
1640
|
+
name = "toml_datetime"
|
|
1641
|
+
version = "1.1.1+spec-1.1.0"
|
|
1642
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1643
|
+
checksum = "3165f65f62e28e0115a00b2ebdd37eb6f3b641855f9d636d3cd4103767159ad7"
|
|
1644
|
+
dependencies = [
|
|
1645
|
+
"serde_core",
|
|
1646
|
+
]
|
|
1647
|
+
|
|
1648
|
+
[[package]]
|
|
1649
|
+
name = "toml_edit"
|
|
1650
|
+
version = "0.22.27"
|
|
1651
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1652
|
+
checksum = "41fe8c660ae4257887cf66394862d21dbca4a6ddd26f04a3560410406a2f819a"
|
|
1653
|
+
dependencies = [
|
|
1654
|
+
"indexmap",
|
|
1655
|
+
"serde",
|
|
1656
|
+
"serde_spanned 0.6.9",
|
|
1657
|
+
"toml_datetime 0.6.11",
|
|
1658
|
+
"winnow 0.7.15",
|
|
1659
|
+
]
|
|
1660
|
+
|
|
1661
|
+
[[package]]
|
|
1662
|
+
name = "toml_parser"
|
|
1663
|
+
version = "1.1.3+spec-1.1.0"
|
|
1664
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1665
|
+
checksum = "1d38ac1cf9b95face32296c0a3ede1fdc270627c9d9c02a7274dd6d960dc4d56"
|
|
1666
|
+
dependencies = [
|
|
1667
|
+
"winnow 1.0.4",
|
|
1668
|
+
]
|
|
1669
|
+
|
|
1670
|
+
[[package]]
|
|
1671
|
+
name = "toml_writer"
|
|
1672
|
+
version = "1.1.2+spec-1.1.0"
|
|
1673
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1674
|
+
checksum = "7d56353a2a665ad0f41a421187180aab746c8c325620617ad883a99a1cbe66d2"
|
|
1675
|
+
|
|
1676
|
+
[[package]]
|
|
1677
|
+
name = "tracing"
|
|
1678
|
+
version = "0.1.44"
|
|
1679
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1680
|
+
checksum = "63e71662fa4b2a2c3a26f570f037eb95bb1f85397f3cd8076caed2f026a6d100"
|
|
1681
|
+
dependencies = [
|
|
1682
|
+
"pin-project-lite",
|
|
1683
|
+
"tracing-attributes",
|
|
1684
|
+
"tracing-core",
|
|
1685
|
+
]
|
|
1686
|
+
|
|
1687
|
+
[[package]]
|
|
1688
|
+
name = "tracing-attributes"
|
|
1689
|
+
version = "0.1.31"
|
|
1690
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1691
|
+
checksum = "7490cfa5ec963746568740651ac6781f701c9c5ea257c58e057f3ba8cf69e8da"
|
|
1692
|
+
dependencies = [
|
|
1693
|
+
"proc-macro2",
|
|
1694
|
+
"quote",
|
|
1695
|
+
"syn 2.0.119",
|
|
1696
|
+
]
|
|
1697
|
+
|
|
1698
|
+
[[package]]
|
|
1699
|
+
name = "tracing-core"
|
|
1700
|
+
version = "0.1.36"
|
|
1701
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1702
|
+
checksum = "db97caf9d906fbde555dd62fa95ddba9eecfd14cb388e4f491a66d74cd5fb79a"
|
|
1703
|
+
dependencies = [
|
|
1704
|
+
"once_cell",
|
|
1705
|
+
"valuable",
|
|
1706
|
+
]
|
|
1707
|
+
|
|
1708
|
+
[[package]]
|
|
1709
|
+
name = "tracing-log"
|
|
1710
|
+
version = "0.2.0"
|
|
1711
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1712
|
+
checksum = "ee855f1f400bd0e5c02d150ae5de3840039a3f54b025156404e34c23c03f47c3"
|
|
1713
|
+
dependencies = [
|
|
1714
|
+
"log",
|
|
1715
|
+
"once_cell",
|
|
1716
|
+
"tracing-core",
|
|
1717
|
+
]
|
|
1718
|
+
|
|
1719
|
+
[[package]]
|
|
1720
|
+
name = "tracing-subscriber"
|
|
1721
|
+
version = "0.3.22"
|
|
1722
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1723
|
+
checksum = "2f30143827ddab0d256fd843b7a66d164e9f271cfa0dde49142c5ca0ca291f1e"
|
|
1724
|
+
dependencies = [
|
|
1725
|
+
"chrono",
|
|
1726
|
+
"matchers",
|
|
1727
|
+
"nu-ansi-term",
|
|
1728
|
+
"once_cell",
|
|
1729
|
+
"regex-automata",
|
|
1730
|
+
"sharded-slab",
|
|
1731
|
+
"smallvec",
|
|
1732
|
+
"thread_local",
|
|
1733
|
+
"tracing",
|
|
1734
|
+
"tracing-core",
|
|
1735
|
+
"tracing-log",
|
|
1736
|
+
]
|
|
1737
|
+
|
|
1738
|
+
[[package]]
|
|
1739
|
+
name = "unic-char-property"
|
|
1740
|
+
version = "0.9.0"
|
|
1741
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1742
|
+
checksum = "a8c57a407d9b6fa02b4795eb81c5b6652060a15a7903ea981f3d723e6c0be221"
|
|
1743
|
+
dependencies = [
|
|
1744
|
+
"unic-char-range",
|
|
1745
|
+
]
|
|
1746
|
+
|
|
1747
|
+
[[package]]
|
|
1748
|
+
name = "unic-char-range"
|
|
1749
|
+
version = "0.9.0"
|
|
1750
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1751
|
+
checksum = "0398022d5f700414f6b899e10b8348231abf9173fa93144cbc1a43b9793c1fbc"
|
|
1752
|
+
|
|
1753
|
+
[[package]]
|
|
1754
|
+
name = "unic-common"
|
|
1755
|
+
version = "0.9.0"
|
|
1756
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1757
|
+
checksum = "80d7ff825a6a654ee85a63e80f92f054f904f21e7d12da4e22f9834a4aaa35bc"
|
|
1758
|
+
|
|
1759
|
+
[[package]]
|
|
1760
|
+
name = "unic-emoji-char"
|
|
1761
|
+
version = "0.9.0"
|
|
1762
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1763
|
+
checksum = "0b07221e68897210270a38bde4babb655869637af0f69407f96053a34f76494d"
|
|
1764
|
+
dependencies = [
|
|
1765
|
+
"unic-char-property",
|
|
1766
|
+
"unic-char-range",
|
|
1767
|
+
"unic-ucd-version",
|
|
1768
|
+
]
|
|
1769
|
+
|
|
1770
|
+
[[package]]
|
|
1771
|
+
name = "unic-ucd-ident"
|
|
1772
|
+
version = "0.9.0"
|
|
1773
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1774
|
+
checksum = "e230a37c0381caa9219d67cf063aa3a375ffed5bf541a452db16e744bdab6987"
|
|
1775
|
+
dependencies = [
|
|
1776
|
+
"unic-char-property",
|
|
1777
|
+
"unic-char-range",
|
|
1778
|
+
"unic-ucd-version",
|
|
1779
|
+
]
|
|
1780
|
+
|
|
1781
|
+
[[package]]
|
|
1782
|
+
name = "unic-ucd-version"
|
|
1783
|
+
version = "0.9.0"
|
|
1784
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1785
|
+
checksum = "96bd2f2237fe450fcd0a1d2f5f4e91711124f7857ba2e964247776ebeeb7b0c4"
|
|
1786
|
+
dependencies = [
|
|
1787
|
+
"unic-common",
|
|
1788
|
+
]
|
|
1789
|
+
|
|
1790
|
+
[[package]]
|
|
1791
|
+
name = "unicode-ident"
|
|
1792
|
+
version = "1.0.22"
|
|
1793
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1794
|
+
checksum = "9312f7c4f6ff9069b165498234ce8be658059c6728633667c526e27dc2cf1df5"
|
|
1795
|
+
|
|
1796
|
+
[[package]]
|
|
1797
|
+
name = "unicode-width"
|
|
1798
|
+
version = "0.2.2"
|
|
1799
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1800
|
+
checksum = "b4ac048d71ede7ee76d585517add45da530660ef4390e49b098733c6e897f254"
|
|
1801
|
+
|
|
1802
|
+
[[package]]
|
|
1803
|
+
name = "unicode_names2"
|
|
1804
|
+
version = "1.3.0"
|
|
1805
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1806
|
+
checksum = "d1673eca9782c84de5f81b82e4109dcfb3611c8ba0d52930ec4a9478f547b2dd"
|
|
1807
|
+
dependencies = [
|
|
1808
|
+
"phf",
|
|
1809
|
+
"unicode_names2_generator",
|
|
1810
|
+
]
|
|
1811
|
+
|
|
1812
|
+
[[package]]
|
|
1813
|
+
name = "unicode_names2_generator"
|
|
1814
|
+
version = "1.3.0"
|
|
1815
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1816
|
+
checksum = "b91e5b84611016120197efd7dc93ef76774f4e084cd73c9fb3ea4a86c570c56e"
|
|
1817
|
+
dependencies = [
|
|
1818
|
+
"getopts",
|
|
1819
|
+
"log",
|
|
1820
|
+
"phf_codegen",
|
|
1821
|
+
"rand",
|
|
1822
|
+
]
|
|
1823
|
+
|
|
1824
|
+
[[package]]
|
|
1825
|
+
name = "unsafe-libyaml"
|
|
1826
|
+
version = "0.2.11"
|
|
1827
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1828
|
+
checksum = "673aac59facbab8a9007c7f6108d11f63b603f7cabff99fabf650fea5c32b861"
|
|
1829
|
+
|
|
1830
|
+
[[package]]
|
|
1831
|
+
name = "url"
|
|
1832
|
+
version = "2.5.8"
|
|
1833
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1834
|
+
checksum = "ff67a8a4397373c3ef660812acab3268222035010ab8680ec4215f38ba3d0eed"
|
|
1835
|
+
dependencies = [
|
|
1836
|
+
"form_urlencoded",
|
|
1837
|
+
"idna",
|
|
1838
|
+
"percent-encoding",
|
|
1839
|
+
"serde",
|
|
1840
|
+
]
|
|
1841
|
+
|
|
1842
|
+
[[package]]
|
|
1843
|
+
name = "utf8_iter"
|
|
1844
|
+
version = "1.0.4"
|
|
1845
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1846
|
+
checksum = "b6c140620e7ffbb22c2dee59cafe6084a59b5ffc27a8859a5f0d494b5d52b6be"
|
|
1847
|
+
|
|
1848
|
+
[[package]]
|
|
1849
|
+
name = "utf8parse"
|
|
1850
|
+
version = "0.2.2"
|
|
1851
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1852
|
+
checksum = "06abde3611657adf66d383f00b093d7faecc7fa57071cce2578660c9f1010821"
|
|
1853
|
+
|
|
1854
|
+
[[package]]
|
|
1855
|
+
name = "valuable"
|
|
1856
|
+
version = "0.1.1"
|
|
1857
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1858
|
+
checksum = "ba73ea9cf16a25df0c8caa16c51acb937d5712a8429db78a3ee29d5dcacd3a65"
|
|
1859
|
+
|
|
1860
|
+
[[package]]
|
|
1861
|
+
name = "walkdir"
|
|
1862
|
+
version = "2.5.0"
|
|
1863
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1864
|
+
checksum = "29790946404f91d9c5d06f9874efddea1dc06c5efe94541a7d6863108e3a5e4b"
|
|
1865
|
+
dependencies = [
|
|
1866
|
+
"same-file",
|
|
1867
|
+
"winapi-util",
|
|
1868
|
+
]
|
|
1869
|
+
|
|
1870
|
+
[[package]]
|
|
1871
|
+
name = "wasi"
|
|
1872
|
+
version = "0.11.1+wasi-snapshot-preview1"
|
|
1873
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1874
|
+
checksum = "ccf3ec651a847eb01de73ccad15eb7d99f80485de043efb2f370cd654f4ea44b"
|
|
1875
|
+
|
|
1876
|
+
[[package]]
|
|
1877
|
+
name = "wasm-bindgen"
|
|
1878
|
+
version = "0.2.106"
|
|
1879
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1880
|
+
checksum = "0d759f433fa64a2d763d1340820e46e111a7a5ab75f993d1852d70b03dbb80fd"
|
|
1881
|
+
dependencies = [
|
|
1882
|
+
"cfg-if",
|
|
1883
|
+
"once_cell",
|
|
1884
|
+
"rustversion",
|
|
1885
|
+
"wasm-bindgen-macro",
|
|
1886
|
+
"wasm-bindgen-shared",
|
|
1887
|
+
]
|
|
1888
|
+
|
|
1889
|
+
[[package]]
|
|
1890
|
+
name = "wasm-bindgen-macro"
|
|
1891
|
+
version = "0.2.106"
|
|
1892
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1893
|
+
checksum = "48cb0d2638f8baedbc542ed444afc0644a29166f1595371af4fecf8ce1e7eeb3"
|
|
1894
|
+
dependencies = [
|
|
1895
|
+
"quote",
|
|
1896
|
+
"wasm-bindgen-macro-support",
|
|
1897
|
+
]
|
|
1898
|
+
|
|
1899
|
+
[[package]]
|
|
1900
|
+
name = "wasm-bindgen-macro-support"
|
|
1901
|
+
version = "0.2.106"
|
|
1902
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1903
|
+
checksum = "cefb59d5cd5f92d9dcf80e4683949f15ca4b511f4ac0a6e14d4e1ac60c6ecd40"
|
|
1904
|
+
dependencies = [
|
|
1905
|
+
"bumpalo",
|
|
1906
|
+
"proc-macro2",
|
|
1907
|
+
"quote",
|
|
1908
|
+
"syn 2.0.119",
|
|
1909
|
+
"wasm-bindgen-shared",
|
|
1910
|
+
]
|
|
1911
|
+
|
|
1912
|
+
[[package]]
|
|
1913
|
+
name = "wasm-bindgen-shared"
|
|
1914
|
+
version = "0.2.106"
|
|
1915
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1916
|
+
checksum = "cbc538057e648b67f72a982e708d485b2efa771e1ac05fec311f9f63e5800db4"
|
|
1917
|
+
dependencies = [
|
|
1918
|
+
"unicode-ident",
|
|
1919
|
+
]
|
|
1920
|
+
|
|
1921
|
+
[[package]]
|
|
1922
|
+
name = "winapi-util"
|
|
1923
|
+
version = "0.1.11"
|
|
1924
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1925
|
+
checksum = "c2a7b1c03c876122aa43f3020e6c3c3ee5c05081c9a00739faf7503aeba10d22"
|
|
1926
|
+
dependencies = [
|
|
1927
|
+
"windows-sys",
|
|
1928
|
+
]
|
|
1929
|
+
|
|
1930
|
+
[[package]]
|
|
1931
|
+
name = "windows-core"
|
|
1932
|
+
version = "0.62.2"
|
|
1933
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1934
|
+
checksum = "b8e83a14d34d0623b51dce9581199302a221863196a1dde71a7663a4c2be9deb"
|
|
1935
|
+
dependencies = [
|
|
1936
|
+
"windows-implement",
|
|
1937
|
+
"windows-interface",
|
|
1938
|
+
"windows-link",
|
|
1939
|
+
"windows-result",
|
|
1940
|
+
"windows-strings",
|
|
1941
|
+
]
|
|
1942
|
+
|
|
1943
|
+
[[package]]
|
|
1944
|
+
name = "windows-implement"
|
|
1945
|
+
version = "0.60.2"
|
|
1946
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1947
|
+
checksum = "053e2e040ab57b9dc951b72c264860db7eb3b0200ba345b4e4c3b14f67855ddf"
|
|
1948
|
+
dependencies = [
|
|
1949
|
+
"proc-macro2",
|
|
1950
|
+
"quote",
|
|
1951
|
+
"syn 2.0.119",
|
|
1952
|
+
]
|
|
1953
|
+
|
|
1954
|
+
[[package]]
|
|
1955
|
+
name = "windows-interface"
|
|
1956
|
+
version = "0.59.3"
|
|
1957
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1958
|
+
checksum = "3f316c4a2570ba26bbec722032c4099d8c8bc095efccdc15688708623367e358"
|
|
1959
|
+
dependencies = [
|
|
1960
|
+
"proc-macro2",
|
|
1961
|
+
"quote",
|
|
1962
|
+
"syn 2.0.119",
|
|
1963
|
+
]
|
|
1964
|
+
|
|
1965
|
+
[[package]]
|
|
1966
|
+
name = "windows-link"
|
|
1967
|
+
version = "0.2.1"
|
|
1968
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1969
|
+
checksum = "f0805222e57f7521d6a62e36fa9163bc891acd422f971defe97d64e70d0a4fe5"
|
|
1970
|
+
|
|
1971
|
+
[[package]]
|
|
1972
|
+
name = "windows-result"
|
|
1973
|
+
version = "0.4.1"
|
|
1974
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1975
|
+
checksum = "7781fa89eaf60850ac3d2da7af8e5242a5ea78d1a11c49bf2910bb5a73853eb5"
|
|
1976
|
+
dependencies = [
|
|
1977
|
+
"windows-link",
|
|
1978
|
+
]
|
|
1979
|
+
|
|
1980
|
+
[[package]]
|
|
1981
|
+
name = "windows-strings"
|
|
1982
|
+
version = "0.5.1"
|
|
1983
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1984
|
+
checksum = "7837d08f69c77cf6b07689544538e017c1bfcf57e34b4c0ff58e6c2cd3b37091"
|
|
1985
|
+
dependencies = [
|
|
1986
|
+
"windows-link",
|
|
1987
|
+
]
|
|
1988
|
+
|
|
1989
|
+
[[package]]
|
|
1990
|
+
name = "windows-sys"
|
|
1991
|
+
version = "0.60.2"
|
|
1992
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1993
|
+
checksum = "f2f500e4d28234f72040990ec9d39e3a6b950f9f22d3dba18416c35882612bcb"
|
|
1994
|
+
dependencies = [
|
|
1995
|
+
"windows-targets",
|
|
1996
|
+
]
|
|
1997
|
+
|
|
1998
|
+
[[package]]
|
|
1999
|
+
name = "windows-targets"
|
|
2000
|
+
version = "0.53.5"
|
|
2001
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2002
|
+
checksum = "4945f9f551b88e0d65f3db0bc25c33b8acea4d9e41163edf90dcd0b19f9069f3"
|
|
2003
|
+
dependencies = [
|
|
2004
|
+
"windows-link",
|
|
2005
|
+
"windows_aarch64_gnullvm",
|
|
2006
|
+
"windows_aarch64_msvc",
|
|
2007
|
+
"windows_i686_gnu",
|
|
2008
|
+
"windows_i686_gnullvm",
|
|
2009
|
+
"windows_i686_msvc",
|
|
2010
|
+
"windows_x86_64_gnu",
|
|
2011
|
+
"windows_x86_64_gnullvm",
|
|
2012
|
+
"windows_x86_64_msvc",
|
|
2013
|
+
]
|
|
2014
|
+
|
|
2015
|
+
[[package]]
|
|
2016
|
+
name = "windows_aarch64_gnullvm"
|
|
2017
|
+
version = "0.53.1"
|
|
2018
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2019
|
+
checksum = "a9d8416fa8b42f5c947f8482c43e7d89e73a173cead56d044f6a56104a6d1b53"
|
|
2020
|
+
|
|
2021
|
+
[[package]]
|
|
2022
|
+
name = "windows_aarch64_msvc"
|
|
2023
|
+
version = "0.53.1"
|
|
2024
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2025
|
+
checksum = "b9d782e804c2f632e395708e99a94275910eb9100b2114651e04744e9b125006"
|
|
2026
|
+
|
|
2027
|
+
[[package]]
|
|
2028
|
+
name = "windows_i686_gnu"
|
|
2029
|
+
version = "0.53.1"
|
|
2030
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2031
|
+
checksum = "960e6da069d81e09becb0ca57a65220ddff016ff2d6af6a223cf372a506593a3"
|
|
2032
|
+
|
|
2033
|
+
[[package]]
|
|
2034
|
+
name = "windows_i686_gnullvm"
|
|
2035
|
+
version = "0.53.1"
|
|
2036
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2037
|
+
checksum = "fa7359d10048f68ab8b09fa71c3daccfb0e9b559aed648a8f95469c27057180c"
|
|
2038
|
+
|
|
2039
|
+
[[package]]
|
|
2040
|
+
name = "windows_i686_msvc"
|
|
2041
|
+
version = "0.53.1"
|
|
2042
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2043
|
+
checksum = "1e7ac75179f18232fe9c285163565a57ef8d3c89254a30685b57d83a38d326c2"
|
|
2044
|
+
|
|
2045
|
+
[[package]]
|
|
2046
|
+
name = "windows_x86_64_gnu"
|
|
2047
|
+
version = "0.53.1"
|
|
2048
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2049
|
+
checksum = "9c3842cdd74a865a8066ab39c8a7a473c0778a3f29370b5fd6b4b9aa7df4a499"
|
|
2050
|
+
|
|
2051
|
+
[[package]]
|
|
2052
|
+
name = "windows_x86_64_gnullvm"
|
|
2053
|
+
version = "0.53.1"
|
|
2054
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2055
|
+
checksum = "0ffa179e2d07eee8ad8f57493436566c7cc30ac536a3379fdf008f47f6bb7ae1"
|
|
2056
|
+
|
|
2057
|
+
[[package]]
|
|
2058
|
+
name = "windows_x86_64_msvc"
|
|
2059
|
+
version = "0.53.1"
|
|
2060
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2061
|
+
checksum = "d6bbff5f0aada427a1e5a6da5f1f98158182f26556f345ac9e04d36d0ebed650"
|
|
2062
|
+
|
|
2063
|
+
[[package]]
|
|
2064
|
+
name = "winnow"
|
|
2065
|
+
version = "0.7.15"
|
|
2066
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2067
|
+
checksum = "df79d97927682d2fd8adb29682d1140b343be4ac0f08fd68b7765d9c059d3945"
|
|
2068
|
+
dependencies = [
|
|
2069
|
+
"memchr",
|
|
2070
|
+
]
|
|
2071
|
+
|
|
2072
|
+
[[package]]
|
|
2073
|
+
name = "winnow"
|
|
2074
|
+
version = "1.0.4"
|
|
2075
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2076
|
+
checksum = "23b97319f7b8343df12cc98938e5c3eb436064524c8d2b4e30a1d3a36eecdf81"
|
|
2077
|
+
|
|
2078
|
+
[[package]]
|
|
2079
|
+
name = "writeable"
|
|
2080
|
+
version = "0.6.4"
|
|
2081
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2082
|
+
checksum = "3ad82d2a33cdc9674dc7465672f271e096168fcdbe0f799d9e6db8c5892679dc"
|
|
2083
|
+
|
|
2084
|
+
[[package]]
|
|
2085
|
+
name = "yansi"
|
|
2086
|
+
version = "1.0.1"
|
|
2087
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2088
|
+
checksum = "cfe53a6657fd280eaa890a3bc59152892ffa3e30101319d168b781ed6529b049"
|
|
2089
|
+
|
|
2090
|
+
[[package]]
|
|
2091
|
+
name = "yoke"
|
|
2092
|
+
version = "0.8.1"
|
|
2093
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2094
|
+
checksum = "72d6e5c6afb84d73944e5cedb052c4680d5657337201555f9f2a16b7406d4954"
|
|
2095
|
+
dependencies = [
|
|
2096
|
+
"stable_deref_trait",
|
|
2097
|
+
"yoke-derive",
|
|
2098
|
+
"zerofrom",
|
|
2099
|
+
]
|
|
2100
|
+
|
|
2101
|
+
[[package]]
|
|
2102
|
+
name = "yoke-derive"
|
|
2103
|
+
version = "0.8.1"
|
|
2104
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2105
|
+
checksum = "b659052874eb698efe5b9e8cf382204678a0086ebf46982b79d6ca3182927e5d"
|
|
2106
|
+
dependencies = [
|
|
2107
|
+
"proc-macro2",
|
|
2108
|
+
"quote",
|
|
2109
|
+
"syn 2.0.119",
|
|
2110
|
+
"synstructure",
|
|
2111
|
+
]
|
|
2112
|
+
|
|
2113
|
+
[[package]]
|
|
2114
|
+
name = "zerocopy"
|
|
2115
|
+
version = "0.8.57"
|
|
2116
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2117
|
+
checksum = "d35102a9f36d089ccae9e4c6802bc118be4487b80aaffc0ab4e0cf5ce92d2873"
|
|
2118
|
+
dependencies = [
|
|
2119
|
+
"zerocopy-derive",
|
|
2120
|
+
]
|
|
2121
|
+
|
|
2122
|
+
[[package]]
|
|
2123
|
+
name = "zerocopy-derive"
|
|
2124
|
+
version = "0.8.57"
|
|
2125
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2126
|
+
checksum = "146c01f5ab44258da43cf276c74a2763db2ff3969c9c652c3f2de07041d0b2bc"
|
|
2127
|
+
dependencies = [
|
|
2128
|
+
"proc-macro2",
|
|
2129
|
+
"quote",
|
|
2130
|
+
"syn 2.0.119",
|
|
2131
|
+
]
|
|
2132
|
+
|
|
2133
|
+
[[package]]
|
|
2134
|
+
name = "zerofrom"
|
|
2135
|
+
version = "0.1.8"
|
|
2136
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2137
|
+
checksum = "0ec05a11813ea801ff6d75110ad09cd0824ddba17dfe17128ea0d5f68e6c5272"
|
|
2138
|
+
dependencies = [
|
|
2139
|
+
"zerofrom-derive",
|
|
2140
|
+
]
|
|
2141
|
+
|
|
2142
|
+
[[package]]
|
|
2143
|
+
name = "zerofrom-derive"
|
|
2144
|
+
version = "0.1.6"
|
|
2145
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2146
|
+
checksum = "d71e5d6e06ab090c67b5e44993ec16b72dcbaabc526db883a360057678b48502"
|
|
2147
|
+
dependencies = [
|
|
2148
|
+
"proc-macro2",
|
|
2149
|
+
"quote",
|
|
2150
|
+
"syn 2.0.119",
|
|
2151
|
+
"synstructure",
|
|
2152
|
+
]
|
|
2153
|
+
|
|
2154
|
+
[[package]]
|
|
2155
|
+
name = "zerotrie"
|
|
2156
|
+
version = "0.2.3"
|
|
2157
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2158
|
+
checksum = "2a59c17a5562d507e4b54960e8569ebee33bee890c70aa3fe7b97e85a9fd7851"
|
|
2159
|
+
dependencies = [
|
|
2160
|
+
"displaydoc",
|
|
2161
|
+
"yoke",
|
|
2162
|
+
"zerofrom",
|
|
2163
|
+
]
|
|
2164
|
+
|
|
2165
|
+
[[package]]
|
|
2166
|
+
name = "zerovec"
|
|
2167
|
+
version = "0.11.5"
|
|
2168
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2169
|
+
checksum = "6c28719294829477f525be0186d13efa9a3c602f7ec202ca9e353d310fb9a002"
|
|
2170
|
+
dependencies = [
|
|
2171
|
+
"yoke",
|
|
2172
|
+
"zerofrom",
|
|
2173
|
+
"zerovec-derive",
|
|
2174
|
+
]
|
|
2175
|
+
|
|
2176
|
+
[[package]]
|
|
2177
|
+
name = "zerovec-derive"
|
|
2178
|
+
version = "0.11.2"
|
|
2179
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2180
|
+
checksum = "eadce39539ca5cb3985590102671f2567e659fca9666581ad3411d59207951f3"
|
|
2181
|
+
dependencies = [
|
|
2182
|
+
"proc-macro2",
|
|
2183
|
+
"quote",
|
|
2184
|
+
"syn 2.0.119",
|
|
2185
|
+
]
|