[[bench]]
name = "compilation_bench"
path = "benches/compilation_bench.rs"
[[bench]]
name = "execution_bench"
path = "benches/execution_bench.rs"
[[bench]]
harness = false
name = "parser"
path = "benches/parser.rs"
[[bench]]
harness = false
name = "transpiler"
path = "benches/transpiler.rs"
[[bin]]
name = "ruchy"
path = "src/bin/ruchy.rs"
[dependencies.anyhow]
version = "1.0"
[dependencies.async-trait]
optional = true
version = "0.1"
[dependencies.chrono]
version = "0.4"
[dependencies.clap]
features = ["derive"]
version = "4.5"
[dependencies.colored]
version = "3.0"
[dependencies.console_error_panic_hook]
version = "0.1"
[dependencies.im]
version = "15.1"
[dependencies.js-sys]
version = "0.3"
[dependencies.logos]
version = "0.15"
[dependencies.notify]
version = "8.2"
[dependencies.num_cpus]
version = "1.17"
[dependencies.once_cell]
version = "1.21"
[dependencies.pest]
version = "2.8"
[dependencies.pest_derive]
version = "2.8"
[dependencies.pmcp]
features = ["full"]
optional = true
version = "1.3.0"
[dependencies.polars]
features = ["lazy"]
optional = true
version = "0.50"
[dependencies.prettyplease]
version = "0.2"
[dependencies.proc-macro2]
version = "1.0"
[dependencies.proptest]
optional = true
version = "1.7"
[dependencies.quickcheck]
version = "1.0"
[dependencies.quote]
version = "1.0"
[dependencies.regex]
version = "1.11"
[dependencies.rustyline]
version = "17.0"
[dependencies.serde]
features = ["derive"]
version = "1.0"
[dependencies.serde-wasm-bindgen]
version = "0.6"
[dependencies.serde_json]
version = "1.0"
[dependencies.sha2]
version = "0.10"
[dependencies.smallvec]
version = "1.15"
[dependencies.syn]
features = ["full", "extra-traits", "visit-mut"]
version = "2.0"
[dependencies.tempfile]
version = "3.21"
[dependencies.thiserror]
version = "2.0"
[dependencies.tokio]
features = ["full"]
optional = true
version = "1.47"
[dependencies.tokio-util]
features = ["rt"]
optional = true
version = "0.7"
[dependencies.toml]
version = "0.9"
[dependencies.tower-lsp]
optional = true
version = "0.20"
[dependencies.tracing]
version = "0.1"
[dependencies.uuid]
features = ["v4"]
version = "1.18"
[dependencies.walkdir]
version = "2.5"
[dependencies.wasm-bindgen]
version = "0.2"
[dependencies.web-sys]
features = ["console"]
version = "0.3"
[dev-dependencies.assert_cmd]
version = "2.0"
[dev-dependencies.criterion]
version = "0.7"
[dev-dependencies.insta]
features = ["yaml"]
version = "1.43"
[dev-dependencies.predicates]
version = "3.1"
[dev-dependencies.proptest]
version = "1.7"
[dev-dependencies.quickcheck]
version = "1.0"
[dev-dependencies.quickcheck_macros]
version = "1.1"
[dev-dependencies.tempfile]
version = "3.21"
[dev-dependencies.tracing-subscriber]
version = "0.3"
[dev-dependencies.walkdir]
version = "2.5"
[[example]]
name = "async_await"
path = "examples/async_await.rs"
[[example]]
name = "dataframe_pipeline"
path = "examples/dataframe_pipeline.rs"
[[example]]
name = "debug_ast"
path = "examples/debug_ast.rs"
[[example]]
name = "debug_repl"
path = "examples/debug_repl.rs"
[[example]]
name = "function_calls"
path = "examples/function_calls.rs"
[[example]]
name = "parser_demo"
path = "examples/parser_demo.rs"
[[example]]
name = "reference_demo"
path = "examples/reference_demo.rs"
[[example]]
name = "repl_basic_arithmetic"
path = "examples/repl_basic_arithmetic.rs"
[[example]]
name = "repl_control_flow"
path = "examples/repl_control_flow.rs"
[[example]]
name = "repl_variables_and_functions"
path = "examples/repl_variables_and_functions.rs"
[[example]]
name = "score_examples"
path = "examples/score_examples.rs"
[[example]]
name = "test_mutation"
path = "examples/test_mutation.rs"
[[example]]
name = "test_string_methods"
path = "examples/test_string_methods.rs"
[[example]]
name = "transpiler_demo"
path = "examples/transpiler_demo.rs"
[features]
dataframe = ["polars"]
default = []
mcp = ["tokio", "tokio-util", "pmcp", "async-trait", "tower-lsp"]
testing = ["proptest"]
[lib]
crate-type = ["cdylib", "rlib"]
name = "ruchy"
path = "src/lib.rs"
[lints.clippy]
absurd_extreme_comparisons = "allow"
approx_constant = "allow"
cargo_common_metadata = "warn"
cast_lossless = "warn"
cast_possible_truncation = "warn"
cast_possible_wrap = "warn"
cast_precision_loss = "allow"
cast_sign_loss = "warn"
checked_conversions = "warn"
cloned_instead_of_copied = "warn"
cognitive_complexity = "allow"
dbg_macro = "deny"
default_trait_access = "allow"
doc_markdown = "warn"
empty_enum = "warn"
empty_line_after_doc_comments = "allow"
enum_glob_use = "deny"
enum_variant_names = "warn"
expect_used = "allow"
expl_impl_clone_on_copy = "warn"
explicit_deref_methods = "warn"
explicit_into_iter_loop = "warn"
explicit_iter_loop = "warn"
filter_map_next = "warn"
flat_map_option = "warn"
float_cmp = "allow"
float_cmp_const = "warn"
fn_params_excessive_bools = "warn"
format_push_string = "allow"
from_iter_instead_of_collect = "warn"
if_not_else = "warn"
implicit_clone = "warn"
implicit_hasher = "warn"
implicit_saturating_sub = "warn"
inconsistent_struct_constructor = "warn"
inefficient_to_string = "warn"
inline_always = "warn"
invalid_upcast_comparisons = "warn"
items_after_statements = "warn"
large_digit_groups = "warn"
large_stack_arrays = "warn"
large_types_passed_by_value = "warn"
let_unit_value = "warn"
linkedlist = "warn"
macro_use_imports = "warn"
manual_assert = "warn"
manual_instant_elapsed = "warn"
manual_let_else = "warn"
manual_ok_or = "warn"
manual_string_new = "warn"
map_flatten = "warn"
map_unwrap_or = "warn"
match_bool = "warn"
match_same_arms = "warn"
match_wild_err_arm = "warn"
match_wildcard_for_single_variants = "warn"
maybe_infinite_iter = "warn"
mismatching_type_param_order = "warn"
missing_errors_doc = "warn"
missing_fields_in_debug = "warn"
missing_panics_doc = "warn"
module_inception = "allow"
module_name_repetitions = "warn"
must_use_candidate = "warn"
mut_mut = "warn"
naive_bytecount = "warn"
needless_bitwise_bool = "warn"
needless_continue = "warn"
needless_for_each = "warn"
needless_pass_by_value = "warn"
needless_raw_string_hashes = "warn"
negative_feature_names = "warn"
no_effect_underscore_binding = "warn"
no_mangle_with_rust_abi = "warn"
option_option = "warn"
panic = "allow"
print_stderr = "allow"
print_stdout = "allow"
pub_without_shorthand = "warn"
range_minus_one = "warn"
range_plus_one = "warn"
rc_buffer = "warn"
rc_mutex = "warn"
redundant_clone = "warn"
redundant_closure_for_method_calls = "warn"
redundant_else = "warn"
redundant_feature_names = "warn"
redundant_pub_crate = "warn"
ref_binding_to_reference = "warn"
ref_option_ref = "warn"
return_self_not_must_use = "warn"
same_functions_in_if_condition = "warn"
semicolon_if_nothing_returned = "warn"
should_panic_without_expect = "warn"
similar_names = "warn"
single_match_else = "warn"
stable_sort_primitive = "warn"
string_add = "warn"
string_add_assign = "warn"
struct_excessive_bools = "warn"
struct_field_names = "warn"
todo = "warn"
too_many_lines = "warn"
trait_duplication_in_bounds = "warn"
transmute_ptr_to_ptr = "warn"
trivially_copy_pass_by_ref = "warn"
type_repetition_in_bounds = "warn"
unchecked_duration_subtraction = "warn"
unicode_not_nfc = "warn"
unimplemented = "warn"
uninlined_format_args = "warn"
unnecessary_box_returns = "warn"
unnecessary_join = "warn"
unnecessary_to_owned = "allow"
unnecessary_wraps = "warn"
unnested_or_patterns = "warn"
unreadable_literal = "warn"
unused_async = "warn"
unused_self = "warn"
unwrap_used = "allow"
used_underscore_binding = "warn"
verbose_bit_mask = "warn"
verbose_file_reads = "warn"
wildcard_imports = "warn"
zero_sized_map_values = "warn"
[lints.clippy.complexity]
level = "warn"
priority = -1
[lints.clippy.correctness]
level = "deny"
priority = -1
[lints.clippy.pedantic]
level = "warn"
priority = -1
[lints.clippy.perf]
level = "warn"
priority = -1
[lints.clippy.style]
level = "warn"
priority = -1
[lints.clippy.suspicious]
level = "deny"
priority = -1
[lints.rust]
missing_docs = "allow"
unsafe_code = "forbid"
[package]
authors = ["Noah Gift"]
autobenches = false
autobins = false
autoexamples = false
autolib = false
autotests = false
build = false
categories = ["compilers", "development-tools", "parser-implementations"]
description = "A systems scripting language that transpiles to idiomatic Rust with extreme quality engineering"
edition = "2021"
exclude = ["src/bin/ruchy-lsp.rs", "src/bin/ruchy-coverage.rs"]
keywords = ["language", "compiler", "transpiler", "rust", "scripting"]
license = "MIT OR Apache-2.0"
name = "ruchy"
readme = "README.md"
repository = "https://github.com/paiml/ruchy"
version = "1.78.0"
[profile.dev]
opt-level = 0
[profile.release]
codegen-units = 1
lto = true
opt-level = 3
[profile.release-dist]
codegen-units = 1
inherits = "release"
lto = "fat"
opt-level = "z"
panic = "abort"
strip = true
[target.'cfg(target_arch = "wasm32")'.dependencies.getrandom]
features = ["js"]
version = "0.2"
[[test]]
name = "actor_system_tests"
path = "tests/actor_system_tests.rs"
[[test]]
name = "actor_tests"
path = "tests/actor_tests.rs"
[[test]]
name = "actors_100_coverage_tdd"
path = "tests/actors_100_coverage_tdd.rs"
[[test]]
name = "actors_tdd"
path = "tests/actors_tdd.rs"
[[test]]
name = "advanced_patterns_test"
path = "tests/advanced_patterns_test.rs"
[[test]]
name = "arena_tdd"
path = "tests/arena_tdd.rs"
[[test]]
name = "ast_tdd"
path = "tests/ast_tdd.rs"
[[test]]
name = "async_await_test"
path = "tests/async_await_test.rs"
[[test]]
name = "auto_mutability_tdd"
path = "tests/auto_mutability_tdd.rs"
[[test]]
name = "backend_dataframe_unit_tests"
path = "tests/backend_dataframe_unit_tests.rs"
[[test]]
name = "backend_transpiler_method_call_tdd"
path = "tests/backend_transpiler_method_call_tdd.rs"
[[test]]
name = "backend_transpiler_patterns_tdd"
path = "tests/backend_transpiler_patterns_tdd.rs"
[[test]]
name = "backend_transpiler_type_conversion_tdd"
path = "tests/backend_transpiler_type_conversion_tdd.rs"
[[test]]
name = "binary_validation"
path = "tests/binary_validation.rs"
[[test]]
name = "book_compatibility_fixes_tdd"
path = "tests/book_compatibility_fixes_tdd.rs"
[[test]]
name = "book_compatibility_restoration_tdd"
path = "tests/book_compatibility_restoration_tdd.rs"
[[test]]
name = "calculate_quality_score_tdd"
path = "tests/calculate_quality_score_tdd.rs"
[[test]]
name = "centralized_result_printing_tdd"
path = "tests/centralized_result_printing_tdd.rs"
[[test]]
name = "clap_commands_test"
path = "tests/clap_commands_test.rs"
[[test]]
name = "cli_commands"
path = "tests/cli_commands.rs"
[[test]]
name = "cli_handler_tests"
path = "tests/cli_handler_tests.rs"
[[test]]
name = "cli_integration"
path = "tests/cli_integration.rs"
[[test]]
name = "cli_integration_tests"
path = "tests/cli_integration_tests.rs"
[[test]]
name = "cli_oneliner_tests"
path = "tests/cli_oneliner_tests.rs"
[[test]]
name = "cli_properties"
path = "tests/cli_properties.rs"
[[test]]
name = "cli_transpile_tdd"
path = "tests/cli_transpile_tdd.rs"
[[test]]
name = "codegen_minimal_comprehensive_tdd"
path = "tests/codegen_minimal_comprehensive_tdd.rs"
[[test]]
name = "codegen_minimal_coverage_tdd"
path = "tests/codegen_minimal_coverage_tdd.rs"
[[test]]
name = "codegen_minimal_tdd"
path = "tests/codegen_minimal_tdd.rs"
[[test]]
name = "common_patterns_tdd"
path = "tests/common_patterns_tdd.rs"
[[test]]
name = "compatibility_suite"
path = "tests/compatibility_suite.rs"
[[test]]
name = "compiled_modules_test"
path = "tests/compiled_modules_test.rs"
[[test]]
name = "compiler_pipeline_tdd"
path = "tests/compiler_pipeline_tdd.rs"
[[test]]
name = "complete_language_restoration_tdd"
path = "tests/complete_language_restoration_tdd.rs"
[[test]]
name = "comprehensive_coverage"
path = "tests/comprehensive_coverage.rs"
[[test]]
name = "comprehensive_validation"
path = "tests/comprehensive_validation.rs"
[[test]]
name = "coverage_command_test"
path = "tests/coverage_command_test.rs"
[[test]]
name = "coverage_implementation_test"
path = "tests/coverage_implementation_test.rs"
[[test]]
name = "coverage_threshold_regression"
path = "tests/coverage_threshold_regression.rs"
[[test]]
name = "coverage_tooling_basic_tests"
path = "tests/coverage_tooling_basic_tests.rs"
[[test]]
name = "critical_regressions"
path = "tests/critical_regressions.rs"
[[test]]
name = "critical_repl_features"
path = "tests/critical_repl_features.rs"
[[test]]
name = "dataframe_100_coverage_tdd"
path = "tests/dataframe_100_coverage_tdd.rs"
[[test]]
name = "dataframe_inference_fixes_tdd"
path = "tests/dataframe_inference_fixes_tdd.rs"
[[test]]
name = "dataframe_operations_test"
path = "tests/dataframe_operations_test.rs"
[[test]]
name = "dataframe_tdd"
path = "tests/dataframe_tdd.rs"
[[test]]
name = "dataframe_tests"
path = "tests/dataframe_tests.rs"
[[test]]
name = "dataframe_transpiler_tests"
path = "tests/dataframe_transpiler_tests.rs"
[[test]]
name = "debug_object_items"
path = "tests/debug_object_items.rs"
[[test]]
name = "debug_string_coercion"
path = "tests/debug_string_coercion.rs"
[[test]]
name = "debug_string_output"
path = "tests/debug_string_output.rs"
[[test]]
name = "debug_unit_type_name"
path = "tests/debug_unit_type_name.rs"
[[test]]
name = "diagnostics_tdd"
path = "tests/diagnostics_tdd.rs"
[[test]]
name = "differential_repl_file"
path = "tests/differential_repl_file.rs"
[[test]]
name = "differential_tests"
path = "tests/differential_tests.rs"
[[test]]
name = "dispatcher_comprehensive_tests"
path = "tests/dispatcher_comprehensive_tests.rs"
[[test]]
name = "dispatcher_coverage_tdd"
path = "tests/dispatcher_coverage_tdd.rs"
[[test]]
name = "dispatcher_tdd"
path = "tests/dispatcher_tdd.rs"
[[test]]
name = "double_semicolon_fix_tdd"
path = "tests/double_semicolon_fix_tdd.rs"
[[test]]
name = "edge_case_tests"
path = "tests/edge_case_tests.rs"
[[test]]
name = "eliminate_code_duplication_tdd"
path = "tests/eliminate_code_duplication_tdd.rs"
[[test]]
name = "enforce_quality_gates_tdd"
path = "tests/enforce_quality_gates_tdd.rs"
[[test]]
name = "entropy_reduction_tdd"
path = "tests/entropy_reduction_tdd.rs"
[[test]]
name = "entropy_reduction_v2_tdd"
path = "tests/entropy_reduction_v2_tdd.rs"
[[test]]
name = "enum_values_integration_test"
path = "tests/enum_values_integration_test.rs"
[[test]]
name = "enum_variant_values_tdd"
path = "tests/enum_variant_values_tdd.rs"
[[test]]
name = "error_diagnostics_test"
path = "tests/error_diagnostics_test.rs"
[[test]]
name = "error_handling_tdd"
path = "tests/error_handling_tdd.rs"
[[test]]
name = "error_handling_test"
path = "tests/error_handling_test.rs"
[[test]]
name = "error_recovery_integration_test"
path = "tests/error_recovery_integration_test.rs"
[[test]]
name = "error_recovery_tdd"
path = "tests/error_recovery_tdd.rs"
[[test]]
name = "error_recovery_test"
path = "tests/error_recovery_test.rs"
[[test]]
name = "eval_expr_refactor_tdd"
path = "tests/eval_expr_refactor_tdd.rs"
[[test]]
name = "execution_transpilation"
path = "tests/execution_transpilation.rs"
[[test]]
name = "exhaustive_pattern_coverage"
path = "tests/exhaustive_pattern_coverage.rs"
[[test]]
name = "export_command_test"
path = "tests/export_command_test.rs"
[[test]]
name = "extract_expression_text_tdd"
path = "tests/extract_expression_text_tdd.rs"
[[test]]
name = "extract_name_helper_tdd"
path = "tests/extract_name_helper_tdd.rs"
[[test]]
name = "fix_all_let_references_tdd"
path = "tests/fix_all_let_references_tdd.rs"
[[test]]
name = "fix_one_let_reference_tdd"
path = "tests/fix_one_let_reference_tdd.rs"
[[test]]
name = "for_loop_tuple_destructuring_tdd"
path = "tests/for_loop_tuple_destructuring_tdd.rs"
[[test]]
name = "format_string_property_test"
path = "tests/format_string_property_test.rs"
[[test]]
name = "frontend_simple_tdd"
path = "tests/frontend_simple_tdd.rs"
[[test]]
name = "fstring_interpolation_tdd"
path = "tests/fstring_interpolation_tdd.rs"
[[test]]
name = "function_call_fixes_tdd"
path = "tests/function_call_fixes_tdd.rs"
[[test]]
name = "functional_programming_tests"
path = "tests/functional_programming_tests.rs"
[[test]]
name = "fuzz_tests"
path = "tests/fuzz_tests.rs"
[[test]]
name = "fuzz_transpiler"
path = "tests/fuzz_transpiler.rs"
[[test]]
name = "generated_arithmetic"
path = "tests/generated_arithmetic.rs"
[[test]]
name = "generated_from_replays"
path = "tests/generated_from_replays.rs"
[[test]]
name = "golden_master_suite"
path = "tests/golden_master_suite.rs"
[[test]]
name = "grammar_coverage_tdd"
path = "tests/grammar_coverage_tdd.rs"
[[test]]
name = "grammar_exhaustive"
path = "tests/grammar_exhaustive.rs"
[[test]]
name = "handle_directory_score_tdd"
path = "tests/handle_directory_score_tdd.rs"
[[test]]
name = "handle_fmt_tdd"
path = "tests/handle_fmt_tdd.rs"
[[test]]
name = "handle_lint_command_tdd"
path = "tests/handle_lint_command_tdd.rs"
[[test]]
name = "handle_quality_gate_tdd"
path = "tests/handle_quality_gate_tdd.rs"
[[test]]
name = "handle_replay_to_tests_tdd"
path = "tests/handle_replay_to_tests_tdd.rs"
[[test]]
name = "handlers_complexity_reduction_tdd"
path = "tests/handlers_complexity_reduction_tdd.rs"
[[test]]
name = "handlers_tdd"
path = "tests/handlers_tdd.rs"
[[test]]
name = "higher_order_functions"
path = "tests/higher_order_functions.rs"
[[test]]
name = "history_indexing_test"
path = "tests/history_indexing_test.rs"
[[test]]
name = "import_edge_cases"
path = "tests/import_edge_cases.rs"
[[test]]
name = "import_property_tests"
path = "tests/import_property_tests.rs"
[[test]]
name = "infer_method_call_complexity_tdd"
path = "tests/infer_method_call_complexity_tdd.rs"
[[test]]
name = "infer_other_expr_complexity_tdd"
path = "tests/infer_other_expr_complexity_tdd.rs"
[[test]]
name = "integration_e2e_compilation"
path = "tests/integration_e2e_compilation.rs"
[[test]]
name = "integration_higher_order_functions"
path = "tests/integration_higher_order_functions.rs"
[[test]]
name = "integration_regression_tests"
path = "tests/integration_regression_tests.rs"
[[test]]
name = "integration_repl_workflows"
path = "tests/integration_repl_workflows.rs"
[[test]]
name = "integration_tdd"
path = "tests/integration_tdd.rs"
[[test]]
name = "integration_tests"
path = "tests/integration_tests.rs"
[[test]]
name = "interpreter_comprehensive_tests"
path = "tests/interpreter_comprehensive_tests.rs"
[[test]]
name = "interpreter_control_flow_tests"
path = "tests/interpreter_control_flow_tests.rs"
[[test]]
name = "interpreter_core_reliability"
path = "tests/interpreter_core_reliability.rs"
[[test]]
name = "interpreter_coverage_boost"
path = "tests/interpreter_coverage_boost.rs"
[[test]]
name = "interpreter_enhanced_coverage"
path = "tests/interpreter_enhanced_coverage.rs"
[[test]]
name = "interpreter_fuzz"
path = "tests/interpreter_fuzz.rs"
[[test]]
name = "interpreter_modules_tdd"
path = "tests/interpreter_modules_tdd.rs"
[[test]]
name = "interpreter_tdd"
path = "tests/interpreter_tdd.rs"
[[test]]
name = "introspection_commands_test"
path = "tests/introspection_commands_test.rs"
[[test]]
name = "introspection_test"
path = "tests/introspection_test.rs"
[[test]]
name = "io_functions_tdd"
path = "tests/io_functions_tdd.rs"
[[test]]
name = "is_executable_line_tdd"
path = "tests/is_executable_line_tdd.rs"
[[test]]
name = "is_param_numeric_tdd"
path = "tests/is_param_numeric_tdd.rs"
[[test]]
name = "lambda_fixes_tdd"
path = "tests/lambda_fixes_tdd.rs"
[[test]]
name = "language_invariants"
path = "tests/language_invariants.rs"
[[test]]
name = "let_mut_syntax_tdd"
path = "tests/let_mut_syntax_tdd.rs"
[[test]]
name = "lexer_tdd"
path = "tests/lexer_tdd.rs"
[[test]]
name = "lib_tests"
path = "tests/lib_tests.rs"
[[test]]
name = "lifetimes_borrowing_test"
path = "tests/lifetimes_borrowing_test.rs"
[[test]]
name = "lint_cli_integration"
path = "tests/lint_cli_integration.rs"
[[test]]
name = "lints_coverage_tests"
path = "tests/lints_coverage_tests.rs"
[[test]]
name = "list_methods_tdd"
path = "tests/list_methods_tdd.rs"
[[test]]
name = "list_mutation_test"
path = "tests/list_mutation_test.rs"
[[test]]
name = "list_reduce_tdd"
path = "tests/list_reduce_tdd.rs"
[[test]]
name = "lsp_analyzer_tests"
path = "tests/lsp_analyzer_tests.rs"
[[test]]
name = "lsp_comprehensive_tests"
path = "tests/lsp_comprehensive_tests.rs"
[[test]]
name = "macro_system_test"
path = "tests/macro_system_test.rs"
[[test]]
name = "main_tdd"
path = "tests/main_tdd.rs"
[[test]]
name = "match_pattern_tdd"
path = "tests/match_pattern_tdd.rs"
[[test]]
name = "match_range_pattern_tdd"
path = "tests/match_range_pattern_tdd.rs"
[[test]]
name = "mcp_tool_discovery_tests"
path = "tests/mcp_tool_discovery_tests.rs"
[[test]]
name = "method_call_refactored_focused_tdd"
path = "tests/method_call_refactored_focused_tdd.rs"
[[test]]
name = "method_call_refactored_tdd"
path = "tests/method_call_refactored_tdd.rs"
[[test]]
name = "mir_optimizer_tdd"
path = "tests/mir_optimizer_tdd.rs"
[[test]]
name = "mode_system_test"
path = "tests/mode_system_test.rs"
[[test]]
name = "module_paths"
path = "tests/module_paths.rs"
[[test]]
name = "module_performance_test"
path = "tests/module_performance_test.rs"
[[test]]
name = "module_resolver_tdd"
path = "tests/module_resolver_tdd.rs"
[[test]]
name = "module_system_coverage"
path = "tests/module_system_coverage.rs"
[[test]]
name = "module_system_tdd"
path = "tests/module_system_tdd.rs"
[[test]]
name = "module_top_level_bug_test"
path = "tests/module_top_level_bug_test.rs"
[[test]]
name = "multi_file_modules_integration"
path = "tests/multi_file_modules_integration.rs"
[[test]]
name = "multi_file_modules_test"
path = "tests/multi_file_modules_test.rs"
[[test]]
name = "obj_items_transpilation_test"
path = "tests/obj_items_transpilation_test.rs"
[[test]]
name = "operator_precedence_bug_test"
path = "tests/operator_precedence_bug_test.rs"
[[test]]
name = "p0_book_002_file_operations"
path = "tests/p0_book_002_file_operations.rs"
[[test]]
name = "p0_book_003_systems_programming"
path = "tests/p0_book_003_systems_programming.rs"
[[test]]
name = "p0_book_004_network_programming"
path = "tests/p0_book_004_network_programming.rs"
[[test]]
name = "p0_book_005_performance_optimization"
path = "tests/p0_book_005_performance_optimization.rs"
[[test]]
name = "p0_book_006_advanced_patterns"
path = "tests/p0_book_006_advanced_patterns.rs"
[[test]]
name = "p0_lint_false_positives"
path = "tests/p0_lint_false_positives.rs"
[[test]]
name = "parentheses_precedence_regression_test"
path = "tests/parentheses_precedence_regression_test.rs"
[[test]]
name = "parse_actor_definition_complexity_tdd"
path = "tests/parse_actor_definition_complexity_tdd.rs"
[[test]]
name = "parse_block_comprehensive_tdd"
path = "tests/parse_block_comprehensive_tdd.rs"
[[test]]
name = "parse_dataframe_literal_complexity_tdd"
path = "tests/parse_dataframe_literal_complexity_tdd.rs"
[[test]]
name = "parse_dataframe_tdd"
path = "tests/parse_dataframe_tdd.rs"
[[test]]
name = "parse_expr_precedence_tdd"
path = "tests/parse_expr_precedence_tdd.rs"
[[test]]
name = "parse_import_tdd"
path = "tests/parse_import_tdd.rs"
[[test]]
name = "parse_legacy_dataframe_rows_tdd"
path = "tests/parse_legacy_dataframe_rows_tdd.rs"
[[test]]
name = "parse_let_statement_complexity_tdd"
path = "tests/parse_let_statement_complexity_tdd.rs"
[[test]]
name = "parse_match_pattern_complexity_tdd"
path = "tests/parse_match_pattern_complexity_tdd.rs"
[[test]]
name = "parse_method_access_tdd"
path = "tests/parse_method_access_tdd.rs"
[[test]]
name = "parse_method_or_field_access_tdd"
path = "tests/parse_method_or_field_access_tdd.rs"
[[test]]
name = "parse_params_tdd"
path = "tests/parse_params_tdd.rs"
[[test]]
name = "parse_prefix_complexity_refactoring_tdd"
path = "tests/parse_prefix_complexity_refactoring_tdd.rs"
[[test]]
name = "parser_actors_tdd"
path = "tests/parser_actors_tdd.rs"
[[test]]
name = "parser_coverage_tdd"
path = "tests/parser_coverage_tdd.rs"
[[test]]
name = "parser_coverage_tests"
path = "tests/parser_coverage_tests.rs"
[[test]]
name = "parser_function_bug"
path = "tests/parser_function_bug.rs"
[[test]]
name = "parser_if_expressions_bug"
path = "tests/parser_if_expressions_bug.rs"
[[test]]
name = "parser_let_statements_bug"
path = "tests/parser_let_statements_bug.rs"
[[test]]
name = "parser_match_expressions_tdd"
path = "tests/parser_match_expressions_tdd.rs"
[[test]]
name = "parser_modules_tdd"
path = "tests/parser_modules_tdd.rs"
[[test]]
name = "parser_multiline_bug"
path = "tests/parser_multiline_bug.rs"
[[test]]
name = "parser_property_tests"
path = "tests/parser_property_tests.rs"
[[test]]
name = "parser_utils_tdd"
path = "tests/parser_utils_tdd.rs"
[[test]]
name = "pattern_parsing_tdd"
path = "tests/pattern_parsing_tdd.rs"
[[test]]
name = "patterns_tdd"
path = "tests/patterns_tdd.rs"
[[test]]
name = "patterns_transpiler_tdd"
path = "tests/patterns_transpiler_tdd.rs"
[[test]]
name = "performance_baseline"
path = "tests/performance_baseline.rs"
[[test]]
name = "println_multi_args_bug_test"
path = "tests/println_multi_args_bug_test.rs"
[[test]]
name = "println_multi_args_test"
path = "tests/println_multi_args_test.rs"
[[test]]
name = "println_repl_formatting_test"
path = "tests/println_repl_formatting_test.rs"
[[test]]
name = "process_directory_tdd"
path = "tests/process_directory_tdd.rs"
[[test]]
name = "profile_command_test"
path = "tests/profile_command_test.rs"
[[test]]
name = "progressive_modes_integration"
path = "tests/progressive_modes_integration.rs"
[[test]]
name = "progressive_modes_test"
path = "tests/progressive_modes_test.rs"
[[test]]
name = "proof_verification_tdd_test"
path = "tests/proof_verification_tdd_test.rs"
[[test]]
name = "property_module_paths"
path = "tests/property_module_paths.rs"
[[test]]
name = "property_qualified_names_defect_hunt"
path = "tests/property_qualified_names_defect_hunt.rs"
[[test]]
name = "property_test_suite"
path = "tests/property_test_suite.rs"
[[test]]
name = "property_tests_extended"
path = "tests/property_tests_extended.rs"
[[test]]
name = "property_tests_quality_012"
path = "tests/property_tests_quality_012.rs"
[[test]]
name = "property_tests_shared_modules"
path = "tests/property_tests_shared_modules.rs"
[[test]]
name = "property_type_inference"
path = "tests/property_type_inference.rs"
[[test]]
name = "property_type_inference_extended"
path = "tests/property_type_inference_extended.rs"
[[test]]
name = "proving_basic_tests"
path = "tests/proving_basic_tests.rs"
[[test]]
name = "quality_008_score_directory_support"
path = "tests/quality_008_score_directory_support.rs"
[[test]]
name = "quality_009_score_actionability"
path = "tests/quality_009_score_actionability.rs"
[[test]]
name = "quality_009_scoring_math"
path = "tests/quality_009_scoring_math.rs"
[[test]]
name = "quality_009_spec_validation"
path = "tests/quality_009_spec_validation.rs"
[[test]]
name = "quality_010_lint_variable_tracking"
path = "tests/quality_010_lint_variable_tracking.rs"
[[test]]
name = "ref_str_type_parsing_tdd"
path = "tests/ref_str_type_parsing_tdd.rs"
[[test]]
name = "refactoring_tdd"
path = "tests/refactoring_tdd.rs"
[[test]]
name = "reference_basic_test"
path = "tests/reference_basic_test.rs"
[[test]]
name = "reference_operator_tests"
path = "tests/reference_operator_tests.rs"
[[test]]
name = "regression_database"
path = "tests/regression_database.rs"
[[test]]
name = "regression_tests"
path = "tests/regression_tests.rs"
[[test]]
name = "repl_80_percent_coverage_systematic"
path = "tests/repl_80_percent_coverage_systematic.rs"
[[test]]
name = "repl_actual_tdd"
path = "tests/repl_actual_tdd.rs"
[[test]]
name = "repl_advanced_data_tdd"
path = "tests/repl_advanced_data_tdd.rs"
[[test]]
name = "repl_aggressive_80_percent_final"
path = "tests/repl_aggressive_80_percent_final.rs"
[[test]]
name = "repl_binding_assignment_tdd"
path = "tests/repl_binding_assignment_tdd.rs"
[[test]]
name = "repl_broken_commands_test"
path = "tests/repl_broken_commands_test.rs"
[[test]]
name = "repl_commands_handlers_tdd"
path = "tests/repl_commands_handlers_tdd.rs"
[[test]]
name = "repl_commands_test"
path = "tests/repl_commands_test.rs"
[[test]]
name = "repl_completion_unit_tests"
path = "tests/repl_completion_unit_tests.rs"
[[test]]
name = "repl_comprehensive_coverage_tdd"
path = "tests/repl_comprehensive_coverage_tdd.rs"
[[test]]
name = "repl_comprehensive_coverage_working"
path = "tests/repl_comprehensive_coverage_working.rs"
[[test]]
name = "repl_comprehensive_tests"
path = "tests/repl_comprehensive_tests.rs"
[[test]]
name = "repl_control_flow_tdd"
path = "tests/repl_control_flow_tdd.rs"
[[test]]
name = "repl_core_tdd"
path = "tests/repl_core_tdd.rs"
[[test]]
name = "repl_coverage_boost"
path = "tests/repl_coverage_boost.rs"
[[test]]
name = "repl_coverage_restoration"
path = "tests/repl_coverage_restoration.rs"
[[test]]
name = "repl_coverage_tests"
path = "tests/repl_coverage_tests.rs"
[[test]]
name = "repl_critical_regression_tests"
path = "tests/repl_critical_regression_tests.rs"
[[test]]
name = "repl_data_structures_tdd"
path = "tests/repl_data_structures_tdd.rs"
[[test]]
name = "repl_dataframe_tests"
path = "tests/repl_dataframe_tests.rs"
[[test]]
name = "repl_debugging_recovery_tdd"
path = "tests/repl_debugging_recovery_tdd.rs"
[[test]]
name = "repl_demos_validation"
path = "tests/repl_demos_validation.rs"
[[test]]
name = "repl_direct_tdd"
path = "tests/repl_direct_tdd.rs"
[[test]]
name = "repl_e2e_module_paths"
path = "tests/repl_e2e_module_paths.rs"
[[test]]
name = "repl_error_handling_tdd"
path = "tests/repl_error_handling_tdd.rs"
[[test]]
name = "repl_error_recovery_test"
path = "tests/repl_error_recovery_test.rs"
[[test]]
name = "repl_evaluation_unit_tests"
path = "tests/repl_evaluation_unit_tests.rs"
[[test]]
name = "repl_function_expressions_tdd"
path = "tests/repl_function_expressions_tdd.rs"
[[test]]
name = "repl_function_tests"
path = "tests/repl_function_tests.rs"
[[test]]
name = "repl_functional_spec_tests"
path = "tests/repl_functional_spec_tests.rs"
[[test]]
name = "repl_hashmap_hashset_tdd"
path = "tests/repl_hashmap_hashset_tdd.rs"
[[test]]
name = "repl_history_unit_tests"
path = "tests/repl_history_unit_tests.rs"
[[test]]
name = "repl_integration_tests"
path = "tests/repl_integration_tests.rs"
[[test]]
name = "repl_list_operations_tdd"
path = "tests/repl_list_operations_tdd.rs"
[[test]]
name = "repl_loops_tests"
path = "tests/repl_loops_tests.rs"
[[test]]
name = "repl_magic_commands_tdd"
path = "tests/repl_magic_commands_tdd.rs"
[[test]]
name = "repl_magic_test"
path = "tests/repl_magic_test.rs"
[[test]]
name = "repl_match_tests"
path = "tests/repl_match_tests.rs"
[[test]]
name = "repl_minimal_tdd"
path = "tests/repl_minimal_tdd.rs"
[[test]]
name = "repl_modules_tdd"
path = "tests/repl_modules_tdd.rs"
[[test]]
name = "repl_modules_test"
path = "tests/repl_modules_test.rs"
[[test]]
name = "repl_mutability_test"
path = "tests/repl_mutability_test.rs"
[[test]]
name = "repl_operators_spread_tdd"
path = "tests/repl_operators_spread_tdd.rs"
[[test]]
name = "repl_pipeline_tests"
path = "tests/repl_pipeline_tests.rs"
[[test]]
name = "repl_property_tests"
path = "tests/repl_property_tests.rs"
[[test]]
name = "repl_regression_prevention_comprehensive"
path = "tests/repl_regression_prevention_comprehensive.rs"
[[test]]
name = "repl_regression_prevention_working"
path = "tests/repl_regression_prevention_working.rs"
[[test]]
name = "repl_regression_tests"
path = "tests/repl_regression_tests.rs"
[[test]]
name = "repl_result_option_tdd"
path = "tests/repl_result_option_tdd.rs"
[[test]]
name = "repl_run_complexity_tdd"
path = "tests/repl_run_complexity_tdd.rs"
[[test]]
name = "repl_state_management_tdd"
path = "tests/repl_state_management_tdd.rs"
[[test]]
name = "repl_string_operations_tdd"
path = "tests/repl_string_operations_tdd.rs"
[[test]]
name = "repl_tab_completion_integration_tdd"
path = "tests/repl_tab_completion_integration_tdd.rs"
[[test]]
name = "repl_type_definitions_tdd"
path = "tests/repl_type_definitions_tdd.rs"
[[test]]
name = "repl_unit_coverage_tests"
path = "tests/repl_unit_coverage_tests.rs"
[[test]]
name = "repl_value_operations_tdd"
path = "tests/repl_value_operations_tdd.rs"
[[test]]
name = "replay_basic_test"
path = "tests/replay_basic_test.rs"
[[test]]
name = "replay_converter_test"
path = "tests/replay_converter_test.rs"
[[test]]
name = "resource_bounded_test"
path = "tests/resource_bounded_test.rs"
[[test]]
name = "resource_check"
path = "tests/resource_check.rs"
[[test]]
name = "result_tests"
path = "tests/result_tests.rs"
[[test]]
name = "result_type_tdd"
path = "tests/result_type_tdd.rs"
[[test]]
name = "result_type_tests"
path = "tests/result_type_tests.rs"
[[test]]
name = "rosetta_ruchy_integration"
path = "tests/rosetta_ruchy_integration.rs"
[[test]]
name = "roundtrip_tests"
path = "tests/roundtrip_tests.rs"
[[test]]
name = "ruchy_book_validation_tdd"
path = "tests/ruchy_book_validation_tdd.rs"
[[test]]
name = "ruchy_program_coverage_test"
path = "tests/ruchy_program_coverage_test.rs"
[[test]]
name = "ruchy_prove_command_test"
path = "tests/ruchy_prove_command_test.rs"
[[test]]
name = "ruchy_run_exact_manual_test"
path = "tests/ruchy_run_exact_manual_test.rs"
[[test]]
name = "ruchy_run_modules_test"
path = "tests/ruchy_run_modules_test.rs"
[[test]]
name = "runtime_comprehensive_tdd"
path = "tests/runtime_comprehensive_tdd.rs"
[[test]]
name = "runtime_coverage_boost"
path = "tests/runtime_coverage_boost.rs"
[[test]]
name = "runtime_simple_tests"
path = "tests/runtime_simple_tests.rs"
[[test]]
name = "runtime_utils_tdd"
path = "tests/runtime_utils_tdd.rs"
[[test]]
name = "score_cli_integration"
path = "tests/score_cli_integration.rs"
[[test]]
name = "score_dynamic_test"
path = "tests/score_dynamic_test.rs"
[[test]]
name = "shell_integration_test"
path = "tests/shell_integration_test.rs"
[[test]]
name = "simple_coverage_tdd"
path = "tests/simple_coverage_tdd.rs"
[[test]]
name = "sister_project_integration"
path = "tests/sister_project_integration.rs"
[[test]]
name = "sister_projects_test"
path = "tests/sister_projects_test.rs"
[[test]]
name = "snapshot_tdd"
path = "tests/snapshot_tdd.rs"
[[test]]
name = "snapshot_tests"
path = "tests/snapshot_tests.rs"
[[test]]
name = "statements_100_coverage_tdd"
path = "tests/statements_100_coverage_tdd.rs"
[[test]]
name = "statements_transpiler_tdd"
path = "tests/statements_transpiler_tdd.rs"
[[test]]
name = "stdlib_collection_methods_test"
path = "tests/stdlib_collection_methods_test.rs"
[[test]]
name = "stdlib_file_operations_test"
path = "tests/stdlib_file_operations_test.rs"
[[test]]
name = "stdlib_generic_types_test"
path = "tests/stdlib_generic_types_test.rs"
[[test]]
name = "stdlib_hashset_simple_test"
path = "tests/stdlib_hashset_simple_test.rs"
[[test]]
name = "stdlib_math_test"
path = "tests/stdlib_math_test.rs"
[[test]]
name = "stdlib_methods_test"
path = "tests/stdlib_methods_test.rs"
[[test]]
name = "stdlib_process_environment_test"
path = "tests/stdlib_process_environment_test.rs"
[[test]]
name = "stdlib_type_conversions_test"
path = "tests/stdlib_type_conversions_test.rs"
[[test]]
name = "stdlib_validation_test"
path = "tests/stdlib_validation_test.rs"
[[test]]
name = "string_literal_conversion_tdd"
path = "tests/string_literal_conversion_tdd.rs"
[[test]]
name = "string_method_transpilation"
path = "tests/string_method_transpilation.rs"
[[test]]
name = "string_methods_tdd"
path = "tests/string_methods_tdd.rs"
[[test]]
name = "string_parameter_types_tdd"
path = "tests/string_parameter_types_tdd.rs"
[[test]]
name = "tab_completion_mathematical_proof"
path = "tests/tab_completion_mathematical_proof.rs"
[[test]]
name = "tab_completion_mathematical_validation"
path = "tests/tab_completion_mathematical_validation.rs"
[[test]]
name = "tab_completion_rustyline_test"
path = "tests/tab_completion_rustyline_test.rs"
[[test]]
name = "tab_completion_tdd_red"
path = "tests/tab_completion_tdd_red.rs"
[[test]]
name = "tab_completion_terminal_test"
path = "tests/tab_completion_terminal_test.rs"
[[test]]
name = "tab_completion_test"
path = "tests/tab_completion_test.rs"
[[test]]
name = "test_attribute_regression"
path = "tests/test_attribute_regression.rs"
[[test]]
name = "test_higher_order_fix"
path = "tests/test_higher_order_fix.rs"
[[test]]
name = "test_run_with_recording"
path = "tests/test_run_with_recording.rs"
[[test]]
name = "token_to_binary_op_complexity_tdd"
path = "tests/token_to_binary_op_complexity_tdd.rs"
[[test]]
name = "toyota_way_parsing_vs_runtime"
path = "tests/toyota_way_parsing_vs_runtime.rs"
[[test]]
name = "traits_basic_test"
path = "tests/traits_basic_test.rs"
[[test]]
name = "transaction_coverage"
path = "tests/transaction_coverage.rs"
[[test]]
name = "transactional_state_test"
path = "tests/transactional_state_test.rs"
[[test]]
name = "transpile_ref_str_tdd"
path = "tests/transpile_ref_str_tdd.rs"
[[test]]
name = "transpiler_coverage"
path = "tests/transpiler_coverage.rs"
[[test]]
name = "transpiler_coverage_tests"
path = "tests/transpiler_coverage_tests.rs"
[[test]]
name = "transpiler_direct_ast"
path = "tests/transpiler_direct_ast.rs"
[[test]]
name = "transpiler_edge_cases"
path = "tests/transpiler_edge_cases.rs"
[[test]]
name = "transpiler_expressions_tdd"
path = "tests/transpiler_expressions_tdd.rs"
[[test]]
name = "transpiler_import_inline_complexity_tdd"
path = "tests/transpiler_import_inline_complexity_tdd.rs"
[[test]]
name = "transpiler_integration"
path = "tests/transpiler_integration.rs"
[[test]]
name = "transpiler_let_statements_bug"
path = "tests/transpiler_let_statements_bug.rs"
[[test]]
name = "transpiler_low_coverage"
path = "tests/transpiler_low_coverage.rs"
[[test]]
name = "transpiler_maximum_coverage"
path = "tests/transpiler_maximum_coverage.rs"
[[test]]
name = "transpiler_patterns"
path = "tests/transpiler_patterns.rs"
[[test]]
name = "transpiler_patterns_comprehensive"
path = "tests/transpiler_patterns_comprehensive.rs"
[[test]]
name = "transpiler_property_tests"
path = "tests/transpiler_property_tests.rs"
[[test]]
name = "transpiler_result_comprehensive"
path = "tests/transpiler_result_comprehensive.rs"
[[test]]
name = "transpiler_semicolon_tdd"
path = "tests/transpiler_semicolon_tdd.rs"
[[test]]
name = "transpiler_statement_expression_bug_test"
path = "tests/transpiler_statement_expression_bug_test.rs"
[[test]]
name = "transpiler_statements"
path = "tests/transpiler_statements.rs"
[[test]]
name = "transpiler_string_bug"
path = "tests/transpiler_string_bug.rs"
[[test]]
name = "transpiler_tdd"
path = "tests/transpiler_tdd.rs"
[[test]]
name = "transpiler_with_ast_builder"
path = "tests/transpiler_with_ast_builder.rs"
[[test]]
name = "try_catch_tdd"
path = "tests/try_catch_tdd.rs"
[[test]]
name = "tuple_comma_debug_tdd"
path = "tests/tuple_comma_debug_tdd.rs"
[[test]]
name = "tuple_destructuring_for_loop_test"
path = "tests/tuple_destructuring_for_loop_test.rs"
[[test]]
name = "tuple_expression_fix_tdd"
path = "tests/tuple_expression_fix_tdd.rs"
[[test]]
name = "type_annotations_test"
path = "tests/type_annotations_test.rs"
[[test]]
name = "type_checker_tdd"
path = "tests/type_checker_tdd.rs"
[[test]]
name = "type_conversion_refactored_tdd"
path = "tests/type_conversion_refactored_tdd.rs"
[[test]]
name = "type_conversion_tdd"
path = "tests/type_conversion_tdd.rs"
[[test]]
name = "type_inference_comprehensive_tests"
path = "tests/type_inference_comprehensive_tests.rs"
[[test]]
name = "type_inference_tdd"
path = "tests/type_inference_tdd.rs"
[[test]]
name = "type_inference_tests"
path = "tests/type_inference_tests.rs"
[[test]]
name = "types_coverage_tdd"
path = "tests/types_coverage_tdd.rs"
[[test]]
name = "types_transpiler_tdd"
path = "tests/types_transpiler_tdd.rs"
[[test]]
name = "ubuntu_config_scripts_validation"
path = "tests/ubuntu_config_scripts_validation.rs"
[[test]]
name = "undefined_variables_tdd"
path = "tests/undefined_variables_tdd.rs"
[[test]]
name = "unicode_expansion_test"
path = "tests/unicode_expansion_test.rs"
[[test]]
name = "unify_tdd"
path = "tests/unify_tdd.rs"
[[test]]
name = "unit_type_display_fix_tdd"
path = "tests/unit_type_display_fix_tdd.rs"
[[test]]
name = "value_constructor_helpers_tdd"
path = "tests/value_constructor_helpers_tdd.rs"
[[test]]
name = "value_tdd"
path = "tests/value_tdd.rs"
[[test]]
name = "var_keyword_tdd"
path = "tests/var_keyword_tdd.rs"
[[test]]
name = "vec_display_bug_test"
path = "tests/vec_display_bug_test.rs"
[[test]]
name = "void_function_inference_test"
path = "tests/void_function_inference_test.rs"
[[test]]
name = "wasm_tdd"
path = "tests/wasm_tdd.rs"
[[test]]
name = "while_boundary_test"
path = "tests/while_boundary_test.rs"
[[test]]
name = "while_loop_mutability_tdd"
path = "tests/while_loop_mutability_tdd.rs"
[[test]]
name = "while_loop_off_by_one_test"
path = "tests/while_loop_off_by_one_test.rs"
[[test]]
name = "while_loop_simple_test"
path = "tests/while_loop_simple_test.rs"
[[test]]
name = "while_loop_test"
path = "tests/while_loop_test.rs"
[[test]]
name = "while_println_test"
path = "tests/while_println_test.rs"
[[test]]
name = "workspace_commands_test"
path = "tests/workspace_commands_test.rs"