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 8b7cfa8 commit 97ebd9aCopy full SHA for 97ebd9a
rsocket/src/lib.rs
@@ -2,6 +2,10 @@
2
#![allow(unused_imports)]
3
#![allow(unused_variables)]
4
#![allow(clippy::type_complexity)]
5
+#![doc(test(
6
+ no_crate_inject,
7
+ attr(deny(warnings, rust_2018_idioms), allow(dead_code, unused_variables))
8
+))]
9
10
//! Official RSocket Rust implementation using Tokio.
11
//!
@@ -31,7 +35,7 @@
31
35
32
36
//! A simple TCP echo server:
33
37
34
-//! ```no_run
38
+//! ```no_run,ignore
39
//! use rsocket_rust::prelude::*;
40
//! use rsocket_rust_transport_tcp::TcpServerTransport;
41
//! use std::error::Error;
@@ -59,7 +63,7 @@
59
63
60
64
//! Connect to echo server above:
61
65
62
66
67
68
//! use rsocket_rust_transport_tcp::TcpClientTransport;
69
0 commit comments