aboutsummaryrefslogtreecommitdiff
path: root/src/stub/builder.rs
diff options
context:
space:
mode:
Diffstat (limited to 'src/stub/builder.rs')
-rw-r--r--src/stub/builder.rs14
1 files changed, 6 insertions, 8 deletions
diff --git a/src/stub/builder.rs b/src/stub/builder.rs
index bb1ceba..fa9e5a2 100644
--- a/src/stub/builder.rs
+++ b/src/stub/builder.rs
@@ -1,13 +1,11 @@
-use core::fmt::{self, Display};
-use core::marker::PhantomData;
-
-use managed::ManagedSlice;
-
-use crate::conn::Connection;
-use crate::target::Target;
-
use super::core_impl::GdbStubImpl;
use super::GdbStub;
+use crate::conn::Connection;
+use crate::target::Target;
+use core::fmt::Display;
+use core::fmt::{self};
+use core::marker::PhantomData;
+use managed::ManagedSlice;
/// An error which may occur when building a [`GdbStub`].
#[derive(Debug)]