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());