For an object relational mapper for Rust, the strongest matches are launchbadge/sqlx (SQLx is a high-performance, asynchronous database toolkit for Rust), diesel-rs/diesel (Diesel is a comprehensive, type-safe ORM and database toolkit) and seaql/sea-orm (Sea-ORM is a comprehensive, asynchronous ORM for Rust that). brendonovich/prisma-client-rust is also worth a look. Each is ranked by relevance to your query, popularity and recent activity.
Wir kuratieren Open-Source GitHub Repositories passend zu „best rust orm libraries“. Die Ergebnisse sind nach Relevanz für deine Suche sortiert — nutze die Filter unten oder verfeinere die Suche mit KI.
This toolkit provides an asynchronous interface for interacting with relational databases, offering a unified driver-agnostic layer for managing connection pools and executing transactions. It is designed to integrate with asynchronous runtimes, enabling non-blocking database operations while maintaining secure, encrypted communication between the application and the database server. The project distinguishes itself through its compile-time validation capabilities, which use procedural macros to inspect SQL syntax and parameter types against a live database schema during the build process. Th
SQLx is a high-performance, asynchronous database toolkit for Rust that provides compile-time type-safe queries, robust migration support, and a unified interface for multiple relational databases, perfectly matching the requirements for a modern Rust ORM.
This project is a type-safe database toolkit and object-relational mapper designed to enforce structural consistency between database schemas and application code. By leveraging compile-time validation, it ensures that SQL queries and data structures remain synchronized, preventing common errors before the application executes. It provides a comprehensive framework for relational data modeling, allowing developers to define table associations and map database results directly into strongly-typed language objects. The library distinguishes itself through its focus on compile-time safety and au
Diesel is a comprehensive, type-safe ORM and database toolkit for Rust that provides a robust query builder, schema migration support, and multi-database compatibility, making it a flagship solution for this category.
Sea-ORM is an asynchronous SQL object-relational mapper and database toolkit for mapping relational tables to strongly typed objects. It provides a relational database mapper for performing CRUD operations across MySQL, PostgreSQL, and SQLite, and includes a programmatic dynamic query builder for constructing complex SQL statements. The project distinguishes itself by providing a GraphQL schema generator that transforms database entities into typed schemas with built-in pagination and filters. It also features a dedicated database migration tool for defining and applying versioned schema chan
Sea-ORM is a comprehensive, asynchronous ORM for Rust that provides type-safe query building, multi-database support, and integrated migration tools, making it a flagship solution for this category.
Prisma Client Rust is an object-relational mapping tool and database query builder designed for Rust applications. It functions by reading database schema definitions during the build process to generate strongly typed client code, ensuring that data structures are validated at compile time to prevent runtime errors. The project distinguishes itself through its use of compile-time schema introspection and a trait-based query builder, which together enforce type safety across all database interactions. By mapping raw database rows directly into native Rust structures, it provides a consistent
This library provides a type-safe interface for Rust by leveraging the Prisma schema engine, offering a robust query builder and migration support that fits the requirements for a database toolkit.