simple_selectors/
lib.rs

1//! Parser for k8s style selectors
2//!
3//! Simple label matching syntax as in `label = value`
4
5#[macro_use]
6#[cfg(test)]
7extern crate assert_matches;
8extern crate itertools;
9
10mod parser;
11mod parseerror;
12
13pub use parser::LabelMap;
14pub use parser::parse;
15pub use parseerror::ParseError;