1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
// 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;
#[cfg(any(test, feature = "internal-testing"))]
mod proptest_helpers;

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