chore: add better async I/O
Signed-off-by: NotAShelf <raf@notashelf.dev> Change-Id: Ie16651439276319a9044f58c195784836a6a6964
This commit is contained in:
parent
56d44e120a
commit
3e14bbe607
2 changed files with 2 additions and 1 deletions
BIN
Cargo.lock
generated
BIN
Cargo.lock
generated
Binary file not shown.
|
|
@ -16,6 +16,7 @@ license = "MIT"
|
||||||
[workspace.dependencies]
|
[workspace.dependencies]
|
||||||
# Async runtime
|
# Async runtime
|
||||||
tokio = { version = "1.49.0", features = ["full"] }
|
tokio = { version = "1.49.0", features = ["full"] }
|
||||||
|
tokio-util = { version = "0.7.18", features = ["rt"] }
|
||||||
|
|
||||||
# Serialization
|
# Serialization
|
||||||
serde = { version = "1.0.228", features = ["derive"] }
|
serde = { version = "1.0.228", features = ["derive"] }
|
||||||
|
|
@ -80,7 +81,7 @@ governor = "0.8.1"
|
||||||
tower_governor = "0.6.0"
|
tower_governor = "0.6.0"
|
||||||
|
|
||||||
# HTTP client
|
# HTTP client
|
||||||
reqwest = { version = "0.13.1", features = ["json", "query"] }
|
reqwest = { version = "0.13.1", features = ["json", "query", "blocking"] }
|
||||||
|
|
||||||
# TUI
|
# TUI
|
||||||
ratatui = "0.30.0"
|
ratatui = "0.30.0"
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue