We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 40a01f4 commit f9cb26dCopy full SHA for f9cb26d
src/lib.rs
@@ -4,11 +4,13 @@
4
//! - `kafka::producer::Producer` - for sending message to Kafka
5
//! - `kafka::consumer::Consumer` - for retrieving/consuming messages from Kafka
6
//! - `kafka::client::KafkaClient` - a lower-level, general purpose client leaving
7
-//! you with more power but also more resposibility
+//! you with more power but also more responsibility
8
//!
9
//! See module level documentation corresponding to each client individually.
10
#![recursion_limit = "128"]
11
#![cfg_attr(feature = "nightly", feature(test))]
12
+#![deny(clippy::all)]
13
+#![warn(clippy::pedantic)]
14
15
#[macro_use]
16
extern crate tracing;
0 commit comments