24 lines
558 B
TOML
24 lines
558 B
TOML
|
[package]
|
||
|
name = "dashboard"
|
||
|
version = "0.1.0"
|
||
|
edition = "2021"
|
||
|
rust-version = "1.72"
|
||
|
publish = false
|
||
|
|
||
|
|
||
|
[dependencies]
|
||
|
chrono = "0.4.34"
|
||
|
eframe = { version = "0.26.2", features = [
|
||
|
"default",
|
||
|
"__screenshot", # __screenshot is so we can dump a screenshot using EFRAME_SCREENSHOT_TO
|
||
|
] }
|
||
|
|
||
|
# For image support:
|
||
|
egui_extras = { version = "0.26.2", features = ["default", "image"] }
|
||
|
|
||
|
env_logger = { version = "0.11.2", default-features = false, features = [
|
||
|
"auto-color",
|
||
|
"humantime",
|
||
|
] }
|
||
|
reqwest = { version = "0.11.24", features = ["blocking"] }
|