Cargo.toml: Update minidom to 0.4.3 to use its new IntoAttributeValue implementation on numbers.

This commit is contained in:
Emmanuel Gil Peyrot 2017-05-27 23:18:15 +01:00
commit 6794b34714
6 changed files with 9 additions and 12 deletions

View file

@ -103,7 +103,7 @@ impl Into<Element> for Set {
if self.first.is_some() {
elem.append_child(Element::builder("first")
.ns(ns::RSM)
.attr("index", self.first_index.map(|index| format!("{}", index)))
.attr("index", self.first_index)
.append(self.first).build());
}
if self.index.is_some() {