diff options
author | Florian Klink <flokli@flokli.de> | 2023-09-17T11·59+0300 |
---|---|---|
committer | flokli <flokli@flokli.de> | 2023-09-17T13·14+0000 |
commit | 54bb63dea3a21a2ed40a63a20bacf0220236a7fb (patch) | |
tree | 25ea31cd50e4a3b1605bbaff7018d8681b57f4ed /tvix | |
parent | 3816eaa5e91cf2cffd4f8d04a2faf31c7f646265 (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')
-rw-r--r-- | tvix/store/src/proto/mod.rs | 2 |
1 files changed, 1 insertions, 1 deletions
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; |