| Crates.io | depyler |
| lib.rs | depyler |
| version | 3.22.0 |
| created_at | 2025-07-07 12:40:29.249089+00 |
| updated_at | 2026-01-18 22:28:50.84501+00 |
| description | A Python-to-Rust transpiler focusing on energy-efficient, safe code generation with progressive verification |
| homepage | https://github.com/paiml/depyler |
| repository | https://github.com/paiml/depyler |
| max_upload_size | |
| id | 1741174 |
| size | 1,200,091 |
Depyler translates annotated Python code into idiomatic Rust, preserving program semantics while providing compile-time safety guarantees. Part of the PAIML Stack.
depyler compilecargo install depyler
The fastest way to use Depyler:
# Compile Python to a standalone binary
depyler compile script.py
# Run the compiled binary
./script
# Transpile a Python file to Rust
depyler transpile example.py
# Transpile with semantic verification
depyler transpile example.py --verify
Input (fibonacci.py):
def fibonacci(n: int) -> int:
if n <= 1:
return n
return fibonacci(n - 1) + fibonacci(n - 2)
Output (fibonacci.rs):
fn fibonacci(n: i32) -> i32 {
if n <= 1 {
return n;
}
fibonacci(n - 1) + fibonacci(n - 2)
}
# Compile with custom output name
depyler compile script.py -o my_app
# Debug build (faster compilation)
depyler compile script.py --profile debug
# Release build (optimized, default)
depyler compile script.py --profile release
# Show transpilation trace
depyler transpile example.py --trace
# Explain transformation decisions
depyler transpile example.py --explain
# Analyze migration complexity
depyler analyze example.py
use depyler::{transpile_file, TranspileOptions};
fn main() -> Result<(), Box<dyn std::error::Error>> {
let options = TranspileOptions::default()
.with_verification(true);
let rust_code = transpile_file("example.py", options)?;
println!("{}", rust_code);
Ok(())
}
| Feature | Status |
|---|---|
| Functions with type annotations | Supported |
| Basic types (int, float, str, bool) | Supported |
| Collections (List, Dict, Tuple, Set) | Supported |
| Control flow (if, while, for, match) | Supported |
| Comprehensions (list, dict, set) | Supported |
| Generator expressions | Supported |
| Exception handling (→ Result<T, E>) | Supported |
| Classes and methods | Supported |
| Async/await | Supported |
| Context managers | Supported |
Not Supported: Dynamic features (eval, exec), runtime reflection, multiple inheritance, monkey patching.
27 modules validated with 151 tests passing (100% coverage).
| Category | Modules |
|---|---|
| Serialization | json, struct, base64, csv |
| Date/Time | datetime, calendar, time |
| Cryptography | hashlib, secrets |
| Text | textwrap, re, string |
| Math | math, decimal, fractions, statistics |
| File System | os, pathlib, io |
| Data Structures | collections, copy, memoryview, array |
| Functional | itertools, functools |
| Random | random |
| System | sys |
See validation report for details.
Python AST → HIR → Type Inference → Rust AST → Code Generation
| Component | Description |
|---|---|
| Parser | RustPython AST parser |
| HIR | High-level intermediate representation |
| Type System | Conservative type inference with annotation support |
| Verification | Property-based testing for semantic equivalence |
| Codegen | Rust code generation via syn/quote |
| Metric | Value |
|---|---|
| Line Coverage | 87.85% |
| Function Coverage | 92.85% |
| Total Tests | 14,000+ |
| Mutation Kill Rate | 75%+ |
Run coverage locally:
cargo llvm-cov nextest --workspace --lib --summary-only
Contributions welcome! Please follow the quality standards:
cargo clippy -- -D warningscargo fmtSee CONTRIBUTING.md for details.
Licensed under MIT License. See LICENSE for details.