sql-rs 0.1.1

A SQL database with vector similarity search capabilities
Documentation
# Rustfmt configuration for SQL-RS project

# Edition
edition = "2024"

# Maximum line width
max_width = 100

# Indentation
tab_spaces = 4
hard_tabs = false

# Line endings
newline_style = "Unix"

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

# Use field init shorthand if possible
use_field_init_shorthand = true

# Use try shorthand
use_try_shorthand = true

# Format code in doc comments
format_code_in_doc_comments = true

# Format strings
format_strings = true

# Normalize comments
normalize_comments = true

# Wrap comments at max_width
wrap_comments = true
comment_width = 100

# Remove nested parens
remove_nested_parens = true

# Reorder impl items
reorder_impl_items = true

# Struct field alignment
struct_field_align_threshold = 0

# Match block trailing comma
match_block_trailing_comma = true

# Trailing comma for function parameters
trailing_comma = "Vertical"

# Trailing semicolon
trailing_semicolon = true

# Space before colon
space_before_colon = false
space_after_colon = true

# Spaces around ranges
spaces_around_ranges = false

# Type punctuation density
type_punctuation_density = "Wide"

# Use small heuristics
use_small_heuristics = "Default"

# Misc
blank_lines_upper_bound = 1
blank_lines_lower_bound = 0