cargo-setupx 0.1.0

Rust-based CLI and library that automates the initial setup of new Rust projects with modular configuration packs
Documentation
1
2
3
4
5
6
7
8
//! CLI module

pub mod args;
pub mod confirm;
pub mod runner;

pub use args::{Cli, Commands};
pub use runner::run_setupx;