twitch-tui/Cargo.toml

69 lines
1.6 KiB
TOML
Raw Normal View History

2021-08-24 01:27:12 +03:00
[package]
2021-10-25 09:01:49 +03:00
name = "twitch-tui"
2024-06-22 21:35:05 +03:00
version = "2.6.13"
2021-09-19 08:27:48 +03:00
authors = ["Xithrius <xithrius@gmail.com>"]
edition = "2021"
2024-01-03 10:13:09 +03:00
rust-version = "1.75.0"
2021-09-19 08:27:48 +03:00
description = "Twitch chat in the terminal."
2021-10-25 09:01:49 +03:00
documentation = "https://github.com/Xithrius/twitch-tui"
homepage = "https://github.com/Xithrius/twitch-tui"
repository = "https://github.com/Xithrius/twitch-tui"
2021-09-19 08:27:48 +03:00
license = "MIT OR Apache-2.0"
keywords = ["tui", "twitch"]
categories = ["command-line-utilities"]
2021-08-24 01:27:12 +03:00
[dependencies]
2023-08-15 06:04:30 +03:00
crossterm = "0.27.0"
tui = { package = "ratatui", version = "0.27.0", default-features = false, features = [
2024-04-25 05:54:46 +03:00
"crossterm",
"serde",
"underline-color",
] }
tokio = { version = "1.38.0", features = [
2024-04-25 05:54:46 +03:00
"rt",
"macros",
"rt-multi-thread",
"fs",
] }
clap = { version = "4.5.7", features = ["derive", "cargo"] }
serde = { version = "1.0.203", features = ["derive"] }
serde_json = "1.0.118"
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.14"
textwrap = "0.16.1"
rustyline = "14.0.0"
fuzzy-matcher = "0.3.7"
regex = "1.10.5"
color-eyre = "0.6.3"
log = "0.4.21"
2023-03-26 11:54:00 +03:00
fern = "0.6.2"
2023-10-19 07:17:51 +03:00
dialoguer = { version = "0.11.0", default-features = false }
reqwest = { version = "0.12.5", features = ["json"] }
image = "0.24.8"
base64 = "0.22.1"
tempfile = "3.10.1"
serde_with = "3.8.1"
once_cell = "1.19.0"
webbrowser = "1.0.1"
memchr = "2.7.4"
2024-02-28 09:20:48 +03:00
webp-animation = { version = "0.9.0", features = ["image"] }
[features]
static-webp = ["webp-animation/static"]
2021-09-19 08:27:48 +03:00
[[bin]]
bench = false
path = "src/main.rs"
name = "twt"
[profile.dev]
lto = "off"
[profile.release]
lto = "thin"
debug = 1