mirror of
https://git.alemi.dev/dashboard.git
synced 2024-11-12 19:29:18 +01:00
alemi
d50f9b973b
metrics can be saved and loaded to/from csv. The files are ok-ish and it's reasonably fast. File format could still change. Also some small fixes and tweaks, like bigger buttons in confirmation prompts and source name in logs.
29 lines
598 B
TOML
29 lines
598 B
TOML
[package]
|
|
name = "dashboard"
|
|
version = "0.3.4"
|
|
edition = "2021"
|
|
|
|
[[bin]]
|
|
name = "dashboard_bin"
|
|
path = "src/main.rs"
|
|
|
|
[features]
|
|
default = ["bundled"]
|
|
bundled = ["rusqlite/bundled"]
|
|
web = ["chrono/wasmbind", "eframe/persistence"]
|
|
|
|
[dependencies]
|
|
rand = "0.8"
|
|
dirs = "4"
|
|
git-version = "0.3.5"
|
|
chrono = "0.4"
|
|
tracing = "0.1" # egui / eframe use tracing
|
|
tracing-subscriber = "0.3"
|
|
serde = { version = "1", features = ["derive"] }
|
|
serde_json = "1"
|
|
csv = "1.1"
|
|
rusqlite = "0.27"
|
|
jql = { version = "4", default-features = false }
|
|
ureq = { version = "2", features = ["json"] }
|
|
rfd = "0.9"
|
|
eframe = "0.18"
|