Skip to main content

reduct_base/
lib.rs

1// Copyright 2021-2026 ReductSoftware UG
2// Licensed under the Apache License, Version 2.0
3
4use std::collections::HashMap;
5
6pub mod batch;
7pub mod error;
8pub mod msg;
9
10#[cfg(feature = "io")]
11pub mod io;
12
13#[cfg(feature = "ext")]
14pub mod ext;
15pub mod logger;
16
17pub type Labels = HashMap<String, String>;