diff --git a/Cargo.toml b/Cargo.toml index 4a35b12a..7dc1c014 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -16,8 +16,7 @@ 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", "async"] -publish = false +keywords = ["async", "orm", "mysql", "postgres", "sqlite"] [package.metadata.docs.rs] features = [ @@ -37,7 +36,7 @@ chrono = { version = "^0", optional = true } futures = { version = "^0.3" } futures-util = { version = "^0.3" } rust_decimal = { version = "^1", optional = true } -sea-orm-macros = { path = "sea-orm-macros", optional = true } +sea-orm-macros = { version = "^0.1", optional = true } sea-query = { version = "^0.12.8" } sea-strum = { version = "^0.21", features = ["derive", "sea-orm"] } serde = { version = "^1.0", features = ["derive"] } diff --git a/README.md b/README.md index 32fdfb45..d07af56f 100644 --- a/README.md +++ b/README.md @@ -8,6 +8,10 @@ 🐚 An async & dynamic ORM for Rust

+ [![crate](https://img.shields.io/crates/v/sea-orm.svg)](https://crates.io/crates/sea-orm) + [![docs](https://docs.rs/sea-orm/badge.svg)](https://docs.rs/sea-orm) + [![build status](https://github.com/SeaQL/sea-orm/actions/workflows/rust.yml/badge.svg)](https://github.com/SeaQL/sea-orm/actions/workflows/rust.yml) + Built with 🔥 by 🌊🦀🐚 diff --git a/src/lib.rs b/src/lib.rs index ba7b4e7c..4f4229da 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -8,6 +8,10 @@ //! 🐚 An async & dynamic ORM for Rust //!

//! +//! [![crate](https://img.shields.io/crates/v/sea-orm.svg)](https://crates.io/crates/sea-orm) +//! [![docs](https://docs.rs/sea-orm/badge.svg)](https://docs.rs/sea-orm) +//! [![build status](https://github.com/SeaQL/sea-orm/actions/workflows/rust.yml/badge.svg)](https://github.com/SeaQL/sea-orm/actions/workflows/rust.yml) +//! //! Built with 🔥 by 🌊🦀🐚 //! //! @@ -18,7 +22,7 @@ //! API to make working with databases in Rust a first-class experience. //! //! ```markdown -//! This is a preview of SeaORM, and is not yet released. +//! This is an early release of SeaORM, the API is not stable yet. //! ``` //! //! ## Features