rsigma_runtime/parse/mod.rs
1//! Log format parsers for the rsigma runtime.
2//!
3//! Each sub-module provides a zero-dependency parser for a specific log format.
4//! Parsers return simple owned types (`Vec<(String, String)>`, structs) that
5//! the Phase 3 input adapters convert into [`rsigma_eval::KvEvent`] or similar.
6
7pub mod cef;
8pub mod logfmt;