Skip to content

Commit

Permalink
Add partial_escape to API
Browse files Browse the repository at this point in the history
  • Loading branch information
dralley committed Aug 7, 2021
1 parent 356084e commit 74421d0
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion compare/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -9,5 +9,5 @@ edition = "2018"
[dev-dependencies]
quick-xml = { path = "..", features = ["serialize"] }
xml-rs = "0.8.0"
serde-xml-rs = "0.3.1"
serde-xml-rs = "0.4.1"
serde = { version = "1.0.103", features = [ "derive" ] }
2 changes: 1 addition & 1 deletion src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -127,7 +127,7 @@ mod escapei;
pub mod escape {
//! Manage xml character escapes
pub(crate) use crate::escapei::{do_unescape, EscapeError};
pub use crate::escapei::{escape, unescape, unescape_with};
pub use crate::escapei::{escape, partial_escape, unescape, unescape_with};
}
pub mod events;
mod reader;
Expand Down

0 comments on commit 74421d0

Please sign in to comment.