forked from ayn2op/discordo
-
Notifications
You must be signed in to change notification settings - Fork 10
Expand file tree
/
Copy pathCargo.toml
More file actions
99 lines (79 loc) · 3.35 KB
/
Cargo.toml
File metadata and controls
99 lines (79 loc) · 3.35 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
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
[package]
name = "oxicord"
version = "0.1.9"
edition = "2024"
authors = ["linuxmobile"]
description = "A lightweight, secure Discord terminal client"
license = "MIT"
repository = "https://github.com/linuxmobile/oxicord"
keywords = ["discord", "tui", "terminal", "client"]
categories = ["command-line-utilities"]
[dependencies]
tokio = { version = "1.49", features = ["rt-multi-thread", "macros", "sync", "time", "fs", "net", "io-util"] }
ratatui = { version = "0.30", features = ["crossterm_0_29"], default-features = false }
crossterm = { version = "0.29", features = ["event-stream"] }
tui-textarea = { version = "0.7", default-features = false, features = ["crossterm", "search"] }
tempfile = "3.24.0"
reqwest = { version = "0.12", features = ["json", "rustls-tls-webpki-roots", "multipart", "gzip"], default-features = false }
base64 = "0.22"
tokio-tungstenite = { version = "0.28", features = ["rustls-tls-webpki-roots"] }
futures-util = { version = "0.3.31", default-features = false, features = ["std", "async-await"] }
chrono = { version = "0.4.43", features = ["serde", "clock"], default-features = false }
flate2 = "1.1.8"
serde = { version = "1.0.228", features = ["derive"] }
serde_json = "1.0.149"
thiserror = "2.0.18"
color-eyre = "0.6.5"
toml = "0.9"
directories = "6.0"
keyring = { version = "3.6.3", default-features = false, features = ["apple-native", "windows-native", "sync-secret-service", "linux-native"] }
zeroize = { version = "1.8.1", features = ["derive"] }
tracing = { version = "0.1.44", default-features = false, features = ["std", "attributes"] }
tracing-subscriber = { version = "0.3.22", default-features = false, features = ["env-filter", "fmt", "ansi", "std", "registry"] }
async-trait = "0.1.89"
shlex = "1.3"
dotenvy = "0.15.7"
clap = { version = "4.5.54", default-features = false, features = ["derive", "env", "std", "help", "usage", "error-context"] }
syntect = { version = "5.3.0", default-features = false, features = ["default-fancy"] }
tachyonfx = "0.22.0"
lru = "0.16.3"
unicode-width = "0.2.0"
# Image rendering - Common
image = { version = "0.25.9", default-features = false, features = ["png", "jpeg", "webp"] }
sha2 = "0.10.9"
hex = "0.4.3"
regex = { version = "1.11", default-features = false, features = ["std", "perf", "unicode"] }
bitflags = { version = "2.6", features = ["serde"] }
tui-scrollbar = "0.2.2"
uuid = { version = "1.19.0", features = ["v4", "fast-rng"] }
parking_lot = "0.12.5"
arboard = { version = "3.6.1", features = ["wayland-data-control", "image-data"], default-features = false }
notify-rust = "4"
opener = "0.8.4"
coolor = "1.1.0"
fuzzy-matcher = "0.3.7"
termbg = "0.6.2"
bytes = "1.11.1"
url = "2.5"
percent-encoding = "2.3"
# Image rendering - Platform Specific
[target.'cfg(target_os = "linux")'.dependencies]
ratatui-image = { version = "10.0.3", features = ["crossterm", "chafa-dyn"], default-features = false }
[target.'cfg(target_os = "macos")'.dependencies]
ratatui-image = { version = "10.0.3", features = ["crossterm", "chafa-dyn"], default-features = false }
[target.'cfg(windows)'.dependencies]
ratatui-image = { version = "10.0.3", features = ["crossterm"], default-features = false }
[dev-dependencies]
tokio-test = "0.4"
mockall = "0.14"
test-case = "3.3.1"
[profile.dev]
opt-level = 0
debug = 0
split-debuginfo = "unpacked"
incremental = true
[profile.release]
lto = "thin"
codegen-units = 16
panic = "abort"
strip = true