Skip to content

Commit 9098369

Browse files
committed
add description and license
1 parent 147a19e commit 9098369

File tree

6 files changed

+19
-0
lines changed

6 files changed

+19
-0
lines changed

leetcode-core/Cargo.toml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,11 @@
11
[package]
22
name = "leetcode-core"
3+
description = "This library helps to talk to leetcode APIs via REST interface"
34
version.workspace = true
45
authors.workspace = true
56
edition.workspace = true
7+
keywords.workspace = true
8+
license.workspace = true
69

710
[dependencies]
811
serde = { workspace = true }

leetcode-tui-config/Cargo.toml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,11 @@
11
[package]
22
name = "leetcode-tui-config"
3+
description = "Leetcode tui config library"
34
version.workspace = true
45
authors.workspace = true
56
edition.workspace = true
7+
keywords.workspace = true
8+
license.workspace = true
69

710
[dependencies]
811
leetcode-tui-shared = { path = "../leetcode-tui-shared", version = "0.4.0" }

leetcode-tui-core/Cargo.toml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,11 @@
11
[package]
22
name = "leetcode-tui-core"
3+
description = "Leetcode tui related core modules"
34
version.workspace = true
45
authors.workspace = true
56
edition.workspace = true
7+
keywords.workspace = true
8+
license.workspace = true
69

710
[dependencies]
811
thiserror = { workspace = true }

leetcode-tui-db/Cargo.toml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,11 @@
11
[package]
22
name = "leetcode-tui-db"
3+
description = "Leetcode tui database"
34
version.workspace = true
45
authors.workspace = true
56
edition.workspace = true
7+
keywords.workspace = true
8+
license.workspace = true
69

710
[dependencies]
811
leetcode-core = { path = "../leetcode-core", version = '0.4.0' }

leetcode-tui-rs/Cargo.toml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,11 @@
11
[package]
22
name = "leetcode-tui-rs"
3+
description = "Leetcode terminal UI. Helps you browse leetcode stats and manage your leetcode from terminal."
34
version.workspace = true
45
authors.workspace = true
56
edition.workspace = true
7+
license.workspace = true
8+
keywords.workspace = true
69

710
[[bin]]
811
name = "leetui"

leetcode-tui-shared/Cargo.toml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,12 @@
11
[package]
22
name = "leetcode-tui-shared"
3+
description = "Leetcode tui shared library"
4+
readme = "README.md"
35
version.workspace = true
46
authors.workspace = true
57
edition.workspace = true
8+
keywords.workspace = true
9+
license.workspace = true
610

711
[dependencies]
812
ratatui = { workspace = true }

0 commit comments

Comments
 (0)