shove 0.11.1

Async tasks via pubsub on steroids. Comes with built-in support for complex queue configurations, audit logs, autoscaling consumer groups and more.
Documentation
1
2
3
4
5
6
7
8
9
10
//! Optional codec implementations gated behind cargo features.
//!
//! The default codecs (`JsonCodec`, `RawBytesCodec`) live in
//! [`crate::codec`] and are always available. This module hosts codecs that
//! pull in optional dependencies — enable the corresponding feature to use
//! them.

#[cfg(feature = "protobuf")]
#[cfg_attr(docsrs, doc(cfg(feature = "protobuf")))]
pub mod protobuf;