From 62ecfc7001a642b70aa7d2ff4bf2d5b5e15161e2 Mon Sep 17 00:00:00 2001 From: Florian Klink Date: Sun, 12 Mar 2023 17:32:06 +0100 Subject: chore(tvix/store): allow(unused_mut) When building tvix-store without default features, this variable doesn't need to be mutable. Silence the warning. Change-Id: Iec61be0064c0cef276a29ef22e5c4af3b052efe8 Reviewed-on: https://cl.tvl.fyi/c/depot/+/8267 Reviewed-by: raitobezarius Tested-by: BuildkiteCI Autosubmit: flokli --- tvix/store/src/bin/tvix-store.rs | 1 + 1 file changed, 1 insertion(+) diff --git a/tvix/store/src/bin/tvix-store.rs b/tvix/store/src/bin/tvix-store.rs index 31d251f372..1cbe2f1e8d 100644 --- a/tvix/store/src/bin/tvix-store.rs +++ b/tvix/store/src/bin/tvix-store.rs @@ -100,6 +100,7 @@ async fn main() -> Result<(), Box> { directory_service.clone(), ); + #[allow(unused_mut)] let mut router = server .add_service(BlobServiceServer::new(GRPCBlobServiceWrapper::new( blob_service, -- cgit 1.4.1