saml-rs 0.3.0

Pure-Rust SAML 2.0 Service Provider and Identity Provider support.
Documentation
1
2
3
4
5
6
7
8
9
10
11
//! XML parsing and field extraction over quick-xml.

pub mod dom;
pub mod extract;
pub mod fields;
mod profile;
pub(crate) mod write;

pub use dom::XmlLimits;
pub use extract::{extract, extract_with_limits, ExtractorField, LocalPath};
pub(crate) use profile::validate_protocol_profile;