faucet-source-xml 1.0.0

XML API source connector for the faucet-stream ecosystem
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
#![cfg_attr(docsrs, feature(doc_cfg))]

//! # faucet-source-xml
//!
//! A config-driven XML/SOAP API source with automatic XML-to-JSON conversion,
//! element-path record extraction, and pluggable authentication.

pub mod config;
pub mod convert;
pub mod serde_helpers;
pub mod stream;

pub use faucet_core::{FaucetError, Source};

pub use config::{XmlAuth, XmlPagination, XmlStreamConfig};
pub use stream::XmlStream;