Skip to content

Commit bc1d8e7

Browse files
committed
make time format parsing compiletime
1 parent be3a635 commit bc1d8e7

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

compiler/rustc_driver_impl/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@ rustc_trait_selection = { path = "../rustc_trait_selection" }
4949
rustc_ty_utils = { path = "../rustc_ty_utils" }
5050
serde_json = "1.0.59"
5151
shlex = "1.0"
52-
time = { version = "0.3.36", default-features = false, features = ["alloc", "formatting", "parsing", "macros"] }
52+
time = { version = "0.3.36", default-features = false, features = ["alloc", "formatting", "macros"] }
5353
tracing = { version = "0.1.35" }
5454
# tidy-alphabetical-end
5555

compiler/rustc_driver_impl/src/lib.rs

+2-2
Original file line numberDiff line numberDiff line change
@@ -64,6 +64,7 @@ use rustc_span::source_map::FileLoader;
6464
use rustc_target::json::ToJson;
6565
use rustc_target::spec::{Target, TargetTuple};
6666
use time::OffsetDateTime;
67+
use time::macros::format_description;
6768
use tracing::trace;
6869

6970
#[allow(unused_macros)]
@@ -1356,8 +1357,7 @@ fn ice_path_with_config(config: Option<&UnstableOptions>) -> &'static Option<Pat
13561357
let file_now = now
13571358
.format(
13581359
// Don't use a standard datetime format because Windows doesn't support `:` in paths
1359-
&time::format_description::parse("[year]-[month]-[day]T[hour]_[minute]_[second]")
1360-
.unwrap(),
1360+
&format_description!("[year]-[month]-[day]T[hour]_[minute]_[second]"),
13611361
)
13621362
.unwrap_or_default();
13631363
let pid = std::process::id();

0 commit comments

Comments
 (0)