From c9aa5290e9e9d53f3b5854c6a07cabc4245d86cd Mon Sep 17 00:00:00 2001 From: Matthew Gordon Date: Thu, 30 Oct 2025 20:08:50 -0300 Subject: [PATCH] Add stub TUI app --- Cargo.toml | 2 +- tui/Cargo.toml | 6 ++++++ tui/src/main.rs | 3 +++ 3 files changed, 10 insertions(+), 1 deletion(-) create mode 100644 tui/Cargo.toml create mode 100644 tui/src/main.rs diff --git a/Cargo.toml b/Cargo.toml index 78a3a22..59d2e60 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,3 +1,3 @@ [workspace] resolver = "2" -members = ["core"] \ No newline at end of file +members = ["core", "tui"] diff --git a/tui/Cargo.toml b/tui/Cargo.toml new file mode 100644 index 0000000..dda1749 --- /dev/null +++ b/tui/Cargo.toml @@ -0,0 +1,6 @@ +[package] +name = "ged-tui" +version = "0.1.0" +edition = "2024" + +[dependencies] diff --git a/tui/src/main.rs b/tui/src/main.rs new file mode 100644 index 0000000..e7a11a9 --- /dev/null +++ b/tui/src/main.rs @@ -0,0 +1,3 @@ +fn main() { + println!("Hello, world!"); +}