9013f262ce
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.
22 lines
505 B
TOML
22 lines
505 B
TOML
[package]
|
|
name = "myc"
|
|
version = "0.1.0"
|
|
edition = "2024"
|
|
default-run = "myc"
|
|
|
|
[dependencies]
|
|
eframe = "0.33.3"
|
|
egui_extras = "0.33"
|
|
clap = { version = "4.5", features = ["derive"] }
|
|
chrono = "0.4"
|
|
regex = "1.10"
|
|
fastrand = "2.3"
|
|
rmcp = { version = "1.2", features = ["server", "transport-io"] }
|
|
tokio = { version = "1", features = ["rt", "io-std", "macros"] }
|
|
serde = { version = "1", features = ["derive"] }
|
|
zip = "2"
|
|
|
|
[dev-dependencies]
|
|
insta = { version = "1.39", features = ["yaml"] }
|
|
tempfile = "3"
|