Skip to content

Commit ec6727e

Browse files
committed
fix: xml-writer drops bytes from output.
1 parent 2f1e6cf commit ec6727e

3 files changed

Lines changed: 11 additions & 4 deletions

File tree

Cargo.lock

Lines changed: 3 additions & 3 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,9 @@ indicatif = "0.14.0"
1717
strum = "0.18.0"
1818
strum_macros = "0.18.0"
1919
structopt = "0.3.14"
20-
quick-xml = "0.18.1"
20+
# Use patched version until upstream fixed is merged.
21+
# https://github.com/tafia/quick-xml/pull/220
22+
quick-xml = { git = "https://github.com/pacman82/quick-xml.git" }
2123
flate2 = "1.0.14"
2224
atty = "0.2.14"
2325
humantime = "2.0.0"

Changelog.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,11 @@
11
Changelog
22
=========
33

4+
2.0.2
5+
-----
6+
7+
* Patched upstream version of `quick-xml`, to fix an issue with bytes dropped from compressed output.
8+
49
2.0.1
510
-----
611

0 commit comments

Comments
 (0)