mirror of
https://codeberg.org/unspeaker/tek.git
synced 2025-12-06 11:46:41 +01:00
This commit is contained in:
parent
7f03116cb3
commit
e987aa697d
16 changed files with 107 additions and 135 deletions
27
crates/app/tek_deps.rs
Normal file
27
crates/app/tek_deps.rs
Normal file
|
|
@ -0,0 +1,27 @@
|
|||
pub use ::{
|
||||
tek_engine::*,
|
||||
tek_config::*,
|
||||
tek_device::{self, *},
|
||||
tengri::{
|
||||
Usually, Perhaps, Has, MaybeHas, has, maybe_has, impl_debug,
|
||||
dsl::*, input::*, output::*, tui::*,
|
||||
tui::{
|
||||
ratatui::{
|
||||
self, prelude::{Style, Stylize, Buffer, Modifier, buffer::Cell, Color::{self, *}}
|
||||
},
|
||||
crossterm::{
|
||||
self,
|
||||
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