saluki_components/lib.rs
1//! Component implementations.
2//!
3//! This crate contains full implementations of a number of common components.
4
5#![deny(warnings)]
6#![deny(missing_docs)]
7
8mod common;
9
10pub mod config;
11pub mod config_registry;
12pub mod decoders;
13pub mod destinations;
14pub mod encoders;
15pub mod forwarders;
16pub mod relays;
17pub mod sources;
18pub mod transforms;