From ef5ce208ba3a72228c92cccd3ddd36a2aa9f096f Mon Sep 17 00:00:00 2001 From: 魏曹先生 <1992414357@qq.com> Date: Fri, 26 Jun 2026 07:59:34 +0800 Subject: feat(proj_mgr): add CHECKLIST.md reader for values and toggles Parse fenced code blocks as key-value pairs and checkbox lines as namespace toggles in a single pass --- mling/src/proj_mgr/mod.rs | 3 +++ 1 file changed, 3 insertions(+) (limited to 'mling/src/proj_mgr/mod.rs') diff --git a/mling/src/proj_mgr/mod.rs b/mling/src/proj_mgr/mod.rs index 04353b7..d0c4cbf 100644 --- a/mling/src/proj_mgr/mod.rs +++ b/mling/src/proj_mgr/mod.rs @@ -9,6 +9,9 @@ pub use generator::*; pub mod metadata; +mod checklist_reader; +pub use checklist_reader::*; + mod show_binaries; pub use show_binaries::*; -- cgit