Fix all warnings

This commit is contained in:
Jeff 2024-07-11 17:57:35 -04:00
parent c85958064a
commit 994fa7310b
2 changed files with 2 additions and 5 deletions

View File

@ -1,6 +1,5 @@
use std::{
fmt::{self, Display, Formatter},
fs::read_to_string,
path::Path,
sync::{Arc, RwLock},
};
@ -10,9 +9,7 @@ use serde::{Deserialize, Serialize};
use crate::{
context::Context,
error::{DustError, RuntimeError, ValidationError},
lexer::lex,
parser,
error::{RuntimeError, ValidationError},
standard_library::{std_fs_compiled, std_io_compiled, std_json_compiled, std_thread_compiled},
Type,
};

View File

@ -16,7 +16,7 @@ use serde::{
use crate::{
abstract_tree::{
AbstractNode, Block, BuiltInFunction, Evaluation, SourcePosition, Type, TypeConstructor,
AbstractNode, Block, BuiltInFunction, Evaluation, SourcePosition, Type,
WithPosition,
},
context::Context,