diff --git a/audio/Cargo.toml b/audio/Cargo.toml index 49902c50..3584f0ad 100644 --- a/audio/Cargo.toml +++ b/audio/Cargo.toml @@ -17,9 +17,9 @@ num-traits = "0.2" tempfile = "3.1" aes-ctr = "0.3" -tremor = { git = "https://github.com/plietar/rust-tremor", optional = true } +librespot-tremor = { version = "0.1.0", optional = true } vorbis = { version ="0.1.0", optional = true } [features] -with-tremor = ["tremor"] +with-tremor = ["librespot-tremor"] with-vorbis = ["vorbis"] diff --git a/audio/src/libvorbis_decoder.rs b/audio/src/libvorbis_decoder.rs index b2045393..eef1708d 100644 --- a/audio/src/libvorbis_decoder.rs +++ b/audio/src/libvorbis_decoder.rs @@ -1,5 +1,5 @@ #[cfg(feature = "with-tremor")] -extern crate tremor as vorbis; +extern crate librespot_tremor as vorbis; #[cfg(not(feature = "with-tremor"))] extern crate vorbis;