1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
//! # Providers module
//!
//! This module contains the Providers that can be used by [`PubNubClient`].
//! It is intended to be used by the [`pubnub`] crate.
//!
//! [`PubNubClient`]: ../pubnub_client/struct.PubNubClient.html
//! [`pubnub`]: ../index.html

#[cfg(feature = "serde")]
pub mod serialization_serde;

#[cfg(feature = "serde")]
pub mod deserialization_serde;

#[cfg(feature = "crypto")]
pub mod crypto;

#[cfg(all(feature = "tokio", feature = "std"))]
pub mod futures_tokio;