plan: 0103 fix — derive(Debug) on ScaffoldSpec

The Task-1 unit tests call unwrap_err() on Result<ScaffoldSpec, String>,
which requires ScaffoldSpec: Debug; the prescribed struct lacked the
derive, so the plan's own bytes could not compile. The implement loop
correctly blocked on the necessary deviation (spec-compliance holds
verbatim plan code); this aligns the plan with the only compiling form.

refs #180
This commit is contained in:
2026-07-02 18:44:58 +02:00
parent 17ac4c49b7
commit 06ffc4f7a2
+1
View File
@@ -53,6 +53,7 @@ Everything else is untouched — the verb is additive.
use std::path::{Path, PathBuf};
#[derive(Debug)]
pub struct ScaffoldSpec {
pub name: String,
pub namespace: String,