-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
40 lines (35 loc) · 837 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
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
[package]
authors = ["jannes <jannes.dev@posteo.net>"]
edition = "2021"
name = "han-cihui"
version = "0.1.0"
build = "build.rs"
[lib]
name = "han_cihui"
path = "src/lib.rs"
[[bin]]
name = "han-cihui"
path = "src/main.rs"
[[bin]]
name = "han-shaixuan"
path = "src/tagger/main.rs"
[dependencies]
anyhow = "1.0.32"
clap = "4.1"
crossterm = {version = "0.25", features = ["serde"]}
epubparse = "0.2.2"
home = "0.5.5"
jieba-rs = "0.6"
lazy_static = "1.4.0"
refinery = {version = "0.8.2", features = ["rusqlite"]}
regex = "1.3.9"
rusqlite = "0.26.3"
serde = {version = "1.0", features = ["derive"]}
serde_json = "1.0.53"
slint = "0.3.3"
toml = "0.8.8"
tui = {version = "0.19.0", default-features = false, features = ['crossterm', 'serde']}
unicode-segmentation = "1.6.0"
unicode-width = "0.1.8"
[build-dependencies]
slint-build = "0.3.3"