# Pezkuwi SDK - Stable Rustfmt Configuration # Only stable features are used for long-term reliability # Basic edition = "2021" hard_tabs = true max_width = 100 use_small_heuristics = "Max" # Imports reorder_imports = true # Consistency newline_style = "Unix" # Misc chain_width = 80 match_arm_leading_pipes = "Preserve" match_block_trailing_comma = true use_field_init_shorthand = true # NOTE: The following nightly-only features were removed for stable compatibility: # - imports_granularity = "Crate" # - wrap_comments = true # - comment_width = 100 # - reorder_impl_items = false # - spaces_around_ranges = false # - binop_separator = "Back" # - match_arm_blocks = false # - trailing_semicolon = false # - trailing_comma = "Vertical"