problemreductions 0.4.0

A library for reducing NP-hard problems
Documentation
# 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"

# Imports
imports_granularity = "Crate"
group_imports = "StdExternalCrate"
reorder_imports = true

# Comments and documentation
format_code_in_doc_comments = true
normalize_comments = true
wrap_comments = true
comment_width = 100

# Formatting style
use_field_init_shorthand = true
use_try_shorthand = true
force_explicit_abi = true

# Unstable options (require nightly, comment out if using stable)
# Uncomment these when using nightly rustfmt
# unstable_features = true
# format_strings = true
# format_macro_bodies = true
# format_macro_matchers = true
# overflow_delimited_expr = true
# imports_indent = "Block"
# match_block_trailing_comma = true
# trailing_comma = "Vertical"
# trailing_semicolon = false