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
9
//! Utility functions for file operations

mod create_dir;
mod make_executable;
mod write_file;

pub use create_dir::create_dir;
pub use make_executable::make_executable;
pub use write_file::write_file;