diff options
author | Dirkjan Ochtman <dirkjan@ochtman.nl> | 2023-09-28 15:20:04 +0200 |
---|---|---|
committer | Dirkjan Ochtman <dirkjan@ochtman.nl> | 2023-09-28 17:28:26 +0200 |
commit | 57181752917c67a007c86fdbe133d2c64db7c749 (patch) | |
tree | 5a05699619b35c6a580d1cbd7abf7fdcc8367851 /askama_parser/src/node.rs | |
parent | 5ab8813fe29cfbc034b6f99fc36064dcd1a5bd3e (diff) | |
download | askama-57181752917c67a007c86fdbe133d2c64db7c749.tar.gz askama-57181752917c67a007c86fdbe133d2c64db7c749.tar.bz2 askama-57181752917c67a007c86fdbe133d2c64db7c749.zip |
Move Level into the crate root
Diffstat (limited to 'askama_parser/src/node.rs')
-rw-r--r-- | askama_parser/src/node.rs | 3 |
1 files changed, 1 insertions, 2 deletions
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> { |