diff --git a/rust/ares/src/flog.rs b/rust/ares/src/flog.rs index 11d2343..dcc9388 100644 --- a/rust/ares/src/flog.rs +++ b/rust/ares/src/flog.rs @@ -1,8 +1,8 @@ +use crate::interpreter::Context; use crate::mem::NockStack; use crate::noun::{Atom, IndirectAtom}; -use crate::interpreter::Context; -use std::io::{Write, Result}; use std::fmt::Arguments; +use std::io::{Result, Write}; struct NockWriter<'s, 'b> { stack: &'s mut NockStack, diff --git a/rust/ares/src/lib.rs b/rust/ares/src/lib.rs index f34d51a..e7c37ec 100644 --- a/rust/ares/src/lib.rs +++ b/rust/ares/src/lib.rs @@ -3,8 +3,8 @@ extern crate num_derive; extern crate lazy_static; #[macro_use] extern crate static_assertions; -pub mod guard; pub mod flog; +pub mod guard; pub mod hamt; pub mod interpreter; pub mod jets;