mirror of
https://codeberg.org/unspeaker/tek.git
synced 2025-12-08 20:56:43 +01:00
flatten workspace into 1 crate
This commit is contained in:
parent
7c4e1e2166
commit
d926422c67
147 changed files with 66 additions and 126 deletions
16
src/time.rs
Normal file
16
src/time.rs
Normal file
|
|
@ -0,0 +1,16 @@
|
|||
pub(crate) mod clock; pub(crate) use clock::*;
|
||||
pub(crate) mod moment; pub(crate) use moment::*;
|
||||
pub(crate) mod perf; pub(crate) use perf::*;
|
||||
pub(crate) mod pulse; pub(crate) use pulse::*;
|
||||
pub(crate) mod sr; pub(crate) use sr::*;
|
||||
pub(crate) mod unit; pub(crate) use unit::*;
|
||||
|
||||
//#[cfg(test)]
|
||||
//mod test {
|
||||
//use super::*;
|
||||
//#[test]
|
||||
//fn test_samples_to_ticks () {
|
||||
//let ticks = Ticks(12.3).between_samples(0, 100).collect::<Vec<_>>();
|
||||
//println!("{ticks:?}");
|
||||
//}
|
||||
//}
|
||||
Loading…
Add table
Add a link
Reference in a new issue