Skip to content

Commit

Permalink
Update quick-xml requirement from 0.36 to 0.37 (#112)
Browse files Browse the repository at this point in the history
Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: Taiki Endo <te316e89@gmail.com>
  • Loading branch information
dependabot[bot] and taiki-e authored Oct 28, 2024
1 parent a7db4f9 commit a7f3485
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ repository = "https://github.com/openrr/urdf-rs"

# Note: serde is public dependency.
[dependencies]
quick-xml = { version = "0.36", features = ["overlapped-lists", "serialize"] }
quick-xml = { version = "0.37", features = ["overlapped-lists", "serialize"] }
regex = "1.4.2"
RustyXML = "0.3.0"
serde = { version = "1.0.118", features = ["derive"] }
Expand Down
4 changes: 3 additions & 1 deletion src/errors.rs
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,9 @@ pub(crate) enum ErrorKind {
#[error(transparent)]
RustyXml(#[from] xml::BuilderError),
#[error(transparent)]
QuickXml(#[from] quick_xml::DeError),
QuickXmlSe(#[from] quick_xml::SeError),
#[error(transparent)]
QuickXmlDe(#[from] quick_xml::DeError),
#[error("command error {}\n--- stdout\n{}\n--- stderr\n{}", .msg, .stdout, .stderr)]
Command {
msg: String,
Expand Down

0 comments on commit a7f3485

Please sign in to comment.