chore: dependencies

This commit is contained in:
Elijah McMorris 2025-08-05 02:22:11 -07:00
parent dd64959604
commit a38e8ce9be
Signed by: NexVeridian
SSH key fingerprint: SHA256:bsA1SKZxuEcEVHAy3gY1HUeM5ykRJl0U0kQHQn0hMg8
7 changed files with 891 additions and 713 deletions

View file

@ -17,7 +17,7 @@ async fn inti_db() -> Result<Surreal<Db>, Error> {
async fn init_reader(file_format: &str, file_name: &str) -> Box<dyn BufRead> {
File_Format::new(file_format)
.await
.reader(&format!("./tests/data/{}.{}", file_name, file_format))
.reader(&format!("./tests/data/{file_name}.{file_format}"))
.await
.unwrap()
}