Skip to content

Commit 3c5603d

Browse files
authored
config: Cargo.toml add message for cargo publish (#71)
1 parent 036385d commit 3c5603d

File tree

2 files changed

+13
-1
lines changed

2 files changed

+13
-1
lines changed

Cargo.toml

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,13 @@
44
name = "kip-sql"
55
version = "0.0.1-alpha.0"
66
edition = "2021"
7+
authors = ["Kould <kould2333@gmail.com>", "Xwg <loloxwg@gmail.com>"]
8+
description = "build the SQL layer of KipDB database"
9+
license = "Apache-2.0"
10+
repository = "https://github.com/KipData/KipSQL"
11+
readme = "README.md"
12+
keywords = ["async", "SQL", "Persistence"]
13+
categories = ["development-tools", "database"]
714

815
[lib]
916
doctest = false
@@ -29,7 +36,7 @@ futures = "0.3.25"
2936
ahash = "0.8.3"
3037
lazy_static = "1.4.0"
3138
comfy-table = "7.0.1"
32-
bytes = "*"
39+
bytes = "1.5.0"
3340
kip_db = "0.1.2-alpha.15"
3441
async-recursion = "1.0.5"
3542
rust_decimal = "1"

README.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,11 @@
66
![architecture](./static/images/architecture.png)
77

88
### Get Started
9+
#### 组件引入
10+
``` toml
11+
kip-sql = "0.0.1-alpha.0"
12+
```
13+
914
Install rust toolchain first.
1015
```
1116
cargo run

0 commit comments

Comments
 (0)