From 20b7b1924fdf2073d5e8783d2dc4b10887e7318a Mon Sep 17 00:00:00 2001 From: Joe Carstairs Date: Thu, 12 Dec 2024 08:31:08 +0000 Subject: Adds GTK4 GUI crate --- Cargo.lock | 4 ++++ Cargo.toml | 1 + schist_gtk4_gui/Cargo.toml | 6 ++++++ schist_gtk4_gui/src/main.rs | 3 +++ 4 files changed, 14 insertions(+) create mode 100644 schist_gtk4_gui/Cargo.toml create mode 100644 schist_gtk4_gui/src/main.rs diff --git a/Cargo.lock b/Cargo.lock index f19975d..f274eac 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1370,6 +1370,10 @@ dependencies = [ "schist_traits", ] +[[package]] +name = "schist_gtk4_gui" +version = "0.1.0" + [[package]] name = "schist_models" version = "0.1.0" diff --git a/Cargo.toml b/Cargo.toml index 9162889..eb737f8 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -7,6 +7,7 @@ members = [ "actualbudget_to_schist_transformer", "schist_backend", "schist_fakes", + "schist_gtk4_gui", "schist_models", "schist_queries", "schist_schema", diff --git a/schist_gtk4_gui/Cargo.toml b/schist_gtk4_gui/Cargo.toml new file mode 100644 index 0000000..ed24d9d --- /dev/null +++ b/schist_gtk4_gui/Cargo.toml @@ -0,0 +1,6 @@ +[package] +name = "schist_gtk4_gui" +version = "0.1.0" +edition = "2021" + +[dependencies] diff --git a/schist_gtk4_gui/src/main.rs b/schist_gtk4_gui/src/main.rs new file mode 100644 index 0000000..e7a11a9 --- /dev/null +++ b/schist_gtk4_gui/src/main.rs @@ -0,0 +1,3 @@ +fn main() { + println!("Hello, world!"); +} -- cgit v1.2.3