From 2a675e2f845de476b5cb15fd3b6daf2e9c5c8106 Mon Sep 17 00:00:00 2001 From: klensy Date: Sun, 5 May 2024 12:02:35 +0300 Subject: [PATCH] chrono-tz-build: resolve fixme linked issue foxed long ago https://github.com/rust-phf/rust-phf/pull/232 --- chrono-tz-build/src/lib.rs | 3 --- 1 file changed, 3 deletions(-) diff --git a/chrono-tz-build/src/lib.rs b/chrono-tz-build/src/lib.rs index 274e52c..0552f03 100644 --- a/chrono-tz-build/src/lib.rs +++ b/chrono-tz-build/src/lib.rs @@ -142,10 +142,7 @@ fn write_timezone_file(timezone_file: &mut File, table: &Table) -> io::Result<() writeln!( timezone_file, "static TIMEZONES_UNCASED: ::phf::Map<&'static uncased::UncasedStr, Tz> = \n{};", - // FIXME(petrosagg): remove this once rust-phf/rust-phf#232 is released map.build() - .to_string() - .replace("::std::mem::transmute", "::core::mem::transmute") )?; }