aboutsummaryrefslogtreecommitdiff
path: root/Cargo.toml
diff options
context:
space:
mode:
authorA Farzat <a@farzat.xyz>2026-02-10 18:58:29 +0300
committerA Farzat <a@farzat.xyz>2026-02-10 18:58:29 +0300
commit2bf7a5ea9aa6eb5797ba224fcc2002425bc2d947 (patch)
treead3f180565fed5d3ef561ed367d7fd4a7ea98517 /Cargo.toml
parent639ddf4b2e88bdc95a9e09eadea1be606327dea5 (diff)
downloadsafaribooks-rs-2bf7a5ea9aa6eb5797ba224fcc2002425bc2d947.tar.gz
safaribooks-rs-2bf7a5ea9aa6eb5797ba224fcc2002425bc2d947.zip
Add a cookies module
This parses the cookies found in the cookies.json file, making them ready to be used in http requests.
Diffstat (limited to 'Cargo.toml')
-rw-r--r--Cargo.toml3
1 files changed, 3 insertions, 0 deletions
diff --git a/Cargo.toml b/Cargo.toml
index dca5568..447fc70 100644
--- a/Cargo.toml
+++ b/Cargo.toml
@@ -4,7 +4,10 @@ version = "0.1.0"
edition = "2024"
[dependencies]
+anyhow = "1.0"
clap = { version = "4.5", features = ["derive"] }
colored = "3.1.1"
+serde = { version = "1.0", features = ["derive"] }
+serde_json = "1.0"
tracing = "0.1.44"
tracing-subscriber = { version = "0.3.22", features = ["env-filter", "fmt"] }