26 lines
795 B
TOML
26 lines
795 B
TOML
[package]
|
|
name = "pm-reports"
|
|
version.workspace = true
|
|
edition.workspace = true
|
|
authors.workspace = true
|
|
license.workspace = true
|
|
|
|
[dependencies]
|
|
pm-core = { path = "../pm-core" }
|
|
tokio = { workspace = true }
|
|
serde = { workspace = true }
|
|
serde_json = { workspace = true }
|
|
thiserror = { workspace = true }
|
|
anyhow = { workspace = true }
|
|
tracing = { workspace = true }
|
|
chrono = { workspace = true }
|
|
sqlx = { workspace = true }
|
|
uuid = { workspace = true }
|
|
|
|
# Report generation
|
|
csv = "1"
|
|
printpdf = { version = "0.7", features = ["embedded_images"] }
|
|
plotters = { version = "0.3", default-features = false, features = ["bitmap_backend", "bitmap_encoder", "line_series", "area_series"] }
|
|
plotters-bitmap = { version = "0.3" }
|
|
image = { version = "0.25", default-features = false, features = ["png"] }
|