Files
managarr/Cargo.toml

51 lines
1.5 KiB
TOML

[package]
name = "managarr"
version = "0.0.26"
authors = ["Alex Clarke <alex.j.tusa@gmail.com>"]
description = "A TUI for managing *arr servers"
keywords = ["managarr", "tui-rs", "dashboard", "servarr", "tui", "terminal"]
documentation = "https://github.com/Dark-Alex-17/managarr"
repository = "https://github.com/Dark-Alex-17/managarr"
homepage = "https://github.com/Dark-Alex-17/managarr"
readme = "README.md"
edition = "2021"
rust-version = "1.69.0"
[dependencies]
anyhow = "1.0.68"
backtrace = "0.3.67"
bimap = "0.6.3"
chrono = { version = "0.4", features = ["serde"] }
confy = { version = "0.5.1", default_features = false, features = ["yaml_conf"] }
crossterm = "0.26.1"
derivative = "2.2.0"
human-panic = "1.1.3"
indoc = "2.0.0"
log = "0.4.17"
log4rs = { version = "1.2.0", features = ["file_appender"] }
regex = "1.7.1"
reqwest = { version = "0.11.14", features = ["json"] }
serde_yaml = "0.9.16"
serde_json = "1.0.91"
serde = { version = "1.0", features = ["derive"] }
strum = {version = "0.25.0", features = ["derive"] }
strum_macros = "0.25.0"
tokio = { version = "1.29.0", features = ["full"] }
tokio-util = "0.7.8"
tui = { version = "0.22.0", package = "ratatui", features = ["all-widgets"] }
urlencoding = "2.1.2"
[dev-dependencies]
cargo-husky = { version = "1.5.0", default_features = false, features = ["user-hooks"] }
mockito = "1.0.0"
pretty_assertions = "1.3.0"
rstest = "0.17.0"
[[bin]]
bench = false
path = "src/main.rs"
name = "managarr"
[profile.release]
lto = true
codegen-units = 1