cauz 0.0.3

Succinct error handling
Documentation
# Run with `cargo +nightly fmt --all` before a PR.
# List of parameters: https://rust-lang.github.io/rustfmt
# Use #[rustfmt::skip] to ignore formatting of a block of code.

edition = "2024"

hard_tabs = true

# Increases default width (150) to reduce agresiveness on converting everything to vertical format
max_width = 150

#rustfmt uses tab_spaces to calculate width of lines for deciding if the expression will fit in a single line or if it will be split into multiple lines
tab_spaces = 4

newline_style = "Unix"
enum_discrim_align_threshold = 50
struct_field_align_threshold = 50
overflow_delimited_expr = true
use_small_heuristics = "Max"

format_generated_files = false
ignore = ["target/*.rs"]

imports_granularity = "Crate"