forked from YetAnotherMechanicusEnjoyer/vimcord
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
33 lines (32 loc) · 1.02 KB
/
Cargo.toml
File metadata and controls
33 lines (32 loc) · 1.02 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
[package]
name = "vimcord"
version = "0.2.12"
edition = "2024"
description = "A Terminal UI Discord Client in Rust"
repository = "https://github.com/YetAnotherMechanicusEnjoyer/vimcord"
homepage = "https://github.com/YetAnotherMechanicusEnjoyer/vimcord"
readme = "README.md"
license = "MIT"
authors = [
"YetAnotherMechanicusEnjoyer <https://github.com/YetAnotherMechanicusEnjoyer>",
]
keywords = ["api", "terminal", "discord", "tui"]
categories = ["command-line-utilities"]
[dependencies]
chrono = "0.4.42"
confy = "2.0.0"
crossterm = "0.29.0"
ctrlc = "3.5.1"
dirs = "6.0.0"
dotenvy = "0.15.7"
futures-util = "0.3.31"
notify-rust = "4.12.0"
ratatui = "0.30.0"
reqwest = { version = "0.13.2", features = ["json"] }
serde = { version = "1.0.228", features = ["derive"] }
serde_json = "1.0.145"
tokio = { version = "1.48.0", features = ["full"] }
tokio-tungstenite = { version = "0.29.0", features = ["native-tls"] }
tokio-util = { version = "0.7.17", features = ["io"] }
unicode-width = "0.2.0"
uuid = { version = "1.8.0", features = ["v4"] }