Skip to content

Commit

Permalink
Update quick-xml 0.24 (#2625)
Browse files Browse the repository at this point in the history
  • Loading branch information
tustvold committed Sep 1, 2022
1 parent b792ff7 commit 94bc726
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 5 deletions.
2 changes: 1 addition & 1 deletion object_store/Cargo.toml
Expand Up @@ -44,7 +44,7 @@ walkdir = "2"

# Cloud storage support
base64 = { version = "0.13", default-features = false, optional = true }
quick-xml = { version = "0.23.0", features = ["serialize"], optional = true }
quick-xml = { version = "0.24.0", features = ["serialize"], optional = true }
serde = { version = "1.0", default-features = false, features = ["derive"], optional = true }
serde_json = { version = "1.0", default-features = false, optional = true }
rand = { version = "0.8", default-features = false, features = ["std", "std_rng"], optional = true }
Expand Down
6 changes: 2 additions & 4 deletions object_store/src/azure/client.rs
Expand Up @@ -630,9 +630,8 @@ mod tests {
<NextMarker />
</EnumerationResults>";

let bytes = Bytes::from(S);
let mut _list_blobs_response_internal: ListResultInternal =
quick_xml::de::from_slice(bytes.as_ref()).unwrap();
quick_xml::de::from_str(S).unwrap();
}

#[test]
Expand Down Expand Up @@ -702,9 +701,8 @@ mod tests {
<NextMarker/>
</EnumerationResults>";

let bytes = Bytes::from(S);
let mut _list_blobs_response_internal: ListResultInternal =
quick_xml::de::from_slice(bytes.as_ref()).unwrap();
quick_xml::de::from_str(S).unwrap();
}

#[test]
Expand Down

0 comments on commit 94bc726

Please sign in to comment.