mf_file/zipdoc/
mod.rs

1pub mod formats;
2mod reader;
3mod snapshot;
4mod writer;
5
6pub use writer::ZipDocumentWriter;
7pub use reader::{
8    ZipDocumentReader, MmapConfig, MmapStats, ZipStreamReader,
9    FileSizeCategory, ProcessingStrategy, FileInfo,
10};
11pub use snapshot::{
12    SnapshotShardMeta, write_snapshot_shards, read_snapshot_shards,
13    read_and_decode_snapshot_shards, for_each_snapshot_shard_raw,
14    export_zip_with_shards, import_zip_with_shards,
15};
16// JSON/CBOR/MessagePack 专用 API 迁移到 formats 模块命名空间