From 6b3a132451b7693660ab9b5223ae17f9920f3dc9 Mon Sep 17 00:00:00 2001 From: Erin Date: Fri, 3 Nov 2023 09:01:26 +0100 Subject: [PATCH] fmt --- hbvm/src/lib.rs | 11 +++++------ 1 file changed, 5 insertions(+), 6 deletions(-) diff --git a/hbvm/src/lib.rs b/hbvm/src/lib.rs index c520aeaf..9a6c0343 100644 --- a/hbvm/src/lib.rs +++ b/hbvm/src/lib.rs @@ -13,11 +13,6 @@ #![no_std] #![cfg_attr(feature = "nightly", feature(fn_align))] -use { - mem::{Address, Memory}, - value::ValueVariant, -}; - #[cfg(feature = "alloc")] extern crate alloc; @@ -29,7 +24,11 @@ mod float; mod utils; mod vmrun; -use {bmc::BlockCopier, value::Value}; +use { + bmc::BlockCopier, + mem::{Address, Memory}, + value::{Value, ValueVariant}, +}; /// HoleyBytes Virtual Machine pub struct Vm {