faucet_source_xml/lib.rs
1#![cfg_attr(docsrs, feature(doc_cfg))]
2
3//! # faucet-source-xml
4//!
5//! A config-driven XML/SOAP API source with automatic XML-to-JSON conversion,
6//! element-path record extraction, and pluggable authentication.
7
8pub mod config;
9pub mod convert;
10pub mod serde_helpers;
11pub mod stream;
12
13pub use faucet_core::{FaucetError, Source};
14
15pub use config::{XmlAuth, XmlPagination, XmlStreamConfig};
16pub use stream::XmlStream;