depyler-core 4.1.1

Core transpilation engine for the Depyler Python-to-Rust transpiler
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
//! Text-level fix functions for post-codegen Rust output correction.
//!
//! These functions operate on the generated Rust source code as text,
//! fixing patterns that the AST-level codegen cannot handle correctly.
//! Each fix targets a specific rustc error code (E0308, E0599, etc.).

mod collections;
mod depyler_value;
mod enums;
mod misc;
mod numeric;
mod options_results;
mod ownership;
mod strings;
mod truthiness;

pub(super) mod pipeline;