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 pastey::paste;
10}
11
12pub mod accounting;
13pub mod components;
14pub mod constants;
15pub mod data_model;
16pub mod diagnostic;
17pub mod health;
18pub mod observability;
19pub mod pooling;
20pub mod runtime;
21pub mod support;
22pub mod topology;
23
24#[cfg(test)]
25pub(crate) mod test_support;