# Rust formatting configuration
# See: https://rust-lang.github.io/rustfmt/
# Stable options
edition = "2021"
max_width = 100
tab_spaces = 4
newline_style = "Unix"
use_small_heuristics = "Default"
# Import organization
imports_granularity = "Module"
group_imports = "StdExternalCrate"
reorder_imports = true
reorder_modules = true
# Formatting choices
use_field_init_shorthand = true
use_try_shorthand = true
format_strings = false