1//! Rust tool support for vx 2 3use vx_core::VxPlugin; 4 5mod rust_plugin; 6mod rust_tool; 7 8pub use rust_plugin::RustPlugin; 9pub use rust_tool::CargoTool; 10 11/// Create a new Rust plugin instance 12pub fn create_plugin() -> Box<dyn VxPlugin> { 13 Box::new(RustPlugin) 14}