-
Notifications
You must be signed in to change notification settings - Fork 30
Expand file tree
/
Copy pathCargo.toml
More file actions
80 lines (73 loc) · 2.36 KB
/
Copy pathCargo.toml
File metadata and controls
80 lines (73 loc) · 2.36 KB
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
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
[package]
name = "manga-tui"
version = "0.10.0"
edition = "2024"
authors = ["Josue <josuebarretogit@gmail.com>"]
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"]
license = "MIT"
exclude = [
"public/*",
"docs/*",
"data_test/*"
]
[dependencies]
# ratatui related 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.9.0"
tui-input = { version = "0.14.0", features = ["crossterm"], default-features = false}
tui-widget-list = "0.13.0"
crossterm = { version = "0.29.0", features = ["event-stream"] }
directories = "6.0.0"
image = "0.25.8"
reqwest = { version = "0.12.24", features = ["json", "native-tls-alpn", "cookies", "http2", "gzip", "deflate"] }
tokio = { version = "1.47.1", features = ["full"] }
serde = { version = "1.0.228", features = ["derive"] }
strum = "0.26.3"
strum_macros = "0.26"
color-eyre = "0.6.5"
futures = "0.3.31"
bytes = { version = "1", features = ["serde"] }
serde_json = "1.0.145"
once_cell = "1.21.1"
chrono = { version= "0.4.42", features = ["serde"] }
open = "5"
rusqlite = { version = "0.37.0", features = ["bundled"] }
clap = { version = "4.5.49", features = ["derive", "cargo"] }
zip = "4.6.1"
toml = "0.9.6"
epub-builder = "0.8.0"
http = "1.3"
keyring = { version = "3", features = ["apple-native", "windows-native", "sync-secret-service"] }
log = { version = "0.4", features = ["std", "serde"] }
pretty_env_logger = "0.5"
scraper = "0.24.0"
regex = "1.12.2"
lopdf = "0.38.0"
flate2 = "1.1.4"
rand = "0.9.2"
[dev-dependencies]
httpmock = "0.7.0-rc.1"
pretty_assertions = "1.4.0"
rusty-hook = "0.11.2"
fake = "4.4.0"
uuid = { version = "1.18.1", features = ["v4", "fast-rng"] }
http = "1.3"
criterion = { version = "0.7", features = ["html_reports"] }
[[bench]]
name = "utils"
harness = false
[target.'cfg(windows)'.dependencies]
windows-sys = { version = "0.60.2", features = ["Win32_Foundation", "Win32_System_Console", "Win32_UI_HiDpi"]}
[profile.release]
codegen-units = 1
lto = "fat"
opt-level = "z"
strip = "debuginfo"
[features]
local_only = []