From fd5a89e174e01b0adb089dcf8f6da36cf5008443 Mon Sep 17 00:00:00 2001 From: Josh Ferrell Date: Mon, 29 Sep 2025 14:53:05 -0400 Subject: Fix rust warnings about lifetimes introduced by 1.89.0 --- rust/src/project.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'rust/src/project.rs') diff --git a/rust/src/project.rs b/rust/src/project.rs index c268d613..4f91010d 100644 --- a/rust/src/project.rs +++ b/rust/src/project.rs @@ -612,7 +612,7 @@ impl Project { /// } /// ``` // NOTE mut is used here, so only one lock can be acquired at once - pub fn bulk_operation(&mut self) -> Result { + pub fn bulk_operation(&mut self) -> Result, ()> { Ok(ProjectBulkOperationLock::lock(self)) } } -- cgit v1.3.1