sockudo-adapter 4.5.0

Connection adapters and horizontal scaling for Sockudo
#[cfg(feature = "google-pubsub")]
pub mod google_pubsub_transport;
#[cfg(feature = "iggy")]
pub mod iggy_transport;
#[cfg(feature = "kafka")]
pub mod kafka_transport;
#[cfg(feature = "nats")]
pub mod nats_transport;
#[cfg(feature = "pulsar")]
pub mod pulsar_transport;
#[cfg(feature = "rabbitmq")]
pub mod rabbitmq_transport;
#[cfg(feature = "redis-cluster")]
pub mod redis_cluster_transport;
#[cfg(feature = "redis")]
pub mod redis_transport;

#[cfg(feature = "google-pubsub")]
pub use google_pubsub_transport::GooglePubSubTransport;
#[cfg(feature = "iggy")]
pub use iggy_transport::IggyTransport;
#[cfg(feature = "kafka")]
pub use kafka_transport::KafkaTransport;
#[cfg(feature = "nats")]
pub use nats_transport::NatsTransport;
#[cfg(feature = "pulsar")]
pub use pulsar_transport::PulsarTransport;
#[cfg(feature = "rabbitmq")]
pub use rabbitmq_transport::RabbitMqTransport;
#[cfg(feature = "redis-cluster")]
pub use redis_cluster_transport::RedisClusterTransport;
#[cfg(feature = "redis")]
pub use redis_transport::{RedisAdapterConfig, RedisTransport};