From d3c1c5ad1f021ac29bd6bed5b760ebe660a30f9d Mon Sep 17 00:00:00 2001 From: Serial <69764315+Serial-ATA@users.noreply.github.com> Date: Sun, 27 Jun 2021 14:14:00 -0400 Subject: [PATCH] Downgrade mp4ameta due ot lifetime issues Signed-off-by: Serial <69764315+Serial-ATA@users.noreply.github.com> --- Cargo.toml | 2 +- src/components/logic/ogg/read.rs | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index 1de87b77..e8165bc4 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -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 diff --git a/src/components/logic/ogg/read.rs b/src/components/logic/ogg/read.rs index 026fdbab..8539bfdc 100644 --- a/src/components/logic/ogg/read.rs +++ b/src/components/logic/ogg/read.rs @@ -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};