zfsdu/Cargo.toml
kidev edb7545a4d Fix date formatting overflow bug
- Use chrono library for proper date parsing from Unix timestamps
- Fixes integer overflow in manual date calculation that caused
  dates to display as huge numbers like "2026-01-18446744073709551241"
2026-01-31 00:02:00 +01:00

22 lines
407 B
TOML

[package]
name = "zfsdu"
version = "0.2.0"
edition = "2021"
description = "ncdu-like disk usage viewer for ZFS with snapshot management"
authors = ["Florian Schermer"]
[dependencies]
ratatui = "0.29"
crossterm = "0.28"
anyhow = "1.0"
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
toml = "0.8"
dirs = "5.0"
chrono = "0.4"
[profile.release]
lto = true
codegen-units = 1
strip = true