Skip to main content

use_pattern/
lib.rs

1#![forbid(unsafe_code)]
2#![doc = include_str!("../README.md")]
3
4#[cfg(feature = "glob")]
5pub use use_glob;
6#[cfg(feature = "glob")]
7pub use use_glob as glob;
8
9#[cfg(feature = "match")]
10pub use use_match;
11#[cfg(feature = "match")]
12pub use use_match as matchers;
13
14#[cfg(feature = "regex")]
15pub use use_regex;
16#[cfg(feature = "regex")]
17pub use use_regex as regex;
18
19#[cfg(feature = "wildcard")]
20pub use use_wildcard;
21#[cfg(feature = "wildcard")]
22pub use use_wildcard as wildcard;
23
24pub mod prelude;