From 06ffc4f7a25e9a850f21e7477f339d677af6750c Mon Sep 17 00:00:00 2001 From: Brummel Date: Thu, 2 Jul 2026 18:44:58 +0200 Subject: [PATCH] =?UTF-8?q?plan:=200103=20fix=20=E2=80=94=20derive(Debug)?= =?UTF-8?q?=20on=20ScaffoldSpec?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit The Task-1 unit tests call unwrap_err() on Result, 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 --- docs/plans/0103-aura-new-scaffolder.md | 1 + 1 file changed, 1 insertion(+) diff --git a/docs/plans/0103-aura-new-scaffolder.md b/docs/plans/0103-aura-new-scaffolder.md index 7ec7e5f..022c6ed 100644 --- a/docs/plans/0103-aura-new-scaffolder.md +++ b/docs/plans/0103-aura-new-scaffolder.md @@ -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,