carrot_cake/lib.rs
1//! `carrot-cake` is a pub/sub framework, built on top of [`lapin`],
2//! to make it easy and ergonomic to work with RabbitMQ.
3//!
4//! [`Publisher`](crate::publishers::Publisher) and [`ConsumerGroup`](crate::consumers::ConsumerGroup)
5//! are the best starting points to learn more about what `carrot-cake` provides and how
6//! to leverage it.
7//!
8//! ## Examples
9//!
10//! Check the [`examples` directory](https://github.com/TrueLayer/carrot-cake/tree/main/carrot-cake/examples)
11//! on GitHub as well to see the library in action.
12
13pub mod consumers;
14pub mod publishers;
15
16pub mod amqp;
17pub mod pool;