flog: cargo fmt

This commit is contained in:
Edward Amsden 2024-03-12 21:04:57 -05:00
parent 6edd8b15dc
commit 3ef1f7c082
2 changed files with 3 additions and 3 deletions

View File

@ -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,

View File

@ -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;