diff options
author | 2025-03-24 21:01:21 +0000 | |
---|---|---|
committer | 2025-03-24 21:01:21 +0000 | |
commit | f7e3ad972e6c10f9d94f2809d1355ee7dd8c7ff6 (patch) | |
tree | 85ee05ea2724104a9318894ec06d07d1dc8fcdfc | |
parent | 85a3093674506b60b31a023ae40df1d65b2f1fb4 (diff) | |
download | luz-f7e3ad972e6c10f9d94f2809d1355ee7dd8c7ff6.tar.gz luz-f7e3ad972e6c10f9d94f2809d1355ee7dd8c7ff6.tar.bz2 luz-f7e3ad972e6c10f9d94f2809d1355ee7dd8c7ff6.zip |
feat(stanza): feature gate xep-0199
-rw-r--r-- | stanza/Cargo.toml | 3 | ||||
-rw-r--r-- | stanza/src/client/iq.rs | 7 | ||||
-rw-r--r-- | stanza/src/lib.rs | 1 |
3 files changed, 9 insertions, 2 deletions
diff --git a/stanza/Cargo.toml b/stanza/Cargo.toml index 1b6e4d0..2794d22 100644 --- a/stanza/Cargo.toml +++ b/stanza/Cargo.toml @@ -10,5 +10,6 @@ thiserror = "2.0.11" chrono = { version = "0.4.40", optional = true } [features] -xep_0203 = ["dep:chrono"] xep_0030 = [] +xep_0199 = [] +xep_0203 = ["dep:chrono"] diff --git a/stanza/src/client/iq.rs b/stanza/src/client/iq.rs index 5f5ccd2..41f87fd 100644 --- a/stanza/src/client/iq.rs +++ b/stanza/src/client/iq.rs @@ -10,12 +10,14 @@ use crate::{ bind::{self, Bind}, client::error::Error, roster, - xep_0199::{self, Ping}, }; #[cfg(feature = "xep_0030")] use crate::xep_0030::{self, info, items}; +#[cfg(feature = "xep_0199")] +use crate::xep_0199::{self, Ping}; + use super::XMLNS; #[derive(Debug, Clone)] @@ -38,6 +40,7 @@ pub enum Query { DiscoInfo(info::Query), #[cfg(feature = "xep_0030")] DiscoItems(items::Query), + #[cfg(feature = "xep_0199")] Ping(Ping), Roster(roster::Query), Unsupported, @@ -47,6 +50,7 @@ impl FromElement for Query { fn from_element(element: peanuts::Element) -> peanuts::element::DeserializeResult<Self> { match element.identify() { (Some(bind::XMLNS), "bind") => Ok(Query::Bind(Bind::from_element(element)?)), + #[cfg(feature = "xep_0199")] (Some(xep_0199::XMLNS), "ping") => Ok(Query::Ping(Ping::from_element(element)?)), (Some(roster::XMLNS), "query") => { Ok(Query::Roster(roster::Query::from_element(element)?)) @@ -68,6 +72,7 @@ impl IntoElement for Query { fn builder(&self) -> peanuts::element::ElementBuilder { match self { Query::Bind(bind) => bind.builder(), + #[cfg(feature = "xep_0199")] Query::Ping(ping) => ping.builder(), Query::Roster(query) => query.builder(), // TODO: consider what to do if attempt to serialize unsupported diff --git a/stanza/src/lib.rs b/stanza/src/lib.rs index c8daaa5..85bce52 100644 --- a/stanza/src/lib.rs +++ b/stanza/src/lib.rs @@ -10,6 +10,7 @@ pub mod stream; pub mod stream_error; #[cfg(feature = "xep_0030")] pub mod xep_0030; +#[cfg(feature = "xep_0199")] pub mod xep_0199; #[cfg(feature = "xep_0203")] pub mod xep_0203; |