summaryrefslogtreecommitdiff
path: root/rust/src/debuginfo.rs
diff options
context:
space:
mode:
authorKyleMiles <krm504@nyu.edu>2022-10-04 16:59:27 -0400
committerKyleMiles <krm504@nyu.edu>2022-10-04 16:59:27 -0400
commit1268fa1d1d36d24d088982e61856d093a59611bd (patch)
treedb6cbb1861f6900b7319209ff9701df87051e66b /rust/src/debuginfo.rs
parente8ed4b8e75fc6d8dd050a5a6804e9691706317c8 (diff)
Fix cargo warnings about unused imports; cargo fmt
Diffstat (limited to 'rust/src/debuginfo.rs')
-rw-r--r--rust/src/debuginfo.rs3
1 files changed, 0 insertions, 3 deletions
diff --git a/rust/src/debuginfo.rs b/rust/src/debuginfo.rs
index 1f0089fe..d4c8b357 100644
--- a/rust/src/debuginfo.rs
+++ b/rust/src/debuginfo.rs
@@ -67,16 +67,13 @@
use binaryninjacore_sys::*;
use crate::{
- architecture::{Architecture, CoreArchitecture},
binaryview::BinaryView,
- callingconvention::CallingConvention,
platform::Platform,
rc::*,
string::{raw_to_string, BnStrCompatible, BnString},
types::{DataVariableAndName, NameAndType, Type},
};
-use std::mem::transmute;
use std::{hash::Hash, mem, os::raw::c_void, ptr, slice};
struct ProgressContext(Option<Box<dyn Fn(usize, usize) -> Result<(), ()>>>);