2022-06-03 02:03:37 +02:00
|
|
|
[package]
|
2022-06-08 01:47:13 +02:00
|
|
|
name = "dashboard"
|
2022-06-28 01:09:15 +02:00
|
|
|
version = "0.3.4"
|
2022-06-03 02:03:37 +02:00
|
|
|
edition = "2021"
|
|
|
|
|
|
|
|
[[bin]]
|
2022-06-08 01:47:13 +02:00
|
|
|
name = "dashboard_bin"
|
2022-06-03 02:03:37 +02:00
|
|
|
path = "src/main.rs"
|
|
|
|
|
2022-06-12 11:32:50 +02:00
|
|
|
[features]
|
2022-06-12 11:59:53 +02:00
|
|
|
web = ["chrono/wasmbind", "eframe/persistence"]
|
2022-06-12 11:32:50 +02:00
|
|
|
|
2022-06-03 02:03:37 +02:00
|
|
|
[dependencies]
|
|
|
|
rand = "0.8"
|
2022-06-08 01:47:13 +02:00
|
|
|
dirs = "4"
|
|
|
|
git-version = "0.3.5"
|
2022-06-12 11:59:53 +02:00
|
|
|
chrono = "0.4"
|
2022-06-12 23:52:06 +02:00
|
|
|
tracing = "0.1" # egui / eframe use tracing
|
|
|
|
tracing-subscriber = "0.3"
|
2022-06-03 02:03:37 +02:00
|
|
|
serde = { version = "1", features = ["derive"] }
|
|
|
|
serde_json = "1"
|
2022-06-28 01:09:15 +02:00
|
|
|
csv = "1.1"
|
2022-06-09 01:38:52 +02:00
|
|
|
jql = { version = "4", default-features = false }
|
2022-06-28 01:09:15 +02:00
|
|
|
rfd = "0.9"
|
2022-10-31 02:54:42 +01:00
|
|
|
eframe = "0.19"
|
|
|
|
tokio = { version = "1", features = ["full"] }
|
|
|
|
clap = { version = "4", features = ["derive"] }
|
|
|
|
futures = "0.3"
|
|
|
|
sea-orm = { version = "0.10", features = [ "runtime-tokio-rustls", "sqlx-sqlite", "macros" ] }
|
|
|
|
reqwest = { version = "0.11", features = ["json"] }
|
|
|
|
|
|
|
|
[profile.dev.package."*"]
|
|
|
|
opt-level = 3
|