Fix circular dependencies in workspace

This commit is contained in:
Tony Klink 2024-04-02 19:12:59 -06:00
parent 960e2f8a37
commit 173cfe2acf
Signed by: klink
GPG key ID: 85175567C4D19231
11 changed files with 148 additions and 72 deletions

View file

@ -7,6 +7,7 @@ edition = "2021"
[dependencies]
khors-core = { path = "../khors-core", version = "0.1.0" }
khors-app = { path = "../modules/khors-app", version = "0.1.0" }
egui-vulkano = { path = "../vendor/egui-vulkano", version = "0.1.0" }
khors-graphics = { path = "../modules/khors-graphics", version = "0.1.0" }
khors-window = { path = "../modules/khors-window", version = "0.1.0" }

View file

@ -1,7 +1,7 @@
use anyhow::Result;
use khors_config::ConfigModule;
use khors_core::app::App;
use khors_app::App;
use khors_graphics::RenderModule;
use khors_window::WindowModule;
use tokio::runtime::Builder;