forked from DanXi-Dev/danta-cli
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
34 lines (29 loc) · 757 Bytes
/
Copy pathCargo.toml
File metadata and controls
34 lines (29 loc) · 757 Bytes
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
[package]
name = "danta-cli"
version = "0.1.0"
edition = "2021"
description = "CLI/TUI client for FDU Hole (树洞) forum"
[dependencies]
# HTTP & async
reqwest = { version = "0.12", features = ["json", "rustls-tls"], default-features = false }
tokio = { version = "1", features = ["full"] }
# Serialization
serde = { version = "1", features = ["derive"] }
serde_json = "1"
# CLI
clap = { version = "4", features = ["derive"] }
# TUI
ratatui = "0.30"
crossterm = "0.29"
ratatui-image = { version = "10.0", default-features = false, features = ["crossterm"] }
image = "0.25"
# Misc
anyhow = "1"
dirs = "6"
chrono = { version = "0.4", features = ["serde"] }
textwrap = "0.16"
unicode-width = "0.2"
urlencoding = "2"
toml = "0.8"
regex = "1"
libc = "0.2"