From 7f30a657f6530b4422eedb26977ab5b831a48bd8 Mon Sep 17 00:00:00 2001
From: max <gmx.sht@gmail.com>
Date: Mon, 27 Nov 2023 19:30:35 +0200
Subject: Undo an accidental deletion of `#[derive(Debug)]`

Signed-off-by: max <gmx.sht@gmail.com>
---
 askama_parser/src/lib.rs | 1 +
 1 file changed, 1 insertion(+)

(limited to 'askama_parser/src')

diff --git a/askama_parser/src/lib.rs b/askama_parser/src/lib.rs
index 9f49f97..4d27d70 100644
--- a/askama_parser/src/lib.rs
+++ b/askama_parser/src/lib.rs
@@ -135,6 +135,7 @@ pub(crate) type ParseResult<'a, T = &'a str> = Result<(&'a str, T), nom::Err<Err
 ///
 /// It cannot be used to replace `ParseError` because it expects a generic, which would make
 /// `askama`'s users experience less good (since this generic is only needed for `nom`).
+#[derive(Debug)]
 pub(crate) struct ErrorContext<'a> {
     pub(crate) input: &'a str,
     pub(crate) message: Option<Cow<'static, str>>,
-- 
cgit