mirror of
https://github.com/Serial-ATA/lofty-rs
synced 2024-12-13 14:12:31 +00:00
Downgrade mp4ameta due ot lifetime issues
Signed-off-by: Serial <69764315+Serial-ATA@users.noreply.github.com>
This commit is contained in:
parent
1071a6e2e1
commit
d3c1c5ad1f
2 changed files with 2 additions and 2 deletions
|
@ -22,7 +22,7 @@ mp3-duration = {version = "0.1.10", optional = true} # Duration
|
||||||
# Ogg
|
# Ogg
|
||||||
ogg_pager = { version = "0.1.3", optional = true, git = "https://github.com/Serial-ATA/lofty-rs" }
|
ogg_pager = { version = "0.1.3", optional = true, git = "https://github.com/Serial-ATA/lofty-rs" }
|
||||||
# Mp4
|
# Mp4
|
||||||
mp4ameta = {version = "0.11.0", optional = true}
|
mp4ameta = {version = "0.10.2", optional = true}
|
||||||
# Flac
|
# Flac
|
||||||
metaflac = {version = "0.2.4", optional = true}
|
metaflac = {version = "0.2.4", optional = true}
|
||||||
# Errors
|
# Errors
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
use crate::components::logic::constants::OPUSHEAD;
|
use crate::components::logic::constants::OPUSHEAD;
|
||||||
use crate::components::logic::ogg::{is_metadata, reach_metadata};
|
use crate::components::logic::ogg::{is_metadata, reach_metadata};
|
||||||
use crate::{LoftyError, OggFormat, Result, Picture};
|
use crate::{LoftyError, OggFormat, Picture, Result};
|
||||||
|
|
||||||
use std::collections::HashMap;
|
use std::collections::HashMap;
|
||||||
use std::io::{Read, Seek};
|
use std::io::{Read, Seek};
|
||||||
|
|
Loading…
Reference in a new issue