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

Découvrez les meilleurs dépôts open-source grâce à notre recherche par IA.

ExplorerRecherches sélectionnéesAlternatives open sourceLogiciels auto-hébergésBlogPlan du site
ProjetServeur MCPÀ proposNotre méthodologiePresse
Mentions légalesConfidentialitéConditions d'utilisation
© 2026 Bringes Technology SRL·VAT RO45896025·hello@awesome-repositories.com
·

3 dépôts

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

Trouvez les meilleurs dépôts grâce à l'IA.Nous recherchons les dépôts les plus pertinents grâce à l'IA.
  • intellij-rust/intellij-rustAvatar de intellij-rust

    intellij-rust/intellij-rust

    4,533Voir sur GitHub↗

    Ce projet est un plugin IntelliJ IDE qui fournit un environnement de développement intégré pour Rust. Il sert d'orchestrateur de système de build et d'interface de débogueur, offrant une analyse linguistique complète, une coloration syntaxique et une assistance à l'édition de code intelligente. Le plugin s'intègre à un serveur de langage pour fournir une inférence de type en temps réel et une navigation dans le code. Il inclut un outil d'analyse statique dédié pour détecter les doublons de code, analyser les fuites de mémoire et mesurer la couverture des tests. La boîte à outils couvre la gestion de la chaîne d'outils et l'intégration de Cargo pour la gestion des dépendances et des manifestes. Il fournit en outre des capacités pour le profilage de performance, le débogage de programmes en cours d'exécution et l'automatisation des tests, ainsi qu'un support pour le développement d'applications web incluant la gestion de conteneurs et l'exploration de schémas de base de données.

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

    Kotlinclionhacktoberfestintellij
    Voir sur GitHub↗4,533
  • model-checking/kaniAvatar de model-checking

    model-checking/kani

    2,943Voir sur 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
    Voir sur GitHub↗2,943
  • razrfalcon/cargo-bloatAvatar de RazrFalcon

    RazrFalcon/cargo-bloat

    2,718Voir sur 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
    Voir sur GitHub↗2,718
  1. Home
  2. Programming Languages & Runtimes
  3. Rust Program Analysis

Explorer les sous-tags

  • 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.