Base working commit with a UI thread (Tokio), Network thread (Tokio), and an input events thread (std).

This commit is contained in:
2023-08-08 10:50:03 -06:00
parent f436a66069
commit 0d4e283c21
15 changed files with 532 additions and 1 deletions
+21
View File
@@ -0,0 +1,21 @@
[package]
name = "managarr"
version = "0.1.0"
authors = ["Alex Clarke <alex.j.tusa@gmail.com>"]
description = "A TUI for managing *arr servers"
edition = "2021"
[dependencies]
anyhow = "1.0.68"
chrono = "0.4"
clap = { version = "4.0.30", features = ["help", "usage", "error-context", "derive"] }
confy = { version = "0.5.1", default_features = false, features = ["yaml_conf"] }
crossterm = "0.25.0"
log = "0.4.17"
log4rs = { version = "1.2.0", features = ["file_appender"] }
reqwest = { version = "0.11.13", features = ["json"] }
serde_yaml = "0.9.16"
serde_json = "1.0.91"
serde = { version = "1.0", features = ["derive"] }
tokio = { version = "1.24.1", features = ["full"] }
tui = "0.19.0"