Skip to main content

thrust/
lib.rs

1//! Thrust core functionalities.
2//!
3
4pub mod data;
5pub mod error;
6pub mod intervals;
7
8#[cfg(feature = "polars")]
9pub mod kalman;
10
11pub use error::ThrustError;