This repository has no description
0

Configure Feed

Select the types of activity you want to include in your feed.

🎨 Format code

+3 -3
+1 -1
src/synchronization/mod.rs
··· 1 1 pub mod audio; 2 + pub mod cue_markers; 2 3 pub mod midi; 3 4 pub mod sync; 4 - pub mod cue_markers;
+1 -1
src/ui.rs
··· 1 + use crate::video::engine::EngineProgression; 1 2 use console::Style; 2 3 use indicatif::{ProgressBar, ProgressStyle}; 3 4 use std::borrow::Cow; 4 5 use std::sync::{Arc, Mutex}; 5 6 use std::thread::{self, JoinHandle}; 6 7 use std::time; 7 - use crate::video::engine::EngineProgression; 8 8 9 9 pub const PROGRESS_BARS_STYLE: &str = 10 10 "{prefix:>12.bold.cyan} {percent:03}% [{bar:25}] {msg} ({elapsed} ago)";
+1 -1
src/video/mod.rs
··· 12 12 pub mod server; 13 13 14 14 pub use animation::Animation; 15 - pub use video::Video; 16 15 pub use hooks::AttachHooks; 17 16 pub use scene::Scene; 17 + pub use video::Video;