1
0
Fork 0
mirror of https://github.com/librespot-org/librespot.git synced 2025-10-05 10:49:40 +02:00

Fixed nightly conflict with

This commit is contained in:
Nick Mavis 2019-09-16 15:00:09 -04:00
parent 7cb551d66d
commit c19375c5ca
12 changed files with 32 additions and 32 deletions

View file

@ -1,4 +1,4 @@
use core::spotify_id::SpotifyId;
use librespot_core::spotify_id::SpotifyId;
use protocol::spirc::TrackRef;
use serde;

View file

@ -23,10 +23,10 @@ use std::sync::Arc;
use tokio_core::reactor::Handle;
use url;
use core::authentication::Credentials;
use core::config::ConnectConfig;
use core::diffie_hellman::{DH_GENERATOR, DH_PRIME};
use core::util;
use librespot_core::authentication::Credentials;
use librespot_core::config::ConnectConfig;
use librespot_core::diffie_hellman::{DH_GENERATOR, DH_PRIME};
use librespot_core::util;
type HmacSha1 = Hmac<Sha1>;

View file

@ -26,7 +26,7 @@ extern crate dns_sd;
#[cfg(not(feature = "with-dns-sd"))]
extern crate mdns;
extern crate librespot_core as core;
extern crate librespot_core;
extern crate librespot_playback as playback;
extern crate librespot_protocol as protocol;

View file

@ -10,13 +10,13 @@ use rand::seq::SliceRandom;
use serde_json;
use context::StationContext;
use core::config::ConnectConfig;
use core::mercury::MercuryError;
use core::session::Session;
use core::spotify_id::SpotifyId;
use core::util::SeqGenerator;
use core::version;
use core::volume::Volume;
use librespot_core::config::ConnectConfig;
use librespot_core::mercury::MercuryError;
use librespot_core::session::Session;
use librespot_core::spotify_id::SpotifyId;
use librespot_core::util::SeqGenerator;
use librespot_core::version;
use librespot_core::volume::Volume;
use playback::mixer::Mixer;
use playback::player::Player;
use protocol;