mirror of
https://github.com/librespot-org/librespot.git
synced 2024-11-08 16:45:43 +00:00
commit
8f9bec21d7
13 changed files with 28 additions and 30 deletions
|
@ -5,6 +5,9 @@ FROM rust:${rust_version}-${debian_version}
|
|||
|
||||
ARG DEBIAN_FRONTEND=noninteractive
|
||||
ENV CARGO_REGISTRIES_CRATES_IO_PROTOCOL="sparse"
|
||||
ENV RUST_BACKTRACE=1
|
||||
ENV RUSTFLAGS=-Dwarnings
|
||||
|
||||
|
||||
RUN apt-get update && \
|
||||
apt-get install -y --no-install-recommends \
|
||||
|
|
|
@ -1,7 +1,7 @@
|
|||
[package]
|
||||
name = "librespot"
|
||||
version = "0.5.0-dev"
|
||||
rust-version = "1.61"
|
||||
rust-version = "1.71"
|
||||
authors = ["Librespot Org"]
|
||||
license = "MIT"
|
||||
description = "An open source client library for Spotify, with support for Spotify Connect"
|
||||
|
|
|
@ -1,7 +1,7 @@
|
|||
[package]
|
||||
name = "librespot-audio"
|
||||
version = "0.5.0-dev"
|
||||
rust-version = "1.61"
|
||||
rust-version = "1.71"
|
||||
authors = ["Paul Lietar <paul@lietar.net>"]
|
||||
description = "The audio fetching logic for librespot"
|
||||
license = "MIT"
|
||||
|
|
|
@ -1,7 +1,7 @@
|
|||
[package]
|
||||
name = "librespot-connect"
|
||||
version = "0.5.0-dev"
|
||||
rust-version = "1.61"
|
||||
rust-version = "1.71"
|
||||
authors = ["Paul Lietar <paul@lietar.net>"]
|
||||
description = "The discovery and Spotify Connect logic for librespot"
|
||||
license = "MIT"
|
||||
|
|
|
@ -1,7 +1,7 @@
|
|||
[package]
|
||||
name = "librespot-core"
|
||||
version = "0.5.0-dev"
|
||||
rust-version = "1.61"
|
||||
rust-version = "1.71"
|
||||
authors = ["Paul Lietar <paul@lietar.net>"]
|
||||
build = "build.rs"
|
||||
description = "The core functionality provided by librespot"
|
||||
|
|
|
@ -43,12 +43,13 @@ impl Default for SessionConfig {
|
|||
}
|
||||
}
|
||||
|
||||
#[derive(Clone, Copy, Debug, Hash, PartialOrd, Ord, PartialEq, Eq)]
|
||||
#[derive(Clone, Copy, Debug, Hash, PartialOrd, Ord, PartialEq, Eq, Default)]
|
||||
pub enum DeviceType {
|
||||
Unknown = 0,
|
||||
Computer = 1,
|
||||
Tablet = 2,
|
||||
Smartphone = 3,
|
||||
#[default]
|
||||
Speaker = 4,
|
||||
Tv = 5,
|
||||
Avr = 6,
|
||||
|
@ -131,9 +132,3 @@ impl fmt::Display for DeviceType {
|
|||
f.write_str(str)
|
||||
}
|
||||
}
|
||||
|
||||
impl Default for DeviceType {
|
||||
fn default() -> DeviceType {
|
||||
DeviceType::Speaker
|
||||
}
|
||||
}
|
||||
|
|
|
@ -49,15 +49,15 @@ impl From<MercuryError> for Error {
|
|||
}
|
||||
}
|
||||
|
||||
impl ToString for MercuryMethod {
|
||||
fn to_string(&self) -> String {
|
||||
match *self {
|
||||
impl std::fmt::Display for MercuryMethod {
|
||||
fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
|
||||
let s = match *self {
|
||||
MercuryMethod::Get => "GET",
|
||||
MercuryMethod::Sub => "SUB",
|
||||
MercuryMethod::Unsub => "UNSUB",
|
||||
MercuryMethod::Send => "SEND",
|
||||
}
|
||||
.to_owned()
|
||||
};
|
||||
write!(f, "{}", s)
|
||||
}
|
||||
}
|
||||
|
||||
|
|
|
@ -358,7 +358,7 @@ impl Session {
|
|||
loop {
|
||||
match reader.read_event_into(&mut buf) {
|
||||
Ok(Event::Start(ref element)) => {
|
||||
current_element = std::str::from_utf8(element)?.to_owned()
|
||||
std::str::from_utf8(element)?.clone_into(&mut current_element)
|
||||
}
|
||||
Ok(Event::End(_)) => {
|
||||
current_element = String::new();
|
||||
|
@ -428,7 +428,7 @@ impl Session {
|
|||
}
|
||||
|
||||
pub fn set_client_id(&self, client_id: &str) {
|
||||
self.0.data.write().client_id = client_id.to_owned();
|
||||
client_id.clone_into(&mut self.0.data.write().client_id);
|
||||
}
|
||||
|
||||
pub fn client_name(&self) -> String {
|
||||
|
@ -436,7 +436,7 @@ impl Session {
|
|||
}
|
||||
|
||||
pub fn set_client_name(&self, client_name: &str) {
|
||||
self.0.data.write().client_name = client_name.to_owned();
|
||||
client_name.clone_into(&mut self.0.data.write().client_name);
|
||||
}
|
||||
|
||||
pub fn client_brand_name(&self) -> String {
|
||||
|
@ -444,7 +444,7 @@ impl Session {
|
|||
}
|
||||
|
||||
pub fn set_client_brand_name(&self, client_brand_name: &str) {
|
||||
self.0.data.write().client_brand_name = client_brand_name.to_owned();
|
||||
client_brand_name.clone_into(&mut self.0.data.write().client_brand_name);
|
||||
}
|
||||
|
||||
pub fn client_model_name(&self) -> String {
|
||||
|
@ -452,7 +452,7 @@ impl Session {
|
|||
}
|
||||
|
||||
pub fn set_client_model_name(&self, client_model_name: &str) {
|
||||
self.0.data.write().client_model_name = client_model_name.to_owned();
|
||||
client_model_name.clone_into(&mut self.0.data.write().client_model_name);
|
||||
}
|
||||
|
||||
pub fn connection_id(&self) -> String {
|
||||
|
@ -460,7 +460,7 @@ impl Session {
|
|||
}
|
||||
|
||||
pub fn set_connection_id(&self, connection_id: &str) {
|
||||
self.0.data.write().connection_id = connection_id.to_owned();
|
||||
connection_id.clone_into(&mut self.0.data.write().connection_id);
|
||||
}
|
||||
|
||||
pub fn username(&self) -> String {
|
||||
|
@ -468,7 +468,7 @@ impl Session {
|
|||
}
|
||||
|
||||
pub fn set_username(&self, username: &str) {
|
||||
self.0.data.write().user_data.canonical_username = username.to_owned();
|
||||
username.clone_into(&mut self.0.data.write().user_data.canonical_username);
|
||||
}
|
||||
|
||||
pub fn country(&self) -> String {
|
||||
|
|
|
@ -239,9 +239,9 @@ impl SpClient {
|
|||
let android_data = platform_data.mut_android();
|
||||
android_data.android_version = os_version;
|
||||
android_data.api_version = 31;
|
||||
android_data.device_name = "Pixel".to_owned();
|
||||
android_data.model_str = "GF5KQ".to_owned();
|
||||
android_data.vendor = "Google".to_owned();
|
||||
"Pixel".clone_into(&mut android_data.device_name);
|
||||
"GF5KQ".clone_into(&mut android_data.model_str);
|
||||
"Google".clone_into(&mut android_data.vendor);
|
||||
}
|
||||
"macos" => {
|
||||
let macos_data = platform_data.mut_desktop_macos();
|
||||
|
|
|
@ -1,7 +1,7 @@
|
|||
[package]
|
||||
name = "librespot-discovery"
|
||||
version = "0.5.0-dev"
|
||||
rust-version = "1.61"
|
||||
rust-version = "1.71"
|
||||
authors = ["Paul Lietar <paul@lietar.net>"]
|
||||
description = "The discovery logic for librespot"
|
||||
license = "MIT"
|
||||
|
|
|
@ -1,7 +1,7 @@
|
|||
[package]
|
||||
name = "librespot-metadata"
|
||||
version = "0.5.0-dev"
|
||||
rust-version = "1.61"
|
||||
rust-version = "1.71"
|
||||
authors = ["Paul Lietar <paul@lietar.net>"]
|
||||
description = "The metadata logic for librespot"
|
||||
license = "MIT"
|
||||
|
|
|
@ -1,7 +1,7 @@
|
|||
[package]
|
||||
name = "librespot-playback"
|
||||
version = "0.5.0-dev"
|
||||
rust-version = "1.61"
|
||||
rust-version = "1.71"
|
||||
authors = ["Sasha Hilton <sashahilton00@gmail.com>"]
|
||||
description = "The audio playback logic for librespot"
|
||||
license = "MIT"
|
||||
|
|
|
@ -1,7 +1,7 @@
|
|||
[package]
|
||||
name = "librespot-protocol"
|
||||
version = "0.5.0-dev"
|
||||
rust-version = "1.61"
|
||||
rust-version = "1.71"
|
||||
authors = ["Paul Liétar <paul@lietar.net>"]
|
||||
build = "build.rs"
|
||||
description = "The protobuf logic for communicating with Spotify servers"
|
||||
|
|
Loading…
Reference in a new issue