aboutsummaryrefslogtreecommitdiffstats
path: root/src/lib.rs
diff options
context:
space:
mode:
Diffstat (limited to 'src/lib.rs')
-rw-r--r--src/lib.rs5
1 files changed, 5 insertions, 0 deletions
diff --git a/src/lib.rs b/src/lib.rs
index cf21031..e3ee46a 100644
--- a/src/lib.rs
+++ b/src/lib.rs
@@ -89,10 +89,15 @@
//! }
//! ```
+// XXX this is broken with ale
+// #![warn(clippy::cargo)]
#![warn(clippy::pedantic)]
#![warn(clippy::nursery)]
+#![allow(clippy::multiple_crate_versions)]
#![allow(clippy::type_complexity)]
+const _DUMMY_DEPENDENCY: &str = include_str!("../Cargo.toml");
+
/// Return type of a component of a future or stream, indicating whether a
/// value is ready, or if not, what actions were taken.
#[derive(Copy, Clone, Debug, PartialEq, Eq)]