From a114ab3ab69161135362223029984dbb927861b7 Mon Sep 17 00:00:00 2001 From: Jason Volk Date: Sat, 14 Jun 2025 22:08:22 +0000 Subject: [PATCH] Fix use of `inherent_str_constructors` (#64 #65) Signed-off-by: Jason Volk --- src/macros/git.rs | 2 +- src/macros/rustc.rs | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/src/macros/git.rs b/src/macros/git.rs index 08fa0982..1da304e6 100644 --- a/src/macros/git.rs +++ b/src/macros/git.rs @@ -1,4 +1,4 @@ -use std::process::Command; +use std::{process::Command, str}; use proc_macro::TokenStream; use quote::quote; diff --git a/src/macros/rustc.rs b/src/macros/rustc.rs index 039aac13..290039b1 100644 --- a/src/macros/rustc.rs +++ b/src/macros/rustc.rs @@ -1,4 +1,4 @@ -use std::process::Command; +use std::{process::Command, str}; use proc_macro::TokenStream; use quote::quote;