mirror of
https://codeberg.org/unspeaker/tek.git
synced 2025-12-06 19:56:42 +01:00
This commit is contained in:
parent
2c3bfe4ebb
commit
ef81b085a0
106 changed files with 6866 additions and 7106 deletions
36
app/tek_deps.rs
Normal file
36
app/tek_deps.rs
Normal file
|
|
@ -0,0 +1,36 @@
|
|||
pub(crate) use ::{
|
||||
tek_device::*,
|
||||
tek_device::tengri::{
|
||||
Usually, Perhaps, Has, MaybeHas, has, maybe_has, impl_debug, from,
|
||||
dsl::*,
|
||||
input::*,
|
||||
output::*,
|
||||
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,
|
||||
cmp::Ord,
|
||||
ffi::OsString,
|
||||
fmt::{Debug, Formatter},
|
||||
fs::File,
|
||||
ops::{Add, Sub, Mul, Div, Rem},
|
||||
thread::JoinHandle
|
||||
},
|
||||
xdg::BaseDirectories,
|
||||
atomic_float::*,
|
||||
tengri::tui::ratatui::{prelude::Rect, widgets::{Widget, canvas::{Canvas, Line}}},
|
||||
};
|
||||
Loading…
Add table
Add a link
Reference in a new issue