diff options
-rw-r--r-- | askama_derive/src/config.rs | 6 | ||||
-rw-r--r-- | askama_derive/src/lib.rs | 2 |
2 files changed, 4 insertions, 4 deletions
diff --git a/askama_derive/src/config.rs b/askama_derive/src/config.rs index 2347f6c..b7959b1 100644 --- a/askama_derive/src/config.rs +++ b/askama_derive/src/config.rs @@ -21,7 +21,7 @@ pub(crate) struct Config<'a> { impl<'a> Config<'a> { pub(crate) fn new( s: &'a str, - template_whitespace: Option<&String>, + template_whitespace: Option<&str>, ) -> std::result::Result<Config<'a>, CompileError> { let root = PathBuf::from(env::var("CARGO_MANIFEST_DIR").unwrap()); let default_dirs = vec![root.join("templates")]; @@ -54,7 +54,7 @@ impl<'a> Config<'a> { ), }; if let Some(template_whitespace) = template_whitespace { - whitespace = match template_whitespace.as_str() { + whitespace = match template_whitespace { "suppress" => WhitespaceHandling::Suppress, "minimize" => WhitespaceHandling::Minimize, "preserve" => WhitespaceHandling::Preserve, @@ -636,7 +636,7 @@ mod tests { #[test] fn test_config_whitespace_error() { - let config = Config::new(r#""#, Some(&"trim".to_owned())); + let config = Config::new(r#""#, Some("trim")); if let Err(err) = config { assert_eq!(err.msg, "invalid value for `whitespace`: \"trim\""); } else { diff --git a/askama_derive/src/lib.rs b/askama_derive/src/lib.rs index f9f3d41..65160c5 100644 --- a/askama_derive/src/lib.rs +++ b/askama_derive/src/lib.rs @@ -37,7 +37,7 @@ pub fn derive_template(input: TokenStream) -> TokenStream { pub(crate) fn build_template(ast: &syn::DeriveInput) -> Result<String, CompileError> { let template_args = TemplateArgs::new(ast)?; let toml = template_args.config()?; - let config = Config::new(&toml, template_args.whitespace.as_ref())?; + let config = Config::new(&toml, template_args.whitespace.as_deref())?; let input = TemplateInput::new(ast, &config, &template_args)?; let mut templates = HashMap::new(); |