quantlet 0.1.2

QuantLET is an open source, event-driven framework for rapid development and deployment of real-time analytical models intended to be executing in large scale.
Documentation
pub mod error;
pub mod prelude;

#[cfg(feature = "agents")]
pub use quantlet_agents as agents;

#[cfg(feature = "bigdata")]
pub use quantlet_bigdata as bigdata;

#[cfg(feature = "reactives")]
pub use quantlet_reactives as reactives;

#[cfg(feature = "streams")]
pub use quantlet_streams as streams;

pub mod __private {
    pub trait Sealed {}
}

#[cfg(test)]
pub mod insta_test_utils {
    use insta::Settings;

    pub fn insta_settings_with_masking_filters() -> Settings {
        let mut settings = Settings::clone_current(); // inherit defaults [web:50]
        settings.add_filter(
            r"[0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{12}",
            "********-****-****-****-************",
        );
        settings
    }
}