1#![forbid(unsafe_code)]
2mod channel;
10mod config;
11mod error;
12mod ingest;
13mod line_parser;
14mod normalized;
15mod reader;
16
17#[cfg(feature = "codex")]
18pub mod codex_adapter;
19
20#[cfg(feature = "claude_code")]
21pub mod claude_code_adapter;
22
23pub use channel::ValidatedChannelString;
24pub use config::{CaptureRaw, ErrorDetailCapture, IngestConfig, IngestLimits};
25pub use error::{
26 AdapterErrorCode, CapturedRaw, ErrorDetail, ErrorDetailSink, LineRecord, LineRecordError,
27};
28pub use ingest::{LineIngestor, RawCaptureBudget};
29pub use line_parser::{ClassifiedParserError, LineInput, LineParser};
30pub use normalized::{
31 NormalizationContext, NormalizedEventKind, NormalizedEvents, NormalizedWrapperEvent,
32 WrapperAgentKind,
33};
34
35#[cfg(feature = "tokio")]
36pub use ingest::AsyncLineIngestor;