aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJesse Luehrs <doy@tozt.net>2021-12-15 13:32:16 -0500
committerJesse Luehrs <doy@tozt.net>2021-12-15 13:32:16 -0500
commitc0969173cd9b1e8c9f8744b6a3c7d096474ae4e7 (patch)
treec08a5cb291346756ad2c5624873b085dfc24e8eb
parent6f308e0004ba2e190aa4789bfe6a299ad2a735ce (diff)
downloadttyrec-bin-c0969173cd9b1e8c9f8744b6a3c7d096474ae4e7.tar.gz
ttyrec-bin-c0969173cd9b1e8c9f8744b6a3c7d096474ae4e7.zip
clippy consistency
-rw-r--r--src/bin/ttyplay/main.rs1
-rw-r--r--src/bin/ttyrec/main.rs1
2 files changed, 2 insertions, 0 deletions
diff --git a/src/bin/ttyplay/main.rs b/src/bin/ttyplay/main.rs
index 1383690..499c7b9 100644
--- a/src/bin/ttyplay/main.rs
+++ b/src/bin/ttyplay/main.rs
@@ -9,6 +9,7 @@
#![allow(clippy::struct_excessive_bools)]
#![allow(clippy::too_many_arguments)]
#![allow(clippy::too_many_lines)]
+#![allow(clippy::type_complexity)]
mod display;
mod event;
diff --git a/src/bin/ttyrec/main.rs b/src/bin/ttyrec/main.rs
index 04c5cb6..8278998 100644
--- a/src/bin/ttyrec/main.rs
+++ b/src/bin/ttyrec/main.rs
@@ -9,6 +9,7 @@
#![allow(clippy::struct_excessive_bools)]
#![allow(clippy::too_many_arguments)]
#![allow(clippy::too_many_lines)]
+#![allow(clippy::type_complexity)]
use async_std::io::{ReadExt as _, WriteExt as _};
use async_std::prelude::FutureExt as _;