Skip to content

Commit 6ea86a2

Browse files
authoredFeb 21, 2024··
fix(redundant-import): fix a warning and CI failure in nightly (#348)
1 parent 7d9dfc6 commit 6ea86a2

File tree

2 files changed

+1
-7
lines changed

2 files changed

+1
-7
lines changed
 

‎src/source_impls.rs

+1-6
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,7 @@
11
/*!
22
Default trait implementations for [`SourceCode`].
33
*/
4-
use std::{
5-
borrow::{Cow, ToOwned},
6-
collections::VecDeque,
7-
fmt::Debug,
8-
sync::Arc,
9-
};
4+
use std::{borrow::Cow, collections::VecDeque, fmt::Debug, sync::Arc};
105

116
use crate::{MietteError, MietteSpanContents, SourceCode, SourceSpan, SpanContents};
127

‎tests/test_repr.rs

-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,6 @@ mod drop;
22

33
use self::drop::{DetectDrop, Flag};
44
use miette::Report;
5-
use std::marker::Unpin;
65
use std::mem;
76

87
#[test]

0 commit comments

Comments
 (0)
Please sign in to comment.