diff options
| author | A Farzat <a@farzat.xyz> | 2026-03-07 09:04:00 +0300 |
|---|---|---|
| committer | A Farzat <a@farzat.xyz> | 2026-03-07 09:07:38 +0300 |
| commit | c98b360d611c37315c9c5330089a1d91dbb2021c (patch) | |
| tree | d190740bb24df7aaafe09e914aa2f1314dd70988 /Cargo.lock | |
| parent | 7e24d0cd5b671d06383466baf89c340023421d86 (diff) | |
| download | oreilly-epub-c98b360d611c37315c9c5330089a1d91dbb2021c.tar.gz oreilly-epub-c98b360d611c37315c9c5330089a1d91dbb2021c.zip | |
Fix chapter contents to proper xml
Change resource URLs using attribute matching (only img src for now,
should add more later).
Add respective stylesheets to chapters.
Diffstat (limited to 'Cargo.lock')
| -rw-r--r-- | Cargo.lock | 10 |
1 files changed, 10 insertions, 0 deletions
@@ -855,6 +855,7 @@ version = "0.1.0" dependencies = [ "anyhow", "clap", + "quick-xml", "relative-path", "reqwest", "serde", @@ -955,6 +956,15 @@ dependencies = [ ] [[package]] +name = "quick-xml" +version = "0.39.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "958f21e8e7ceb5a1aa7fa87fab28e7c75976e0bfe7e23ff069e0a260f894067d" +dependencies = [ + "memchr", +] + +[[package]] name = "quinn" version = "0.11.9" source = "registry+https://github.com/rust-lang/crates.io-index" |
