()
| 49 | |
| 50 | impl Default for ParallelConfig { |
| 51 | fn default() -> Self { |
| 52 | Self { |
| 53 | nuclei_workers: 4, |
| 54 | nuclei_batch_size: 50, |
| 55 | nuclei_concurrency: 50, |
| 56 | rate_limit: 150, |
| 57 | batch_delay_ms: 100, |
| 58 | cloud_workers: 20, |
| 59 | timeout_secs: 30, |
| 60 | nuclei_bulk_size: 25, |
| 61 | nuclei_headless_bulk: 10, |
| 62 | nuclei_retries: 1, |
| 63 | nuclei_max_host_errors: 30, |
| 64 | nuclei_response_size_limit: 0, |
| 65 | turbo_mode: false, |
| 66 | } |
| 67 | } |
| 68 | } |
| 69 | |
| 70 | impl ParallelConfig { |
nothing calls this directly
no outgoing calls
no test coverage detected