-
- Downloads
Added some experimentation with window and settings
Showing
- Cargo.toml 6 additions, 5 deletionsCargo.toml
- src/ui/composable_view.rs 28 additions, 20 deletionssrc/ui/composable_view.rs
- src/ui/panes.rs 34 additions, 6 deletionssrc/ui/panes.rs
- src/ui/panes/default.rs 2 additions, 6 deletionssrc/ui/panes/default.rs
- src/ui/panes/messages_viewer.rs 0 additions, 4 deletionssrc/ui/panes/messages_viewer.rs
- src/ui/panes/plot_2d.rs 80 additions, 11 deletionssrc/ui/panes/plot_2d.rs
... | ... | @@ -8,16 +8,17 @@ description = "Skyward Enhanced Ground Station" |
license = "MIT" | ||
[dependencies] | ||
# GUI & Rendering | ||
# ======= GUI & Rendering ======= | ||
egui_tiles = "0.10" | ||
eframe = "0.29" | ||
egui = { version = "0.29", features = ["log"] } | ||
egui_plot = "0.29" | ||
egui_tiles = "0.10" | ||
# Persistency | ||
# ========= Persistency ========= | ||
serde = { version = "1.0", features = ["derive"] } | ||
serde_json = "1.0" | ||
# Logging | ||
# =========== Logging =========== | ||
env_logger = "0.11" | ||
log = "0.4" | ||
# Utility | ||
# =========== Utility =========== | ||
# for dynamic dispatch | ||
enum_dispatch = "0.3" |
Please register or sign in to comment