reduct_base/lib.rs
1// Copyright 2023 ReductSoftware UG
2// This Source Code Form is subject to the terms of the Mozilla Public
3// License, v. 2.0. If a copy of the MPL was not distributed with this
4// file, You can obtain one at https://mozilla.org/MPL/2.0/.
5
6use std::collections::HashMap;
7
8pub mod batch;
9pub mod error;
10pub mod msg;
11
12#[cfg(feature = "io")]
13pub mod io;
14
15#[cfg(feature = "ext")]
16pub mod ext;
17pub mod logger;
18
19pub type Labels = HashMap<String, String>;