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

@ -9,11 +9,9 @@ lto = false
resolver = "2"
members = [
"./tengri",
"./core",
"./input",
"./output",
"./tui",
"./dsl",
"./proc",
]
@ -22,23 +20,20 @@ version = "0.14.0"
edition = "2024"
[workspace.dependencies]
dizzle = { path = "../dizzle" }
tengri = { path = "./tengri" }
tengri_core = { path = "./core" }
tengri_input = { path = "./input" }
tengri_output = { path = "./output" }
tengri_tui = { path = "./tui" }
tengri_dsl = { path = "./dsl" }
tengri_proc = { path = "./proc" }
anyhow = { version = "1.0" }
atomic_float = { version = "1" }
better-panic = { version = "0.3.0" }
bumpalo = { version = "3.19.0" }
const_panic = { version = "0.2.12", features = [ "derive" ] }
crossterm = { version = "0.29.0" }
heck = { version = "0.5" }
itertools = { version = "0.14.0" }
konst = { version = "0.3.16", features = [ "rust_1_83" ] }
palette = { version = "0.7.6", features = [ "random" ] }
proc-macro2 = { version = "1", features = ["span-locations"] }
proptest = { version = "^1" }
@ -48,5 +43,4 @@ quote = { version = "1" }
rand = { version = "0.8.5" }
ratatui = { version = "0.29.0", features = [ "unstable-widget-ref", "underline-color" ] }
syn = { version = "2", features = ["full", "extra-traits"] }
thiserror = { version = "2.0" }
unicode-width = { version = "0.2" }