dashboard/Cargo.toml
alemi 203cff23f9
feat: show file size in footer (update every s)
also made jq_rs use bundled jqlib because rust-analyzer won't work otherwise
2022-06-08 12:58:07 +02:00

23 lines
516 B
TOML

[package]
name = "dashboard"
version = "0.1.1"
edition = "2021"
[[bin]]
name = "dashboard_bin"
path = "src/main.rs"
[dependencies]
rand = "0.8"
dirs = "4"
git-version = "0.3.5"
chrono = { version = "0.4", features = ["wasmbind"] }
eframe = { version = "0.18", features = ["persistence"] }
serde = { version = "1", features = ["derive"] }
serde_json = "1"
rusqlite = { version = "0.27" }
jq-rs = { version = "0.4", features = ["bundled"] }
ureq = { version = "2", features = ["json"] }
[env]
JQ_LIB_DIR="/usr/lib"