mirror of https://github.com/zkat/miette.git
fix(redundant-import): fix a warning and CI failure in nightly
This commit is contained in:
parent
75fea0935e
commit
54d895e10f
|
|
@ -1,12 +1,7 @@
|
||||||
/*!
|
/*!
|
||||||
Default trait implementations for [`SourceCode`].
|
Default trait implementations for [`SourceCode`].
|
||||||
*/
|
*/
|
||||||
use std::{
|
use std::{borrow::Cow, collections::VecDeque, fmt::Debug, sync::Arc};
|
||||||
borrow::{Cow, ToOwned},
|
|
||||||
collections::VecDeque,
|
|
||||||
fmt::Debug,
|
|
||||||
sync::Arc,
|
|
||||||
};
|
|
||||||
|
|
||||||
use crate::{MietteError, MietteSpanContents, SourceCode, SourceSpan, SpanContents};
|
use crate::{MietteError, MietteSpanContents, SourceCode, SourceSpan, SpanContents};
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -2,7 +2,6 @@ mod drop;
|
||||||
|
|
||||||
use self::drop::{DetectDrop, Flag};
|
use self::drop::{DetectDrop, Flag};
|
||||||
use miette::Report;
|
use miette::Report;
|
||||||
use std::marker::Unpin;
|
|
||||||
use std::mem;
|
use std::mem;
|
||||||
|
|
||||||
#[test]
|
#[test]
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue