update MSRV to allow deduplicating lazy function names

This commit is contained in:
Greg Johnston
2025-07-16 17:19:46 -04:00
parent f6cd784088
commit d2409a22a7
2 changed files with 2 additions and 3 deletions

View File

@@ -32,8 +32,7 @@ pub fn lazy_impl(args: proc_macro::TokenStream, s: TokenStream) -> TokenStream {
let unique_name = {
let span = proc_macro::Span::call_site();
let location =
(span.start().line(), span.start().column(), span.file());
let location = (span.line(), span.start().column(), span.file());
let mut hasher = DefaultHasher::new();
location.hash(&mut hasher);