Skip to content

Commit

Permalink
Update quick-xml to 0.36
Browse files Browse the repository at this point in the history
  • Loading branch information
andy128k committed Aug 27, 2024
1 parent 6f14522 commit 7765b9f
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 2 deletions.
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@
## Unreleased

- Update `quick-xml` to `0.32`. [`#82`](https://github.com/rust-syndication/atom/pull/82)
- Update `quick-xml` to `0.36`. [`#83`](https://github.com/rust-syndication/atom/pull/83)

## 0.12.3 - 2024-05-11

Expand Down
2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ include = ["src/*", "Cargo.toml", "LICENSE-MIT", "LICENSE-APACHE", "README.md"]

[dependencies]
diligent-date-parser = "0.1.3"
quick-xml = { version = "0.32", features = ["encoding"] }
quick-xml = { version = "0.36", features = ["encoding"] }
chrono = { version = "0.4", default-features = false, features = ["alloc"] }
derive_builder = { version = "0.20", optional = true }
never = { version = "0.1", optional = true }
Expand Down
2 changes: 1 addition & 1 deletion src/util.rs
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ pub(crate) fn attr_value<'s, 'r, B: BufRead>(
reader: &'r Reader<B>,
) -> Result<Cow<'s, str>, Error> {
let value = attr
.decode_and_unescape_value(reader)
.decode_and_unescape_value(reader.decoder())
.map_err(XmlError::new)?;
Ok(value)
}
Expand Down

0 comments on commit 7765b9f

Please sign in to comment.