sql-rs 0.1.1

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

# Cognitive complexity threshold
cognitive-complexity-threshold = 30

# Disallowed methods
disallowed-methods = []

# Disallowed types
disallowed-types = []

# Documentation
missing-docs-in-private-items = false

# Lint configuration
# Warn about suspicious code patterns
warn-on-all-wildcard-imports = true

# Enforce naming conventions (optional)
# too-many-arguments-threshold = 7
# type-complexity-threshold = 250

# Single-char binding names threshold
single-char-binding-names-threshold = 4

# Literal representation threshold
literal-representation-threshold = 10

# Enum variant size threshold
enum-variant-size-threshold = 200

# Vec box size threshold
vec-box-size-threshold = 4096

# Stack size threshold
stack-size-threshold = 512000

# Enum variant name thresholds (Blacklist)
# blacklist-names = ["foo", "bar", "baz", "qux", "quux"]

# Allow expect and unwrap in tests
allow-expect-in-tests = true
allow-unwrap-in-tests = true
allow-print-in-tests = true

# Allow expect and unwrap in examples
allow-expect-in-examples = false
allow-unwrap-in-examples = false
allow-print-in-examples = true

# Suppress lints from dependencies
suppress-lint = []