Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 5 additions & 1 deletion CURRENT_STATE.md
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,11 @@
epoch-millisecond timestamp normalization, and two-pass direction inference
(the CS↔CSMS action tables), producing canonical `Event`s. The toolkit's
normalizer test cases are ported.
- Next: trace parser (#13), session timeline (#14).
- **Trace parser** (#13) — JSON object / JSONL / bare-array formats with format
detection, structural validation, per-entry warnings for malformed data, and
the untrusted-input limits (10 MB input, 10 000 events). Parses into a
caller-owned arena. The toolkit's parser test cases are ported.
- Next: session timeline (#14).

## What's next

Expand Down
2 changes: 2 additions & 0 deletions src/ocpp/ocpp.zig
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,10 @@

pub const types = @import("types.zig");
pub const normalizer = @import("normalizer.zig");
pub const parser = @import("parser.zig");

test {
_ = types;
_ = normalizer;
_ = parser;
}
Loading
Loading