refactor: extract dizzle

This commit is contained in:
AAAAAAAAAAAAAAAAAAAAAAAAAAAA 2026-01-17 03:43:27 +02:00
parent b0d2fad17b
commit 1344967f33
34 changed files with 372 additions and 2235 deletions

View file

@ -8,8 +8,7 @@ edition = { workspace = true }
path = "input.rs"
[dependencies]
tengri_core = { path = "../core" }
dizzle = { path = "../../dizzle" }
[dev-dependencies]
tengri_tui = { path = "../tui" }
tengri_dsl = { path = "../dsl" }

View file

@ -1,7 +1,7 @@
#![feature(associated_type_defaults)]
#![feature(if_let_guard)]
pub(crate) use tengri_core::*;
pub(crate) use dizzle::*;
#[cfg(test)] mod input_test;