Remove unused imports
This commit is contained in:
parent
4ee63abea4
commit
636213fdfd
|
@ -16,7 +16,7 @@ use crate::{
|
||||||
tracker::Tracker,
|
tracker::Tracker,
|
||||||
},
|
},
|
||||||
array_ref_mut,
|
array_ref_mut,
|
||||||
obj::{ObjInfo, ObjReloc, ObjRelocKind, ObjSection, ObjSymbol, ObjSymbolKind},
|
obj::{ObjInfo, ObjReloc, ObjRelocKind, ObjSection, ObjSymbol},
|
||||||
util::{
|
util::{
|
||||||
dol::process_dol,
|
dol::process_dol,
|
||||||
elf::write_elf,
|
elf::write_elf,
|
||||||
|
|
|
@ -10,7 +10,7 @@ use ppc750cl::{disasm_iter, Argument, Ins, Opcode};
|
||||||
use crate::{
|
use crate::{
|
||||||
obj::{
|
obj::{
|
||||||
ObjDataKind, ObjInfo, ObjReloc, ObjRelocKind, ObjSection, ObjSectionKind, ObjSymbol,
|
ObjDataKind, ObjInfo, ObjReloc, ObjRelocKind, ObjSection, ObjSectionKind, ObjSymbol,
|
||||||
ObjSymbolFlags, ObjSymbolKind,
|
ObjSymbolKind,
|
||||||
},
|
},
|
||||||
util::nested::NestedVec,
|
util::nested::NestedVec,
|
||||||
};
|
};
|
||||||
|
|
|
@ -7,7 +7,7 @@ use anyhow::{bail, Context, Result};
|
||||||
use byteorder::{BigEndian, ReadBytesExt, WriteBytesExt};
|
use byteorder::{BigEndian, ReadBytesExt, WriteBytesExt};
|
||||||
use num_enum::{IntoPrimitive, TryFromPrimitive};
|
use num_enum::{IntoPrimitive, TryFromPrimitive};
|
||||||
|
|
||||||
use crate::obj::{ObjSymbol, ObjSymbolFlags, ObjSymbolKind};
|
use crate::obj::{ObjSymbol, ObjSymbolKind};
|
||||||
|
|
||||||
#[derive(Debug, Copy, Clone, IntoPrimitive, TryFromPrimitive)]
|
#[derive(Debug, Copy, Clone, IntoPrimitive, TryFromPrimitive)]
|
||||||
#[repr(u8)]
|
#[repr(u8)]
|
||||||
|
|
Loading…
Reference in New Issue