aboutsummaryrefslogtreecommitdiffstats
path: root/src/lib.rs
diff options
context:
space:
mode:
authorJesse Luehrs <doy@tozt.net>2019-10-27 08:13:12 -0400
committerJesse Luehrs <doy@tozt.net>2019-10-27 08:13:12 -0400
commit7f2186ef75947e456cba122f511f2f5725e3eef6 (patch)
treeda8892e096d48f683914aec9212752e30563d799 /src/lib.rs
parent17fc6b3eda370f99fee48420532ada8b497ecd8c (diff)
downloadttyrec-7f2186ef75947e456cba122f511f2f5725e3eef6.tar.gz
ttyrec-7f2186ef75947e456cba122f511f2f5725e3eef6.zip
clippy
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 1de8daa..3f8e745 100644
--- a/src/lib.rs
+++ b/src/lib.rs
@@ -4,6 +4,11 @@
//! `Parser` and `Creator` can be used to read and write files manually, and
//! `Reader` and `Writer` are helpers to provide a nicer API for asynchronous
//! applications using `tokio`.
+
+#![warn(clippy::pedantic)]
+#![warn(clippy::nursery)]
+#![allow(clippy::missing_const_for_fn)]
+
mod creator;
pub use creator::Creator;
mod error;