Skip to content

Commit

Permalink
Removes redundant imports (#193)
Browse files Browse the repository at this point in the history
  • Loading branch information
brooksprumo authored and willhickey committed Mar 16, 2024
1 parent 814181b commit 87a5893
Show file tree
Hide file tree
Showing 3 changed files with 2 additions and 6 deletions.
5 changes: 1 addition & 4 deletions frozen-abi/src/abi_digester.rs
Original file line number Diff line number Diff line change
Expand Up @@ -4,10 +4,7 @@ use {
hash::{Hash, Hasher},
},
log::*,
serde::{
ser::{Error as SerdeError, *},
Serialize, Serializer,
},
serde::ser::{Error as SerdeError, *},
std::{any::type_name, io::Write},
thiserror::Error,
};
Expand Down
2 changes: 1 addition & 1 deletion programs/bpf_loader/gen-syscall-list/build.rs
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ use {
regex::Regex,
std::{
fs::File,
io::{prelude::*, BufWriter, Read},
io::{prelude::*, BufWriter},
path::PathBuf,
str,
},
Expand Down
1 change: 0 additions & 1 deletion sdk/macro/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,6 @@ use {
proc_macro::TokenStream,
proc_macro2::{Delimiter, Span, TokenTree},
quote::{quote, ToTokens},
std::convert::TryFrom,
syn::{
bracketed,
parse::{Parse, ParseStream, Result},
Expand Down

0 comments on commit 87a5893

Please sign in to comment.