From ad33d7745d5d22607de8efad76974752f09740a2 Mon Sep 17 00:00:00 2001 From: Chris Tsang Date: Wed, 26 Jul 2023 19:07:36 +0800 Subject: [PATCH] Readme --- README.md | 8 ++++---- src/lib.rs | 8 ++++---- 2 files changed, 8 insertions(+), 8 deletions(-) diff --git a/README.md b/README.md index 31f5af25..a5fc2eb2 100644 --- a/README.md +++ b/README.md @@ -49,15 +49,15 @@ Integration examples 2. Dynamic - Built upon [SeaQuery](https://github.com/SeaQL/sea-query), SeaORM allows you to build complex queries without 'fighting the ORM'. + Built upon [SeaQuery](https://github.com/SeaQL/sea-query), SeaORM allows you to build complex dynamic queries. -3. Testable +3. Multi-backend - Use mock connections to write unit tests for your logic. + You can develop applications targeting multiple backends, or use Mock / SQLite as a test double in test suites. 4. Service Oriented - Quickly build services that join, filter, sort and paginate data in APIs. + Quickly build services that join, filter, sort and paginate data in REST, GraphQL and gRPC APIs. ## A quick taste of SeaORM diff --git a/src/lib.rs b/src/lib.rs index fdc399d2..a5ce1fe3 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -59,15 +59,15 @@ //! //! 2. Dynamic //! -//! Built upon [SeaQuery](https://github.com/SeaQL/sea-query), SeaORM allows you to build complex queries without 'fighting the ORM'. +//! Built upon [SeaQuery](https://github.com/SeaQL/sea-query), SeaORM allows you to build complex dynamic queries. //! -//! 3. Testable +//! 3. Multi-backend //! -//! Use mock connections to write unit tests for your logic. +//! You can develop applications targeting multiple backends, or use Mock / SQLite as a test double in test suites. //! //! 4. Service Oriented //! -//! Quickly build services that join, filter, sort and paginate data in APIs. +//! Quickly build services that join, filter, sort and paginate data in REST, GraphQL and gRPC APIs. //! //! ## A quick taste of SeaORM //!