xmpp-proxy/src/lib.rs

31 lines
556 B
Rust
Raw Normal View History

2022-07-16 23:23:01 -04:00
pub mod common;
pub mod slicesubsequence;
pub mod stanzafilter;
2021-07-24 01:53:00 -04:00
2022-07-16 23:23:01 -04:00
#[cfg(feature = "quic")]
pub mod quic;
2022-07-16 23:23:01 -04:00
#[cfg(feature = "tls")]
pub mod tls;
2022-07-16 23:23:01 -04:00
#[cfg(feature = "outgoing")]
pub mod outgoing;
2022-07-16 23:23:01 -04:00
#[cfg(any(feature = "s2s-incoming", feature = "outgoing"))]
pub mod srv;
2022-07-16 23:23:01 -04:00
#[cfg(feature = "websocket")]
pub mod websocket;
2023-12-19 22:28:48 -05:00
#[cfg(feature = "webtransport")]
pub mod webtransport;
2022-07-16 23:23:01 -04:00
#[cfg(any(feature = "s2s-incoming", feature = "outgoing"))]
pub mod verify;
2023-08-17 23:46:34 -04:00
#[cfg(all(feature = "nix", not(target_os = "windows")))]
pub mod systemd;
pub mod context;
2022-07-16 23:23:01 -04:00
pub mod in_out;