vx_tool_rust/
lib.rs

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