Downgrade mp4ameta due to lifetime issues

Signed-off-by: Serial <69764315+Serial-ATA@users.noreply.github.com>
This commit is contained in:
Serial 2021-06-27 14:14:00 -04:00
parent 1071a6e2e1
commit bd183a821b
2 changed files with 2 additions and 2 deletions

View file

@ -22,7 +22,7 @@ mp3-duration = {version = "0.1.10", optional = true} # Duration
# Ogg
ogg_pager = { version = "0.1.3", optional = true, git = "https://github.com/Serial-ATA/lofty-rs" }
# Mp4
mp4ameta = {version = "0.11.0", optional = true}
mp4ameta = {version = "0.10.2", optional = true}
# Flac
metaflac = {version = "0.2.4", optional = true}
# Errors

View file

@ -1,6 +1,6 @@
use crate::components::logic::constants::OPUSHEAD;
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::io::{Read, Seek};