caesura 0.30.2

An all-in-one command line tool to transcode FLAC audio files and upload to gazelle based indexers/trackers
Documentation
//! File system operations, FLAC file handling, and path management.

pub(crate) use additional_file::*;
pub(crate) use collector::*;
pub(crate) use copy_dir::*;
pub(crate) use directory_reader::*;
pub(crate) use expand_tilde::*;
pub(crate) use flac_file::*;
pub(crate) use fs_action::*;
pub(crate) use path_manager::*;
pub(crate) use tags::*;
pub(crate) use tags_action::*;

mod additional_file;
mod collector;
mod copy_dir;
mod directory_reader;
mod expand_tilde;
mod flac_file;
mod fs_action;
mod path_manager;
mod tags;
mod tags_action;
#[cfg(test)]
mod tests;