-
Notifications
You must be signed in to change notification settings - Fork 14
/
Copy pathCargo.toml
64 lines (59 loc) · 1.95 KB
/
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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
[package]
name = "manga-tui"
version = "0.5.0"
edition = "2021"
authors = ["Josue <[email protected]>"]
readme = "README.md"
homepage = "https://github.com/josueBarretogit/manga-tui"
repository = "https://github.com/josueBarretogit/manga-tui"
description = "Terminal-based manga reader and downloader with image rendering support"
keywords = ["cli", "command-line", "terminal", "tui" ]
categories = ["command-line-interface", "Command line utilities", ]
license = "MIT"
exclude = [
"public/*",
"docs/*",
"data_test/*"
]
[dependencies]
ratatui = { version = "0.29.0", features = ["all-widgets", "palette", "unstable-widget-ref"] }
ratatui-image = { version = "1.0.5", features = ["rustix"]}
throbber-widgets-tui = "0.8.0"
tui-input = "0.11.0"
tui-widget-list = "0.13.0"
crossterm = { version = "0.28.1", features = ["event-stream"] }
directories = "5.0.1"
image = "0.25.4"
reqwest = { version = "0.12.4", features = ["json"] }
tokio = { version = "1.42.0", features = ["full"] }
serde = { version = "1.0.210", features = ["derive"] }
strum = "0.26.3"
strum_macros = "0.26"
color-eyre = "0.6.2"
futures = "0.3.31"
bytes = { version = "1", features = ["serde"] }
serde_json = "1.0.117"
once_cell = "1.20.2"
chrono = "0.4.38"
open = "5"
rusqlite = { version = "0.31.0", features = ["bundled"] }
clap = { version = "4.5.18", features = ["derive", "cargo"] }
zip = "2.2.2"
toml = "0.8.19"
epub-builder = "0.7.4"
http = "1.0"
keyring = { version = "3", features = ["apple-native", "windows-native", "sync-secret-service"] }
log = { version = "0.4", features = ["std", "serde"] }
pretty_env_logger = "0.4"
[dev-dependencies]
httpmock = "0.7.0-rc.1"
pretty_assertions = "1.4.0"
rusty-hook = "0.11.2"
fake = "3.1.0"
uuid = { version = "1.11.0", features = ["v4", "fast-rng"] }
http = "1.0"
[target.'cfg(windows)'.dependencies]
windows-sys = { version = "0.59.0", features = ["Win32_Foundation", "Win32_System_Console", "Win32_UI_HiDpi"]}
[profile.release]
codegen-units = 1
lto = "fat"