From 1ffc94555f40594f3594e3478606fb594caa8527 Mon Sep 17 00:00:00 2001 From: g4titanx Date: Sat, 22 Jun 2024 17:14:02 +0100 Subject: [PATCH] create tui path --- Cargo.toml | 1 + tui/Cargo.toml | 8 ++++++++ tui/src/main.rs | 3 +++ 3 files changed, 12 insertions(+) create mode 100644 tui/Cargo.toml create mode 100644 tui/src/main.rs diff --git a/Cargo.toml b/Cargo.toml index 2f3fec6..1e30a51 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,3 +1,4 @@ +workspace = { members = ["tui"] } [package] name = "kelvin" version = "0.1.0" diff --git a/tui/Cargo.toml b/tui/Cargo.toml new file mode 100644 index 0000000..f7ed87e --- /dev/null +++ b/tui/Cargo.toml @@ -0,0 +1,8 @@ +[package] +name = "tui" +version = "0.1.0" +edition = "2021" + +# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html + +[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!"); +}