From 4fb6fcd2c514ca4a2ceda57e6794b8ae33a77d8b Mon Sep 17 00:00:00 2001 From: dheijl Date: Mon, 18 Jul 2022 13:13:59 +0200 Subject: [PATCH] disable ogg and switch to latest flac-bound repo --- Cargo.lock | 6 +++--- Cargo.toml | 7 +++++-- 2 files changed, 8 insertions(+), 5 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index fd6b724..36f8557 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -297,7 +297,7 @@ dependencies = [ [[package]] name = "flac-bound" version = "0.2.0" -source = "git+https://github.com/dheijl/flac-bound#5e7aa1a1a2a2a72dbb7366771f51fbafa75f3a4a" +source = "git+https://github.com/nabijaczleweli/flac-bound#8f54daa8b3176333cd4d46624cf2c7381dec2dc3" dependencies = [ "libflac-sys", ] @@ -1119,9 +1119,9 @@ checksum = "099b7128301d285f79ddd55b9a83d5e6b9e97c92e0ea0daebee7263e932de992" [[package]] name = "unicode-ident" -version = "1.0.1" +version = "1.0.2" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "5bd2fe26506023ed7b5e1e315add59d6f584c621d037f9368fea9cfb988f368c" +checksum = "15c61ba63f9235225a22310255a29b806b907c9b8c964bcbd0a2c70f3f2deea7" [[package]] name = "unicode-normalization" diff --git a/Cargo.toml b/Cargo.toml index e91d908..5ea9bd0 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -19,7 +19,9 @@ bitflags = "1.3.2" cpal = "0.13.5" crossbeam-channel = "0.5.5" dirs = "4.0.0" -flac-bound = { version = "0.2.0", features = ["libflac-sys"] } +flac-bound = { version = "0.2.0", default-features = false, features = [ + "libflac-noogg", +] } fltk = { version = "1.3.11", features = ["use-ninja"] } #fltk-flow = "0.1.4" htmlescape = "0.3.1" @@ -50,4 +52,5 @@ libc = "0.2.126" #fltk = { git = "https://github.com/fltk-rs/fltk-rs" } #tiny_http = { git = "https://github.com/tiny-http/tiny-http" } #cpal = { git = "https://github.com/RustAudio/cpal" } -flac-bound = { git = "https://github.com/dheijl/flac-bound" } +#flac-bound = { git = "https://github.com/dheijl/flac-bound" } +flac-bound = { git = "https://github.com/nabijaczleweli/flac-bound" }