From 85f7c35d6c573b715c166fe7501225ecab6731ea Mon Sep 17 00:00:00 2001 From: 魏曹先生 <1992414357@qq.com> Date: Mon, 6 Oct 2025 04:12:15 +0800 Subject: Update main lib.rs for new crate architecture - Remove old vcs module exports - Prepare for new vcs_data and vcs_actions integration - Update library structure to reflect architectural changes --- src/lib.rs | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/lib.rs b/src/lib.rs index 3a6c652..746f66f 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -3,6 +3,9 @@ pub mod vcs { extern crate vcs; pub use vcs::*; + + extern crate vcs_actions; + pub use vcs_actions::*; } pub mod utils { -- cgit