Add egui_extras dependency

Adds `egui_extras` to Cargo.toml and Cargo.lock to enable enhanced table
widgets.
Also introduces a new `StateTab` enum and integrates the
`egui_extras::TableBuilder` to display global variables in a structured
table within the application's state panel. This enhances the debugging
and introspection capabilities of the compiler UI by providing a clear
view of the environment's global state.
This commit is contained in:
2026-03-30 15:41:25 +02:00
parent 3628802fc8
commit 9013f262ce
5 changed files with 240 additions and 1 deletions
+1
View File
@@ -6,6 +6,7 @@ default-run = "myc"
[dependencies]
eframe = "0.33.3"
egui_extras = "0.33"
clap = { version = "4.5", features = ["derive"] }
chrono = "0.4"
regex = "1.10"