tek_tui -> tengri

This commit is contained in:
🪞👃🪞 2025-03-15 17:43:49 +02:00
parent 36f7c8bd48
commit 3d290a9beb
11 changed files with 150 additions and 41 deletions

View file

@ -5,5 +5,5 @@ version = "0.2.0"
[dependencies]
tengri = { workspace = true }
tek_jack = { workspace = true }
atomic_float = { workspace = true }

View file

@ -12,9 +12,8 @@ mod unit; pub use self::unit::*;
pub(crate) use ::tek_jack::{*, jack::{*, contrib::*}};
pub(crate) use std::sync::{Arc, RwLock, atomic::{AtomicBool, AtomicUsize, Ordering::*}};
pub(crate) use std::ops::{Add, Sub, Mul, Div, Rem};
pub(crate) use ::tengri::{input::*, dsl::*};
pub use ::atomic_float; pub(crate) use atomic_float::*;
pub(crate) use ::tek_edn::*;
pub(crate) use ::tek_input::*;
/// Standard result type.
pub(crate) type Usually<T> = Result<T, Box<dyn std::error::Error>>;

View file

@ -1,5 +1,5 @@
use crate::*;
use tek_tui::PerfModel;
use tengri::tui::PerfModel;
pub trait JackPerfModel {
fn update_from_jack_scope (&self, t0: Option<u64>, scope: &ProcessScope);