// Shared component functionality is available through the ferrisup_common crate
// Uncomment if needed: use ferrisup_common::*;
/// FerrisUp - A versatile Rust project bootstrapping tool
///
/// This crate provides a CLI tool for bootstrapping and managing Rust projects
/// with various templates and configurations.
///
/// # Examples
///
/// ```bash
/// # Create a new minimal Rust project
/// ferrisup new my_project --template minimal
///
/// # List available templates
/// ferrisup list
///
/// # Preview a template
/// ferrisup preview --template full-stack
/// ```
// Core modules
// Project management modules
// CLI command modules
// Re-exports of frequently used components
pub use ;
pub use ;