almost compiles
Some checks failed
/ build (push) Has been cancelled

the long-standing architectural issues
around how the Draw, Layout, and Content
traits from Tengri should, well, actually work -
that has subsided for now. somewhat.

going to amend this commit with fixes to
the remaining import not founds,
and then... what?
This commit is contained in:
🪞👃🪞 2025-09-29 06:50:40 +03:00
parent ef81b085a0
commit e6bf5c1f6e
4 changed files with 79 additions and 60 deletions

View file

@ -1,6 +1,6 @@
pub(crate) use ::{
tek_device::*,
tek_device::tengri::{
tengri::{
Usually, Perhaps, Has, MaybeHas, has, maybe_has, impl_debug, from,
dsl::*,
input::*,
@ -8,7 +8,9 @@ pub(crate) use ::{
tui::{
*,
ratatui::{
self, prelude::{Style, Stylize, Buffer, Modifier, buffer::Cell, Color::{self, *}}
self,
prelude::{Rect, Style, Stylize, Buffer, Modifier, buffer::Cell, Color::{self, *}},
widgets::{Widget, canvas::{Canvas, Line}},
},
crossterm::{
self,
@ -31,6 +33,5 @@ pub(crate) use ::{
thread::JoinHandle
},
xdg::BaseDirectories,
atomic_float::*,
tengri::tui::ratatui::{prelude::Rect, widgets::{Widget, canvas::{Canvas, Line}}},
atomic_float::*
};