From 57181752917c67a007c86fdbe133d2c64db7c749 Mon Sep 17 00:00:00 2001 From: Dirkjan Ochtman Date: Thu, 28 Sep 2023 15:20:04 +0200 Subject: Move Level into the crate root --- askama_parser/src/node.rs | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) (limited to 'askama_parser/src/node.rs') diff --git a/askama_parser/src/node.rs b/askama_parser/src/node.rs index a72c2fb..c3a59c6 100644 --- a/askama_parser/src/node.rs +++ b/askama_parser/src/node.rs @@ -13,9 +13,8 @@ use nom::{error_position, IResult}; use super::{ bool_lit, char_lit, identifier, is_ws, keyword, num_lit, path_or_identifier, skip_till, - str_lit, ws, Expr, PathOrIdentifier, State, + str_lit, ws, Expr, Level, PathOrIdentifier, State, }; -use crate::expr::Level; #[derive(Debug, PartialEq)] pub enum Node<'a> { -- cgit