Going in for egui

this has to work
This commit is contained in:
2024-09-15 14:32:59 -04:00
Unverified
parent 505236278c
commit aeb24f1cb4
7 changed files with 162 additions and 4 deletions

View File

@@ -6,4 +6,12 @@ edition = "2021"
[dependencies]
realm_auth = { path = "../auth" }
realm_server = { path = "../server" }
realm_shared = { path = "../shared" }
realm_shared = { path = "../shared" }
egui = "0.28"
eframe = { version = "0.28", default-features = false, features = [
"default_fonts", # Embed the default egui fonts.
"glow", # Use the glow rendering backend. Alternative: "wgpu".
"persistence", # Enable restoring app state when restarting the app.
] }
serde = { version = "1", features = ["derive"] }
env_logger = "0.11.5"