2022-06-03 02:03:37 +02:00
|
|
|
[package]
|
2022-06-08 01:47:13 +02:00
|
|
|
name = "dashboard"
|
2022-11-01 04:35:42 +01:00
|
|
|
version = "0.4.0"
|
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
|
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-11-01 05:28:24 +01:00
|
|
|
eframe = { version = "0.19", features = ["persistence"] }
|
2022-10-31 02:54:42 +01:00
|
|
|
tokio = { version = "1", features = ["full"] }
|
|
|
|
clap = { version = "4", features = ["derive"] }
|
|
|
|
futures = "0.3"
|
2022-11-01 18:12:32 +01:00
|
|
|
sea-orm = { version = "0.10", features = [ "runtime-tokio-rustls", "sqlx-sqlite", "sqlx-postgres", "macros" ] }
|
2022-10-31 02:54:42 +01:00
|
|
|
reqwest = { version = "0.11", features = ["json"] }
|
|
|
|
|
2022-11-01 05:28:24 +01:00
|
|
|
[target.'cfg(not(target_arch = "wasm32"))'.dependencies]
|
|
|
|
tracing-subscriber = "0.3"
|
|
|
|
|
|
|
|
[target.'cfg(target_arch = "wasm32")'.dependencies]
|
|
|
|
console_error_panic_hook = "0.1.6"
|
|
|
|
tracing-wasm = "0.2"
|
|
|
|
|
2022-11-02 03:17:41 +01:00
|
|
|
[profile.dev.package."*"]
|
|
|
|
opt-level = 3
|