diff --git a/config/src/lib.rs b/config/src/lib.rs index 9befbdd4b..accff715c 100644 --- a/config/src/lib.rs +++ b/config/src/lib.rs @@ -9,7 +9,6 @@ use portable_pty::{CommandBuilder, PtySize}; use serde::{Deserialize, Deserializer, Serialize}; use smol::channel::{Receiver, Sender}; use smol::prelude::*; -use std; use std::cell::RefCell; use std::collections::HashMap; use std::ffi::{OsStr, OsString}; diff --git a/vtparse/src/lib.rs b/vtparse/src/lib.rs index 217848f0a..9c62c0922 100644 --- a/vtparse/src/lib.rs +++ b/vtparse/src/lib.rs @@ -10,6 +10,7 @@ //! You may wish to use `termwiz::escape::parser::Parser` in the //! [termwiz](https://docs.rs/termwiz/) crate if you don't want to have to research //! all those possible escape sequences for yourself. +#![allow(clippy::upper_case_acronyms)] use utf8parse::Parser as Utf8Parser; mod enums; use crate::enums::*;