commit 95240061279eed1399c584297a2e6b542a686ba8 Author: MCorange Date: Tue Feb 25 20:16:09 2025 +0200 :3 diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..ea8c4bf --- /dev/null +++ b/.gitignore @@ -0,0 +1 @@ +/target diff --git a/Cargo.toml b/Cargo.toml new file mode 100644 index 0000000..164af9f --- /dev/null +++ b/Cargo.toml @@ -0,0 +1,5 @@ +[workspace] +resolver = "2" +members = [ "ctx-core","ctx-gui"] + +[dependencies] diff --git a/ctx-core/Cargo.toml b/ctx-core/Cargo.toml new file mode 100644 index 0000000..16e8c1c --- /dev/null +++ b/ctx-core/Cargo.toml @@ -0,0 +1,6 @@ +[package] +name = "ctx-core" +version = "0.1.0" +edition = "2024" + +[dependencies] diff --git a/ctx-core/src/main.rs b/ctx-core/src/main.rs new file mode 100644 index 0000000..e7a11a9 --- /dev/null +++ b/ctx-core/src/main.rs @@ -0,0 +1,3 @@ +fn main() { + println!("Hello, world!"); +} diff --git a/ctx-gui/Cargo.toml b/ctx-gui/Cargo.toml new file mode 100644 index 0000000..60a318f --- /dev/null +++ b/ctx-gui/Cargo.toml @@ -0,0 +1,6 @@ +[package] +name = "ctx-gui" +version = "0.1.0" +edition = "2024" + +[dependencies] diff --git a/ctx-gui/src/main.rs b/ctx-gui/src/main.rs new file mode 100644 index 0000000..e7a11a9 --- /dev/null +++ b/ctx-gui/src/main.rs @@ -0,0 +1,3 @@ +fn main() { + println!("Hello, world!"); +} diff --git a/docs/design.odt b/docs/design.odt new file mode 100644 index 0000000..b3fac84 Binary files /dev/null and b/docs/design.odt differ