Added typo checks and upgraded to the latest version of Ratatui

This commit is contained in:
2023-08-08 10:50:07 -06:00
parent 2b9ddd0d1e
commit 718613d59f
8 changed files with 63 additions and 47 deletions
+4 -3
View File
@@ -9,6 +9,7 @@ repository = "https://github.com/Dark-Alex-17/managarr"
homepage = "https://github.com/Dark-Alex-17/managarr"
readme = "README.md"
edition = "2021"
rust-version = "1.65.0"
[dependencies]
anyhow = "1.0.68"
@@ -28,10 +29,10 @@ 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.24", features = ["derive"] }
strum_macros = "0.24"
strum = {version = "0.25.0", features = ["derive"] }
strum_macros = "0.25.0"
tokio = { version = "1.24.1", features = ["full"] }
tui = { version = "0.20.1", package = "ratatui" }
tui = { version = "0.21.0", package = "ratatui", features = ["all-widgets"] }
urlencoding = "2.1.2"
[dev-dependencies]