mirror of
https://github.com/Serial-ATA/lofty-rs
synced 2025-03-04 23:07:20 +00:00
lofty_attr: Expose LoftyFile
derive through main crate
This commit is contained in:
parent
263e0611fe
commit
81e52ce347
2 changed files with 4 additions and 1 deletions
|
@ -20,7 +20,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|||
- **OGG**: The reading of OGG files has switched to using packets opposed to pages, making it more
|
||||
spec-compliant and efficient.
|
||||
- **ogg_pager**: Most fields in `Page` have been separated out into the new `PageHeader` struct.
|
||||
- **ogg_pager**: `paginate` now works with a collection of packets
|
||||
- **ogg_pager**: `paginate` now works with a collection of packets.
|
||||
- **lofty_attr**: The `lofty_attr::LoftyFile` derive proc macro is now exported as `lofty::LoftyFile`
|
||||
|
||||
### Removed
|
||||
- **ogg_pager**: Removed `Page::new`, now pages can only be created through `ogg_pager::paginate` or
|
||||
|
|
|
@ -203,6 +203,8 @@ pub use crate::traits::{Accessor, TagExt};
|
|||
#[cfg(feature = "vorbis_comments")]
|
||||
pub use picture::PictureInformation;
|
||||
|
||||
pub use lofty_attr::LoftyFile;
|
||||
|
||||
// TODO: https://github.com/rust-lang/rust/issues/88581
|
||||
#[inline]
|
||||
pub(crate) const fn div_ceil(dividend: u64, divisor: u64) -> u64 {
|
||||
|
|
Loading…
Add table
Reference in a new issue