93 lines
2.2 KiB
TOML
93 lines
2.2 KiB
TOML
[package]
|
|
name = "managarr"
|
|
version = "0.6.3"
|
|
authors = ["Alex Clarke <alex.j.tusa@gmail.com>"]
|
|
description = "A TUI and CLI to manage your Servarrs"
|
|
keywords = ["managarr", "ratatui", "dashboard", "servarr", "tui"]
|
|
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"
|
|
license = "MIT"
|
|
rust-version = "1.89.0"
|
|
exclude = [".github", "CONTRIBUTING.md", "*.log", "tags"]
|
|
|
|
[workspace]
|
|
members = [
|
|
"proc_macros/enum_display_style_derive",
|
|
"proc_macros/validate_theme_derive",
|
|
]
|
|
|
|
[dependencies]
|
|
anyhow = "1.0.68"
|
|
backtrace = "0.3.74"
|
|
bimap = { version = "0.6.3", features = ["serde"] }
|
|
chrono = { version = "0.4.38", features = ["serde"] }
|
|
confy = { version = "0.6.0", default-features = false, features = [
|
|
"yaml_conf",
|
|
] }
|
|
crossterm = "0.28.1"
|
|
derivative = "2.2.0"
|
|
human-panic = "2.0.2"
|
|
indoc = "2.0.0"
|
|
log = "0.4.17"
|
|
log4rs = { version = "1.2.0", features = ["file_appender"] }
|
|
regex = "1.11.1"
|
|
reqwest = { version = "0.12.9", features = ["json"] }
|
|
serde_yaml = "0.9.16"
|
|
serde_json = "1.0.91"
|
|
serde = { version = "1.0.214", features = ["derive"] }
|
|
strum = { version = "0.26.3", features = ["derive"] }
|
|
strum_macros = "0.26.4"
|
|
tokio = { version = "1.44.2", features = ["full"] }
|
|
tokio-util = "0.7.8"
|
|
ratatui = { version = "0.29.0", features = [
|
|
"all-widgets",
|
|
"unstable-widget-ref",
|
|
] }
|
|
urlencoding = "2.1.2"
|
|
clap = { version = "4.5.20", features = [
|
|
"derive",
|
|
"cargo",
|
|
"env",
|
|
"wrap_help",
|
|
] }
|
|
clap_complete = "4.5.33"
|
|
itertools = "0.14.0"
|
|
ctrlc = "3.4.5"
|
|
colored = "3.0.0"
|
|
async-trait = "0.1.83"
|
|
dirs-next = "2.0.0"
|
|
managarr-tree-widget = "0.24.0"
|
|
indicatif = "0.17.9"
|
|
derive_setters = "0.1.6"
|
|
deunicode = "1.6.0"
|
|
paste = "1.0.15"
|
|
openssl = { version = "0.10.70", features = ["vendored"] }
|
|
veil = "0.2.0"
|
|
validate_theme_derive = "0.1.0"
|
|
enum_display_style_derive = "0.1.0"
|
|
|
|
[dev-dependencies]
|
|
assert_cmd = "2.0.16"
|
|
mockall = "0.13.0"
|
|
mockito = "1.0.0"
|
|
pretty_assertions = "1.3.0"
|
|
rstest = "0.25.0"
|
|
serial_test = "3.2.0"
|
|
|
|
[dev-dependencies.cargo-husky]
|
|
version = "1"
|
|
default-features = false
|
|
features = ["user-hooks"]
|
|
|
|
[[bin]]
|
|
bench = false
|
|
path = "src/main.rs"
|
|
name = "managarr"
|
|
|
|
[profile.release]
|
|
lto = true
|
|
codegen-units = 1
|