tackler_core/
lib.rs

1/*
2 * Tackler-NG 2022-2025
3 * SPDX-License-Identifier: Apache-2.0
4 */
5#![forbid(unsafe_code)]
6
7pub mod config;
8pub mod export;
9pub mod filter;
10pub mod kernel;
11pub mod math;
12pub mod model;
13pub mod parser;
14pub mod report;
15
16pub mod tackler {
17    pub type Error = Box<dyn std::error::Error + Send + Sync>;
18}