Эх сурвалжийг харах

Move to librespot-tremor for crates.io compatability.

Sasha Hilton 5 жил өмнө
parent
commit
6093d8f299

+ 2 - 2
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"]

+ 1 - 1
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;