Update blueprint library
This commit is contained in:
@ -1,7 +1,7 @@
|
||||
use crate::error::{Error, ErrorLocation, Errors, InnerError};
|
||||
use crate::error::{Error, ErrorLocation, Errors};
|
||||
use crate::Config;
|
||||
use async_recursion::async_recursion;
|
||||
use blueprint::{parse_file, Env, Value};
|
||||
use blueprint::{parse_template, Env, Value};
|
||||
use futures::future::join_all;
|
||||
use serde::Serialize;
|
||||
use std::ffi::OsStr;
|
||||
@ -105,8 +105,7 @@ async fn file(cfg: &Config, env: &Env, relative: PathBuf) -> Result<(), Error> {
|
||||
.with_location(&template_path)?;
|
||||
|
||||
let mut rendered = Vec::<u8>::new();
|
||||
parse_file(&file_str)
|
||||
.map_err(|_| InnerError::TemplateParseErr)
|
||||
parse_template(&file_str)
|
||||
.with_location(&template_path)?
|
||||
.write(&env, &mut rendered)
|
||||
.with_location(&template_path)?;
|
||||
|
||||
@ -18,7 +18,7 @@ pub enum InnerError {
|
||||
IoErr(#[from] io::Error),
|
||||
|
||||
#[error("Failed to parse template file")]
|
||||
TemplateParseErr,
|
||||
TemplateErr(#[from] blueprint::Error),
|
||||
}
|
||||
|
||||
impl From<Vec<Error>> for Errors {
|
||||
|
||||
Reference in New Issue
Block a user