-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathCargo.toml
25 lines (24 loc) · 824 Bytes
/
Cargo.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
[package]
name = "leetcode-tui-core"
description = "Leetcode tui related core modules"
version.workspace = true
authors.workspace = true
edition.workspace = true
keywords.workspace = true
license.workspace = true
repository.workspace = true
[dependencies]
thiserror = { workspace = true }
leetcode-tui-shared = { path = "../leetcode-tui-shared", version = '0.5.2' }
leetcode-tui-config = { path = "../leetcode-tui-config", version = '0.5.2' }
tokio = { workspace = true }
leetcode-tui-db = { path = "../leetcode-tui-db/", version = '0.5.2' }
leetcode-core = { path = "../leetcode-core", version = '0.5.2' }
crossterm = { workspace = true }
ratatui = { workspace = true }
color-eyre = { workspace = true }
regex = { workspace = true }
indexmap = "2.0.1"
fuzzy-matcher = "0.3.7"
rand = "0.8.5"
html2md = { workspace = true }