zerv 0.7.99

Generate versions for any commit from git and other version control - perfect for CI/CD builds and multiple formats
Documentation
1
2
3
4
5
6
7
8
9
10
# clippy.toml - Clippy configuration for zerv project

# Warn on too many lines in functions (helps catch overly complex functions)
# This indirectly helps with readability
too-many-lines-threshold = 100

# Warn on cognitive complexity (helps catch complex logic that might benefit from refactoring)
cognitive-complexity-threshold = 15

# These settings help enforce code quality that reduces long lines