Skip to main content

rift_types/
lib.rs

1//! Shared core types for the Rift workspace.
2//!
3//! Pure, serde-friendly data types with no behaviour, so they can be depended on by
4//! `rift-http-proxy`, `rift-lint`, and `rift-tui` without circular dependencies.
5
6pub mod predicate;
7
8pub use predicate::{Predicate, PredicateOperation, PredicateParameters, PredicateSelector};