From 2f251facf156b6c89e6be3ba690261556baa02fa Mon Sep 17 00:00:00 2001 From: 魏曹先生 <1992414357@qq.com> Date: Tue, 24 Feb 2026 12:33:51 +0800 Subject: Implement SheetSystem core library Add IndexSource type for resource addressing and implement mapping system with LocalMapping, Mapping, and MappingBuf types. Create Sheet and SheetData structs for managing sheet data with editing capabilities. Implement binary format serialization/deserialization with reader and writer modules. Add constants for file format layout and comprehensive test suite for roundtrip verification. --- systems/sheet/src/lib.rs | 1 + 1 file changed, 1 insertion(+) (limited to 'systems/sheet/src/lib.rs') diff --git a/systems/sheet/src/lib.rs b/systems/sheet/src/lib.rs index 94e84c5..84abbc9 100644 --- a/systems/sheet/src/lib.rs +++ b/systems/sheet/src/lib.rs @@ -1,3 +1,4 @@ +pub mod index_source; pub mod mapping; pub mod mapping_pattern; pub mod sheet; -- cgit