aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorJesse Luehrs <doy@tozt.net>2019-10-24 06:30:57 -0400
committerJesse Luehrs <doy@tozt.net>2019-10-24 06:30:57 -0400
commitec954d2ce33de2fc59544cb9824b34c28d72dace (patch)
treee6fee919da7a62c942b197ffef4d38157eed6c13 /src
parentf6d4219c8edb60741d5a5596b097ebb9722d04fc (diff)
downloadcomponent-future-ec954d2ce33de2fc59544cb9824b34c28d72dace.tar.gz
component-future-ec954d2ce33de2fc59544cb9824b34c28d72dace.zip
add various crate metadata0.1.0
Diffstat (limited to 'src')
-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)]