saluki_core/
lib.rs

1//! Core primitives for building Saluki-based data planes.
2#![deny(warnings)]
3#![deny(missing_docs)]
4// This deals with some usages that only show up in test code and which aren't real issues.
5#![cfg_attr(test, allow(clippy::mutable_key_type))]
6
7#[doc(hidden)]
8pub mod reexport {
9    pub use paste::paste;
10}
11
12pub mod components;
13pub mod constants;
14pub mod data_model;
15pub mod observability;
16pub mod pooling;
17pub mod state;
18pub mod topology;