summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJoe Carstairs <me@joeac.net>2024-12-12 08:31:08 +0000
committerJoe Carstairs <me@joeac.net>2024-12-12 21:56:58 +0000
commit20b7b1924fdf2073d5e8783d2dc4b10887e7318a (patch)
tree15598dcc89b9baa1c9769ee3abc2e597aa3007f8
parent54894f9de9bad4fecb2a116d59a03cdd003f84c0 (diff)
Adds GTK4 GUI crate
-rw-r--r--Cargo.lock4
-rw-r--r--Cargo.toml1
-rw-r--r--schist_gtk4_gui/Cargo.toml6
-rw-r--r--schist_gtk4_gui/src/main.rs3
4 files changed, 14 insertions, 0 deletions
diff --git a/Cargo.lock b/Cargo.lock
index f19975d..f274eac 100644
--- a/Cargo.lock
+++ b/Cargo.lock
@@ -1371,6 +1371,10 @@ dependencies = [
]
[[package]]
+name = "schist_gtk4_gui"
+version = "0.1.0"
+
+[[package]]
name = "schist_models"
version = "0.1.0"
dependencies = [
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!");
+}