From 35ad57f8b89ed850b4c995410e6eae92cc9e2759 Mon Sep 17 00:00:00 2001 From: Polochon_street Date: Thu, 30 May 2024 14:40:57 +0200 Subject: [PATCH] Bump ffmpeg-next version and new bliss version --- CHANGELOG.md | 3 +++ Cargo.lock | 4 ++-- Cargo.toml | 2 +- 3 files changed, 6 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 417b761..f334229 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,8 @@ # Changelog +## bliss 0.7.1 +* Bump rust-ffmpeg to 7.0.2, to allow building on FreeBSD systems. + ## bliss 0.7.0 * Make ffmpeg an optional dependency, to decouple bliss from ffmpeg: - Remove Song::from_path diff --git a/Cargo.lock b/Cargo.lock index 96fa200..dfddc94 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -437,9 +437,9 @@ checksum = "7360491ce676a36bf9bb3c56c1aa791658183a54d2744120f27285738d90465a" [[package]] name = "ffmpeg-next" -version = "7.0.1" +version = "7.0.2" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "a681d69bf41d1c9edc7c6a2b09b69d0b96e9b916d200b7ec5b10de61f559eb31" +checksum = "ddfce5242643c8a57b5a44b7e933ccbde85f9508d1379e578e97eee4a9d4334b" dependencies = [ "bitflags 2.5.0", "ffmpeg-sys-next", diff --git a/Cargo.toml b/Cargo.toml index 7b87480..d1a6596 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -47,7 +47,7 @@ serde = ["dep:serde", "extended-isolation-forest/serde"] # Until https://github.com/aubio/aubio/issues/336 is somehow solved # Hopefully we'll be able to use the official aubio-rs at some point. bliss-audio-aubio-rs = "0.2.2" -ffmpeg-next = { version = "7.0.1", optional = true } +ffmpeg-next = { version = "7.0.2", optional = true } ffmpeg-sys-next = { version = "7.0.0", optional = true, default-features = false } log = "0.4.17" # `rayon` is used only by `par_mapv_inplace` in chroma.rs.