mirror of
https://github.com/FuzzingLabs/fuzzforge_ai.git
synced 2026-03-14 13:35:55 +00:00
17 lines
450 B
Python
17 lines
450 B
Python
"""Settings for rust-analyzer module."""
|
|
|
|
from fuzzforge_modules_sdk.api.models import FuzzForgeModulesSettingsBase
|
|
|
|
|
|
class Settings(FuzzForgeModulesSettingsBase):
|
|
"""Settings for the rust-analyzer module."""
|
|
|
|
#: Whether to run cargo-audit for CVE detection.
|
|
run_audit: bool = True
|
|
|
|
#: Whether to run cargo-geiger for unsafe detection.
|
|
run_geiger: bool = True
|
|
|
|
#: Maximum depth for dependency analysis.
|
|
max_depth: int = 3
|