From 54bb63dea3a21a2ed40a63a20bacf0220236a7fb Mon Sep 17 00:00:00 2001 From: Florian Klink Date: Sun, 17 Sep 2023 14:59:01 +0300 Subject: chore(tvix/store): allow non_snake_case Some of the tonic-generated types create new warnings. Change-Id: Ib538bfd7d90d857d80a129fbbdf3a38c89cc04ab Reviewed-on: https://cl.tvl.fyi/c/depot/+/9349 Reviewed-by: raitobezarius Reviewed-by: Connor Brewster Tested-by: BuildkiteCI --- tvix/store/src/proto/mod.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'tvix/store/src/proto') diff --git a/tvix/store/src/proto/mod.rs b/tvix/store/src/proto/mod.rs index c502befe7db1..9dea99fedf56 100644 --- a/tvix/store/src/proto/mod.rs +++ b/tvix/store/src/proto/mod.rs @@ -1,4 +1,4 @@ -#![allow(clippy::derive_partial_eq_without_eq)] +#![allow(clippy::derive_partial_eq_without_eq, non_snake_case)] // https://github.com/hyperium/tonic/issues/1056 use std::{collections::HashSet, iter::Peekable}; use thiserror::Error; -- cgit 1.4.1