Bump ffmpeg version to avoid always rebuilding it

This commit is contained in:
Polochon-street 2021-07-07 17:45:05 +02:00
parent 3ed0d7126a
commit b7a6812e92
3 changed files with 12 additions and 10 deletions

View File

@ -1,5 +1,8 @@
# Changelog
## bliss 0.3.4
* Bump ffmpeg's version to avoid building ffmpeg when building bliss.
## bliss 0.3.3
* Add a streaming analysis function, to help libraries displaying progress.

10
Cargo.lock generated
View File

@ -1,5 +1,7 @@
# This file is automatically @generated by Cargo.
# It is not intended for manual editing.
version = 3
[[package]]
name = "adler"
version = "1.0.2"
@ -352,9 +354,9 @@ checksum = "e88a8acf291dafb59c2d96e8f59828f3838bb1a70398823ade51a84de6a6deed"
[[package]]
name = "ffmpeg-next"
version = "4.3.8"
version = "4.4.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "e3186d58788057973c658e1fa13a26ea1340718a8a131d5e1996d06e2b08befc"
checksum = "4676cda947a87a1e8a42e154059c567e75de64860252cce52c684acd8c074fa0"
dependencies = [
"bitflags",
"ffmpeg-sys-next",
@ -363,9 +365,9 @@ dependencies = [
[[package]]
name = "ffmpeg-sys-next"
version = "4.3.5"
version = "4.4.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "2fde8cbf91a1b044b86d9e9e944c33806a68f5e34e4281033594ceaab47a3746"
checksum = "de57234f2c49c6e093fe67bbbaa9142c228f6e2d5533ef27980993d5b6adef2a"
dependencies = [
"bindgen",
"cc",

View File

@ -1,6 +1,6 @@
[package]
name = "bliss-audio"
version = "0.3.3"
version = "0.3.4"
authors = ["Polochon-street <polochonstreet@gmx.fr>"]
edition = "2018"
license = "GPL-3.0-only"
@ -15,10 +15,7 @@ features = ["bliss-audio-aubio-rs/rustdoc"]
no-default-features = true
[features]
# Building ffmpeg until either
# https://github.com/zmwangx/rust-ffmpeg/pull/60
# or https://github.com/zmwangx/rust-ffmpeg/pull/62 is in
default = ["bliss-audio-aubio-rs/static", "build-ffmpeg"]
default = ["bliss-audio-aubio-rs/static"]
# Build ffmpeg instead of using the host's.
build-ffmpeg = ["ffmpeg-next/build"]
# Use if you want to build python bindings with maturin.
@ -37,7 +34,7 @@ lazy_static = "1.4.0"
rayon = "1.5.0"
crossbeam = "0.8.0"
noisy_float = "0.2.0"
ffmpeg-next = "4.3.8"
ffmpeg-next = "4.4.0"
log = "0.4.14"
env_logger = "0.8.3"
thiserror = "1.0.24"