From 3c84ae796df7755742c1210ef1a84478c4e65e23 Mon Sep 17 00:00:00 2001 From: metamuffin Date: Sat, 15 Oct 2022 13:46:53 +0200 Subject: init gui crate --- client-native-gui/Cargo.toml | 13 +++++++++++++ client-native-gui/src/main.rs | 4 ++++ 2 files changed, 17 insertions(+) create mode 100644 client-native-gui/Cargo.toml create mode 100644 client-native-gui/src/main.rs (limited to 'client-native-gui') diff --git a/client-native-gui/Cargo.toml b/client-native-gui/Cargo.toml new file mode 100644 index 0000000..b801af6 --- /dev/null +++ b/client-native-gui/Cargo.toml @@ -0,0 +1,13 @@ +[package] +name = "keks-meet" +version = "0.1.0" +edition = "2021" + +[dependencies] +client-native-lib = { path = "../client-native-lib" } + +env_logger = "0.8" +log = "0.4" + +egui = "0.19.0" +eframe = "0.19.0" diff --git a/client-native-gui/src/main.rs b/client-native-gui/src/main.rs new file mode 100644 index 0000000..db87ed6 --- /dev/null +++ b/client-native-gui/src/main.rs @@ -0,0 +1,4 @@ +fn main() { + + +} -- cgit v1.2.3-70-g09d2