diff options
author | Florian Klink <flokli@flokli.de> | 2023-03-12T16·32+0100 |
---|---|---|
committer | flokli <flokli@flokli.de> | 2023-03-12T16·45+0000 |
commit | 62ecfc7001a642b70aa7d2ff4bf2d5b5e15161e2 (patch) | |
tree | 745469d836c5f05659cd22658a945c7e41cb51c7 /tvix/store/src/bin | |
parent | e959efbed9d95cdc4e8ac361428ef6ab2a72d610 (diff) |
chore(tvix/store): allow(unused_mut) r/5956
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 <tvl@lahfa.xyz> Tested-by: BuildkiteCI Autosubmit: flokli <flokli@flokli.de>
Diffstat (limited to 'tvix/store/src/bin')
-rw-r--r-- | tvix/store/src/bin/tvix-store.rs | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/tvix/store/src/bin/tvix-store.rs b/tvix/store/src/bin/tvix-store.rs index 31d251f372b5..1cbe2f1e8dbc 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<dyn std::error::Error>> { directory_service.clone(), ); + #[allow(unused_mut)] let mut router = server .add_service(BlobServiceServer::new(GRPCBlobServiceWrapper::new( blob_service, |