copybook-codec 0.4.3

Deterministic COBOL copybook codec for EBCDIC/ASCII fixed and RDW records.
Documentation
1
2
3
4
5
6
7
8
9
10
11
// SPDX-License-Identifier: AGPL-3.0-or-later
//! Record framing facade.
//!
//! `copybook-codec` keeps this module as a stable compatibility surface while
//! delegating fixed-vs-RDW dispatch and framing primitives to the dedicated
//! `copybook-record-io` microcrate.

pub use copybook_record_io::{
    FixedRecordReader, FixedRecordWriter, RDWRecord, RDWRecordReader, RDWRecordWriter, read_record,
    write_record,
};