Jarian Cottingham 68eb4d9f43 feat: Add Rust UI and backend implementation with project infrastructure
Adds the new Rust-based UI (iced), backend service, shared Swift models,
CI/CD workflows, build scripts, and project documentation.
2026-08-19 21:22:08 -05:00

7 lines
179 B
Rust

pub mod format;
pub mod path;
pub mod ffmpeg;
pub use format::{format_duration, format_file_size, format_quality};
pub use path::display_path;
pub use ffmpeg::get_video_metadata;