Skip to content

Commit

Permalink
Resolve redundant import warning
Browse files Browse the repository at this point in the history
    warning: the item `Vec` is imported redundantly
       --> src/lib.rs:103:5
        |
    103 | use crate::alloc::vec::Vec;
        |     ^^^^^^^^^^^^^^^^^^^^^^
    ...
    109 | use crate::backport::*;
        |     ------------------ the item `Vec` is already imported here
        |
        = note: `#[warn(unused_imports)]` on by default
  • Loading branch information
dtolnay committed Feb 19, 2024
1 parent f32b420 commit f76db8d
Showing 1 changed file with 0 additions and 1 deletion.
1 change: 0 additions & 1 deletion src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -100,7 +100,6 @@ mod parse;
#[cfg(feature = "serde")]
mod serde;

use crate::alloc::vec::Vec;
use crate::identifier::Identifier;
use core::cmp::Ordering;
use core::str::FromStr;
Expand Down

0 comments on commit f76db8d

Please sign in to comment.