mirror of
https://github.com/joshuadavidthomas/django-language-server.git
synced 2025-08-04 01:58:18 +00:00
add ast to main crate
This commit is contained in:
parent
2f9fdd6ceb
commit
7279746f18
2 changed files with 4 additions and 0 deletions
|
@ -2,3 +2,6 @@ mod ast;
|
|||
mod lexer;
|
||||
mod parser;
|
||||
mod tokens;
|
||||
|
||||
pub use ast::Ast;
|
||||
pub use parser::Parser;
|
||||
|
|
|
@ -4,6 +4,7 @@ version = "0.1.0"
|
|||
edition = "2021"
|
||||
|
||||
[dependencies]
|
||||
djls-ast = { workspace = true }
|
||||
djls-django = { workspace = true }
|
||||
djls-python = { workspace = true }
|
||||
djls-worker = { workspace = true }
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue