From b2c45bf5c16391917caccd703ac85b80c5c77cca Mon Sep 17 00:00:00 2001 From: 魏曹先生 <1992414357@qq.com> Date: Fri, 24 Oct 2025 14:47:20 +0800 Subject: Re-export subcrate `action_system` to `just_enough_vcs` --- src/lib.rs | 10 ++++++++-- 1 file changed, 8 insertions(+), 2 deletions(-) (limited to 'src/lib.rs') diff --git a/src/lib.rs b/src/lib.rs index 29855e3..4771dcd 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -1,13 +1,19 @@ // Feature `vcs` #[cfg(feature = "vcs")] pub mod vcs { - extern crate vcs_data; + pub extern crate vcs_data; pub use vcs_data::*; - extern crate vcs_actions; + pub extern crate vcs_actions; pub use vcs_actions::*; } +pub mod system { + pub mod action_system { + pub use action_system::*; + } +} + pub mod utils { // Feature `tcp_connection` #[cfg(feature = "tcp_connection")] -- cgit