This commit is contained in:
Chris Tsang 2021-07-03 15:23:42 +08:00
parent 78eeda0c00
commit 53311d883b
3 changed files with 7 additions and 3 deletions

View File

@ -19,9 +19,13 @@ license = "MIT OR Apache-2.0"
documentation = "https://docs.rs/sea-orm" documentation = "https://docs.rs/sea-orm"
repository = "https://github.com/SeaQL/sea-orm" repository = "https://github.com/SeaQL/sea-orm"
categories = [ "database" ] categories = [ "database" ]
keywords = [ "orm", "database", "sql", "mysql", "postgres", "sqlite" ] keywords = [ "orm", "database", "sql", "mysql", "postgres", "sqlite", "async" ]
publish = false publish = false
[package.metadata.docs.rs]
features = ["default", "sqlx-mysql", "sqlx-postgres", "sqlx-sqlite", "runtime-async-std-native-tls"]
rustdoc-args = ["--cfg", "docsrs"]
[lib] [lib]
name = "sea_orm" name = "sea_orm"
path = "src/lib.rs" path = "src/lib.rs"

View File

@ -29,7 +29,7 @@ Relying on SQLx, SeaORM is a new library with async support from day 1.
2. Dynamic 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 3. Testable

View File

@ -29,7 +29,7 @@
//! //!
//! 2. Dynamic //! 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 //! 3. Testable
//! //!