pile-audio refactor
Some checks are pending
CI / Clippy (push) Waiting to run
CI / Typos (push) Successful in 38s
CI / Build and test (push) Successful in 1m13s

This commit is contained in:
2026-02-21 19:15:22 -08:00
parent 5aab61bd1b
commit 5b520b819e
35 changed files with 1966 additions and 3366 deletions

View File

@@ -1,3 +1,19 @@
//! Read and write audio file metadata.
pub mod common;
pub mod flac;
pub mod blocks;
mod tagtype;
pub use tagtype::*;
mod picturetype;
pub use picturetype::*;
mod errors;
pub use errors::*;
mod reader;
pub use reader::*;
mod vorbiscomment;
pub use vorbiscomment::*;
#[cfg(test)]
mod tests;