We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 28ac4a4 commit 6ad30d1Copy full SHA for 6ad30d1
examples/async_helpers/mod.rs
@@ -2,11 +2,13 @@
2
3
#[cfg(feature = "tokio-runtime")]
4
extern crate tokio;
5
+#[allow(unused_imports)]
6
7
pub use tokio::{main, test};
8
9
#[cfg(feature = "async-std-runtime")]
10
extern crate async_std;
11
12
13
pub use async_std::{main, test};
14
src/codec/mod.rs
@@ -23,6 +23,7 @@ use futures_util::Sink;
23
use std::pin::Pin;
24
use std::task::{Context, Poll};
25
26
+#[allow(clippy::enum_variant_names)]
27
#[derive(Debug, Clone)]
28
pub enum Message {
29
Greeting(ZmqGreeting),
0 commit comments