diff --git a/src/buffer_proxy_iterator.rs b/src/buffer_proxy_iterator.rs index 756dbf6..33029f5 100644 --- a/src/buffer_proxy_iterator.rs +++ b/src/buffer_proxy_iterator.rs @@ -1,5 +1,4 @@ use std::collections::VecDeque; -use std::iter::Iterator; use std::ops::RangeInclusive; /// This iterator buffers characters until they can be determined to be clean of profanity. diff --git a/src/trie.rs b/src/trie.rs index a6ace1b..99d807d 100644 --- a/src/trie.rs +++ b/src/trie.rs @@ -2,7 +2,6 @@ use crate::feature_cell::FeatureCell; use crate::Map; use crate::Type; use lazy_static::lazy_static; -use std::iter::FromIterator; use std::ops::Deref; lazy_static! {