aboutsummaryrefslogtreecommitdiff
path: root/Cargo.toml
diff options
context:
space:
mode:
authorA Farzat <a@farzat.xyz>2026-02-14 16:59:20 +0300
committerA Farzat <a@farzat.xyz>2026-02-14 16:59:20 +0300
commitfa7aa3ab48d1694fce44f7454f6331757677dde3 (patch)
treecc5b96b6124d1be50dab5ad6309ae1c51581c2a3 /Cargo.toml
parentca356049faf28ab48b73d04d80d4d11236d3abc6 (diff)
downloadsafaribooks-rs-fa7aa3ab48d1694fce44f7454f6331757677dde3.tar.gz
safaribooks-rs-fa7aa3ab48d1694fce44f7454f6331757677dde3.zip
Add unit tests for epub.rs
Diffstat (limited to 'Cargo.toml')
-rw-r--r--Cargo.toml6
1 files changed, 5 insertions, 1 deletions
diff --git a/Cargo.toml b/Cargo.toml
index efd6672..6fb629a 100644
--- a/Cargo.toml
+++ b/Cargo.toml
@@ -7,10 +7,14 @@ edition = "2024"
anyhow = "1.0"
clap = { version = "4.5", features = ["derive"] }
colored = "3.1"
-reqwest = { version = "0.13", default-features = false, features = ["gzip", "json", "rustls"] }
+reqwest = { version = "0.13", default-features = false, features = ["deflate", "gzip", "json", "rustls"] }
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
tokio = { version = "1.49", features = ["rt-multi-thread", "macros"] }
tracing = "0.1"
tracing-subscriber = { version = "0.3", features = ["env-filter", "fmt"] }
unicode-normalization = "0.1"
+
+[dev-dependencies]
+quick-xml = "0.39.0"
+tempfile = "3.25.0"