Skip to content

Commit f9cb26d

Browse files
Fix typo and enable clippy warnings
1 parent 40a01f4 commit f9cb26d

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

src/lib.rs

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,11 +4,13 @@
44
//! - `kafka::producer::Producer` - for sending message to Kafka
55
//! - `kafka::consumer::Consumer` - for retrieving/consuming messages from Kafka
66
//! - `kafka::client::KafkaClient` - a lower-level, general purpose client leaving
7-
//! you with more power but also more resposibility
7+
//! you with more power but also more responsibility
88
//!
99
//! See module level documentation corresponding to each client individually.
1010
#![recursion_limit = "128"]
1111
#![cfg_attr(feature = "nightly", feature(test))]
12+
#![deny(clippy::all)]
13+
#![warn(clippy::pedantic)]
1214

1315
#[macro_use]
1416
extern crate tracing;

0 commit comments

Comments
 (0)