dashboard/Cargo.toml

37 lines
941 B
TOML
Raw Normal View History

[package]
2022-06-08 01:47:13 +02:00
name = "dashboard"
2022-11-01 04:35:42 +01:00
version = "0.4.0"
edition = "2021"
2022-06-12 11:32:50 +02:00
[features]
web = ["chrono/wasmbind", "eframe/persistence"]
2022-06-12 11:32:50 +02:00
[dependencies]
rand = "0.8"
2022-06-08 01:47:13 +02:00
dirs = "4"
git-version = "0.3.5"
chrono = "0.4"
2022-11-04 02:13:10 +01:00
tracing = "0.1"
serde = { version = "1", features = ["derive"] }
serde_json = "1"
csv = "1.1"
2022-06-09 01:38:52 +02:00
jql = { version = "4", default-features = false }
rfd = "0.9"
eframe = { version = "0.19", features = ["persistence"] }
tokio = { version = "1", features = ["full"] }
clap = { version = "4", features = ["derive"] }
futures = "0.3"
sea-orm = { version = "0.10", features = [ "runtime-tokio-rustls", "sqlx-sqlite", "sqlx-postgres", "macros" ] }
reqwest = { version = "0.11", features = ["json"] }
[target.'cfg(not(target_arch = "wasm32"))'.dependencies]
tracing-subscriber = "0.3"
ctrlc = "3.2.3"
[target.'cfg(target_arch = "wasm32")'.dependencies]
console_error_panic_hook = "0.1.6"
tracing-wasm = "0.2"
[profile.dev.package."*"]
opt-level = 3