zfsdu/Cargo.toml
kidev 1828dc4e78 Fix date formatting overflow bug, bump to v0.2.1
- 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:03:48 +01:00

22 lines
407 B
TOML

[package]
name = "zfsdu"
version = "0.2.1"
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