about summary refs log tree commit diff
path: root/tvix/store/src/proto/mod.rs
diff options
context:
space:
mode:
authorFlorian Klink <flokli@flokli.de>2023-09-17T11·59+0300
committerflokli <flokli@flokli.de>2023-09-17T13·14+0000
commit54bb63dea3a21a2ed40a63a20bacf0220236a7fb (patch)
tree25ea31cd50e4a3b1605bbaff7018d8681b57f4ed /tvix/store/src/proto/mod.rs
parent3816eaa5e91cf2cffd4f8d04a2faf31c7f646265 (diff)
chore(tvix/store): allow non_snake_case r/6597
Some of the tonic-generated types create new warnings.

Change-Id: Ib538bfd7d90d857d80a129fbbdf3a38c89cc04ab
Reviewed-on: https://cl.tvl.fyi/c/depot/+/9349
Reviewed-by: raitobezarius <tvl@lahfa.xyz>
Reviewed-by: Connor Brewster <cbrewster@hey.com>
Tested-by: BuildkiteCI
Diffstat (limited to 'tvix/store/src/proto/mod.rs')
-rw-r--r--tvix/store/src/proto/mod.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/tvix/store/src/proto/mod.rs b/tvix/store/src/proto/mod.rs
index c502befe7d..9dea99fedf 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;