caesura 0.29.0

An all-in-one command line tool to transcode FLAC audio files and upload to gazelle based indexers/trackers
Documentation
//! Native torrent creation, reading, and verification.

pub(crate) use create_action::*;
pub(crate) use read_action::*;
pub(crate) use torrent_creator::*;
pub(crate) use torrent_ext::*;
pub(crate) use torrent_reader::*;
pub(crate) use torrent_verifier::*;
pub(crate) use verify_action::*;

mod create_action;
mod read_action;
#[cfg(test)]
mod tests;
mod torrent_creator;
mod torrent_ext;
mod torrent_reader;
mod torrent_verifier;
mod verify_action;