refactor: move project to lib crate

This commit is contained in:
Faynot
2026-05-18 14:38:31 +03:00
parent 762af99f1d
commit 355844980a
3 changed files with 16 additions and 302 deletions

8
src/lib.rs Normal file
View File

@@ -0,0 +1,8 @@
pub mod ast;
pub mod compiler;
pub mod opcodes;
pub mod parser;
pub use ast::{Directive, ModuleSoA, NodeId, Value};
pub use compiler::Compiler;
pub use parser::Parser;