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
10
11
12
13
14
15
16
17
//! Template content for configuration files

mod clippy;
mod hooks_readme;
mod makefile;
mod pre_push;
mod rustfmt;
mod setup_hooks;
mod typos;

pub use clippy::CLIPPY_TOML;
pub use hooks_readme::GITHOOKS_README;
pub use makefile::MAKEFILE;
pub use pre_push::PRE_PUSH_HOOK;
pub use rustfmt::RUSTFMT_TOML;
pub use setup_hooks::SETUP_HOOKS_SH;
pub use typos::TYPOS_TOML;