twitch-tui/Cargo.toml

52 lines
1.3 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"
2022-12-16 03:38:59 +03:00
version = "2.0.2"
2021-09-19 08:27:48 +03:00
authors = ["Xithrius <xithrius@gmail.com>"]
edition = "2021"
rust-version = "1.61.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]
crossterm = "0.26.1"
tui = { version = "0.19.0", default-features = false, features = [ "crossterm" ] }
tokio = { version = "1.24.1", features = [ "rt", "macros", "rt-multi-thread" ] }
clap = { version = "4.1.6", features = [ "derive", "cargo" ] }
2023-01-03 08:06:21 +03:00
serde = { version = "1.0.152", features = [ "derive" ] }
2023-02-11 08:37:54 +03:00
serde_json = "1.0.93"
2022-10-02 03:34:42 +03:00
unicode-width = "0.1.10"
2023-02-11 08:37:54 +03:00
unicode-segmentation = "1.10.1"
2022-12-10 12:15:49 +03:00
chrono = "0.4.23"
2021-08-24 02:12:38 +03:00
irc = "0.15.0"
2023-02-11 08:37:54 +03:00
futures = "0.3.26"
toml = "0.7.2"
textwrap = "0.16.0"
2023-02-11 08:37:54 +03:00
rustyline = "10.1.1"
lazy_static = "1.4.0"
fuzzy-matcher = "0.3.7"
2022-12-10 12:15:49 +03:00
regex = "1.7.0"
2022-07-22 07:06:24 +03:00
color-eyre = "0.6.2"
log = "0.4.17"
fern = "0.6.1"
dialoguer = { version = "0.10.3", default-features = false }
2021-09-19 08:27:48 +03:00
[[bin]]
bench = false
path = "src/main.rs"
name = "twt"
[profile.dev]
lto = "off"
[profile.dev.package.backtrace]
opt-level = 3
[profile.release]
lto = "thin"
debug = 1