refactor: split project into multiple crates

This commit is contained in:
Romain Paquet 2025-11-05 20:23:17 +01:00
parent 486af67fc2
commit 857f747524
27 changed files with 308 additions and 222 deletions

10
lila-ast/Cargo.toml Normal file
View file

@ -0,0 +1,10 @@
[package]
name = "lila-ast"
version = "0.0.1"
edition = "2021"
[features]
ariadne = [ "dep:ariadne" ]
[dependencies]
ariadne = { version = "0.4.1", optional = true }