From 86b1222005603330cb6f18f2b57dae6780a3c246 Mon Sep 17 00:00:00 2001 From: KitsuneCafe <10284516+kitsunecafe@users.noreply.github.com> Date: Thu, 1 Feb 2024 05:38:46 -0500 Subject: [PATCH] remove prints --- src/main.rs | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/src/main.rs b/src/main.rs index 075796f..345e4c1 100644 --- a/src/main.rs +++ b/src/main.rs @@ -5,12 +5,12 @@ use roxy_tera_parser::TeraParser; use std::{ fs::File, io::{BufReader, Error, ErrorKind, Read}, - path::{self, Path, PathBuf, StripPrefixError}, ops::Deref, + path::{self, Path, PathBuf, StripPrefixError}, }; use toml::Table; use glob::{glob, PatternError}; -use roxy_core::roxy::{Parse, Parser, Roxy}; +use roxy_core::roxy::{Parser, Roxy}; #[derive(Clap)] #[command(name = "Roxy")] @@ -160,7 +160,6 @@ fn main() -> Result<(), RoxyError> { context.insert(&path.strip_prefix(&file_path.root_dir).unwrap(), toml); } - println!("{context:?}"); let mut parser = Parser::new(); parser.push(MarkdownParser::new());