Skip to content

Commit

Permalink
Merge pull request #301 from dralley/add-partial-escape
Browse files Browse the repository at this point in the history
Add partial escape to API
  • Loading branch information
tafia committed Aug 10, 2021
2 parents 356084e + 74421d0 commit 237cd06
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
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
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 237cd06

Please sign in to comment.