aboutsummaryrefslogtreecommitdiff
path: root/Cargo.toml
diff options
context:
space:
mode:
authorA Farzat <a@farzat.xyz>2026-02-11 10:09:32 +0300
committerA Farzat <a@farzat.xyz>2026-02-11 10:09:32 +0300
commit3321918c009e9d7a7a3c3c2a1f490bb91fefb2bc (patch)
tree261a7228b3199c689e6970effd9bb8d4fc609531 /Cargo.toml
parent001304d3f27a5fa1ca4d06d4c352d248b45640e0 (diff)
downloadsafaribooks-rs-3321918c009e9d7a7a3c3c2a1f490bb91fefb2bc.tar.gz
safaribooks-rs-3321918c009e9d7a7a3c3c2a1f490bb91fefb2bc.zip
Add reqwest HttpClient skeleton (cookies-only)
- Build a reqwest::Client with Cookie and browser-like default headers - Wire into main without performing any HTTP calls Note: Keep cookie header internal; never log values
Diffstat (limited to 'Cargo.toml')
-rw-r--r--Cargo.toml1
1 files changed, 1 insertions, 0 deletions
diff --git a/Cargo.toml b/Cargo.toml
index cc375cf..dc2f515 100644
--- a/Cargo.toml
+++ b/Cargo.toml
@@ -7,6 +7,7 @@ edition = "2024"
anyhow = "1.0"
clap = { version = "4.5", features = ["derive"] }
colored = "3.1"
+reqwest = { version = "0.13", default-features = false, features = ["rustls"] }
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
tracing = "0.1"