ci: add missing lints to service_grpc_schema

This crate was missing some of the common lints we use everywhere else.
pull/24376/head
Dom Dwyer 2023-05-22 15:01:00 +02:00
parent 9696b75476
commit 983a3b44b8
No known key found for this signature in database
GPG Key ID: E4C40DBD9157879A
1 changed files with 12 additions and 0 deletions

View File

@ -1,5 +1,17 @@
//! Implementation of the schema gRPC service
#![deny(rustdoc::broken_intra_doc_links, rust_2018_idioms)]
#![warn(
clippy::clone_on_ref_ptr,
clippy::dbg_macro,
clippy::explicit_iter_loop,
// See https://github.com/influxdata/influxdb_iox/pull/1671
clippy::future_not_send,
clippy::todo,
clippy::use_self,
missing_debug_implementations,
)]
use std::{ops::DerefMut, sync::Arc};
use generated_types::influxdata::iox::schema::v1::*;