generated from Xithrius/rust-binary-project-template
-
-
Notifications
You must be signed in to change notification settings - Fork 32
/
Cargo.toml
72 lines (66 loc) · 1.66 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
65
66
67
68
69
70
71
72
[package]
name = "twitch-tui"
version = "2.6.17"
authors = ["Xithrius <[email protected]>"]
edition = "2021"
rust-version = "1.75.0"
description = "Twitch chat in the terminal."
documentation = "https://github.com/Xithrius/twitch-tui"
homepage = "https://github.com/Xithrius/twitch-tui"
repository = "https://github.com/Xithrius/twitch-tui"
license = "MIT OR Apache-2.0"
keywords = ["tui", "twitch"]
categories = ["command-line-utilities"]
[dependencies]
crossterm = "0.28.1"
tokio = { version = "1.39.2", features = [
"rt",
"macros",
"rt-multi-thread",
"fs",
] }
clap = { version = "4.5.16", features = ["derive", "cargo"] }
serde = { version = "1.0.208", features = ["derive"] }
serde_json = "1.0.125"
unicode-width = "0.1.13"
unicode-segmentation = "1.11.0"
chrono = "0.4.38"
irc = "1.0.0"
futures = "0.3.30"
toml = "0.8.19"
textwrap = "0.16.1"
rustyline = "14.0.0"
fuzzy-matcher = "0.3.7"
regex = "1.10.6"
color-eyre = "0.6.3"
log = "0.4.22"
fern = "0.6.2"
dialoguer = { version = "0.11.0", default-features = false }
reqwest = { version = "0.12.5", features = ["json"] }
image = "0.25.5"
base64 = "0.22.1"
tempfile = "3.12.0"
serde_with = "3.9.0"
once_cell = "1.19.0"
webbrowser = "1.0.1"
memchr = "2.7.4"
[target.'cfg(not(windows))'.dependencies]
tui = { package = "ratatui", version = "0.28.0", default-features = false, features = [
"crossterm",
"serde",
"underline-color",
] }
[target.'cfg(windows)'.dependencies]
tui = { package = "ratatui", version = "0.28.0", default-features = false, features = [
"crossterm",
"serde",
] }
[[bin]]
bench = false
path = "src/main.rs"
name = "twt"
[profile.dev]
lto = "off"
[profile.release]
lto = "thin"
debug = 1