summaryrefslogtreecommitdiff
path: root/Cargo.toml
diff options
context:
space:
mode:
authorNaz <ndpm13@ch-naseem.com>2025-07-27 14:45:00 +0100
committerNaz <ndpm13@ch-naseem.com>2025-07-27 14:45:00 +0100
commitebaca23cb9884884dae3121e437c36696570878b (patch)
tree4979bdb026a65e5f7da027a8ff941924610d14e7 /Cargo.toml
parentccf603c81bd11864aabae5e98c9888854fe885cb (diff)
🐛fix: add missing deps
Diffstat (limited to 'Cargo.toml')
-rw-r--r--Cargo.toml4
1 files changed, 4 insertions, 0 deletions
diff --git a/Cargo.toml b/Cargo.toml
index dcaf015..9aaad1f 100644
--- a/Cargo.toml
+++ b/Cargo.toml
@@ -5,5 +5,9 @@ edition = "2024"
[dependencies]
clap = { version = "4.5.41", features = ["derive"] }
+futures-util = "0.3.31"
+indicatif = { version = "0.18.0", features = ["improved_unicode"] }
+reqwest = { version = "0.12.22", features = ["blocking", "json", "stream"] }
serde = { version = "1.0.219", features = ["derive"] }
+serde_json = "1.0.141"
tokio = { version = "1.46.1", features = ["full"] }