aboutsummaryrefslogtreecommitdiff
path: root/Cargo.toml
diff options
context:
space:
mode:
authorA Farzat <a@farzat.xyz>2026-03-05 16:21:38 +0300
committerA Farzat <a@farzat.xyz>2026-03-05 16:21:38 +0300
commit598ee0199a50d30d06f4a2fa67bed5943c6452b4 (patch)
tree6274ae4a896eace66c57074e364e0e3499c70c83 /Cargo.toml
parent71727a58aa8dac17cf7eeb37f79f1ab318bd66a2 (diff)
downloadoreilly-epub-598ee0199a50d30d06f4a2fa67bed5943c6452b4.tar.gz
oreilly-epub-598ee0199a50d30d06f4a2fa67bed5943c6452b4.zip
Deserialize URLs to Url type directly
This saves the effort of having to do it manually later on. Also avoids duplication in parsing.
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 89d5c73..dbe5793 100644
--- a/Cargo.toml
+++ b/Cargo.toml
@@ -11,4 +11,5 @@ reqwest = { version = "0.13.2", features = ["cookies", "json"] }
serde = { version = "1.0.228", features = ["derive"] }
serde_json = "1.0.149"
tokio = { version = "1.49.0", features = ["full"] }
+url = { version = "2.5.8", features = ["serde"] }
zip = { version = "8.1.0", default-features = false, features = ["deflate"] }