feat: enhance duration parsing and error handling, add utility functions

This commit is contained in:
2025-07-10 18:05:07 -05:00
parent 5afffcaf07
commit 1b3f6c8864
9 changed files with 135 additions and 87 deletions

View File

@@ -152,10 +152,6 @@ fn generate_timezone_map() -> Result<(), BuildError> {
Some((abbreviation, offset)) => {
builder.entry(abbreviation.clone(), offset.to_string());
processed_count += 1;
// println!(
// "cargo:warning=Processed timezone: {} -> {} seconds",
// abbreviation, offset
// );
}
None => {
skipped_count += 1;