Skip to content

Commit 7279746

Browse files
add ast to main crate
1 parent 2f9fdd6 commit 7279746

File tree

2 files changed

+4
-0
lines changed

2 files changed

+4
-0
lines changed

crates/djls-ast/src/lib.rs

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,3 +2,6 @@ mod ast;
22
mod lexer;
33
mod parser;
44
mod tokens;
5+
6+
pub use ast::Ast;
7+
pub use parser::Parser;

crates/djls/Cargo.toml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@ version = "0.1.0"
44
edition = "2021"
55

66
[dependencies]
7+
djls-ast = { workspace = true }
78
djls-django = { workspace = true }
89
djls-python = { workspace = true }
910
djls-worker = { workspace = true }

0 commit comments

Comments
 (0)