9356be4ec0
Adds the `obitaxonomy` crate to parse and validate hierarchical taxonomy paths using a strict `taxonomy:/name@rank/...` syntax. Replaces generic string-based path matching in predicates with structured `TaxPath` and `TaxPattern` types, enforcing explicit anchor constraints and rank-aware semantics. Updates filtering documentation to clarify optional leading slashes and segment-boundary matching rules.
12 lines
226 B
Rust
12 lines
226 B
Rust
mod error;
|
|
mod segment;
|
|
mod segment_pattern;
|
|
mod path;
|
|
mod pattern;
|
|
|
|
pub use error::TaxError;
|
|
pub use segment::TaxSegment;
|
|
pub use segment_pattern::SegmentPattern;
|
|
pub use path::{TaxPath, PREFIX};
|
|
pub use pattern::TaxPattern;
|