e9bd13ea4c
This commit introduces the `eframe` dependency and sets up the foundational structure for a graphical user interface. It includes the necessary imports for `egui` and prepares the application to render UI elements.
14 lines
274 B
TOML
14 lines
274 B
TOML
[package]
|
|
name = "read-data"
|
|
version = "0.1.0"
|
|
edition = "2024"
|
|
|
|
[dependencies]
|
|
anyhow = "1.0.101"
|
|
bytemuck = { version = "1.25.0", features = ["derive"] }
|
|
tokio = { version = "1.49.0", features = ["full"] }
|
|
zip = "8.0.0"
|
|
sysinfo = "0.33.0"
|
|
chrono = "0.4"
|
|
eframe = "0.30.0"
|