awesome-repositories.com
Blog
MCP
awesome-repositories.com

Descubre los mejores repositorios open-source con nuestra búsqueda potenciada por IA.

ExplorarBúsquedas curadasAlternativas open-sourceSoftware autohospedableBlogMapa del sitio
ProyectoServidor MCPAcerca deCómo clasificamosPrensa
Aviso legalPrivacidadTérminos
© 2026 Bringes Technology SRL·VAT RO45896025·hello@awesome-repositories.com
·

3 repositorios

Awesome GitHub RepositoriesRust Program Analysis

Static analysis tools specifically designed to detect errors like overflows and panics in Rust applications.

Distinguishing note: Candidates focus on Rust as a language or runtime accelerations, not on static analysis tools for the language.

Explore 3 awesome GitHub repositories matching programming languages & runtimes · Rust Program Analysis. Refine with filters or upvote what's useful.

Awesome Rust Program Analysis GitHub Repositories

Encuentra los mejores repositorios con IA.Buscaremos los repositorios que mejor coincidan usando IA.
  • intellij-rust/intellij-rustAvatar de intellij-rust

    intellij-rust/intellij-rust

    4,533Ver en GitHub↗

    Este proyecto es un plugin de IDE IntelliJ que proporciona un entorno de desarrollo integrado para Rust. Sirve como orquestador de sistema de compilación e interfaz de depurador, ofreciendo un análisis de lenguaje completo, resaltado de sintaxis y asistencia inteligente para la edición de código. El plugin se integra con un servidor de lenguaje para proporcionar inferencia de tipos en tiempo real y navegación de código. Incluye una herramienta de análisis estático dedicada para detectar duplicados de código, analizar fugas de memoria y medir la cobertura de pruebas. El conjunto de herramientas cubre la gestión de la cadena de herramientas (toolchain) y la integración con Cargo para el manejo de dependencias y manifiestos. Además, proporciona capacidades para la creación de perfiles de rendimiento, depuración de programas en tiempo de ejecución y automatización de pruebas, así como soporte para el desarrollo de aplicaciones web, incluyendo la gestión de contenedores y la exploración de esquemas de bases de datos.

    Includes a static analysis suite for detecting code duplicates and analyzing memory leaks in Rust projects.

    Kotlinclionhacktoberfestintellij
    Ver en GitHub↗4,533
  • model-checking/kaniAvatar de model-checking

    model-checking/kani

    2,943Ver en GitHub↗

    Kani is a formal verification tool and model checker for Rust. It functions as a bit-precise static analyzer that mathematically proves the correctness and memory safety of code by exhaustively analyzing program states to identify undefined behavior, panics, and logic errors. The tool identifies bugs by producing concrete counterexamples when program assertions or safety contracts are violated. It enables the definition of function contracts through preconditions and postconditions to verify that inputs and outputs match expected behavior. The system provides capabilities for Rust program an

    Analyzes Rust applications for arithmetic overflows and panics to eliminate runtime errors before deployment.

    Rustmodel-checkingrustverification
    Ver en GitHub↗2,943
  • razrfalcon/cargo-bloatAvatar de RazrFalcon

    RazrFalcon/cargo-bloat

    2,718Ver en GitHub↗

    cargo-bloat is a binary size analyzer and compilation analysis tool for Rust. It identifies the largest functions and dependencies within compiled executables to locate space-consuming code and reduce the overall binary footprint. The tool functions as a build profile inspector and symbol size profiler, allowing users to analyze how different compiler options and build profiles affect the final binary size. It can export symbol data into human-readable tables or JSON format to monitor the footprint of specific crates. Capabilities include multi-target analysis across different platforms and

    Examines compiled Rust binaries to identify which components consume the most disk space.

    Rust
    Ver en GitHub↗2,718
  1. Home
  2. Programming Languages & Runtimes
  3. Rust Program Analysis

Explorar subetiquetas

  • Executable Size AnalysisAnalysis of compiled executables to determine the disk space consumption of specific components. **Distinct from Rust Program Analysis:** Focuses on binary size and bloat analysis rather than detecting errors like overflows or panics.