diff options
| author | A Farzat <a@farzat.xyz> | 2026-02-14 16:59:20 +0300 |
|---|---|---|
| committer | A Farzat <a@farzat.xyz> | 2026-02-14 16:59:20 +0300 |
| commit | fa7aa3ab48d1694fce44f7454f6331757677dde3 (patch) | |
| tree | cc5b96b6124d1be50dab5ad6309ae1c51581c2a3 /Cargo.toml | |
| parent | ca356049faf28ab48b73d04d80d4d11236d3abc6 (diff) | |
| download | safaribooks-rs-fa7aa3ab48d1694fce44f7454f6331757677dde3.tar.gz safaribooks-rs-fa7aa3ab48d1694fce44f7454f6331757677dde3.zip | |
Add unit tests for epub.rs
Diffstat (limited to 'Cargo.toml')
| -rw-r--r-- | Cargo.toml | 6 |
1 files changed, 5 insertions, 1 deletions
@@ -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" |
