diff --git a/Cargo.toml b/Cargo.toml
index fa4dd123ee9a..4993925489f9 100644
--- a/Cargo.toml
+++ b/Cargo.toml
@@ -1,6 +1,6 @@
[package]
name = "clippy"
-version = "0.1.63"
+version = "0.1.64"
description = "A bunch of helpful lints to avoid common pitfalls in Rust"
repository = "https://github.com/rust-lang/rust-clippy"
readme = "README.md"
diff --git a/clippy_dev/src/bless.rs b/clippy_dev/src/bless.rs
index 8e5c739afe05..f5c51b9474fc 100644
--- a/clippy_dev/src/bless.rs
+++ b/clippy_dev/src/bless.rs
@@ -4,12 +4,12 @@
use crate::cargo_clippy_path;
use std::ffi::OsStr;
use std::fs;
-use std::lazy::SyncLazy;
use std::path::{Path, PathBuf};
+use std::sync::LazyLock;
use walkdir::{DirEntry, WalkDir};
-static CLIPPY_BUILD_TIME: SyncLazy