From 3c5603de895db4c3cb1a301bd4d7acf28c963e58 Mon Sep 17 00:00:00 2001 From: Kould <2435992353@qq.com> Date: Sun, 1 Oct 2023 04:18:53 +0800 Subject: [PATCH] config: `Cargo.toml` add message for `cargo publish ` (#71) --- Cargo.toml | 9 ++++++++- README.md | 5 +++++ 2 files changed, 13 insertions(+), 1 deletion(-) diff --git a/Cargo.toml b/Cargo.toml index a1ba0656..bf937f55 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -4,6 +4,13 @@ name = "kip-sql" version = "0.0.1-alpha.0" edition = "2021" +authors = ["Kould ", "Xwg "] +description = "build the SQL layer of KipDB database" +license = "Apache-2.0" +repository = "https://github.com/KipData/KipSQL" +readme = "README.md" +keywords = ["async", "SQL", "Persistence"] +categories = ["development-tools", "database"] [lib] doctest = false @@ -29,7 +36,7 @@ futures = "0.3.25" ahash = "0.8.3" lazy_static = "1.4.0" comfy-table = "7.0.1" -bytes = "*" +bytes = "1.5.0" kip_db = "0.1.2-alpha.15" async-recursion = "1.0.5" rust_decimal = "1" diff --git a/README.md b/README.md index c0d543a1..e49e2cb5 100755 --- a/README.md +++ b/README.md @@ -6,6 +6,11 @@ ![architecture](./static/images/architecture.png) ### Get Started +#### 组件引入 +``` toml +kip-sql = "0.0.1-alpha.0" +``` + Install rust toolchain first. ``` cargo run