1
2
3
4
5
6
7
8
9
10
11
12
// Copyright (c) The nextest Contributors
// SPDX-License-Identifier: MIT OR Apache-2.0

//! Logic for parsing [filter expressions](https://nexte.st/book/filter-expressions) used by
//! cargo-nextest.

mod compile;
pub mod errors;
mod expression;
mod parsing;

pub use expression::{BinaryQuery, FilteringExpr, FilteringSet, NameMatcher, TestQuery};