From 365c4b1974fb1d3361e97f64584a4f31bae98160 Mon Sep 17 00:00:00 2001 From: Joe Carstairs Date: Mon, 28 Jul 2025 13:40:18 +0100 Subject: task-010: add schist_desktop_gui Cargo package --- requirements/kanban.md | 4 ++-- requirements/tasks/task-010.md | 2 ++ schist_desktop_gui/Cargo.toml | 5 +++++ schist_desktop_gui/src/main.rs | 2 ++ 4 files changed, 11 insertions(+), 2 deletions(-) create mode 100644 schist_desktop_gui/Cargo.toml create mode 100644 schist_desktop_gui/src/main.rs diff --git a/requirements/kanban.md b/requirements/kanban.md index 99c23ed..b265f47 100644 --- a/requirements/kanban.md +++ b/requirements/kanban.md @@ -2,9 +2,9 @@ | Backlog | Ready | Doing | | -------- | -------- | -------- | -| | epic-000 | | +| | | epic-000 | | ======== | ======== | ======== | -| | task-010 | | +| | | task-010 | | | task-073 | | | | task-012 | | | | task-001 | | diff --git a/requirements/tasks/task-010.md b/requirements/tasks/task-010.md index 31ee420..419cd55 100644 --- a/requirements/tasks/task-010.md +++ b/requirements/tasks/task-010.md @@ -2,6 +2,8 @@ Schist must have a desktop GUI implemented in iced.rs. +Status: doing + Source: ard-000 Epic: epic-000 diff --git a/schist_desktop_gui/Cargo.toml b/schist_desktop_gui/Cargo.toml new file mode 100644 index 0000000..a8d887f --- /dev/null +++ b/schist_desktop_gui/Cargo.toml @@ -0,0 +1,5 @@ +[package] +name = "schist_desktop_gui" +edition = "2021" + +[dependencies] diff --git a/schist_desktop_gui/src/main.rs b/schist_desktop_gui/src/main.rs new file mode 100644 index 0000000..f79c691 --- /dev/null +++ b/schist_desktop_gui/src/main.rs @@ -0,0 +1,2 @@ +fn main() { +} -- cgit v1.2.3