From 53311d883b47aeffbbfd6eff54e968cd46427a63 Mon Sep 17 00:00:00 2001 From: Chris Tsang Date: Sat, 3 Jul 2021 15:23:42 +0800 Subject: [PATCH] Docs --- Cargo.toml | 6 +++++- README.md | 2 +- src/lib.rs | 2 +- 3 files changed, 7 insertions(+), 3 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index df9e2b79..2773730f 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -19,9 +19,13 @@ license = "MIT OR Apache-2.0" documentation = "https://docs.rs/sea-orm" repository = "https://github.com/SeaQL/sea-orm" categories = [ "database" ] -keywords = [ "orm", "database", "sql", "mysql", "postgres", "sqlite" ] +keywords = [ "orm", "database", "sql", "mysql", "postgres", "sqlite", "async" ] publish = false +[package.metadata.docs.rs] +features = ["default", "sqlx-mysql", "sqlx-postgres", "sqlx-sqlite", "runtime-async-std-native-tls"] +rustdoc-args = ["--cfg", "docsrs"] + [lib] name = "sea_orm" path = "src/lib.rs" diff --git a/README.md b/README.md index c10c87f8..c5345d22 100644 --- a/README.md +++ b/README.md @@ -29,7 +29,7 @@ Relying on SQLx, SeaORM is a new library with async support from day 1. 2. Dynamic -Under the hood, SeaQuery allows you to build complex, dynamic queries without 'fighting the ORM'. +Built upon SeaQuery, SeaORM allows you to build complex queries without 'fighting the ORM'. 3. Testable diff --git a/src/lib.rs b/src/lib.rs index edb5ed6d..ae71656e 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -29,7 +29,7 @@ //! //! 2. Dynamic //! -//! Under the hood, SeaQuery allows you to build complex, dynamic queries without 'fighting the ORM'. +//! Built upon SeaQuery, SeaORM allows you to build complex queries without 'fighting the ORM'. //! //! 3. Testable //!