chore: add better async I/O

Signed-off-by: NotAShelf <raf@notashelf.dev>
Change-Id: Ie16651439276319a9044f58c195784836a6a6964
This commit is contained in:
raf 2026-02-03 10:24:52 +03:00
commit 3e14bbe607
Signed by: NotAShelf
GPG key ID: 29D95B64378DB4BF
2 changed files with 6 additions and 1 deletions

View file

@ -16,6 +16,7 @@ license = "MIT"
[workspace.dependencies]
# Async runtime
tokio = { version = "1.49.0", features = ["full"] }
tokio-util = { version = "0.7.18", features = ["rt"] }
# Serialization
serde = { version = "1.0.228", features = ["derive"] }
@ -80,7 +81,7 @@ governor = "0.8.1"
tower_governor = "0.6.0"
# HTTP client
reqwest = { version = "0.13.1", features = ["json", "query"] }
reqwest = { version = "0.13.1", features = ["json", "query", "blocking"] }
# TUI
ratatui = "0.30.0"