osp-cli 1.5.1

CLI and REPL for querying and managing OSP infrastructure data
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
//! Parsing helpers for the canonical pipeline DSL.
//!
//! This module exists to turn user-facing pipeline syntax into structured
//! tokens, selectors, and stage descriptions before evaluation begins.
//!
//! Contract:
//!
//! - parsing should stop at syntax and structural intent
//! - runtime selection and traversal rules belong in `dsl::eval`

pub mod key_spec;
pub mod lexer;
pub mod path;
pub mod pipeline;
pub mod quick;