# Rustfmt documentation:
# https://rust-lang.github.io/rustfmt/?version=v1.5.1&search=
# This crate is 'unix' only.
= "Unix"
# chain_width; a percentage of maximum width
# precedes what is implied by `use_small_heuristics"
= 70
= "Max"
# hard tabs enforces tab spacing instead of spaces
= true
# imports layout specifies how the import blocks look use xxx::yyy:zzz;
# vertical will show each import on its own line
#imports_layout = "Vertical"
# merge_imports will not allow multiple imports from the same library, everything imported from one library should go in the same place.
#merge_imports = true
# reorder immports so they are alphabetical
= true
# group imports be type: standard, core and alloc, then external, then internal
= "StdExternalCrate"
= "Crate"
# number of spaces per each tab in editors (they may choose to ignore this declaration)
= 8