clayers-xml 0.2.0

Domain-agnostic XML utilities for clayers (C14N, hashing, RNC, catalog)
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
pub mod c14n;
pub mod catalog;
pub mod diff;
pub mod error;
pub mod hash;
pub mod query;
pub mod rnc;
pub mod xslt;

pub use c14n::{CanonicalizationMode, canonicalize, canonicalize_and_hash, canonicalize_str};
pub use diff::{XmlChange, XmlDiff, XmlPath, diff_xml};
pub use error::Error;
pub use hash::ContentHash;