mirror of
https://codeberg.org/unspeaker/tek.git
synced 2025-12-06 11:46:41 +01:00
almost back in commission
This commit is contained in:
parent
fa5f67f010
commit
d5865d941f
7 changed files with 219 additions and 216 deletions
24
crates/app/app_deps.rs
Normal file
24
crates/app/app_deps.rs
Normal file
|
|
@ -0,0 +1,24 @@
|
|||
pub use ::{
|
||||
tek_engine::*,
|
||||
tek_device,
|
||||
tek_device::*,
|
||||
tengri::{
|
||||
Usually, Perhaps, Has, MaybeHas, has, maybe_has,
|
||||
dsl::*, input::*, output::*, tui::*,
|
||||
tui::ratatui,
|
||||
tui::ratatui::prelude::buffer::Cell,
|
||||
tui::ratatui::prelude::Color::{self, *},
|
||||
tui::ratatui::prelude::{Style, Stylize, Buffer, Modifier},
|
||||
tui::crossterm,
|
||||
tui::crossterm::event::{Event, KeyCode::{self, *}},
|
||||
},
|
||||
std::{
|
||||
path::{Path, PathBuf},
|
||||
sync::{Arc, RwLock},
|
||||
sync::atomic::{AtomicBool, AtomicUsize, Ordering::Relaxed},
|
||||
error::Error,
|
||||
collections::BTreeMap,
|
||||
fmt::Write,
|
||||
},
|
||||
xdg::BaseDirectories,
|
||||
};
|
||||
Loading…
Add table
Add a link
Reference in a new issue