streamson_extra_matchers/lib.rs
1#![crate_name = "streamson_extra_matchers"]
2
3//! This library contains extra matchers for streamson-lib
4//!
5//! It contains extra dependencies so it moved to a separate library
6//!
7
8#[cfg(feature = "with_regex")]
9pub mod regex_converter;
10#[cfg(feature = "with_regex")]
11pub mod regex_matcher;
12
13#[cfg(feature = "with_regex")]
14pub use regex_converter::RegexConverter;
15#[cfg(feature = "with_regex")]
16pub use regex_matcher::Regex;