aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-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 _;