1
0
Fork 0
mirror of https://github.com/librespot-org/librespot.git synced 2025-10-04 10:19:27 +02:00

upgrade to newer PulseAudio crate dependency

requires adding dependency on libpulse-simple-sys since the PulseAudio
simple components were moved to their own crate (the original version
did not stick to the one crate per one system library rule).

this fixes the licensing compatibility issue discussed in #539 ([1])
(the original v0.0.0 was LGPL-3.0 licensed, while v1.11 onwards are
'MIT OR Apache-2.0').

[1]: https://github.com/librespot-org/librespot/issues/539
This commit is contained in:
Lyndon Brown 2020-11-27 00:06:16 +00:00
parent cea63e57a4
commit 28061dffe2
4 changed files with 24 additions and 5 deletions

View file

@ -1,6 +1,7 @@
use super::{Open, Sink};
use libc;
use libpulse_sys::*;
use libpulse_simple_sys::*;
use std::ffi::CStr;
use std::ffi::CString;
use std::io;