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
# Rustfmt configuration
# Similar to .prettierrc for JavaScript

# Maximum line length
max_width = 100

# Indentation
tab_spaces = 4

# Function formatting
fn_params_layout = "Tall"

# Note: Many advanced features require nightly Rust
# For stable Rust, we use the default formatting with these basic settings