chore: update all dependencies to latest

This commit is contained in:
2025-07-10 12:37:13 -05:00
parent babae191a4
commit 32b55c918c
6 changed files with 245 additions and 274 deletions

View File

@@ -150,12 +150,12 @@ fn generate_timezone_map() -> Result<(), BuildError> {
match parse_timezone_line(&line)? {
Some((abbreviation, offset)) => {
builder.entry(abbreviation.clone(), &offset.to_string());
builder.entry(abbreviation.clone(), offset.to_string());
processed_count += 1;
println!(
"cargo:warning=Processed timezone: {} -> {} seconds",
abbreviation, offset
);
// println!(
// "cargo:warning=Processed timezone: {} -> {} seconds",
// abbreviation, offset
// );
}
None => {
skipped_count += 1;