[pitboss] sweep after phase 03: 7 deferred items resolved

This commit is contained in:
pitboss 2026-05-12 00:20:00 -04:00
parent a8b9dcd72b
commit e875aa1208
6 changed files with 122 additions and 38 deletions

View file

@ -264,9 +264,12 @@ pub struct ScannerConfig {
/// `"auto"` (default): docker when available, else process.
/// `"docker"`: require docker; fail if unavailable.
/// `"process"`: in-process runner (same as `--unsafe-sandbox`).
#[serde(default)]
#[serde(default = "default_verify_backend")]
pub verify_backend: String,
}
fn default_verify_backend() -> String {
"auto".to_owned()
}
impl Default for ScannerConfig {
fn default() -> Self {
Self {