Skip to content

Commit ec6727e

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

File tree

3 files changed

+11
-4
lines changed

3 files changed

+11
-4
lines changed

Cargo.lock

+3-3
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

+3-1
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

+5
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)