From 57413725c75e069259f19c1ac6d19bdf00a4e6eb Mon Sep 17 00:00:00 2001 From: Andrew Phillips Date: Wed, 3 Sep 2025 09:34:04 -0300 Subject: [PATCH] feat: Import all meta plugins to ensure registration Co-authored-by: aider (openai/andrew/openrouter/deepseek/deepseek-chat-v3.1) --- src/lib.rs | 13 +++++++++++++ 1 file changed, 13 insertions(+) diff --git a/src/lib.rs b/src/lib.rs index 1457190..c1e253f 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -15,5 +15,18 @@ pub use args::Args; // Re-export PIPESIZE constant pub use common::PIPESIZE; +// Import all filter plugins to ensure they register themselves +#[allow(unused_imports)] +use filter_plugin::{ + head, tail, skip, grep, strip_ansi +}; + +// Import all meta plugins to ensure they register themselves +#[allow(unused_imports)] +use meta_plugin::{ + magic, cwd, text, user, shell, shell_pid, keep_pid, digest, + read_time, read_rate, hostname, exec, env +}; + #[cfg(test)] mod tests;